46 lines
1.3 KiB
PHP
46 lines
1.3 KiB
PHP
<?php
|
|
|
|
namespace MailPoet\Segments;
|
|
|
|
use MailPoet\Listing\Handler;
|
|
use MailPoet\Models\Segment;
|
|
use MailPoet\WP\Functions as WPFunctions;
|
|
|
|
class SubscribersListings {
|
|
|
|
/** @var Handler */
|
|
private $handler;
|
|
|
|
private $wp;
|
|
|
|
public function __construct(Handler $handler, WPFunctions $wp) {
|
|
$this->handler = $handler;
|
|
$this->wp = $wp;
|
|
}
|
|
|
|
public function getListingsInSegment($data) {
|
|
if (!isset($data['filter']['segment'])) {
|
|
throw new \InvalidArgumentException('Missing segment id');
|
|
}
|
|
$segment = Segment::findOne($data['filter']['segment']);
|
|
return $this->getListings($data, $segment instanceof Segment ? $segment : null);
|
|
|
|
}
|
|
|
|
private function getListings($data, Segment $segment = null) {
|
|
if (!$segment
|
|
|| in_array($segment->type, [Segment::TYPE_DEFAULT, Segment::TYPE_WP_USERS, Segment::TYPE_WC_USERS], true)
|
|
) {
|
|
return $listingData = $this->handler->get('\MailPoet\Models\Subscriber', $data);
|
|
}
|
|
$handlers = $this->wp->applyFilters('mailpoet_get_subscribers_listings_in_segment_handlers', []);
|
|
foreach ($handlers as $handler) {
|
|
$listings = $handler->get($segment, $data);
|
|
if ($listings) {
|
|
return $listings;
|
|
}
|
|
}
|
|
throw new \InvalidArgumentException('No handler found for segment');
|
|
}
|
|
}
|