addValidations('name', [ 'required' => __('Please specify a name.', 'mailpoet'), ]); } public function delete() { // delete all relations to subscribers SubscriberSegment::where('segment_id', $this->id)->deleteMany(); return parent::delete(); } public function newsletters() { return $this->has_many_through( __NAMESPACE__ . '\Newsletter', __NAMESPACE__ . '\NewsletterSegment', 'segment_id', 'newsletter_id' ); } public function subscribers() { return $this->has_many_through( __NAMESPACE__ . '\Subscriber', __NAMESPACE__ . '\SubscriberSegment', 'segment_id', 'subscriber_id' ); } public function duplicate($data = []) { $duplicate = parent::duplicate($data); if ($duplicate !== false) { foreach ($this->subscribers()->findResultSet() as $relation) { $newRelation = SubscriberSegment::create(); $newRelation->set('subscriber_id', $relation->id); $newRelation->set('segment_id', $duplicate->id); $newRelation->save(); } return $duplicate; } return false; } public function addSubscriber($subscriberId) { $relation = SubscriberSegment::create(); $relation->set('subscriber_id', $subscriberId); $relation->set('segment_id', $this->id); return $relation->save(); } public function removeSubscriber($subscriberId) { return SubscriberSegment::where('subscriber_id', $subscriberId) ->where('segment_id', $this->id) ->delete(); } public static function getWPSegment() { $wpSegment = self::where('type', self::TYPE_WP_USERS)->findOne(); if ($wpSegment === false) { // create the wp users segment $wpSegment = Segment::create(); $wpSegment->hydrate([ 'name' => __('WordPress Users', 'mailpoet'), 'description' => __('This list contains all of your WordPress users.', 'mailpoet'), 'type' => self::TYPE_WP_USERS, ]); $wpSegment->save(); } return $wpSegment; } public static function getWooCommerceSegment() { $wcSegment = self::where('type', self::TYPE_WC_USERS)->findOne(); if ($wcSegment === false) { // create the WooCommerce customers segment $wcSegment = Segment::create(); $wcSegment->hydrate([ 'name' => __('WooCommerce Customers', 'mailpoet'), 'description' => __('This list contains all of your WooCommerce customers.', 'mailpoet'), 'type' => self::TYPE_WC_USERS, ]); $wcSegment->save(); } return $wcSegment; } /** * @deprecated Use the non static implementation in \MailPoet\Segments\WooCommerce::shouldShowWooCommerceSegment instead */ public static function shouldShowWooCommerceSegment() { $woocommerceHelper = new WCHelper(Functions::get()); $isWoocommerceActive = $woocommerceHelper->isWooCommerceActive(); $woocommerceUserExists = Segment::tableAlias('segment') ->where('segment.type', Segment::TYPE_WC_USERS) ->join( MP_SUBSCRIBER_SEGMENT_TABLE, 'segment_subscribers.segment_id = segment.id', 'segment_subscribers' ) ->limit(1) ->findOne(); if (!$isWoocommerceActive && !$woocommerceUserExists) { return false; } return true; } public static function getSegmentTypes() { $types = [Segment::TYPE_DEFAULT, Segment::TYPE_WP_USERS]; if (Segment::shouldShowWooCommerceSegment()) { $types[] = Segment::TYPE_WC_USERS; } return $types; } public static function groupBy($orm, $group = null) { if ($group === 'trash') { $orm->whereNotNull('deleted_at'); } else { $orm->whereNull('deleted_at'); } return $orm; } public static function getPublic() { return self::getPublished()->where('type', self::TYPE_DEFAULT)->orderByAsc('name'); } public static function bulkTrash($orm) { $count = parent::bulkAction($orm, function($ids) { Segment::rawExecute(join(' ', [ 'UPDATE `' . Segment::$_table . '`', 'SET `deleted_at` = NOW()', 'WHERE `id` IN (' . rtrim(str_repeat('?,', count($ids)), ',') . ')', 'AND `type` = "' . Segment::TYPE_DEFAULT . '"', ]), $ids); }); return ['count' => $count]; } public static function bulkDelete($orm) { $count = parent::bulkAction($orm, function($ids) { // delete segments (only default) $segments = Segment::whereIn('id', $ids) ->where('type', Segment::TYPE_DEFAULT) ->findMany(); $ids = array_map(function($segment) { return $segment->id; }, $segments); if (!$ids) { return; } SubscriberSegment::whereIn('segment_id', $ids) ->deleteMany(); Segment::whereIn('id', $ids)->deleteMany(); }); return ['count' => $count]; } }