Migration_20221028_105818_App.php
3 years ago
Migration_20230109_144830.php
3 years ago
Migration_20230131_121621.php
3 years ago
Migration_20230419_080000.php
3 years ago
Migration_20230425_211517.php
3 years ago
Migration_20230712_180341.php
3 years ago
Migration_20230803_200413_App.php
2 years ago
Migration_20230825_093531_App.php
1 year ago
Migration_20231128_120355_App.php
1 year ago
Migration_20240202_130053_App.php
2 years ago
Migration_20240207_105912_App.php
1 year ago
Migration_20240322_110443_App.php
2 years ago
Migration_20240730_212419_App.php
2 years ago
Migration_20241015_105511_App.php
1 year ago
Migration_20241128_114257_App.php
1 year ago
Migration_20250120_094614_App.php
1 year ago
Migration_20250501_114655_App.php
11 months ago
Migration_20260421_155908_App.php
3 months ago
Migration_20260515_120000_App.php
3 months ago
Migration_20260623_120000_App.php
1 month ago
Migration_20260805_120000_App.php
1 week ago
index.php
3 years ago
Migration_20221028_105818_App.php
250 lines
| 1 | <?php declare(strict_types = 1); |
| 2 | |
| 3 | namespace MailPoet\Migrations\App; |
| 4 | |
| 5 | if (!defined('ABSPATH')) exit; |
| 6 | |
| 7 | |
| 8 | use MailPoet\Cron\CronTrigger; |
| 9 | use MailPoet\Cron\Workers\StatsNotifications\Worker; |
| 10 | use MailPoet\Entities\FormEntity; |
| 11 | use MailPoet\Form\FormsRepository; |
| 12 | use MailPoet\Migrator\AppMigration; |
| 13 | use MailPoet\Settings\SettingsChangeHandler; |
| 14 | use MailPoet\Settings\SettingsController; |
| 15 | use MailPoet\Settings\TrackingConfig; |
| 16 | use MailPoet\Util\Notices\ChangedTrackingNotice; |
| 17 | use MailPoet\WP\Functions as WPFunctions; |
| 18 | |
| 19 | /** |
| 20 | * Extracted from original Migration_20221028_105818.php when separating Db and App migrations. |
| 21 | */ |
| 22 | class Migration_20221028_105818_App extends AppMigration { |
| 23 | /** @var SettingsController */ |
| 24 | private $settings; |
| 25 | |
| 26 | /** @var SettingsChangeHandler */ |
| 27 | private $settingsChangeHandler; |
| 28 | |
| 29 | /** @var FormsRepository */ |
| 30 | private $formsRepository; |
| 31 | |
| 32 | /** @var WPFunctions */ |
| 33 | private $wp; |
| 34 | |
| 35 | public function run(): void { |
| 36 | $this->settings = $this->container->get(SettingsController::class); |
| 37 | $this->settingsChangeHandler = $this->container->get(SettingsChangeHandler::class); |
| 38 | $this->formsRepository = $this->container->get(FormsRepository::class); |
| 39 | $this->wp = $this->container->get(WPFunctions::class); |
| 40 | |
| 41 | $this->updateDefaultInactiveSubscriberTimeRange(); |
| 42 | $this->setDefaultValueForLoadingThirdPartyLibrariesForExistingInstalls(); |
| 43 | $this->disableMailPoetCronTrigger(); |
| 44 | |
| 45 | // POPULATOR |
| 46 | $this->enableStatsNotificationsForAutomatedEmails(); |
| 47 | $this->addPlacementStatusToForms(); |
| 48 | $this->migrateFormPlacement(); |
| 49 | $this->updateToUnifiedTrackingSettings(); |
| 50 | } |
| 51 | |
| 52 | private function updateDefaultInactiveSubscriberTimeRange(): bool { |
| 53 | // Skip if the installed version is newer than the release that preceded this migration, or if it's a fresh install |
| 54 | $currentlyInstalledVersion = (string)$this->settings->get('db_version', '3.78.1'); |
| 55 | if (version_compare($currentlyInstalledVersion, '3.78.0', '>')) { |
| 56 | return false; |
| 57 | } |
| 58 | |
| 59 | $currentValue = (int)$this->settings->get('deactivate_subscriber_after_inactive_days'); |
| 60 | if ($currentValue === 180) { |
| 61 | $this->settings->set('deactivate_subscriber_after_inactive_days', 365); |
| 62 | $this->settingsChangeHandler->onInactiveSubscribersIntervalChange(); |
| 63 | } |
| 64 | |
| 65 | return true; |
| 66 | } |
| 67 | |
| 68 | private function setDefaultValueForLoadingThirdPartyLibrariesForExistingInstalls(): bool { |
| 69 | // skip the migration if the DB version is higher than 3.91.1 or is not set (a new installation) |
| 70 | if (version_compare($this->settings->get('db_version', '3.91.2'), '3.91.1', '>')) { |
| 71 | return false; |
| 72 | } |
| 73 | |
| 74 | $thirdPartyScriptsEnabled = $this->settings->get('3rd_party_libs'); |
| 75 | if (is_null($thirdPartyScriptsEnabled)) { |
| 76 | // keep loading 3rd party libraries for existing users so the functionality is not broken |
| 77 | $this->settings->set('3rd_party_libs.enabled', '1'); |
| 78 | } |
| 79 | |
| 80 | return true; |
| 81 | } |
| 82 | |
| 83 | private function enableStatsNotificationsForAutomatedEmails() { |
| 84 | if (version_compare((string)$this->settings->get('db_version', '3.31.2'), '3.31.1', '>')) { |
| 85 | return; |
| 86 | } |
| 87 | $settings = $this->settings->get(Worker::SETTINGS_KEY); |
| 88 | $settings['automated'] = true; |
| 89 | $this->settings->set(Worker::SETTINGS_KEY, $settings); |
| 90 | } |
| 91 | |
| 92 | private function addPlacementStatusToForms() { |
| 93 | if (version_compare((string)$this->settings->get('db_version', '3.49.0'), '3.48.1', '>')) { |
| 94 | return; |
| 95 | } |
| 96 | $forms = $this->formsRepository->findAll(); |
| 97 | foreach ($forms as $form) { |
| 98 | $settings = $form->getSettings(); |
| 99 | if ( |
| 100 | (isset($settings['place_form_bellow_all_posts']) && $settings['place_form_bellow_all_posts'] === '1') |
| 101 | || (isset($settings['place_form_bellow_all_pages']) && $settings['place_form_bellow_all_pages'] === '1') |
| 102 | ) { |
| 103 | $settings['form_placement_bellow_posts_enabled'] = '1'; |
| 104 | } else { |
| 105 | $settings['form_placement_bellow_posts_enabled'] = ''; |
| 106 | } |
| 107 | if ( |
| 108 | (isset($settings['place_popup_form_on_all_posts']) && $settings['place_popup_form_on_all_posts'] === '1') |
| 109 | || (isset($settings['place_popup_form_on_all_pages']) && $settings['place_popup_form_on_all_pages'] === '1') |
| 110 | ) { |
| 111 | $settings['form_placement_popup_enabled'] = '1'; |
| 112 | } else { |
| 113 | $settings['form_placement_popup_enabled'] = ''; |
| 114 | } |
| 115 | if ( |
| 116 | (isset($settings['place_fixed_bar_form_on_all_posts']) && $settings['place_fixed_bar_form_on_all_posts'] === '1') |
| 117 | || (isset($settings['place_fixed_bar_form_on_all_pages']) && $settings['place_fixed_bar_form_on_all_pages'] === '1') |
| 118 | ) { |
| 119 | $settings['form_placement_fixed_bar_enabled'] = '1'; |
| 120 | } else { |
| 121 | $settings['form_placement_fixed_bar_enabled'] = ''; |
| 122 | } |
| 123 | if ( |
| 124 | (isset($settings['place_slide_in_form_on_all_posts']) && $settings['place_slide_in_form_on_all_posts'] === '1') |
| 125 | || (isset($settings['place_slide_in_form_on_all_pages']) && $settings['place_slide_in_form_on_all_pages'] === '1') |
| 126 | ) { |
| 127 | $settings['form_placement_slide_in_enabled'] = '1'; |
| 128 | } else { |
| 129 | $settings['form_placement_slide_in_enabled'] = ''; |
| 130 | } |
| 131 | $form->setSettings($settings); |
| 132 | } |
| 133 | $this->formsRepository->flush(); |
| 134 | } |
| 135 | |
| 136 | private function migrateFormPlacement() { |
| 137 | if (version_compare((string)$this->settings->get('db_version', '3.50.0'), '3.49.1', '>')) { |
| 138 | return; |
| 139 | } |
| 140 | $forms = $this->formsRepository->findAll(); |
| 141 | foreach ($forms as $form) { |
| 142 | $settings = $form->getSettings(); |
| 143 | if (!is_array($settings)) continue; |
| 144 | $settings['form_placement'] = [ |
| 145 | FormEntity::DISPLAY_TYPE_POPUP => [ |
| 146 | 'enabled' => $settings['form_placement_popup_enabled'], |
| 147 | 'delay' => $settings['popup_form_delay'] ?? 0, |
| 148 | 'styles' => $settings['popup_styles'] ?? [], |
| 149 | 'posts' => [ |
| 150 | 'all' => $settings['place_popup_form_on_all_posts'] ?? '', |
| 151 | ], |
| 152 | 'pages' => [ |
| 153 | 'all' => $settings['place_popup_form_on_all_pages'] ?? '', |
| 154 | ], |
| 155 | ], |
| 156 | FormEntity::DISPLAY_TYPE_FIXED_BAR => [ |
| 157 | 'enabled' => $settings['form_placement_fixed_bar_enabled'], |
| 158 | 'delay' => $settings['fixed_bar_form_delay'] ?? 0, |
| 159 | 'styles' => $settings['fixed_bar_styles'] ?? [], |
| 160 | 'position' => $settings['fixed_bar_form_position'] ?? 'top', |
| 161 | 'posts' => [ |
| 162 | 'all' => $settings['place_fixed_bar_form_on_all_posts'] ?? '', |
| 163 | ], |
| 164 | 'pages' => [ |
| 165 | 'all' => $settings['place_fixed_bar_form_on_all_pages'] ?? '', |
| 166 | ], |
| 167 | ], |
| 168 | FormEntity::DISPLAY_TYPE_BELOW_POST => [ |
| 169 | 'enabled' => $settings['form_placement_bellow_posts_enabled'], |
| 170 | 'styles' => $settings['below_post_styles'] ?? [], |
| 171 | 'posts' => [ |
| 172 | 'all' => $settings['place_form_bellow_all_posts'] ?? '', |
| 173 | ], |
| 174 | 'pages' => [ |
| 175 | 'all' => $settings['place_form_bellow_all_pages'] ?? '', |
| 176 | ], |
| 177 | ], |
| 178 | FormEntity::DISPLAY_TYPE_SLIDE_IN => [ |
| 179 | 'enabled' => $settings['form_placement_slide_in_enabled'], |
| 180 | 'delay' => $settings['slide_in_form_delay'] ?? 0, |
| 181 | 'position' => $settings['slide_in_form_position'] ?? 'right', |
| 182 | 'styles' => $settings['slide_in_styles'] ?? [], |
| 183 | 'posts' => [ |
| 184 | 'all' => $settings['place_slide_in_form_on_all_posts'] ?? '', |
| 185 | ], |
| 186 | 'pages' => [ |
| 187 | 'all' => $settings['place_slide_in_form_on_all_pages'] ?? '', |
| 188 | ], |
| 189 | ], |
| 190 | FormEntity::DISPLAY_TYPE_OTHERS => [ |
| 191 | 'styles' => $settings['other_styles'] ?? [], |
| 192 | ], |
| 193 | ]; |
| 194 | if (isset($settings['form_placement_slide_in_enabled'])) unset($settings['form_placement_slide_in_enabled']); |
| 195 | if (isset($settings['form_placement_fixed_bar_enabled'])) unset($settings['form_placement_fixed_bar_enabled']); |
| 196 | if (isset($settings['form_placement_popup_enabled'])) unset($settings['form_placement_popup_enabled']); |
| 197 | if (isset($settings['form_placement_bellow_posts_enabled'])) unset($settings['form_placement_bellow_posts_enabled']); |
| 198 | if (isset($settings['place_form_bellow_all_pages'])) unset($settings['place_form_bellow_all_pages']); |
| 199 | if (isset($settings['place_form_bellow_all_posts'])) unset($settings['place_form_bellow_all_posts']); |
| 200 | if (isset($settings['place_popup_form_on_all_pages'])) unset($settings['place_popup_form_on_all_pages']); |
| 201 | if (isset($settings['place_popup_form_on_all_posts'])) unset($settings['place_popup_form_on_all_posts']); |
| 202 | if (isset($settings['popup_form_delay'])) unset($settings['popup_form_delay']); |
| 203 | if (isset($settings['place_fixed_bar_form_on_all_pages'])) unset($settings['place_fixed_bar_form_on_all_pages']); |
| 204 | if (isset($settings['place_fixed_bar_form_on_all_posts'])) unset($settings['place_fixed_bar_form_on_all_posts']); |
| 205 | if (isset($settings['fixed_bar_form_delay'])) unset($settings['fixed_bar_form_delay']); |
| 206 | if (isset($settings['fixed_bar_form_position'])) unset($settings['fixed_bar_form_position']); |
| 207 | if (isset($settings['place_slide_in_form_on_all_pages'])) unset($settings['place_slide_in_form_on_all_pages']); |
| 208 | if (isset($settings['place_slide_in_form_on_all_posts'])) unset($settings['place_slide_in_form_on_all_posts']); |
| 209 | if (isset($settings['slide_in_form_delay'])) unset($settings['slide_in_form_delay']); |
| 210 | if (isset($settings['slide_in_form_position'])) unset($settings['slide_in_form_position']); |
| 211 | if (isset($settings['other_styles'])) unset($settings['other_styles']); |
| 212 | if (isset($settings['slide_in_styles'])) unset($settings['slide_in_styles']); |
| 213 | if (isset($settings['below_post_styles'])) unset($settings['below_post_styles']); |
| 214 | if (isset($settings['fixed_bar_styles'])) unset($settings['fixed_bar_styles']); |
| 215 | if (isset($settings['popup_styles'])) unset($settings['popup_styles']); |
| 216 | $form->setSettings($settings); |
| 217 | } |
| 218 | $this->formsRepository->flush(); |
| 219 | } |
| 220 | |
| 221 | private function updateToUnifiedTrackingSettings() { |
| 222 | if (version_compare((string)$this->settings->get('db_version', '3.74.3'), '3.74.2', '>')) { |
| 223 | return; |
| 224 | } |
| 225 | $emailTracking = $this->settings->get('tracking.enabled', true); |
| 226 | $wooTrackingCookie = $this->settings->get('woocommerce.accept_cookie_revenue_tracking.enabled'); |
| 227 | if ($wooTrackingCookie === null) { // No setting for WooCommerce Cookie Tracking - WooCommerce was not active |
| 228 | $trackingLevel = $emailTracking ? TrackingConfig::LEVEL_FULL : TrackingConfig::LEVEL_BASIC; |
| 229 | } elseif ($wooTrackingCookie) { // WooCommerce Cookie Tracking enabled |
| 230 | $trackingLevel = TrackingConfig::LEVEL_FULL; |
| 231 | // Cookie was enabled but tracking disabled and we are switching to full. |
| 232 | // So we activate an admin notice to let the user know that we activated tracking |
| 233 | if (!$emailTracking) { |
| 234 | $this->wp->setTransient(ChangedTrackingNotice::OPTION_NAME, true); |
| 235 | } |
| 236 | } else { // WooCommerce Tracking Cookie Disabled |
| 237 | $trackingLevel = $emailTracking ? TrackingConfig::LEVEL_PARTIAL : TrackingConfig::LEVEL_BASIC; |
| 238 | } |
| 239 | $this->settings->set('tracking.level', $trackingLevel); |
| 240 | } |
| 241 | |
| 242 | private function disableMailPoetCronTrigger() { |
| 243 | $method = $this->settings->get(CronTrigger::SETTING_NAME . '.method'); |
| 244 | if ($method !== 'MailPoet') { |
| 245 | return; |
| 246 | } |
| 247 | $this->settings->set(CronTrigger::SETTING_NAME . '.method', CronTrigger::METHOD_WORDPRESS); |
| 248 | } |
| 249 | } |
| 250 |