<?php declare(strict_types = 1); namespace MailPoet\API\JSON\v1; if (!defined('ABSPATH')) exit; use MailPoet\API\JSON\Endpoint as APIEndpoint; use MailPoet\API\JSON\Error as APIError; use MailPoet\API\JSON\Response; use MailPoet\Config\AccessControl; use MailPoet\Entities\ScheduledTaskEntity; use MailPoet\Newsletter\Sending\ScheduledTasksRepository; use MailPoet\Util\DataInconsistency\DataInconsistencyController; class Help extends APIEndpoint { public $permissions = [ 'global' => AccessControl::PERMISSION_MANAGE_HELP, ]; private ScheduledTasksRepository $scheduledTasksRepository; private DataInconsistencyController $dataInconsistencyController; public function __construct( ScheduledTasksRepository $scheduledTasksRepository, DataInconsistencyController $dataInconsistencyController ) { $this->scheduledTasksRepository = $scheduledTasksRepository; $this->dataInconsistencyController = $dataInconsistencyController; } public function cancelTask($data): Response { try { $this->validateTaskId($data); $task = $this->scheduledTasksRepository->findOneById($data['id']); if (!$task instanceof ScheduledTaskEntity) { return $this->errorResponse([ APIError::NOT_FOUND => __('Task not found.', 'mailpoet'), ]); } $this->scheduledTasksRepository->cancelTask($task); return $this->successResponse(); } catch (\Exception $e) { return $this->badRequest([ApiError::BAD_REQUEST => $e->getMessage()]); } } public function rescheduleTask($data): Response { try { $this->validateTaskId($data); $task = $this->scheduledTasksRepository->findOneById($data['id']); if (!$task instanceof ScheduledTaskEntity) { return $this->errorResponse([ APIError::NOT_FOUND => __('Task not found.', 'mailpoet'), ]); } $this->scheduledTasksRepository->rescheduleTask($task); return $this->successResponse(); } catch (\Exception $e) { return $this->badRequest([ApiError::BAD_REQUEST => $e->getMessage()]); } } public function getInconsistentDataStatus(): Response { return $this->successResponse($this->dataInconsistencyController->getInconsistentDataStatus()); } public function fixInconsistentData($data): Response { try { $this->dataInconsistencyController->fixInconsistentData($data['inconsistency'] ?? ''); } catch (\Exception $e) { return $this->badRequest([ApiError::BAD_REQUEST => $e->getMessage()]); } return $this->successResponse($this->dataInconsistencyController->getInconsistentDataStatus()); } private function validateTaskId($data): void { $isValid = isset($data['id']) && is_numeric($data['id']); if (!$isValid) { throw new \Exception(__('Invalid or missing parameter `id`.', 'mailpoet')); } } }
Name | Type | Size | Permission | Actions |
---|---|---|---|---|
Analytics.php | File | 668 B | 0644 |
|
AutomatedLatestContent.php | File | 3.98 KB | 0644 |
|
AutomaticEmails.php | File | 2.83 KB | 0644 |
|
Captcha.php | File | 951 B | 0644 |
|
Coupons.php | File | 1.8 KB | 0644 |
|
CustomFields.php | File | 2.98 KB | 0644 |
|
DynamicSegments.php | File | 11.93 KB | 0644 |
|
FeatureFlags.php | File | 1.42 KB | 0644 |
|
Forms.php | File | 11.3 KB | 0644 |
|
Help.php | File | 2.8 KB | 0644 |
|
ImportExport.php | File | 5.76 KB | 0644 |
|
Mailer.php | File | 3.1 KB | 0644 |
|
NewsletterLinks.php | File | 1.01 KB | 0644 |
|
NewsletterTemplates.php | File | 4.29 KB | 0644 |
|
Newsletters.php | File | 16.01 KB | 0644 |
|
Premium.php | File | 3.03 KB | 0644 |
|
RedirectResponse.php | File | 347 B | 0644 |
|
Segments.php | File | 12.19 KB | 0644 |
|
SendingQueue.php | File | 9.93 KB | 0644 |
|
SendingTaskSubscribers.php | File | 5.42 KB | 0644 |
|
Services.php | File | 12.35 KB | 0644 |
|
Settings.php | File | 16.49 KB | 0644 |
|
Setup.php | File | 1.19 KB | 0644 |
|
SubscriberStats.php | File | 4.08 KB | 0644 |
|
Subscribers.php | File | 12.31 KB | 0644 |
|
Tags.php | File | 1.34 KB | 0644 |
|
UserFlags.php | File | 1.01 KB | 0644 |
|
WoocommerceSettings.php | File | 870 B | 0644 |
|
index.php | File | 6 B | 0644 |
|