| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199 |
- <?php
- namespace MailPoet\Config;
- if (!defined('ABSPATH')) exit;
- use MailPoet\Entities\NewsletterEntity;
- use MailPoet\Entities\SendingQueueEntity;
- use MailPoet\Entities\SubscriberEntity;
- use MailPoet\Form\Widget;
- use MailPoet\Models\Subscriber;
- use MailPoet\Newsletter\NewslettersRepository;
- use MailPoet\Newsletter\Url as NewsletterUrl;
- use MailPoet\Segments\SegmentSubscribersRepository;
- use MailPoet\Subscribers\SubscribersRepository;
- use MailPoet\Subscription\Pages;
- use MailPoet\WP\Functions as WPFunctions;
- class Shortcodes {
- /** @var Pages */
- private $subscriptionPages;
- /** @var WPFunctions */
- private $wp;
- /** @var SegmentSubscribersRepository */
- private $segmentSubscribersRepository;
- /** @var SubscribersRepository */
- private $subscribersRepository;
- /** @var NewsletterUrl */
- private $newsletterUrl;
- /** @var NewslettersRepository */
- private $newslettersRepository;
- public function __construct(
- Pages $subscriptionPages,
- WPFunctions $wp,
- SegmentSubscribersRepository $segmentSubscribersRepository,
- SubscribersRepository $subscribersRepository,
- NewsletterUrl $newsletterUrl,
- NewslettersRepository $newslettersRepository
- ) {
- $this->subscriptionPages = $subscriptionPages;
- $this->wp = $wp;
- $this->segmentSubscribersRepository = $segmentSubscribersRepository;
- $this->subscribersRepository = $subscribersRepository;
- $this->newsletterUrl = $newsletterUrl;
- $this->newslettersRepository = $newslettersRepository;
- }
- public function init() {
- // form widget shortcode
- $this->wp->addShortcode('mailpoet_form', [$this, 'formWidget']);
- // subscribers count shortcode
- $this->wp->addShortcode('mailpoet_subscribers_count', [
- $this, 'getSubscribersCount',
- ]);
- $this->wp->addShortcode('wysija_subscribers_count', [
- $this, 'getSubscribersCount',
- ]);
- // archives page
- $this->wp->addShortcode('mailpoet_archive', [
- $this, 'getArchive',
- ]);
- $this->wp->addFilter('mailpoet_archive_email_processed_date', [
- $this, 'renderArchiveDate',
- ], 2);
- $this->wp->addFilter('mailpoet_archive_email_subject', [
- $this, 'renderArchiveSubject',
- ], 2, 3);
- // This deprecated notice can be removed after 2022-06-01
- if ($this->wp->hasFilter('mailpoet_archive_date')) {
- $this->wp->deprecatedHook(
- 'mailpoet_archive_date',
- '3.69.2',
- 'mailpoet_archive_email_processed_date',
- __('Please note that mailpoet_archive_date no longer runs and that the list of parameters of the new filter is different.', 'mailpoet')
- );
- }
- // This deprecated notice can be removed after 2022-06-01
- if ($this->wp->hasFilter('mailpoet_archive_subject')) {
- $this->wp->deprecatedHook(
- 'mailpoet_archive_subject',
- '3.69.2',
- 'mailpoet_archive_email_subject',
- __('Please note that mailpoet_archive_subject no longer runs and that the list of parameters of the new filter is different.', 'mailpoet')
- );
- }
- // initialize subscription pages data
- $this->subscriptionPages->init();
- // initialize subscription management shortcodes
- $this->subscriptionPages->initShortcodes();
- }
- public function formWidget($params = []) {
- // IMPORTANT: fixes conflict with MagicMember
- $this->wp->removeShortcode('user_list');
- if (isset($params['id']) && (int)$params['id'] > 0) {
- $formWidget = new Widget();
- return $formWidget->widget([
- 'form' => (int)$params['id'],
- 'form_type' => 'shortcode',
- ]);
- }
- }
- public function getSubscribersCount($params) {
- if (!empty($params['segments'])) {
- $segmentIds = array_map(function($segmentId) {
- return (int)trim($segmentId);
- }, explode(',', $params['segments']));
- }
- if (empty($segmentIds)) {
- return $this->wp->numberFormatI18n(Subscriber::filter('subscribed')->count());
- } else {
- return $this->wp->numberFormatI18n(
- $this->segmentSubscribersRepository->getSubscribersCountBySegmentIds($segmentIds, SubscriberEntity::STATUS_SUBSCRIBED)
- );
- }
- }
- public function getArchive($params) {
- $segmentIds = [];
- if (!empty($params['segments'])) {
- $segmentIds = array_map(function($segmentId) {
- return (int)trim($segmentId);
- }, explode(',', $params['segments']));
- }
- $html = '';
- $newsletters = $this->newslettersRepository->getArchives($segmentIds);
- $subscriber = $this->subscribersRepository->getCurrentWPUser();
- $subscriber = $subscriber ? Subscriber::findOne($subscriber->getId()) : null;
- if (empty($newsletters)) {
- return $this->wp->applyFilters(
- 'mailpoet_archive_no_newsletters',
- $this->wp->__('Oops! There are no newsletters to display.', 'mailpoet')
- );
- } else {
- $title = $this->wp->applyFilters('mailpoet_archive_title', '');
- if (!empty($title)) {
- $html .= '<h3 class="mailpoet_archive_title">' . $title . '</h3>';
- }
- $html .= '<ul class="mailpoet_archive">';
- foreach ($newsletters as $newsletter) {
- $queue = $newsletter->getLatestQueue();
- $html .= '<li>' .
- '<span class="mailpoet_archive_date">' .
- $this->wp->applyFilters('mailpoet_archive_email_processed_date', $newsletter) .
- '</span>
- <span class="mailpoet_archive_subject">' .
- $this->wp->applyFilters('mailpoet_archive_email_subject', $newsletter, $subscriber, $queue) .
- '</span>
- </li>';
- }
- $html .= '</ul>';
- }
- return $html;
- }
- public function renderArchiveDate(NewsletterEntity $newsletter) {
- $timestamp = null;
- $processedAt = $newsletter->getProcessedAt();
- if (!is_null($processedAt)) {
- $timestamp = $processedAt->getTimestamp();
- }
- return $this->wp->dateI18n(
- $this->wp->getOption('date_format'),
- $timestamp
- );
- }
- public function renderArchiveSubject(NewsletterEntity $newsletter, $subscriber, SendingQueueEntity $queue) {
- $previewUrl = $this->newsletterUrl->getViewInBrowserUrl($newsletter, $subscriber, $queue);
- return '<a href="' . esc_attr($previewUrl) . '" target="_blank" title="'
- . esc_attr(__('Preview in a new tab', 'mailpoet')) . '">'
- . esc_attr((string)$queue->getNewsletterRenderedSubject()) .
- '</a>';
- }
- }
|