Charsets.php
3 years ago
Hosts.php
2 months ago
Pages.php
9 months ago
SettingsChangeHandler.php
2 weeks ago
SettingsController.php
5 days ago
SettingsRepository.php
1 year ago
TrackingConfig.php
5 months ago
UserFlagsController.php
1 year ago
UserFlagsRepository.php
3 years ago
index.php
3 years ago
SettingsController.php
288 lines
| 1 | <?php // phpcs:ignore SlevomatCodingStandard.TypeHints.DeclareStrictTypes.DeclareStrictTypesMissing |
| 2 | |
| 3 | namespace MailPoet\Settings; |
| 4 | |
| 5 | if (!defined('ABSPATH')) exit; |
| 6 | |
| 7 | |
| 8 | use MailPoet\Cron\CronTrigger; |
| 9 | use MailPoet\DI\ContainerWrapper; |
| 10 | |
| 11 | class SettingsController { |
| 12 | |
| 13 | const DEFAULT_SENDING_METHOD_GROUP = 'website'; |
| 14 | const DEFAULT_SENDING_METHOD = 'PHPMail'; |
| 15 | const DEFAULT_SENDING_FREQUENCY_EMAILS = 25; |
| 16 | const DEFAULT_SENDING_FREQUENCY_INTERVAL = 5; // in minutes |
| 17 | const DEFAULT_DEACTIVATE_SUBSCRIBER_AFTER_INACTIVE_DAYS = 365; |
| 18 | const DEFAULT_SENDING_STATUS_RETENTION_DAYS = ''; |
| 19 | const DEFAULT_SENDING_QUEUE_BODY_RETENTION_DAYS = 30; |
| 20 | const DEFAULT_DELETE_UNCONFIRMED_SUBSCRIBERS_AFTER_DAYS = ''; |
| 21 | const ALLOWED_DELETE_UNCONFIRMED_SUBSCRIBERS_AFTER_DAYS = ['', '30']; |
| 22 | const MANAGE_SUBSCRIPTION_PAGE_STYLE_CLASSIC = 'classic'; |
| 23 | const MANAGE_SUBSCRIPTION_PAGE_STYLE_MODERN = 'modern'; |
| 24 | |
| 25 | private $loaded = false; |
| 26 | |
| 27 | private $settings = []; |
| 28 | |
| 29 | private $defaults = null; |
| 30 | |
| 31 | /** @var SettingsRepository */ |
| 32 | private $settingsRepository; |
| 33 | |
| 34 | private static $instance; |
| 35 | |
| 36 | public function __construct( |
| 37 | SettingsRepository $settingsRepository |
| 38 | ) { |
| 39 | $this->settingsRepository = $settingsRepository; |
| 40 | } |
| 41 | |
| 42 | public function get($key, $default = null) { |
| 43 | $this->ensureLoaded(); |
| 44 | $keyParts = explode('.', $key); |
| 45 | $setting = $this->settings; |
| 46 | if ($default === null) { |
| 47 | $default = $this->getDefaultValue($keyParts); |
| 48 | } |
| 49 | foreach ($keyParts as $keyPart) { |
| 50 | if (is_array($setting) && array_key_exists($keyPart, $setting)) { |
| 51 | $setting = $setting[$keyPart]; |
| 52 | } else { |
| 53 | return $default; |
| 54 | } |
| 55 | } |
| 56 | if (is_array($setting) && is_array($default)) { |
| 57 | return array_replace_recursive($default, $setting); |
| 58 | } |
| 59 | if ($key === 'delete_unconfirmed_subscribers_after_days') { |
| 60 | return $this->normalizeDeleteUnconfirmedSubscribersAfterDays($setting); |
| 61 | } |
| 62 | return $setting; |
| 63 | } |
| 64 | |
| 65 | public function getAllDefaults() { |
| 66 | if ($this->defaults === null) { |
| 67 | $this->defaults = [ |
| 68 | 'mta_group' => self::DEFAULT_SENDING_METHOD_GROUP, |
| 69 | 'mta' => [ |
| 70 | 'method' => self::DEFAULT_SENDING_METHOD, |
| 71 | 'frequency' => [ |
| 72 | 'emails' => self::DEFAULT_SENDING_FREQUENCY_EMAILS, |
| 73 | 'interval' => self::DEFAULT_SENDING_FREQUENCY_INTERVAL, |
| 74 | ], |
| 75 | ], |
| 76 | CronTrigger::SETTING_NAME => [ |
| 77 | 'method' => CronTrigger::DEFAULT_METHOD, |
| 78 | ], |
| 79 | 'signup_confirmation' => [ |
| 80 | 'enabled' => true, |
| 81 | 'use_mailpoet_editor' => true, |
| 82 | ], |
| 83 | 'tracking' => [ |
| 84 | 'level' => TrackingConfig::LEVEL_FULL, |
| 85 | 'consent' => [ |
| 86 | 'track_unknown' => true, |
| 87 | ], |
| 88 | ], |
| 89 | 'subscription' => [ |
| 90 | 'manage_subscription_page_style' => self::MANAGE_SUBSCRIPTION_PAGE_STYLE_MODERN, |
| 91 | 'unsubscribe_survey' => [ |
| 92 | 'enabled' => true, |
| 93 | 'allow_other_text' => false, |
| 94 | ], |
| 95 | ], |
| 96 | 'analytics' => [ |
| 97 | 'enabled' => false, |
| 98 | ], |
| 99 | 'collect_subscriber_timezones' => [ |
| 100 | 'enabled' => true, |
| 101 | ], |
| 102 | 'display_nps_poll' => true, |
| 103 | 'deactivate_subscriber_after_inactive_days' => self::DEFAULT_DEACTIVATE_SUBSCRIBER_AFTER_INACTIVE_DAYS, |
| 104 | 'delete_unconfirmed_subscribers_after_days' => self::DEFAULT_DELETE_UNCONFIRMED_SUBSCRIBERS_AFTER_DAYS, |
| 105 | 'sending_status_retention_days' => self::DEFAULT_SENDING_STATUS_RETENTION_DAYS, |
| 106 | 'sending_queue_body_retention_days' => self::DEFAULT_SENDING_QUEUE_BODY_RETENTION_DAYS, |
| 107 | 'sharing' => [ |
| 108 | 'default_visibility' => 'public', |
| 109 | ], |
| 110 | ]; |
| 111 | } |
| 112 | |
| 113 | // Always include subject and body in defaults, using translated versions when available |
| 114 | $this->defaults['signup_confirmation']['subject'] = $this->getTranslatedDefaultSubject(); |
| 115 | $this->defaults['signup_confirmation']['body'] = $this->getTranslatedDefaultBody(); |
| 116 | |
| 117 | return $this->defaults; |
| 118 | } |
| 119 | |
| 120 | /** |
| 121 | * Get translated default subject with fallback |
| 122 | * |
| 123 | * @return string |
| 124 | */ |
| 125 | private function getTranslatedDefaultSubject(): string { |
| 126 | if ($this->isTranslationReady()) { |
| 127 | return __('Confirm your subscription to [site:title]', 'mailpoet'); |
| 128 | } |
| 129 | return 'Confirm your subscription to [site:title]'; |
| 130 | } |
| 131 | |
| 132 | /** |
| 133 | * Get translated default body with fallback |
| 134 | * |
| 135 | * @return string |
| 136 | */ |
| 137 | private function getTranslatedDefaultBody(): string { |
| 138 | if ($this->isTranslationReady()) { |
| 139 | return __("Hello [subscriber:firstname | default:there],\n\nYou've received this message because you subscribed to [site:title]. Please confirm your subscription to receive emails from us:\n\n[activation_link]Click here to confirm your subscription.[/activation_link] \n\nIf you received this email by mistake, simply delete it. You won't receive any more emails from us unless you confirm your subscription using the link above.\n\nThank you,\n\n<a target=\"_blank\" href=\"[site:homepage_url]\">[site:title]</a>", 'mailpoet'); |
| 140 | } |
| 141 | return "Hello [subscriber:firstname | default:there],\n\nYou've received this message because you subscribed to [site:title]. Please confirm your subscription to receive emails from us:\n\n[activation_link]Click here to confirm your subscription.[/activation_link] \n\nIf you received this email by mistake, simply delete it. You won't receive any more emails from us unless you confirm your subscription using the link above.\n\nThank you,\n\n<a target=\"_blank\" href=\"[site:homepage_url]\">[site:title]</a>"; |
| 142 | } |
| 143 | |
| 144 | /** |
| 145 | * Check if translations are ready to be used |
| 146 | * |
| 147 | * @return bool |
| 148 | */ |
| 149 | private function isTranslationReady(): bool { |
| 150 | if (!function_exists('__')) { |
| 151 | return false; |
| 152 | } |
| 153 | |
| 154 | // Prefer using is_textdomain_loaded to confirm the 'mailpoet' text domain is present |
| 155 | if (function_exists('is_textdomain_loaded')) { |
| 156 | return (bool)is_textdomain_loaded('mailpoet'); |
| 157 | } |
| 158 | |
| 159 | // Fall back to did_action('init') if is_textdomain_loaded is unavailable |
| 160 | // Guard did_action() with function_exists to avoid fatals in non-WP contexts |
| 161 | if (function_exists('did_action')) { |
| 162 | return (bool)did_action('init'); |
| 163 | } |
| 164 | |
| 165 | return false; |
| 166 | } |
| 167 | |
| 168 | /** |
| 169 | * Fetches the value from DB and update in cache |
| 170 | * This is required for sync settings between parallel processes e.g. cron |
| 171 | */ |
| 172 | public function fetch($key, $default = null) { |
| 173 | $keys = explode('.', $key); |
| 174 | $mainKey = $keys[0]; |
| 175 | $this->settings[$mainKey] = $this->fetchValue($mainKey); |
| 176 | return $this->get($key, $default); |
| 177 | } |
| 178 | |
| 179 | public function getAll() { |
| 180 | $this->ensureLoaded(); |
| 181 | $settings = array_replace_recursive($this->getAllDefaults(), $this->settings); |
| 182 | $settings['delete_unconfirmed_subscribers_after_days'] = $this->normalizeDeleteUnconfirmedSubscribersAfterDays($settings['delete_unconfirmed_subscribers_after_days']); |
| 183 | return $settings; |
| 184 | } |
| 185 | |
| 186 | public function set($key, $value) { |
| 187 | $this->ensureLoaded(); |
| 188 | $keyParts = explode('.', $key); |
| 189 | $mainKey = $keyParts[0]; |
| 190 | $hadKey = array_key_exists($mainKey, $this->settings); |
| 191 | $previousValue = $hadKey ? $this->settings[$mainKey] : null; |
| 192 | $lastKey = array_pop($keyParts); |
| 193 | $setting =& $this->settings; |
| 194 | foreach ($keyParts as $keyPart) { |
| 195 | $setting =& $setting[$keyPart]; |
| 196 | if (!is_array($setting)) { |
| 197 | $setting = []; |
| 198 | } |
| 199 | } |
| 200 | $setting[$lastKey] = $value; |
| 201 | if (!$hadKey || $this->settings[$mainKey] !== $previousValue) { |
| 202 | $this->settingsRepository->createOrUpdateByName($mainKey, $this->settings[$mainKey]); |
| 203 | } |
| 204 | } |
| 205 | |
| 206 | public function delete($key) { |
| 207 | $setting = $this->settingsRepository->findOneByName($key); |
| 208 | if ($setting) { |
| 209 | $this->settingsRepository->remove($setting); |
| 210 | $this->settingsRepository->flush(); |
| 211 | } |
| 212 | unset($this->settings[$key]); |
| 213 | } |
| 214 | |
| 215 | /** |
| 216 | * Returns true if a value is stored in the database for the given key |
| 217 | * |
| 218 | * @param string $key |
| 219 | * |
| 220 | * @return bool |
| 221 | */ |
| 222 | public function hasSavedValue(string $key): bool { |
| 223 | return $this->get($key, 'unset') !== 'unset'; |
| 224 | } |
| 225 | |
| 226 | /** |
| 227 | * Returns true if the setting value is a truthy boolean. Settings are persisted as |
| 228 | * strings, integers, or booleans depending on how they were written, so this helper |
| 229 | * normalizes the check across all three representations. |
| 230 | */ |
| 231 | public function isSettingEnabled(string $key): bool { |
| 232 | $value = $this->get($key); |
| 233 | return $value === true || $value === '1' || $value === 1; |
| 234 | } |
| 235 | |
| 236 | private function ensureLoaded() { |
| 237 | if ($this->loaded) { |
| 238 | return; |
| 239 | } |
| 240 | |
| 241 | $this->settings = []; |
| 242 | foreach ($this->settingsRepository->findAll() as $setting) { |
| 243 | $this->settings[$setting->getName()] = $setting->getValue(); |
| 244 | } |
| 245 | $this->loaded = true; |
| 246 | } |
| 247 | |
| 248 | private function getDefaultValue($keys) { |
| 249 | $default = $this->getAllDefaults(); |
| 250 | foreach ($keys as $key) { |
| 251 | if (array_key_exists($key, $default)) { |
| 252 | $default = $default[$key]; |
| 253 | } else { |
| 254 | return null; |
| 255 | } |
| 256 | } |
| 257 | |
| 258 | return $default; |
| 259 | } |
| 260 | |
| 261 | private function normalizeDeleteUnconfirmedSubscribersAfterDays($value): string { |
| 262 | if (in_array($value, self::ALLOWED_DELETE_UNCONFIRMED_SUBSCRIBERS_AFTER_DAYS, true)) { |
| 263 | return $value; |
| 264 | } |
| 265 | return self::DEFAULT_DELETE_UNCONFIRMED_SUBSCRIBERS_AFTER_DAYS; |
| 266 | } |
| 267 | |
| 268 | private function fetchValue($key) { |
| 269 | $setting = $this->settingsRepository->findOneByName($key); |
| 270 | return $setting ? $setting->getValue() : null; |
| 271 | } |
| 272 | |
| 273 | public function resetCache() { |
| 274 | $this->settings = []; |
| 275 | $this->loaded = false; |
| 276 | } |
| 277 | |
| 278 | public static function setInstance($instance) { |
| 279 | self::$instance = $instance; |
| 280 | } |
| 281 | |
| 282 | /** @return SettingsController */ |
| 283 | public static function getInstance() { |
| 284 | if (isset(self::$instance)) return self::$instance; |
| 285 | return ContainerWrapper::getInstance()->get(SettingsController::class); |
| 286 | } |
| 287 | } |
| 288 |