@@ -24,67 +24,67 @@ |
||
24 | 24 | class PrivacyPolicyManager |
25 | 25 | { |
26 | 26 | |
27 | - public function __construct() |
|
28 | - { |
|
29 | - add_action('edit_form_after_title', array($this, 'addPrivacyPolicy'), 9); |
|
30 | - } |
|
27 | + public function __construct() |
|
28 | + { |
|
29 | + add_action('edit_form_after_title', array($this, 'addPrivacyPolicy'), 9); |
|
30 | + } |
|
31 | 31 | |
32 | 32 | |
33 | - /** |
|
34 | - * For all the registered `PrivacyPolicyInterface`s, add their privacy policy content |
|
35 | - * |
|
36 | - * @param WP_Post $post |
|
37 | - */ |
|
38 | - public function addPrivacyPolicy($post) |
|
39 | - { |
|
40 | - if (! ($post instanceof WP_Post)) { |
|
41 | - return; |
|
42 | - } |
|
43 | - $policy_page_id = (int) get_option('wp_page_for_privacy_policy'); |
|
44 | - if (! $policy_page_id || $policy_page_id != $post->ID) { |
|
45 | - return; |
|
46 | - } |
|
47 | - // load all the privacy policy stuff |
|
48 | - // add post policy text |
|
49 | - foreach ($this->loadPrivacyPolicyCollection() as $privacy_policy) { |
|
50 | - wp_add_privacy_policy_content($privacy_policy->getName(), $privacy_policy->getContent()); |
|
51 | - } |
|
52 | - } |
|
33 | + /** |
|
34 | + * For all the registered `PrivacyPolicyInterface`s, add their privacy policy content |
|
35 | + * |
|
36 | + * @param WP_Post $post |
|
37 | + */ |
|
38 | + public function addPrivacyPolicy($post) |
|
39 | + { |
|
40 | + if (! ($post instanceof WP_Post)) { |
|
41 | + return; |
|
42 | + } |
|
43 | + $policy_page_id = (int) get_option('wp_page_for_privacy_policy'); |
|
44 | + if (! $policy_page_id || $policy_page_id != $post->ID) { |
|
45 | + return; |
|
46 | + } |
|
47 | + // load all the privacy policy stuff |
|
48 | + // add post policy text |
|
49 | + foreach ($this->loadPrivacyPolicyCollection() as $privacy_policy) { |
|
50 | + wp_add_privacy_policy_content($privacy_policy->getName(), $privacy_policy->getContent()); |
|
51 | + } |
|
52 | + } |
|
53 | 53 | |
54 | 54 | |
55 | - /** |
|
56 | - * @return CollectionInterface|PrivacyPolicyInterface[] |
|
57 | - * @throws InvalidIdentifierException |
|
58 | - * @throws InvalidInterfaceException |
|
59 | - * @throws InvalidFilePathException |
|
60 | - * @throws InvalidEntityException |
|
61 | - * @throws InvalidDataTypeException |
|
62 | - * @throws InvalidClassException |
|
63 | - */ |
|
64 | - protected function loadPrivacyPolicyCollection() |
|
65 | - { |
|
66 | - $loader = new CollectionLoader( |
|
67 | - new CollectionDetails( |
|
68 | - // collection name |
|
69 | - 'privacy_policies', |
|
70 | - // collection interface |
|
71 | - 'EventEspresso\core\services\privacy\policy\PrivacyPolicyInterface', |
|
72 | - // FQCNs for classes to add (all classes within that namespace will be loaded) |
|
73 | - apply_filters( |
|
74 | - 'FHEE__EventEspresso_core_services_privacy_policy_PrivacyPolicyManager__privacy_policies', |
|
75 | - array('EventEspresso\core\domain\services\admin\privacy\policy\PrivacyPolicy') |
|
76 | - ), |
|
77 | - // filepaths to classes to add |
|
78 | - array(), |
|
79 | - // file mask to use if parsing folder for files to add |
|
80 | - '', |
|
81 | - // what to use as identifier for collection entities |
|
82 | - // using CLASS NAME prevents duplicates (works like a singleton) |
|
83 | - CollectionDetails::ID_CLASS_NAME |
|
84 | - ) |
|
85 | - ); |
|
86 | - return $loader->getCollection(); |
|
87 | - } |
|
55 | + /** |
|
56 | + * @return CollectionInterface|PrivacyPolicyInterface[] |
|
57 | + * @throws InvalidIdentifierException |
|
58 | + * @throws InvalidInterfaceException |
|
59 | + * @throws InvalidFilePathException |
|
60 | + * @throws InvalidEntityException |
|
61 | + * @throws InvalidDataTypeException |
|
62 | + * @throws InvalidClassException |
|
63 | + */ |
|
64 | + protected function loadPrivacyPolicyCollection() |
|
65 | + { |
|
66 | + $loader = new CollectionLoader( |
|
67 | + new CollectionDetails( |
|
68 | + // collection name |
|
69 | + 'privacy_policies', |
|
70 | + // collection interface |
|
71 | + 'EventEspresso\core\services\privacy\policy\PrivacyPolicyInterface', |
|
72 | + // FQCNs for classes to add (all classes within that namespace will be loaded) |
|
73 | + apply_filters( |
|
74 | + 'FHEE__EventEspresso_core_services_privacy_policy_PrivacyPolicyManager__privacy_policies', |
|
75 | + array('EventEspresso\core\domain\services\admin\privacy\policy\PrivacyPolicy') |
|
76 | + ), |
|
77 | + // filepaths to classes to add |
|
78 | + array(), |
|
79 | + // file mask to use if parsing folder for files to add |
|
80 | + '', |
|
81 | + // what to use as identifier for collection entities |
|
82 | + // using CLASS NAME prevents duplicates (works like a singleton) |
|
83 | + CollectionDetails::ID_CLASS_NAME |
|
84 | + ) |
|
85 | + ); |
|
86 | + return $loader->getCollection(); |
|
87 | + } |
|
88 | 88 | } |
89 | 89 | // End of file PrivacyPolicyManager.php |
90 | 90 | // Location: EventEspresso\core\domain\services\admin/PrivacyPolicyManager.php |
@@ -37,11 +37,11 @@ |
||
37 | 37 | */ |
38 | 38 | public function addPrivacyPolicy($post) |
39 | 39 | { |
40 | - if (! ($post instanceof WP_Post)) { |
|
40 | + if ( ! ($post instanceof WP_Post)) { |
|
41 | 41 | return; |
42 | 42 | } |
43 | 43 | $policy_page_id = (int) get_option('wp_page_for_privacy_policy'); |
44 | - if (! $policy_page_id || $policy_page_id != $post->ID) { |
|
44 | + if ( ! $policy_page_id || $policy_page_id != $post->ID) { |
|
45 | 45 | return; |
46 | 46 | } |
47 | 47 | // load all the privacy policy stuff |
@@ -28,1258 +28,1258 @@ |
||
28 | 28 | { |
29 | 29 | |
30 | 30 | |
31 | - /** |
|
32 | - * indicates this is a 'normal' request. Ie, not activation, nor upgrade, nor activation. |
|
33 | - * So examples of this would be a normal GET request on the frontend or backend, or a POST, etc |
|
34 | - */ |
|
35 | - const req_type_normal = 0; |
|
36 | - |
|
37 | - /** |
|
38 | - * Indicates this is a brand new installation of EE so we should install |
|
39 | - * tables and default data etc |
|
40 | - */ |
|
41 | - const req_type_new_activation = 1; |
|
42 | - |
|
43 | - /** |
|
44 | - * we've detected that EE has been reactivated (or EE was activated during maintenance mode, |
|
45 | - * and we just exited maintenance mode). We MUST check the database is setup properly |
|
46 | - * and that default data is setup too |
|
47 | - */ |
|
48 | - const req_type_reactivation = 2; |
|
49 | - |
|
50 | - /** |
|
51 | - * indicates that EE has been upgraded since its previous request. |
|
52 | - * We may have data migration scripts to call and will want to trigger maintenance mode |
|
53 | - */ |
|
54 | - const req_type_upgrade = 3; |
|
55 | - |
|
56 | - /** |
|
57 | - * TODO will detect that EE has been DOWNGRADED. We probably don't want to run in this case... |
|
58 | - */ |
|
59 | - const req_type_downgrade = 4; |
|
60 | - |
|
61 | - /** |
|
62 | - * @deprecated since version 4.6.0.dev.006 |
|
63 | - * Now whenever a new_activation is detected the request type is still just |
|
64 | - * new_activation (same for reactivation, upgrade, downgrade etc), but if we'r ein maintenance mode |
|
65 | - * EE_System::initialize_db_if_no_migrations_required and EE_Addon::initialize_db_if_no_migrations_required |
|
66 | - * will instead enqueue that EE plugin's db initialization for when we're taken out of maintenance mode. |
|
67 | - * (Specifically, when the migration manager indicates migrations are finished |
|
68 | - * EE_Data_Migration_Manager::initialize_db_for_enqueued_ee_plugins() will be called) |
|
69 | - */ |
|
70 | - const req_type_activation_but_not_installed = 5; |
|
71 | - |
|
72 | - /** |
|
73 | - * option prefix for recording the activation history (like core's "espresso_db_update") of addons |
|
74 | - */ |
|
75 | - const addon_activation_history_option_prefix = 'ee_addon_activation_history_'; |
|
76 | - |
|
77 | - |
|
78 | - /** |
|
79 | - * @var EE_System $_instance |
|
80 | - */ |
|
81 | - private static $_instance; |
|
82 | - |
|
83 | - /** |
|
84 | - * @var EE_Registry $registry |
|
85 | - */ |
|
86 | - private $registry; |
|
87 | - |
|
88 | - /** |
|
89 | - * @var LoaderInterface $loader |
|
90 | - */ |
|
91 | - private $loader; |
|
92 | - |
|
93 | - /** |
|
94 | - * @var EE_Capabilities $capabilities |
|
95 | - */ |
|
96 | - private $capabilities; |
|
97 | - |
|
98 | - /** |
|
99 | - * @var RequestInterface $request |
|
100 | - */ |
|
101 | - private $request; |
|
102 | - |
|
103 | - /** |
|
104 | - * @var EE_Maintenance_Mode $maintenance_mode |
|
105 | - */ |
|
106 | - private $maintenance_mode; |
|
107 | - |
|
108 | - /** |
|
109 | - * Stores which type of request this is, options being one of the constants on EE_System starting with req_type_*. |
|
110 | - * It can be a brand-new activation, a reactivation, an upgrade, a downgrade, or a normal request. |
|
111 | - * |
|
112 | - * @var int $_req_type |
|
113 | - */ |
|
114 | - private $_req_type; |
|
115 | - |
|
116 | - /** |
|
117 | - * Whether or not there was a non-micro version change in EE core version during this request |
|
118 | - * |
|
119 | - * @var boolean $_major_version_change |
|
120 | - */ |
|
121 | - private $_major_version_change = false; |
|
122 | - |
|
123 | - /** |
|
124 | - * A Context DTO dedicated solely to identifying the current request type. |
|
125 | - * |
|
126 | - * @var RequestTypeContextCheckerInterface $request_type |
|
127 | - */ |
|
128 | - private $request_type; |
|
129 | - |
|
130 | - |
|
131 | - /** |
|
132 | - * @singleton method used to instantiate class object |
|
133 | - * @param EE_Registry|null $registry |
|
134 | - * @param LoaderInterface|null $loader |
|
135 | - * @param RequestInterface|null $request |
|
136 | - * @param EE_Maintenance_Mode|null $maintenance_mode |
|
137 | - * @return EE_System |
|
138 | - */ |
|
139 | - public static function instance( |
|
140 | - EE_Registry $registry = null, |
|
141 | - LoaderInterface $loader = null, |
|
142 | - RequestInterface $request = null, |
|
143 | - EE_Maintenance_Mode $maintenance_mode = null |
|
144 | - ) { |
|
145 | - // check if class object is instantiated |
|
146 | - if (! self::$_instance instanceof EE_System) { |
|
147 | - self::$_instance = new self($registry, $loader, $request, $maintenance_mode); |
|
148 | - } |
|
149 | - return self::$_instance; |
|
150 | - } |
|
151 | - |
|
152 | - |
|
153 | - /** |
|
154 | - * resets the instance and returns it |
|
155 | - * |
|
156 | - * @return EE_System |
|
157 | - */ |
|
158 | - public static function reset() |
|
159 | - { |
|
160 | - self::$_instance->_req_type = null; |
|
161 | - // make sure none of the old hooks are left hanging around |
|
162 | - remove_all_actions('AHEE__EE_System__perform_activations_upgrades_and_migrations'); |
|
163 | - // we need to reset the migration manager in order for it to detect DMSs properly |
|
164 | - EE_Data_Migration_Manager::reset(); |
|
165 | - self::instance()->detect_activations_or_upgrades(); |
|
166 | - self::instance()->perform_activations_upgrades_and_migrations(); |
|
167 | - return self::instance(); |
|
168 | - } |
|
169 | - |
|
170 | - |
|
171 | - /** |
|
172 | - * sets hooks for running rest of system |
|
173 | - * provides "AHEE__EE_System__construct__complete" hook for EE Addons to use as their starting point |
|
174 | - * starting EE Addons from any other point may lead to problems |
|
175 | - * |
|
176 | - * @param EE_Registry $registry |
|
177 | - * @param LoaderInterface $loader |
|
178 | - * @param RequestInterface $request |
|
179 | - * @param EE_Maintenance_Mode $maintenance_mode |
|
180 | - */ |
|
181 | - private function __construct( |
|
182 | - EE_Registry $registry, |
|
183 | - LoaderInterface $loader, |
|
184 | - RequestInterface $request, |
|
185 | - EE_Maintenance_Mode $maintenance_mode |
|
186 | - ) { |
|
187 | - $this->registry = $registry; |
|
188 | - $this->loader = $loader; |
|
189 | - $this->request = $request; |
|
190 | - $this->maintenance_mode = $maintenance_mode; |
|
191 | - do_action('AHEE__EE_System__construct__begin', $this); |
|
192 | - add_action( |
|
193 | - 'AHEE__EE_Bootstrap__load_espresso_addons', |
|
194 | - array($this, 'loadCapabilities'), |
|
195 | - 5 |
|
196 | - ); |
|
197 | - add_action( |
|
198 | - 'AHEE__EE_Bootstrap__load_espresso_addons', |
|
199 | - array($this, 'loadCommandBus'), |
|
200 | - 7 |
|
201 | - ); |
|
202 | - add_action( |
|
203 | - 'AHEE__EE_Bootstrap__load_espresso_addons', |
|
204 | - array($this, 'loadPluginApi'), |
|
205 | - 9 |
|
206 | - ); |
|
207 | - // allow addons to load first so that they can register autoloaders, set hooks for running DMS's, etc |
|
208 | - add_action( |
|
209 | - 'AHEE__EE_Bootstrap__load_espresso_addons', |
|
210 | - array($this, 'load_espresso_addons') |
|
211 | - ); |
|
212 | - // when an ee addon is activated, we want to call the core hook(s) again |
|
213 | - // because the newly-activated addon didn't get a chance to run at all |
|
214 | - add_action('activate_plugin', array($this, 'load_espresso_addons'), 1); |
|
215 | - // detect whether install or upgrade |
|
216 | - add_action( |
|
217 | - 'AHEE__EE_Bootstrap__detect_activations_or_upgrades', |
|
218 | - array($this, 'detect_activations_or_upgrades'), |
|
219 | - 3 |
|
220 | - ); |
|
221 | - // load EE_Config, EE_Textdomain, etc |
|
222 | - add_action( |
|
223 | - 'AHEE__EE_Bootstrap__load_core_configuration', |
|
224 | - array($this, 'load_core_configuration'), |
|
225 | - 5 |
|
226 | - ); |
|
227 | - // load EE_Config, EE_Textdomain, etc |
|
228 | - add_action( |
|
229 | - 'AHEE__EE_Bootstrap__register_shortcodes_modules_and_widgets', |
|
230 | - array($this, 'register_shortcodes_modules_and_widgets'), |
|
231 | - 7 |
|
232 | - ); |
|
233 | - // you wanna get going? I wanna get going... let's get going! |
|
234 | - add_action( |
|
235 | - 'AHEE__EE_Bootstrap__brew_espresso', |
|
236 | - array($this, 'brew_espresso'), |
|
237 | - 9 |
|
238 | - ); |
|
239 | - // other housekeeping |
|
240 | - // exclude EE critical pages from wp_list_pages |
|
241 | - add_filter( |
|
242 | - 'wp_list_pages_excludes', |
|
243 | - array($this, 'remove_pages_from_wp_list_pages'), |
|
244 | - 10 |
|
245 | - ); |
|
246 | - // ALL EE Addons should use the following hook point to attach their initial setup too |
|
247 | - // it's extremely important for EE Addons to register any class autoloaders so that they can be available when the EE_Config loads |
|
248 | - do_action('AHEE__EE_System__construct__complete', $this); |
|
249 | - } |
|
250 | - |
|
251 | - |
|
252 | - /** |
|
253 | - * load and setup EE_Capabilities |
|
254 | - * |
|
255 | - * @return void |
|
256 | - * @throws EE_Error |
|
257 | - */ |
|
258 | - public function loadCapabilities() |
|
259 | - { |
|
260 | - $this->capabilities = $this->loader->getShared('EE_Capabilities'); |
|
261 | - add_action( |
|
262 | - 'AHEE__EE_Capabilities__init_caps__before_initialization', |
|
263 | - function () { |
|
264 | - LoaderFactory::getLoader()->getShared('EE_Payment_Method_Manager'); |
|
265 | - } |
|
266 | - ); |
|
267 | - } |
|
268 | - |
|
269 | - |
|
270 | - /** |
|
271 | - * create and cache the CommandBus, and also add middleware |
|
272 | - * The CapChecker middleware requires the use of EE_Capabilities |
|
273 | - * which is why we need to load the CommandBus after Caps are set up |
|
274 | - * |
|
275 | - * @return void |
|
276 | - * @throws EE_Error |
|
277 | - */ |
|
278 | - public function loadCommandBus() |
|
279 | - { |
|
280 | - $this->loader->getShared( |
|
281 | - 'CommandBusInterface', |
|
282 | - array( |
|
283 | - null, |
|
284 | - apply_filters( |
|
285 | - 'FHEE__EE_Load_Espresso_Core__handle_request__CommandBus_middleware', |
|
286 | - array( |
|
287 | - $this->loader->getShared('EventEspresso\core\services\commands\middleware\CapChecker'), |
|
288 | - $this->loader->getShared('EventEspresso\core\services\commands\middleware\AddActionHook'), |
|
289 | - ) |
|
290 | - ), |
|
291 | - ) |
|
292 | - ); |
|
293 | - } |
|
294 | - |
|
295 | - |
|
296 | - /** |
|
297 | - * @return void |
|
298 | - * @throws EE_Error |
|
299 | - */ |
|
300 | - public function loadPluginApi() |
|
301 | - { |
|
302 | - // set autoloaders for all of the classes implementing EEI_Plugin_API |
|
303 | - // which provide helpers for EE plugin authors to more easily register certain components with EE. |
|
304 | - EEH_Autoloader::instance()->register_autoloaders_for_each_file_in_folder(EE_LIBRARIES . 'plugin_api'); |
|
305 | - $this->loader->getShared('EE_Request_Handler'); |
|
306 | - } |
|
307 | - |
|
308 | - |
|
309 | - /** |
|
310 | - * @param string $addon_name |
|
311 | - * @param string $version_constant |
|
312 | - * @param string $min_version_required |
|
313 | - * @param string $load_callback |
|
314 | - * @param string $plugin_file_constant |
|
315 | - * @return void |
|
316 | - */ |
|
317 | - private function deactivateIncompatibleAddon( |
|
318 | - $addon_name, |
|
319 | - $version_constant, |
|
320 | - $min_version_required, |
|
321 | - $load_callback, |
|
322 | - $plugin_file_constant |
|
323 | - ) { |
|
324 | - if (! defined($version_constant)) { |
|
325 | - return; |
|
326 | - } |
|
327 | - $addon_version = constant($version_constant); |
|
328 | - if ($addon_version && version_compare($addon_version, $min_version_required, '<')) { |
|
329 | - remove_action('AHEE__EE_System__load_espresso_addons', $load_callback); |
|
330 | - if (! function_exists('deactivate_plugins')) { |
|
331 | - require_once ABSPATH . 'wp-admin/includes/plugin.php'; |
|
332 | - } |
|
333 | - deactivate_plugins(plugin_basename(constant($plugin_file_constant))); |
|
334 | - unset($_GET['activate'], $_REQUEST['activate'], $_GET['activate-multi'], $_REQUEST['activate-multi']); |
|
335 | - EE_Error::add_error( |
|
336 | - sprintf( |
|
337 | - esc_html__( |
|
338 | - 'We\'re sorry, but the Event Espresso %1$s addon was deactivated because version %2$s or higher is required with this version of Event Espresso core.', |
|
339 | - 'event_espresso' |
|
340 | - ), |
|
341 | - $addon_name, |
|
342 | - $min_version_required |
|
343 | - ), |
|
344 | - __FILE__, |
|
345 | - __FUNCTION__ . "({$addon_name})", |
|
346 | - __LINE__ |
|
347 | - ); |
|
348 | - EE_Error::get_notices(false, true); |
|
349 | - } |
|
350 | - } |
|
351 | - |
|
352 | - |
|
353 | - /** |
|
354 | - * load_espresso_addons |
|
355 | - * allow addons to load first so that they can set hooks for running DMS's, etc |
|
356 | - * this is hooked into both: |
|
357 | - * 'AHEE__EE_Bootstrap__load_core_configuration' |
|
358 | - * which runs during the WP 'plugins_loaded' action at priority 5 |
|
359 | - * and the WP 'activate_plugin' hook point |
|
360 | - * |
|
361 | - * @access public |
|
362 | - * @return void |
|
363 | - */ |
|
364 | - public function load_espresso_addons() |
|
365 | - { |
|
366 | - $this->deactivateIncompatibleAddon( |
|
367 | - 'Wait Lists', |
|
368 | - 'EE_WAIT_LISTS_VERSION', |
|
369 | - '1.0.0.beta.074', |
|
370 | - 'load_espresso_wait_lists', |
|
371 | - 'EE_WAIT_LISTS_PLUGIN_FILE' |
|
372 | - ); |
|
373 | - $this->deactivateIncompatibleAddon( |
|
374 | - 'Automated Upcoming Event Notifications', |
|
375 | - 'EE_AUTOMATED_UPCOMING_EVENT_NOTIFICATION_VERSION', |
|
376 | - '1.0.0.beta.091', |
|
377 | - 'load_espresso_automated_upcoming_event_notification', |
|
378 | - 'EE_AUTOMATED_UPCOMING_EVENT_NOTIFICATION_PLUGIN_FILE' |
|
379 | - ); |
|
380 | - do_action('AHEE__EE_System__load_espresso_addons'); |
|
381 | - // if the WP API basic auth plugin isn't already loaded, load it now. |
|
382 | - // We want it for mobile apps. Just include the entire plugin |
|
383 | - // also, don't load the basic auth when a plugin is getting activated, because |
|
384 | - // it could be the basic auth plugin, and it doesn't check if its methods are already defined |
|
385 | - // and causes a fatal error |
|
386 | - if ($this->request->getRequestParam('activate') !== 'true' |
|
387 | - && ! function_exists('json_basic_auth_handler') |
|
388 | - && ! function_exists('json_basic_auth_error') |
|
389 | - && ! in_array( |
|
390 | - $this->request->getRequestParam('action'), |
|
391 | - array('activate', 'activate-selected'), |
|
392 | - true |
|
393 | - ) |
|
394 | - ) { |
|
395 | - include_once EE_THIRD_PARTY . 'wp-api-basic-auth' . DS . 'basic-auth.php'; |
|
396 | - } |
|
397 | - do_action('AHEE__EE_System__load_espresso_addons__complete'); |
|
398 | - } |
|
399 | - |
|
400 | - |
|
401 | - /** |
|
402 | - * detect_activations_or_upgrades |
|
403 | - * Checks for activation or upgrade of core first; |
|
404 | - * then also checks if any registered addons have been activated or upgraded |
|
405 | - * This is hooked into 'AHEE__EE_Bootstrap__detect_activations_or_upgrades' |
|
406 | - * which runs during the WP 'plugins_loaded' action at priority 3 |
|
407 | - * |
|
408 | - * @access public |
|
409 | - * @return void |
|
410 | - */ |
|
411 | - public function detect_activations_or_upgrades() |
|
412 | - { |
|
413 | - // first off: let's make sure to handle core |
|
414 | - $this->detect_if_activation_or_upgrade(); |
|
415 | - foreach ($this->registry->addons as $addon) { |
|
416 | - if ($addon instanceof EE_Addon) { |
|
417 | - // detect teh request type for that addon |
|
418 | - $addon->detect_activation_or_upgrade(); |
|
419 | - } |
|
420 | - } |
|
421 | - } |
|
422 | - |
|
423 | - |
|
424 | - /** |
|
425 | - * detect_if_activation_or_upgrade |
|
426 | - * Takes care of detecting whether this is a brand new install or code upgrade, |
|
427 | - * and either setting up the DB or setting up maintenance mode etc. |
|
428 | - * |
|
429 | - * @access public |
|
430 | - * @return void |
|
431 | - */ |
|
432 | - public function detect_if_activation_or_upgrade() |
|
433 | - { |
|
434 | - do_action('AHEE__EE_System___detect_if_activation_or_upgrade__begin'); |
|
435 | - // check if db has been updated, or if its a brand-new installation |
|
436 | - $espresso_db_update = $this->fix_espresso_db_upgrade_option(); |
|
437 | - $request_type = $this->detect_req_type($espresso_db_update); |
|
438 | - // EEH_Debug_Tools::printr( $request_type, '$request_type', __FILE__, __LINE__ ); |
|
439 | - switch ($request_type) { |
|
440 | - case EE_System::req_type_new_activation: |
|
441 | - do_action('AHEE__EE_System__detect_if_activation_or_upgrade__new_activation'); |
|
442 | - $this->_handle_core_version_change($espresso_db_update); |
|
443 | - break; |
|
444 | - case EE_System::req_type_reactivation: |
|
445 | - do_action('AHEE__EE_System__detect_if_activation_or_upgrade__reactivation'); |
|
446 | - $this->_handle_core_version_change($espresso_db_update); |
|
447 | - break; |
|
448 | - case EE_System::req_type_upgrade: |
|
449 | - do_action('AHEE__EE_System__detect_if_activation_or_upgrade__upgrade'); |
|
450 | - // migrations may be required now that we've upgraded |
|
451 | - $this->maintenance_mode->set_maintenance_mode_if_db_old(); |
|
452 | - $this->_handle_core_version_change($espresso_db_update); |
|
453 | - break; |
|
454 | - case EE_System::req_type_downgrade: |
|
455 | - do_action('AHEE__EE_System__detect_if_activation_or_upgrade__downgrade'); |
|
456 | - // its possible migrations are no longer required |
|
457 | - $this->maintenance_mode->set_maintenance_mode_if_db_old(); |
|
458 | - $this->_handle_core_version_change($espresso_db_update); |
|
459 | - break; |
|
460 | - case EE_System::req_type_normal: |
|
461 | - default: |
|
462 | - break; |
|
463 | - } |
|
464 | - do_action('AHEE__EE_System__detect_if_activation_or_upgrade__complete'); |
|
465 | - } |
|
466 | - |
|
467 | - |
|
468 | - /** |
|
469 | - * Updates the list of installed versions and sets hooks for |
|
470 | - * initializing the database later during the request |
|
471 | - * |
|
472 | - * @param array $espresso_db_update |
|
473 | - */ |
|
474 | - private function _handle_core_version_change($espresso_db_update) |
|
475 | - { |
|
476 | - $this->update_list_of_installed_versions($espresso_db_update); |
|
477 | - // get ready to verify the DB is ok (provided we aren't in maintenance mode, of course) |
|
478 | - add_action( |
|
479 | - 'AHEE__EE_System__perform_activations_upgrades_and_migrations', |
|
480 | - array($this, 'initialize_db_if_no_migrations_required') |
|
481 | - ); |
|
482 | - } |
|
483 | - |
|
484 | - |
|
485 | - /** |
|
486 | - * standardizes the wp option 'espresso_db_upgrade' which actually stores |
|
487 | - * information about what versions of EE have been installed and activated, |
|
488 | - * NOT necessarily the state of the database |
|
489 | - * |
|
490 | - * @param mixed $espresso_db_update the value of the WordPress option. |
|
491 | - * If not supplied, fetches it from the options table |
|
492 | - * @return array the correct value of 'espresso_db_upgrade', after saving it, if it needed correction |
|
493 | - */ |
|
494 | - private function fix_espresso_db_upgrade_option($espresso_db_update = null) |
|
495 | - { |
|
496 | - do_action('FHEE__EE_System__manage_fix_espresso_db_upgrade_option__begin', $espresso_db_update); |
|
497 | - if (! $espresso_db_update) { |
|
498 | - $espresso_db_update = get_option('espresso_db_update'); |
|
499 | - } |
|
500 | - // check that option is an array |
|
501 | - if (! is_array($espresso_db_update)) { |
|
502 | - // if option is FALSE, then it never existed |
|
503 | - if ($espresso_db_update === false) { |
|
504 | - // make $espresso_db_update an array and save option with autoload OFF |
|
505 | - $espresso_db_update = array(); |
|
506 | - add_option('espresso_db_update', $espresso_db_update, '', 'no'); |
|
507 | - } else { |
|
508 | - // option is NOT FALSE but also is NOT an array, so make it an array and save it |
|
509 | - $espresso_db_update = array($espresso_db_update => array()); |
|
510 | - update_option('espresso_db_update', $espresso_db_update); |
|
511 | - } |
|
512 | - } else { |
|
513 | - $corrected_db_update = array(); |
|
514 | - // if IS an array, but is it an array where KEYS are version numbers, and values are arrays? |
|
515 | - foreach ($espresso_db_update as $should_be_version_string => $should_be_array) { |
|
516 | - if (is_int($should_be_version_string) && ! is_array($should_be_array)) { |
|
517 | - // the key is an int, and the value IS NOT an array |
|
518 | - // so it must be numerically-indexed, where values are versions installed... |
|
519 | - // fix it! |
|
520 | - $version_string = $should_be_array; |
|
521 | - $corrected_db_update[ $version_string ] = array('unknown-date'); |
|
522 | - } else { |
|
523 | - // ok it checks out |
|
524 | - $corrected_db_update[ $should_be_version_string ] = $should_be_array; |
|
525 | - } |
|
526 | - } |
|
527 | - $espresso_db_update = $corrected_db_update; |
|
528 | - update_option('espresso_db_update', $espresso_db_update); |
|
529 | - } |
|
530 | - do_action('FHEE__EE_System__manage_fix_espresso_db_upgrade_option__complete', $espresso_db_update); |
|
531 | - return $espresso_db_update; |
|
532 | - } |
|
533 | - |
|
534 | - |
|
535 | - /** |
|
536 | - * Does the traditional work of setting up the plugin's database and adding default data. |
|
537 | - * If migration script/process did not exist, this is what would happen on every activation/reactivation/upgrade. |
|
538 | - * NOTE: if we're in maintenance mode (which would be the case if we detect there are data |
|
539 | - * migration scripts that need to be run and a version change happens), enqueues core for database initialization, |
|
540 | - * so that it will be done when migrations are finished |
|
541 | - * |
|
542 | - * @param boolean $initialize_addons_too if true, we double-check addons' database tables etc too; |
|
543 | - * @param boolean $verify_schema if true will re-check the database tables have the correct schema. |
|
544 | - * This is a resource-intensive job |
|
545 | - * so we prefer to only do it when necessary |
|
546 | - * @return void |
|
547 | - * @throws EE_Error |
|
548 | - */ |
|
549 | - public function initialize_db_if_no_migrations_required($initialize_addons_too = false, $verify_schema = true) |
|
550 | - { |
|
551 | - $request_type = $this->detect_req_type(); |
|
552 | - // only initialize system if we're not in maintenance mode. |
|
553 | - if ($this->maintenance_mode->level() !== EE_Maintenance_Mode::level_2_complete_maintenance) { |
|
554 | - /** @var EventEspresso\core\domain\services\custom_post_types\RewriteRules $rewrite_rules */ |
|
555 | - $rewrite_rules = $this->loader->getShared( |
|
556 | - 'EventEspresso\core\domain\services\custom_post_types\RewriteRules' |
|
557 | - ); |
|
558 | - $rewrite_rules->flush(); |
|
559 | - if ($verify_schema) { |
|
560 | - EEH_Activation::initialize_db_and_folders(); |
|
561 | - } |
|
562 | - EEH_Activation::initialize_db_content(); |
|
563 | - EEH_Activation::system_initialization(); |
|
564 | - if ($initialize_addons_too) { |
|
565 | - $this->initialize_addons(); |
|
566 | - } |
|
567 | - } else { |
|
568 | - EE_Data_Migration_Manager::instance()->enqueue_db_initialization_for('Core'); |
|
569 | - } |
|
570 | - if ($request_type === EE_System::req_type_new_activation |
|
571 | - || $request_type === EE_System::req_type_reactivation |
|
572 | - || ( |
|
573 | - $request_type === EE_System::req_type_upgrade |
|
574 | - && $this->is_major_version_change() |
|
575 | - ) |
|
576 | - ) { |
|
577 | - add_action('AHEE__EE_System__initialize_last', array($this, 'redirect_to_about_ee'), 9); |
|
578 | - } |
|
579 | - } |
|
580 | - |
|
581 | - |
|
582 | - /** |
|
583 | - * Initializes the db for all registered addons |
|
584 | - * |
|
585 | - * @throws EE_Error |
|
586 | - */ |
|
587 | - public function initialize_addons() |
|
588 | - { |
|
589 | - // foreach registered addon, make sure its db is up-to-date too |
|
590 | - foreach ($this->registry->addons as $addon) { |
|
591 | - if ($addon instanceof EE_Addon) { |
|
592 | - $addon->initialize_db_if_no_migrations_required(); |
|
593 | - } |
|
594 | - } |
|
595 | - } |
|
596 | - |
|
597 | - |
|
598 | - /** |
|
599 | - * Adds the current code version to the saved wp option which stores a list of all ee versions ever installed. |
|
600 | - * |
|
601 | - * @param array $version_history |
|
602 | - * @param string $current_version_to_add version to be added to the version history |
|
603 | - * @return boolean success as to whether or not this option was changed |
|
604 | - */ |
|
605 | - public function update_list_of_installed_versions($version_history = null, $current_version_to_add = null) |
|
606 | - { |
|
607 | - if (! $version_history) { |
|
608 | - $version_history = $this->fix_espresso_db_upgrade_option($version_history); |
|
609 | - } |
|
610 | - if ($current_version_to_add === null) { |
|
611 | - $current_version_to_add = espresso_version(); |
|
612 | - } |
|
613 | - $version_history[ $current_version_to_add ][] = date('Y-m-d H:i:s', time()); |
|
614 | - // re-save |
|
615 | - return update_option('espresso_db_update', $version_history); |
|
616 | - } |
|
617 | - |
|
618 | - |
|
619 | - /** |
|
620 | - * Detects if the current version indicated in the has existed in the list of |
|
621 | - * previously-installed versions of EE (espresso_db_update). Does NOT modify it (ie, no side-effect) |
|
622 | - * |
|
623 | - * @param array $espresso_db_update array from the wp option stored under the name 'espresso_db_update'. |
|
624 | - * If not supplied, fetches it from the options table. |
|
625 | - * Also, caches its result so later parts of the code can also know whether |
|
626 | - * there's been an update or not. This way we can add the current version to |
|
627 | - * espresso_db_update, but still know if this is a new install or not |
|
628 | - * @return int one of the constants on EE_System::req_type_ |
|
629 | - */ |
|
630 | - public function detect_req_type($espresso_db_update = null) |
|
631 | - { |
|
632 | - if ($this->_req_type === null) { |
|
633 | - $espresso_db_update = ! empty($espresso_db_update) |
|
634 | - ? $espresso_db_update |
|
635 | - : $this->fix_espresso_db_upgrade_option(); |
|
636 | - $this->_req_type = EE_System::detect_req_type_given_activation_history( |
|
637 | - $espresso_db_update, |
|
638 | - 'ee_espresso_activation', |
|
639 | - espresso_version() |
|
640 | - ); |
|
641 | - $this->_major_version_change = $this->_detect_major_version_change($espresso_db_update); |
|
642 | - $this->request->setIsActivation($this->_req_type !== EE_System::req_type_normal); |
|
643 | - } |
|
644 | - return $this->_req_type; |
|
645 | - } |
|
646 | - |
|
647 | - |
|
648 | - /** |
|
649 | - * Returns whether or not there was a non-micro version change (ie, change in either |
|
650 | - * the first or second number in the version. Eg 4.9.0.rc.001 to 4.10.0.rc.000, |
|
651 | - * but not 4.9.0.rc.0001 to 4.9.1.rc.0001 |
|
652 | - * |
|
653 | - * @param $activation_history |
|
654 | - * @return bool |
|
655 | - */ |
|
656 | - private function _detect_major_version_change($activation_history) |
|
657 | - { |
|
658 | - $previous_version = EE_System::_get_most_recently_active_version_from_activation_history($activation_history); |
|
659 | - $previous_version_parts = explode('.', $previous_version); |
|
660 | - $current_version_parts = explode('.', espresso_version()); |
|
661 | - return isset($previous_version_parts[0], $previous_version_parts[1], $current_version_parts[0], $current_version_parts[1]) |
|
662 | - && ($previous_version_parts[0] !== $current_version_parts[0] |
|
663 | - || $previous_version_parts[1] !== $current_version_parts[1] |
|
664 | - ); |
|
665 | - } |
|
666 | - |
|
667 | - |
|
668 | - /** |
|
669 | - * Returns true if either the major or minor version of EE changed during this request. |
|
670 | - * Eg 4.9.0.rc.001 to 4.10.0.rc.000, but not 4.9.0.rc.0001 to 4.9.1.rc.0001 |
|
671 | - * |
|
672 | - * @return bool |
|
673 | - */ |
|
674 | - public function is_major_version_change() |
|
675 | - { |
|
676 | - return $this->_major_version_change; |
|
677 | - } |
|
678 | - |
|
679 | - |
|
680 | - /** |
|
681 | - * Determines the request type for any ee addon, given three piece of info: the current array of activation |
|
682 | - * histories (for core that' 'espresso_db_update' wp option); the name of the WordPress option which is temporarily |
|
683 | - * set upon activation of the plugin (for core it's 'ee_espresso_activation'); and the version that this plugin was |
|
684 | - * just activated to (for core that will always be espresso_version()) |
|
685 | - * |
|
686 | - * @param array $activation_history_for_addon the option's value which stores the activation history for this |
|
687 | - * ee plugin. for core that's 'espresso_db_update' |
|
688 | - * @param string $activation_indicator_option_name the name of the WordPress option that is temporarily set to |
|
689 | - * indicate that this plugin was just activated |
|
690 | - * @param string $version_to_upgrade_to the version that was just upgraded to (for core that will be |
|
691 | - * espresso_version()) |
|
692 | - * @return int one of the constants on EE_System::req_type_* |
|
693 | - */ |
|
694 | - public static function detect_req_type_given_activation_history( |
|
695 | - $activation_history_for_addon, |
|
696 | - $activation_indicator_option_name, |
|
697 | - $version_to_upgrade_to |
|
698 | - ) { |
|
699 | - $version_is_higher = self::_new_version_is_higher($activation_history_for_addon, $version_to_upgrade_to); |
|
700 | - if ($activation_history_for_addon) { |
|
701 | - // it exists, so this isn't a completely new install |
|
702 | - // check if this version already in that list of previously installed versions |
|
703 | - if (! isset($activation_history_for_addon[ $version_to_upgrade_to ])) { |
|
704 | - // it a version we haven't seen before |
|
705 | - if ($version_is_higher === 1) { |
|
706 | - $req_type = EE_System::req_type_upgrade; |
|
707 | - } else { |
|
708 | - $req_type = EE_System::req_type_downgrade; |
|
709 | - } |
|
710 | - delete_option($activation_indicator_option_name); |
|
711 | - } else { |
|
712 | - // its not an update. maybe a reactivation? |
|
713 | - if (get_option($activation_indicator_option_name, false)) { |
|
714 | - if ($version_is_higher === -1) { |
|
715 | - $req_type = EE_System::req_type_downgrade; |
|
716 | - } elseif ($version_is_higher === 0) { |
|
717 | - // we've seen this version before, but it's an activation. must be a reactivation |
|
718 | - $req_type = EE_System::req_type_reactivation; |
|
719 | - } else {// $version_is_higher === 1 |
|
720 | - $req_type = EE_System::req_type_upgrade; |
|
721 | - } |
|
722 | - delete_option($activation_indicator_option_name); |
|
723 | - } else { |
|
724 | - // we've seen this version before and the activation indicate doesn't show it was just activated |
|
725 | - if ($version_is_higher === -1) { |
|
726 | - $req_type = EE_System::req_type_downgrade; |
|
727 | - } elseif ($version_is_higher === 0) { |
|
728 | - // we've seen this version before and it's not an activation. its normal request |
|
729 | - $req_type = EE_System::req_type_normal; |
|
730 | - } else {// $version_is_higher === 1 |
|
731 | - $req_type = EE_System::req_type_upgrade; |
|
732 | - } |
|
733 | - } |
|
734 | - } |
|
735 | - } else { |
|
736 | - // brand new install |
|
737 | - $req_type = EE_System::req_type_new_activation; |
|
738 | - delete_option($activation_indicator_option_name); |
|
739 | - } |
|
740 | - return $req_type; |
|
741 | - } |
|
742 | - |
|
743 | - |
|
744 | - /** |
|
745 | - * Detects if the $version_to_upgrade_to is higher than the most recent version in |
|
746 | - * the $activation_history_for_addon |
|
747 | - * |
|
748 | - * @param array $activation_history_for_addon (keys are versions, values are arrays of times activated, |
|
749 | - * sometimes containing 'unknown-date' |
|
750 | - * @param string $version_to_upgrade_to (current version) |
|
751 | - * @return int results of version_compare( $version_to_upgrade_to, $most_recently_active_version ). |
|
752 | - * ie, -1 if $version_to_upgrade_to is LOWER (downgrade); |
|
753 | - * 0 if $version_to_upgrade_to MATCHES (reactivation or normal request); |
|
754 | - * 1 if $version_to_upgrade_to is HIGHER (upgrade) ; |
|
755 | - */ |
|
756 | - private static function _new_version_is_higher($activation_history_for_addon, $version_to_upgrade_to) |
|
757 | - { |
|
758 | - // find the most recently-activated version |
|
759 | - $most_recently_active_version = |
|
760 | - EE_System::_get_most_recently_active_version_from_activation_history($activation_history_for_addon); |
|
761 | - return version_compare($version_to_upgrade_to, $most_recently_active_version); |
|
762 | - } |
|
763 | - |
|
764 | - |
|
765 | - /** |
|
766 | - * Gets the most recently active version listed in the activation history, |
|
767 | - * and if none are found (ie, it's a brand new install) returns '0.0.0.dev.000'. |
|
768 | - * |
|
769 | - * @param array $activation_history (keys are versions, values are arrays of times activated, |
|
770 | - * sometimes containing 'unknown-date' |
|
771 | - * @return string |
|
772 | - */ |
|
773 | - private static function _get_most_recently_active_version_from_activation_history($activation_history) |
|
774 | - { |
|
775 | - $most_recently_active_version_activation = '1970-01-01 00:00:00'; |
|
776 | - $most_recently_active_version = '0.0.0.dev.000'; |
|
777 | - if (is_array($activation_history)) { |
|
778 | - foreach ($activation_history as $version => $times_activated) { |
|
779 | - // check there is a record of when this version was activated. Otherwise, |
|
780 | - // mark it as unknown |
|
781 | - if (! $times_activated) { |
|
782 | - $times_activated = array('unknown-date'); |
|
783 | - } |
|
784 | - if (is_string($times_activated)) { |
|
785 | - $times_activated = array($times_activated); |
|
786 | - } |
|
787 | - foreach ($times_activated as $an_activation) { |
|
788 | - if ($an_activation !== 'unknown-date' |
|
789 | - && $an_activation |
|
790 | - > $most_recently_active_version_activation) { |
|
791 | - $most_recently_active_version = $version; |
|
792 | - $most_recently_active_version_activation = $an_activation === 'unknown-date' |
|
793 | - ? '1970-01-01 00:00:00' |
|
794 | - : $an_activation; |
|
795 | - } |
|
796 | - } |
|
797 | - } |
|
798 | - } |
|
799 | - return $most_recently_active_version; |
|
800 | - } |
|
801 | - |
|
802 | - |
|
803 | - /** |
|
804 | - * This redirects to the about EE page after activation |
|
805 | - * |
|
806 | - * @return void |
|
807 | - */ |
|
808 | - public function redirect_to_about_ee() |
|
809 | - { |
|
810 | - $notices = EE_Error::get_notices(false); |
|
811 | - // if current user is an admin and it's not an ajax or rest request |
|
812 | - if (! isset($notices['errors']) |
|
813 | - && $this->request->isAdmin() |
|
814 | - && apply_filters( |
|
815 | - 'FHEE__EE_System__redirect_to_about_ee__do_redirect', |
|
816 | - $this->capabilities->current_user_can('manage_options', 'espresso_about_default') |
|
817 | - ) |
|
818 | - ) { |
|
819 | - $query_params = array('page' => 'espresso_about'); |
|
820 | - if (EE_System::instance()->detect_req_type() === EE_System::req_type_new_activation) { |
|
821 | - $query_params['new_activation'] = true; |
|
822 | - } |
|
823 | - if (EE_System::instance()->detect_req_type() === EE_System::req_type_reactivation) { |
|
824 | - $query_params['reactivation'] = true; |
|
825 | - } |
|
826 | - $url = add_query_arg($query_params, admin_url('admin.php')); |
|
827 | - wp_safe_redirect($url); |
|
828 | - exit(); |
|
829 | - } |
|
830 | - } |
|
831 | - |
|
832 | - |
|
833 | - /** |
|
834 | - * load_core_configuration |
|
835 | - * this is hooked into 'AHEE__EE_Bootstrap__load_core_configuration' |
|
836 | - * which runs during the WP 'plugins_loaded' action at priority 5 |
|
837 | - * |
|
838 | - * @return void |
|
839 | - * @throws ReflectionException |
|
840 | - */ |
|
841 | - public function load_core_configuration() |
|
842 | - { |
|
843 | - do_action('AHEE__EE_System__load_core_configuration__begin', $this); |
|
844 | - $this->loader->getShared('EE_Load_Textdomain'); |
|
845 | - // load textdomain |
|
846 | - EE_Load_Textdomain::load_textdomain(); |
|
847 | - // load and setup EE_Config and EE_Network_Config |
|
848 | - $config = $this->loader->getShared('EE_Config'); |
|
849 | - $this->loader->getShared('EE_Network_Config'); |
|
850 | - // setup autoloaders |
|
851 | - // enable logging? |
|
852 | - if ($config->admin->use_full_logging) { |
|
853 | - $this->loader->getShared('EE_Log'); |
|
854 | - } |
|
855 | - // check for activation errors |
|
856 | - $activation_errors = get_option('ee_plugin_activation_errors', false); |
|
857 | - if ($activation_errors) { |
|
858 | - EE_Error::add_error($activation_errors, __FILE__, __FUNCTION__, __LINE__); |
|
859 | - update_option('ee_plugin_activation_errors', false); |
|
860 | - } |
|
861 | - // get model names |
|
862 | - $this->_parse_model_names(); |
|
863 | - // load caf stuff a chance to play during the activation process too. |
|
864 | - $this->_maybe_brew_regular(); |
|
865 | - // configure custom post type definitions |
|
866 | - $this->loader->getShared('EventEspresso\core\domain\entities\custom_post_types\CustomTaxonomyDefinitions'); |
|
867 | - $this->loader->getShared('EventEspresso\core\domain\entities\custom_post_types\CustomPostTypeDefinitions'); |
|
868 | - do_action('AHEE__EE_System__load_core_configuration__complete', $this); |
|
869 | - } |
|
870 | - |
|
871 | - |
|
872 | - /** |
|
873 | - * cycles through all of the models/*.model.php files, and assembles an array of model names |
|
874 | - * |
|
875 | - * @return void |
|
876 | - * @throws ReflectionException |
|
877 | - */ |
|
878 | - private function _parse_model_names() |
|
879 | - { |
|
880 | - // get all the files in the EE_MODELS folder that end in .model.php |
|
881 | - $models = glob(EE_MODELS . '*.model.php'); |
|
882 | - $model_names = array(); |
|
883 | - $non_abstract_db_models = array(); |
|
884 | - foreach ($models as $model) { |
|
885 | - // get model classname |
|
886 | - $classname = EEH_File::get_classname_from_filepath_with_standard_filename($model); |
|
887 | - $short_name = str_replace('EEM_', '', $classname); |
|
888 | - $reflectionClass = new ReflectionClass($classname); |
|
889 | - if ($reflectionClass->isSubclassOf('EEM_Base') && ! $reflectionClass->isAbstract()) { |
|
890 | - $non_abstract_db_models[ $short_name ] = $classname; |
|
891 | - } |
|
892 | - $model_names[ $short_name ] = $classname; |
|
893 | - } |
|
894 | - $this->registry->models = apply_filters('FHEE__EE_System__parse_model_names', $model_names); |
|
895 | - $this->registry->non_abstract_db_models = apply_filters( |
|
896 | - 'FHEE__EE_System__parse_implemented_model_names', |
|
897 | - $non_abstract_db_models |
|
898 | - ); |
|
899 | - } |
|
900 | - |
|
901 | - |
|
902 | - /** |
|
903 | - * The purpose of this method is to simply check for a file named "caffeinated/brewing_regular.php" for any hooks |
|
904 | - * that need to be setup before our EE_System launches. |
|
905 | - * |
|
906 | - * @return void |
|
907 | - * @throws DomainException |
|
908 | - * @throws InvalidArgumentException |
|
909 | - * @throws InvalidDataTypeException |
|
910 | - * @throws InvalidInterfaceException |
|
911 | - * @throws InvalidClassException |
|
912 | - * @throws InvalidFilePathException |
|
913 | - */ |
|
914 | - private function _maybe_brew_regular() |
|
915 | - { |
|
916 | - /** @var Domain $domain */ |
|
917 | - $domain = DomainFactory::getShared( |
|
918 | - new FullyQualifiedName( |
|
919 | - 'EventEspresso\core\domain\Domain' |
|
920 | - ), |
|
921 | - array( |
|
922 | - new FilePath(EVENT_ESPRESSO_MAIN_FILE), |
|
923 | - Version::fromString(espresso_version()), |
|
924 | - ) |
|
925 | - ); |
|
926 | - if ($domain->isCaffeinated()) { |
|
927 | - require_once EE_CAFF_PATH . 'brewing_regular.php'; |
|
928 | - } |
|
929 | - } |
|
930 | - |
|
931 | - |
|
932 | - /** |
|
933 | - * register_shortcodes_modules_and_widgets |
|
934 | - * generate lists of shortcodes and modules, then verify paths and classes |
|
935 | - * This is hooked into 'AHEE__EE_Bootstrap__register_shortcodes_modules_and_widgets' |
|
936 | - * which runs during the WP 'plugins_loaded' action at priority 7 |
|
937 | - * |
|
938 | - * @access public |
|
939 | - * @return void |
|
940 | - * @throws Exception |
|
941 | - */ |
|
942 | - public function register_shortcodes_modules_and_widgets() |
|
943 | - { |
|
944 | - if ($this->request->isFrontend() || $this->request->isIframe()) { |
|
945 | - try { |
|
946 | - // load, register, and add shortcodes the new way |
|
947 | - $this->loader->getShared( |
|
948 | - 'EventEspresso\core\services\shortcodes\ShortcodesManager', |
|
949 | - array( |
|
950 | - // and the old way, but we'll put it under control of the new system |
|
951 | - EE_Config::getLegacyShortcodesManager(), |
|
952 | - ) |
|
953 | - ); |
|
954 | - } catch (Exception $exception) { |
|
955 | - new ExceptionStackTraceDisplay($exception); |
|
956 | - } |
|
957 | - } |
|
958 | - do_action('AHEE__EE_System__register_shortcodes_modules_and_widgets'); |
|
959 | - // check for addons using old hook point |
|
960 | - if (has_action('AHEE__EE_System__register_shortcodes_modules_and_addons')) { |
|
961 | - $this->_incompatible_addon_error(); |
|
962 | - } |
|
963 | - } |
|
964 | - |
|
965 | - |
|
966 | - /** |
|
967 | - * _incompatible_addon_error |
|
968 | - * |
|
969 | - * @access public |
|
970 | - * @return void |
|
971 | - */ |
|
972 | - private function _incompatible_addon_error() |
|
973 | - { |
|
974 | - // get array of classes hooking into here |
|
975 | - $class_names = EEH_Class_Tools::get_class_names_for_all_callbacks_on_hook( |
|
976 | - 'AHEE__EE_System__register_shortcodes_modules_and_addons' |
|
977 | - ); |
|
978 | - if (! empty($class_names)) { |
|
979 | - $msg = __( |
|
980 | - 'The following plugins, addons, or modules appear to be incompatible with this version of Event Espresso and were automatically deactivated to avoid fatal errors:', |
|
981 | - 'event_espresso' |
|
982 | - ); |
|
983 | - $msg .= '<ul>'; |
|
984 | - foreach ($class_names as $class_name) { |
|
985 | - $msg .= '<li><b>Event Espresso - ' |
|
986 | - . str_replace( |
|
987 | - array('EE_', 'EEM_', 'EED_', 'EES_', 'EEW_'), |
|
988 | - '', |
|
989 | - $class_name |
|
990 | - ) . '</b></li>'; |
|
991 | - } |
|
992 | - $msg .= '</ul>'; |
|
993 | - $msg .= __( |
|
994 | - 'Compatibility issues can be avoided and/or resolved by keeping addons and plugins updated to the latest version.', |
|
995 | - 'event_espresso' |
|
996 | - ); |
|
997 | - // save list of incompatible addons to wp-options for later use |
|
998 | - add_option('ee_incompatible_addons', $class_names, '', 'no'); |
|
999 | - if (is_admin()) { |
|
1000 | - EE_Error::add_error($msg, __FILE__, __FUNCTION__, __LINE__); |
|
1001 | - } |
|
1002 | - } |
|
1003 | - } |
|
1004 | - |
|
1005 | - |
|
1006 | - /** |
|
1007 | - * brew_espresso |
|
1008 | - * begins the process of setting hooks for initializing EE in the correct order |
|
1009 | - * This is happening on the 'AHEE__EE_Bootstrap__brew_espresso' hook point |
|
1010 | - * which runs during the WP 'plugins_loaded' action at priority 9 |
|
1011 | - * |
|
1012 | - * @return void |
|
1013 | - */ |
|
1014 | - public function brew_espresso() |
|
1015 | - { |
|
1016 | - do_action('AHEE__EE_System__brew_espresso__begin', $this); |
|
1017 | - // load some final core systems |
|
1018 | - add_action('init', array($this, 'set_hooks_for_core'), 1); |
|
1019 | - add_action('init', array($this, 'perform_activations_upgrades_and_migrations'), 3); |
|
1020 | - add_action('init', array($this, 'load_CPTs_and_session'), 5); |
|
1021 | - add_action('init', array($this, 'load_controllers'), 7); |
|
1022 | - add_action('init', array($this, 'core_loaded_and_ready'), 9); |
|
1023 | - add_action('init', array($this, 'initialize'), 10); |
|
1024 | - add_action('init', array($this, 'initialize_last'), 100); |
|
1025 | - if (is_admin() && apply_filters('FHEE__EE_System__brew_espresso__load_pue', true)) { |
|
1026 | - // pew pew pew |
|
1027 | - $this->loader->getShared('EventEspresso\core\services\licensing\LicenseService'); |
|
1028 | - do_action('AHEE__EE_System__brew_espresso__after_pue_init'); |
|
1029 | - } |
|
1030 | - do_action('AHEE__EE_System__brew_espresso__complete', $this); |
|
1031 | - } |
|
1032 | - |
|
1033 | - |
|
1034 | - /** |
|
1035 | - * set_hooks_for_core |
|
1036 | - * |
|
1037 | - * @access public |
|
1038 | - * @return void |
|
1039 | - * @throws EE_Error |
|
1040 | - */ |
|
1041 | - public function set_hooks_for_core() |
|
1042 | - { |
|
1043 | - $this->_deactivate_incompatible_addons(); |
|
1044 | - do_action('AHEE__EE_System__set_hooks_for_core'); |
|
1045 | - $this->loader->getShared('EventEspresso\core\domain\values\session\SessionLifespan'); |
|
1046 | - // caps need to be initialized on every request so that capability maps are set. |
|
1047 | - // @see https://events.codebasehq.com/projects/event-espresso/tickets/8674 |
|
1048 | - $this->registry->CAP->init_caps(); |
|
1049 | - } |
|
1050 | - |
|
1051 | - |
|
1052 | - /** |
|
1053 | - * Using the information gathered in EE_System::_incompatible_addon_error, |
|
1054 | - * deactivates any addons considered incompatible with the current version of EE |
|
1055 | - */ |
|
1056 | - private function _deactivate_incompatible_addons() |
|
1057 | - { |
|
1058 | - $incompatible_addons = get_option('ee_incompatible_addons', array()); |
|
1059 | - if (! empty($incompatible_addons)) { |
|
1060 | - $active_plugins = get_option('active_plugins', array()); |
|
1061 | - foreach ($active_plugins as $active_plugin) { |
|
1062 | - foreach ($incompatible_addons as $incompatible_addon) { |
|
1063 | - if (strpos($active_plugin, $incompatible_addon) !== false) { |
|
1064 | - unset($_GET['activate']); |
|
1065 | - espresso_deactivate_plugin($active_plugin); |
|
1066 | - } |
|
1067 | - } |
|
1068 | - } |
|
1069 | - } |
|
1070 | - } |
|
1071 | - |
|
1072 | - |
|
1073 | - /** |
|
1074 | - * perform_activations_upgrades_and_migrations |
|
1075 | - * |
|
1076 | - * @access public |
|
1077 | - * @return void |
|
1078 | - */ |
|
1079 | - public function perform_activations_upgrades_and_migrations() |
|
1080 | - { |
|
1081 | - do_action('AHEE__EE_System__perform_activations_upgrades_and_migrations'); |
|
1082 | - } |
|
1083 | - |
|
1084 | - |
|
1085 | - /** |
|
1086 | - * @return void |
|
1087 | - * @throws DomainException |
|
1088 | - */ |
|
1089 | - public function load_CPTs_and_session() |
|
1090 | - { |
|
1091 | - do_action('AHEE__EE_System__load_CPTs_and_session__start'); |
|
1092 | - /** @var EventEspresso\core\domain\services\custom_post_types\RegisterCustomTaxonomies $register_custom_taxonomies */ |
|
1093 | - $register_custom_taxonomies = $this->loader->getShared( |
|
1094 | - 'EventEspresso\core\domain\services\custom_post_types\RegisterCustomTaxonomies' |
|
1095 | - ); |
|
1096 | - $register_custom_taxonomies->registerCustomTaxonomies(); |
|
1097 | - /** @var EventEspresso\core\domain\services\custom_post_types\RegisterCustomPostTypes $register_custom_post_types */ |
|
1098 | - $register_custom_post_types = $this->loader->getShared( |
|
1099 | - 'EventEspresso\core\domain\services\custom_post_types\RegisterCustomPostTypes' |
|
1100 | - ); |
|
1101 | - $register_custom_post_types->registerCustomPostTypes(); |
|
1102 | - /** @var EventEspresso\core\domain\services\custom_post_types\RegisterCustomTaxonomyTerms $register_custom_taxonomy_terms */ |
|
1103 | - $register_custom_taxonomy_terms = $this->loader->getShared( |
|
1104 | - 'EventEspresso\core\domain\services\custom_post_types\RegisterCustomTaxonomyTerms' |
|
1105 | - ); |
|
1106 | - $register_custom_taxonomy_terms->registerCustomTaxonomyTerms(); |
|
1107 | - // load legacy Custom Post Types and Taxonomies |
|
1108 | - $this->loader->getShared('EE_Register_CPTs'); |
|
1109 | - do_action('AHEE__EE_System__load_CPTs_and_session__complete'); |
|
1110 | - } |
|
1111 | - |
|
1112 | - |
|
1113 | - /** |
|
1114 | - * load_controllers |
|
1115 | - * this is the best place to load any additional controllers that needs access to EE core. |
|
1116 | - * it is expected that all basic core EE systems, that are not dependant on the current request are loaded at this |
|
1117 | - * time |
|
1118 | - * |
|
1119 | - * @access public |
|
1120 | - * @return void |
|
1121 | - */ |
|
1122 | - public function load_controllers() |
|
1123 | - { |
|
1124 | - do_action('AHEE__EE_System__load_controllers__start'); |
|
1125 | - // let's get it started |
|
1126 | - if (! $this->maintenance_mode->level() |
|
1127 | - && ($this->request->isFrontend() || $this->request->isFrontAjax()) |
|
1128 | - ) { |
|
1129 | - do_action('AHEE__EE_System__load_controllers__load_front_controllers'); |
|
1130 | - $this->loader->getShared('EE_Front_Controller'); |
|
1131 | - } elseif ($this->request->isAdmin() || $this->request->isAdminAjax()) { |
|
1132 | - do_action('AHEE__EE_System__load_controllers__load_admin_controllers'); |
|
1133 | - $this->loader->getShared('EE_Admin'); |
|
1134 | - } |
|
1135 | - do_action('AHEE__EE_System__load_controllers__complete'); |
|
1136 | - } |
|
1137 | - |
|
1138 | - |
|
1139 | - /** |
|
1140 | - * core_loaded_and_ready |
|
1141 | - * all of the basic EE core should be loaded at this point and available regardless of M-Mode |
|
1142 | - * |
|
1143 | - * @access public |
|
1144 | - * @return void |
|
1145 | - */ |
|
1146 | - public function core_loaded_and_ready() |
|
1147 | - { |
|
1148 | - if ($this->request->isAdmin() |
|
1149 | - || $this->request->isEeAjax() |
|
1150 | - || $this->request->isFrontend() |
|
1151 | - ) { |
|
1152 | - $this->loader->getShared('EE_Session'); |
|
1153 | - } |
|
1154 | - do_action('AHEE__EE_System__core_loaded_and_ready'); |
|
1155 | - // load_espresso_template_tags |
|
1156 | - if (is_readable(EE_PUBLIC . 'template_tags.php') |
|
1157 | - && ($this->request->isFrontend() || $this->request->isIframe() || $this->request->isFeed()) |
|
1158 | - ) { |
|
1159 | - require_once EE_PUBLIC . 'template_tags.php'; |
|
1160 | - } |
|
1161 | - do_action('AHEE__EE_System__set_hooks_for_shortcodes_modules_and_addons'); |
|
1162 | - if ($this->request->isAdmin() || $this->request->isFrontend() || $this->request->isIframe()) { |
|
1163 | - $this->loader->getShared('EventEspresso\core\services\assets\Registry'); |
|
1164 | - } |
|
1165 | - } |
|
1166 | - |
|
1167 | - |
|
1168 | - /** |
|
1169 | - * initialize |
|
1170 | - * this is the best place to begin initializing client code |
|
1171 | - * |
|
1172 | - * @access public |
|
1173 | - * @return void |
|
1174 | - */ |
|
1175 | - public function initialize() |
|
1176 | - { |
|
1177 | - do_action('AHEE__EE_System__initialize'); |
|
1178 | - } |
|
1179 | - |
|
1180 | - |
|
1181 | - /** |
|
1182 | - * initialize_last |
|
1183 | - * this is run really late during the WP init hook point, and ensures that mostly everything else that needs to |
|
1184 | - * initialize has done so |
|
1185 | - * |
|
1186 | - * @access public |
|
1187 | - * @return void |
|
1188 | - */ |
|
1189 | - public function initialize_last() |
|
1190 | - { |
|
1191 | - do_action('AHEE__EE_System__initialize_last'); |
|
1192 | - /** @var EventEspresso\core\domain\services\custom_post_types\RewriteRules $rewrite_rules */ |
|
1193 | - $rewrite_rules = $this->loader->getShared( |
|
1194 | - 'EventEspresso\core\domain\services\custom_post_types\RewriteRules' |
|
1195 | - ); |
|
1196 | - $rewrite_rules->flushRewriteRules(); |
|
1197 | - add_action('admin_bar_init', array($this, 'addEspressoToolbar')); |
|
1198 | - if($this->request->isAdmin() && function_exists('wp_add_privacy_policy_content')) { |
|
1199 | - $this->loader->getShared('EventEspresso\core\services\privacy\policy\PrivacyPolicyManager'); |
|
1200 | - } |
|
1201 | - } |
|
1202 | - |
|
1203 | - |
|
1204 | - /** |
|
1205 | - * @return void |
|
1206 | - * @throws EE_Error |
|
1207 | - */ |
|
1208 | - public function addEspressoToolbar() |
|
1209 | - { |
|
1210 | - $this->loader->getShared( |
|
1211 | - 'EventEspresso\core\domain\services\admin\AdminToolBar', |
|
1212 | - array($this->registry->CAP) |
|
1213 | - ); |
|
1214 | - } |
|
1215 | - |
|
1216 | - |
|
1217 | - /** |
|
1218 | - * do_not_cache |
|
1219 | - * sets no cache headers and defines no cache constants for WP plugins |
|
1220 | - * |
|
1221 | - * @access public |
|
1222 | - * @return void |
|
1223 | - */ |
|
1224 | - public static function do_not_cache() |
|
1225 | - { |
|
1226 | - // set no cache constants |
|
1227 | - if (! defined('DONOTCACHEPAGE')) { |
|
1228 | - define('DONOTCACHEPAGE', true); |
|
1229 | - } |
|
1230 | - if (! defined('DONOTCACHCEOBJECT')) { |
|
1231 | - define('DONOTCACHCEOBJECT', true); |
|
1232 | - } |
|
1233 | - if (! defined('DONOTCACHEDB')) { |
|
1234 | - define('DONOTCACHEDB', true); |
|
1235 | - } |
|
1236 | - // add no cache headers |
|
1237 | - add_action('send_headers', array('EE_System', 'nocache_headers'), 10); |
|
1238 | - // plus a little extra for nginx and Google Chrome |
|
1239 | - add_filter('nocache_headers', array('EE_System', 'extra_nocache_headers'), 10, 1); |
|
1240 | - // prevent browsers from prefetching of the rel='next' link, because it may contain content that interferes with the registration process |
|
1241 | - remove_action('wp_head', 'adjacent_posts_rel_link_wp_head'); |
|
1242 | - } |
|
1243 | - |
|
1244 | - |
|
1245 | - /** |
|
1246 | - * extra_nocache_headers |
|
1247 | - * |
|
1248 | - * @access public |
|
1249 | - * @param $headers |
|
1250 | - * @return array |
|
1251 | - */ |
|
1252 | - public static function extra_nocache_headers($headers) |
|
1253 | - { |
|
1254 | - // for NGINX |
|
1255 | - $headers['X-Accel-Expires'] = 0; |
|
1256 | - // plus extra for Google Chrome since it doesn't seem to respect "no-cache", but WILL respect "no-store" |
|
1257 | - $headers['Cache-Control'] = 'no-store, no-cache, must-revalidate, max-age=0'; |
|
1258 | - return $headers; |
|
1259 | - } |
|
1260 | - |
|
1261 | - |
|
1262 | - /** |
|
1263 | - * nocache_headers |
|
1264 | - * |
|
1265 | - * @access public |
|
1266 | - * @return void |
|
1267 | - */ |
|
1268 | - public static function nocache_headers() |
|
1269 | - { |
|
1270 | - nocache_headers(); |
|
1271 | - } |
|
1272 | - |
|
1273 | - |
|
1274 | - /** |
|
1275 | - * simply hooks into "wp_list_pages_exclude" filter (for wp_list_pages method) and makes sure EE critical pages are |
|
1276 | - * never returned with the function. |
|
1277 | - * |
|
1278 | - * @param array $exclude_array any existing pages being excluded are in this array. |
|
1279 | - * @return array |
|
1280 | - */ |
|
1281 | - public function remove_pages_from_wp_list_pages($exclude_array) |
|
1282 | - { |
|
1283 | - return array_merge($exclude_array, $this->registry->CFG->core->get_critical_pages_array()); |
|
1284 | - } |
|
31 | + /** |
|
32 | + * indicates this is a 'normal' request. Ie, not activation, nor upgrade, nor activation. |
|
33 | + * So examples of this would be a normal GET request on the frontend or backend, or a POST, etc |
|
34 | + */ |
|
35 | + const req_type_normal = 0; |
|
36 | + |
|
37 | + /** |
|
38 | + * Indicates this is a brand new installation of EE so we should install |
|
39 | + * tables and default data etc |
|
40 | + */ |
|
41 | + const req_type_new_activation = 1; |
|
42 | + |
|
43 | + /** |
|
44 | + * we've detected that EE has been reactivated (or EE was activated during maintenance mode, |
|
45 | + * and we just exited maintenance mode). We MUST check the database is setup properly |
|
46 | + * and that default data is setup too |
|
47 | + */ |
|
48 | + const req_type_reactivation = 2; |
|
49 | + |
|
50 | + /** |
|
51 | + * indicates that EE has been upgraded since its previous request. |
|
52 | + * We may have data migration scripts to call and will want to trigger maintenance mode |
|
53 | + */ |
|
54 | + const req_type_upgrade = 3; |
|
55 | + |
|
56 | + /** |
|
57 | + * TODO will detect that EE has been DOWNGRADED. We probably don't want to run in this case... |
|
58 | + */ |
|
59 | + const req_type_downgrade = 4; |
|
60 | + |
|
61 | + /** |
|
62 | + * @deprecated since version 4.6.0.dev.006 |
|
63 | + * Now whenever a new_activation is detected the request type is still just |
|
64 | + * new_activation (same for reactivation, upgrade, downgrade etc), but if we'r ein maintenance mode |
|
65 | + * EE_System::initialize_db_if_no_migrations_required and EE_Addon::initialize_db_if_no_migrations_required |
|
66 | + * will instead enqueue that EE plugin's db initialization for when we're taken out of maintenance mode. |
|
67 | + * (Specifically, when the migration manager indicates migrations are finished |
|
68 | + * EE_Data_Migration_Manager::initialize_db_for_enqueued_ee_plugins() will be called) |
|
69 | + */ |
|
70 | + const req_type_activation_but_not_installed = 5; |
|
71 | + |
|
72 | + /** |
|
73 | + * option prefix for recording the activation history (like core's "espresso_db_update") of addons |
|
74 | + */ |
|
75 | + const addon_activation_history_option_prefix = 'ee_addon_activation_history_'; |
|
76 | + |
|
77 | + |
|
78 | + /** |
|
79 | + * @var EE_System $_instance |
|
80 | + */ |
|
81 | + private static $_instance; |
|
82 | + |
|
83 | + /** |
|
84 | + * @var EE_Registry $registry |
|
85 | + */ |
|
86 | + private $registry; |
|
87 | + |
|
88 | + /** |
|
89 | + * @var LoaderInterface $loader |
|
90 | + */ |
|
91 | + private $loader; |
|
92 | + |
|
93 | + /** |
|
94 | + * @var EE_Capabilities $capabilities |
|
95 | + */ |
|
96 | + private $capabilities; |
|
97 | + |
|
98 | + /** |
|
99 | + * @var RequestInterface $request |
|
100 | + */ |
|
101 | + private $request; |
|
102 | + |
|
103 | + /** |
|
104 | + * @var EE_Maintenance_Mode $maintenance_mode |
|
105 | + */ |
|
106 | + private $maintenance_mode; |
|
107 | + |
|
108 | + /** |
|
109 | + * Stores which type of request this is, options being one of the constants on EE_System starting with req_type_*. |
|
110 | + * It can be a brand-new activation, a reactivation, an upgrade, a downgrade, or a normal request. |
|
111 | + * |
|
112 | + * @var int $_req_type |
|
113 | + */ |
|
114 | + private $_req_type; |
|
115 | + |
|
116 | + /** |
|
117 | + * Whether or not there was a non-micro version change in EE core version during this request |
|
118 | + * |
|
119 | + * @var boolean $_major_version_change |
|
120 | + */ |
|
121 | + private $_major_version_change = false; |
|
122 | + |
|
123 | + /** |
|
124 | + * A Context DTO dedicated solely to identifying the current request type. |
|
125 | + * |
|
126 | + * @var RequestTypeContextCheckerInterface $request_type |
|
127 | + */ |
|
128 | + private $request_type; |
|
129 | + |
|
130 | + |
|
131 | + /** |
|
132 | + * @singleton method used to instantiate class object |
|
133 | + * @param EE_Registry|null $registry |
|
134 | + * @param LoaderInterface|null $loader |
|
135 | + * @param RequestInterface|null $request |
|
136 | + * @param EE_Maintenance_Mode|null $maintenance_mode |
|
137 | + * @return EE_System |
|
138 | + */ |
|
139 | + public static function instance( |
|
140 | + EE_Registry $registry = null, |
|
141 | + LoaderInterface $loader = null, |
|
142 | + RequestInterface $request = null, |
|
143 | + EE_Maintenance_Mode $maintenance_mode = null |
|
144 | + ) { |
|
145 | + // check if class object is instantiated |
|
146 | + if (! self::$_instance instanceof EE_System) { |
|
147 | + self::$_instance = new self($registry, $loader, $request, $maintenance_mode); |
|
148 | + } |
|
149 | + return self::$_instance; |
|
150 | + } |
|
151 | + |
|
152 | + |
|
153 | + /** |
|
154 | + * resets the instance and returns it |
|
155 | + * |
|
156 | + * @return EE_System |
|
157 | + */ |
|
158 | + public static function reset() |
|
159 | + { |
|
160 | + self::$_instance->_req_type = null; |
|
161 | + // make sure none of the old hooks are left hanging around |
|
162 | + remove_all_actions('AHEE__EE_System__perform_activations_upgrades_and_migrations'); |
|
163 | + // we need to reset the migration manager in order for it to detect DMSs properly |
|
164 | + EE_Data_Migration_Manager::reset(); |
|
165 | + self::instance()->detect_activations_or_upgrades(); |
|
166 | + self::instance()->perform_activations_upgrades_and_migrations(); |
|
167 | + return self::instance(); |
|
168 | + } |
|
169 | + |
|
170 | + |
|
171 | + /** |
|
172 | + * sets hooks for running rest of system |
|
173 | + * provides "AHEE__EE_System__construct__complete" hook for EE Addons to use as their starting point |
|
174 | + * starting EE Addons from any other point may lead to problems |
|
175 | + * |
|
176 | + * @param EE_Registry $registry |
|
177 | + * @param LoaderInterface $loader |
|
178 | + * @param RequestInterface $request |
|
179 | + * @param EE_Maintenance_Mode $maintenance_mode |
|
180 | + */ |
|
181 | + private function __construct( |
|
182 | + EE_Registry $registry, |
|
183 | + LoaderInterface $loader, |
|
184 | + RequestInterface $request, |
|
185 | + EE_Maintenance_Mode $maintenance_mode |
|
186 | + ) { |
|
187 | + $this->registry = $registry; |
|
188 | + $this->loader = $loader; |
|
189 | + $this->request = $request; |
|
190 | + $this->maintenance_mode = $maintenance_mode; |
|
191 | + do_action('AHEE__EE_System__construct__begin', $this); |
|
192 | + add_action( |
|
193 | + 'AHEE__EE_Bootstrap__load_espresso_addons', |
|
194 | + array($this, 'loadCapabilities'), |
|
195 | + 5 |
|
196 | + ); |
|
197 | + add_action( |
|
198 | + 'AHEE__EE_Bootstrap__load_espresso_addons', |
|
199 | + array($this, 'loadCommandBus'), |
|
200 | + 7 |
|
201 | + ); |
|
202 | + add_action( |
|
203 | + 'AHEE__EE_Bootstrap__load_espresso_addons', |
|
204 | + array($this, 'loadPluginApi'), |
|
205 | + 9 |
|
206 | + ); |
|
207 | + // allow addons to load first so that they can register autoloaders, set hooks for running DMS's, etc |
|
208 | + add_action( |
|
209 | + 'AHEE__EE_Bootstrap__load_espresso_addons', |
|
210 | + array($this, 'load_espresso_addons') |
|
211 | + ); |
|
212 | + // when an ee addon is activated, we want to call the core hook(s) again |
|
213 | + // because the newly-activated addon didn't get a chance to run at all |
|
214 | + add_action('activate_plugin', array($this, 'load_espresso_addons'), 1); |
|
215 | + // detect whether install or upgrade |
|
216 | + add_action( |
|
217 | + 'AHEE__EE_Bootstrap__detect_activations_or_upgrades', |
|
218 | + array($this, 'detect_activations_or_upgrades'), |
|
219 | + 3 |
|
220 | + ); |
|
221 | + // load EE_Config, EE_Textdomain, etc |
|
222 | + add_action( |
|
223 | + 'AHEE__EE_Bootstrap__load_core_configuration', |
|
224 | + array($this, 'load_core_configuration'), |
|
225 | + 5 |
|
226 | + ); |
|
227 | + // load EE_Config, EE_Textdomain, etc |
|
228 | + add_action( |
|
229 | + 'AHEE__EE_Bootstrap__register_shortcodes_modules_and_widgets', |
|
230 | + array($this, 'register_shortcodes_modules_and_widgets'), |
|
231 | + 7 |
|
232 | + ); |
|
233 | + // you wanna get going? I wanna get going... let's get going! |
|
234 | + add_action( |
|
235 | + 'AHEE__EE_Bootstrap__brew_espresso', |
|
236 | + array($this, 'brew_espresso'), |
|
237 | + 9 |
|
238 | + ); |
|
239 | + // other housekeeping |
|
240 | + // exclude EE critical pages from wp_list_pages |
|
241 | + add_filter( |
|
242 | + 'wp_list_pages_excludes', |
|
243 | + array($this, 'remove_pages_from_wp_list_pages'), |
|
244 | + 10 |
|
245 | + ); |
|
246 | + // ALL EE Addons should use the following hook point to attach their initial setup too |
|
247 | + // it's extremely important for EE Addons to register any class autoloaders so that they can be available when the EE_Config loads |
|
248 | + do_action('AHEE__EE_System__construct__complete', $this); |
|
249 | + } |
|
250 | + |
|
251 | + |
|
252 | + /** |
|
253 | + * load and setup EE_Capabilities |
|
254 | + * |
|
255 | + * @return void |
|
256 | + * @throws EE_Error |
|
257 | + */ |
|
258 | + public function loadCapabilities() |
|
259 | + { |
|
260 | + $this->capabilities = $this->loader->getShared('EE_Capabilities'); |
|
261 | + add_action( |
|
262 | + 'AHEE__EE_Capabilities__init_caps__before_initialization', |
|
263 | + function () { |
|
264 | + LoaderFactory::getLoader()->getShared('EE_Payment_Method_Manager'); |
|
265 | + } |
|
266 | + ); |
|
267 | + } |
|
268 | + |
|
269 | + |
|
270 | + /** |
|
271 | + * create and cache the CommandBus, and also add middleware |
|
272 | + * The CapChecker middleware requires the use of EE_Capabilities |
|
273 | + * which is why we need to load the CommandBus after Caps are set up |
|
274 | + * |
|
275 | + * @return void |
|
276 | + * @throws EE_Error |
|
277 | + */ |
|
278 | + public function loadCommandBus() |
|
279 | + { |
|
280 | + $this->loader->getShared( |
|
281 | + 'CommandBusInterface', |
|
282 | + array( |
|
283 | + null, |
|
284 | + apply_filters( |
|
285 | + 'FHEE__EE_Load_Espresso_Core__handle_request__CommandBus_middleware', |
|
286 | + array( |
|
287 | + $this->loader->getShared('EventEspresso\core\services\commands\middleware\CapChecker'), |
|
288 | + $this->loader->getShared('EventEspresso\core\services\commands\middleware\AddActionHook'), |
|
289 | + ) |
|
290 | + ), |
|
291 | + ) |
|
292 | + ); |
|
293 | + } |
|
294 | + |
|
295 | + |
|
296 | + /** |
|
297 | + * @return void |
|
298 | + * @throws EE_Error |
|
299 | + */ |
|
300 | + public function loadPluginApi() |
|
301 | + { |
|
302 | + // set autoloaders for all of the classes implementing EEI_Plugin_API |
|
303 | + // which provide helpers for EE plugin authors to more easily register certain components with EE. |
|
304 | + EEH_Autoloader::instance()->register_autoloaders_for_each_file_in_folder(EE_LIBRARIES . 'plugin_api'); |
|
305 | + $this->loader->getShared('EE_Request_Handler'); |
|
306 | + } |
|
307 | + |
|
308 | + |
|
309 | + /** |
|
310 | + * @param string $addon_name |
|
311 | + * @param string $version_constant |
|
312 | + * @param string $min_version_required |
|
313 | + * @param string $load_callback |
|
314 | + * @param string $plugin_file_constant |
|
315 | + * @return void |
|
316 | + */ |
|
317 | + private function deactivateIncompatibleAddon( |
|
318 | + $addon_name, |
|
319 | + $version_constant, |
|
320 | + $min_version_required, |
|
321 | + $load_callback, |
|
322 | + $plugin_file_constant |
|
323 | + ) { |
|
324 | + if (! defined($version_constant)) { |
|
325 | + return; |
|
326 | + } |
|
327 | + $addon_version = constant($version_constant); |
|
328 | + if ($addon_version && version_compare($addon_version, $min_version_required, '<')) { |
|
329 | + remove_action('AHEE__EE_System__load_espresso_addons', $load_callback); |
|
330 | + if (! function_exists('deactivate_plugins')) { |
|
331 | + require_once ABSPATH . 'wp-admin/includes/plugin.php'; |
|
332 | + } |
|
333 | + deactivate_plugins(plugin_basename(constant($plugin_file_constant))); |
|
334 | + unset($_GET['activate'], $_REQUEST['activate'], $_GET['activate-multi'], $_REQUEST['activate-multi']); |
|
335 | + EE_Error::add_error( |
|
336 | + sprintf( |
|
337 | + esc_html__( |
|
338 | + 'We\'re sorry, but the Event Espresso %1$s addon was deactivated because version %2$s or higher is required with this version of Event Espresso core.', |
|
339 | + 'event_espresso' |
|
340 | + ), |
|
341 | + $addon_name, |
|
342 | + $min_version_required |
|
343 | + ), |
|
344 | + __FILE__, |
|
345 | + __FUNCTION__ . "({$addon_name})", |
|
346 | + __LINE__ |
|
347 | + ); |
|
348 | + EE_Error::get_notices(false, true); |
|
349 | + } |
|
350 | + } |
|
351 | + |
|
352 | + |
|
353 | + /** |
|
354 | + * load_espresso_addons |
|
355 | + * allow addons to load first so that they can set hooks for running DMS's, etc |
|
356 | + * this is hooked into both: |
|
357 | + * 'AHEE__EE_Bootstrap__load_core_configuration' |
|
358 | + * which runs during the WP 'plugins_loaded' action at priority 5 |
|
359 | + * and the WP 'activate_plugin' hook point |
|
360 | + * |
|
361 | + * @access public |
|
362 | + * @return void |
|
363 | + */ |
|
364 | + public function load_espresso_addons() |
|
365 | + { |
|
366 | + $this->deactivateIncompatibleAddon( |
|
367 | + 'Wait Lists', |
|
368 | + 'EE_WAIT_LISTS_VERSION', |
|
369 | + '1.0.0.beta.074', |
|
370 | + 'load_espresso_wait_lists', |
|
371 | + 'EE_WAIT_LISTS_PLUGIN_FILE' |
|
372 | + ); |
|
373 | + $this->deactivateIncompatibleAddon( |
|
374 | + 'Automated Upcoming Event Notifications', |
|
375 | + 'EE_AUTOMATED_UPCOMING_EVENT_NOTIFICATION_VERSION', |
|
376 | + '1.0.0.beta.091', |
|
377 | + 'load_espresso_automated_upcoming_event_notification', |
|
378 | + 'EE_AUTOMATED_UPCOMING_EVENT_NOTIFICATION_PLUGIN_FILE' |
|
379 | + ); |
|
380 | + do_action('AHEE__EE_System__load_espresso_addons'); |
|
381 | + // if the WP API basic auth plugin isn't already loaded, load it now. |
|
382 | + // We want it for mobile apps. Just include the entire plugin |
|
383 | + // also, don't load the basic auth when a plugin is getting activated, because |
|
384 | + // it could be the basic auth plugin, and it doesn't check if its methods are already defined |
|
385 | + // and causes a fatal error |
|
386 | + if ($this->request->getRequestParam('activate') !== 'true' |
|
387 | + && ! function_exists('json_basic_auth_handler') |
|
388 | + && ! function_exists('json_basic_auth_error') |
|
389 | + && ! in_array( |
|
390 | + $this->request->getRequestParam('action'), |
|
391 | + array('activate', 'activate-selected'), |
|
392 | + true |
|
393 | + ) |
|
394 | + ) { |
|
395 | + include_once EE_THIRD_PARTY . 'wp-api-basic-auth' . DS . 'basic-auth.php'; |
|
396 | + } |
|
397 | + do_action('AHEE__EE_System__load_espresso_addons__complete'); |
|
398 | + } |
|
399 | + |
|
400 | + |
|
401 | + /** |
|
402 | + * detect_activations_or_upgrades |
|
403 | + * Checks for activation or upgrade of core first; |
|
404 | + * then also checks if any registered addons have been activated or upgraded |
|
405 | + * This is hooked into 'AHEE__EE_Bootstrap__detect_activations_or_upgrades' |
|
406 | + * which runs during the WP 'plugins_loaded' action at priority 3 |
|
407 | + * |
|
408 | + * @access public |
|
409 | + * @return void |
|
410 | + */ |
|
411 | + public function detect_activations_or_upgrades() |
|
412 | + { |
|
413 | + // first off: let's make sure to handle core |
|
414 | + $this->detect_if_activation_or_upgrade(); |
|
415 | + foreach ($this->registry->addons as $addon) { |
|
416 | + if ($addon instanceof EE_Addon) { |
|
417 | + // detect teh request type for that addon |
|
418 | + $addon->detect_activation_or_upgrade(); |
|
419 | + } |
|
420 | + } |
|
421 | + } |
|
422 | + |
|
423 | + |
|
424 | + /** |
|
425 | + * detect_if_activation_or_upgrade |
|
426 | + * Takes care of detecting whether this is a brand new install or code upgrade, |
|
427 | + * and either setting up the DB or setting up maintenance mode etc. |
|
428 | + * |
|
429 | + * @access public |
|
430 | + * @return void |
|
431 | + */ |
|
432 | + public function detect_if_activation_or_upgrade() |
|
433 | + { |
|
434 | + do_action('AHEE__EE_System___detect_if_activation_or_upgrade__begin'); |
|
435 | + // check if db has been updated, or if its a brand-new installation |
|
436 | + $espresso_db_update = $this->fix_espresso_db_upgrade_option(); |
|
437 | + $request_type = $this->detect_req_type($espresso_db_update); |
|
438 | + // EEH_Debug_Tools::printr( $request_type, '$request_type', __FILE__, __LINE__ ); |
|
439 | + switch ($request_type) { |
|
440 | + case EE_System::req_type_new_activation: |
|
441 | + do_action('AHEE__EE_System__detect_if_activation_or_upgrade__new_activation'); |
|
442 | + $this->_handle_core_version_change($espresso_db_update); |
|
443 | + break; |
|
444 | + case EE_System::req_type_reactivation: |
|
445 | + do_action('AHEE__EE_System__detect_if_activation_or_upgrade__reactivation'); |
|
446 | + $this->_handle_core_version_change($espresso_db_update); |
|
447 | + break; |
|
448 | + case EE_System::req_type_upgrade: |
|
449 | + do_action('AHEE__EE_System__detect_if_activation_or_upgrade__upgrade'); |
|
450 | + // migrations may be required now that we've upgraded |
|
451 | + $this->maintenance_mode->set_maintenance_mode_if_db_old(); |
|
452 | + $this->_handle_core_version_change($espresso_db_update); |
|
453 | + break; |
|
454 | + case EE_System::req_type_downgrade: |
|
455 | + do_action('AHEE__EE_System__detect_if_activation_or_upgrade__downgrade'); |
|
456 | + // its possible migrations are no longer required |
|
457 | + $this->maintenance_mode->set_maintenance_mode_if_db_old(); |
|
458 | + $this->_handle_core_version_change($espresso_db_update); |
|
459 | + break; |
|
460 | + case EE_System::req_type_normal: |
|
461 | + default: |
|
462 | + break; |
|
463 | + } |
|
464 | + do_action('AHEE__EE_System__detect_if_activation_or_upgrade__complete'); |
|
465 | + } |
|
466 | + |
|
467 | + |
|
468 | + /** |
|
469 | + * Updates the list of installed versions and sets hooks for |
|
470 | + * initializing the database later during the request |
|
471 | + * |
|
472 | + * @param array $espresso_db_update |
|
473 | + */ |
|
474 | + private function _handle_core_version_change($espresso_db_update) |
|
475 | + { |
|
476 | + $this->update_list_of_installed_versions($espresso_db_update); |
|
477 | + // get ready to verify the DB is ok (provided we aren't in maintenance mode, of course) |
|
478 | + add_action( |
|
479 | + 'AHEE__EE_System__perform_activations_upgrades_and_migrations', |
|
480 | + array($this, 'initialize_db_if_no_migrations_required') |
|
481 | + ); |
|
482 | + } |
|
483 | + |
|
484 | + |
|
485 | + /** |
|
486 | + * standardizes the wp option 'espresso_db_upgrade' which actually stores |
|
487 | + * information about what versions of EE have been installed and activated, |
|
488 | + * NOT necessarily the state of the database |
|
489 | + * |
|
490 | + * @param mixed $espresso_db_update the value of the WordPress option. |
|
491 | + * If not supplied, fetches it from the options table |
|
492 | + * @return array the correct value of 'espresso_db_upgrade', after saving it, if it needed correction |
|
493 | + */ |
|
494 | + private function fix_espresso_db_upgrade_option($espresso_db_update = null) |
|
495 | + { |
|
496 | + do_action('FHEE__EE_System__manage_fix_espresso_db_upgrade_option__begin', $espresso_db_update); |
|
497 | + if (! $espresso_db_update) { |
|
498 | + $espresso_db_update = get_option('espresso_db_update'); |
|
499 | + } |
|
500 | + // check that option is an array |
|
501 | + if (! is_array($espresso_db_update)) { |
|
502 | + // if option is FALSE, then it never existed |
|
503 | + if ($espresso_db_update === false) { |
|
504 | + // make $espresso_db_update an array and save option with autoload OFF |
|
505 | + $espresso_db_update = array(); |
|
506 | + add_option('espresso_db_update', $espresso_db_update, '', 'no'); |
|
507 | + } else { |
|
508 | + // option is NOT FALSE but also is NOT an array, so make it an array and save it |
|
509 | + $espresso_db_update = array($espresso_db_update => array()); |
|
510 | + update_option('espresso_db_update', $espresso_db_update); |
|
511 | + } |
|
512 | + } else { |
|
513 | + $corrected_db_update = array(); |
|
514 | + // if IS an array, but is it an array where KEYS are version numbers, and values are arrays? |
|
515 | + foreach ($espresso_db_update as $should_be_version_string => $should_be_array) { |
|
516 | + if (is_int($should_be_version_string) && ! is_array($should_be_array)) { |
|
517 | + // the key is an int, and the value IS NOT an array |
|
518 | + // so it must be numerically-indexed, where values are versions installed... |
|
519 | + // fix it! |
|
520 | + $version_string = $should_be_array; |
|
521 | + $corrected_db_update[ $version_string ] = array('unknown-date'); |
|
522 | + } else { |
|
523 | + // ok it checks out |
|
524 | + $corrected_db_update[ $should_be_version_string ] = $should_be_array; |
|
525 | + } |
|
526 | + } |
|
527 | + $espresso_db_update = $corrected_db_update; |
|
528 | + update_option('espresso_db_update', $espresso_db_update); |
|
529 | + } |
|
530 | + do_action('FHEE__EE_System__manage_fix_espresso_db_upgrade_option__complete', $espresso_db_update); |
|
531 | + return $espresso_db_update; |
|
532 | + } |
|
533 | + |
|
534 | + |
|
535 | + /** |
|
536 | + * Does the traditional work of setting up the plugin's database and adding default data. |
|
537 | + * If migration script/process did not exist, this is what would happen on every activation/reactivation/upgrade. |
|
538 | + * NOTE: if we're in maintenance mode (which would be the case if we detect there are data |
|
539 | + * migration scripts that need to be run and a version change happens), enqueues core for database initialization, |
|
540 | + * so that it will be done when migrations are finished |
|
541 | + * |
|
542 | + * @param boolean $initialize_addons_too if true, we double-check addons' database tables etc too; |
|
543 | + * @param boolean $verify_schema if true will re-check the database tables have the correct schema. |
|
544 | + * This is a resource-intensive job |
|
545 | + * so we prefer to only do it when necessary |
|
546 | + * @return void |
|
547 | + * @throws EE_Error |
|
548 | + */ |
|
549 | + public function initialize_db_if_no_migrations_required($initialize_addons_too = false, $verify_schema = true) |
|
550 | + { |
|
551 | + $request_type = $this->detect_req_type(); |
|
552 | + // only initialize system if we're not in maintenance mode. |
|
553 | + if ($this->maintenance_mode->level() !== EE_Maintenance_Mode::level_2_complete_maintenance) { |
|
554 | + /** @var EventEspresso\core\domain\services\custom_post_types\RewriteRules $rewrite_rules */ |
|
555 | + $rewrite_rules = $this->loader->getShared( |
|
556 | + 'EventEspresso\core\domain\services\custom_post_types\RewriteRules' |
|
557 | + ); |
|
558 | + $rewrite_rules->flush(); |
|
559 | + if ($verify_schema) { |
|
560 | + EEH_Activation::initialize_db_and_folders(); |
|
561 | + } |
|
562 | + EEH_Activation::initialize_db_content(); |
|
563 | + EEH_Activation::system_initialization(); |
|
564 | + if ($initialize_addons_too) { |
|
565 | + $this->initialize_addons(); |
|
566 | + } |
|
567 | + } else { |
|
568 | + EE_Data_Migration_Manager::instance()->enqueue_db_initialization_for('Core'); |
|
569 | + } |
|
570 | + if ($request_type === EE_System::req_type_new_activation |
|
571 | + || $request_type === EE_System::req_type_reactivation |
|
572 | + || ( |
|
573 | + $request_type === EE_System::req_type_upgrade |
|
574 | + && $this->is_major_version_change() |
|
575 | + ) |
|
576 | + ) { |
|
577 | + add_action('AHEE__EE_System__initialize_last', array($this, 'redirect_to_about_ee'), 9); |
|
578 | + } |
|
579 | + } |
|
580 | + |
|
581 | + |
|
582 | + /** |
|
583 | + * Initializes the db for all registered addons |
|
584 | + * |
|
585 | + * @throws EE_Error |
|
586 | + */ |
|
587 | + public function initialize_addons() |
|
588 | + { |
|
589 | + // foreach registered addon, make sure its db is up-to-date too |
|
590 | + foreach ($this->registry->addons as $addon) { |
|
591 | + if ($addon instanceof EE_Addon) { |
|
592 | + $addon->initialize_db_if_no_migrations_required(); |
|
593 | + } |
|
594 | + } |
|
595 | + } |
|
596 | + |
|
597 | + |
|
598 | + /** |
|
599 | + * Adds the current code version to the saved wp option which stores a list of all ee versions ever installed. |
|
600 | + * |
|
601 | + * @param array $version_history |
|
602 | + * @param string $current_version_to_add version to be added to the version history |
|
603 | + * @return boolean success as to whether or not this option was changed |
|
604 | + */ |
|
605 | + public function update_list_of_installed_versions($version_history = null, $current_version_to_add = null) |
|
606 | + { |
|
607 | + if (! $version_history) { |
|
608 | + $version_history = $this->fix_espresso_db_upgrade_option($version_history); |
|
609 | + } |
|
610 | + if ($current_version_to_add === null) { |
|
611 | + $current_version_to_add = espresso_version(); |
|
612 | + } |
|
613 | + $version_history[ $current_version_to_add ][] = date('Y-m-d H:i:s', time()); |
|
614 | + // re-save |
|
615 | + return update_option('espresso_db_update', $version_history); |
|
616 | + } |
|
617 | + |
|
618 | + |
|
619 | + /** |
|
620 | + * Detects if the current version indicated in the has existed in the list of |
|
621 | + * previously-installed versions of EE (espresso_db_update). Does NOT modify it (ie, no side-effect) |
|
622 | + * |
|
623 | + * @param array $espresso_db_update array from the wp option stored under the name 'espresso_db_update'. |
|
624 | + * If not supplied, fetches it from the options table. |
|
625 | + * Also, caches its result so later parts of the code can also know whether |
|
626 | + * there's been an update or not. This way we can add the current version to |
|
627 | + * espresso_db_update, but still know if this is a new install or not |
|
628 | + * @return int one of the constants on EE_System::req_type_ |
|
629 | + */ |
|
630 | + public function detect_req_type($espresso_db_update = null) |
|
631 | + { |
|
632 | + if ($this->_req_type === null) { |
|
633 | + $espresso_db_update = ! empty($espresso_db_update) |
|
634 | + ? $espresso_db_update |
|
635 | + : $this->fix_espresso_db_upgrade_option(); |
|
636 | + $this->_req_type = EE_System::detect_req_type_given_activation_history( |
|
637 | + $espresso_db_update, |
|
638 | + 'ee_espresso_activation', |
|
639 | + espresso_version() |
|
640 | + ); |
|
641 | + $this->_major_version_change = $this->_detect_major_version_change($espresso_db_update); |
|
642 | + $this->request->setIsActivation($this->_req_type !== EE_System::req_type_normal); |
|
643 | + } |
|
644 | + return $this->_req_type; |
|
645 | + } |
|
646 | + |
|
647 | + |
|
648 | + /** |
|
649 | + * Returns whether or not there was a non-micro version change (ie, change in either |
|
650 | + * the first or second number in the version. Eg 4.9.0.rc.001 to 4.10.0.rc.000, |
|
651 | + * but not 4.9.0.rc.0001 to 4.9.1.rc.0001 |
|
652 | + * |
|
653 | + * @param $activation_history |
|
654 | + * @return bool |
|
655 | + */ |
|
656 | + private function _detect_major_version_change($activation_history) |
|
657 | + { |
|
658 | + $previous_version = EE_System::_get_most_recently_active_version_from_activation_history($activation_history); |
|
659 | + $previous_version_parts = explode('.', $previous_version); |
|
660 | + $current_version_parts = explode('.', espresso_version()); |
|
661 | + return isset($previous_version_parts[0], $previous_version_parts[1], $current_version_parts[0], $current_version_parts[1]) |
|
662 | + && ($previous_version_parts[0] !== $current_version_parts[0] |
|
663 | + || $previous_version_parts[1] !== $current_version_parts[1] |
|
664 | + ); |
|
665 | + } |
|
666 | + |
|
667 | + |
|
668 | + /** |
|
669 | + * Returns true if either the major or minor version of EE changed during this request. |
|
670 | + * Eg 4.9.0.rc.001 to 4.10.0.rc.000, but not 4.9.0.rc.0001 to 4.9.1.rc.0001 |
|
671 | + * |
|
672 | + * @return bool |
|
673 | + */ |
|
674 | + public function is_major_version_change() |
|
675 | + { |
|
676 | + return $this->_major_version_change; |
|
677 | + } |
|
678 | + |
|
679 | + |
|
680 | + /** |
|
681 | + * Determines the request type for any ee addon, given three piece of info: the current array of activation |
|
682 | + * histories (for core that' 'espresso_db_update' wp option); the name of the WordPress option which is temporarily |
|
683 | + * set upon activation of the plugin (for core it's 'ee_espresso_activation'); and the version that this plugin was |
|
684 | + * just activated to (for core that will always be espresso_version()) |
|
685 | + * |
|
686 | + * @param array $activation_history_for_addon the option's value which stores the activation history for this |
|
687 | + * ee plugin. for core that's 'espresso_db_update' |
|
688 | + * @param string $activation_indicator_option_name the name of the WordPress option that is temporarily set to |
|
689 | + * indicate that this plugin was just activated |
|
690 | + * @param string $version_to_upgrade_to the version that was just upgraded to (for core that will be |
|
691 | + * espresso_version()) |
|
692 | + * @return int one of the constants on EE_System::req_type_* |
|
693 | + */ |
|
694 | + public static function detect_req_type_given_activation_history( |
|
695 | + $activation_history_for_addon, |
|
696 | + $activation_indicator_option_name, |
|
697 | + $version_to_upgrade_to |
|
698 | + ) { |
|
699 | + $version_is_higher = self::_new_version_is_higher($activation_history_for_addon, $version_to_upgrade_to); |
|
700 | + if ($activation_history_for_addon) { |
|
701 | + // it exists, so this isn't a completely new install |
|
702 | + // check if this version already in that list of previously installed versions |
|
703 | + if (! isset($activation_history_for_addon[ $version_to_upgrade_to ])) { |
|
704 | + // it a version we haven't seen before |
|
705 | + if ($version_is_higher === 1) { |
|
706 | + $req_type = EE_System::req_type_upgrade; |
|
707 | + } else { |
|
708 | + $req_type = EE_System::req_type_downgrade; |
|
709 | + } |
|
710 | + delete_option($activation_indicator_option_name); |
|
711 | + } else { |
|
712 | + // its not an update. maybe a reactivation? |
|
713 | + if (get_option($activation_indicator_option_name, false)) { |
|
714 | + if ($version_is_higher === -1) { |
|
715 | + $req_type = EE_System::req_type_downgrade; |
|
716 | + } elseif ($version_is_higher === 0) { |
|
717 | + // we've seen this version before, but it's an activation. must be a reactivation |
|
718 | + $req_type = EE_System::req_type_reactivation; |
|
719 | + } else {// $version_is_higher === 1 |
|
720 | + $req_type = EE_System::req_type_upgrade; |
|
721 | + } |
|
722 | + delete_option($activation_indicator_option_name); |
|
723 | + } else { |
|
724 | + // we've seen this version before and the activation indicate doesn't show it was just activated |
|
725 | + if ($version_is_higher === -1) { |
|
726 | + $req_type = EE_System::req_type_downgrade; |
|
727 | + } elseif ($version_is_higher === 0) { |
|
728 | + // we've seen this version before and it's not an activation. its normal request |
|
729 | + $req_type = EE_System::req_type_normal; |
|
730 | + } else {// $version_is_higher === 1 |
|
731 | + $req_type = EE_System::req_type_upgrade; |
|
732 | + } |
|
733 | + } |
|
734 | + } |
|
735 | + } else { |
|
736 | + // brand new install |
|
737 | + $req_type = EE_System::req_type_new_activation; |
|
738 | + delete_option($activation_indicator_option_name); |
|
739 | + } |
|
740 | + return $req_type; |
|
741 | + } |
|
742 | + |
|
743 | + |
|
744 | + /** |
|
745 | + * Detects if the $version_to_upgrade_to is higher than the most recent version in |
|
746 | + * the $activation_history_for_addon |
|
747 | + * |
|
748 | + * @param array $activation_history_for_addon (keys are versions, values are arrays of times activated, |
|
749 | + * sometimes containing 'unknown-date' |
|
750 | + * @param string $version_to_upgrade_to (current version) |
|
751 | + * @return int results of version_compare( $version_to_upgrade_to, $most_recently_active_version ). |
|
752 | + * ie, -1 if $version_to_upgrade_to is LOWER (downgrade); |
|
753 | + * 0 if $version_to_upgrade_to MATCHES (reactivation or normal request); |
|
754 | + * 1 if $version_to_upgrade_to is HIGHER (upgrade) ; |
|
755 | + */ |
|
756 | + private static function _new_version_is_higher($activation_history_for_addon, $version_to_upgrade_to) |
|
757 | + { |
|
758 | + // find the most recently-activated version |
|
759 | + $most_recently_active_version = |
|
760 | + EE_System::_get_most_recently_active_version_from_activation_history($activation_history_for_addon); |
|
761 | + return version_compare($version_to_upgrade_to, $most_recently_active_version); |
|
762 | + } |
|
763 | + |
|
764 | + |
|
765 | + /** |
|
766 | + * Gets the most recently active version listed in the activation history, |
|
767 | + * and if none are found (ie, it's a brand new install) returns '0.0.0.dev.000'. |
|
768 | + * |
|
769 | + * @param array $activation_history (keys are versions, values are arrays of times activated, |
|
770 | + * sometimes containing 'unknown-date' |
|
771 | + * @return string |
|
772 | + */ |
|
773 | + private static function _get_most_recently_active_version_from_activation_history($activation_history) |
|
774 | + { |
|
775 | + $most_recently_active_version_activation = '1970-01-01 00:00:00'; |
|
776 | + $most_recently_active_version = '0.0.0.dev.000'; |
|
777 | + if (is_array($activation_history)) { |
|
778 | + foreach ($activation_history as $version => $times_activated) { |
|
779 | + // check there is a record of when this version was activated. Otherwise, |
|
780 | + // mark it as unknown |
|
781 | + if (! $times_activated) { |
|
782 | + $times_activated = array('unknown-date'); |
|
783 | + } |
|
784 | + if (is_string($times_activated)) { |
|
785 | + $times_activated = array($times_activated); |
|
786 | + } |
|
787 | + foreach ($times_activated as $an_activation) { |
|
788 | + if ($an_activation !== 'unknown-date' |
|
789 | + && $an_activation |
|
790 | + > $most_recently_active_version_activation) { |
|
791 | + $most_recently_active_version = $version; |
|
792 | + $most_recently_active_version_activation = $an_activation === 'unknown-date' |
|
793 | + ? '1970-01-01 00:00:00' |
|
794 | + : $an_activation; |
|
795 | + } |
|
796 | + } |
|
797 | + } |
|
798 | + } |
|
799 | + return $most_recently_active_version; |
|
800 | + } |
|
801 | + |
|
802 | + |
|
803 | + /** |
|
804 | + * This redirects to the about EE page after activation |
|
805 | + * |
|
806 | + * @return void |
|
807 | + */ |
|
808 | + public function redirect_to_about_ee() |
|
809 | + { |
|
810 | + $notices = EE_Error::get_notices(false); |
|
811 | + // if current user is an admin and it's not an ajax or rest request |
|
812 | + if (! isset($notices['errors']) |
|
813 | + && $this->request->isAdmin() |
|
814 | + && apply_filters( |
|
815 | + 'FHEE__EE_System__redirect_to_about_ee__do_redirect', |
|
816 | + $this->capabilities->current_user_can('manage_options', 'espresso_about_default') |
|
817 | + ) |
|
818 | + ) { |
|
819 | + $query_params = array('page' => 'espresso_about'); |
|
820 | + if (EE_System::instance()->detect_req_type() === EE_System::req_type_new_activation) { |
|
821 | + $query_params['new_activation'] = true; |
|
822 | + } |
|
823 | + if (EE_System::instance()->detect_req_type() === EE_System::req_type_reactivation) { |
|
824 | + $query_params['reactivation'] = true; |
|
825 | + } |
|
826 | + $url = add_query_arg($query_params, admin_url('admin.php')); |
|
827 | + wp_safe_redirect($url); |
|
828 | + exit(); |
|
829 | + } |
|
830 | + } |
|
831 | + |
|
832 | + |
|
833 | + /** |
|
834 | + * load_core_configuration |
|
835 | + * this is hooked into 'AHEE__EE_Bootstrap__load_core_configuration' |
|
836 | + * which runs during the WP 'plugins_loaded' action at priority 5 |
|
837 | + * |
|
838 | + * @return void |
|
839 | + * @throws ReflectionException |
|
840 | + */ |
|
841 | + public function load_core_configuration() |
|
842 | + { |
|
843 | + do_action('AHEE__EE_System__load_core_configuration__begin', $this); |
|
844 | + $this->loader->getShared('EE_Load_Textdomain'); |
|
845 | + // load textdomain |
|
846 | + EE_Load_Textdomain::load_textdomain(); |
|
847 | + // load and setup EE_Config and EE_Network_Config |
|
848 | + $config = $this->loader->getShared('EE_Config'); |
|
849 | + $this->loader->getShared('EE_Network_Config'); |
|
850 | + // setup autoloaders |
|
851 | + // enable logging? |
|
852 | + if ($config->admin->use_full_logging) { |
|
853 | + $this->loader->getShared('EE_Log'); |
|
854 | + } |
|
855 | + // check for activation errors |
|
856 | + $activation_errors = get_option('ee_plugin_activation_errors', false); |
|
857 | + if ($activation_errors) { |
|
858 | + EE_Error::add_error($activation_errors, __FILE__, __FUNCTION__, __LINE__); |
|
859 | + update_option('ee_plugin_activation_errors', false); |
|
860 | + } |
|
861 | + // get model names |
|
862 | + $this->_parse_model_names(); |
|
863 | + // load caf stuff a chance to play during the activation process too. |
|
864 | + $this->_maybe_brew_regular(); |
|
865 | + // configure custom post type definitions |
|
866 | + $this->loader->getShared('EventEspresso\core\domain\entities\custom_post_types\CustomTaxonomyDefinitions'); |
|
867 | + $this->loader->getShared('EventEspresso\core\domain\entities\custom_post_types\CustomPostTypeDefinitions'); |
|
868 | + do_action('AHEE__EE_System__load_core_configuration__complete', $this); |
|
869 | + } |
|
870 | + |
|
871 | + |
|
872 | + /** |
|
873 | + * cycles through all of the models/*.model.php files, and assembles an array of model names |
|
874 | + * |
|
875 | + * @return void |
|
876 | + * @throws ReflectionException |
|
877 | + */ |
|
878 | + private function _parse_model_names() |
|
879 | + { |
|
880 | + // get all the files in the EE_MODELS folder that end in .model.php |
|
881 | + $models = glob(EE_MODELS . '*.model.php'); |
|
882 | + $model_names = array(); |
|
883 | + $non_abstract_db_models = array(); |
|
884 | + foreach ($models as $model) { |
|
885 | + // get model classname |
|
886 | + $classname = EEH_File::get_classname_from_filepath_with_standard_filename($model); |
|
887 | + $short_name = str_replace('EEM_', '', $classname); |
|
888 | + $reflectionClass = new ReflectionClass($classname); |
|
889 | + if ($reflectionClass->isSubclassOf('EEM_Base') && ! $reflectionClass->isAbstract()) { |
|
890 | + $non_abstract_db_models[ $short_name ] = $classname; |
|
891 | + } |
|
892 | + $model_names[ $short_name ] = $classname; |
|
893 | + } |
|
894 | + $this->registry->models = apply_filters('FHEE__EE_System__parse_model_names', $model_names); |
|
895 | + $this->registry->non_abstract_db_models = apply_filters( |
|
896 | + 'FHEE__EE_System__parse_implemented_model_names', |
|
897 | + $non_abstract_db_models |
|
898 | + ); |
|
899 | + } |
|
900 | + |
|
901 | + |
|
902 | + /** |
|
903 | + * The purpose of this method is to simply check for a file named "caffeinated/brewing_regular.php" for any hooks |
|
904 | + * that need to be setup before our EE_System launches. |
|
905 | + * |
|
906 | + * @return void |
|
907 | + * @throws DomainException |
|
908 | + * @throws InvalidArgumentException |
|
909 | + * @throws InvalidDataTypeException |
|
910 | + * @throws InvalidInterfaceException |
|
911 | + * @throws InvalidClassException |
|
912 | + * @throws InvalidFilePathException |
|
913 | + */ |
|
914 | + private function _maybe_brew_regular() |
|
915 | + { |
|
916 | + /** @var Domain $domain */ |
|
917 | + $domain = DomainFactory::getShared( |
|
918 | + new FullyQualifiedName( |
|
919 | + 'EventEspresso\core\domain\Domain' |
|
920 | + ), |
|
921 | + array( |
|
922 | + new FilePath(EVENT_ESPRESSO_MAIN_FILE), |
|
923 | + Version::fromString(espresso_version()), |
|
924 | + ) |
|
925 | + ); |
|
926 | + if ($domain->isCaffeinated()) { |
|
927 | + require_once EE_CAFF_PATH . 'brewing_regular.php'; |
|
928 | + } |
|
929 | + } |
|
930 | + |
|
931 | + |
|
932 | + /** |
|
933 | + * register_shortcodes_modules_and_widgets |
|
934 | + * generate lists of shortcodes and modules, then verify paths and classes |
|
935 | + * This is hooked into 'AHEE__EE_Bootstrap__register_shortcodes_modules_and_widgets' |
|
936 | + * which runs during the WP 'plugins_loaded' action at priority 7 |
|
937 | + * |
|
938 | + * @access public |
|
939 | + * @return void |
|
940 | + * @throws Exception |
|
941 | + */ |
|
942 | + public function register_shortcodes_modules_and_widgets() |
|
943 | + { |
|
944 | + if ($this->request->isFrontend() || $this->request->isIframe()) { |
|
945 | + try { |
|
946 | + // load, register, and add shortcodes the new way |
|
947 | + $this->loader->getShared( |
|
948 | + 'EventEspresso\core\services\shortcodes\ShortcodesManager', |
|
949 | + array( |
|
950 | + // and the old way, but we'll put it under control of the new system |
|
951 | + EE_Config::getLegacyShortcodesManager(), |
|
952 | + ) |
|
953 | + ); |
|
954 | + } catch (Exception $exception) { |
|
955 | + new ExceptionStackTraceDisplay($exception); |
|
956 | + } |
|
957 | + } |
|
958 | + do_action('AHEE__EE_System__register_shortcodes_modules_and_widgets'); |
|
959 | + // check for addons using old hook point |
|
960 | + if (has_action('AHEE__EE_System__register_shortcodes_modules_and_addons')) { |
|
961 | + $this->_incompatible_addon_error(); |
|
962 | + } |
|
963 | + } |
|
964 | + |
|
965 | + |
|
966 | + /** |
|
967 | + * _incompatible_addon_error |
|
968 | + * |
|
969 | + * @access public |
|
970 | + * @return void |
|
971 | + */ |
|
972 | + private function _incompatible_addon_error() |
|
973 | + { |
|
974 | + // get array of classes hooking into here |
|
975 | + $class_names = EEH_Class_Tools::get_class_names_for_all_callbacks_on_hook( |
|
976 | + 'AHEE__EE_System__register_shortcodes_modules_and_addons' |
|
977 | + ); |
|
978 | + if (! empty($class_names)) { |
|
979 | + $msg = __( |
|
980 | + 'The following plugins, addons, or modules appear to be incompatible with this version of Event Espresso and were automatically deactivated to avoid fatal errors:', |
|
981 | + 'event_espresso' |
|
982 | + ); |
|
983 | + $msg .= '<ul>'; |
|
984 | + foreach ($class_names as $class_name) { |
|
985 | + $msg .= '<li><b>Event Espresso - ' |
|
986 | + . str_replace( |
|
987 | + array('EE_', 'EEM_', 'EED_', 'EES_', 'EEW_'), |
|
988 | + '', |
|
989 | + $class_name |
|
990 | + ) . '</b></li>'; |
|
991 | + } |
|
992 | + $msg .= '</ul>'; |
|
993 | + $msg .= __( |
|
994 | + 'Compatibility issues can be avoided and/or resolved by keeping addons and plugins updated to the latest version.', |
|
995 | + 'event_espresso' |
|
996 | + ); |
|
997 | + // save list of incompatible addons to wp-options for later use |
|
998 | + add_option('ee_incompatible_addons', $class_names, '', 'no'); |
|
999 | + if (is_admin()) { |
|
1000 | + EE_Error::add_error($msg, __FILE__, __FUNCTION__, __LINE__); |
|
1001 | + } |
|
1002 | + } |
|
1003 | + } |
|
1004 | + |
|
1005 | + |
|
1006 | + /** |
|
1007 | + * brew_espresso |
|
1008 | + * begins the process of setting hooks for initializing EE in the correct order |
|
1009 | + * This is happening on the 'AHEE__EE_Bootstrap__brew_espresso' hook point |
|
1010 | + * which runs during the WP 'plugins_loaded' action at priority 9 |
|
1011 | + * |
|
1012 | + * @return void |
|
1013 | + */ |
|
1014 | + public function brew_espresso() |
|
1015 | + { |
|
1016 | + do_action('AHEE__EE_System__brew_espresso__begin', $this); |
|
1017 | + // load some final core systems |
|
1018 | + add_action('init', array($this, 'set_hooks_for_core'), 1); |
|
1019 | + add_action('init', array($this, 'perform_activations_upgrades_and_migrations'), 3); |
|
1020 | + add_action('init', array($this, 'load_CPTs_and_session'), 5); |
|
1021 | + add_action('init', array($this, 'load_controllers'), 7); |
|
1022 | + add_action('init', array($this, 'core_loaded_and_ready'), 9); |
|
1023 | + add_action('init', array($this, 'initialize'), 10); |
|
1024 | + add_action('init', array($this, 'initialize_last'), 100); |
|
1025 | + if (is_admin() && apply_filters('FHEE__EE_System__brew_espresso__load_pue', true)) { |
|
1026 | + // pew pew pew |
|
1027 | + $this->loader->getShared('EventEspresso\core\services\licensing\LicenseService'); |
|
1028 | + do_action('AHEE__EE_System__brew_espresso__after_pue_init'); |
|
1029 | + } |
|
1030 | + do_action('AHEE__EE_System__brew_espresso__complete', $this); |
|
1031 | + } |
|
1032 | + |
|
1033 | + |
|
1034 | + /** |
|
1035 | + * set_hooks_for_core |
|
1036 | + * |
|
1037 | + * @access public |
|
1038 | + * @return void |
|
1039 | + * @throws EE_Error |
|
1040 | + */ |
|
1041 | + public function set_hooks_for_core() |
|
1042 | + { |
|
1043 | + $this->_deactivate_incompatible_addons(); |
|
1044 | + do_action('AHEE__EE_System__set_hooks_for_core'); |
|
1045 | + $this->loader->getShared('EventEspresso\core\domain\values\session\SessionLifespan'); |
|
1046 | + // caps need to be initialized on every request so that capability maps are set. |
|
1047 | + // @see https://events.codebasehq.com/projects/event-espresso/tickets/8674 |
|
1048 | + $this->registry->CAP->init_caps(); |
|
1049 | + } |
|
1050 | + |
|
1051 | + |
|
1052 | + /** |
|
1053 | + * Using the information gathered in EE_System::_incompatible_addon_error, |
|
1054 | + * deactivates any addons considered incompatible with the current version of EE |
|
1055 | + */ |
|
1056 | + private function _deactivate_incompatible_addons() |
|
1057 | + { |
|
1058 | + $incompatible_addons = get_option('ee_incompatible_addons', array()); |
|
1059 | + if (! empty($incompatible_addons)) { |
|
1060 | + $active_plugins = get_option('active_plugins', array()); |
|
1061 | + foreach ($active_plugins as $active_plugin) { |
|
1062 | + foreach ($incompatible_addons as $incompatible_addon) { |
|
1063 | + if (strpos($active_plugin, $incompatible_addon) !== false) { |
|
1064 | + unset($_GET['activate']); |
|
1065 | + espresso_deactivate_plugin($active_plugin); |
|
1066 | + } |
|
1067 | + } |
|
1068 | + } |
|
1069 | + } |
|
1070 | + } |
|
1071 | + |
|
1072 | + |
|
1073 | + /** |
|
1074 | + * perform_activations_upgrades_and_migrations |
|
1075 | + * |
|
1076 | + * @access public |
|
1077 | + * @return void |
|
1078 | + */ |
|
1079 | + public function perform_activations_upgrades_and_migrations() |
|
1080 | + { |
|
1081 | + do_action('AHEE__EE_System__perform_activations_upgrades_and_migrations'); |
|
1082 | + } |
|
1083 | + |
|
1084 | + |
|
1085 | + /** |
|
1086 | + * @return void |
|
1087 | + * @throws DomainException |
|
1088 | + */ |
|
1089 | + public function load_CPTs_and_session() |
|
1090 | + { |
|
1091 | + do_action('AHEE__EE_System__load_CPTs_and_session__start'); |
|
1092 | + /** @var EventEspresso\core\domain\services\custom_post_types\RegisterCustomTaxonomies $register_custom_taxonomies */ |
|
1093 | + $register_custom_taxonomies = $this->loader->getShared( |
|
1094 | + 'EventEspresso\core\domain\services\custom_post_types\RegisterCustomTaxonomies' |
|
1095 | + ); |
|
1096 | + $register_custom_taxonomies->registerCustomTaxonomies(); |
|
1097 | + /** @var EventEspresso\core\domain\services\custom_post_types\RegisterCustomPostTypes $register_custom_post_types */ |
|
1098 | + $register_custom_post_types = $this->loader->getShared( |
|
1099 | + 'EventEspresso\core\domain\services\custom_post_types\RegisterCustomPostTypes' |
|
1100 | + ); |
|
1101 | + $register_custom_post_types->registerCustomPostTypes(); |
|
1102 | + /** @var EventEspresso\core\domain\services\custom_post_types\RegisterCustomTaxonomyTerms $register_custom_taxonomy_terms */ |
|
1103 | + $register_custom_taxonomy_terms = $this->loader->getShared( |
|
1104 | + 'EventEspresso\core\domain\services\custom_post_types\RegisterCustomTaxonomyTerms' |
|
1105 | + ); |
|
1106 | + $register_custom_taxonomy_terms->registerCustomTaxonomyTerms(); |
|
1107 | + // load legacy Custom Post Types and Taxonomies |
|
1108 | + $this->loader->getShared('EE_Register_CPTs'); |
|
1109 | + do_action('AHEE__EE_System__load_CPTs_and_session__complete'); |
|
1110 | + } |
|
1111 | + |
|
1112 | + |
|
1113 | + /** |
|
1114 | + * load_controllers |
|
1115 | + * this is the best place to load any additional controllers that needs access to EE core. |
|
1116 | + * it is expected that all basic core EE systems, that are not dependant on the current request are loaded at this |
|
1117 | + * time |
|
1118 | + * |
|
1119 | + * @access public |
|
1120 | + * @return void |
|
1121 | + */ |
|
1122 | + public function load_controllers() |
|
1123 | + { |
|
1124 | + do_action('AHEE__EE_System__load_controllers__start'); |
|
1125 | + // let's get it started |
|
1126 | + if (! $this->maintenance_mode->level() |
|
1127 | + && ($this->request->isFrontend() || $this->request->isFrontAjax()) |
|
1128 | + ) { |
|
1129 | + do_action('AHEE__EE_System__load_controllers__load_front_controllers'); |
|
1130 | + $this->loader->getShared('EE_Front_Controller'); |
|
1131 | + } elseif ($this->request->isAdmin() || $this->request->isAdminAjax()) { |
|
1132 | + do_action('AHEE__EE_System__load_controllers__load_admin_controllers'); |
|
1133 | + $this->loader->getShared('EE_Admin'); |
|
1134 | + } |
|
1135 | + do_action('AHEE__EE_System__load_controllers__complete'); |
|
1136 | + } |
|
1137 | + |
|
1138 | + |
|
1139 | + /** |
|
1140 | + * core_loaded_and_ready |
|
1141 | + * all of the basic EE core should be loaded at this point and available regardless of M-Mode |
|
1142 | + * |
|
1143 | + * @access public |
|
1144 | + * @return void |
|
1145 | + */ |
|
1146 | + public function core_loaded_and_ready() |
|
1147 | + { |
|
1148 | + if ($this->request->isAdmin() |
|
1149 | + || $this->request->isEeAjax() |
|
1150 | + || $this->request->isFrontend() |
|
1151 | + ) { |
|
1152 | + $this->loader->getShared('EE_Session'); |
|
1153 | + } |
|
1154 | + do_action('AHEE__EE_System__core_loaded_and_ready'); |
|
1155 | + // load_espresso_template_tags |
|
1156 | + if (is_readable(EE_PUBLIC . 'template_tags.php') |
|
1157 | + && ($this->request->isFrontend() || $this->request->isIframe() || $this->request->isFeed()) |
|
1158 | + ) { |
|
1159 | + require_once EE_PUBLIC . 'template_tags.php'; |
|
1160 | + } |
|
1161 | + do_action('AHEE__EE_System__set_hooks_for_shortcodes_modules_and_addons'); |
|
1162 | + if ($this->request->isAdmin() || $this->request->isFrontend() || $this->request->isIframe()) { |
|
1163 | + $this->loader->getShared('EventEspresso\core\services\assets\Registry'); |
|
1164 | + } |
|
1165 | + } |
|
1166 | + |
|
1167 | + |
|
1168 | + /** |
|
1169 | + * initialize |
|
1170 | + * this is the best place to begin initializing client code |
|
1171 | + * |
|
1172 | + * @access public |
|
1173 | + * @return void |
|
1174 | + */ |
|
1175 | + public function initialize() |
|
1176 | + { |
|
1177 | + do_action('AHEE__EE_System__initialize'); |
|
1178 | + } |
|
1179 | + |
|
1180 | + |
|
1181 | + /** |
|
1182 | + * initialize_last |
|
1183 | + * this is run really late during the WP init hook point, and ensures that mostly everything else that needs to |
|
1184 | + * initialize has done so |
|
1185 | + * |
|
1186 | + * @access public |
|
1187 | + * @return void |
|
1188 | + */ |
|
1189 | + public function initialize_last() |
|
1190 | + { |
|
1191 | + do_action('AHEE__EE_System__initialize_last'); |
|
1192 | + /** @var EventEspresso\core\domain\services\custom_post_types\RewriteRules $rewrite_rules */ |
|
1193 | + $rewrite_rules = $this->loader->getShared( |
|
1194 | + 'EventEspresso\core\domain\services\custom_post_types\RewriteRules' |
|
1195 | + ); |
|
1196 | + $rewrite_rules->flushRewriteRules(); |
|
1197 | + add_action('admin_bar_init', array($this, 'addEspressoToolbar')); |
|
1198 | + if($this->request->isAdmin() && function_exists('wp_add_privacy_policy_content')) { |
|
1199 | + $this->loader->getShared('EventEspresso\core\services\privacy\policy\PrivacyPolicyManager'); |
|
1200 | + } |
|
1201 | + } |
|
1202 | + |
|
1203 | + |
|
1204 | + /** |
|
1205 | + * @return void |
|
1206 | + * @throws EE_Error |
|
1207 | + */ |
|
1208 | + public function addEspressoToolbar() |
|
1209 | + { |
|
1210 | + $this->loader->getShared( |
|
1211 | + 'EventEspresso\core\domain\services\admin\AdminToolBar', |
|
1212 | + array($this->registry->CAP) |
|
1213 | + ); |
|
1214 | + } |
|
1215 | + |
|
1216 | + |
|
1217 | + /** |
|
1218 | + * do_not_cache |
|
1219 | + * sets no cache headers and defines no cache constants for WP plugins |
|
1220 | + * |
|
1221 | + * @access public |
|
1222 | + * @return void |
|
1223 | + */ |
|
1224 | + public static function do_not_cache() |
|
1225 | + { |
|
1226 | + // set no cache constants |
|
1227 | + if (! defined('DONOTCACHEPAGE')) { |
|
1228 | + define('DONOTCACHEPAGE', true); |
|
1229 | + } |
|
1230 | + if (! defined('DONOTCACHCEOBJECT')) { |
|
1231 | + define('DONOTCACHCEOBJECT', true); |
|
1232 | + } |
|
1233 | + if (! defined('DONOTCACHEDB')) { |
|
1234 | + define('DONOTCACHEDB', true); |
|
1235 | + } |
|
1236 | + // add no cache headers |
|
1237 | + add_action('send_headers', array('EE_System', 'nocache_headers'), 10); |
|
1238 | + // plus a little extra for nginx and Google Chrome |
|
1239 | + add_filter('nocache_headers', array('EE_System', 'extra_nocache_headers'), 10, 1); |
|
1240 | + // prevent browsers from prefetching of the rel='next' link, because it may contain content that interferes with the registration process |
|
1241 | + remove_action('wp_head', 'adjacent_posts_rel_link_wp_head'); |
|
1242 | + } |
|
1243 | + |
|
1244 | + |
|
1245 | + /** |
|
1246 | + * extra_nocache_headers |
|
1247 | + * |
|
1248 | + * @access public |
|
1249 | + * @param $headers |
|
1250 | + * @return array |
|
1251 | + */ |
|
1252 | + public static function extra_nocache_headers($headers) |
|
1253 | + { |
|
1254 | + // for NGINX |
|
1255 | + $headers['X-Accel-Expires'] = 0; |
|
1256 | + // plus extra for Google Chrome since it doesn't seem to respect "no-cache", but WILL respect "no-store" |
|
1257 | + $headers['Cache-Control'] = 'no-store, no-cache, must-revalidate, max-age=0'; |
|
1258 | + return $headers; |
|
1259 | + } |
|
1260 | + |
|
1261 | + |
|
1262 | + /** |
|
1263 | + * nocache_headers |
|
1264 | + * |
|
1265 | + * @access public |
|
1266 | + * @return void |
|
1267 | + */ |
|
1268 | + public static function nocache_headers() |
|
1269 | + { |
|
1270 | + nocache_headers(); |
|
1271 | + } |
|
1272 | + |
|
1273 | + |
|
1274 | + /** |
|
1275 | + * simply hooks into "wp_list_pages_exclude" filter (for wp_list_pages method) and makes sure EE critical pages are |
|
1276 | + * never returned with the function. |
|
1277 | + * |
|
1278 | + * @param array $exclude_array any existing pages being excluded are in this array. |
|
1279 | + * @return array |
|
1280 | + */ |
|
1281 | + public function remove_pages_from_wp_list_pages($exclude_array) |
|
1282 | + { |
|
1283 | + return array_merge($exclude_array, $this->registry->CFG->core->get_critical_pages_array()); |
|
1284 | + } |
|
1285 | 1285 | } |
@@ -143,7 +143,7 @@ discard block |
||
143 | 143 | EE_Maintenance_Mode $maintenance_mode = null |
144 | 144 | ) { |
145 | 145 | // check if class object is instantiated |
146 | - if (! self::$_instance instanceof EE_System) { |
|
146 | + if ( ! self::$_instance instanceof EE_System) { |
|
147 | 147 | self::$_instance = new self($registry, $loader, $request, $maintenance_mode); |
148 | 148 | } |
149 | 149 | return self::$_instance; |
@@ -260,7 +260,7 @@ discard block |
||
260 | 260 | $this->capabilities = $this->loader->getShared('EE_Capabilities'); |
261 | 261 | add_action( |
262 | 262 | 'AHEE__EE_Capabilities__init_caps__before_initialization', |
263 | - function () { |
|
263 | + function() { |
|
264 | 264 | LoaderFactory::getLoader()->getShared('EE_Payment_Method_Manager'); |
265 | 265 | } |
266 | 266 | ); |
@@ -301,7 +301,7 @@ discard block |
||
301 | 301 | { |
302 | 302 | // set autoloaders for all of the classes implementing EEI_Plugin_API |
303 | 303 | // which provide helpers for EE plugin authors to more easily register certain components with EE. |
304 | - EEH_Autoloader::instance()->register_autoloaders_for_each_file_in_folder(EE_LIBRARIES . 'plugin_api'); |
|
304 | + EEH_Autoloader::instance()->register_autoloaders_for_each_file_in_folder(EE_LIBRARIES.'plugin_api'); |
|
305 | 305 | $this->loader->getShared('EE_Request_Handler'); |
306 | 306 | } |
307 | 307 | |
@@ -321,14 +321,14 @@ discard block |
||
321 | 321 | $load_callback, |
322 | 322 | $plugin_file_constant |
323 | 323 | ) { |
324 | - if (! defined($version_constant)) { |
|
324 | + if ( ! defined($version_constant)) { |
|
325 | 325 | return; |
326 | 326 | } |
327 | 327 | $addon_version = constant($version_constant); |
328 | 328 | if ($addon_version && version_compare($addon_version, $min_version_required, '<')) { |
329 | 329 | remove_action('AHEE__EE_System__load_espresso_addons', $load_callback); |
330 | - if (! function_exists('deactivate_plugins')) { |
|
331 | - require_once ABSPATH . 'wp-admin/includes/plugin.php'; |
|
330 | + if ( ! function_exists('deactivate_plugins')) { |
|
331 | + require_once ABSPATH.'wp-admin/includes/plugin.php'; |
|
332 | 332 | } |
333 | 333 | deactivate_plugins(plugin_basename(constant($plugin_file_constant))); |
334 | 334 | unset($_GET['activate'], $_REQUEST['activate'], $_GET['activate-multi'], $_REQUEST['activate-multi']); |
@@ -342,7 +342,7 @@ discard block |
||
342 | 342 | $min_version_required |
343 | 343 | ), |
344 | 344 | __FILE__, |
345 | - __FUNCTION__ . "({$addon_name})", |
|
345 | + __FUNCTION__."({$addon_name})", |
|
346 | 346 | __LINE__ |
347 | 347 | ); |
348 | 348 | EE_Error::get_notices(false, true); |
@@ -392,7 +392,7 @@ discard block |
||
392 | 392 | true |
393 | 393 | ) |
394 | 394 | ) { |
395 | - include_once EE_THIRD_PARTY . 'wp-api-basic-auth' . DS . 'basic-auth.php'; |
|
395 | + include_once EE_THIRD_PARTY.'wp-api-basic-auth'.DS.'basic-auth.php'; |
|
396 | 396 | } |
397 | 397 | do_action('AHEE__EE_System__load_espresso_addons__complete'); |
398 | 398 | } |
@@ -494,11 +494,11 @@ discard block |
||
494 | 494 | private function fix_espresso_db_upgrade_option($espresso_db_update = null) |
495 | 495 | { |
496 | 496 | do_action('FHEE__EE_System__manage_fix_espresso_db_upgrade_option__begin', $espresso_db_update); |
497 | - if (! $espresso_db_update) { |
|
497 | + if ( ! $espresso_db_update) { |
|
498 | 498 | $espresso_db_update = get_option('espresso_db_update'); |
499 | 499 | } |
500 | 500 | // check that option is an array |
501 | - if (! is_array($espresso_db_update)) { |
|
501 | + if ( ! is_array($espresso_db_update)) { |
|
502 | 502 | // if option is FALSE, then it never existed |
503 | 503 | if ($espresso_db_update === false) { |
504 | 504 | // make $espresso_db_update an array and save option with autoload OFF |
@@ -518,10 +518,10 @@ discard block |
||
518 | 518 | // so it must be numerically-indexed, where values are versions installed... |
519 | 519 | // fix it! |
520 | 520 | $version_string = $should_be_array; |
521 | - $corrected_db_update[ $version_string ] = array('unknown-date'); |
|
521 | + $corrected_db_update[$version_string] = array('unknown-date'); |
|
522 | 522 | } else { |
523 | 523 | // ok it checks out |
524 | - $corrected_db_update[ $should_be_version_string ] = $should_be_array; |
|
524 | + $corrected_db_update[$should_be_version_string] = $should_be_array; |
|
525 | 525 | } |
526 | 526 | } |
527 | 527 | $espresso_db_update = $corrected_db_update; |
@@ -604,13 +604,13 @@ discard block |
||
604 | 604 | */ |
605 | 605 | public function update_list_of_installed_versions($version_history = null, $current_version_to_add = null) |
606 | 606 | { |
607 | - if (! $version_history) { |
|
607 | + if ( ! $version_history) { |
|
608 | 608 | $version_history = $this->fix_espresso_db_upgrade_option($version_history); |
609 | 609 | } |
610 | 610 | if ($current_version_to_add === null) { |
611 | 611 | $current_version_to_add = espresso_version(); |
612 | 612 | } |
613 | - $version_history[ $current_version_to_add ][] = date('Y-m-d H:i:s', time()); |
|
613 | + $version_history[$current_version_to_add][] = date('Y-m-d H:i:s', time()); |
|
614 | 614 | // re-save |
615 | 615 | return update_option('espresso_db_update', $version_history); |
616 | 616 | } |
@@ -700,7 +700,7 @@ discard block |
||
700 | 700 | if ($activation_history_for_addon) { |
701 | 701 | // it exists, so this isn't a completely new install |
702 | 702 | // check if this version already in that list of previously installed versions |
703 | - if (! isset($activation_history_for_addon[ $version_to_upgrade_to ])) { |
|
703 | + if ( ! isset($activation_history_for_addon[$version_to_upgrade_to])) { |
|
704 | 704 | // it a version we haven't seen before |
705 | 705 | if ($version_is_higher === 1) { |
706 | 706 | $req_type = EE_System::req_type_upgrade; |
@@ -778,7 +778,7 @@ discard block |
||
778 | 778 | foreach ($activation_history as $version => $times_activated) { |
779 | 779 | // check there is a record of when this version was activated. Otherwise, |
780 | 780 | // mark it as unknown |
781 | - if (! $times_activated) { |
|
781 | + if ( ! $times_activated) { |
|
782 | 782 | $times_activated = array('unknown-date'); |
783 | 783 | } |
784 | 784 | if (is_string($times_activated)) { |
@@ -809,7 +809,7 @@ discard block |
||
809 | 809 | { |
810 | 810 | $notices = EE_Error::get_notices(false); |
811 | 811 | // if current user is an admin and it's not an ajax or rest request |
812 | - if (! isset($notices['errors']) |
|
812 | + if ( ! isset($notices['errors']) |
|
813 | 813 | && $this->request->isAdmin() |
814 | 814 | && apply_filters( |
815 | 815 | 'FHEE__EE_System__redirect_to_about_ee__do_redirect', |
@@ -878,7 +878,7 @@ discard block |
||
878 | 878 | private function _parse_model_names() |
879 | 879 | { |
880 | 880 | // get all the files in the EE_MODELS folder that end in .model.php |
881 | - $models = glob(EE_MODELS . '*.model.php'); |
|
881 | + $models = glob(EE_MODELS.'*.model.php'); |
|
882 | 882 | $model_names = array(); |
883 | 883 | $non_abstract_db_models = array(); |
884 | 884 | foreach ($models as $model) { |
@@ -887,9 +887,9 @@ discard block |
||
887 | 887 | $short_name = str_replace('EEM_', '', $classname); |
888 | 888 | $reflectionClass = new ReflectionClass($classname); |
889 | 889 | if ($reflectionClass->isSubclassOf('EEM_Base') && ! $reflectionClass->isAbstract()) { |
890 | - $non_abstract_db_models[ $short_name ] = $classname; |
|
890 | + $non_abstract_db_models[$short_name] = $classname; |
|
891 | 891 | } |
892 | - $model_names[ $short_name ] = $classname; |
|
892 | + $model_names[$short_name] = $classname; |
|
893 | 893 | } |
894 | 894 | $this->registry->models = apply_filters('FHEE__EE_System__parse_model_names', $model_names); |
895 | 895 | $this->registry->non_abstract_db_models = apply_filters( |
@@ -924,7 +924,7 @@ discard block |
||
924 | 924 | ) |
925 | 925 | ); |
926 | 926 | if ($domain->isCaffeinated()) { |
927 | - require_once EE_CAFF_PATH . 'brewing_regular.php'; |
|
927 | + require_once EE_CAFF_PATH.'brewing_regular.php'; |
|
928 | 928 | } |
929 | 929 | } |
930 | 930 | |
@@ -975,7 +975,7 @@ discard block |
||
975 | 975 | $class_names = EEH_Class_Tools::get_class_names_for_all_callbacks_on_hook( |
976 | 976 | 'AHEE__EE_System__register_shortcodes_modules_and_addons' |
977 | 977 | ); |
978 | - if (! empty($class_names)) { |
|
978 | + if ( ! empty($class_names)) { |
|
979 | 979 | $msg = __( |
980 | 980 | 'The following plugins, addons, or modules appear to be incompatible with this version of Event Espresso and were automatically deactivated to avoid fatal errors:', |
981 | 981 | 'event_espresso' |
@@ -987,7 +987,7 @@ discard block |
||
987 | 987 | array('EE_', 'EEM_', 'EED_', 'EES_', 'EEW_'), |
988 | 988 | '', |
989 | 989 | $class_name |
990 | - ) . '</b></li>'; |
|
990 | + ).'</b></li>'; |
|
991 | 991 | } |
992 | 992 | $msg .= '</ul>'; |
993 | 993 | $msg .= __( |
@@ -1056,7 +1056,7 @@ discard block |
||
1056 | 1056 | private function _deactivate_incompatible_addons() |
1057 | 1057 | { |
1058 | 1058 | $incompatible_addons = get_option('ee_incompatible_addons', array()); |
1059 | - if (! empty($incompatible_addons)) { |
|
1059 | + if ( ! empty($incompatible_addons)) { |
|
1060 | 1060 | $active_plugins = get_option('active_plugins', array()); |
1061 | 1061 | foreach ($active_plugins as $active_plugin) { |
1062 | 1062 | foreach ($incompatible_addons as $incompatible_addon) { |
@@ -1123,7 +1123,7 @@ discard block |
||
1123 | 1123 | { |
1124 | 1124 | do_action('AHEE__EE_System__load_controllers__start'); |
1125 | 1125 | // let's get it started |
1126 | - if (! $this->maintenance_mode->level() |
|
1126 | + if ( ! $this->maintenance_mode->level() |
|
1127 | 1127 | && ($this->request->isFrontend() || $this->request->isFrontAjax()) |
1128 | 1128 | ) { |
1129 | 1129 | do_action('AHEE__EE_System__load_controllers__load_front_controllers'); |
@@ -1153,10 +1153,10 @@ discard block |
||
1153 | 1153 | } |
1154 | 1154 | do_action('AHEE__EE_System__core_loaded_and_ready'); |
1155 | 1155 | // load_espresso_template_tags |
1156 | - if (is_readable(EE_PUBLIC . 'template_tags.php') |
|
1156 | + if (is_readable(EE_PUBLIC.'template_tags.php') |
|
1157 | 1157 | && ($this->request->isFrontend() || $this->request->isIframe() || $this->request->isFeed()) |
1158 | 1158 | ) { |
1159 | - require_once EE_PUBLIC . 'template_tags.php'; |
|
1159 | + require_once EE_PUBLIC.'template_tags.php'; |
|
1160 | 1160 | } |
1161 | 1161 | do_action('AHEE__EE_System__set_hooks_for_shortcodes_modules_and_addons'); |
1162 | 1162 | if ($this->request->isAdmin() || $this->request->isFrontend() || $this->request->isIframe()) { |
@@ -1195,7 +1195,7 @@ discard block |
||
1195 | 1195 | ); |
1196 | 1196 | $rewrite_rules->flushRewriteRules(); |
1197 | 1197 | add_action('admin_bar_init', array($this, 'addEspressoToolbar')); |
1198 | - if($this->request->isAdmin() && function_exists('wp_add_privacy_policy_content')) { |
|
1198 | + if ($this->request->isAdmin() && function_exists('wp_add_privacy_policy_content')) { |
|
1199 | 1199 | $this->loader->getShared('EventEspresso\core\services\privacy\policy\PrivacyPolicyManager'); |
1200 | 1200 | } |
1201 | 1201 | } |
@@ -1224,13 +1224,13 @@ discard block |
||
1224 | 1224 | public static function do_not_cache() |
1225 | 1225 | { |
1226 | 1226 | // set no cache constants |
1227 | - if (! defined('DONOTCACHEPAGE')) { |
|
1227 | + if ( ! defined('DONOTCACHEPAGE')) { |
|
1228 | 1228 | define('DONOTCACHEPAGE', true); |
1229 | 1229 | } |
1230 | - if (! defined('DONOTCACHCEOBJECT')) { |
|
1230 | + if ( ! defined('DONOTCACHCEOBJECT')) { |
|
1231 | 1231 | define('DONOTCACHCEOBJECT', true); |
1232 | 1232 | } |
1233 | - if (! defined('DONOTCACHEDB')) { |
|
1233 | + if ( ! defined('DONOTCACHEDB')) { |
|
1234 | 1234 | define('DONOTCACHEDB', true); |
1235 | 1235 | } |
1236 | 1236 | // add no cache headers |
@@ -20,80 +20,80 @@ |
||
20 | 20 | class PrivacyPolicy implements PrivacyPolicyInterface |
21 | 21 | { |
22 | 22 | |
23 | - /** |
|
24 | - * @var EEM_Payment_Method |
|
25 | - */ |
|
26 | - protected $payment_method_model; |
|
23 | + /** |
|
24 | + * @var EEM_Payment_Method |
|
25 | + */ |
|
26 | + protected $payment_method_model; |
|
27 | 27 | |
28 | - /** |
|
29 | - * @var SessionLifespan |
|
30 | - */ |
|
31 | - protected $session_lifespan; |
|
28 | + /** |
|
29 | + * @var SessionLifespan |
|
30 | + */ |
|
31 | + protected $session_lifespan; |
|
32 | 32 | |
33 | - /** |
|
34 | - * PrivacyPolicy constructor. |
|
35 | - * |
|
36 | - * @param EEM_Payment_Method $payment_method_model |
|
37 | - * @param SessionLifespan $session_lifespan |
|
38 | - */ |
|
39 | - public function __construct(EEM_Payment_Method $payment_method_model, SessionLifespan $session_lifespan) |
|
40 | - { |
|
41 | - $this->payment_method_model = $payment_method_model; |
|
42 | - $this->session_lifespan = $session_lifespan; |
|
43 | - } |
|
33 | + /** |
|
34 | + * PrivacyPolicy constructor. |
|
35 | + * |
|
36 | + * @param EEM_Payment_Method $payment_method_model |
|
37 | + * @param SessionLifespan $session_lifespan |
|
38 | + */ |
|
39 | + public function __construct(EEM_Payment_Method $payment_method_model, SessionLifespan $session_lifespan) |
|
40 | + { |
|
41 | + $this->payment_method_model = $payment_method_model; |
|
42 | + $this->session_lifespan = $session_lifespan; |
|
43 | + } |
|
44 | 44 | |
45 | 45 | |
46 | - /** |
|
47 | - * Returns the name of the plugin and will be shown in the privacy policy's postbox header |
|
48 | - * |
|
49 | - * @return string |
|
50 | - */ |
|
51 | - public function getName() |
|
52 | - { |
|
53 | - return esc_html__('Event Espresso', 'event_espresso'); |
|
54 | - } |
|
46 | + /** |
|
47 | + * Returns the name of the plugin and will be shown in the privacy policy's postbox header |
|
48 | + * |
|
49 | + * @return string |
|
50 | + */ |
|
51 | + public function getName() |
|
52 | + { |
|
53 | + return esc_html__('Event Espresso', 'event_espresso'); |
|
54 | + } |
|
55 | 55 | |
56 | 56 | |
57 | - /** |
|
58 | - * Gets the HTML for the privacy policy. May be dynamic |
|
59 | - * |
|
60 | - * @return string |
|
61 | - */ |
|
62 | - public function getContent() |
|
63 | - { |
|
64 | - // do they have any offsite payment methods? or onsite payment methods? |
|
65 | - $active_payment_methods = $this->payment_method_model->get_all_active(EEM_Payment_Method::scope_cart); |
|
66 | - $active_onsite_pms = false; |
|
67 | - $active_offsite_pms = false; |
|
68 | - foreach ($active_payment_methods as $payment_method) { |
|
69 | - if ($payment_method->type_obj() instanceof \EE_PMT_Base) { |
|
70 | - if ($payment_method->type_obj()->get_gateway() instanceof EE_Onsite_Gateway) { |
|
71 | - $active_onsite_pms[] = $payment_method->name(); |
|
72 | - } elseif ($payment_method->type_obj()->get_gateway() instanceof EE_Offsite_Gateway) { |
|
73 | - $active_offsite_pms[] = $payment_method->name(); |
|
74 | - } |
|
75 | - } |
|
76 | - } |
|
77 | - $session_lifespan_in_hours = round($this->session_lifespan->inSeconds() / HOUR_IN_SECONDS); |
|
78 | - return (string) EEH_Template::display_template( |
|
79 | - __DIR__ . '/privacy_policy.template.php', |
|
80 | - array( |
|
81 | - 'active_onsite_payment_methods' => $active_onsite_pms, |
|
82 | - 'active_offsite_payment_methods' => $active_offsite_pms, |
|
83 | - 'session_lifespan' => sprintf( |
|
84 | - _nx( |
|
85 | - '%1$s hour', |
|
86 | - '%1$s hours', |
|
87 | - $session_lifespan_in_hours, |
|
88 | - '2 hours', |
|
89 | - 'event_espresso' |
|
90 | - ), |
|
91 | - $session_lifespan_in_hours |
|
92 | - ) |
|
93 | - ), |
|
94 | - true |
|
95 | - ); |
|
96 | - } |
|
57 | + /** |
|
58 | + * Gets the HTML for the privacy policy. May be dynamic |
|
59 | + * |
|
60 | + * @return string |
|
61 | + */ |
|
62 | + public function getContent() |
|
63 | + { |
|
64 | + // do they have any offsite payment methods? or onsite payment methods? |
|
65 | + $active_payment_methods = $this->payment_method_model->get_all_active(EEM_Payment_Method::scope_cart); |
|
66 | + $active_onsite_pms = false; |
|
67 | + $active_offsite_pms = false; |
|
68 | + foreach ($active_payment_methods as $payment_method) { |
|
69 | + if ($payment_method->type_obj() instanceof \EE_PMT_Base) { |
|
70 | + if ($payment_method->type_obj()->get_gateway() instanceof EE_Onsite_Gateway) { |
|
71 | + $active_onsite_pms[] = $payment_method->name(); |
|
72 | + } elseif ($payment_method->type_obj()->get_gateway() instanceof EE_Offsite_Gateway) { |
|
73 | + $active_offsite_pms[] = $payment_method->name(); |
|
74 | + } |
|
75 | + } |
|
76 | + } |
|
77 | + $session_lifespan_in_hours = round($this->session_lifespan->inSeconds() / HOUR_IN_SECONDS); |
|
78 | + return (string) EEH_Template::display_template( |
|
79 | + __DIR__ . '/privacy_policy.template.php', |
|
80 | + array( |
|
81 | + 'active_onsite_payment_methods' => $active_onsite_pms, |
|
82 | + 'active_offsite_payment_methods' => $active_offsite_pms, |
|
83 | + 'session_lifespan' => sprintf( |
|
84 | + _nx( |
|
85 | + '%1$s hour', |
|
86 | + '%1$s hours', |
|
87 | + $session_lifespan_in_hours, |
|
88 | + '2 hours', |
|
89 | + 'event_espresso' |
|
90 | + ), |
|
91 | + $session_lifespan_in_hours |
|
92 | + ) |
|
93 | + ), |
|
94 | + true |
|
95 | + ); |
|
96 | + } |
|
97 | 97 | } |
98 | 98 | // End of file PrivacyPolicy.php |
99 | 99 | // Location: EventEspresso\core\domain\services\admin\privacy\policy\PrivacyPolicy.php |
@@ -31,38 +31,38 @@ discard block |
||
31 | 31 | // if onsite or offsite payment methods are active |
32 | 32 | if (! empty($active_onsite_payment_methods)) { ?> |
33 | 33 | <p><?php esc_html_e( |
34 | - 'In order to process payments, we collect billing information on-site. Sensitive billing information is not stored on our server, but may be handled while in-transit to the payment processing server.', |
|
35 | - 'event_espresso' |
|
36 | - ); ?></p> |
|
34 | + 'In order to process payments, we collect billing information on-site. Sensitive billing information is not stored on our server, but may be handled while in-transit to the payment processing server.', |
|
35 | + 'event_espresso' |
|
36 | + ); ?></p> |
|
37 | 37 | <p><?php printf( |
38 | - esc_html_x( |
|
39 | - 'Please see the privacy policy of %1$s.', |
|
40 | - 'Please see the privacy policy of PayPal Pro', |
|
41 | - 'event_espresso' |
|
42 | - ), |
|
43 | - implode( |
|
44 | - ', ', |
|
45 | - array_merge( |
|
46 | - $active_onsite_payment_methods, |
|
47 | - $active_offsite_payment_methods |
|
48 | - ) |
|
49 | - ) |
|
50 | - ); ?></p> |
|
38 | + esc_html_x( |
|
39 | + 'Please see the privacy policy of %1$s.', |
|
40 | + 'Please see the privacy policy of PayPal Pro', |
|
41 | + 'event_espresso' |
|
42 | + ), |
|
43 | + implode( |
|
44 | + ', ', |
|
45 | + array_merge( |
|
46 | + $active_onsite_payment_methods, |
|
47 | + $active_offsite_payment_methods |
|
48 | + ) |
|
49 | + ) |
|
50 | + ); ?></p> |
|
51 | 51 | <p><?php esc_html_e( |
52 | - 'Masked billing information may be stored on our servers (eg only the last 4 digits of credit card numbers are stored: **** **** **** 1234).', |
|
53 | - 'event_espresso' |
|
54 | - ); ?></p> |
|
52 | + 'Masked billing information may be stored on our servers (eg only the last 4 digits of credit card numbers are stored: **** **** **** 1234).', |
|
53 | + 'event_espresso' |
|
54 | + ); ?></p> |
|
55 | 55 | <?php } |
56 | 56 | |
57 | 57 | // IF OFFSITE PAYMENT METHOD ACTIVE |
58 | 58 | elseif (! empty($active_onsite_payment_methods)) { ?> |
59 | 59 | <p><?php printf( |
60 | - esc_html_x( |
|
61 | - 'Billing information is sent directly to the payment processor, and is not handled by our servers. Please see the privacy policy of %1$s.', |
|
62 | - 'Billing information is sent directly to the payment processor, and is not handled by our servers. Please see the privacy policy of PayPal Pro.', |
|
63 | - 'event_espresso'), |
|
64 | - implode(', ', $active_offsite_payment_methods) |
|
65 | - ); ?></p> |
|
60 | + esc_html_x( |
|
61 | + 'Billing information is sent directly to the payment processor, and is not handled by our servers. Please see the privacy policy of %1$s.', |
|
62 | + 'Billing information is sent directly to the payment processor, and is not handled by our servers. Please see the privacy policy of PayPal Pro.', |
|
63 | + 'event_espresso'), |
|
64 | + implode(', ', $active_offsite_payment_methods) |
|
65 | + ); ?></p> |
|
66 | 66 | <?php }?> |
67 | 67 | <h2><?php esc_html_e('Payment Logging', 'event_espresso');?></h2> |
68 | 68 | <p><?php esc_html_e('Site administrators may keep a log of communications with the payment processors in order to verify payments are being processed correctly. These logs are automatically deleted after a week.', 'event_espresso');?></p> |
@@ -70,13 +70,13 @@ discard block |
||
70 | 70 | |
71 | 71 | <h2><?php esc_html_e('Event Registration Cookies', 'event_espresso');?></h2> |
72 | 72 | <p><?php printf( |
73 | - esc_html_x( |
|
74 | - 'When you begin registering for an event and select a ticket quantity, a cookie will be used to track your registration. This cookie lasts %1$s.', |
|
75 | - 'When you begin registering for an event and select a ticket quantity, a cookie will be used to track your registration. This cookie lasts 2 hours.', |
|
76 | - 'event_espresso' |
|
77 | - ), |
|
78 | - $session_lifespan |
|
79 | - );?></p> |
|
73 | + esc_html_x( |
|
74 | + 'When you begin registering for an event and select a ticket quantity, a cookie will be used to track your registration. This cookie lasts %1$s.', |
|
75 | + 'When you begin registering for an event and select a ticket quantity, a cookie will be used to track your registration. This cookie lasts 2 hours.', |
|
76 | + 'event_espresso' |
|
77 | + ), |
|
78 | + $session_lifespan |
|
79 | + );?></p> |
|
80 | 80 | |
81 | 81 | <h2><?php esc_html_e('Email History Data', 'event_espresso');?></h2> |
82 | 82 | <p><?php esc_html_e('We keep a record of the emails sent to you. This is to ensure communication is successfully sent and its information is accurate.', 'event_espresso');?></p> |
@@ -5,31 +5,31 @@ discard block |
||
5 | 5 | * @var $session_lifespan string |
6 | 6 | */ |
7 | 7 | ?> |
8 | -<h2><?php esc_html_e('Event Registration Data', 'event_espresso');?></h2> |
|
9 | -<p><?php esc_html_e('We collect information about you during event registration. This information may include but is not limited to:', 'event_espresso');?></p> |
|
8 | +<h2><?php esc_html_e('Event Registration Data', 'event_espresso'); ?></h2> |
|
9 | +<p><?php esc_html_e('We collect information about you during event registration. This information may include but is not limited to:', 'event_espresso'); ?></p> |
|
10 | 10 | <ul> |
11 | - <li><?php esc_html_e('Your names', 'event_espresso');?></li> |
|
12 | - <li><?php esc_html_e('Billing address', 'event_espresso');?></li> |
|
13 | - <li><?php esc_html_e('Mailing address', 'event_espresso');?></li> |
|
14 | - <li><?php esc_html_e('Email address', 'event_espresso');?></li> |
|
15 | - <li><?php esc_html_e('Phone number', 'event_espresso');?></li> |
|
16 | - <li><?php esc_html_e('Location and traffic data (including IP address and browser type)', 'event_espresso');?></li> |
|
17 | - <li><?php esc_html_e('Any other details that might be requested from you for the purpose of processing your registration or ticket purchase', 'event_espresso');?></li> |
|
11 | + <li><?php esc_html_e('Your names', 'event_espresso'); ?></li> |
|
12 | + <li><?php esc_html_e('Billing address', 'event_espresso'); ?></li> |
|
13 | + <li><?php esc_html_e('Mailing address', 'event_espresso'); ?></li> |
|
14 | + <li><?php esc_html_e('Email address', 'event_espresso'); ?></li> |
|
15 | + <li><?php esc_html_e('Phone number', 'event_espresso'); ?></li> |
|
16 | + <li><?php esc_html_e('Location and traffic data (including IP address and browser type)', 'event_espresso'); ?></li> |
|
17 | + <li><?php esc_html_e('Any other details that might be requested from you for the purpose of processing your registration or ticket purchase', 'event_espresso'); ?></li> |
|
18 | 18 | </ul> |
19 | 19 | |
20 | -<p><?php esc_html_e('Handling this data also allows us to:', 'event_espresso');?></p> |
|
20 | +<p><?php esc_html_e('Handling this data also allows us to:', 'event_espresso'); ?></p> |
|
21 | 21 | <ul> |
22 | - <li><?php esc_html_e('Send you important account/purchase/service information.', 'event_espresso');?></li> |
|
23 | - <li><?php esc_html_e('Respond to your queries, refund requests, or complaints.', 'event_espresso');?></li> |
|
24 | - <li><?php esc_html_e('Process payments and prevent fraudulent transactions. We do this on the basis of our legitimate business interests.', 'event_espresso');?></li> |
|
25 | - <li><?php esc_html_e('Set up and administer your account, provide technical and customer support, and to verify your identity.', 'event_espresso');?></li> |
|
22 | + <li><?php esc_html_e('Send you important account/purchase/service information.', 'event_espresso'); ?></li> |
|
23 | + <li><?php esc_html_e('Respond to your queries, refund requests, or complaints.', 'event_espresso'); ?></li> |
|
24 | + <li><?php esc_html_e('Process payments and prevent fraudulent transactions. We do this on the basis of our legitimate business interests.', 'event_espresso'); ?></li> |
|
25 | + <li><?php esc_html_e('Set up and administer your account, provide technical and customer support, and to verify your identity.', 'event_espresso'); ?></li> |
|
26 | 26 | </ul> |
27 | 27 | |
28 | -<?php if (!empty($active_onsite_payment_methods) || !empty($active_offsite_payment_methods)) { ?> |
|
29 | -<h2><?php esc_html_e('Billing Information', 'event_espresso');?> </h2 > |
|
28 | +<?php if ( ! empty($active_onsite_payment_methods) || ! empty($active_offsite_payment_methods)) { ?> |
|
29 | +<h2><?php esc_html_e('Billing Information', 'event_espresso'); ?> </h2 > |
|
30 | 30 | <?php |
31 | 31 | // if onsite or offsite payment methods are active |
32 | -if (! empty($active_onsite_payment_methods)) { ?> |
|
32 | +if ( ! empty($active_onsite_payment_methods)) { ?> |
|
33 | 33 | <p><?php esc_html_e( |
34 | 34 | 'In order to process payments, we collect billing information on-site. Sensitive billing information is not stored on our server, but may be handled while in-transit to the payment processing server.', |
35 | 35 | 'event_espresso' |
@@ -55,7 +55,7 @@ discard block |
||
55 | 55 | <?php } |
56 | 56 | |
57 | 57 | // IF OFFSITE PAYMENT METHOD ACTIVE |
58 | -elseif (! empty($active_onsite_payment_methods)) { ?> |
|
58 | +elseif ( ! empty($active_onsite_payment_methods)) { ?> |
|
59 | 59 | <p><?php printf( |
60 | 60 | esc_html_x( |
61 | 61 | 'Billing information is sent directly to the payment processor, and is not handled by our servers. Please see the privacy policy of %1$s.', |
@@ -64,11 +64,11 @@ discard block |
||
64 | 64 | implode(', ', $active_offsite_payment_methods) |
65 | 65 | ); ?></p> |
66 | 66 | <?php }?> |
67 | - <h2><?php esc_html_e('Payment Logging', 'event_espresso');?></h2> |
|
68 | - <p><?php esc_html_e('Site administrators may keep a log of communications with the payment processors in order to verify payments are being processed correctly. These logs are automatically deleted after a week.', 'event_espresso');?></p> |
|
67 | + <h2><?php esc_html_e('Payment Logging', 'event_espresso'); ?></h2> |
|
68 | + <p><?php esc_html_e('Site administrators may keep a log of communications with the payment processors in order to verify payments are being processed correctly. These logs are automatically deleted after a week.', 'event_espresso'); ?></p> |
|
69 | 69 | <?php }?> |
70 | 70 | |
71 | - <h2><?php esc_html_e('Event Registration Cookies', 'event_espresso');?></h2> |
|
71 | + <h2><?php esc_html_e('Event Registration Cookies', 'event_espresso'); ?></h2> |
|
72 | 72 | <p><?php printf( |
73 | 73 | esc_html_x( |
74 | 74 | 'When you begin registering for an event and select a ticket quantity, a cookie will be used to track your registration. This cookie lasts %1$s.', |
@@ -76,17 +76,17 @@ discard block |
||
76 | 76 | 'event_espresso' |
77 | 77 | ), |
78 | 78 | $session_lifespan |
79 | - );?></p> |
|
79 | + ); ?></p> |
|
80 | 80 | |
81 | - <h2><?php esc_html_e('Email History Data', 'event_espresso');?></h2> |
|
82 | - <p><?php esc_html_e('We keep a record of the emails sent to you. This is to ensure communication is successfully sent and its information is accurate.', 'event_espresso');?></p> |
|
81 | + <h2><?php esc_html_e('Email History Data', 'event_espresso'); ?></h2> |
|
82 | + <p><?php esc_html_e('We keep a record of the emails sent to you. This is to ensure communication is successfully sent and its information is accurate.', 'event_espresso'); ?></p> |
|
83 | 83 | |
84 | - <h2><?php esc_html_e('Event Check-In Record', 'event_espresso');?></h2> |
|
85 | - <p><?php esc_html_e('When you attend an event, an event manager may record the time you check in or out of the event.', 'event_espresso');?></p> |
|
84 | + <h2><?php esc_html_e('Event Check-In Record', 'event_espresso'); ?></h2> |
|
85 | + <p><?php esc_html_e('When you attend an event, an event manager may record the time you check in or out of the event.', 'event_espresso'); ?></p> |
|
86 | 86 | |
87 | - <h2><?php esc_html_e('Event Registration Data Retention', 'event_espresso');?></h2> |
|
88 | - <p><?php esc_html_e('Personal data is stored at least until the date of the event, and may be kept indefinitely in case of future registrations.', 'event_espresso');?></p> |
|
87 | + <h2><?php esc_html_e('Event Registration Data Retention', 'event_espresso'); ?></h2> |
|
88 | + <p><?php esc_html_e('Personal data is stored at least until the date of the event, and may be kept indefinitely in case of future registrations.', 'event_espresso'); ?></p> |
|
89 | 89 | |
90 | - <h2><?php esc_html_e('Event Registration Data Erasure and Export', 'event_espresso');?></h2> |
|
91 | - <p><?php esc_html_e('You have the right to request your personal data be sent to you electronically, and the right to request your registration data be erased after the event. To do so, please contact the event manager or site administrator.', 'event_espresso');?></p> |
|
90 | + <h2><?php esc_html_e('Event Registration Data Erasure and Export', 'event_espresso'); ?></h2> |
|
91 | + <p><?php esc_html_e('You have the right to request your personal data be sent to you electronically, and the right to request your registration data be erased after the event. To do so, please contact the event manager or site administrator.', 'event_espresso'); ?></p> |
|
92 | 92 |