License
4 years ago
Notices
3 years ago
pQuery
4 years ago
APIPermissionHelper.php
4 years ago
CdnAssetUrl.php
4 years ago
ConflictResolver.php
4 years ago
Cookies.php
4 years ago
DBCollationChecker.php
4 years ago
DOM.php
4 years ago
DateConverter.php
4 years ago
FreeDomains.php
4 years ago
Helpers.php
4 years ago
Installation.php
4 years ago
ProgressBar.php
4 years ago
SecondLevelDomainNames.php
4 years ago
Security.php
4 years ago
Url.php
4 years ago
index.php
4 years ago
ConflictResolver.php
202 lines
| 1 | <?php |
| 2 | |
| 3 | namespace MailPoet\Util; |
| 4 | |
| 5 | if (!defined('ABSPATH')) exit; |
| 6 | |
| 7 | |
| 8 | use MailPoet\WP\Functions as WPFunctions; |
| 9 | |
| 10 | class ConflictResolver { |
| 11 | public $permittedAssetsLocations = [ |
| 12 | 'styles' => [ |
| 13 | 'mailpoet', |
| 14 | // WP default |
| 15 | '^/wp-admin', |
| 16 | '^/wp-includes', |
| 17 | // CDN |
| 18 | 'googleapis.com/ajax/libs', |
| 19 | 'wp.com', |
| 20 | // third-party |
| 21 | 'jetpack', |
| 22 | 'query-monitor', |
| 23 | 'wpt-tx-updater-network', |
| 24 | // WP.com styles |
| 25 | '^/_static', |
| 26 | 'atomic-plugins/debug-bar/css', |
| 27 | 'woocommerce-payments/', |
| 28 | 'automatewoo/', |
| 29 | ], |
| 30 | 'scripts' => [ |
| 31 | 'mailpoet', |
| 32 | // WP default |
| 33 | '^/wp-admin', |
| 34 | '^/wp-includes', |
| 35 | // CDN |
| 36 | 'googleapis.com/ajax/libs', |
| 37 | 'wp.com', |
| 38 | // third-party |
| 39 | 'query-monitor', |
| 40 | 'wpt-tx-updater-network', |
| 41 | ], |
| 42 | ]; |
| 43 | |
| 44 | public function init() { |
| 45 | WPFunctions::get()->addAction( |
| 46 | 'mailpoet_conflict_resolver_router_url_query_parameters', |
| 47 | [ |
| 48 | $this, |
| 49 | 'resolveRouterUrlQueryParametersConflict', |
| 50 | ] |
| 51 | ); |
| 52 | WPFunctions::get()->addAction( |
| 53 | 'mailpoet_conflict_resolver_styles', |
| 54 | [ |
| 55 | $this, |
| 56 | 'resolveStylesConflict', |
| 57 | ] |
| 58 | ); |
| 59 | WPFunctions::get()->addAction( |
| 60 | 'mailpoet_conflict_resolver_scripts', |
| 61 | [ |
| 62 | $this, |
| 63 | 'resolveScriptsConflict', |
| 64 | ] |
| 65 | ); |
| 66 | WPFunctions::get()->addAction( |
| 67 | 'mailpoet_conflict_resolver_scripts', |
| 68 | [ |
| 69 | $this, |
| 70 | 'resolveEditorConflict', |
| 71 | ] |
| 72 | ); |
| 73 | WPFunctions::get()->addAction( |
| 74 | 'mailpoet_conflict_resolver_scripts', |
| 75 | [ |
| 76 | $this, |
| 77 | 'resolveTinyMceConflict', |
| 78 | ] |
| 79 | ); |
| 80 | } |
| 81 | |
| 82 | public function resolveRouterUrlQueryParametersConflict() { |
| 83 | // prevents other plugins from overtaking URL query parameters 'action=' and 'endpoint=' |
| 84 | unset($_GET['endpoint'], $_GET['action']); |
| 85 | } |
| 86 | |
| 87 | public function resolveStylesConflict() { |
| 88 | $_this = $this; |
| 89 | $_this->permittedAssetsLocations['styles'] = WPFunctions::get()->applyFilters('mailpoet_conflict_resolver_whitelist_style', $_this->permittedAssetsLocations['styles']); |
| 90 | // unload all styles except from the list of allowed |
| 91 | $dequeueStyles = function() use($_this) { |
| 92 | global $wp_styles; // phpcs:ignore Squiz.NamingConventions.ValidVariableName.MemberNotCamelCaps |
| 93 | if (!isset($wp_styles->registered)) return; // phpcs:ignore Squiz.NamingConventions.ValidVariableName.MemberNotCamelCaps |
| 94 | if (empty($wp_styles->queue)) return; // phpcs:ignore Squiz.NamingConventions.ValidVariableName.MemberNotCamelCaps |
| 95 | foreach ($wp_styles->queue as $wpStyle) { // phpcs:ignore Squiz.NamingConventions.ValidVariableName.MemberNotCamelCaps |
| 96 | if (empty($wp_styles->registered[$wpStyle])) continue; // phpcs:ignore Squiz.NamingConventions.ValidVariableName.MemberNotCamelCaps |
| 97 | $registeredStyle = $wp_styles->registered[$wpStyle]; // phpcs:ignore Squiz.NamingConventions.ValidVariableName.MemberNotCamelCaps |
| 98 | if (!is_string($registeredStyle->src)) { |
| 99 | continue; |
| 100 | } |
| 101 | if (!preg_match('!' . implode('|', $_this->permittedAssetsLocations['styles']) . '!i', $registeredStyle->src)) { |
| 102 | WPFunctions::get()->wpDequeueStyle($wpStyle); |
| 103 | } |
| 104 | } |
| 105 | }; |
| 106 | |
| 107 | // execute last in the following hooks |
| 108 | $executeLast = PHP_INT_MAX; |
| 109 | WPFunctions::get()->addAction('admin_enqueue_scripts', $dequeueStyles, $executeLast); // used also for styles |
| 110 | WPFunctions::get()->addAction('admin_footer', $dequeueStyles, $executeLast); |
| 111 | |
| 112 | // execute first in hooks for printing (after printing is too late) |
| 113 | $executeFirst = defined('PHP_INT_MIN') ? constant('PHP_INT_MIN') : ~PHP_INT_MAX; |
| 114 | WPFunctions::get()->addAction('admin_print_styles', $dequeueStyles, $executeFirst); |
| 115 | WPFunctions::get()->addAction('admin_print_footer_scripts', $dequeueStyles, $executeFirst); |
| 116 | } |
| 117 | |
| 118 | public function resolveScriptsConflict() { |
| 119 | $_this = $this; |
| 120 | $_this->permittedAssetsLocations['scripts'] = WPFunctions::get()->applyFilters('mailpoet_conflict_resolver_whitelist_script', $_this->permittedAssetsLocations['scripts']); |
| 121 | // unload all scripts except from the list of allowed |
| 122 | $dequeueScripts = function() use($_this) { |
| 123 | global $wp_scripts; // phpcs:ignore Squiz.NamingConventions.ValidVariableName.MemberNotCamelCaps |
| 124 | foreach ($wp_scripts->queue as $wpScript) { // phpcs:ignore Squiz.NamingConventions.ValidVariableName.MemberNotCamelCaps |
| 125 | if (empty($wp_scripts->registered[$wpScript])) continue; // phpcs:ignore Squiz.NamingConventions.ValidVariableName.MemberNotCamelCaps |
| 126 | $registeredScript = $wp_scripts->registered[$wpScript]; // phpcs:ignore Squiz.NamingConventions.ValidVariableName.MemberNotCamelCaps |
| 127 | if (!is_string($registeredScript->src)) { |
| 128 | continue; |
| 129 | } |
| 130 | if (!preg_match('!' . implode('|', $_this->permittedAssetsLocations['scripts']) . '!i', $registeredScript->src)) { |
| 131 | WPFunctions::get()->wpDequeueScript($wpScript); |
| 132 | } |
| 133 | } |
| 134 | }; |
| 135 | |
| 136 | // execute last in the following hooks |
| 137 | $executeLast = PHP_INT_MAX; |
| 138 | WPFunctions::get()->addAction('admin_enqueue_scripts', $dequeueScripts, $executeLast); |
| 139 | WPFunctions::get()->addAction('admin_footer', $dequeueScripts, $executeLast); |
| 140 | |
| 141 | // execute first in hooks for printing (after printing is too late) |
| 142 | $executeFirst = defined('PHP_INT_MIN') ? constant('PHP_INT_MIN') : ~PHP_INT_MAX; |
| 143 | WPFunctions::get()->addAction('admin_print_scripts', $dequeueScripts, $executeFirst); |
| 144 | WPFunctions::get()->addAction('admin_print_footer_scripts', $dequeueScripts, $executeFirst); |
| 145 | } |
| 146 | |
| 147 | public function resolveEditorConflict() { |
| 148 | |
| 149 | // mark editor as already enqueued to prevent loading its assets |
| 150 | // when wp_enqueue_editor() used by some other plugin |
| 151 | global $wp_actions; // phpcs:ignore Squiz.NamingConventions.ValidVariableName.MemberNotCamelCaps |
| 152 | $wp_actions['wp_enqueue_editor'] = 1; // phpcs:ignore Squiz.NamingConventions.ValidVariableName.MemberNotCamelCaps |
| 153 | |
| 154 | // prevent editor loading when used wp_editor() used by some other plugin |
| 155 | WPFunctions::get()->addFilter('wp_editor_settings', function () { |
| 156 | ob_start(); |
| 157 | return [ |
| 158 | 'tinymce' => false, |
| 159 | 'quicktags' => false, |
| 160 | ]; |
| 161 | }); |
| 162 | |
| 163 | WPFunctions::get()->addFilter('the_editor', function () { |
| 164 | return ''; |
| 165 | }); |
| 166 | |
| 167 | WPFunctions::get()->addFilter('the_editor_content', function () { |
| 168 | ob_end_clean(); |
| 169 | return ''; |
| 170 | }); |
| 171 | } |
| 172 | |
| 173 | public function resolveTinyMceConflict() { |
| 174 | // WordPress TinyMCE scripts may not get enqueued as scripts when some plugins use wp_editor() |
| 175 | // or wp_enqueue_editor(). Instead, they are printed inside the footer script print actions. |
| 176 | // To unload TinyMCE we need to remove those actions. |
| 177 | $tinyMceFooterScriptHooks = [ |
| 178 | '_WP_Editors::enqueue_scripts', |
| 179 | '_WP_Editors::editor_js', |
| 180 | '_WP_Editors::force_uncompressed_tinymce', |
| 181 | '_WP_Editors::print_default_editor_scripts', |
| 182 | ]; |
| 183 | |
| 184 | $disableWpTinymce = function() use ($tinyMceFooterScriptHooks) { |
| 185 | global $wp_filter; // phpcs:ignore Squiz.NamingConventions.ValidVariableName.MemberNotCamelCaps |
| 186 | $actionName = 'admin_print_footer_scripts'; |
| 187 | if (!isset($wp_filter[$actionName])) { // phpcs:ignore Squiz.NamingConventions.ValidVariableName.MemberNotCamelCaps |
| 188 | return; |
| 189 | } |
| 190 | foreach ($wp_filter[$actionName]->callbacks as $priority => $callbacks) { // phpcs:ignore Squiz.NamingConventions.ValidVariableName.MemberNotCamelCaps |
| 191 | foreach ($tinyMceFooterScriptHooks as $hook) { |
| 192 | if (isset($callbacks[$hook])) { |
| 193 | WPFunctions::get()->removeAction($actionName, $callbacks[$hook]['function'], $priority); |
| 194 | } |
| 195 | } |
| 196 | } |
| 197 | }; |
| 198 | |
| 199 | WPFunctions::get()->addAction('admin_footer', $disableWpTinymce, PHP_INT_MAX); |
| 200 | } |
| 201 | } |
| 202 |