AddCampaignFormFromRequest.php
1 year ago
AddNewBadgeToAdminMenuItem.php
1 year ago
AllowGiveRolesToEditCampaignPages.php
1 month 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
AllowGiveRolesToEditCampaignPages.php
207 lines
| 1 | <?php |
| 2 | |
| 3 | namespace Give\Campaigns\Actions; |
| 4 | |
| 5 | use Give\Campaigns\ValueObjects\CampaignPageMetaKeys; |
| 6 | use WP_User; |
| 7 | |
| 8 | /** |
| 9 | * Allow users with Give roles to edit and publish campaign landing pages. |
| 10 | * |
| 11 | * Campaign pages are standard WordPress pages (post_type = 'page') that have |
| 12 | * the give_campaign_id meta key. Give roles like give_worker and give_manager |
| 13 | * have edit_pages but not edit_others_pages or publish_pages, so this action |
| 14 | * maps the meta capabilities to allow full management of campaign pages |
| 15 | * for users with edit_give_forms capability. |
| 16 | * |
| 17 | * @since 4.14.0 |
| 18 | */ |
| 19 | class AllowGiveRolesToEditCampaignPages |
| 20 | { |
| 21 | /** |
| 22 | * Cache for campaign page checks to avoid repeated DB queries. |
| 23 | * |
| 24 | * @var array<int, bool> |
| 25 | */ |
| 26 | private static array $campaignPageCache = []; |
| 27 | |
| 28 | /** |
| 29 | * Filter meta capabilities for campaign pages. |
| 30 | * |
| 31 | * Hooked to 'map_meta_cap' filter. |
| 32 | * |
| 33 | * @since 4.15.3 Handle null $cap gracefully for better compatibility. |
| 34 | * @since 4.14.0 |
| 35 | */ |
| 36 | public function mapMetaCap(array $caps, ?string $cap, int $userId, array $args): array |
| 37 | { |
| 38 | // Fast check: only handle specific meta capabilities |
| 39 | static $pageMetaCaps = ['edit_post' => true, 'delete_post' => true, 'publish_post' => true, 'read_post' => true]; |
| 40 | if (!is_string($cap) || !isset($pageMetaCaps[$cap])) { |
| 41 | return $caps; |
| 42 | } |
| 43 | |
| 44 | // We need a post ID to check |
| 45 | if (empty($args[0])) { |
| 46 | return $caps; |
| 47 | } |
| 48 | |
| 49 | // Check if user has Give capability first (cheaper than DB lookups) |
| 50 | if (!user_can($userId, 'edit_give_forms')) { |
| 51 | return $caps; |
| 52 | } |
| 53 | |
| 54 | // Check if this is a campaign page (uses cache) |
| 55 | if (!$this->isCampaignPage((int)$args[0])) { |
| 56 | return $caps; |
| 57 | } |
| 58 | |
| 59 | // Grant full access to campaign pages |
| 60 | return []; |
| 61 | } |
| 62 | |
| 63 | /** |
| 64 | * Dynamically grant page capabilities when working with a campaign page. |
| 65 | * |
| 66 | * The block editor and REST API check primitive capabilities like 'publish_pages' |
| 67 | * directly (not through map_meta_cap), so we need to dynamically add them. |
| 68 | * |
| 69 | * Hooked to 'user_has_cap' filter. |
| 70 | * |
| 71 | * @since 4.14.0 |
| 72 | */ |
| 73 | public function grantPublishCapability(array $allcaps, array $caps, array $args, WP_User $user): array |
| 74 | { |
| 75 | // Fast check: skip if not in admin or REST context |
| 76 | if (!is_admin() && !wp_is_serving_rest_request()) { |
| 77 | return $allcaps; |
| 78 | } |
| 79 | |
| 80 | // Fast check: only process if specific page caps are requested |
| 81 | static $pageCaps = ['publish_pages' => true, 'edit_others_pages' => true, 'edit_published_pages' => true, 'delete_others_pages' => true]; |
| 82 | $requestedPageCaps = array_filter($caps, static function ($cap) use ($pageCaps) { |
| 83 | return is_string($cap) && isset($pageCaps[$cap]); |
| 84 | }); |
| 85 | if (empty($requestedPageCaps)) { |
| 86 | return $allcaps; |
| 87 | } |
| 88 | |
| 89 | // User must have edit_give_forms capability (check from allcaps, no DB query) |
| 90 | if (empty($allcaps['edit_give_forms'])) { |
| 91 | return $allcaps; |
| 92 | } |
| 93 | |
| 94 | // Get the post being edited (cached) |
| 95 | $postId = $this->getCurrentEditingPostId(); |
| 96 | if (!$postId) { |
| 97 | return $allcaps; |
| 98 | } |
| 99 | |
| 100 | // Check if this is a campaign page (uses cache) |
| 101 | if (!$this->isCampaignPage($postId)) { |
| 102 | return $allcaps; |
| 103 | } |
| 104 | |
| 105 | // Grant the requested page capabilities |
| 106 | foreach ($requestedPageCaps as $cap) { |
| 107 | $allcaps[$cap] = true; |
| 108 | } |
| 109 | |
| 110 | return $allcaps; |
| 111 | } |
| 112 | |
| 113 | /** |
| 114 | * Check if a post is a campaign page (with caching). |
| 115 | * |
| 116 | * @since 4.14.0 |
| 117 | */ |
| 118 | private function isCampaignPage(int $postId): bool |
| 119 | { |
| 120 | if (isset(self::$campaignPageCache[$postId])) { |
| 121 | return self::$campaignPageCache[$postId]; |
| 122 | } |
| 123 | |
| 124 | $post = get_post($postId); |
| 125 | if (!$post || $post->post_type !== 'page') { |
| 126 | self::$campaignPageCache[$postId] = false; |
| 127 | return false; |
| 128 | } |
| 129 | |
| 130 | $campaignId = get_post_meta($postId, CampaignPageMetaKeys::CAMPAIGN_ID, true); |
| 131 | self::$campaignPageCache[$postId] = !empty($campaignId); |
| 132 | |
| 133 | return self::$campaignPageCache[$postId]; |
| 134 | } |
| 135 | |
| 136 | /** |
| 137 | * Get the post ID currently being edited (with static caching). |
| 138 | * |
| 139 | * @since 4.14.0 |
| 140 | */ |
| 141 | private function getCurrentEditingPostId(): ?int |
| 142 | { |
| 143 | static $cachedPostId = null; |
| 144 | static $checked = false; |
| 145 | |
| 146 | if ($checked) { |
| 147 | return $cachedPostId; |
| 148 | } |
| 149 | $checked = true; |
| 150 | |
| 151 | // Check for post ID in query string (standard edit screen) |
| 152 | if (!empty($_GET['post'])) { |
| 153 | $cachedPostId = (int)$_GET['post']; |
| 154 | return $cachedPostId; |
| 155 | } |
| 156 | |
| 157 | // Check REST API for post ID (query param or route) |
| 158 | if (wp_is_serving_rest_request()) { |
| 159 | if (!empty($_GET['post_id'])) { |
| 160 | $cachedPostId = (int)$_GET['post_id']; |
| 161 | return $cachedPostId; |
| 162 | } |
| 163 | |
| 164 | $cachedPostId = $this->getPostIdFromRestRoute(); |
| 165 | if ($cachedPostId) { |
| 166 | return $cachedPostId; |
| 167 | } |
| 168 | } |
| 169 | |
| 170 | // Check global $post |
| 171 | global $post; |
| 172 | if ($post instanceof \WP_Post) { |
| 173 | $cachedPostId = $post->ID; |
| 174 | return $cachedPostId; |
| 175 | } |
| 176 | |
| 177 | return null; |
| 178 | } |
| 179 | |
| 180 | /** |
| 181 | * Extract post ID from REST API route. |
| 182 | * |
| 183 | * @since 4.14.0 |
| 184 | */ |
| 185 | private function getPostIdFromRestRoute(): ?int |
| 186 | { |
| 187 | static $cachedRestPostId = null; |
| 188 | static $restChecked = false; |
| 189 | |
| 190 | if ($restChecked) { |
| 191 | return $cachedRestPostId; |
| 192 | } |
| 193 | $restChecked = true; |
| 194 | |
| 195 | global $wp; |
| 196 | $restRoute = $wp->query_vars['rest_route'] ?? ''; |
| 197 | |
| 198 | // Match routes like /wp/v2/pages/123 |
| 199 | if (preg_match('#/wp/v2/pages/(\d+)#', $restRoute, $matches)) { |
| 200 | $cachedRestPostId = (int)$matches[1]; |
| 201 | } |
| 202 | |
| 203 | return $cachedRestPostId; |
| 204 | } |
| 205 | } |
| 206 | |
| 207 |