AddCampaignFormFromRequest.php
1 year ago
AddNewBadgeToAdminMenuItem.php
1 year ago
AllowGiveRolesToEditCampaignPages.php
5 months ago
ArchiveCampaignFormsAsDraftStatus.php
1 year ago
ArchiveCampaignPagesAsDraftStatus.php
1 year ago
AssignDuplicatedFormToCampaign.php
1 year ago
AssociateCampaignPageWithCampaign.php
1 year ago
CacheCampaignData.php
7 months ago
ConvertQueryDataToCampaign.php
1 year ago
CreateCampaignPage.php
1 year ago
CreateDefaultCampaignForm.php
4 months ago
CreateDefaultLayoutForCampaignPage.php
1 year ago
DuplicateCampaign.php
7 months ago
EnqueueCampaignPageEditorAssets.php
1 year ago
FormInheritsCampaignGoal.php
1 year ago
LoadCampaignAdminOptions.php
11 months ago
LoadCampaignDetailsAssets.php
1 year ago
LoadCampaignPublicOptions.php
11 months ago
LoadCampaignsListTableAssets.php
11 months ago
PreventDeleteDefaultForm.php
1 year ago
RedirectLegacyCreateFormToCreateCampaign.php
4 months ago
RegisterCampaignBlocks.php
6 months ago
RegisterCampaignIdRestField.php
1 year ago
RegisterCampaignShortcodes.php
10 months ago
RenderDonateButton.php
9 months ago
ReplaceGiveFormsCptLabels.php
1 year ago
UnarchiveCampaignFormAsPublishStatus.php
1 year ago
RedirectLegacyCreateFormToCreateCampaign.php
157 lines
| 1 | <?php |
| 2 | |
| 3 | namespace Give\Campaigns\Actions; |
| 4 | |
| 5 | use Give\Campaigns\Models\Campaign; |
| 6 | use Give\Framework\Database\DB; |
| 7 | |
| 8 | /** |
| 9 | * @since 4.0.0 |
| 10 | */ |
| 11 | class RedirectLegacyCreateFormToCreateCampaign |
| 12 | { |
| 13 | /** |
| 14 | * @since 4.0.0 |
| 15 | */ |
| 16 | public function __invoke() |
| 17 | { |
| 18 | if ($this->isAddingNewForm()) { |
| 19 | if ($this->isCampaignIdInvalidOrMissing()) { |
| 20 | $this->redirectToNewCampaignPage(); |
| 21 | } |
| 22 | |
| 23 | return; |
| 24 | } |
| 25 | |
| 26 | if ($this->isEditingCampaignForm()) { |
| 27 | if ($this->isP2P()) { |
| 28 | if ($this->isP2PCampaignFormIdInvalidOrMissing()) { |
| 29 | $this->redirectToP2PNewCampaignPage(); |
| 30 | } |
| 31 | } elseif ($this->isCampaignFormIdInvalidOrMissing()) { |
| 32 | $this->redirectToNewCampaignPage(); |
| 33 | } |
| 34 | } |
| 35 | } |
| 36 | |
| 37 | /** |
| 38 | * @since 4.0.0 |
| 39 | */ |
| 40 | private function isAddingNewForm(): bool |
| 41 | { |
| 42 | return $GLOBALS['pagenow'] === 'post-new.php' |
| 43 | && isset($_GET['post_type']) |
| 44 | && $_GET['post_type'] === 'give_forms'; |
| 45 | } |
| 46 | |
| 47 | /** |
| 48 | * @since 4.0.0 |
| 49 | */ |
| 50 | private function isEditingCampaignForm(): bool |
| 51 | { |
| 52 | return $GLOBALS['pagenow'] === 'edit.php' |
| 53 | && isset($_GET['post_type']) |
| 54 | && $_GET['post_type'] === 'give_forms' |
| 55 | && isset($_GET['page']) && $_GET['page'] === 'givewp-form-builder'; |
| 56 | } |
| 57 | |
| 58 | /** |
| 59 | * @since 4.0.0 |
| 60 | */ |
| 61 | private function isP2P(): bool |
| 62 | { |
| 63 | return isset($_GET['p2p']); |
| 64 | } |
| 65 | |
| 66 | /** |
| 67 | * @since 4.0.0 |
| 68 | */ |
| 69 | private function redirectToNewCampaignPage(): void |
| 70 | { |
| 71 | wp_safe_redirect(admin_url('edit.php?post_type=give_forms&page=give-campaigns&new=campaign')); |
| 72 | exit; |
| 73 | } |
| 74 | |
| 75 | /** |
| 76 | * @since 4.0.0 |
| 77 | */ |
| 78 | private function redirectToP2PNewCampaignPage(): void |
| 79 | { |
| 80 | wp_safe_redirect(admin_url('edit.php?post_type=give_forms&page=p2p-add-campaign')); |
| 81 | exit; |
| 82 | } |
| 83 | |
| 84 | /** |
| 85 | * @since 4.0.0 |
| 86 | */ |
| 87 | private function isCampaignIdInvalidOrMissing(): bool |
| 88 | { |
| 89 | return ! isset($_GET['campaignId']) || ! (Campaign::find(absint($_GET['campaignId']))); |
| 90 | } |
| 91 | |
| 92 | /** |
| 93 | * @since 4.14.2 updated logic to search the DB explicitly for P2P campaigns |
| 94 | * @since 4.0.0 |
| 95 | */ |
| 96 | private function isP2PCampaignFormIdInvalidOrMissing(): bool |
| 97 | { |
| 98 | if (!isset($_GET['donationFormID'])) { |
| 99 | return true; |
| 100 | } |
| 101 | |
| 102 | $formId = absint($_GET['donationFormID']); |
| 103 | |
| 104 | // Check give_campaigns.form_id for P2P campaigns |
| 105 | $campaign = DB::table('give_campaigns', 'c') |
| 106 | ->select('c.id') |
| 107 | ->innerJoin('give_p2p_campaigns', 'c.id', 'p2p.campaign_id', 'p2p') |
| 108 | ->where('c.form_id', $formId) |
| 109 | ->get(); |
| 110 | |
| 111 | if ($campaign) { |
| 112 | return false; |
| 113 | } |
| 114 | |
| 115 | // Also check give_campaign_forms junction table for P2P campaigns |
| 116 | // (migrated v3 forms are stored in the junction table) |
| 117 | $campaignForm = DB::table('give_campaign_forms') |
| 118 | ->where('form_id', $formId) |
| 119 | ->get(); |
| 120 | |
| 121 | if ($campaignForm) { |
| 122 | $p2pCampaign = DB::table('give_p2p_campaigns') |
| 123 | ->where('campaign_id', $campaignForm->campaign_id) |
| 124 | ->get(); |
| 125 | |
| 126 | return !$p2pCampaign; |
| 127 | } |
| 128 | |
| 129 | return true; |
| 130 | } |
| 131 | |
| 132 | /** |
| 133 | * @since 4.14.2 Also check give_campaign_forms junction table for non-core campaigns (e.g., migrated P2P forms). |
| 134 | * @since 4.0.0 |
| 135 | */ |
| 136 | private function isCampaignFormIdInvalidOrMissing(): bool |
| 137 | { |
| 138 | if (!isset($_GET['donationFormID'])) { |
| 139 | return true; |
| 140 | } |
| 141 | |
| 142 | $formId = absint($_GET['donationFormID']); |
| 143 | |
| 144 | // Check core campaigns first |
| 145 | if (Campaign::findByFormId($formId)) { |
| 146 | return false; |
| 147 | } |
| 148 | |
| 149 | // Fallback: check give_campaign_forms junction table for non-core campaigns |
| 150 | $campaignForm = DB::table('give_campaign_forms') |
| 151 | ->where('form_id', $formId) |
| 152 | ->get(); |
| 153 | |
| 154 | return !$campaignForm; |
| 155 | } |
| 156 | } |
| 157 |