220 lines
7.2 KiB
PHP
220 lines
7.2 KiB
PHP
<?php
|
|
|
|
namespace MailPoet\API\JSON\v1;
|
|
|
|
use MailPoet\API\JSON\Endpoint as APIEndpoint;
|
|
use MailPoet\API\JSON\Error;
|
|
use MailPoet\API\JSON\Response;
|
|
use MailPoet\Config\AccessControl;
|
|
use MailPoet\DynamicSegments\Exceptions\ErrorSavingException;
|
|
use MailPoet\DynamicSegments\Exceptions\InvalidSegmentTypeException;
|
|
use MailPoet\DynamicSegments\Mappers\DBMapper;
|
|
use MailPoet\DynamicSegments\Mappers\FormDataMapper;
|
|
use MailPoet\DynamicSegments\Persistence\Loading\SingleSegmentLoader;
|
|
use MailPoet\DynamicSegments\Persistence\Loading\SubscribersCount;
|
|
use MailPoet\DynamicSegments\Persistence\Saver;
|
|
use MailPoet\Listing\BulkActionController;
|
|
use MailPoet\Listing\Handler;
|
|
use MailPoet\Models\Model;
|
|
use MailPoet\WP\Functions as WPFunctions;
|
|
|
|
class DynamicSegments extends APIEndpoint {
|
|
|
|
public $permissions = [
|
|
'global' => AccessControl::PERMISSION_MANAGE_SEGMENTS,
|
|
];
|
|
|
|
/** @var FormDataMapper */
|
|
private $mapper;
|
|
|
|
/** @var Saver */
|
|
private $saver;
|
|
|
|
/** @var SingleSegmentLoader */
|
|
private $dynamic_segments_loader;
|
|
|
|
/** @var SubscribersCount */
|
|
private $subscribers_counts_loader;
|
|
|
|
/** @var BulkActionController */
|
|
private $bulk_action;
|
|
|
|
/** @var Handler */
|
|
private $listing_handler;
|
|
|
|
public function __construct(BulkActionController $bulkAction, Handler $handler, $mapper = null, $saver = null, $dynamicSegmentsLoader = null, $subscribersCountsLoader = null) {
|
|
$this->bulkAction = $bulkAction;
|
|
$this->listingHandler = $handler;
|
|
$this->mapper = $mapper ?: new FormDataMapper();
|
|
$this->saver = $saver ?: new Saver();
|
|
$this->dynamicSegmentsLoader = $dynamicSegmentsLoader ?: new SingleSegmentLoader(new DBMapper());
|
|
$this->subscribersCountsLoader = $subscribersCountsLoader ?: new SubscribersCount();
|
|
}
|
|
|
|
public function get($data = []) {
|
|
if (isset($data['id'])) {
|
|
$id = (int)$data['id'];
|
|
} else {
|
|
return $this->errorResponse([
|
|
Error::BAD_REQUEST => WPFunctions::get()->__('Missing mandatory argument `id`.', 'mailpoet'),
|
|
]);
|
|
}
|
|
|
|
try {
|
|
$segment = $this->dynamicSegmentsLoader->load($id);
|
|
|
|
$filters = $segment->getFilters();
|
|
|
|
return $this->successResponse(array_merge([
|
|
'name' => $segment->name,
|
|
'description' => $segment->description,
|
|
'id' => $segment->id,
|
|
], $filters[0]->toArray()));
|
|
} catch (\InvalidArgumentException $e) {
|
|
return $this->errorResponse([
|
|
Error::NOT_FOUND => WPFunctions::get()->__('This segment does not exist.', 'mailpoet'),
|
|
]);
|
|
}
|
|
}
|
|
|
|
public function save($data) {
|
|
try {
|
|
$dynamicSegment = $this->mapper->mapDataToDB($data);
|
|
$this->saver->save($dynamicSegment);
|
|
|
|
return $this->successResponse($data);
|
|
} catch (InvalidSegmentTypeException $e) {
|
|
return $this->errorResponse([
|
|
Error::BAD_REQUEST => $this->getErrorString($e),
|
|
], [], Response::STATUS_BAD_REQUEST);
|
|
} catch (ErrorSavingException $e) {
|
|
$statusCode = Response::STATUS_UNKNOWN;
|
|
if ($e->getCode() === Model::DUPLICATE_RECORD) {
|
|
$statusCode = Response::STATUS_CONFLICT;
|
|
}
|
|
return $this->errorResponse([$statusCode => $e->getMessage()], [], $statusCode);
|
|
}
|
|
}
|
|
|
|
private function getErrorString(InvalidSegmentTypeException $e) {
|
|
switch ($e->getCode()) {
|
|
case InvalidSegmentTypeException::MISSING_TYPE:
|
|
return WPFunctions::get()->__('Segment type is missing.', 'mailpoet');
|
|
case InvalidSegmentTypeException::INVALID_TYPE:
|
|
return WPFunctions::get()->__('Segment type is unknown.', 'mailpoet');
|
|
case InvalidSegmentTypeException::MISSING_ROLE:
|
|
return WPFunctions::get()->__('Please select user role.', 'mailpoet');
|
|
case InvalidSegmentTypeException::MISSING_ACTION:
|
|
return WPFunctions::get()->__('Please select email action.', 'mailpoet');
|
|
case InvalidSegmentTypeException::MISSING_NEWSLETTER_ID:
|
|
return WPFunctions::get()->__('Please select an email.', 'mailpoet');
|
|
case InvalidSegmentTypeException::MISSING_PRODUCT_ID:
|
|
return WPFunctions::get()->__('Please select category.', 'mailpoet');
|
|
case InvalidSegmentTypeException::MISSING_CATEGORY_ID:
|
|
return WPFunctions::get()->__('Please select product.', 'mailpoet');
|
|
default:
|
|
return WPFunctions::get()->__('An error occurred while saving data.', 'mailpoet');
|
|
}
|
|
}
|
|
|
|
public function trash($data = []) {
|
|
if (isset($data['id'])) {
|
|
$id = (int)$data['id'];
|
|
} else {
|
|
return $this->errorResponse([
|
|
Error::BAD_REQUEST => WPFunctions::get()->__('Missing mandatory argument `id`.', 'mailpoet'),
|
|
]);
|
|
}
|
|
|
|
try {
|
|
$segment = $this->dynamicSegmentsLoader->load($id);
|
|
$segment->trash();
|
|
return $this->successResponse(
|
|
$segment->asArray(),
|
|
['count' => 1]
|
|
);
|
|
} catch (\InvalidArgumentException $e) {
|
|
return $this->errorResponse([
|
|
Error::NOT_FOUND => WPFunctions::get()->__('This segment does not exist.', 'mailpoet'),
|
|
]);
|
|
}
|
|
}
|
|
|
|
public function restore($data = []) {
|
|
if (isset($data['id'])) {
|
|
$id = (int)$data['id'];
|
|
} else {
|
|
return $this->errorResponse([
|
|
Error::BAD_REQUEST => WPFunctions::get()->__('Missing mandatory argument `id`.', 'mailpoet'),
|
|
]);
|
|
}
|
|
|
|
try {
|
|
$segment = $this->dynamicSegmentsLoader->load($id);
|
|
$segment->restore();
|
|
return $this->successResponse(
|
|
$segment->asArray(),
|
|
['count' => 1]
|
|
);
|
|
} catch (\InvalidArgumentException $e) {
|
|
return $this->errorResponse([
|
|
Error::NOT_FOUND => WPFunctions::get()->__('This segment does not exist.', 'mailpoet'),
|
|
]);
|
|
}
|
|
}
|
|
|
|
public function delete($data = []) {
|
|
if (isset($data['id'])) {
|
|
$id = (int)$data['id'];
|
|
} else {
|
|
return $this->errorResponse([
|
|
Error::BAD_REQUEST => WPFunctions::get()->__('Missing mandatory argument `id`.', 'mailpoet'),
|
|
]);
|
|
}
|
|
|
|
try {
|
|
$segment = $this->dynamicSegmentsLoader->load($id);
|
|
$segment->delete();
|
|
return $this->successResponse(null, ['count' => 1]);
|
|
} catch (\InvalidArgumentException $e) {
|
|
return $this->errorResponse([
|
|
Error::NOT_FOUND => WPFunctions::get()->__('This segment does not exist.', 'mailpoet'),
|
|
]);
|
|
}
|
|
}
|
|
|
|
public function listing($data = []) {
|
|
$listingData = $this->listingHandler->get('\MailPoet\Models\DynamicSegment', $data);
|
|
|
|
$data = [];
|
|
foreach ($listingData['items'] as $segment) {
|
|
$segment->subscribersUrl = WPFunctions::get()->adminUrl(
|
|
'admin.php?page=mailpoet-subscribers#/filter[segment=' . $segment->id . ']'
|
|
);
|
|
|
|
$row = $segment->asArray();
|
|
$segmentWithFilters = $this->dynamicSegmentsLoader->load($segment->id);
|
|
$row['count'] = $this->subscribersCountsLoader->getSubscribersCount($segmentWithFilters);
|
|
$data[] = $row;
|
|
}
|
|
|
|
return $this->successResponse($data, [
|
|
'count' => $listingData['count'],
|
|
'filters' => $listingData['filters'],
|
|
'groups' => $listingData['groups'],
|
|
]);
|
|
|
|
}
|
|
|
|
public function bulkAction($data = []) {
|
|
try {
|
|
$meta = $this->bulkAction->apply('\MailPoet\Models\DynamicSegment', $data);
|
|
return $this->successResponse(null, $meta);
|
|
} catch (\Exception $e) {
|
|
return $this->errorResponse([
|
|
$e->getCode() => $e->getMessage(),
|
|
]);
|
|
}
|
|
}
|
|
}
|