AbstractAutomationEmbed.php
5 months ago
Automation.php
2 years ago
AutomationAnalytics.php
2 months ago
AutomationEditor.php
2 months ago
AutomationFlowEmbed.php
5 months ago
AutomationPreviewEmbed.php
2 months ago
AutomationTemplates.php
2 years ago
CustomFields.php
2 months ago
DynamicSegments.php
2 months ago
ExperimentalFeatures.php
3 years ago
FormEditor.php
1 week ago
Forms.php
2 months ago
Help.php
2 months ago
Homepage.php
2 years ago
Landingpage.php
2 years ago
Logs.php
1 month ago
NewsletterEditor.php
2 months ago
Newsletters.php
2 months ago
Settings.php
5 months ago
StaticSegments.php
2 months ago
Subscribers.php
1 week ago
SubscribersExport.php
3 years ago
SubscribersImport.php
2 months ago
Tags.php
2 months ago
Upgrade.php
1 year ago
WelcomeWizard.php
2 months ago
WooCommerceSetup.php
2 months ago
index.php
3 years ago
NewsletterEditor.php
200 lines
| 1 | <?php // phpcs:ignore SlevomatCodingStandard.TypeHints.DeclareStrictTypes.DeclareStrictTypesMissing |
| 2 | |
| 3 | namespace MailPoet\AdminPages\Pages; |
| 4 | |
| 5 | if (!defined('ABSPATH')) exit; |
| 6 | |
| 7 | |
| 8 | use MailPoet\AdminPages\AssetsController; |
| 9 | use MailPoet\AdminPages\PageRenderer; |
| 10 | use MailPoet\Entities\NewsletterEntity; |
| 11 | use MailPoet\Entities\SubscriberEntity; |
| 12 | use MailPoet\Form\Util\CustomFonts; |
| 13 | use MailPoet\Newsletter\NewslettersRepository; |
| 14 | use MailPoet\Newsletter\Renderer\Blocks\Coupon; |
| 15 | use MailPoet\Newsletter\Shortcodes\ShortcodesHelper; |
| 16 | use MailPoet\NewsletterTemplates\BrandStyles; |
| 17 | use MailPoet\Settings\SettingsController; |
| 18 | use MailPoet\Settings\UserFlagsController; |
| 19 | use MailPoet\Subscribers\SubscribersRepository; |
| 20 | use MailPoet\WooCommerce\Helper as WooCommerceHelper; |
| 21 | use MailPoet\WooCommerce\TransactionalEmailHooks; |
| 22 | use MailPoet\WooCommerce\TransactionalEmails; |
| 23 | use MailPoet\WooCommerce\TransactionalEmails\Template as WooTransactionalEmailTemplate; |
| 24 | use MailPoet\WP\AutocompletePostListLoader as WPPostListLoader; |
| 25 | use MailPoet\WP\Functions as WPFunctions; |
| 26 | |
| 27 | class NewsletterEditor { |
| 28 | private const DATE_FORMAT = 'Y-m-d H:i:s'; |
| 29 | |
| 30 | private PageRenderer $pageRenderer; |
| 31 | private SettingsController $settings; |
| 32 | private UserFlagsController $userFlags; |
| 33 | private WooCommerceHelper $woocommerceHelper; |
| 34 | private WPFunctions $wp; |
| 35 | private TransactionalEmails $wcTransactionalEmails; |
| 36 | private ShortcodesHelper $shortcodesHelper; |
| 37 | private SubscribersRepository $subscribersRepository; |
| 38 | private TransactionalEmailHooks $wooEmailHooks; |
| 39 | private WPPostListLoader $wpPostListLoader; |
| 40 | private CustomFonts $customFonts; |
| 41 | private AssetsController $assetsController; |
| 42 | private BrandStyles $brandStyles; |
| 43 | private WooTransactionalEmailTemplate $template; |
| 44 | private NewslettersRepository $newslettersRepository; |
| 45 | |
| 46 | public function __construct( |
| 47 | PageRenderer $pageRenderer, |
| 48 | SettingsController $settings, |
| 49 | UserFlagsController $userFlags, |
| 50 | WooCommerceHelper $woocommerceHelper, |
| 51 | WPFunctions $wp, |
| 52 | TransactionalEmails $wcTransactionalEmails, |
| 53 | ShortcodesHelper $shortcodesHelper, |
| 54 | SubscribersRepository $subscribersRepository, |
| 55 | TransactionalEmailHooks $wooEmailHooks, |
| 56 | WPPostListLoader $wpPostListLoader, |
| 57 | CustomFonts $customFonts, |
| 58 | AssetsController $assetsController, |
| 59 | WooTransactionalEmailTemplate $template, |
| 60 | BrandStyles $brandStyles, |
| 61 | NewslettersRepository $newslettersRepository |
| 62 | ) { |
| 63 | $this->pageRenderer = $pageRenderer; |
| 64 | $this->settings = $settings; |
| 65 | $this->userFlags = $userFlags; |
| 66 | $this->woocommerceHelper = $woocommerceHelper; |
| 67 | $this->wp = $wp; |
| 68 | $this->wcTransactionalEmails = $wcTransactionalEmails; |
| 69 | $this->shortcodesHelper = $shortcodesHelper; |
| 70 | $this->subscribersRepository = $subscribersRepository; |
| 71 | $this->wooEmailHooks = $wooEmailHooks; |
| 72 | $this->wpPostListLoader = $wpPostListLoader; |
| 73 | $this->customFonts = $customFonts; |
| 74 | $this->assetsController = $assetsController; |
| 75 | $this->template = $template; |
| 76 | $this->brandStyles = $brandStyles; |
| 77 | $this->newslettersRepository = $newslettersRepository; |
| 78 | } |
| 79 | |
| 80 | public function render() { |
| 81 | $this->setupImageSize(); |
| 82 | $this->assetsController->setupNewsletterEditorDependencies(); |
| 83 | $newsletterId = isset($_GET['id']) && is_numeric($_GET['id']) ? (int)$_GET['id'] : 0; |
| 84 | $woocommerceTemplateId = (int)$this->settings->get(TransactionalEmails::SETTING_EMAIL_ID, null); |
| 85 | if ( |
| 86 | $woocommerceTemplateId |
| 87 | && $newsletterId === $woocommerceTemplateId |
| 88 | && !$this->woocommerceHelper->isWooCommerceActive() |
| 89 | ) { |
| 90 | $location = 'admin.php?page=mailpoet-settings&enable-customizer-notice#woocommerce'; |
| 91 | if (headers_sent()) { |
| 92 | echo '<script>window.location = "' . esc_js($location) . '";</script>'; |
| 93 | } else { |
| 94 | header('Location: ' . $location, true, 302); |
| 95 | } |
| 96 | exit; |
| 97 | } |
| 98 | |
| 99 | $subscriber = $this->subscribersRepository->getCurrentWPUser(); |
| 100 | $subscriberData = $subscriber ? $this->formatSubscriber($subscriber) : []; |
| 101 | $woocommerceData = []; |
| 102 | $originalTemplateBody = null; |
| 103 | if ($this->woocommerceHelper->isWooCommerceActive()) { |
| 104 | $wcEmailSettings = $this->wcTransactionalEmails->getWCEmailSettings(); |
| 105 | |
| 106 | // Activate hooks for Woo emails styles so that we always load styles set in Woo email customizer |
| 107 | if ($newsletterId === (int)$this->settings->get(TransactionalEmails::SETTING_EMAIL_ID)) { |
| 108 | $this->wooEmailHooks->overrideStylesForWooEmails(); |
| 109 | $originalTemplateBody = $this->template->create($wcEmailSettings); |
| 110 | } |
| 111 | $discountTypes = $this->woocommerceHelper->wcGetCouponTypes(); |
| 112 | $discountType = (string)current(array_keys($discountTypes)); |
| 113 | $amountMax = strpos($discountType, 'percent') !== false ? 100 : null; |
| 114 | $woocommerceData = [ |
| 115 | 'email_headings' => $this->wcTransactionalEmails->getEmailHeadings(), |
| 116 | 'customizer_enabled' => (bool)$this->settings->get('woocommerce.use_mailpoet_editor'), |
| 117 | 'coupon' => [ |
| 118 | 'config' => [ |
| 119 | 'discount_types' => array_map(function($label, $value): array { |
| 120 | return ['label' => $label, 'value' => $value]; |
| 121 | }, $discountTypes, array_keys($discountTypes)), |
| 122 | 'code_placeholder' => Coupon::CODE_PLACEHOLDER, |
| 123 | 'price_decimal_separator' => $this->woocommerceHelper->wcGetPriceDecimalSeparator(), |
| 124 | ], |
| 125 | 'defaults' => [ |
| 126 | 'code' => Coupon::CODE_PLACEHOLDER, |
| 127 | 'discountType' => $discountType, |
| 128 | 'amountMax' => $amountMax, |
| 129 | ], |
| 130 | ], |
| 131 | ]; |
| 132 | $woocommerceData = array_merge($wcEmailSettings, $woocommerceData); |
| 133 | } |
| 134 | |
| 135 | // Check if newsletter is a confirmation email type (includes per-list confirmation emails) |
| 136 | $newsletter = $newsletterId ? $this->newslettersRepository->findOneById($newsletterId) : null; |
| 137 | $isConfirmationEmailType = $newsletter && $newsletter->getType() === NewsletterEntity::TYPE_CONFIRMATION_EMAIL_CUSTOMIZER; |
| 138 | |
| 139 | $data = [ |
| 140 | 'customFontsEnabled' => $this->customFonts->displayCustomFonts(), |
| 141 | 'shortcodes' => $this->shortcodesHelper->getShortcodes(), |
| 142 | 'settings' => $this->settings->getAll(), |
| 143 | 'editor_tutorial_seen' => $this->userFlags->get('editor_tutorial_seen'), |
| 144 | 'current_wp_user' => array_merge($subscriberData, $this->wp->wpGetCurrentUser()->to_array()), |
| 145 | 'woocommerce' => $woocommerceData, |
| 146 | 'is_wc_transactional_email' => $newsletterId === $woocommerceTemplateId, |
| 147 | 'is_confirmation_email_type' => $isConfirmationEmailType, |
| 148 | 'is_confirmation_email_customizer_enabled' => (bool)$this->settings->get('signup_confirmation.use_mailpoet_editor', false), |
| 149 | 'original_template_body' => $originalTemplateBody, |
| 150 | 'product_categories' => $this->wpPostListLoader->getWooCommerceCategories(), |
| 151 | 'products' => $this->wpPostListLoader->getProducts(), |
| 152 | 'brand_styles' => [ |
| 153 | 'available' => $this->brandStyles->isAvailable(), |
| 154 | ], |
| 155 | 'api' => [ |
| 156 | 'root' => rtrim($this->wp->escUrlRaw($this->wp->restUrl()), '/'), |
| 157 | 'nonce' => $this->wp->wpCreateNonce('wp_rest'), |
| 158 | ], |
| 159 | ]; |
| 160 | $this->wp->wpEnqueueMedia(); |
| 161 | $this->wp->wpEnqueueStyle('editor', $this->wp->includesUrl('css/editor.css')); |
| 162 | $this->pageRenderer->displayPage('newsletter/editor.html', $data); |
| 163 | } |
| 164 | |
| 165 | private function formatSubscriber(SubscriberEntity $subscriber): array { |
| 166 | return [ |
| 167 | 'id' => $subscriber->getId(), |
| 168 | 'wp_user_id' => $subscriber->getWpUserId(), |
| 169 | 'is_woocommerce_user' => (string)$subscriber->getIsWoocommerceUser(), // BC compatibility |
| 170 | 'first_name' => $subscriber->getFirstName(), |
| 171 | 'last_name' => $subscriber->getLastName(), |
| 172 | 'email' => $subscriber->getEmail(), |
| 173 | 'status' => $subscriber->getStatus(), |
| 174 | 'subscribed_ip' => $subscriber->getSubscribedIp(), |
| 175 | 'confirmed_ip' => $subscriber->getConfirmedIp(), |
| 176 | 'confirmed_at' => ($confirmedAt = $subscriber->getConfirmedAt()) ? $confirmedAt->format(self::DATE_FORMAT) : null, |
| 177 | 'last_subscribed_at' => ($lastSubscribedAt = $subscriber->getLastSubscribedAt()) ? $lastSubscribedAt->format(self::DATE_FORMAT) : null, |
| 178 | 'created_at' => ($createdAt = $subscriber->getCreatedAt()) ? $createdAt->format(self::DATE_FORMAT) : null, |
| 179 | 'updated_at' => ($updatedAt = $subscriber->getUpdatedAt()) ? $updatedAt->format(self::DATE_FORMAT) : null, |
| 180 | 'deleted_at' => ($deletedAt = $subscriber->getDeletedAt()) ? $deletedAt->format(self::DATE_FORMAT) : null, |
| 181 | 'unconfirmed_data' => $subscriber->getUnconfirmedData(), |
| 182 | 'source' => $subscriber->getSource(), |
| 183 | 'count_confirmation' => $subscriber->getConfirmationsCount(), |
| 184 | 'unsubscribe_token' => $subscriber->getUnsubscribeToken(), |
| 185 | 'link_token' => $subscriber->getLinkToken(), |
| 186 | ]; |
| 187 | } |
| 188 | |
| 189 | private function setupImageSize(): void { |
| 190 | $this->wp->addFilter( |
| 191 | 'image_size_names_choose', |
| 192 | function ($sizes): array { |
| 193 | return array_merge($sizes, [ |
| 194 | 'mailpoet_newsletter_max' => __('MailPoet Newsletter', 'mailpoet'), |
| 195 | ]); |
| 196 | } |
| 197 | ); |
| 198 | } |
| 199 | } |
| 200 |