Files
piratepoet/lib/Subscribers/ImportExport/ImportExportFactory.php
2020-09-28 14:26:53 +02:00

165 lines
4.8 KiB
PHP

<?php
namespace MailPoet\Subscribers\ImportExport;
use MailPoet\DI\ContainerWrapper;
use MailPoet\DynamicSegments\FreePluginConnectors\AddToNewslettersSegments;
use MailPoet\Models\CustomField;
use MailPoet\Models\Segment;
use MailPoet\Util\Helpers;
class ImportExportFactory {
const IMPORT_ACTION = 'import';
const EXPORT_ACTION = 'export';
/** @var string|null */
public $action;
/** @var AddToNewslettersSegments */
private $dynamicSegmentsLoader;
public function __construct($action = null) {
$this->action = $action;
$this->dynamicSegmentsLoader = ContainerWrapper::getInstance()->get(AddToNewslettersSegments::class);
}
public function getSegments() {
if ($this->action === self::IMPORT_ACTION) {
$segments = Segment::getSegmentsForImport();
} else {
$segments = Segment::getSegmentsForExport();
$segments = $this->dynamicSegmentsLoader->add($segments);
$segments = $this->wp->applyFilters('mailpoet_segments_with_subscriber_count', $segments);
$segments = array_values(array_filter($segments, function($segment) {
return $segment['subscribers'] > 0;
}));
}
return array_map(function($segment) {
if (!$segment['name']) $segment['name'] = __('Not In List', 'mailpoet');
if (!$segment['id']) $segment['id'] = 0;
return [
'id' => $segment['id'],
'name' => $segment['name'],
'text' => $segment['name'], // Required select2 property
'subscriberCount' => $segment['subscribers'],
];
}, $segments);
}
public function getSubscriberFields() {
$fields = [
'email' => __('Email', 'mailpoet'),
'first_name' => __('First name', 'mailpoet'),
'last_name' => __('Last name', 'mailpoet'),
];
if ($this->action === 'export') {
$fields = array_merge(
$fields,
[
'list_status' => _x('List status', 'Subscription status', 'mailpoet'),
'global_status' => _x('Global status', 'Subscription status', 'mailpoet'),
'subscribed_ip' => __('IP address', 'mailpoet'),
]
);
}
return $fields;
}
public function formatSubscriberFields($subscriberFields) {
return array_map(function($fieldId, $fieldName) {
return [
'id' => $fieldId,
'name' => $fieldName,
'type' => ($fieldId === 'confirmed_at') ? 'date' : null,
'custom' => false,
];
}, array_keys($subscriberFields), $subscriberFields);
}
public function getSubscriberCustomFields() {
return CustomField::findArray();
}
public function formatSubscriberCustomFields($subscriberCustomFields) {
return array_map(function($field) {
return [
'id' => $field['id'],
'name' => $field['name'],
'type' => $field['type'],
'params' => unserialize($field['params']),
'custom' => true,
];
}, $subscriberCustomFields);
}
public function formatFieldsForSelect2(
$subscriberFields,
$subscriberCustomFields) {
$actions = ($this->action === 'import') ?
[
[
'id' => 'ignore',
'name' => __('Ignore field...', 'mailpoet'),
],
[
'id' => 'create',
'name' => __('Create new field...', 'mailpoet'),
],
] :
[
[
'id' => 'select',
'name' => __('Select all...', 'mailpoet'),
],
[
'id' => 'deselect',
'name' => __('Deselect all...', 'mailpoet'),
],
];
$select2Fields = [
[
'name' => __('Actions', 'mailpoet'),
'children' => $actions,
],
[
'name' => __('System fields', 'mailpoet'),
'children' => $this->formatSubscriberFields($subscriberFields),
],
];
if ($subscriberCustomFields) {
array_push($select2Fields, [
'name' => __('User fields', 'mailpoet'),
'children' => $this->formatSubscriberCustomFields(
$subscriberCustomFields
),
]);
}
return $select2Fields;
}
public function bootstrap() {
$subscriberFields = $this->getSubscriberFields();
$subscriberCustomFields = $this->getSubscriberCustomFields();
$data['segments'] = json_encode($this->getSegments());
$data['subscriberFieldsSelect2'] = json_encode(
$this->formatFieldsForSelect2(
$subscriberFields,
$subscriberCustomFields
)
);
if ($this->action === 'import') {
$data['subscriberFields'] = json_encode(
array_merge(
$this->formatSubscriberFields($subscriberFields),
$this->formatSubscriberCustomFields($subscriberCustomFields)
)
);
$data['maxPostSizeBytes'] = Helpers::getMaxPostSize('bytes');
$data['maxPostSize'] = Helpers::getMaxPostSize();
}
$data['zipExtensionLoaded'] = extension_loaded('zip');
return $data;
}
}