ConfirmationEmailTemplate
1 month ago
ImportExport
2 weeks ago
RestApi
3 days ago
Statistics
1 month ago
BulkActionController.php
3 days ago
BulkActionException.php
1 month ago
BulkConfirmationEmailResender.php
2 months ago
ConfirmationEmailCustomizer.php
2 months ago
ConfirmationEmailMailer.php
2 months ago
ConfirmationEmailResolver.php
2 months ago
EngagementDataBackfiller.php
2 months ago
InactiveSubscribersController.php
4 days ago
LinkTokens.php
2 months ago
NewSubscriberNotificationMailer.php
2 months ago
RequiredCustomFieldValidator.php
2 months ago
SegmentsCountRecalculator.php
2 weeks ago
Source.php
2 months ago
SubscriberActions.php
2 months ago
SubscriberCustomFieldRepository.php
3 years ago
SubscriberIPsRepository.php
2 years ago
SubscriberLimitNotificationEvaluator.php
2 months ago
SubscriberLimitNotificationMailer.php
2 months ago
SubscriberLimitNotificationScheduler.php
2 months ago
SubscriberListingRepository.php
2 weeks ago
SubscriberPersonalDataEraser.php
2 months ago
SubscriberSaveController.php
3 days ago
SubscriberSegmentRepository.php
2 weeks ago
SubscriberSubscribeController.php
2 weeks ago
SubscriberTagRepository.php
4 years ago
SubscribersCountsController.php
2 weeks ago
SubscribersEmailCountsController.php
2 weeks ago
SubscribersRepository.php
3 days ago
TrackingConsentController.php
4 days ago
index.php
3 years ago
BulkActionController.php
267 lines
| 1 | <?php declare(strict_types = 1); |
| 2 | |
| 3 | namespace MailPoet\Subscribers; |
| 4 | |
| 5 | if (!defined('ABSPATH')) exit; |
| 6 | |
| 7 | |
| 8 | use MailPoet\Entities\SegmentEntity; |
| 9 | use MailPoet\Entities\StatisticsUnsubscribeEntity; |
| 10 | use MailPoet\Entities\SubscriberEntity; |
| 11 | use MailPoet\Entities\TagEntity; |
| 12 | use MailPoet\Listing\ListingDefinition; |
| 13 | use MailPoet\Segments\SegmentsRepository; |
| 14 | use MailPoet\Statistics\Track\Unsubscribes; |
| 15 | use MailPoet\Tags\TagRepository; |
| 16 | |
| 17 | /** |
| 18 | * Centralized bulk-action dispatcher used by the REST endpoint at |
| 19 | * `mailpoet/v1/subscribers/bulk-action`. Keeping the per-action branch + |
| 20 | * reference-data resolution in one place keeps the REST endpoint a thin |
| 21 | * HTTP adapter. |
| 22 | */ |
| 23 | class BulkActionController { |
| 24 | public const ACTION_TRASH = 'trash'; |
| 25 | public const ACTION_RESTORE = 'restore'; |
| 26 | public const ACTION_DELETE = 'delete'; |
| 27 | public const ACTION_UNSUBSCRIBE = 'unsubscribe'; |
| 28 | public const ACTION_MOVE_TO_LIST = 'moveToList'; |
| 29 | public const ACTION_ADD_TO_LIST = 'addToList'; |
| 30 | public const ACTION_REMOVE_FROM_LIST = 'removeFromList'; |
| 31 | public const ACTION_REMOVE_FROM_ALL_LISTS = 'removeFromAllLists'; |
| 32 | public const ACTION_ADD_TAG = 'addTag'; |
| 33 | public const ACTION_REMOVE_TAG = 'removeTag'; |
| 34 | |
| 35 | public const SUPPORTED_ACTIONS = [ |
| 36 | self::ACTION_TRASH, |
| 37 | self::ACTION_RESTORE, |
| 38 | self::ACTION_DELETE, |
| 39 | self::ACTION_UNSUBSCRIBE, |
| 40 | self::ACTION_MOVE_TO_LIST, |
| 41 | self::ACTION_ADD_TO_LIST, |
| 42 | self::ACTION_REMOVE_FROM_LIST, |
| 43 | self::ACTION_REMOVE_FROM_ALL_LISTS, |
| 44 | self::ACTION_ADD_TAG, |
| 45 | self::ACTION_REMOVE_TAG, |
| 46 | ]; |
| 47 | |
| 48 | private const ACTIONS_REQUIRING_SEGMENT = [ |
| 49 | self::ACTION_MOVE_TO_LIST, |
| 50 | self::ACTION_ADD_TO_LIST, |
| 51 | self::ACTION_REMOVE_FROM_LIST, |
| 52 | ]; |
| 53 | |
| 54 | private const ACTIONS_REQUIRING_TAG = [ |
| 55 | self::ACTION_ADD_TAG, |
| 56 | self::ACTION_REMOVE_TAG, |
| 57 | ]; |
| 58 | |
| 59 | /** @var SubscriberListingRepository */ |
| 60 | private $subscriberListingRepository; |
| 61 | |
| 62 | /** @var SubscribersRepository */ |
| 63 | private $subscribersRepository; |
| 64 | |
| 65 | /** @var SegmentsRepository */ |
| 66 | private $segmentsRepository; |
| 67 | |
| 68 | /** @var TagRepository */ |
| 69 | private $tagRepository; |
| 70 | |
| 71 | /** @var Unsubscribes */ |
| 72 | private $unsubscribesTracker; |
| 73 | |
| 74 | public function __construct( |
| 75 | SubscriberListingRepository $subscriberListingRepository, |
| 76 | SubscribersRepository $subscribersRepository, |
| 77 | SegmentsRepository $segmentsRepository, |
| 78 | TagRepository $tagRepository, |
| 79 | Unsubscribes $unsubscribesTracker |
| 80 | ) { |
| 81 | $this->subscriberListingRepository = $subscriberListingRepository; |
| 82 | $this->subscribersRepository = $subscribersRepository; |
| 83 | $this->segmentsRepository = $segmentsRepository; |
| 84 | $this->tagRepository = $tagRepository; |
| 85 | $this->unsubscribesTracker = $unsubscribesTracker; |
| 86 | } |
| 87 | |
| 88 | /** |
| 89 | * @param array{segment_id?: int|string, tag_id?: int|string, trigger_automations?: bool} $data |
| 90 | * @return array{count: int, kept?: int, segment?: array{id: int, name: string}, tag?: array{id: int, name: string}} |
| 91 | * @throws BulkActionException |
| 92 | */ |
| 93 | public function execute(string $action, ListingDefinition $definition, array $data = []): array { |
| 94 | if (!in_array($action, self::SUPPORTED_ACTIONS, true)) { |
| 95 | throw new BulkActionException( |
| 96 | // translators: %s is the offending bulk-action name. |
| 97 | sprintf(__("Invalid bulk action '%s' provided.", 'mailpoet'), $action), |
| 98 | 'mailpoet_subscribers_invalid_bulk_action', |
| 99 | 400 |
| 100 | ); |
| 101 | } |
| 102 | |
| 103 | $segment = in_array($action, self::ACTIONS_REQUIRING_SEGMENT, true) || isset($data['segment_id']) |
| 104 | ? $this->resolveSegment($data) |
| 105 | : null; |
| 106 | $tag = in_array($action, self::ACTIONS_REQUIRING_TAG, true) || isset($data['tag_id']) |
| 107 | ? $this->resolveTag($data) |
| 108 | : null; |
| 109 | $skipHooks = !($data['trigger_automations'] ?? false); |
| 110 | |
| 111 | $ids = $this->subscriberListingRepository->getActionableIds($definition); |
| 112 | $count = $this->dispatch($action, $ids, $segment, $tag, $skipHooks); |
| 113 | |
| 114 | $result = ['count' => $count]; |
| 115 | if ($action === self::ACTION_DELETE) { |
| 116 | // bulkDelete keeps subscribers linked to a WordPress user or WooCommerce |
| 117 | // customer, so the remainder of the actionable set is what was kept. |
| 118 | $result['kept'] = max(0, count($ids) - $count); |
| 119 | } |
| 120 | if ($segment instanceof SegmentEntity) { |
| 121 | $result['segment'] = ['id' => (int)$segment->getId(), 'name' => (string)$segment->getName()]; |
| 122 | } |
| 123 | if ($tag instanceof TagEntity) { |
| 124 | $result['tag'] = ['id' => (int)$tag->getId(), 'name' => (string)$tag->getName()]; |
| 125 | } |
| 126 | return $result; |
| 127 | } |
| 128 | |
| 129 | /** |
| 130 | * @param int[] $ids |
| 131 | */ |
| 132 | private function dispatch( |
| 133 | string $action, |
| 134 | array $ids, |
| 135 | ?SegmentEntity $segment, |
| 136 | ?TagEntity $tag, |
| 137 | bool $skipHooks |
| 138 | ): int { |
| 139 | switch ($action) { |
| 140 | case self::ACTION_TRASH: |
| 141 | return $this->subscribersRepository->bulkTrash($ids); |
| 142 | case self::ACTION_RESTORE: |
| 143 | return $this->subscribersRepository->bulkRestore($ids); |
| 144 | case self::ACTION_DELETE: |
| 145 | return $this->subscribersRepository->bulkDelete($ids); |
| 146 | case self::ACTION_REMOVE_FROM_ALL_LISTS: |
| 147 | return $this->subscribersRepository->bulkRemoveFromAllSegments($ids); |
| 148 | case self::ACTION_UNSUBSCRIBE: |
| 149 | $this->trackBulkUnsubscribe($ids); |
| 150 | return $this->subscribersRepository->bulkUnsubscribe($ids); |
| 151 | case self::ACTION_MOVE_TO_LIST: |
| 152 | return $this->subscribersRepository->bulkMoveToSegment( |
| 153 | $this->requireSegment($segment, $action), |
| 154 | $ids, |
| 155 | $skipHooks |
| 156 | ); |
| 157 | case self::ACTION_ADD_TO_LIST: |
| 158 | return $this->subscribersRepository->bulkAddToSegment( |
| 159 | $this->requireSegment($segment, $action), |
| 160 | $ids, |
| 161 | $skipHooks |
| 162 | ); |
| 163 | case self::ACTION_REMOVE_FROM_LIST: |
| 164 | return $this->subscribersRepository->bulkRemoveFromSegment($this->requireSegment($segment, $action), $ids); |
| 165 | case self::ACTION_ADD_TAG: |
| 166 | return $this->subscribersRepository->bulkAddTag($this->requireTag($tag, $action), $ids, $skipHooks); |
| 167 | case self::ACTION_REMOVE_TAG: |
| 168 | return $this->subscribersRepository->bulkRemoveTag($this->requireTag($tag, $action), $ids, $skipHooks); |
| 169 | default: |
| 170 | // Reachable only if SUPPORTED_ACTIONS and this switch drift out of sync. |
| 171 | throw new BulkActionException( |
| 172 | // translators: %s is the offending bulk-action name. |
| 173 | sprintf(__("Invalid bulk action '%s' provided.", 'mailpoet'), $action), |
| 174 | 'mailpoet_subscribers_invalid_bulk_action', |
| 175 | 400 |
| 176 | ); |
| 177 | } |
| 178 | } |
| 179 | |
| 180 | /** |
| 181 | * @param array{segment_id?: int|string} $data |
| 182 | */ |
| 183 | private function resolveSegment(array $data): SegmentEntity { |
| 184 | if (!isset($data['segment_id'])) { |
| 185 | throw new BulkActionException( |
| 186 | __('A list is required for this bulk action.', 'mailpoet'), |
| 187 | 'mailpoet_subscribers_missing_segment', |
| 188 | 400 |
| 189 | ); |
| 190 | } |
| 191 | $segment = $this->segmentsRepository->findOneById((int)$data['segment_id']); |
| 192 | if (!$segment instanceof SegmentEntity) { |
| 193 | throw new BulkActionException( |
| 194 | __('This list does not exist.', 'mailpoet'), |
| 195 | 'mailpoet_subscribers_segment_not_found', |
| 196 | 404 |
| 197 | ); |
| 198 | } |
| 199 | return $segment; |
| 200 | } |
| 201 | |
| 202 | /** |
| 203 | * @param array{tag_id?: int|string} $data |
| 204 | */ |
| 205 | private function resolveTag(array $data): TagEntity { |
| 206 | if (!isset($data['tag_id'])) { |
| 207 | throw new BulkActionException( |
| 208 | __('A tag is required for this bulk action.', 'mailpoet'), |
| 209 | 'mailpoet_subscribers_missing_tag', |
| 210 | 400 |
| 211 | ); |
| 212 | } |
| 213 | $tag = $this->tagRepository->findOneById((int)$data['tag_id']); |
| 214 | if (!$tag instanceof TagEntity) { |
| 215 | throw new BulkActionException( |
| 216 | __('This tag does not exist.', 'mailpoet'), |
| 217 | 'mailpoet_subscribers_tag_not_found', |
| 218 | 404 |
| 219 | ); |
| 220 | } |
| 221 | return $tag; |
| 222 | } |
| 223 | |
| 224 | private function requireSegment(?SegmentEntity $segment, string $action): SegmentEntity { |
| 225 | if (!$segment instanceof SegmentEntity) { |
| 226 | throw new BulkActionException( |
| 227 | // translators: %s is the action name. |
| 228 | sprintf(__("The '%s' bulk action requires a list.", 'mailpoet'), $action), |
| 229 | 'mailpoet_subscribers_missing_segment', |
| 230 | 400 |
| 231 | ); |
| 232 | } |
| 233 | return $segment; |
| 234 | } |
| 235 | |
| 236 | private function requireTag(?TagEntity $tag, string $action): TagEntity { |
| 237 | if (!$tag instanceof TagEntity) { |
| 238 | throw new BulkActionException( |
| 239 | // translators: %s is the action name. |
| 240 | sprintf(__("The '%s' bulk action requires a tag.", 'mailpoet'), $action), |
| 241 | 'mailpoet_subscribers_missing_tag', |
| 242 | 400 |
| 243 | ); |
| 244 | } |
| 245 | return $tag; |
| 246 | } |
| 247 | |
| 248 | /** |
| 249 | * @param int[] $ids |
| 250 | */ |
| 251 | private function trackBulkUnsubscribe(array $ids): void { |
| 252 | if ($ids === []) return; |
| 253 | $subscribers = $this->subscribersRepository->findBy(['id' => $ids]); |
| 254 | foreach ($subscribers as $subscriber) { |
| 255 | if ( |
| 256 | $subscriber instanceof SubscriberEntity |
| 257 | && $subscriber->getStatus() !== SubscriberEntity::STATUS_UNSUBSCRIBED |
| 258 | ) { |
| 259 | $this->unsubscribesTracker->track( |
| 260 | (int)$subscriber->getId(), |
| 261 | StatisticsUnsubscribeEntity::SOURCE_ADMINISTRATOR |
| 262 | ); |
| 263 | } |
| 264 | } |
| 265 | } |
| 266 | } |
| 267 |