AdminUserSubscription.php
4 weeks ago
Blacklist.php
1 year ago
Comment.php
4 weeks ago
Form.php
1 year ago
Manage.php
2 weeks ago
ManageSubscriptionFormRenderer.php
2 weeks ago
Pages.php
2 weeks ago
Registration.php
4 weeks ago
SubscriptionUrlFactory.php
4 weeks ago
Throttling.php
4 weeks ago
index.php
3 years ago
Manage.php
468 lines
| 1 | <?php // phpcs:ignore SlevomatCodingStandard.TypeHints.DeclareStrictTypes.DeclareStrictTypesMissing |
| 2 | |
| 3 | namespace MailPoet\Subscription; |
| 4 | |
| 5 | if (!defined('ABSPATH')) exit; |
| 6 | |
| 7 | |
| 8 | use MailPoet\CustomFields\CustomFieldsRepository; |
| 9 | use MailPoet\Entities\SegmentEntity; |
| 10 | use MailPoet\Entities\StatisticsUnsubscribeEntity; |
| 11 | use MailPoet\Entities\SubscriberEntity; |
| 12 | use MailPoet\Entities\SubscriberSegmentEntity; |
| 13 | use MailPoet\Form\Util\FieldNameObfuscator; |
| 14 | use MailPoet\Newsletter\Scheduler\WelcomeScheduler; |
| 15 | use MailPoet\Segments\SegmentsRepository; |
| 16 | use MailPoet\Statistics\Track\Unsubscribes; |
| 17 | use MailPoet\Subscribers\LinkTokens; |
| 18 | use MailPoet\Subscribers\NewSubscriberNotificationMailer; |
| 19 | use MailPoet\Subscribers\SubscriberSaveController; |
| 20 | use MailPoet\Subscribers\SubscriberSegmentRepository; |
| 21 | use MailPoet\Subscribers\SubscribersRepository; |
| 22 | use MailPoet\Util\Url as UrlHelper; |
| 23 | use MailPoetVendor\Doctrine\DBAL\ArrayParameterType; |
| 24 | |
| 25 | class Manage { |
| 26 | |
| 27 | /** @var UrlHelper */ |
| 28 | private $urlHelper; |
| 29 | |
| 30 | /** @var FieldNameObfuscator */ |
| 31 | private $fieldNameObfuscator; |
| 32 | |
| 33 | /** @var LinkTokens */ |
| 34 | private $linkTokens; |
| 35 | |
| 36 | /** @var Unsubscribes */ |
| 37 | private $unsubscribesTracker; |
| 38 | |
| 39 | /** @var NewSubscriberNotificationMailer */ |
| 40 | private $newSubscriberNotificationMailer; |
| 41 | |
| 42 | /** @var WelcomeScheduler */ |
| 43 | private $welcomeScheduler; |
| 44 | |
| 45 | /** @var CustomFieldsRepository */ |
| 46 | private $customFieldsRepository; |
| 47 | |
| 48 | /** @var SegmentsRepository */ |
| 49 | private $segmentsRepository; |
| 50 | |
| 51 | /** @var SubscribersRepository */ |
| 52 | private $subscribersRepository; |
| 53 | |
| 54 | /** @var SubscriberSegmentRepository */ |
| 55 | private $subscriberSegmentRepository; |
| 56 | |
| 57 | /** @var SubscriberSaveController */ |
| 58 | private $subscriberSaveController; |
| 59 | |
| 60 | public function __construct( |
| 61 | UrlHelper $urlHelper, |
| 62 | FieldNameObfuscator $fieldNameObfuscator, |
| 63 | LinkTokens $linkTokens, |
| 64 | Unsubscribes $unsubscribesTracker, |
| 65 | NewSubscriberNotificationMailer $newSubscriberNotificationMailer, |
| 66 | WelcomeScheduler $welcomeScheduler, |
| 67 | CustomFieldsRepository $customFieldsRepository, |
| 68 | SegmentsRepository $segmentsRepository, |
| 69 | SubscribersRepository $subscribersRepository, |
| 70 | SubscriberSegmentRepository $subscriberSegmentRepository, |
| 71 | SubscriberSaveController $subscriberSaveController |
| 72 | ) { |
| 73 | $this->urlHelper = $urlHelper; |
| 74 | $this->fieldNameObfuscator = $fieldNameObfuscator; |
| 75 | $this->unsubscribesTracker = $unsubscribesTracker; |
| 76 | $this->linkTokens = $linkTokens; |
| 77 | $this->newSubscriberNotificationMailer = $newSubscriberNotificationMailer; |
| 78 | $this->welcomeScheduler = $welcomeScheduler; |
| 79 | $this->segmentsRepository = $segmentsRepository; |
| 80 | $this->subscribersRepository = $subscribersRepository; |
| 81 | $this->subscriberSegmentRepository = $subscriberSegmentRepository; |
| 82 | $this->customFieldsRepository = $customFieldsRepository; |
| 83 | $this->subscriberSaveController = $subscriberSaveController; |
| 84 | } |
| 85 | |
| 86 | public function onSave() { |
| 87 | $action = (isset($_POST['action']) && is_string($_POST['action']) ? sanitize_text_field(wp_unslash($_POST['action'])) : ''); |
| 88 | $token = (isset($_POST['token']) && is_string($_POST['token']) ? sanitize_text_field(wp_unslash($_POST['token'])) : ''); |
| 89 | |
| 90 | if ($action !== 'mailpoet_subscription_update' || empty($_POST['data'])) { |
| 91 | $this->urlHelper->redirectBack(); |
| 92 | return; |
| 93 | } |
| 94 | |
| 95 | //phpcs:ignore WordPress.Security.ValidatedSanitizedInput.InputNotSanitized |
| 96 | $subscriberData = $this->fieldNameObfuscator->deobfuscateFormPayload(wp_unslash((array)$_POST['data'])); |
| 97 | $subscriberData = $this->sanitizeFormValue($subscriberData); |
| 98 | if (!is_array($subscriberData)) { |
| 99 | $subscriberData = []; |
| 100 | } |
| 101 | if ($this->hasInvalidStatus($subscriberData) || $this->hasMalformedLegacySegmentIds($subscriberData)) { |
| 102 | $this->urlHelper->redirectBack(['error' => true]); |
| 103 | return; |
| 104 | } |
| 105 | |
| 106 | $result = ['error' => true]; |
| 107 | if (!empty($subscriberData['email'])) { |
| 108 | $subscriber = $this->subscribersRepository->findOneBy(['email' => $subscriberData['email']]); |
| 109 | |
| 110 | if ($subscriber && $this->linkTokens->verifyToken($subscriber, $token)) { |
| 111 | if ($subscriberData['email'] !== Pages::DEMO_EMAIL) { |
| 112 | $previousStatus = $subscriber->getStatus(); |
| 113 | $shouldTrackUnsubscribe = ( |
| 114 | ($subscriberData['status'] ?? '') === SubscriberEntity::STATUS_UNSUBSCRIBED |
| 115 | && $subscriber instanceof SubscriberEntity |
| 116 | && $subscriber->getStatus() === SubscriberEntity::STATUS_SUBSCRIBED |
| 117 | ); |
| 118 | $subscriber = $this->subscriberSaveController->createOrUpdate($subscriberData, $subscriber); |
| 119 | if ($shouldTrackUnsubscribe) { |
| 120 | $this->unsubscribesTracker->track( |
| 121 | (int)$subscriber->getId(), |
| 122 | StatisticsUnsubscribeEntity::SOURCE_MANAGE |
| 123 | ); |
| 124 | } |
| 125 | $this->subscriberSaveController->updateCustomFields($this->filterOutEmptyMandatoryFields($subscriberData), $subscriber); |
| 126 | $this->updateSubscriptions( |
| 127 | $subscriber, |
| 128 | $subscriberData, |
| 129 | $previousStatus !== SubscriberEntity::STATUS_SUBSCRIBED |
| 130 | && $subscriber->getStatus() === SubscriberEntity::STATUS_SUBSCRIBED |
| 131 | ); |
| 132 | } |
| 133 | $result = ['success' => true]; |
| 134 | } |
| 135 | } |
| 136 | |
| 137 | $this->urlHelper->redirectBack($result); |
| 138 | } |
| 139 | |
| 140 | private function updateSubscriptions( |
| 141 | SubscriberEntity $subscriber, |
| 142 | array $subscriberData, |
| 143 | bool $isGlobalResubscribe |
| 144 | ): void { |
| 145 | if ($subscriber->getStatus() !== SubscriberEntity::STATUS_SUBSCRIBED) { |
| 146 | return; |
| 147 | } |
| 148 | |
| 149 | if (array_key_exists('segment_choices', $subscriberData)) { |
| 150 | $this->updateSubscriptionsFromSegmentChoices( |
| 151 | $subscriber, |
| 152 | $subscriberData['segment_choices'], |
| 153 | $isGlobalResubscribe |
| 154 | ); |
| 155 | return; |
| 156 | } |
| 157 | |
| 158 | $segmentsIds = $this->getLegacySegmentIds($subscriberData); |
| 159 | $legacySegmentIds = $segmentsIds; |
| 160 | $segments = $this->getVisibleDefaultManageSegmentsByIds($legacySegmentIds); |
| 161 | $segmentsIds = array_map('intval', array_keys($segments)); |
| 162 | if ($legacySegmentIds && !$segmentsIds) { |
| 163 | return; |
| 164 | } |
| 165 | |
| 166 | // Unsubscribe from all other segments already subscribed to |
| 167 | // but don't change disallowed segments |
| 168 | foreach ($subscriber->getSubscriberSegments() as $subscriberSegment) { |
| 169 | $segment = $subscriberSegment->getSegment(); |
| 170 | if (!$segment) { |
| 171 | continue; |
| 172 | } |
| 173 | |
| 174 | if (!$this->isVisibleDefaultManageSegment($segment)) { |
| 175 | continue; |
| 176 | } |
| 177 | if (!in_array((int)$segment->getId(), $segmentsIds, true)) { |
| 178 | $this->subscriberSegmentRepository->createOrUpdate( |
| 179 | $subscriber, |
| 180 | $segment, |
| 181 | SubscriberEntity::STATUS_UNSUBSCRIBED |
| 182 | ); |
| 183 | } |
| 184 | } |
| 185 | |
| 186 | $currentSegmentIds = $this->getCurrentSubscribedSegmentIds($subscriber); |
| 187 | $newSegmentIds = array_diff($segmentsIds, $currentSegmentIds); |
| 188 | |
| 189 | foreach ($segmentsIds as $segmentId) { |
| 190 | $this->subscriberSegmentRepository->createOrUpdate( |
| 191 | $subscriber, |
| 192 | $segments[$segmentId], |
| 193 | SubscriberEntity::STATUS_SUBSCRIBED |
| 194 | ); |
| 195 | } |
| 196 | |
| 197 | $this->sendNotificationsForNewSegments( |
| 198 | $subscriber, |
| 199 | $isGlobalResubscribe ? $this->getCurrentSubscribedSegmentIds($subscriber) : $newSegmentIds |
| 200 | ); |
| 201 | } |
| 202 | |
| 203 | /** |
| 204 | * @param mixed $segmentChoices |
| 205 | */ |
| 206 | private function updateSubscriptionsFromSegmentChoices( |
| 207 | SubscriberEntity $subscriber, |
| 208 | $segmentChoices, |
| 209 | bool $isGlobalResubscribe |
| 210 | ): void { |
| 211 | $choices = $this->getSegmentChoices($segmentChoices); |
| 212 | $segments = $this->getVisibleDefaultManageSegmentsByIds(array_keys($choices)); |
| 213 | $subscribeIds = []; |
| 214 | $unsubscribeIds = []; |
| 215 | |
| 216 | foreach ($choices as $segmentId => $choice) { |
| 217 | if (!isset($segments[$segmentId])) { |
| 218 | continue; |
| 219 | } |
| 220 | if ($choice === 'subscribed') { |
| 221 | $subscribeIds[] = $segmentId; |
| 222 | } elseif ($choice === 'unsubscribed') { |
| 223 | $unsubscribeIds[] = $segmentId; |
| 224 | } |
| 225 | } |
| 226 | |
| 227 | $currentSegmentIds = $this->getCurrentSubscribedSegmentIds($subscriber); |
| 228 | |
| 229 | foreach ($unsubscribeIds as $segmentId) { |
| 230 | $this->subscriberSegmentRepository->createOrUpdate( |
| 231 | $subscriber, |
| 232 | $segments[$segmentId], |
| 233 | SubscriberEntity::STATUS_UNSUBSCRIBED |
| 234 | ); |
| 235 | } |
| 236 | |
| 237 | foreach ($subscribeIds as $segmentId) { |
| 238 | $this->subscriberSegmentRepository->createOrUpdate( |
| 239 | $subscriber, |
| 240 | $segments[$segmentId], |
| 241 | SubscriberEntity::STATUS_SUBSCRIBED |
| 242 | ); |
| 243 | } |
| 244 | |
| 245 | $this->sendNotificationsForNewSegments( |
| 246 | $subscriber, |
| 247 | $isGlobalResubscribe |
| 248 | ? $this->getCurrentSubscribedSegmentIds($subscriber) |
| 249 | : array_diff($subscribeIds, $currentSegmentIds) |
| 250 | ); |
| 251 | } |
| 252 | |
| 253 | private function hasInvalidStatus(array $subscriberData): bool { |
| 254 | if (!isset($subscriberData['status'])) { |
| 255 | return false; |
| 256 | } |
| 257 | return !in_array($subscriberData['status'], [ |
| 258 | SubscriberEntity::STATUS_SUBSCRIBED, |
| 259 | SubscriberEntity::STATUS_UNSUBSCRIBED, |
| 260 | ], true); |
| 261 | } |
| 262 | |
| 263 | /** |
| 264 | * @param mixed $value |
| 265 | * @return mixed |
| 266 | */ |
| 267 | private function sanitizeFormValue($value, ?string $parentKey = null) { |
| 268 | if (is_array($value)) { |
| 269 | $sanitized = []; |
| 270 | foreach ($value as $key => $item) { |
| 271 | $sanitizedKey = $parentKey === 'segment_choices' ? $key : sanitize_text_field((string)$key); |
| 272 | $childParentKey = $parentKey === 'segments' ? 'segments' : (string)$sanitizedKey; |
| 273 | $sanitized[$sanitizedKey] = $this->sanitizeFormValue($item, $childParentKey); |
| 274 | } |
| 275 | return $sanitized; |
| 276 | } |
| 277 | if ($parentKey === 'segments') { |
| 278 | return is_scalar($value) ? (string)$value : ''; |
| 279 | } |
| 280 | return sanitize_text_field(is_scalar($value) ? (string)$value : ''); |
| 281 | } |
| 282 | |
| 283 | /** |
| 284 | * @return int[] |
| 285 | */ |
| 286 | private function getLegacySegmentIds(array $subscriberData): array { |
| 287 | if (!isset($subscriberData['segments']) || !is_array($subscriberData['segments'])) { |
| 288 | return []; |
| 289 | } |
| 290 | |
| 291 | $segmentIds = []; |
| 292 | foreach ($subscriberData['segments'] as $segmentId) { |
| 293 | $segmentId = $this->normalizePositiveIntegerId($segmentId); |
| 294 | if ($segmentId === null) { |
| 295 | continue; |
| 296 | } |
| 297 | $segmentIds[] = $segmentId; |
| 298 | } |
| 299 | return array_values(array_unique($segmentIds)); |
| 300 | } |
| 301 | |
| 302 | private function hasMalformedLegacySegmentIds(array $subscriberData): bool { |
| 303 | if (!isset($subscriberData['segments'])) { |
| 304 | return false; |
| 305 | } |
| 306 | if ($subscriberData['segments'] === '') { |
| 307 | return false; |
| 308 | } |
| 309 | if (!is_array($subscriberData['segments'])) { |
| 310 | return true; |
| 311 | } |
| 312 | |
| 313 | foreach ($subscriberData['segments'] as $segmentId) { |
| 314 | if ($segmentId === '') { |
| 315 | continue; |
| 316 | } |
| 317 | if ($this->normalizePositiveIntegerId($segmentId) === null) { |
| 318 | return true; |
| 319 | } |
| 320 | } |
| 321 | return false; |
| 322 | } |
| 323 | |
| 324 | /** |
| 325 | * @param mixed $segmentChoices |
| 326 | * @return array<int, string> |
| 327 | */ |
| 328 | private function getSegmentChoices($segmentChoices): array { |
| 329 | if (!is_array($segmentChoices)) { |
| 330 | return []; |
| 331 | } |
| 332 | |
| 333 | $choices = []; |
| 334 | foreach ($segmentChoices as $segmentId => $choice) { |
| 335 | $segmentId = $this->normalizePositiveIntegerId($segmentId); |
| 336 | if ($segmentId === null || !is_string($choice)) { |
| 337 | continue; |
| 338 | } |
| 339 | if (!in_array($choice, ['subscribed', 'unsubscribed'], true)) { |
| 340 | continue; |
| 341 | } |
| 342 | $choices[$segmentId] = $choice; |
| 343 | } |
| 344 | return $choices; |
| 345 | } |
| 346 | |
| 347 | /** |
| 348 | * @param mixed $segmentId |
| 349 | */ |
| 350 | private function normalizePositiveIntegerId($segmentId): ?int { |
| 351 | if (is_int($segmentId)) { |
| 352 | return $segmentId > 0 ? $segmentId : null; |
| 353 | } |
| 354 | if (!is_string($segmentId) || $segmentId === '' || $segmentId[0] === '0' || !ctype_digit($segmentId)) { |
| 355 | return null; |
| 356 | } |
| 357 | $normalized = (int)$segmentId; |
| 358 | if ((string)$normalized !== $segmentId || $normalized <= 0) { |
| 359 | return null; |
| 360 | } |
| 361 | return $normalized; |
| 362 | } |
| 363 | |
| 364 | /** |
| 365 | * @param int[] $segmentIds |
| 366 | * @return array<int, SegmentEntity> |
| 367 | */ |
| 368 | private function getVisibleDefaultManageSegmentsByIds(array $segmentIds): array { |
| 369 | $segmentIds = array_values(array_unique(array_filter(array_map('intval', $segmentIds)))); |
| 370 | if (!$segmentIds) { |
| 371 | return []; |
| 372 | } |
| 373 | |
| 374 | $segments = $this->segmentsRepository->createQueryBuilder('s') |
| 375 | ->where('s.id IN (:ids)') |
| 376 | ->andWhere('s.type = :type') |
| 377 | ->andWhere('s.deletedAt IS NULL') |
| 378 | ->andWhere('s.displayInManageSubscriptionPage = :displayInManageSubscriptionPage') |
| 379 | ->setParameter('ids', $segmentIds, ArrayParameterType::INTEGER) |
| 380 | ->setParameter('type', SegmentEntity::TYPE_DEFAULT) |
| 381 | ->setParameter('displayInManageSubscriptionPage', true) |
| 382 | ->getQuery() |
| 383 | ->getResult(); |
| 384 | |
| 385 | $segmentsMap = []; |
| 386 | foreach ($segments as $segment) { |
| 387 | if ($segment instanceof SegmentEntity && $segment->getId()) { |
| 388 | $segmentsMap[(int)$segment->getId()] = $segment; |
| 389 | } |
| 390 | } |
| 391 | return $segmentsMap; |
| 392 | } |
| 393 | |
| 394 | private function isVisibleDefaultManageSegment(SegmentEntity $segment): bool { |
| 395 | return ( |
| 396 | $segment->getType() === SegmentEntity::TYPE_DEFAULT |
| 397 | && $segment->getDeletedAt() === null |
| 398 | && $segment->getDisplayInManageSubscriptionPage() |
| 399 | ); |
| 400 | } |
| 401 | |
| 402 | /** |
| 403 | * @return int[] |
| 404 | */ |
| 405 | private function getCurrentSubscribedSegmentIds(SubscriberEntity $subscriber): array { |
| 406 | $subscriberSegments = $this->subscriberSegmentRepository->findBy([ |
| 407 | 'status' => SubscriberEntity::STATUS_SUBSCRIBED, |
| 408 | 'subscriber' => $subscriber, |
| 409 | ]); |
| 410 | return array_values(array_filter(array_map(function (SubscriberSegmentEntity $subscriberSegment): ?int { |
| 411 | $segment = $subscriberSegment->getSegment(); |
| 412 | return $segment ? (int)$segment->getId() : null; |
| 413 | }, $subscriberSegments))); |
| 414 | } |
| 415 | |
| 416 | /** |
| 417 | * @param int[] $newSegmentIds |
| 418 | */ |
| 419 | private function sendNotificationsForNewSegments(SubscriberEntity $subscriber, array $newSegmentIds): void { |
| 420 | $newSegmentIds = array_values(array_unique(array_map('intval', $newSegmentIds))); |
| 421 | if ($subscriber->getStatus() !== SubscriberEntity::STATUS_SUBSCRIBED || !$newSegmentIds) { |
| 422 | return; |
| 423 | } |
| 424 | |
| 425 | $newSegments = $this->segmentsRepository->findByIds($newSegmentIds); |
| 426 | $this->newSubscriberNotificationMailer->send($subscriber, $newSegments); |
| 427 | $this->welcomeScheduler->scheduleSubscriberWelcomeNotification( |
| 428 | $subscriber->getId(), |
| 429 | $newSegmentIds |
| 430 | ); |
| 431 | } |
| 432 | |
| 433 | private function filterOutEmptyMandatoryFields(array $subscriberData): array { |
| 434 | $mandatory = $this->getMandatory(); |
| 435 | foreach ($mandatory as $name) { |
| 436 | if (!isset($subscriberData[$name])) { |
| 437 | continue; |
| 438 | } |
| 439 | if (is_array($subscriberData[$name]) && count(array_filter($subscriberData[$name])) === 0) { |
| 440 | unset($subscriberData[$name]); |
| 441 | } |
| 442 | if (is_string($subscriberData[$name]) && strlen(trim($subscriberData[$name])) === 0) { |
| 443 | unset($subscriberData[$name]); |
| 444 | } |
| 445 | } |
| 446 | return $subscriberData; |
| 447 | } |
| 448 | |
| 449 | /** |
| 450 | * @return string[] |
| 451 | */ |
| 452 | private function getMandatory(): array { |
| 453 | $mandatory = []; |
| 454 | $requiredCustomFields = $this->customFieldsRepository->findAllActive(); |
| 455 | foreach ($requiredCustomFields as $customField) { |
| 456 | $params = $customField->getParams(); |
| 457 | if ( |
| 458 | is_array($params) |
| 459 | && isset($params['required']) |
| 460 | && $params['required'] |
| 461 | ) { |
| 462 | $mandatory[] = 'cf_' . $customField->getId(); |
| 463 | } |
| 464 | } |
| 465 | return $mandatory; |
| 466 | } |
| 467 | } |
| 468 |