Completed
Branch EDTR/refactor-master (bcaf81)
by
unknown
41:30 queued 30:37
created
core/domain/services/contexts/RequestTypeContextCheckerInterface.php 1 patch
Indentation   +106 added lines, -106 removed lines patch added patch discarded remove patch
@@ -13,145 +13,145 @@
 block discarded – undo
13 13
 interface RequestTypeContextCheckerInterface
14 14
 {
15 15
 
16
-    /**
17
-     * true if the current request involves some form of activation
18
-     *
19
-     * @return bool
20
-     */
21
-    public function isActivation();
16
+	/**
17
+	 * true if the current request involves some form of activation
18
+	 *
19
+	 * @return bool
20
+	 */
21
+	public function isActivation();
22 22
 
23 23
 
24
-    /**
25
-     * @param $is_activation
26
-     * @return bool
27
-     */
28
-    public function setIsActivation($is_activation);
24
+	/**
25
+	 * @param $is_activation
26
+	 * @return bool
27
+	 */
28
+	public function setIsActivation($is_activation);
29 29
 
30 30
 
31
-    /**
32
-     * true if the current request is for the admin and is not being made via AJAX
33
-     *
34
-     * @return bool
35
-     */
36
-    public function isAdmin();
31
+	/**
32
+	 * true if the current request is for the admin and is not being made via AJAX
33
+	 *
34
+	 * @return bool
35
+	 */
36
+	public function isAdmin();
37 37
 
38 38
 
39
-    /**
40
-     * true if the current request is for the admin AND is being made via AJAX
41
-     * and the ajax request contains the request parameter "ee_admin_ajax"
42
-     *
43
-     * @return bool
44
-     */
45
-    public function isAdminAjax();
39
+	/**
40
+	 * true if the current request is for the admin AND is being made via AJAX
41
+	 * and the ajax request contains the request parameter "ee_admin_ajax"
42
+	 *
43
+	 * @return bool
44
+	 */
45
+	public function isAdminAjax();
46 46
 
47 47
 
48
-    /**
49
-     * true if the current request is being made via AJAX... any AJAX
50
-     *
51
-     * @return bool
52
-     */
53
-    public function isAjax();
48
+	/**
49
+	 * true if the current request is being made via AJAX... any AJAX
50
+	 *
51
+	 * @return bool
52
+	 */
53
+	public function isAjax();
54 54
 
55 55
 
56
-    /**
57
-     * true if the current request is for the EE REST API
58
-     *
59
-     * @return bool
60
-     */
61
-    public function isApi();
56
+	/**
57
+	 * true if the current request is for the EE REST API
58
+	 *
59
+	 * @return bool
60
+	 */
61
+	public function isApi();
62 62
 
63 63
 
64
-    /**
65
-     * true if the current request is from the command line
66
-     *
67
-     * @return bool
68
-     */
69
-    public function isCli();
64
+	/**
65
+	 * true if the current request is from the command line
66
+	 *
67
+	 * @return bool
68
+	 */
69
+	public function isCli();
70 70
 
71 71
 
72
-    /**
73
-     * true if the current request is for a WP_Cron
74
-     *
75
-     * @return bool
76
-     */
77
-    public function isCron();
72
+	/**
73
+	 * true if the current request is for a WP_Cron
74
+	 *
75
+	 * @return bool
76
+	 */
77
+	public function isCron();
78 78
 
79 79
 
80
-    /**
81
-     * true if the current request is for either the EE admin or EE frontend AND is being made via AJAX
82
-     *
83
-     * @return bool
84
-     */
85
-    public function isEeAjax();
80
+	/**
81
+	 * true if the current request is for either the EE admin or EE frontend AND is being made via AJAX
82
+	 *
83
+	 * @return bool
84
+	 */
85
+	public function isEeAjax();
86 86
 
87 87
 
88
-    /**
89
-     * true if the current request is for a feed (ie: RSS)
90
-     *
91
-     * @return bool
92
-     */
93
-    public function isFeed();
88
+	/**
89
+	 * true if the current request is for a feed (ie: RSS)
90
+	 *
91
+	 * @return bool
92
+	 */
93
+	public function isFeed();
94 94
 
95 95
 
96
-    /**
97
-     * true if the current request is for the frontend and is not being made via AJAX
98
-     *
99
-     * @return bool
100
-     */
101
-    public function isFrontend();
96
+	/**
97
+	 * true if the current request is for the frontend and is not being made via AJAX
98
+	 *
99
+	 * @return bool
100
+	 */
101
+	public function isFrontend();
102 102
 
103 103
 
104
-    /**
105
-     * @return bool
106
-     */
107
-    public function isFrontAjax();
104
+	/**
105
+	 * @return bool
106
+	 */
107
+	public function isFrontAjax();
108 108
 
109
-    /**
110
-     * @return bool
111
-     */
112
-    public function isGQL();
109
+	/**
110
+	 * @return bool
111
+	 */
112
+	public function isGQL();
113 113
 
114 114
 
115
-    /**
116
-     * @return bool
117
-     */
118
-    public function isIframe();
115
+	/**
116
+	 * @return bool
117
+	 */
118
+	public function isIframe();
119 119
 
120 120
 
121
-    /**
122
-     * true if the current request is being made via AJAX but is NOT for EE related logic
123
-     *
124
-     * @return bool
125
-     */
126
-    public function isOtherAjax();
121
+	/**
122
+	 * true if the current request is being made via AJAX but is NOT for EE related logic
123
+	 *
124
+	 * @return bool
125
+	 */
126
+	public function isOtherAjax();
127 127
 
128 128
 
129
-    /**
130
-     * true if the current request is for the WP REST API
131
-     *
132
-     * @return bool
133
-     */
134
-    public function isWordPressApi();
129
+	/**
130
+	 * true if the current request is for the WP REST API
131
+	 *
132
+	 * @return bool
133
+	 */
134
+	public function isWordPressApi();
135 135
 
136 136
 
137
-    /**
138
-     * true if the current request is being made via AJAX for the WP Heartbeat
139
-     *
140
-     * @return bool
141
-     */
142
-    public function isWordPressHeartbeat();
137
+	/**
138
+	 * true if the current request is being made via AJAX for the WP Heartbeat
139
+	 *
140
+	 * @return bool
141
+	 */
142
+	public function isWordPressHeartbeat();
143 143
 
144 144
 
145
-    /**
146
-     * true if the current request is a loopback sent from WP core to test for errors
147
-     *
148
-     * @return bool
149
-     */
150
-    public function isWordPressScrape();
145
+	/**
146
+	 * true if the current request is a loopback sent from WP core to test for errors
147
+	 *
148
+	 * @return bool
149
+	 */
150
+	public function isWordPressScrape();
151 151
 
152 152
 
153
-    /**
154
-     * @return string
155
-     */
156
-    public function slug();
153
+	/**
154
+	 * @return string
155
+	 */
156
+	public function slug();
157 157
 }
Please login to merge, or discard this patch.
core/domain/services/contexts/RequestTypeContextDetector.php 1 patch
Indentation   +191 added lines, -191 removed lines patch added patch discarded remove patch
@@ -18,195 +18,195 @@
 block discarded – undo
18 18
 class RequestTypeContextDetector
19 19
 {
20 20
 
21
-    /**
22
-     * @var RequestTypeContextFactoryInterface $factory
23
-     */
24
-    private $factory;
25
-
26
-    /**
27
-     * @var RequestInterface $request
28
-     */
29
-    private $request;
30
-
31
-    /**
32
-     * @var array $globalRouteConditions
33
-     */
34
-    private $globalRouteConditions;
35
-
36
-
37
-    /**
38
-     * RequestTypeContextDetector constructor.
39
-     *
40
-     * @param RequestInterface                   $request
41
-     * @param RequestTypeContextFactoryInterface $factory
42
-     * @param array                              $globalRouteConditions an array for injecting values that would
43
-     *                                                                  otherwise be defined as global constants
44
-     *                                                                  or other global variables for the current
45
-     *                                                                  request route such as DOING_AJAX
46
-     */
47
-    public function __construct(
48
-        RequestInterface $request,
49
-        RequestTypeContextFactoryInterface $factory,
50
-        array $globalRouteConditions = array()
51
-    ) {
52
-        $this->request = $request;
53
-        $this->factory = $factory;
54
-        $this->globalRouteConditions = $globalRouteConditions;
55
-    }
56
-
57
-
58
-    /**
59
-     * @return mixed
60
-     */
61
-    private function getGlobalRouteCondition($globalRouteCondition, $default)
62
-    {
63
-        return isset($this->globalRouteConditions[ $globalRouteCondition ])
64
-            ? $this->globalRouteConditions[ $globalRouteCondition ]
65
-            : $default;
66
-    }
67
-
68
-
69
-    /**
70
-     * @return RequestTypeContext
71
-     * @throws InvalidArgumentException
72
-     */
73
-    public function detectRequestTypeContext()
74
-    {
75
-        // Detect error scrapes
76
-        if ($this->request->getRequestParam('wp_scrape_key') !== null
77
-            && $this->request->getRequestParam('wp_scrape_nonce') !== null
78
-        ) {
79
-            return $this->factory->create(RequestTypeContext::WP_SCRAPE);
80
-        }
81
-        // Detect EE REST API
82
-        if ($this->isEspressoRestApiRequest()) {
83
-            return $this->factory->create(RequestTypeContext::API);
84
-        // Detect WP REST API
85
-        }
86
-        if ($this->isWordPressRestApiRequest()) {
87
-            return $this->factory->create(RequestTypeContext::WP_API);
88
-        }
89
-        // Detect EE GraphQL
90
-        if ($this->isEspressoGraphQLRequest()) {
91
-            return $this->factory->create(RequestTypeContext::GQL);
92
-        }
93
-        // Detect AJAX
94
-        if ($this->getGlobalRouteCondition('DOING_AJAX', false)) {
95
-            if (filter_var($this->request->getRequestParam('ee_front_ajax'), FILTER_VALIDATE_BOOLEAN)) {
96
-                return $this->factory->create(RequestTypeContext::AJAX_FRONT);
97
-            }
98
-            if (filter_var($this->request->getRequestParam('ee_admin_ajax'), FILTER_VALIDATE_BOOLEAN)) {
99
-                return $this->factory->create(RequestTypeContext::AJAX_ADMIN);
100
-            }
101
-            if ($this->request->getRequestParam('action') === 'heartbeat') {
102
-                return $this->factory->create(RequestTypeContext::AJAX_HEARTBEAT);
103
-            }
104
-            return $this->factory->create(RequestTypeContext::AJAX_OTHER);
105
-        }
106
-        // Detect WP_Cron
107
-        if ($this->isCronRequest()) {
108
-            return $this->factory->create(RequestTypeContext::CRON);
109
-        }
110
-        // Detect command line requests
111
-        if ($this->getGlobalRouteCondition('WP_CLI', false)) {
112
-            return $this->factory->create(RequestTypeContext::CLI);
113
-        }
114
-        // detect WordPress admin (ie: "Dashboard")
115
-        if ($this->getGlobalRouteCondition('is_admin', false)) {
116
-            return $this->factory->create(RequestTypeContext::ADMIN);
117
-        }
118
-        // Detect iFrames
119
-        if ($this->isIframeRoute()) {
120
-            return $this->factory->create(RequestTypeContext::IFRAME);
121
-        }
122
-        // Detect Feeds
123
-        if ($this->isFeedRequest()) {
124
-            return $this->factory->create(RequestTypeContext::FEED);
125
-        }
126
-        // and by process of elimination...
127
-        return $this->factory->create(RequestTypeContext::FRONTEND);
128
-    }
129
-
130
-
131
-    /**
132
-     * @return bool
133
-     */
134
-    private function isEspressoRestApiRequest()
135
-    {
136
-        // Check for URLs like http://mysite.com/?rest_route=/ee... and http://mysite.com/wp-json/ee/...
137
-        return strpos(
138
-            $this->request->getRequestParam('rest_route', false),
139
-            '/' . Domain::API_NAMESPACE
140
-        ) === 0
141
-            || $this->uriPathMatches(trim(rest_get_url_prefix(), '/') . '/' . Domain::API_NAMESPACE);
142
-    }
143
-
144
-
145
-    /**
146
-     * @return bool
147
-     */
148
-    private function isEspressoGraphQLRequest()
149
-    {
150
-        // Check for URLs like https://mysite.com/graphql
151
-        return $this->uriPathMatches(RequestTypeContext::GQL);
152
-    }
153
-
154
-
155
-
156
-    /**
157
-     * @return bool
158
-     */
159
-    private function isWordPressRestApiRequest()
160
-    {
161
-        // Check for URLs like http://mysite.com/?rest_route=/.. and http://mysite.com/wp-json/...
162
-        return $this->request->getRequestParam('rest_route', false)
163
-            || $this->uriPathMatches(trim(rest_get_url_prefix(), '/'));
164
-    }
165
-
166
-
167
-    /**
168
-     * @return bool
169
-     */
170
-    private function isCronRequest()
171
-    {
172
-        return $this->uriPathMatches('wp-cron.php');
173
-    }
174
-
175
-
176
-    /**
177
-     * @return bool
178
-     */
179
-    private function isFeedRequest()
180
-    {
181
-        return $this->uriPathMatches('feed');
182
-    }
183
-
184
-
185
-    /**
186
-     * @param string $component
187
-     * @return bool
188
-     */
189
-    private function uriPathMatches($component)
190
-    {
191
-        $request_uri = $this->request->requestUri(true);
192
-        $parts = explode('?', $request_uri);
193
-        $path = trim(reset($parts), '/');
194
-        return strpos($path, $component) === 0;
195
-    }
196
-
197
-
198
-    /**
199
-     * @return bool
200
-     */
201
-    private function isIframeRoute()
202
-    {
203
-        $is_iframe_route = apply_filters(
204
-            'FHEE__EventEspresso_core_domain_services_contexts_RequestTypeContextDetector__isIframeRoute',
205
-            $this->request->getRequestParam('event_list', '') === 'iframe'
206
-            || $this->request->getRequestParam('ticket_selector', '') === 'iframe'
207
-            || $this->request->getRequestParam('calendar', '') === 'iframe',
208
-            $this
209
-        );
210
-        return filter_var($is_iframe_route, FILTER_VALIDATE_BOOLEAN);
211
-    }
21
+	/**
22
+	 * @var RequestTypeContextFactoryInterface $factory
23
+	 */
24
+	private $factory;
25
+
26
+	/**
27
+	 * @var RequestInterface $request
28
+	 */
29
+	private $request;
30
+
31
+	/**
32
+	 * @var array $globalRouteConditions
33
+	 */
34
+	private $globalRouteConditions;
35
+
36
+
37
+	/**
38
+	 * RequestTypeContextDetector constructor.
39
+	 *
40
+	 * @param RequestInterface                   $request
41
+	 * @param RequestTypeContextFactoryInterface $factory
42
+	 * @param array                              $globalRouteConditions an array for injecting values that would
43
+	 *                                                                  otherwise be defined as global constants
44
+	 *                                                                  or other global variables for the current
45
+	 *                                                                  request route such as DOING_AJAX
46
+	 */
47
+	public function __construct(
48
+		RequestInterface $request,
49
+		RequestTypeContextFactoryInterface $factory,
50
+		array $globalRouteConditions = array()
51
+	) {
52
+		$this->request = $request;
53
+		$this->factory = $factory;
54
+		$this->globalRouteConditions = $globalRouteConditions;
55
+	}
56
+
57
+
58
+	/**
59
+	 * @return mixed
60
+	 */
61
+	private function getGlobalRouteCondition($globalRouteCondition, $default)
62
+	{
63
+		return isset($this->globalRouteConditions[ $globalRouteCondition ])
64
+			? $this->globalRouteConditions[ $globalRouteCondition ]
65
+			: $default;
66
+	}
67
+
68
+
69
+	/**
70
+	 * @return RequestTypeContext
71
+	 * @throws InvalidArgumentException
72
+	 */
73
+	public function detectRequestTypeContext()
74
+	{
75
+		// Detect error scrapes
76
+		if ($this->request->getRequestParam('wp_scrape_key') !== null
77
+			&& $this->request->getRequestParam('wp_scrape_nonce') !== null
78
+		) {
79
+			return $this->factory->create(RequestTypeContext::WP_SCRAPE);
80
+		}
81
+		// Detect EE REST API
82
+		if ($this->isEspressoRestApiRequest()) {
83
+			return $this->factory->create(RequestTypeContext::API);
84
+		// Detect WP REST API
85
+		}
86
+		if ($this->isWordPressRestApiRequest()) {
87
+			return $this->factory->create(RequestTypeContext::WP_API);
88
+		}
89
+		// Detect EE GraphQL
90
+		if ($this->isEspressoGraphQLRequest()) {
91
+			return $this->factory->create(RequestTypeContext::GQL);
92
+		}
93
+		// Detect AJAX
94
+		if ($this->getGlobalRouteCondition('DOING_AJAX', false)) {
95
+			if (filter_var($this->request->getRequestParam('ee_front_ajax'), FILTER_VALIDATE_BOOLEAN)) {
96
+				return $this->factory->create(RequestTypeContext::AJAX_FRONT);
97
+			}
98
+			if (filter_var($this->request->getRequestParam('ee_admin_ajax'), FILTER_VALIDATE_BOOLEAN)) {
99
+				return $this->factory->create(RequestTypeContext::AJAX_ADMIN);
100
+			}
101
+			if ($this->request->getRequestParam('action') === 'heartbeat') {
102
+				return $this->factory->create(RequestTypeContext::AJAX_HEARTBEAT);
103
+			}
104
+			return $this->factory->create(RequestTypeContext::AJAX_OTHER);
105
+		}
106
+		// Detect WP_Cron
107
+		if ($this->isCronRequest()) {
108
+			return $this->factory->create(RequestTypeContext::CRON);
109
+		}
110
+		// Detect command line requests
111
+		if ($this->getGlobalRouteCondition('WP_CLI', false)) {
112
+			return $this->factory->create(RequestTypeContext::CLI);
113
+		}
114
+		// detect WordPress admin (ie: "Dashboard")
115
+		if ($this->getGlobalRouteCondition('is_admin', false)) {
116
+			return $this->factory->create(RequestTypeContext::ADMIN);
117
+		}
118
+		// Detect iFrames
119
+		if ($this->isIframeRoute()) {
120
+			return $this->factory->create(RequestTypeContext::IFRAME);
121
+		}
122
+		// Detect Feeds
123
+		if ($this->isFeedRequest()) {
124
+			return $this->factory->create(RequestTypeContext::FEED);
125
+		}
126
+		// and by process of elimination...
127
+		return $this->factory->create(RequestTypeContext::FRONTEND);
128
+	}
129
+
130
+
131
+	/**
132
+	 * @return bool
133
+	 */
134
+	private function isEspressoRestApiRequest()
135
+	{
136
+		// Check for URLs like http://mysite.com/?rest_route=/ee... and http://mysite.com/wp-json/ee/...
137
+		return strpos(
138
+			$this->request->getRequestParam('rest_route', false),
139
+			'/' . Domain::API_NAMESPACE
140
+		) === 0
141
+			|| $this->uriPathMatches(trim(rest_get_url_prefix(), '/') . '/' . Domain::API_NAMESPACE);
142
+	}
143
+
144
+
145
+	/**
146
+	 * @return bool
147
+	 */
148
+	private function isEspressoGraphQLRequest()
149
+	{
150
+		// Check for URLs like https://mysite.com/graphql
151
+		return $this->uriPathMatches(RequestTypeContext::GQL);
152
+	}
153
+
154
+
155
+
156
+	/**
157
+	 * @return bool
158
+	 */
159
+	private function isWordPressRestApiRequest()
160
+	{
161
+		// Check for URLs like http://mysite.com/?rest_route=/.. and http://mysite.com/wp-json/...
162
+		return $this->request->getRequestParam('rest_route', false)
163
+			|| $this->uriPathMatches(trim(rest_get_url_prefix(), '/'));
164
+	}
165
+
166
+
167
+	/**
168
+	 * @return bool
169
+	 */
170
+	private function isCronRequest()
171
+	{
172
+		return $this->uriPathMatches('wp-cron.php');
173
+	}
174
+
175
+
176
+	/**
177
+	 * @return bool
178
+	 */
179
+	private function isFeedRequest()
180
+	{
181
+		return $this->uriPathMatches('feed');
182
+	}
183
+
184
+
185
+	/**
186
+	 * @param string $component
187
+	 * @return bool
188
+	 */
189
+	private function uriPathMatches($component)
190
+	{
191
+		$request_uri = $this->request->requestUri(true);
192
+		$parts = explode('?', $request_uri);
193
+		$path = trim(reset($parts), '/');
194
+		return strpos($path, $component) === 0;
195
+	}
196
+
197
+
198
+	/**
199
+	 * @return bool
200
+	 */
201
+	private function isIframeRoute()
202
+	{
203
+		$is_iframe_route = apply_filters(
204
+			'FHEE__EventEspresso_core_domain_services_contexts_RequestTypeContextDetector__isIframeRoute',
205
+			$this->request->getRequestParam('event_list', '') === 'iframe'
206
+			|| $this->request->getRequestParam('ticket_selector', '') === 'iframe'
207
+			|| $this->request->getRequestParam('calendar', '') === 'iframe',
208
+			$this
209
+		);
210
+		return filter_var($is_iframe_route, FILTER_VALIDATE_BOOLEAN);
211
+	}
212 212
 }
Please login to merge, or discard this patch.
core/domain/services/contexts/RequestTypeContextChecker.php 1 patch
Indentation   +224 added lines, -224 removed lines patch added patch discarded remove patch
@@ -16,228 +16,228 @@
 block discarded – undo
16 16
 class RequestTypeContextChecker extends ContextChecker implements RequestTypeContextCheckerInterface
17 17
 {
18 18
 
19
-    /**
20
-     * @var RequestTypeContext $request_type
21
-     */
22
-    private $request_type;
23
-
24
-
25
-    /**
26
-     * RequestTypeContextChecker constructor.
27
-     *
28
-     * @param RequestTypeContext $request_type
29
-     */
30
-    public function __construct(RequestTypeContext $request_type)
31
-    {
32
-        $this->request_type = $request_type;
33
-        parent::__construct(
34
-            'RequestTypeContextChecker',
35
-            $this->request_type->validRequestTypes()
36
-        );
37
-    }
38
-
39
-
40
-    /**
41
-     * true if the current request involves some form of activation
42
-     *
43
-     * @return bool
44
-     */
45
-    public function isActivation()
46
-    {
47
-        return $this->request_type->isActivation();
48
-    }
49
-
50
-
51
-    /**
52
-     * @param $is_activation
53
-     * @return bool
54
-     */
55
-    public function setIsActivation($is_activation)
56
-    {
57
-        return $this->request_type->setIsActivation($is_activation);
58
-    }
59
-
60
-
61
-    /**
62
-     * true if the current request is for the admin and is not being made via AJAX
63
-     *
64
-     * @return bool
65
-     */
66
-    public function isAdmin()
67
-    {
68
-        return $this->request_type->slug() === RequestTypeContext::ADMIN;
69
-    }
70
-
71
-
72
-    /**
73
-     * true if the current request is for the admin AND is being made via AJAX
74
-     *
75
-     * @return bool
76
-     */
77
-    public function isAdminAjax()
78
-    {
79
-        return $this->request_type->slug() === RequestTypeContext::AJAX_ADMIN;
80
-    }
81
-
82
-
83
-    /**
84
-     * true if the current request is being made via AJAX... any AJAX
85
-     *
86
-     * @return bool
87
-     */
88
-    public function isAjax()
89
-    {
90
-        return $this->isEeAjax() || $this->isOtherAjax();
91
-    }
92
-
93
-
94
-    /**
95
-     * true if the current request is for either the EE admin or EE frontend AND is being made via AJAX
96
-     *
97
-     * @return bool
98
-     */
99
-    public function isEeAjax()
100
-    {
101
-        return $this->isAdminAjax() || $this->isFrontAjax();
102
-    }
103
-
104
-
105
-    /**
106
-     * true if the current request is being made via AJAX but is NOT for EE related logic
107
-     *
108
-     * @return bool
109
-     */
110
-    public function isOtherAjax()
111
-    {
112
-        return $this->request_type->slug() === RequestTypeContext::AJAX_OTHER;
113
-    }
114
-
115
-    /**
116
-     * true if the current request is for the EE REST API
117
-     *
118
-     * @return bool
119
-     */
120
-    public function isApi()
121
-    {
122
-        return $this->request_type->slug() === RequestTypeContext::API;
123
-    }
124
-
125
-
126
-    /**
127
-     * true if the current request is from the command line
128
-     *
129
-     * @return bool
130
-     */
131
-    public function isCli()
132
-    {
133
-        return $this->request_type->slug() === RequestTypeContext::CLI;
134
-    }
135
-
136
-
137
-    /**
138
-     * true if the current request is for a WP_Cron
139
-     *
140
-     * @return bool
141
-     */
142
-    public function isCron()
143
-    {
144
-        return $this->request_type->slug() === RequestTypeContext::CRON;
145
-    }
146
-
147
-
148
-    /**
149
-     * true if the current request is for a feed (ie: RSS)
150
-     *
151
-     * @return bool
152
-     */
153
-    public function isFeed()
154
-    {
155
-        return $this->request_type->slug() === RequestTypeContext::FEED;
156
-    }
157
-
158
-
159
-    /**
160
-     * true if the current request is for the frontend and is not being made via AJAX
161
-     *
162
-     * @return bool
163
-     */
164
-    public function isFrontend()
165
-    {
166
-        return $this->request_type->slug() === RequestTypeContext::FRONTEND;
167
-    }
168
-
169
-
170
-    /**
171
-     * true if the current request is for the frontend AND is being made via AJAX
172
-     *
173
-     * @return bool
174
-     */
175
-    public function isFrontAjax()
176
-    {
177
-        return $this->request_type->slug() === RequestTypeContext::AJAX_FRONT;
178
-    }
179
-
180
-
181
-    /**
182
-     * true if the current request is for the EE GraphQL manager
183
-     *
184
-     * @return bool
185
-     */
186
-    public function isGQL()
187
-    {
188
-        return $this->request_type->slug() === RequestTypeContext::GQL;
189
-    }
190
-
191
-
192
-    /**
193
-     * true if the current request is for content that is to be displayed within an iframe
194
-     *
195
-     * @return bool
196
-     */
197
-    public function isIframe()
198
-    {
199
-        return $this->request_type->slug() === RequestTypeContext::IFRAME;
200
-    }
201
-
202
-
203
-    /**
204
-     * true if the current request is for the WP REST API
205
-     *
206
-     * @return bool
207
-     */
208
-    public function isWordPressApi()
209
-    {
210
-        return $this->request_type->slug() === RequestTypeContext::WP_API;
211
-    }
212
-
213
-
214
-    /**
215
-     * true if the current request is being made via AJAX for the WP Heartbeat
216
-     *
217
-     * @return bool
218
-     */
219
-    public function isWordPressHeartbeat()
220
-    {
221
-        return $this->request_type->slug() === RequestTypeContext::AJAX_HEARTBEAT;
222
-    }
223
-
224
-
225
-    /**
226
-     * true if the current request is a loopback sent from WP core to test for errors
227
-     *
228
-     * @return bool
229
-     */
230
-    public function isWordPressScrape()
231
-    {
232
-        return $this->request_type->slug() === RequestTypeContext::WP_SCRAPE;
233
-    }
234
-
235
-
236
-    /**
237
-     * @return string
238
-     */
239
-    public function slug()
240
-    {
241
-        return $this->request_type->slug();
242
-    }
19
+	/**
20
+	 * @var RequestTypeContext $request_type
21
+	 */
22
+	private $request_type;
23
+
24
+
25
+	/**
26
+	 * RequestTypeContextChecker constructor.
27
+	 *
28
+	 * @param RequestTypeContext $request_type
29
+	 */
30
+	public function __construct(RequestTypeContext $request_type)
31
+	{
32
+		$this->request_type = $request_type;
33
+		parent::__construct(
34
+			'RequestTypeContextChecker',
35
+			$this->request_type->validRequestTypes()
36
+		);
37
+	}
38
+
39
+
40
+	/**
41
+	 * true if the current request involves some form of activation
42
+	 *
43
+	 * @return bool
44
+	 */
45
+	public function isActivation()
46
+	{
47
+		return $this->request_type->isActivation();
48
+	}
49
+
50
+
51
+	/**
52
+	 * @param $is_activation
53
+	 * @return bool
54
+	 */
55
+	public function setIsActivation($is_activation)
56
+	{
57
+		return $this->request_type->setIsActivation($is_activation);
58
+	}
59
+
60
+
61
+	/**
62
+	 * true if the current request is for the admin and is not being made via AJAX
63
+	 *
64
+	 * @return bool
65
+	 */
66
+	public function isAdmin()
67
+	{
68
+		return $this->request_type->slug() === RequestTypeContext::ADMIN;
69
+	}
70
+
71
+
72
+	/**
73
+	 * true if the current request is for the admin AND is being made via AJAX
74
+	 *
75
+	 * @return bool
76
+	 */
77
+	public function isAdminAjax()
78
+	{
79
+		return $this->request_type->slug() === RequestTypeContext::AJAX_ADMIN;
80
+	}
81
+
82
+
83
+	/**
84
+	 * true if the current request is being made via AJAX... any AJAX
85
+	 *
86
+	 * @return bool
87
+	 */
88
+	public function isAjax()
89
+	{
90
+		return $this->isEeAjax() || $this->isOtherAjax();
91
+	}
92
+
93
+
94
+	/**
95
+	 * true if the current request is for either the EE admin or EE frontend AND is being made via AJAX
96
+	 *
97
+	 * @return bool
98
+	 */
99
+	public function isEeAjax()
100
+	{
101
+		return $this->isAdminAjax() || $this->isFrontAjax();
102
+	}
103
+
104
+
105
+	/**
106
+	 * true if the current request is being made via AJAX but is NOT for EE related logic
107
+	 *
108
+	 * @return bool
109
+	 */
110
+	public function isOtherAjax()
111
+	{
112
+		return $this->request_type->slug() === RequestTypeContext::AJAX_OTHER;
113
+	}
114
+
115
+	/**
116
+	 * true if the current request is for the EE REST API
117
+	 *
118
+	 * @return bool
119
+	 */
120
+	public function isApi()
121
+	{
122
+		return $this->request_type->slug() === RequestTypeContext::API;
123
+	}
124
+
125
+
126
+	/**
127
+	 * true if the current request is from the command line
128
+	 *
129
+	 * @return bool
130
+	 */
131
+	public function isCli()
132
+	{
133
+		return $this->request_type->slug() === RequestTypeContext::CLI;
134
+	}
135
+
136
+
137
+	/**
138
+	 * true if the current request is for a WP_Cron
139
+	 *
140
+	 * @return bool
141
+	 */
142
+	public function isCron()
143
+	{
144
+		return $this->request_type->slug() === RequestTypeContext::CRON;
145
+	}
146
+
147
+
148
+	/**
149
+	 * true if the current request is for a feed (ie: RSS)
150
+	 *
151
+	 * @return bool
152
+	 */
153
+	public function isFeed()
154
+	{
155
+		return $this->request_type->slug() === RequestTypeContext::FEED;
156
+	}
157
+
158
+
159
+	/**
160
+	 * true if the current request is for the frontend and is not being made via AJAX
161
+	 *
162
+	 * @return bool
163
+	 */
164
+	public function isFrontend()
165
+	{
166
+		return $this->request_type->slug() === RequestTypeContext::FRONTEND;
167
+	}
168
+
169
+
170
+	/**
171
+	 * true if the current request is for the frontend AND is being made via AJAX
172
+	 *
173
+	 * @return bool
174
+	 */
175
+	public function isFrontAjax()
176
+	{
177
+		return $this->request_type->slug() === RequestTypeContext::AJAX_FRONT;
178
+	}
179
+
180
+
181
+	/**
182
+	 * true if the current request is for the EE GraphQL manager
183
+	 *
184
+	 * @return bool
185
+	 */
186
+	public function isGQL()
187
+	{
188
+		return $this->request_type->slug() === RequestTypeContext::GQL;
189
+	}
190
+
191
+
192
+	/**
193
+	 * true if the current request is for content that is to be displayed within an iframe
194
+	 *
195
+	 * @return bool
196
+	 */
197
+	public function isIframe()
198
+	{
199
+		return $this->request_type->slug() === RequestTypeContext::IFRAME;
200
+	}
201
+
202
+
203
+	/**
204
+	 * true if the current request is for the WP REST API
205
+	 *
206
+	 * @return bool
207
+	 */
208
+	public function isWordPressApi()
209
+	{
210
+		return $this->request_type->slug() === RequestTypeContext::WP_API;
211
+	}
212
+
213
+
214
+	/**
215
+	 * true if the current request is being made via AJAX for the WP Heartbeat
216
+	 *
217
+	 * @return bool
218
+	 */
219
+	public function isWordPressHeartbeat()
220
+	{
221
+		return $this->request_type->slug() === RequestTypeContext::AJAX_HEARTBEAT;
222
+	}
223
+
224
+
225
+	/**
226
+	 * true if the current request is a loopback sent from WP core to test for errors
227
+	 *
228
+	 * @return bool
229
+	 */
230
+	public function isWordPressScrape()
231
+	{
232
+		return $this->request_type->slug() === RequestTypeContext::WP_SCRAPE;
233
+	}
234
+
235
+
236
+	/**
237
+	 * @return string
238
+	 */
239
+	public function slug()
240
+	{
241
+		return $this->request_type->slug();
242
+	}
243 243
 }
Please login to merge, or discard this patch.
core/domain/services/contexts/RequestTypeContextFactory.php 1 patch
Indentation   +120 added lines, -120 removed lines patch added patch discarded remove patch
@@ -17,128 +17,128 @@
 block discarded – undo
17 17
 class RequestTypeContextFactory implements RequestTypeContextFactoryInterface
18 18
 {
19 19
 
20
-    /**
21
-     * @var LoaderInterface $loader
22
-     */
23
-    private $loader;
20
+	/**
21
+	 * @var LoaderInterface $loader
22
+	 */
23
+	private $loader;
24 24
 
25 25
 
26
-    /**
27
-     * RequestTypeContextFactory constructor.
28
-     *
29
-     * @param LoaderInterface $loader
30
-     */
31
-    public function __construct(LoaderInterface $loader)
32
-    {
33
-        $this->loader = $loader;
34
-    }
26
+	/**
27
+	 * RequestTypeContextFactory constructor.
28
+	 *
29
+	 * @param LoaderInterface $loader
30
+	 */
31
+	public function __construct(LoaderInterface $loader)
32
+	{
33
+		$this->loader = $loader;
34
+	}
35 35
 
36 36
 
37
-    /**
38
-     * @param string $slug
39
-     * @return RequestTypeContext
40
-     */
41
-    public function create($slug)
42
-    {
43
-        switch ($slug) {
44
-            case RequestTypeContext::ACTIVATION:
45
-                $description = esc_html__(
46
-                    'The current request is for some form of activation',
47
-                    'event_espresso'
48
-                );
49
-                break;
50
-            case RequestTypeContext::API:
51
-                $description = esc_html__(
52
-                    'The current request is for the EE REST API',
53
-                    'event_espresso'
54
-                );
55
-                break;
56
-            case RequestTypeContext::AJAX_FRONT:
57
-                $description = esc_html__(
58
-                    'The current request is for the frontend via AJAX',
59
-                    'event_espresso'
60
-                );
61
-                break;
62
-            case RequestTypeContext::AJAX_ADMIN:
63
-                $description = esc_html__(
64
-                    'The current request is for the admin via AJAX',
65
-                    'event_espresso'
66
-                );
67
-                break;
68
-            case RequestTypeContext::AJAX_HEARTBEAT:
69
-                $description = esc_html__(
70
-                    'The current request is for the WP Heartbeat',
71
-                    'event_espresso'
72
-                );
73
-                break;
74
-            case RequestTypeContext::AJAX_OTHER:
75
-                $description = esc_html__(
76
-                    'The current request is for non-EE related code via AJAX',
77
-                    'event_espresso'
78
-                );
79
-                break;
80
-            case RequestTypeContext::CRON:
81
-                $description = esc_html__(
82
-                    'The current request is for a WP_Cron',
83
-                    'event_espresso'
84
-                );
85
-                break;
86
-            case RequestTypeContext::CLI:
87
-                $description = esc_html__(
88
-                    'The current request is from the command line',
89
-                    'event_espresso'
90
-                );
91
-                break;
92
-            case RequestTypeContext::ADMIN:
93
-                $description = esc_html__(
94
-                    'The current request is for the admin',
95
-                    'event_espresso'
96
-                );
97
-                break;
98
-            case RequestTypeContext::IFRAME:
99
-                $description = esc_html__(
100
-                    'The current request is for an iframe',
101
-                    'event_espresso'
102
-                );
103
-                break;
104
-            case RequestTypeContext::FEED:
105
-                $description = esc_html__(
106
-                    'The current request is for a feed (ie: RSS)',
107
-                    'event_espresso'
108
-                );
109
-                break;
110
-            case RequestTypeContext::GQL:
111
-                $description = esc_html__(
112
-                    'The current request is for the EE GraphQL Manager',
113
-                    'event_espresso'
114
-                );
115
-                break;
116
-            case RequestTypeContext::WP_API:
117
-                $description = esc_html__(
118
-                    'The current request is for the WordPress REST API',
119
-                    'event_espresso'
120
-                );
121
-                break;
122
-            case RequestTypeContext::WP_SCRAPE:
123
-                $description = esc_html__(
124
-                    'The current request is for a WordPress loopback scrape',
125
-                    'event_espresso'
126
-                );
127
-                break;
128
-            case RequestTypeContext::FRONTEND:
129
-            default:
130
-                $description = esc_html__(
131
-                    'The current request is for the frontend',
132
-                    'event_espresso'
133
-                );
134
-                break;
135
-        }
136
-        // we're using the Loader with sharing turned on,
137
-        // so that the generated RequestTypeContext object is accessible anywhere
138
-        // by simply requesting it again from the loader
139
-        return $this->loader->getShared(
140
-            'EventEspresso\core\domain\entities\contexts\RequestTypeContext',
141
-            array($slug, $description)
142
-        );
143
-    }
37
+	/**
38
+	 * @param string $slug
39
+	 * @return RequestTypeContext
40
+	 */
41
+	public function create($slug)
42
+	{
43
+		switch ($slug) {
44
+			case RequestTypeContext::ACTIVATION:
45
+				$description = esc_html__(
46
+					'The current request is for some form of activation',
47
+					'event_espresso'
48
+				);
49
+				break;
50
+			case RequestTypeContext::API:
51
+				$description = esc_html__(
52
+					'The current request is for the EE REST API',
53
+					'event_espresso'
54
+				);
55
+				break;
56
+			case RequestTypeContext::AJAX_FRONT:
57
+				$description = esc_html__(
58
+					'The current request is for the frontend via AJAX',
59
+					'event_espresso'
60
+				);
61
+				break;
62
+			case RequestTypeContext::AJAX_ADMIN:
63
+				$description = esc_html__(
64
+					'The current request is for the admin via AJAX',
65
+					'event_espresso'
66
+				);
67
+				break;
68
+			case RequestTypeContext::AJAX_HEARTBEAT:
69
+				$description = esc_html__(
70
+					'The current request is for the WP Heartbeat',
71
+					'event_espresso'
72
+				);
73
+				break;
74
+			case RequestTypeContext::AJAX_OTHER:
75
+				$description = esc_html__(
76
+					'The current request is for non-EE related code via AJAX',
77
+					'event_espresso'
78
+				);
79
+				break;
80
+			case RequestTypeContext::CRON:
81
+				$description = esc_html__(
82
+					'The current request is for a WP_Cron',
83
+					'event_espresso'
84
+				);
85
+				break;
86
+			case RequestTypeContext::CLI:
87
+				$description = esc_html__(
88
+					'The current request is from the command line',
89
+					'event_espresso'
90
+				);
91
+				break;
92
+			case RequestTypeContext::ADMIN:
93
+				$description = esc_html__(
94
+					'The current request is for the admin',
95
+					'event_espresso'
96
+				);
97
+				break;
98
+			case RequestTypeContext::IFRAME:
99
+				$description = esc_html__(
100
+					'The current request is for an iframe',
101
+					'event_espresso'
102
+				);
103
+				break;
104
+			case RequestTypeContext::FEED:
105
+				$description = esc_html__(
106
+					'The current request is for a feed (ie: RSS)',
107
+					'event_espresso'
108
+				);
109
+				break;
110
+			case RequestTypeContext::GQL:
111
+				$description = esc_html__(
112
+					'The current request is for the EE GraphQL Manager',
113
+					'event_espresso'
114
+				);
115
+				break;
116
+			case RequestTypeContext::WP_API:
117
+				$description = esc_html__(
118
+					'The current request is for the WordPress REST API',
119
+					'event_espresso'
120
+				);
121
+				break;
122
+			case RequestTypeContext::WP_SCRAPE:
123
+				$description = esc_html__(
124
+					'The current request is for a WordPress loopback scrape',
125
+					'event_espresso'
126
+				);
127
+				break;
128
+			case RequestTypeContext::FRONTEND:
129
+			default:
130
+				$description = esc_html__(
131
+					'The current request is for the frontend',
132
+					'event_espresso'
133
+				);
134
+				break;
135
+		}
136
+		// we're using the Loader with sharing turned on,
137
+		// so that the generated RequestTypeContext object is accessible anywhere
138
+		// by simply requesting it again from the loader
139
+		return $this->loader->getShared(
140
+			'EventEspresso\core\domain\entities\contexts\RequestTypeContext',
141
+			array($slug, $description)
142
+		);
143
+	}
144 144
 }
Please login to merge, or discard this patch.
core/domain/entities/contexts/RequestTypeContext.php 1 patch
Indentation   +157 added lines, -157 removed lines patch added patch discarded remove patch
@@ -16,161 +16,161 @@
 block discarded – undo
16 16
 class RequestTypeContext extends Context
17 17
 {
18 18
 
19
-    /**
20
-     * indicates that the current request involves some form of activation
21
-     */
22
-    const ACTIVATION = 'activation-request';
23
-
24
-    /**
25
-     * indicates that the current request is for the admin but is not being made via AJAX
26
-     */
27
-    const ADMIN = 'non-ajax-admin-request';
28
-
29
-    /**
30
-     * indicates that the current request is for the admin AND is being made via AJAX
31
-     */
32
-    const AJAX_ADMIN = 'admin-ajax-request';
33
-
34
-    /**
35
-     * indicates that the current request is for the frontend AND is being made via AJAX
36
-     */
37
-    const AJAX_FRONT = 'frontend-ajax-request';
38
-
39
-    /**
40
-     * indicates that the current request is for the WP Heartbeat
41
-     */
42
-    const AJAX_HEARTBEAT = 'admin-ajax-heartbeat';
43
-
44
-    /**
45
-     * indicates that the current request is being made via AJAX, but is NOT for EE
46
-     */
47
-    const AJAX_OTHER = 'other-ajax-request';
48
-
49
-    /**
50
-     * indicates that the current request is for the EE REST API
51
-     */
52
-    const API = 'rest-api';
53
-
54
-    /**
55
-     * indicates that the current request is from the command line
56
-     */
57
-    const CLI = 'command-line';
58
-
59
-    /**
60
-     * indicates that the current request is for a WP_Cron
61
-     */
62
-    const CRON = 'wp-cron';
63
-
64
-    /**
65
-     * indicates that the current request is for a feed (ie: RSS)
66
-     */
67
-    const FEED = 'feed-request';
68
-
69
-    /**
70
-     * indicates that the current request is for the frontend but is not being made via AJAX
71
-     */
72
-    const FRONTEND = 'non-ajax-frontend-request';
73
-
74
-    /**
75
-     * indicates that the current request is for content that is to be displayed within an iframe
76
-     */
77
-    const IFRAME = 'iframe-request';
78
-
79
-    /**
80
-     * indicates that the current request is for the EE GraphQL manager
81
-     */
82
-    const GQL = 'graphql';
83
-
84
-    /**
85
-     * indicates that the current request is for the WP REST API
86
-     */
87
-    const WP_API = 'wp-rest-api';
88
-
89
-    /**
90
-     * indicates that the current request is a loopback sent from WP core to test for errors
91
-     */
92
-    const WP_SCRAPE = 'wordpress-scrape';
93
-
94
-    /**
95
-     * @var boolean $is_activation
96
-     */
97
-    private $is_activation = false;
98
-
99
-    /**
100
-     * @var array $valid_request_types
101
-     */
102
-    private $valid_request_types = array();
103
-
104
-
105
-    /**
106
-     * RequestTypeContext constructor.
107
-     *
108
-     * @param string $slug
109
-     * @param string $description
110
-     * @throws InvalidArgumentException
111
-     */
112
-    public function __construct($slug, $description)
113
-    {
114
-        parent::__construct($slug, $description);
115
-        if (! in_array($this->slug(), $this->validRequestTypes(), true)) {
116
-            throw new InvalidArgumentException(
117
-                sprintf(
118
-                    esc_html__(
119
-                        'The RequestTypeContext slug must be one of the following values: %1$s %2$s',
120
-                        'event_espresso'
121
-                    ),
122
-                    var_export($this->validRequestTypes(), true)
123
-                )
124
-            );
125
-        }
126
-    }
127
-
128
-
129
-    /**
130
-     * @return array
131
-     */
132
-    public function validRequestTypes()
133
-    {
134
-        if (empty($this->valid_request_types)) {
135
-            $this->valid_request_types = apply_filters(
136
-                'FHEE__EventEspresso_core_domain_entities_contexts_RequestTypeContext__validRequestTypes',
137
-                array(
138
-                    RequestTypeContext::ACTIVATION,
139
-                    RequestTypeContext::ADMIN,
140
-                    RequestTypeContext::AJAX_ADMIN,
141
-                    RequestTypeContext::AJAX_FRONT,
142
-                    RequestTypeContext::AJAX_HEARTBEAT,
143
-                    RequestTypeContext::AJAX_OTHER,
144
-                    RequestTypeContext::API,
145
-                    RequestTypeContext::CLI,
146
-                    RequestTypeContext::CRON,
147
-                    RequestTypeContext::FEED,
148
-                    RequestTypeContext::FRONTEND,
149
-                    RequestTypeContext::GQL,
150
-                    RequestTypeContext::IFRAME,
151
-                    RequestTypeContext::WP_API,
152
-                    RequestTypeContext::WP_SCRAPE,
153
-                )
154
-            );
155
-        }
156
-        return $this->valid_request_types;
157
-    }
158
-
159
-
160
-    /**
161
-     * @return bool
162
-     */
163
-    public function isActivation()
164
-    {
165
-        return $this->is_activation;
166
-    }
167
-
168
-
169
-    /**
170
-     * @param bool $is_activation
171
-     */
172
-    public function setIsActivation($is_activation)
173
-    {
174
-        $this->is_activation = filter_var($is_activation, FILTER_VALIDATE_BOOLEAN);
175
-    }
19
+	/**
20
+	 * indicates that the current request involves some form of activation
21
+	 */
22
+	const ACTIVATION = 'activation-request';
23
+
24
+	/**
25
+	 * indicates that the current request is for the admin but is not being made via AJAX
26
+	 */
27
+	const ADMIN = 'non-ajax-admin-request';
28
+
29
+	/**
30
+	 * indicates that the current request is for the admin AND is being made via AJAX
31
+	 */
32
+	const AJAX_ADMIN = 'admin-ajax-request';
33
+
34
+	/**
35
+	 * indicates that the current request is for the frontend AND is being made via AJAX
36
+	 */
37
+	const AJAX_FRONT = 'frontend-ajax-request';
38
+
39
+	/**
40
+	 * indicates that the current request is for the WP Heartbeat
41
+	 */
42
+	const AJAX_HEARTBEAT = 'admin-ajax-heartbeat';
43
+
44
+	/**
45
+	 * indicates that the current request is being made via AJAX, but is NOT for EE
46
+	 */
47
+	const AJAX_OTHER = 'other-ajax-request';
48
+
49
+	/**
50
+	 * indicates that the current request is for the EE REST API
51
+	 */
52
+	const API = 'rest-api';
53
+
54
+	/**
55
+	 * indicates that the current request is from the command line
56
+	 */
57
+	const CLI = 'command-line';
58
+
59
+	/**
60
+	 * indicates that the current request is for a WP_Cron
61
+	 */
62
+	const CRON = 'wp-cron';
63
+
64
+	/**
65
+	 * indicates that the current request is for a feed (ie: RSS)
66
+	 */
67
+	const FEED = 'feed-request';
68
+
69
+	/**
70
+	 * indicates that the current request is for the frontend but is not being made via AJAX
71
+	 */
72
+	const FRONTEND = 'non-ajax-frontend-request';
73
+
74
+	/**
75
+	 * indicates that the current request is for content that is to be displayed within an iframe
76
+	 */
77
+	const IFRAME = 'iframe-request';
78
+
79
+	/**
80
+	 * indicates that the current request is for the EE GraphQL manager
81
+	 */
82
+	const GQL = 'graphql';
83
+
84
+	/**
85
+	 * indicates that the current request is for the WP REST API
86
+	 */
87
+	const WP_API = 'wp-rest-api';
88
+
89
+	/**
90
+	 * indicates that the current request is a loopback sent from WP core to test for errors
91
+	 */
92
+	const WP_SCRAPE = 'wordpress-scrape';
93
+
94
+	/**
95
+	 * @var boolean $is_activation
96
+	 */
97
+	private $is_activation = false;
98
+
99
+	/**
100
+	 * @var array $valid_request_types
101
+	 */
102
+	private $valid_request_types = array();
103
+
104
+
105
+	/**
106
+	 * RequestTypeContext constructor.
107
+	 *
108
+	 * @param string $slug
109
+	 * @param string $description
110
+	 * @throws InvalidArgumentException
111
+	 */
112
+	public function __construct($slug, $description)
113
+	{
114
+		parent::__construct($slug, $description);
115
+		if (! in_array($this->slug(), $this->validRequestTypes(), true)) {
116
+			throw new InvalidArgumentException(
117
+				sprintf(
118
+					esc_html__(
119
+						'The RequestTypeContext slug must be one of the following values: %1$s %2$s',
120
+						'event_espresso'
121
+					),
122
+					var_export($this->validRequestTypes(), true)
123
+				)
124
+			);
125
+		}
126
+	}
127
+
128
+
129
+	/**
130
+	 * @return array
131
+	 */
132
+	public function validRequestTypes()
133
+	{
134
+		if (empty($this->valid_request_types)) {
135
+			$this->valid_request_types = apply_filters(
136
+				'FHEE__EventEspresso_core_domain_entities_contexts_RequestTypeContext__validRequestTypes',
137
+				array(
138
+					RequestTypeContext::ACTIVATION,
139
+					RequestTypeContext::ADMIN,
140
+					RequestTypeContext::AJAX_ADMIN,
141
+					RequestTypeContext::AJAX_FRONT,
142
+					RequestTypeContext::AJAX_HEARTBEAT,
143
+					RequestTypeContext::AJAX_OTHER,
144
+					RequestTypeContext::API,
145
+					RequestTypeContext::CLI,
146
+					RequestTypeContext::CRON,
147
+					RequestTypeContext::FEED,
148
+					RequestTypeContext::FRONTEND,
149
+					RequestTypeContext::GQL,
150
+					RequestTypeContext::IFRAME,
151
+					RequestTypeContext::WP_API,
152
+					RequestTypeContext::WP_SCRAPE,
153
+				)
154
+			);
155
+		}
156
+		return $this->valid_request_types;
157
+	}
158
+
159
+
160
+	/**
161
+	 * @return bool
162
+	 */
163
+	public function isActivation()
164
+	{
165
+		return $this->is_activation;
166
+	}
167
+
168
+
169
+	/**
170
+	 * @param bool $is_activation
171
+	 */
172
+	public function setIsActivation($is_activation)
173
+	{
174
+		$this->is_activation = filter_var($is_activation, FILTER_VALIDATE_BOOLEAN);
175
+	}
176 176
 }
Please login to merge, or discard this patch.
core/libraries/rest_api/controllers/model/Read.php 3 patches
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -717,7 +717,7 @@  discard block
 block discarded – undo
717 717
      *
718 718
      * @param EEM_Base $model
719 719
      * @param          $results_so_far
720
-     * @param          $protected
720
+     * @param          boolean $protected
721 721
      * @return array results
722 722
      * @throws EE_Error
723 723
      * @since 4.9.74.p
@@ -1545,7 +1545,7 @@  discard block
 block discarded – undo
1545 1545
      *
1546 1546
      * @param EEM_Base        $model
1547 1547
      * @param WP_REST_Request $request
1548
-     * @param null            $context
1548
+     * @param string            $context
1549 1549
      * @return array
1550 1550
      * @throws EE_Error
1551 1551
      * @throws InvalidArgumentException
Please login to merge, or discard this patch.
Indentation   +1617 added lines, -1617 removed lines patch added patch discarded remove patch
@@ -52,1621 +52,1621 @@
 block discarded – undo
52 52
 {
53 53
 
54 54
 
55
-    /**
56
-     * @var CalculatedModelFields
57
-     */
58
-    protected $fields_calculator;
59
-
60
-
61
-    /**
62
-     * Read constructor.
63
-     * @param CalculatedModelFields $fields_calculator
64
-     */
65
-    public function __construct(CalculatedModelFields $fields_calculator)
66
-    {
67
-        parent::__construct();
68
-        $this->fields_calculator = $fields_calculator;
69
-    }
70
-
71
-
72
-    /**
73
-     * Handles requests to get all (or a filtered subset) of entities for a particular model
74
-     *
75
-     * @param WP_REST_Request $request
76
-     * @param string $version
77
-     * @param string $model_name
78
-     * @return WP_REST_Response|WP_Error
79
-     * @throws InvalidArgumentException
80
-     * @throws InvalidDataTypeException
81
-     * @throws InvalidInterfaceException
82
-     */
83
-    public static function handleRequestGetAll(WP_REST_Request $request, $version, $model_name)
84
-    {
85
-        /** @var Read $controller */
86
-        $controller = LoaderFactory::getLoader()->getNew('EventEspresso\core\libraries\rest_api\controllers\model\Read');
87
-        try {
88
-            $controller->setRequestedVersion($version);
89
-            if (! $controller->getModelVersionInfo()->isModelNameInThisVersion($model_name)) {
90
-                return $controller->sendResponse(
91
-                    new WP_Error(
92
-                        'endpoint_parsing_error',
93
-                        sprintf(
94
-                            __(
95
-                                'There is no model for endpoint %s. Please contact event espresso support',
96
-                                'event_espresso'
97
-                            ),
98
-                            $model_name
99
-                        )
100
-                    )
101
-                );
102
-            }
103
-            return $controller->sendResponse(
104
-                $controller->getEntitiesFromModel(
105
-                    $controller->getModelVersionInfo()->loadModel($model_name),
106
-                    $request
107
-                )
108
-            );
109
-        } catch (Exception $e) {
110
-            return $controller->sendResponse($e);
111
-        }
112
-    }
113
-
114
-
115
-    /**
116
-     * Prepares and returns schema for any OPTIONS request.
117
-     *
118
-     * @param string $version The API endpoint version being used.
119
-     * @param string $model_name Something like `Event` or `Registration`
120
-     * @return array
121
-     * @throws InvalidArgumentException
122
-     * @throws InvalidDataTypeException
123
-     * @throws InvalidInterfaceException
124
-     */
125
-    public static function handleSchemaRequest($version, $model_name)
126
-    {
127
-        /** @var Read $controller */
128
-        $controller = LoaderFactory::getLoader()->getNew('EventEspresso\core\libraries\rest_api\controllers\model\Read');
129
-        try {
130
-            $controller->setRequestedVersion($version);
131
-            if (! $controller->getModelVersionInfo()->isModelNameInThisVersion($model_name)) {
132
-                return array();
133
-            }
134
-            // get the model for this version
135
-            $model = $controller->getModelVersionInfo()->loadModel($model_name);
136
-            $model_schema = new JsonModelSchema($model, LoaderFactory::getLoader()->getShared('EventEspresso\core\libraries\rest_api\CalculatedModelFields'));
137
-            return $model_schema->getModelSchemaForRelations(
138
-                $controller->getModelVersionInfo()->relationSettings($model),
139
-                $controller->customizeSchemaForRestResponse(
140
-                    $model,
141
-                    $model_schema->getModelSchemaForFields(
142
-                        $controller->getModelVersionInfo()->fieldsOnModelInThisVersion($model),
143
-                        $model_schema->getInitialSchemaStructure()
144
-                    )
145
-                )
146
-            );
147
-        } catch (Exception $e) {
148
-            return array();
149
-        }
150
-    }
151
-
152
-
153
-    /**
154
-     * This loops through each field in the given schema for the model and does the following:
155
-     * - add any extra fields that are REST API specific and related to existing fields.
156
-     * - transform default values into the correct format for a REST API response.
157
-     *
158
-     * @param EEM_Base $model
159
-     * @param array    $schema
160
-     * @return array  The final schema.
161
-     * @throws EE_Error
162
-     */
163
-    public function customizeSchemaForRestResponse(EEM_Base $model, array $schema)
164
-    {
165
-        foreach ($this->getModelVersionInfo()->fieldsOnModelInThisVersion($model) as $field_name => $field) {
166
-            $schema = $this->translateDefaultsForRestResponse(
167
-                $field_name,
168
-                $field,
169
-                $this->maybeAddExtraFieldsToSchema($field_name, $field, $schema)
170
-            );
171
-        }
172
-        return $schema;
173
-    }
174
-
175
-
176
-    /**
177
-     * This is used to ensure that the 'default' value set in the schema response is formatted correctly for the REST
178
-     * response.
179
-     *
180
-     * @param                      $field_name
181
-     * @param EE_Model_Field_Base  $field
182
-     * @param array                $schema
183
-     * @return array
184
-     * @throws EE_Error
185
-     */
186
-    protected function translateDefaultsForRestResponse($field_name, EE_Model_Field_Base $field, array $schema)
187
-    {
188
-        if (isset($schema['properties'][ $field_name ]['default'])) {
189
-            if (is_array($schema['properties'][ $field_name ]['default'])) {
190
-                foreach ($schema['properties'][ $field_name ]['default'] as $default_key => $default_value) {
191
-                    if ($default_key === 'raw') {
192
-                        $schema['properties'][ $field_name ]['default'][ $default_key ] =
193
-                            ModelDataTranslator::prepareFieldValueForJson(
194
-                                $field,
195
-                                $default_value,
196
-                                $this->getModelVersionInfo()->requestedVersion()
197
-                            );
198
-                    }
199
-                }
200
-            } else {
201
-                $schema['properties'][ $field_name ]['default'] = ModelDataTranslator::prepareFieldValueForJson(
202
-                    $field,
203
-                    $schema['properties'][ $field_name ]['default'],
204
-                    $this->getModelVersionInfo()->requestedVersion()
205
-                );
206
-            }
207
-        }
208
-        return $schema;
209
-    }
210
-
211
-
212
-    /**
213
-     * Adds additional fields to the schema
214
-     * The REST API returns a GMT value field for each datetime field in the resource.  Thus the description about this
215
-     * needs to be added to the schema.
216
-     *
217
-     * @param                      $field_name
218
-     * @param EE_Model_Field_Base  $field
219
-     * @param array                $schema
220
-     * @return array
221
-     */
222
-    protected function maybeAddExtraFieldsToSchema($field_name, EE_Model_Field_Base $field, array $schema)
223
-    {
224
-        if ($field instanceof EE_Datetime_Field) {
225
-            $schema['properties'][ $field_name . '_gmt' ] = $field->getSchema();
226
-            // modify the description
227
-            $schema['properties'][ $field_name . '_gmt' ]['description'] = sprintf(
228
-                esc_html__('%s - the value for this field is in GMT.', 'event_espresso'),
229
-                wp_specialchars_decode($field->get_nicename(), ENT_QUOTES)
230
-            );
231
-        }
232
-        return $schema;
233
-    }
234
-
235
-
236
-    /**
237
-     * Used to figure out the route from the request when a `WP_REST_Request` object is not available
238
-     *
239
-     * @return string
240
-     */
241
-    protected function getRouteFromRequest()
242
-    {
243
-        if (isset($GLOBALS['wp'])
244
-            && $GLOBALS['wp'] instanceof WP
245
-            && isset($GLOBALS['wp']->query_vars['rest_route'])
246
-        ) {
247
-            return $GLOBALS['wp']->query_vars['rest_route'];
248
-        }
249
-        return isset($_SERVER['PATH_INFO']) ? $_SERVER['PATH_INFO'] : '/';
250
-    }
251
-
252
-
253
-    /**
254
-     * Gets a single entity related to the model indicated in the path and its id
255
-     *
256
-     * @param WP_REST_Request $request
257
-     * @param string $version
258
-     * @param string $model_name
259
-     * @return WP_REST_Response|WP_Error
260
-     * @throws InvalidDataTypeException
261
-     * @throws InvalidInterfaceException
262
-     * @throws InvalidArgumentException
263
-     */
264
-    public static function handleRequestGetOne(WP_REST_Request $request, $version, $model_name)
265
-    {
266
-        $controller = LoaderFactory::getLoader()->getNew('EventEspresso\core\libraries\rest_api\controllers\model\Read');
267
-        try {
268
-            $controller->setRequestedVersion($version);
269
-            if (! $controller->getModelVersionInfo()->isModelNameInThisVersion($model_name)) {
270
-                return $controller->sendResponse(
271
-                    new WP_Error(
272
-                        'endpoint_parsing_error',
273
-                        sprintf(
274
-                            __(
275
-                                'There is no model for endpoint %s. Please contact event espresso support',
276
-                                'event_espresso'
277
-                            ),
278
-                            $model_name
279
-                        )
280
-                    )
281
-                );
282
-            }
283
-            return $controller->sendResponse(
284
-                $controller->getEntityFromModel(
285
-                    $controller->getModelVersionInfo()->loadModel($model_name),
286
-                    $request
287
-                )
288
-            );
289
-        } catch (Exception $e) {
290
-            return $controller->sendResponse($e);
291
-        }
292
-    }
293
-
294
-
295
-    /**
296
-     * Gets all the related entities (or if its a belongs-to relation just the one)
297
-     * to the item with the given id
298
-     *
299
-     * @param WP_REST_Request $request
300
-     * @param string $version
301
-     * @param string $model_name
302
-     * @param string $related_model_name
303
-     * @return WP_REST_Response|WP_Error
304
-     * @throws InvalidDataTypeException
305
-     * @throws InvalidInterfaceException
306
-     * @throws InvalidArgumentException
307
-     */
308
-    public static function handleRequestGetRelated(
309
-        WP_REST_Request $request,
310
-        $version,
311
-        $model_name,
312
-        $related_model_name
313
-    ) {
314
-        $controller = LoaderFactory::getLoader()->getNew('EventEspresso\core\libraries\rest_api\controllers\model\Read');
315
-        try {
316
-            $controller->setRequestedVersion($version);
317
-            $main_model = $controller->validateModel($model_name);
318
-            $controller->validateModel($related_model_name);
319
-            return $controller->sendResponse(
320
-                $controller->getEntitiesFromRelation(
321
-                    $request->get_param('id'),
322
-                    $main_model->related_settings_for($related_model_name),
323
-                    $request
324
-                )
325
-            );
326
-        } catch (Exception $e) {
327
-            return $controller->sendResponse($e);
328
-        }
329
-    }
330
-
331
-
332
-    /**
333
-     * Gets a collection for the given model and filters
334
-     *
335
-     * @param EEM_Base        $model
336
-     * @param WP_REST_Request $request
337
-     * @return array
338
-     * @throws DomainException
339
-     * @throws EE_Error
340
-     * @throws InvalidArgumentException
341
-     * @throws InvalidDataTypeException
342
-     * @throws InvalidInterfaceException
343
-     * @throws ModelConfigurationException
344
-     * @throws ReflectionException
345
-     * @throws RestException
346
-     * @throws RestPasswordIncorrectException
347
-     * @throws RestPasswordRequiredException
348
-     * @throws UnexpectedEntityException
349
-     */
350
-    public function getEntitiesFromModel($model, $request)
351
-    {
352
-        $query_params = $this->createModelQueryParams($model, $request->get_params());
353
-        if (! Capabilities::currentUserHasPartialAccessTo($model, $query_params['caps'])) {
354
-            $model_name_plural = EEH_Inflector::pluralize_and_lower($model->get_this_model_name());
355
-            throw new RestException(
356
-                sprintf('rest_%s_cannot_list', $model_name_plural),
357
-                sprintf(
358
-                    __('Sorry, you are not allowed to list %1$s. Missing permissions: %2$s', 'event_espresso'),
359
-                    $model_name_plural,
360
-                    Capabilities::getMissingPermissionsString($model, $query_params['caps'])
361
-                ),
362
-                array('status' => 403)
363
-            );
364
-        }
365
-        if (! $request->get_header('no_rest_headers')) {
366
-            $this->setHeadersFromQueryParams($model, $query_params);
367
-        }
368
-        /** @type array $results */
369
-        $results = $model->get_all_wpdb_results($query_params);
370
-        $nice_results = array();
371
-        foreach ($results as $result) {
372
-            $nice_results[] =  $this->createEntityFromWpdbResult(
373
-                $model,
374
-                $result,
375
-                $request
376
-            );
377
-        }
378
-        return $nice_results;
379
-    }
380
-
381
-
382
-    /**
383
-     * Gets the collection for given relation object
384
-     * The same as Read::get_entities_from_model(), except if the relation
385
-     * is a HABTM relation, in which case it merges any non-foreign-key fields from
386
-     * the join-model-object into the results
387
-     *
388
-     * @param array                  $primary_model_query_params  query params for finding the item from which
389
-     *                                                            relations will be based
390
-     * @param EE_Model_Relation_Base $relation
391
-     * @param WP_REST_Request        $request
392
-     * @return array
393
-     * @throws DomainException
394
-     * @throws EE_Error
395
-     * @throws InvalidArgumentException
396
-     * @throws InvalidDataTypeException
397
-     * @throws InvalidInterfaceException
398
-     * @throws ModelConfigurationException
399
-     * @throws ReflectionException
400
-     * @throws RestException
401
-     * @throws ModelConfigurationException
402
-     * @throws UnexpectedEntityException
403
-     */
404
-    protected function getEntitiesFromRelationUsingModelQueryParams($primary_model_query_params, $relation, $request)
405
-    {
406
-        $context = $this->validateContext($request->get_param('caps'));
407
-        $model = $relation->get_this_model();
408
-        $related_model = $relation->get_other_model();
409
-        if (! isset($primary_model_query_params[0])) {
410
-            $primary_model_query_params[0] = array();
411
-        }
412
-        // check if they can access the 1st model object
413
-        $primary_model_query_params = array(
414
-            0       => $primary_model_query_params[0],
415
-            'limit' => 1,
416
-        );
417
-        if ($model instanceof EEM_Soft_Delete_Base) {
418
-            $primary_model_query_params = $model->alter_query_params_so_deleted_and_undeleted_items_included(
419
-                $primary_model_query_params
420
-            );
421
-        }
422
-        $restricted_query_params = $primary_model_query_params;
423
-        $restricted_query_params['caps'] = $context;
424
-        $restricted_query_params['limit'] = 1;
425
-        $this->setDebugInfo('main model query params', $restricted_query_params);
426
-        $this->setDebugInfo('missing caps', Capabilities::getMissingPermissionsString($related_model, $context));
427
-        $primary_model_rows = $model->get_all_wpdb_results($restricted_query_params);
428
-        $primary_model_row = null;
429
-        if (is_array($primary_model_rows)) {
430
-            $primary_model_row = reset($primary_model_rows);
431
-        }
432
-        if (! (
433
-            $primary_model_row
434
-            && Capabilities::currentUserHasPartialAccessTo($related_model, $context)
435
-        )
436
-        ) {
437
-            if ($relation instanceof EE_Belongs_To_Relation) {
438
-                $related_model_name_maybe_plural = strtolower($related_model->get_this_model_name());
439
-            } else {
440
-                $related_model_name_maybe_plural = EEH_Inflector::pluralize_and_lower(
441
-                    $related_model->get_this_model_name()
442
-                );
443
-            }
444
-            throw new RestException(
445
-                sprintf('rest_%s_cannot_list', $related_model_name_maybe_plural),
446
-                sprintf(
447
-                    __(
448
-                        'Sorry, you are not allowed to list %1$s related to %2$s. Missing permissions: %3$s',
449
-                        'event_espresso'
450
-                    ),
451
-                    $related_model_name_maybe_plural,
452
-                    $relation->get_this_model()->get_this_model_name(),
453
-                    implode(
454
-                        ',',
455
-                        array_keys(
456
-                            Capabilities::getMissingPermissions($related_model, $context)
457
-                        )
458
-                    )
459
-                ),
460
-                array('status' => 403)
461
-            );
462
-        }
463
-
464
-        $this->checkPassword(
465
-            $model,
466
-            $primary_model_row,
467
-            $restricted_query_params,
468
-            $request
469
-        );
470
-        $query_params = $this->createModelQueryParams($relation->get_other_model(), $request->get_params());
471
-        foreach ($primary_model_query_params[0] as $where_condition_key => $where_condition_value) {
472
-            $query_params[0][ $relation->get_this_model()->get_this_model_name()
473
-                              . '.'
474
-                              . $where_condition_key ] = $where_condition_value;
475
-        }
476
-        $query_params['default_where_conditions'] = 'none';
477
-        $query_params['caps'] = $context;
478
-        if (! $request->get_header('no_rest_headers')) {
479
-            $this->setHeadersFromQueryParams($relation->get_other_model(), $query_params);
480
-        }
481
-        /** @type array $results */
482
-        $results = $relation->get_other_model()->get_all_wpdb_results($query_params);
483
-        $nice_results = array();
484
-        foreach ($results as $result) {
485
-            $nice_result = $this->createEntityFromWpdbResult(
486
-                $relation->get_other_model(),
487
-                $result,
488
-                $request
489
-            );
490
-            if ($relation instanceof EE_HABTM_Relation) {
491
-                // put the unusual stuff (properties from the HABTM relation) first, and make sure
492
-                // if there are conflicts we prefer the properties from the main model
493
-                $join_model_result = $this->createEntityFromWpdbResult(
494
-                    $relation->get_join_model(),
495
-                    $result,
496
-                    $request
497
-                );
498
-                $joined_result = array_merge($join_model_result, $nice_result);
499
-                // but keep the meta stuff from the main model
500
-                if (isset($nice_result['meta'])) {
501
-                    $joined_result['meta'] = $nice_result['meta'];
502
-                }
503
-                $nice_result = $joined_result;
504
-            }
505
-            $nice_results[] = $nice_result;
506
-        }
507
-        if ($relation instanceof EE_Belongs_To_Relation) {
508
-            return array_shift($nice_results);
509
-        } else {
510
-            return $nice_results;
511
-        }
512
-    }
513
-
514
-
515
-    /**
516
-     * Gets the collection for given relation object
517
-     * The same as Read::get_entities_from_model(), except if the relation
518
-     * is a HABTM relation, in which case it merges any non-foreign-key fields from
519
-     * the join-model-object into the results
520
-     *
521
-     * @param string                 $id the ID of the thing we are fetching related stuff from
522
-     * @param EE_Model_Relation_Base $relation
523
-     * @param WP_REST_Request        $request
524
-     * @return array
525
-     * @throws DomainException
526
-     * @throws EE_Error
527
-     * @throws InvalidArgumentException
528
-     * @throws InvalidDataTypeException
529
-     * @throws InvalidInterfaceException
530
-     * @throws ReflectionException
531
-     * @throws RestException
532
-     * @throws ModelConfigurationException
533
-     * @throws UnexpectedEntityException
534
-     */
535
-    public function getEntitiesFromRelation($id, $relation, $request)
536
-    {
537
-        if (! $relation->get_this_model()->has_primary_key_field()) {
538
-            throw new EE_Error(
539
-                sprintf(
540
-                    __(
541
-                    // @codingStandardsIgnoreStart
542
-                        'Read::get_entities_from_relation should only be called from a model with a primary key, it was called from %1$s',
543
-                        // @codingStandardsIgnoreEnd
544
-                        'event_espresso'
545
-                    ),
546
-                    $relation->get_this_model()->get_this_model_name()
547
-                )
548
-            );
549
-        }
550
-        // can we edit that main item?
551
-        // if not, show nothing but an error
552
-        // otherwise, please proceed
553
-        return $this->getEntitiesFromRelationUsingModelQueryParams(
554
-            array(
555
-                array(
556
-                    $relation->get_this_model()->primary_key_name() => $id,
557
-                ),
558
-            ),
559
-            $relation,
560
-            $request
561
-        );
562
-    }
563
-
564
-
565
-    /**
566
-     * Sets the headers that are based on the model and query params,
567
-     * like the total records. This should only be called on the original request
568
-     * from the client, not on subsequent internal
569
-     *
570
-     * @param EEM_Base $model
571
-     * @param array    $query_params
572
-     * @return void
573
-     * @throws EE_Error
574
-     */
575
-    protected function setHeadersFromQueryParams($model, $query_params)
576
-    {
577
-        $this->setDebugInfo('model query params', $query_params);
578
-        $this->setDebugInfo(
579
-            'missing caps',
580
-            Capabilities::getMissingPermissionsString($model, $query_params['caps'])
581
-        );
582
-        // normally the limit to a 2-part array, where the 2nd item is the limit
583
-        if (! isset($query_params['limit'])) {
584
-            $query_params['limit'] = EED_Core_Rest_Api::get_default_query_limit();
585
-        }
586
-        if (is_array($query_params['limit'])) {
587
-            $limit_parts = $query_params['limit'];
588
-        } else {
589
-            $limit_parts = explode(',', $query_params['limit']);
590
-            if (count($limit_parts) === 1) {
591
-                $limit_parts = array(0, $limit_parts[0]);
592
-            }
593
-        }
594
-        // remove the group by and having parts of the query, as those will
595
-        // make the sql query return an array of values, instead of just a single value
596
-        unset($query_params['group_by'], $query_params['having'], $query_params['limit']);
597
-        $count = $model->count($query_params, null, true);
598
-        $pages = $count / $limit_parts[1];
599
-        $this->setResponseHeader('Total', $count, false);
600
-        $this->setResponseHeader('PageSize', $limit_parts[1], false);
601
-        $this->setResponseHeader('TotalPages', ceil($pages), false);
602
-    }
603
-
604
-
605
-    /**
606
-     * Changes database results into REST API entities
607
-     *
608
-     * @param EEM_Base        $model
609
-     * @param array           $db_row     like results from $wpdb->get_results()
610
-     * @param WP_REST_Request $rest_request
611
-     * @param string          $deprecated no longer used
612
-     * @return array ready for being converted into json for sending to client
613
-     * @throws DomainException
614
-     * @throws EE_Error
615
-     * @throws InvalidArgumentException
616
-     * @throws InvalidDataTypeException
617
-     * @throws InvalidInterfaceException
618
-     * @throws ModelConfigurationException
619
-     * @throws ReflectionException
620
-     * @throws RestException
621
-     * @throws RestPasswordIncorrectException
622
-     * @throws RestPasswordRequiredException
623
-     * @throws UnexpectedEntityException
624
-     */
625
-    public function createEntityFromWpdbResult($model, $db_row, $rest_request, $deprecated = null)
626
-    {
627
-        if (! $rest_request instanceof WP_REST_Request) {
628
-            // ok so this was called in the old style, where the 3rd arg was
629
-            // $include, and the 4th arg was $context
630
-            // now setup the request just to avoid fatal errors, although we won't be able
631
-            // to truly make use of it because it's kinda devoid of info
632
-            $rest_request = new WP_REST_Request();
633
-            $rest_request->set_param('include', $rest_request);
634
-            $rest_request->set_param('caps', $deprecated);
635
-        }
636
-        if ($rest_request->get_param('caps') === null) {
637
-            $rest_request->set_param('caps', EEM_Base::caps_read);
638
-        }
639
-        $current_user_full_access_to_entity = $model->currentUserCan(
640
-            EEM_Base::caps_read_admin,
641
-            $model->deduce_fields_n_values_from_cols_n_values($db_row)
642
-        );
643
-        $entity_array = $this->createBareEntityFromWpdbResults($model, $db_row);
644
-        $entity_array = $this->addExtraFields($model, $db_row, $entity_array);
645
-        $entity_array['_links'] = $this->getEntityLinks($model, $db_row, $entity_array);
646
-        // when it's a regular read request for a model with a password and the password wasn't provided
647
-        // remove the password protected fields
648
-        $has_protected_fields = false;
649
-        try {
650
-            $this->checkPassword(
651
-                $model,
652
-                $db_row,
653
-                $model->alter_query_params_to_restrict_by_ID(
654
-                    $model->get_index_primary_key_string(
655
-                        $model->deduce_fields_n_values_from_cols_n_values($db_row)
656
-                    )
657
-                ),
658
-                $rest_request
659
-            );
660
-        } catch (RestPasswordRequiredException $e) {
661
-            if ($model->hasPassword()) {
662
-                // just remove protected fields
663
-                $has_protected_fields = true;
664
-                $entity_array = Capabilities::filterOutPasswordProtectedFields(
665
-                    $entity_array,
666
-                    $model,
667
-                    $this->getModelVersionInfo()
668
-                );
669
-            } else {
670
-                // that's a problem. None of this should be accessible if no password was provided
671
-                throw $e;
672
-            }
673
-        }
674
-
675
-        $entity_array['_calculated_fields'] = $this->getEntityCalculations($model, $db_row, $rest_request, $has_protected_fields);
676
-        $entity_array = apply_filters(
677
-            'FHEE__Read__create_entity_from_wpdb_results__entity_before_including_requested_models',
678
-            $entity_array,
679
-            $model,
680
-            $rest_request->get_param('caps'),
681
-            $rest_request,
682
-            $this
683
-        );
684
-        // add an empty protected property for now. If it's still around after we remove everything the request didn't
685
-        // want, we'll populate it then. k?
686
-        $entity_array['_protected'] = array();
687
-        // remove any properties the request didn't want. This way _protected won't bother mentioning them
688
-        $entity_array = $this->includeOnlyRequestedProperties($model, $rest_request, $entity_array);
689
-        $entity_array = $this->includeRequestedModels($model, $rest_request, $entity_array, $db_row, $has_protected_fields);
690
-        // if they still wanted the _protected property, add it.
691
-        if (isset($entity_array['_protected'])) {
692
-            $entity_array = $this->addProtectedProperty($model, $entity_array, $has_protected_fields);
693
-        }
694
-        $entity_array = apply_filters(
695
-            'FHEE__Read__create_entity_from_wpdb_results__entity_before_inaccessible_field_removal',
696
-            $entity_array,
697
-            $model,
698
-            $rest_request->get_param('caps'),
699
-            $rest_request,
700
-            $this
701
-        );
702
-        if (! $current_user_full_access_to_entity) {
703
-            $result_without_inaccessible_fields = Capabilities::filterOutInaccessibleEntityFields(
704
-                $entity_array,
705
-                $model,
706
-                $rest_request->get_param('caps'),
707
-                $this->getModelVersionInfo()
708
-            );
709
-        } else {
710
-            $result_without_inaccessible_fields = $entity_array;
711
-        }
712
-        $this->setDebugInfo(
713
-            'inaccessible fields',
714
-            array_keys(array_diff_key((array) $entity_array, (array) $result_without_inaccessible_fields))
715
-        );
716
-        return apply_filters(
717
-            'FHEE__Read__create_entity_from_wpdb_results__entity_return',
718
-            $result_without_inaccessible_fields,
719
-            $model,
720
-            $rest_request->get_param('caps')
721
-        );
722
-    }
723
-
724
-
725
-    /**
726
-     * Returns an array describing which fields can be protected, and which actually were removed this request
727
-     *
728
-     * @param EEM_Base $model
729
-     * @param          $results_so_far
730
-     * @param          $protected
731
-     * @return array results
732
-     * @throws EE_Error
733
-     * @since 4.9.74.p
734
-     */
735
-    protected function addProtectedProperty(EEM_Base $model, $results_so_far, $protected)
736
-    {
737
-        if (! $protected || ! $model->hasPassword()) {
738
-            return $results_so_far;
739
-        }
740
-        $password_field = $model->getPasswordField();
741
-        $all_protected = array_merge(
742
-            array($password_field->get_name()),
743
-            $password_field->protectedFields()
744
-        );
745
-        $fields_included = array_keys($results_so_far);
746
-        $fields_included = array_intersect(
747
-            $all_protected,
748
-            $fields_included
749
-        );
750
-        foreach ($fields_included as $field_name) {
751
-            $results_so_far['_protected'][] = $field_name ;
752
-        }
753
-        return $results_so_far;
754
-    }
755
-
756
-
757
-    /**
758
-     * Creates a REST entity array (JSON object we're going to return in the response, but
759
-     * for now still a PHP array, but soon enough we'll call json_encode on it, don't worry),
760
-     * from $wpdb->get_row( $sql, ARRAY_A)
761
-     *
762
-     * @param EEM_Base $model
763
-     * @param array    $db_row
764
-     * @return array entity mostly ready for converting to JSON and sending in the response
765
-     * @throws EE_Error
766
-     * @throws InvalidArgumentException
767
-     * @throws InvalidDataTypeException
768
-     * @throws InvalidInterfaceException
769
-     * @throws ReflectionException
770
-     * @throws RestException
771
-     */
772
-    protected function createBareEntityFromWpdbResults(EEM_Base $model, $db_row)
773
-    {
774
-        $result = $model->deduce_fields_n_values_from_cols_n_values($db_row);
775
-        $result = array_intersect_key(
776
-            $result,
777
-            $this->getModelVersionInfo()->fieldsOnModelInThisVersion($model)
778
-        );
779
-        // if this is a CPT, we need to set the global $post to it,
780
-        // otherwise shortcodes etc won't work properly while rendering it
781
-        if ($model instanceof EEM_CPT_Base) {
782
-            $do_chevy_shuffle = true;
783
-        } else {
784
-            $do_chevy_shuffle = false;
785
-        }
786
-        if ($do_chevy_shuffle) {
787
-            global $post;
788
-            $old_post = $post;
789
-            $post = get_post($result[ $model->primary_key_name() ]);
790
-            if (! $post instanceof WP_Post) {
791
-                // well that's weird, because $result is what we JUST fetched from the database
792
-                throw new RestException(
793
-                    'error_fetching_post_from_database_results',
794
-                    esc_html__(
795
-                        'An item was retrieved from the database but it\'s not a WP_Post like it should be.',
796
-                        'event_espresso'
797
-                    )
798
-                );
799
-            }
800
-            $model_object_classname = 'EE_' . $model->get_this_model_name();
801
-            $post->{$model_object_classname} = EE_Registry::instance()->load_class(
802
-                $model_object_classname,
803
-                $result,
804
-                false,
805
-                false
806
-            );
807
-        }
808
-        foreach ($result as $field_name => $field_value) {
809
-            $field_obj = $model->field_settings_for($field_name);
810
-            if ($this->isSubclassOfOne($field_obj, $this->getModelVersionInfo()->fieldsIgnored())) {
811
-                unset($result[ $field_name ]);
812
-            } elseif ($this->isSubclassOfOne(
813
-                $field_obj,
814
-                $this->getModelVersionInfo()->fieldsThatHaveRenderedFormat()
815
-            )
816
-            ) {
817
-                $result[ $field_name ] = array(
818
-                    'raw'      => $this->prepareFieldObjValueForJson($field_obj, $field_value),
819
-                    'rendered' => $this->prepareFieldObjValueForJson($field_obj, $field_value, 'pretty'),
820
-                );
821
-            } elseif ($this->isSubclassOfOne(
822
-                $field_obj,
823
-                $this->getModelVersionInfo()->fieldsThatHavePrettyFormat()
824
-            )
825
-            ) {
826
-                $result[ $field_name ] = array(
827
-                    'raw'    => $this->prepareFieldObjValueForJson($field_obj, $field_value),
828
-                    'pretty' => $this->prepareFieldObjValueForJson($field_obj, $field_value, 'pretty'),
829
-                );
830
-            } elseif ($field_obj instanceof EE_Datetime_Field) {
831
-                $field_value = $field_obj->prepare_for_set_from_db($field_value);
832
-                // if the value is null, but we're not supposed to permit null, then set to the field's default
833
-                if (is_null($field_value)) {
834
-                    $field_value = $field_obj->getDefaultDateTimeObj();
835
-                }
836
-                if (is_null($field_value)) {
837
-                    $gmt_date = $local_date = ModelDataTranslator::prepareFieldValuesForJson(
838
-                        $field_obj,
839
-                        $field_value,
840
-                        $this->getModelVersionInfo()->requestedVersion()
841
-                    );
842
-                } else {
843
-                    $timezone = $field_value->getTimezone();
844
-                    EEH_DTT_Helper::setTimezone($field_value, new DateTimeZone('UTC'));
845
-                    $gmt_date = ModelDataTranslator::prepareFieldValuesForJson(
846
-                        $field_obj,
847
-                        $field_value,
848
-                        $this->getModelVersionInfo()->requestedVersion()
849
-                    );
850
-                    EEH_DTT_Helper::setTimezone($field_value, $timezone);
851
-                    $local_date = ModelDataTranslator::prepareFieldValuesForJson(
852
-                        $field_obj,
853
-                        $field_value,
854
-                        $this->getModelVersionInfo()->requestedVersion()
855
-                    );
856
-                }
857
-                $result[ $field_name . '_gmt' ] = $gmt_date;
858
-                $result[ $field_name ] = $local_date;
859
-            } else {
860
-                $result[ $field_name ] = $this->prepareFieldObjValueForJson($field_obj, $field_value);
861
-            }
862
-        }
863
-        if ($do_chevy_shuffle) {
864
-            $post = $old_post;
865
-        }
866
-        return $result;
867
-    }
868
-
869
-
870
-    /**
871
-     * Takes a value all the way from the DB representation, to the model object's representation, to the
872
-     * user-facing PHP representation, to the REST API representation. (Assumes you've already taken from the DB
873
-     * representation using $field_obj->prepare_for_set_from_db())
874
-     *
875
-     * @param EE_Model_Field_Base $field_obj
876
-     * @param mixed               $value  as it's stored on a model object
877
-     * @param string              $format valid values are 'normal' (default), 'pretty', 'datetime_obj'
878
-     * @return mixed
879
-     * @throws EE_Error
880
-     */
881
-    protected function prepareFieldObjValueForJson(EE_Model_Field_Base $field_obj, $value, $format = 'normal')
882
-    {
883
-        $value = $field_obj->prepare_for_set_from_db($value);
884
-        switch ($format) {
885
-            case 'pretty':
886
-                $value = $field_obj->prepare_for_pretty_echoing($value);
887
-                break;
888
-            case 'normal':
889
-            default:
890
-                $value = $field_obj->prepare_for_get($value);
891
-                break;
892
-        }
893
-        return ModelDataTranslator::prepareFieldValuesForJson(
894
-            $field_obj,
895
-            $value,
896
-            $this->getModelVersionInfo()->requestedVersion()
897
-        );
898
-    }
899
-
900
-
901
-    /**
902
-     * Adds a few extra fields to the entity response
903
-     *
904
-     * @param EEM_Base $model
905
-     * @param array    $db_row
906
-     * @param array    $entity_array
907
-     * @return array modified entity
908
-     * @throws EE_Error
909
-     */
910
-    protected function addExtraFields(EEM_Base $model, $db_row, $entity_array)
911
-    {
912
-        if ($model instanceof EEM_CPT_Base) {
913
-            $entity_array['link'] = get_permalink($db_row[ $model->get_primary_key_field()->get_qualified_column() ]);
914
-        }
915
-        return $entity_array;
916
-    }
917
-
918
-
919
-    /**
920
-     * Gets links we want to add to the response
921
-     *
922
-     * @param EEM_Base         $model
923
-     * @param array            $db_row
924
-     * @param array            $entity_array
925
-     * @return array the _links item in the entity
926
-     * @throws EE_Error
927
-     * @global WP_REST_Server $wp_rest_server
928
-     */
929
-    protected function getEntityLinks($model, $db_row, $entity_array)
930
-    {
931
-        // add basic links
932
-        $links = array();
933
-        if ($model->has_primary_key_field()) {
934
-            $links['self'] = array(
935
-                array(
936
-                    'href' => $this->getVersionedLinkTo(
937
-                        EEH_Inflector::pluralize_and_lower($model->get_this_model_name())
938
-                        . '/'
939
-                        . $entity_array[ $model->primary_key_name() ]
940
-                    ),
941
-                ),
942
-            );
943
-        }
944
-        $links['collection'] = array(
945
-            array(
946
-                'href' => $this->getVersionedLinkTo(
947
-                    EEH_Inflector::pluralize_and_lower($model->get_this_model_name())
948
-                ),
949
-            ),
950
-        );
951
-        // add links to related models
952
-        if ($model->has_primary_key_field()) {
953
-            foreach ($this->getModelVersionInfo()->relationSettings($model) as $relation_name => $relation_obj) {
954
-                $related_model_part = Read::getRelatedEntityName($relation_name, $relation_obj);
955
-                $links[ EED_Core_Rest_Api::ee_api_link_namespace . $related_model_part ] = array(
956
-                    array(
957
-                        'href'   => $this->getVersionedLinkTo(
958
-                            EEH_Inflector::pluralize_and_lower($model->get_this_model_name())
959
-                            . '/'
960
-                            . $entity_array[ $model->primary_key_name() ]
961
-                            . '/'
962
-                            . $related_model_part
963
-                        ),
964
-                        'single' => $relation_obj instanceof EE_Belongs_To_Relation,
965
-                    ),
966
-                );
967
-            }
968
-        }
969
-        return $links;
970
-    }
971
-
972
-
973
-    /**
974
-     * Adds the included models indicated in the request to the entity provided
975
-     *
976
-     * @param EEM_Base        $model
977
-     * @param WP_REST_Request $rest_request
978
-     * @param array           $entity_array
979
-     * @param array           $db_row
980
-     * @param boolean         $included_items_protected if the original item is password protected, don't include any related models.
981
-     * @return array the modified entity
982
-     * @throws DomainException
983
-     * @throws EE_Error
984
-     * @throws InvalidArgumentException
985
-     * @throws InvalidDataTypeException
986
-     * @throws InvalidInterfaceException
987
-     * @throws ModelConfigurationException
988
-     * @throws ReflectionException
989
-     * @throws UnexpectedEntityException
990
-     */
991
-    protected function includeRequestedModels(
992
-        EEM_Base $model,
993
-        WP_REST_Request $rest_request,
994
-        $entity_array,
995
-        $db_row = array(),
996
-        $included_items_protected = false
997
-    ) {
998
-        // if $db_row not included, hope the entity array has what we need
999
-        if (! $db_row) {
1000
-            $db_row = $entity_array;
1001
-        }
1002
-        $relation_settings = $this->getModelVersionInfo()->relationSettings($model);
1003
-        foreach ($relation_settings as $relation_name => $relation_obj) {
1004
-            $related_fields_to_include = $this->explodeAndGetItemsPrefixedWith(
1005
-                $rest_request->get_param('include'),
1006
-                $relation_name
1007
-            );
1008
-            $related_fields_to_calculate = $this->explodeAndGetItemsPrefixedWith(
1009
-                $rest_request->get_param('calculate'),
1010
-                $relation_name
1011
-            );
1012
-            // did they specify they wanted to include a related model, or
1013
-            // specific fields from a related model?
1014
-            // or did they specify to calculate a field from a related model?
1015
-            if ($related_fields_to_include || $related_fields_to_calculate) {
1016
-                // if so, we should include at least some part of the related model
1017
-                $pretend_related_request = new WP_REST_Request();
1018
-                $pretend_related_request->set_query_params(
1019
-                    array(
1020
-                        'caps'      => $rest_request->get_param('caps'),
1021
-                        'include'   => $related_fields_to_include,
1022
-                        'calculate' => $related_fields_to_calculate,
1023
-                        'password' => $rest_request->get_param('password')
1024
-                    )
1025
-                );
1026
-                $pretend_related_request->add_header('no_rest_headers', true);
1027
-                $primary_model_query_params = $model->alter_query_params_to_restrict_by_ID(
1028
-                    $model->get_index_primary_key_string(
1029
-                        $model->deduce_fields_n_values_from_cols_n_values($db_row)
1030
-                    )
1031
-                );
1032
-                if (! $included_items_protected) {
1033
-                    try {
1034
-                        $related_results = $this->getEntitiesFromRelationUsingModelQueryParams(
1035
-                            $primary_model_query_params,
1036
-                            $relation_obj,
1037
-                            $pretend_related_request
1038
-                        );
1039
-                    } catch (RestException $e) {
1040
-                        $related_results = null;
1041
-                    }
1042
-                } else {
1043
-                    // they're protected, hide them.
1044
-                    $related_results = null;
1045
-                    $entity_array['_protected'][] = Read::getRelatedEntityName($relation_name, $relation_obj);
1046
-                }
1047
-                if ($related_results instanceof WP_Error || $related_results === null) {
1048
-                    $related_results = $relation_obj instanceof EE_Belongs_To_Relation ? null : array();
1049
-                }
1050
-                $entity_array[ Read::getRelatedEntityName($relation_name, $relation_obj) ] = $related_results;
1051
-            }
1052
-        }
1053
-        return $entity_array;
1054
-    }
1055
-
1056
-    /**
1057
-     * If the user has requested only specific properties (including meta properties like _links or _protected)
1058
-     * remove everything else.
1059
-     * @since 4.9.74.p
1060
-     * @param EEM_Base $model
1061
-     * @param WP_REST_Request $rest_request
1062
-     * @param $entity_array
1063
-     * @return array
1064
-     * @throws EE_Error
1065
-     */
1066
-    protected function includeOnlyRequestedProperties(
1067
-        EEM_Base $model,
1068
-        WP_REST_Request $rest_request,
1069
-        $entity_array
1070
-    ) {
1071
-
1072
-        $includes_for_this_model = $this->explodeAndGetItemsPrefixedWith($rest_request->get_param('include'), '');
1073
-        $includes_for_this_model = $this->removeModelNamesFromArray($includes_for_this_model);
1074
-        // if they passed in * or didn't specify any includes, return everything
1075
-        if (! empty($includes_for_this_model) && ! in_array('*', $includes_for_this_model, true)) {
1076
-            if ($model->has_primary_key_field()) {
1077
-                // always include the primary key. ya just gotta know that at least
1078
-                $includes_for_this_model[] = $model->primary_key_name();
1079
-            }
1080
-            if ($this->explodeAndGetItemsPrefixedWith($rest_request->get_param('calculate'), '')) {
1081
-                $includes_for_this_model[] = '_calculated_fields';
1082
-            }
1083
-            $entity_array = array_intersect_key($entity_array, array_flip($includes_for_this_model));
1084
-        }
1085
-        return $entity_array;
1086
-    }
1087
-
1088
-
1089
-    /**
1090
-     * Returns a new array with all the names of models removed. Eg
1091
-     * array( 'Event', 'Datetime.*', 'foobar' ) would become array( 'Datetime.*', 'foobar' )
1092
-     *
1093
-     * @param array $arr
1094
-     * @return array
1095
-     */
1096
-    private function removeModelNamesFromArray($arr)
1097
-    {
1098
-        return array_diff($arr, array_keys(EE_Registry::instance()->non_abstract_db_models));
1099
-    }
1100
-
1101
-
1102
-    /**
1103
-     * Gets the calculated fields for the response
1104
-     *
1105
-     * @param EEM_Base        $model
1106
-     * @param array           $wpdb_row
1107
-     * @param WP_REST_Request $rest_request
1108
-     * @param boolean         $row_is_protected whether this row is password protected or not
1109
-     * @return stdClass the _calculations item in the entity
1110
-     * @throws EE_Error
1111
-     * @throws UnexpectedEntityException
1112
-     */
1113
-    protected function getEntityCalculations($model, $wpdb_row, $rest_request, $row_is_protected = false)
1114
-    {
1115
-        $calculated_fields = $this->explodeAndGetItemsPrefixedWith(
1116
-            $rest_request->get_param('calculate'),
1117
-            ''
1118
-        );
1119
-        // note: setting calculate=* doesn't do anything
1120
-        $calculated_fields_to_return = new stdClass();
1121
-        $protected_fields = array();
1122
-        foreach ($calculated_fields as $field_to_calculate) {
1123
-            try {
1124
-                // it's password protected, so they shouldn't be able to read this. Remove the value
1125
-                $schema = $this->fields_calculator->getJsonSchemaForModel($model);
1126
-                if ($row_is_protected
1127
-                    && isset($schema['properties'][ $field_to_calculate ]['protected'])
1128
-                    && $schema['properties'][ $field_to_calculate ]['protected']) {
1129
-                    $calculated_value = null;
1130
-                    $protected_fields[] = $field_to_calculate;
1131
-                    if ($schema['properties'][ $field_to_calculate ]['type']) {
1132
-                        switch ($schema['properties'][ $field_to_calculate ]['type']) {
1133
-                            case 'boolean':
1134
-                                $calculated_value = false;
1135
-                                break;
1136
-                            case 'integer':
1137
-                                $calculated_value = 0;
1138
-                                break;
1139
-                            case 'string':
1140
-                                $calculated_value = '';
1141
-                                break;
1142
-                            case 'array':
1143
-                                $calculated_value = array();
1144
-                                break;
1145
-                            case 'object':
1146
-                                $calculated_value = new stdClass();
1147
-                                break;
1148
-                        }
1149
-                    }
1150
-                } else {
1151
-                    $calculated_value = ModelDataTranslator::prepareFieldValueForJson(
1152
-                        null,
1153
-                        $this->fields_calculator->retrieveCalculatedFieldValue(
1154
-                            $model,
1155
-                            $field_to_calculate,
1156
-                            $wpdb_row,
1157
-                            $rest_request,
1158
-                            $this
1159
-                        ),
1160
-                        $this->getModelVersionInfo()->requestedVersion()
1161
-                    );
1162
-                }
1163
-                $calculated_fields_to_return->{$field_to_calculate} = $calculated_value;
1164
-            } catch (RestException $e) {
1165
-                // if we don't have permission to read it, just leave it out. but let devs know about the problem
1166
-                $this->setResponseHeader(
1167
-                    'Notices-Field-Calculation-Errors['
1168
-                    . $e->getStringCode()
1169
-                    . ']['
1170
-                    . $model->get_this_model_name()
1171
-                    . ']['
1172
-                    . $field_to_calculate
1173
-                    . ']',
1174
-                    $e->getMessage()
1175
-                );
1176
-            }
1177
-        }
1178
-        $calculated_fields_to_return->_protected = $protected_fields;
1179
-        return $calculated_fields_to_return;
1180
-    }
1181
-
1182
-
1183
-    /**
1184
-     * Gets the full URL to the resource, taking the requested version into account
1185
-     *
1186
-     * @param string $link_part_after_version_and_slash eg "events/10/datetimes"
1187
-     * @return string url eg "http://mysite.com/wp-json/ee/v4.6/events/10/datetimes"
1188
-     * @throws EE_Error
1189
-     */
1190
-    public function getVersionedLinkTo($link_part_after_version_and_slash)
1191
-    {
1192
-        return rest_url(
1193
-            EED_Core_Rest_Api::get_versioned_route_to(
1194
-                $link_part_after_version_and_slash,
1195
-                $this->getModelVersionInfo()->requestedVersion()
1196
-            )
1197
-        );
1198
-    }
1199
-
1200
-
1201
-    /**
1202
-     * Gets the correct lowercase name for the relation in the API according
1203
-     * to the relation's type
1204
-     *
1205
-     * @param string                  $relation_name
1206
-     * @param EE_Model_Relation_Base $relation_obj
1207
-     * @return string
1208
-     */
1209
-    public static function getRelatedEntityName($relation_name, $relation_obj)
1210
-    {
1211
-        if ($relation_obj instanceof EE_Belongs_To_Relation) {
1212
-            return strtolower($relation_name);
1213
-        }
1214
-        return EEH_Inflector::pluralize_and_lower($relation_name);
1215
-    }
1216
-
1217
-
1218
-    /**
1219
-     * Gets the one model object with the specified id for the specified model
1220
-     *
1221
-     * @param EEM_Base        $model
1222
-     * @param WP_REST_Request $request
1223
-     * @return array
1224
-     * @throws EE_Error
1225
-     * @throws InvalidArgumentException
1226
-     * @throws InvalidDataTypeException
1227
-     * @throws InvalidInterfaceException
1228
-     * @throws ModelConfigurationException
1229
-     * @throws ReflectionException
1230
-     * @throws RestException
1231
-     * @throws RestPasswordIncorrectException
1232
-     * @throws RestPasswordRequiredException
1233
-     * @throws UnexpectedEntityException
1234
-     * @throws DomainException
1235
-     */
1236
-    public function getEntityFromModel($model, $request)
1237
-    {
1238
-        $context = $this->validateContext($request->get_param('caps'));
1239
-        return $this->getOneOrReportPermissionError($model, $request, $context);
1240
-    }
1241
-
1242
-
1243
-    /**
1244
-     * If a context is provided which isn't valid, maybe it was added in a future
1245
-     * version so just treat it as a default read
1246
-     *
1247
-     * @param string $context
1248
-     * @return string array key of EEM_Base::cap_contexts_to_cap_action_map()
1249
-     */
1250
-    public function validateContext($context)
1251
-    {
1252
-        if (! $context) {
1253
-            $context = EEM_Base::caps_read;
1254
-        }
1255
-        $valid_contexts = EEM_Base::valid_cap_contexts();
1256
-        if (in_array($context, $valid_contexts, true)) {
1257
-            return $context;
1258
-        }
1259
-        return EEM_Base::caps_read;
1260
-    }
1261
-
1262
-
1263
-    /**
1264
-     * Verifies the passed in value is an allowable default where conditions value.
1265
-     *
1266
-     * @param $default_query_params
1267
-     * @return string
1268
-     */
1269
-    public function validateDefaultQueryParams($default_query_params)
1270
-    {
1271
-        $valid_default_where_conditions_for_api_calls = array(
1272
-            EEM_Base::default_where_conditions_all,
1273
-            EEM_Base::default_where_conditions_minimum_all,
1274
-            EEM_Base::default_where_conditions_minimum_others,
1275
-        );
1276
-        if (! $default_query_params) {
1277
-            $default_query_params = EEM_Base::default_where_conditions_all;
1278
-        }
1279
-        if (in_array(
1280
-            $default_query_params,
1281
-            $valid_default_where_conditions_for_api_calls,
1282
-            true
1283
-        )) {
1284
-            return $default_query_params;
1285
-        } else {
1286
-            return EEM_Base::default_where_conditions_all;
1287
-        }
1288
-    }
1289
-
1290
-
1291
-    /**
1292
-     * Translates API filter get parameter into model query params @see https://github.com/eventespresso/event-espresso-core/tree/master/docs/G--Model-System/model-query-params.md#0-where-conditions.
1293
-     * Note: right now the query parameter keys for fields (and related fields)
1294
-     * can be left as-is, but it's quite possible this will change someday.
1295
-     * Also, this method's contents might be candidate for moving to Model_Data_Translator
1296
-     *
1297
-     * @param EEM_Base $model
1298
-     * @param          $query_params
1299
-     * @return array model query params (@see https://github.com/eventespresso/event-espresso-core/tree/master/docs/G--Model-System/model-query-params.md#0-where-conditions)
1300
-     *                                    or FALSE to indicate that absolutely no results should be returned
1301
-     * @throws EE_Error
1302
-     * @throws InvalidArgumentException
1303
-     * @throws InvalidDataTypeException
1304
-     * @throws InvalidInterfaceException
1305
-     * @throws RestException
1306
-     * @throws DomainException
1307
-     */
1308
-    public function createModelQueryParams($model, $query_params)
1309
-    {
1310
-        $model_query_params = array();
1311
-        if (isset($query_params['where'])) {
1312
-            $model_query_params[0] = ModelDataTranslator::prepareConditionsQueryParamsForModels(
1313
-                $query_params['where'],
1314
-                $model,
1315
-                $this->getModelVersionInfo()->requestedVersion()
1316
-            );
1317
-        }
1318
-        if (isset($query_params['order_by'])) {
1319
-            $order_by = $query_params['order_by'];
1320
-        } elseif (isset($query_params['orderby'])) {
1321
-            $order_by = $query_params['orderby'];
1322
-        } else {
1323
-            $order_by = null;
1324
-        }
1325
-        if ($order_by !== null) {
1326
-            if (is_array($order_by)) {
1327
-                $order_by = ModelDataTranslator::prepareFieldNamesInArrayKeysFromJson($order_by);
1328
-            } else {
1329
-                // it's a single item
1330
-                $order_by = ModelDataTranslator::prepareFieldNameFromJson($order_by);
1331
-            }
1332
-            $model_query_params['order_by'] = $order_by;
1333
-        }
1334
-        if (isset($query_params['group_by'])) {
1335
-            $group_by = $query_params['group_by'];
1336
-        } elseif (isset($query_params['groupby'])) {
1337
-            $group_by = $query_params['groupby'];
1338
-        } else {
1339
-            $group_by = array_keys($model->get_combined_primary_key_fields());
1340
-        }
1341
-        // make sure they're all real names
1342
-        if (is_array($group_by)) {
1343
-            $group_by = ModelDataTranslator::prepareFieldNamesFromJson($group_by);
1344
-        }
1345
-        if ($group_by !== null) {
1346
-            $model_query_params['group_by'] = $group_by;
1347
-        }
1348
-        if (isset($query_params['having'])) {
1349
-            $model_query_params['having'] = ModelDataTranslator::prepareConditionsQueryParamsForModels(
1350
-                $query_params['having'],
1351
-                $model,
1352
-                $this->getModelVersionInfo()->requestedVersion()
1353
-            );
1354
-        }
1355
-        if (isset($query_params['order'])) {
1356
-            $model_query_params['order'] = $query_params['order'];
1357
-        }
1358
-        if (isset($query_params['mine'])) {
1359
-            $model_query_params = $model->alter_query_params_to_only_include_mine($model_query_params);
1360
-        }
1361
-        if (isset($query_params['limit'])) {
1362
-            // limit should be either a string like '23' or '23,43', or an array with two items in it
1363
-            if (! is_array($query_params['limit'])) {
1364
-                $limit_array = explode(',', (string) $query_params['limit']);
1365
-            } else {
1366
-                $limit_array = $query_params['limit'];
1367
-            }
1368
-            $sanitized_limit = array();
1369
-            foreach ($limit_array as $key => $limit_part) {
1370
-                if ($this->debug_mode && (! is_numeric($limit_part) || count($sanitized_limit) > 2)) {
1371
-                    throw new EE_Error(
1372
-                        sprintf(
1373
-                            __(
1374
-                            // @codingStandardsIgnoreStart
1375
-                                'An invalid limit filter was provided. It was: %s. If the EE4 JSON REST API weren\'t in debug mode, this message would not appear.',
1376
-                                // @codingStandardsIgnoreEnd
1377
-                                'event_espresso'
1378
-                            ),
1379
-                            wp_json_encode($query_params['limit'])
1380
-                        )
1381
-                    );
1382
-                }
1383
-                $sanitized_limit[] = (int) $limit_part;
1384
-            }
1385
-            $model_query_params['limit'] = implode(',', $sanitized_limit);
1386
-        } else {
1387
-            $model_query_params['limit'] = EED_Core_Rest_Api::get_default_query_limit();
1388
-        }
1389
-        if (isset($query_params['caps'])) {
1390
-            $model_query_params['caps'] = $this->validateContext($query_params['caps']);
1391
-        } else {
1392
-            $model_query_params['caps'] = EEM_Base::caps_read;
1393
-        }
1394
-        if (isset($query_params['default_where_conditions'])) {
1395
-            $model_query_params['default_where_conditions'] = $this->validateDefaultQueryParams(
1396
-                $query_params['default_where_conditions']
1397
-            );
1398
-        }
1399
-        // if this is a model protected by a password on another model, exclude the password protected
1400
-        // entities by default. But if they passed in a password, try to show them all. If the password is wrong,
1401
-        // though, they'll get an error (see Read::createEntityFromWpdbResult() which calls Read::checkPassword)
1402
-        if ($model_query_params['caps'] === EEM_Base::caps_read
1403
-            && empty($query_params['password'])
1404
-            && ! $model->hasPassword()
1405
-            && $model->restrictedByRelatedModelPassword()
1406
-        ) {
1407
-            $model_query_params['exclude_protected'] = true;
1408
-        }
1409
-
1410
-        return apply_filters('FHEE__Read__create_model_query_params', $model_query_params, $query_params, $model);
1411
-    }
1412
-
1413
-
1414
-    /**
1415
-     * Changes the REST-style query params for use in the models
1416
-     *
1417
-     * @deprecated
1418
-     * @param EEM_Base $model
1419
-     * @param array    $query_params sub-array from @see EEM_Base::get_all()
1420
-     * @return array
1421
-     */
1422
-    public function prepareRestQueryParamsKeyForModels($model, $query_params)
1423
-    {
1424
-        $model_ready_query_params = array();
1425
-        foreach ($query_params as $key => $value) {
1426
-            if (is_array($value)) {
1427
-                $model_ready_query_params[ $key ] = $this->prepareRestQueryParamsKeyForModels($model, $value);
1428
-            } else {
1429
-                $model_ready_query_params[ $key ] = $value;
1430
-            }
1431
-        }
1432
-        return $model_ready_query_params;
1433
-    }
1434
-
1435
-
1436
-    /**
1437
-     * @deprecated instead use ModelDataTranslator::prepareFieldValuesFromJson()
1438
-     * @param $model
1439
-     * @param $query_params
1440
-     * @return array
1441
-     */
1442
-    public function prepareRestQueryParamsValuesForModels($model, $query_params)
1443
-    {
1444
-        $model_ready_query_params = array();
1445
-        foreach ($query_params as $key => $value) {
1446
-            if (is_array($value)) {
1447
-                $model_ready_query_params[ $key ] = $this->prepareRestQueryParamsValuesForModels($model, $value);
1448
-            } else {
1449
-                $model_ready_query_params[ $key ] = $value;
1450
-            }
1451
-        }
1452
-        return $model_ready_query_params;
1453
-    }
1454
-
1455
-
1456
-    /**
1457
-     * Explodes the string on commas, and only returns items with $prefix followed by a period.
1458
-     * If no prefix is specified, returns items with no period.
1459
-     *
1460
-     * @param string|array $string_to_explode eg "jibba,jabba, blah, blah, blah" or array('jibba', 'jabba' )
1461
-     * @param string       $prefix            "Event" or "foobar"
1462
-     * @return array $string_to_exploded exploded on COMMAS, and if a prefix was specified
1463
-     *                                        we only return strings starting with that and a period; if no prefix was
1464
-     *                                        specified we return all items containing NO periods
1465
-     */
1466
-    public function explodeAndGetItemsPrefixedWith($string_to_explode, $prefix)
1467
-    {
1468
-        if (is_string($string_to_explode)) {
1469
-            $exploded_contents = explode(',', $string_to_explode);
1470
-        } elseif (is_array($string_to_explode)) {
1471
-            $exploded_contents = $string_to_explode;
1472
-        } else {
1473
-            $exploded_contents = array();
1474
-        }
1475
-        // if the string was empty, we want an empty array
1476
-        $exploded_contents = array_filter($exploded_contents);
1477
-        $contents_with_prefix = array();
1478
-        foreach ($exploded_contents as $item) {
1479
-            $item = trim($item);
1480
-            // if no prefix was provided, so we look for items with no "." in them
1481
-            if (! $prefix) {
1482
-                // does this item have a period?
1483
-                if (strpos($item, '.') === false) {
1484
-                    // if not, then its what we're looking for
1485
-                    $contents_with_prefix[] = $item;
1486
-                }
1487
-            } elseif (strpos($item, $prefix . '.') === 0) {
1488
-                // this item has the prefix and a period, grab it
1489
-                $contents_with_prefix[] = substr(
1490
-                    $item,
1491
-                    strpos($item, $prefix . '.') + strlen($prefix . '.')
1492
-                );
1493
-            } elseif ($item === $prefix) {
1494
-                // this item is JUST the prefix
1495
-                // so let's grab everything after, which is a blank string
1496
-                $contents_with_prefix[] = '';
1497
-            }
1498
-        }
1499
-        return $contents_with_prefix;
1500
-    }
1501
-
1502
-
1503
-    /**
1504
-     * @deprecated since 4.8.36.rc.001 You should instead use Read::explode_and_get_items_prefixed_with.
1505
-     *             Deprecated because its return values were really quite confusing- sometimes it returned
1506
-     *             an empty array (when the include string was blank or '*') or sometimes it returned
1507
-     *             array('*') (when you provided a model and a model of that kind was found).
1508
-     *             Parses the $include_string so we fetch all the field names relating to THIS model
1509
-     *             (ie have NO period in them), or for the provided model (ie start with the model
1510
-     *             name and then a period).
1511
-     * @param string $include_string @see Read:handle_request_get_all
1512
-     * @param string $model_name
1513
-     * @return array of fields for this model. If $model_name is provided, then
1514
-     *                               the fields for that model, with the model's name removed from each.
1515
-     *                               If $include_string was blank or '*' returns an empty array
1516
-     * @throws EE_Error
1517
-     */
1518
-    public function extractIncludesForThisModel($include_string, $model_name = null)
1519
-    {
1520
-        if (is_array($include_string)) {
1521
-            $include_string = implode(',', $include_string);
1522
-        }
1523
-        if ($include_string === '*' || $include_string === '') {
1524
-            return array();
1525
-        }
1526
-        $includes = explode(',', $include_string);
1527
-        $extracted_fields_to_include = array();
1528
-        if ($model_name) {
1529
-            foreach ($includes as $field_to_include) {
1530
-                $field_to_include = trim($field_to_include);
1531
-                if (strpos($field_to_include, $model_name . '.') === 0) {
1532
-                    // found the model name at the exact start
1533
-                    $field_sans_model_name = str_replace($model_name . '.', '', $field_to_include);
1534
-                    $extracted_fields_to_include[] = $field_sans_model_name;
1535
-                } elseif ($field_to_include === $model_name) {
1536
-                    $extracted_fields_to_include[] = '*';
1537
-                }
1538
-            }
1539
-        } else {
1540
-            // look for ones with no period
1541
-            foreach ($includes as $field_to_include) {
1542
-                $field_to_include = trim($field_to_include);
1543
-                if (strpos($field_to_include, '.') === false
1544
-                    && ! $this->getModelVersionInfo()->isModelNameInThisVersion($field_to_include)
1545
-                ) {
1546
-                    $extracted_fields_to_include[] = $field_to_include;
1547
-                }
1548
-            }
1549
-        }
1550
-        return $extracted_fields_to_include;
1551
-    }
1552
-
1553
-
1554
-    /**
1555
-     * Gets the single item using the model according to the request in the context given, otherwise
1556
-     * returns that it's inaccessible to the current user
1557
-     *
1558
-     * @param EEM_Base        $model
1559
-     * @param WP_REST_Request $request
1560
-     * @param null            $context
1561
-     * @return array
1562
-     * @throws EE_Error
1563
-     * @throws InvalidArgumentException
1564
-     * @throws InvalidDataTypeException
1565
-     * @throws InvalidInterfaceException
1566
-     * @throws ModelConfigurationException
1567
-     * @throws ReflectionException
1568
-     * @throws RestException
1569
-     * @throws RestPasswordIncorrectException
1570
-     * @throws RestPasswordRequiredException
1571
-     * @throws UnexpectedEntityException
1572
-     * @throws DomainException
1573
-     */
1574
-    public function getOneOrReportPermissionError(EEM_Base $model, WP_REST_Request $request, $context = null)
1575
-    {
1576
-        $query_params = array(array($model->primary_key_name() => $request->get_param('id')), 'limit' => 1);
1577
-        if ($model instanceof EEM_Soft_Delete_Base) {
1578
-            $query_params = $model->alter_query_params_so_deleted_and_undeleted_items_included($query_params);
1579
-        }
1580
-        $restricted_query_params = $query_params;
1581
-        $restricted_query_params['caps'] = $context;
1582
-        $this->setDebugInfo('model query params', $restricted_query_params);
1583
-        $model_rows = $model->get_all_wpdb_results($restricted_query_params);
1584
-        if (! empty($model_rows)) {
1585
-            return $this->createEntityFromWpdbResult(
1586
-                $model,
1587
-                reset($model_rows),
1588
-                $request
1589
-            );
1590
-        }
1591
-        // ok let's test to see if we WOULD have found it, had we not had restrictions from missing capabilities
1592
-        $lowercase_model_name = strtolower($model->get_this_model_name());
1593
-        if ($model->exists($query_params)) {
1594
-            // you got shafted- it existed but we didn't want to tell you!
1595
-            throw new RestException(
1596
-                'rest_user_cannot_' . $context,
1597
-                sprintf(
1598
-                    __('Sorry, you cannot %1$s this %2$s. Missing permissions are: %3$s', 'event_espresso'),
1599
-                    $context,
1600
-                    $lowercase_model_name,
1601
-                    Capabilities::getMissingPermissionsString(
1602
-                        $model,
1603
-                        $context
1604
-                    )
1605
-                ),
1606
-                array('status' => 403)
1607
-            );
1608
-        }
1609
-        // it's not you. It just doesn't exist
1610
-        throw new RestException(
1611
-            sprintf('rest_%s_invalid_id', $lowercase_model_name),
1612
-            sprintf(__('Invalid %s ID.', 'event_espresso'), $lowercase_model_name),
1613
-            array('status' => 404)
1614
-        );
1615
-    }
1616
-
1617
-    /**
1618
-     * Checks that if this content requires a password to be read, that it's been provided and is correct.
1619
-     * @since 4.9.74.p
1620
-     * @param EEM_Base $model
1621
-     * @param $model_row
1622
-     * @param array $query_params Adds 'default_where_conditions' => 'minimum' to ensure we don't confuse trashed with
1623
-     *                      password protected.
1624
-     * @param WP_REST_Request $request
1625
-     * @throws EE_Error
1626
-     * @throws InvalidArgumentException
1627
-     * @throws InvalidDataTypeException
1628
-     * @throws InvalidInterfaceException
1629
-     * @throws RestPasswordRequiredException
1630
-     * @throws RestPasswordIncorrectException
1631
-     * @throws ModelConfigurationException
1632
-     * @throws ReflectionException
1633
-     */
1634
-    protected function checkPassword(EEM_Base $model, $model_row, $query_params, WP_REST_Request $request)
1635
-    {
1636
-        $query_params['default_where_conditions'] = 'minimum';
1637
-        // stuff is only "protected" for front-end requests. Elsewhere, you either get full permission to access the object
1638
-        // or you don't.
1639
-        $request_caps = $request->get_param('caps');
1640
-        if (isset($request_caps) && $request_caps !== EEM_Base::caps_read) {
1641
-            return;
1642
-        }
1643
-        // if this entity requires a password, they better give it and it better be right!
1644
-        if ($model->hasPassword()
1645
-            && $model_row[ $model->getPasswordField()->get_qualified_column() ] !== '') {
1646
-            if (empty($request['password'])) {
1647
-                throw new RestPasswordRequiredException();
1648
-            }
1649
-            if (!hash_equals(
1650
-                $model_row[ $model->getPasswordField()->get_qualified_column() ],
1651
-                $request['password']
1652
-            )) {
1653
-                throw new RestPasswordIncorrectException();
1654
-            }
1655
-        } // wait! maybe this content is password protected
1656
-        elseif ($model->restrictedByRelatedModelPassword()
1657
-            && $request->get_param('caps') === EEM_Base::caps_read) {
1658
-            $password_supplied = $request->get_param('password');
1659
-            if (empty($password_supplied)) {
1660
-                $query_params['exclude_protected'] = true;
1661
-                if (!$model->exists($query_params)) {
1662
-                    throw new RestPasswordRequiredException();
1663
-                }
1664
-            } else {
1665
-                $query_params[0][ $model->modelChainAndPassword() ] = $password_supplied;
1666
-                if (!$model->exists($query_params)) {
1667
-                    throw new RestPasswordIncorrectException();
1668
-                }
1669
-            }
1670
-        }
1671
-    }
55
+	/**
56
+	 * @var CalculatedModelFields
57
+	 */
58
+	protected $fields_calculator;
59
+
60
+
61
+	/**
62
+	 * Read constructor.
63
+	 * @param CalculatedModelFields $fields_calculator
64
+	 */
65
+	public function __construct(CalculatedModelFields $fields_calculator)
66
+	{
67
+		parent::__construct();
68
+		$this->fields_calculator = $fields_calculator;
69
+	}
70
+
71
+
72
+	/**
73
+	 * Handles requests to get all (or a filtered subset) of entities for a particular model
74
+	 *
75
+	 * @param WP_REST_Request $request
76
+	 * @param string $version
77
+	 * @param string $model_name
78
+	 * @return WP_REST_Response|WP_Error
79
+	 * @throws InvalidArgumentException
80
+	 * @throws InvalidDataTypeException
81
+	 * @throws InvalidInterfaceException
82
+	 */
83
+	public static function handleRequestGetAll(WP_REST_Request $request, $version, $model_name)
84
+	{
85
+		/** @var Read $controller */
86
+		$controller = LoaderFactory::getLoader()->getNew('EventEspresso\core\libraries\rest_api\controllers\model\Read');
87
+		try {
88
+			$controller->setRequestedVersion($version);
89
+			if (! $controller->getModelVersionInfo()->isModelNameInThisVersion($model_name)) {
90
+				return $controller->sendResponse(
91
+					new WP_Error(
92
+						'endpoint_parsing_error',
93
+						sprintf(
94
+							__(
95
+								'There is no model for endpoint %s. Please contact event espresso support',
96
+								'event_espresso'
97
+							),
98
+							$model_name
99
+						)
100
+					)
101
+				);
102
+			}
103
+			return $controller->sendResponse(
104
+				$controller->getEntitiesFromModel(
105
+					$controller->getModelVersionInfo()->loadModel($model_name),
106
+					$request
107
+				)
108
+			);
109
+		} catch (Exception $e) {
110
+			return $controller->sendResponse($e);
111
+		}
112
+	}
113
+
114
+
115
+	/**
116
+	 * Prepares and returns schema for any OPTIONS request.
117
+	 *
118
+	 * @param string $version The API endpoint version being used.
119
+	 * @param string $model_name Something like `Event` or `Registration`
120
+	 * @return array
121
+	 * @throws InvalidArgumentException
122
+	 * @throws InvalidDataTypeException
123
+	 * @throws InvalidInterfaceException
124
+	 */
125
+	public static function handleSchemaRequest($version, $model_name)
126
+	{
127
+		/** @var Read $controller */
128
+		$controller = LoaderFactory::getLoader()->getNew('EventEspresso\core\libraries\rest_api\controllers\model\Read');
129
+		try {
130
+			$controller->setRequestedVersion($version);
131
+			if (! $controller->getModelVersionInfo()->isModelNameInThisVersion($model_name)) {
132
+				return array();
133
+			}
134
+			// get the model for this version
135
+			$model = $controller->getModelVersionInfo()->loadModel($model_name);
136
+			$model_schema = new JsonModelSchema($model, LoaderFactory::getLoader()->getShared('EventEspresso\core\libraries\rest_api\CalculatedModelFields'));
137
+			return $model_schema->getModelSchemaForRelations(
138
+				$controller->getModelVersionInfo()->relationSettings($model),
139
+				$controller->customizeSchemaForRestResponse(
140
+					$model,
141
+					$model_schema->getModelSchemaForFields(
142
+						$controller->getModelVersionInfo()->fieldsOnModelInThisVersion($model),
143
+						$model_schema->getInitialSchemaStructure()
144
+					)
145
+				)
146
+			);
147
+		} catch (Exception $e) {
148
+			return array();
149
+		}
150
+	}
151
+
152
+
153
+	/**
154
+	 * This loops through each field in the given schema for the model and does the following:
155
+	 * - add any extra fields that are REST API specific and related to existing fields.
156
+	 * - transform default values into the correct format for a REST API response.
157
+	 *
158
+	 * @param EEM_Base $model
159
+	 * @param array    $schema
160
+	 * @return array  The final schema.
161
+	 * @throws EE_Error
162
+	 */
163
+	public function customizeSchemaForRestResponse(EEM_Base $model, array $schema)
164
+	{
165
+		foreach ($this->getModelVersionInfo()->fieldsOnModelInThisVersion($model) as $field_name => $field) {
166
+			$schema = $this->translateDefaultsForRestResponse(
167
+				$field_name,
168
+				$field,
169
+				$this->maybeAddExtraFieldsToSchema($field_name, $field, $schema)
170
+			);
171
+		}
172
+		return $schema;
173
+	}
174
+
175
+
176
+	/**
177
+	 * This is used to ensure that the 'default' value set in the schema response is formatted correctly for the REST
178
+	 * response.
179
+	 *
180
+	 * @param                      $field_name
181
+	 * @param EE_Model_Field_Base  $field
182
+	 * @param array                $schema
183
+	 * @return array
184
+	 * @throws EE_Error
185
+	 */
186
+	protected function translateDefaultsForRestResponse($field_name, EE_Model_Field_Base $field, array $schema)
187
+	{
188
+		if (isset($schema['properties'][ $field_name ]['default'])) {
189
+			if (is_array($schema['properties'][ $field_name ]['default'])) {
190
+				foreach ($schema['properties'][ $field_name ]['default'] as $default_key => $default_value) {
191
+					if ($default_key === 'raw') {
192
+						$schema['properties'][ $field_name ]['default'][ $default_key ] =
193
+							ModelDataTranslator::prepareFieldValueForJson(
194
+								$field,
195
+								$default_value,
196
+								$this->getModelVersionInfo()->requestedVersion()
197
+							);
198
+					}
199
+				}
200
+			} else {
201
+				$schema['properties'][ $field_name ]['default'] = ModelDataTranslator::prepareFieldValueForJson(
202
+					$field,
203
+					$schema['properties'][ $field_name ]['default'],
204
+					$this->getModelVersionInfo()->requestedVersion()
205
+				);
206
+			}
207
+		}
208
+		return $schema;
209
+	}
210
+
211
+
212
+	/**
213
+	 * Adds additional fields to the schema
214
+	 * The REST API returns a GMT value field for each datetime field in the resource.  Thus the description about this
215
+	 * needs to be added to the schema.
216
+	 *
217
+	 * @param                      $field_name
218
+	 * @param EE_Model_Field_Base  $field
219
+	 * @param array                $schema
220
+	 * @return array
221
+	 */
222
+	protected function maybeAddExtraFieldsToSchema($field_name, EE_Model_Field_Base $field, array $schema)
223
+	{
224
+		if ($field instanceof EE_Datetime_Field) {
225
+			$schema['properties'][ $field_name . '_gmt' ] = $field->getSchema();
226
+			// modify the description
227
+			$schema['properties'][ $field_name . '_gmt' ]['description'] = sprintf(
228
+				esc_html__('%s - the value for this field is in GMT.', 'event_espresso'),
229
+				wp_specialchars_decode($field->get_nicename(), ENT_QUOTES)
230
+			);
231
+		}
232
+		return $schema;
233
+	}
234
+
235
+
236
+	/**
237
+	 * Used to figure out the route from the request when a `WP_REST_Request` object is not available
238
+	 *
239
+	 * @return string
240
+	 */
241
+	protected function getRouteFromRequest()
242
+	{
243
+		if (isset($GLOBALS['wp'])
244
+			&& $GLOBALS['wp'] instanceof WP
245
+			&& isset($GLOBALS['wp']->query_vars['rest_route'])
246
+		) {
247
+			return $GLOBALS['wp']->query_vars['rest_route'];
248
+		}
249
+		return isset($_SERVER['PATH_INFO']) ? $_SERVER['PATH_INFO'] : '/';
250
+	}
251
+
252
+
253
+	/**
254
+	 * Gets a single entity related to the model indicated in the path and its id
255
+	 *
256
+	 * @param WP_REST_Request $request
257
+	 * @param string $version
258
+	 * @param string $model_name
259
+	 * @return WP_REST_Response|WP_Error
260
+	 * @throws InvalidDataTypeException
261
+	 * @throws InvalidInterfaceException
262
+	 * @throws InvalidArgumentException
263
+	 */
264
+	public static function handleRequestGetOne(WP_REST_Request $request, $version, $model_name)
265
+	{
266
+		$controller = LoaderFactory::getLoader()->getNew('EventEspresso\core\libraries\rest_api\controllers\model\Read');
267
+		try {
268
+			$controller->setRequestedVersion($version);
269
+			if (! $controller->getModelVersionInfo()->isModelNameInThisVersion($model_name)) {
270
+				return $controller->sendResponse(
271
+					new WP_Error(
272
+						'endpoint_parsing_error',
273
+						sprintf(
274
+							__(
275
+								'There is no model for endpoint %s. Please contact event espresso support',
276
+								'event_espresso'
277
+							),
278
+							$model_name
279
+						)
280
+					)
281
+				);
282
+			}
283
+			return $controller->sendResponse(
284
+				$controller->getEntityFromModel(
285
+					$controller->getModelVersionInfo()->loadModel($model_name),
286
+					$request
287
+				)
288
+			);
289
+		} catch (Exception $e) {
290
+			return $controller->sendResponse($e);
291
+		}
292
+	}
293
+
294
+
295
+	/**
296
+	 * Gets all the related entities (or if its a belongs-to relation just the one)
297
+	 * to the item with the given id
298
+	 *
299
+	 * @param WP_REST_Request $request
300
+	 * @param string $version
301
+	 * @param string $model_name
302
+	 * @param string $related_model_name
303
+	 * @return WP_REST_Response|WP_Error
304
+	 * @throws InvalidDataTypeException
305
+	 * @throws InvalidInterfaceException
306
+	 * @throws InvalidArgumentException
307
+	 */
308
+	public static function handleRequestGetRelated(
309
+		WP_REST_Request $request,
310
+		$version,
311
+		$model_name,
312
+		$related_model_name
313
+	) {
314
+		$controller = LoaderFactory::getLoader()->getNew('EventEspresso\core\libraries\rest_api\controllers\model\Read');
315
+		try {
316
+			$controller->setRequestedVersion($version);
317
+			$main_model = $controller->validateModel($model_name);
318
+			$controller->validateModel($related_model_name);
319
+			return $controller->sendResponse(
320
+				$controller->getEntitiesFromRelation(
321
+					$request->get_param('id'),
322
+					$main_model->related_settings_for($related_model_name),
323
+					$request
324
+				)
325
+			);
326
+		} catch (Exception $e) {
327
+			return $controller->sendResponse($e);
328
+		}
329
+	}
330
+
331
+
332
+	/**
333
+	 * Gets a collection for the given model and filters
334
+	 *
335
+	 * @param EEM_Base        $model
336
+	 * @param WP_REST_Request $request
337
+	 * @return array
338
+	 * @throws DomainException
339
+	 * @throws EE_Error
340
+	 * @throws InvalidArgumentException
341
+	 * @throws InvalidDataTypeException
342
+	 * @throws InvalidInterfaceException
343
+	 * @throws ModelConfigurationException
344
+	 * @throws ReflectionException
345
+	 * @throws RestException
346
+	 * @throws RestPasswordIncorrectException
347
+	 * @throws RestPasswordRequiredException
348
+	 * @throws UnexpectedEntityException
349
+	 */
350
+	public function getEntitiesFromModel($model, $request)
351
+	{
352
+		$query_params = $this->createModelQueryParams($model, $request->get_params());
353
+		if (! Capabilities::currentUserHasPartialAccessTo($model, $query_params['caps'])) {
354
+			$model_name_plural = EEH_Inflector::pluralize_and_lower($model->get_this_model_name());
355
+			throw new RestException(
356
+				sprintf('rest_%s_cannot_list', $model_name_plural),
357
+				sprintf(
358
+					__('Sorry, you are not allowed to list %1$s. Missing permissions: %2$s', 'event_espresso'),
359
+					$model_name_plural,
360
+					Capabilities::getMissingPermissionsString($model, $query_params['caps'])
361
+				),
362
+				array('status' => 403)
363
+			);
364
+		}
365
+		if (! $request->get_header('no_rest_headers')) {
366
+			$this->setHeadersFromQueryParams($model, $query_params);
367
+		}
368
+		/** @type array $results */
369
+		$results = $model->get_all_wpdb_results($query_params);
370
+		$nice_results = array();
371
+		foreach ($results as $result) {
372
+			$nice_results[] =  $this->createEntityFromWpdbResult(
373
+				$model,
374
+				$result,
375
+				$request
376
+			);
377
+		}
378
+		return $nice_results;
379
+	}
380
+
381
+
382
+	/**
383
+	 * Gets the collection for given relation object
384
+	 * The same as Read::get_entities_from_model(), except if the relation
385
+	 * is a HABTM relation, in which case it merges any non-foreign-key fields from
386
+	 * the join-model-object into the results
387
+	 *
388
+	 * @param array                  $primary_model_query_params  query params for finding the item from which
389
+	 *                                                            relations will be based
390
+	 * @param EE_Model_Relation_Base $relation
391
+	 * @param WP_REST_Request        $request
392
+	 * @return array
393
+	 * @throws DomainException
394
+	 * @throws EE_Error
395
+	 * @throws InvalidArgumentException
396
+	 * @throws InvalidDataTypeException
397
+	 * @throws InvalidInterfaceException
398
+	 * @throws ModelConfigurationException
399
+	 * @throws ReflectionException
400
+	 * @throws RestException
401
+	 * @throws ModelConfigurationException
402
+	 * @throws UnexpectedEntityException
403
+	 */
404
+	protected function getEntitiesFromRelationUsingModelQueryParams($primary_model_query_params, $relation, $request)
405
+	{
406
+		$context = $this->validateContext($request->get_param('caps'));
407
+		$model = $relation->get_this_model();
408
+		$related_model = $relation->get_other_model();
409
+		if (! isset($primary_model_query_params[0])) {
410
+			$primary_model_query_params[0] = array();
411
+		}
412
+		// check if they can access the 1st model object
413
+		$primary_model_query_params = array(
414
+			0       => $primary_model_query_params[0],
415
+			'limit' => 1,
416
+		);
417
+		if ($model instanceof EEM_Soft_Delete_Base) {
418
+			$primary_model_query_params = $model->alter_query_params_so_deleted_and_undeleted_items_included(
419
+				$primary_model_query_params
420
+			);
421
+		}
422
+		$restricted_query_params = $primary_model_query_params;
423
+		$restricted_query_params['caps'] = $context;
424
+		$restricted_query_params['limit'] = 1;
425
+		$this->setDebugInfo('main model query params', $restricted_query_params);
426
+		$this->setDebugInfo('missing caps', Capabilities::getMissingPermissionsString($related_model, $context));
427
+		$primary_model_rows = $model->get_all_wpdb_results($restricted_query_params);
428
+		$primary_model_row = null;
429
+		if (is_array($primary_model_rows)) {
430
+			$primary_model_row = reset($primary_model_rows);
431
+		}
432
+		if (! (
433
+			$primary_model_row
434
+			&& Capabilities::currentUserHasPartialAccessTo($related_model, $context)
435
+		)
436
+		) {
437
+			if ($relation instanceof EE_Belongs_To_Relation) {
438
+				$related_model_name_maybe_plural = strtolower($related_model->get_this_model_name());
439
+			} else {
440
+				$related_model_name_maybe_plural = EEH_Inflector::pluralize_and_lower(
441
+					$related_model->get_this_model_name()
442
+				);
443
+			}
444
+			throw new RestException(
445
+				sprintf('rest_%s_cannot_list', $related_model_name_maybe_plural),
446
+				sprintf(
447
+					__(
448
+						'Sorry, you are not allowed to list %1$s related to %2$s. Missing permissions: %3$s',
449
+						'event_espresso'
450
+					),
451
+					$related_model_name_maybe_plural,
452
+					$relation->get_this_model()->get_this_model_name(),
453
+					implode(
454
+						',',
455
+						array_keys(
456
+							Capabilities::getMissingPermissions($related_model, $context)
457
+						)
458
+					)
459
+				),
460
+				array('status' => 403)
461
+			);
462
+		}
463
+
464
+		$this->checkPassword(
465
+			$model,
466
+			$primary_model_row,
467
+			$restricted_query_params,
468
+			$request
469
+		);
470
+		$query_params = $this->createModelQueryParams($relation->get_other_model(), $request->get_params());
471
+		foreach ($primary_model_query_params[0] as $where_condition_key => $where_condition_value) {
472
+			$query_params[0][ $relation->get_this_model()->get_this_model_name()
473
+							  . '.'
474
+							  . $where_condition_key ] = $where_condition_value;
475
+		}
476
+		$query_params['default_where_conditions'] = 'none';
477
+		$query_params['caps'] = $context;
478
+		if (! $request->get_header('no_rest_headers')) {
479
+			$this->setHeadersFromQueryParams($relation->get_other_model(), $query_params);
480
+		}
481
+		/** @type array $results */
482
+		$results = $relation->get_other_model()->get_all_wpdb_results($query_params);
483
+		$nice_results = array();
484
+		foreach ($results as $result) {
485
+			$nice_result = $this->createEntityFromWpdbResult(
486
+				$relation->get_other_model(),
487
+				$result,
488
+				$request
489
+			);
490
+			if ($relation instanceof EE_HABTM_Relation) {
491
+				// put the unusual stuff (properties from the HABTM relation) first, and make sure
492
+				// if there are conflicts we prefer the properties from the main model
493
+				$join_model_result = $this->createEntityFromWpdbResult(
494
+					$relation->get_join_model(),
495
+					$result,
496
+					$request
497
+				);
498
+				$joined_result = array_merge($join_model_result, $nice_result);
499
+				// but keep the meta stuff from the main model
500
+				if (isset($nice_result['meta'])) {
501
+					$joined_result['meta'] = $nice_result['meta'];
502
+				}
503
+				$nice_result = $joined_result;
504
+			}
505
+			$nice_results[] = $nice_result;
506
+		}
507
+		if ($relation instanceof EE_Belongs_To_Relation) {
508
+			return array_shift($nice_results);
509
+		} else {
510
+			return $nice_results;
511
+		}
512
+	}
513
+
514
+
515
+	/**
516
+	 * Gets the collection for given relation object
517
+	 * The same as Read::get_entities_from_model(), except if the relation
518
+	 * is a HABTM relation, in which case it merges any non-foreign-key fields from
519
+	 * the join-model-object into the results
520
+	 *
521
+	 * @param string                 $id the ID of the thing we are fetching related stuff from
522
+	 * @param EE_Model_Relation_Base $relation
523
+	 * @param WP_REST_Request        $request
524
+	 * @return array
525
+	 * @throws DomainException
526
+	 * @throws EE_Error
527
+	 * @throws InvalidArgumentException
528
+	 * @throws InvalidDataTypeException
529
+	 * @throws InvalidInterfaceException
530
+	 * @throws ReflectionException
531
+	 * @throws RestException
532
+	 * @throws ModelConfigurationException
533
+	 * @throws UnexpectedEntityException
534
+	 */
535
+	public function getEntitiesFromRelation($id, $relation, $request)
536
+	{
537
+		if (! $relation->get_this_model()->has_primary_key_field()) {
538
+			throw new EE_Error(
539
+				sprintf(
540
+					__(
541
+					// @codingStandardsIgnoreStart
542
+						'Read::get_entities_from_relation should only be called from a model with a primary key, it was called from %1$s',
543
+						// @codingStandardsIgnoreEnd
544
+						'event_espresso'
545
+					),
546
+					$relation->get_this_model()->get_this_model_name()
547
+				)
548
+			);
549
+		}
550
+		// can we edit that main item?
551
+		// if not, show nothing but an error
552
+		// otherwise, please proceed
553
+		return $this->getEntitiesFromRelationUsingModelQueryParams(
554
+			array(
555
+				array(
556
+					$relation->get_this_model()->primary_key_name() => $id,
557
+				),
558
+			),
559
+			$relation,
560
+			$request
561
+		);
562
+	}
563
+
564
+
565
+	/**
566
+	 * Sets the headers that are based on the model and query params,
567
+	 * like the total records. This should only be called on the original request
568
+	 * from the client, not on subsequent internal
569
+	 *
570
+	 * @param EEM_Base $model
571
+	 * @param array    $query_params
572
+	 * @return void
573
+	 * @throws EE_Error
574
+	 */
575
+	protected function setHeadersFromQueryParams($model, $query_params)
576
+	{
577
+		$this->setDebugInfo('model query params', $query_params);
578
+		$this->setDebugInfo(
579
+			'missing caps',
580
+			Capabilities::getMissingPermissionsString($model, $query_params['caps'])
581
+		);
582
+		// normally the limit to a 2-part array, where the 2nd item is the limit
583
+		if (! isset($query_params['limit'])) {
584
+			$query_params['limit'] = EED_Core_Rest_Api::get_default_query_limit();
585
+		}
586
+		if (is_array($query_params['limit'])) {
587
+			$limit_parts = $query_params['limit'];
588
+		} else {
589
+			$limit_parts = explode(',', $query_params['limit']);
590
+			if (count($limit_parts) === 1) {
591
+				$limit_parts = array(0, $limit_parts[0]);
592
+			}
593
+		}
594
+		// remove the group by and having parts of the query, as those will
595
+		// make the sql query return an array of values, instead of just a single value
596
+		unset($query_params['group_by'], $query_params['having'], $query_params['limit']);
597
+		$count = $model->count($query_params, null, true);
598
+		$pages = $count / $limit_parts[1];
599
+		$this->setResponseHeader('Total', $count, false);
600
+		$this->setResponseHeader('PageSize', $limit_parts[1], false);
601
+		$this->setResponseHeader('TotalPages', ceil($pages), false);
602
+	}
603
+
604
+
605
+	/**
606
+	 * Changes database results into REST API entities
607
+	 *
608
+	 * @param EEM_Base        $model
609
+	 * @param array           $db_row     like results from $wpdb->get_results()
610
+	 * @param WP_REST_Request $rest_request
611
+	 * @param string          $deprecated no longer used
612
+	 * @return array ready for being converted into json for sending to client
613
+	 * @throws DomainException
614
+	 * @throws EE_Error
615
+	 * @throws InvalidArgumentException
616
+	 * @throws InvalidDataTypeException
617
+	 * @throws InvalidInterfaceException
618
+	 * @throws ModelConfigurationException
619
+	 * @throws ReflectionException
620
+	 * @throws RestException
621
+	 * @throws RestPasswordIncorrectException
622
+	 * @throws RestPasswordRequiredException
623
+	 * @throws UnexpectedEntityException
624
+	 */
625
+	public function createEntityFromWpdbResult($model, $db_row, $rest_request, $deprecated = null)
626
+	{
627
+		if (! $rest_request instanceof WP_REST_Request) {
628
+			// ok so this was called in the old style, where the 3rd arg was
629
+			// $include, and the 4th arg was $context
630
+			// now setup the request just to avoid fatal errors, although we won't be able
631
+			// to truly make use of it because it's kinda devoid of info
632
+			$rest_request = new WP_REST_Request();
633
+			$rest_request->set_param('include', $rest_request);
634
+			$rest_request->set_param('caps', $deprecated);
635
+		}
636
+		if ($rest_request->get_param('caps') === null) {
637
+			$rest_request->set_param('caps', EEM_Base::caps_read);
638
+		}
639
+		$current_user_full_access_to_entity = $model->currentUserCan(
640
+			EEM_Base::caps_read_admin,
641
+			$model->deduce_fields_n_values_from_cols_n_values($db_row)
642
+		);
643
+		$entity_array = $this->createBareEntityFromWpdbResults($model, $db_row);
644
+		$entity_array = $this->addExtraFields($model, $db_row, $entity_array);
645
+		$entity_array['_links'] = $this->getEntityLinks($model, $db_row, $entity_array);
646
+		// when it's a regular read request for a model with a password and the password wasn't provided
647
+		// remove the password protected fields
648
+		$has_protected_fields = false;
649
+		try {
650
+			$this->checkPassword(
651
+				$model,
652
+				$db_row,
653
+				$model->alter_query_params_to_restrict_by_ID(
654
+					$model->get_index_primary_key_string(
655
+						$model->deduce_fields_n_values_from_cols_n_values($db_row)
656
+					)
657
+				),
658
+				$rest_request
659
+			);
660
+		} catch (RestPasswordRequiredException $e) {
661
+			if ($model->hasPassword()) {
662
+				// just remove protected fields
663
+				$has_protected_fields = true;
664
+				$entity_array = Capabilities::filterOutPasswordProtectedFields(
665
+					$entity_array,
666
+					$model,
667
+					$this->getModelVersionInfo()
668
+				);
669
+			} else {
670
+				// that's a problem. None of this should be accessible if no password was provided
671
+				throw $e;
672
+			}
673
+		}
674
+
675
+		$entity_array['_calculated_fields'] = $this->getEntityCalculations($model, $db_row, $rest_request, $has_protected_fields);
676
+		$entity_array = apply_filters(
677
+			'FHEE__Read__create_entity_from_wpdb_results__entity_before_including_requested_models',
678
+			$entity_array,
679
+			$model,
680
+			$rest_request->get_param('caps'),
681
+			$rest_request,
682
+			$this
683
+		);
684
+		// add an empty protected property for now. If it's still around after we remove everything the request didn't
685
+		// want, we'll populate it then. k?
686
+		$entity_array['_protected'] = array();
687
+		// remove any properties the request didn't want. This way _protected won't bother mentioning them
688
+		$entity_array = $this->includeOnlyRequestedProperties($model, $rest_request, $entity_array);
689
+		$entity_array = $this->includeRequestedModels($model, $rest_request, $entity_array, $db_row, $has_protected_fields);
690
+		// if they still wanted the _protected property, add it.
691
+		if (isset($entity_array['_protected'])) {
692
+			$entity_array = $this->addProtectedProperty($model, $entity_array, $has_protected_fields);
693
+		}
694
+		$entity_array = apply_filters(
695
+			'FHEE__Read__create_entity_from_wpdb_results__entity_before_inaccessible_field_removal',
696
+			$entity_array,
697
+			$model,
698
+			$rest_request->get_param('caps'),
699
+			$rest_request,
700
+			$this
701
+		);
702
+		if (! $current_user_full_access_to_entity) {
703
+			$result_without_inaccessible_fields = Capabilities::filterOutInaccessibleEntityFields(
704
+				$entity_array,
705
+				$model,
706
+				$rest_request->get_param('caps'),
707
+				$this->getModelVersionInfo()
708
+			);
709
+		} else {
710
+			$result_without_inaccessible_fields = $entity_array;
711
+		}
712
+		$this->setDebugInfo(
713
+			'inaccessible fields',
714
+			array_keys(array_diff_key((array) $entity_array, (array) $result_without_inaccessible_fields))
715
+		);
716
+		return apply_filters(
717
+			'FHEE__Read__create_entity_from_wpdb_results__entity_return',
718
+			$result_without_inaccessible_fields,
719
+			$model,
720
+			$rest_request->get_param('caps')
721
+		);
722
+	}
723
+
724
+
725
+	/**
726
+	 * Returns an array describing which fields can be protected, and which actually were removed this request
727
+	 *
728
+	 * @param EEM_Base $model
729
+	 * @param          $results_so_far
730
+	 * @param          $protected
731
+	 * @return array results
732
+	 * @throws EE_Error
733
+	 * @since 4.9.74.p
734
+	 */
735
+	protected function addProtectedProperty(EEM_Base $model, $results_so_far, $protected)
736
+	{
737
+		if (! $protected || ! $model->hasPassword()) {
738
+			return $results_so_far;
739
+		}
740
+		$password_field = $model->getPasswordField();
741
+		$all_protected = array_merge(
742
+			array($password_field->get_name()),
743
+			$password_field->protectedFields()
744
+		);
745
+		$fields_included = array_keys($results_so_far);
746
+		$fields_included = array_intersect(
747
+			$all_protected,
748
+			$fields_included
749
+		);
750
+		foreach ($fields_included as $field_name) {
751
+			$results_so_far['_protected'][] = $field_name ;
752
+		}
753
+		return $results_so_far;
754
+	}
755
+
756
+
757
+	/**
758
+	 * Creates a REST entity array (JSON object we're going to return in the response, but
759
+	 * for now still a PHP array, but soon enough we'll call json_encode on it, don't worry),
760
+	 * from $wpdb->get_row( $sql, ARRAY_A)
761
+	 *
762
+	 * @param EEM_Base $model
763
+	 * @param array    $db_row
764
+	 * @return array entity mostly ready for converting to JSON and sending in the response
765
+	 * @throws EE_Error
766
+	 * @throws InvalidArgumentException
767
+	 * @throws InvalidDataTypeException
768
+	 * @throws InvalidInterfaceException
769
+	 * @throws ReflectionException
770
+	 * @throws RestException
771
+	 */
772
+	protected function createBareEntityFromWpdbResults(EEM_Base $model, $db_row)
773
+	{
774
+		$result = $model->deduce_fields_n_values_from_cols_n_values($db_row);
775
+		$result = array_intersect_key(
776
+			$result,
777
+			$this->getModelVersionInfo()->fieldsOnModelInThisVersion($model)
778
+		);
779
+		// if this is a CPT, we need to set the global $post to it,
780
+		// otherwise shortcodes etc won't work properly while rendering it
781
+		if ($model instanceof EEM_CPT_Base) {
782
+			$do_chevy_shuffle = true;
783
+		} else {
784
+			$do_chevy_shuffle = false;
785
+		}
786
+		if ($do_chevy_shuffle) {
787
+			global $post;
788
+			$old_post = $post;
789
+			$post = get_post($result[ $model->primary_key_name() ]);
790
+			if (! $post instanceof WP_Post) {
791
+				// well that's weird, because $result is what we JUST fetched from the database
792
+				throw new RestException(
793
+					'error_fetching_post_from_database_results',
794
+					esc_html__(
795
+						'An item was retrieved from the database but it\'s not a WP_Post like it should be.',
796
+						'event_espresso'
797
+					)
798
+				);
799
+			}
800
+			$model_object_classname = 'EE_' . $model->get_this_model_name();
801
+			$post->{$model_object_classname} = EE_Registry::instance()->load_class(
802
+				$model_object_classname,
803
+				$result,
804
+				false,
805
+				false
806
+			);
807
+		}
808
+		foreach ($result as $field_name => $field_value) {
809
+			$field_obj = $model->field_settings_for($field_name);
810
+			if ($this->isSubclassOfOne($field_obj, $this->getModelVersionInfo()->fieldsIgnored())) {
811
+				unset($result[ $field_name ]);
812
+			} elseif ($this->isSubclassOfOne(
813
+				$field_obj,
814
+				$this->getModelVersionInfo()->fieldsThatHaveRenderedFormat()
815
+			)
816
+			) {
817
+				$result[ $field_name ] = array(
818
+					'raw'      => $this->prepareFieldObjValueForJson($field_obj, $field_value),
819
+					'rendered' => $this->prepareFieldObjValueForJson($field_obj, $field_value, 'pretty'),
820
+				);
821
+			} elseif ($this->isSubclassOfOne(
822
+				$field_obj,
823
+				$this->getModelVersionInfo()->fieldsThatHavePrettyFormat()
824
+			)
825
+			) {
826
+				$result[ $field_name ] = array(
827
+					'raw'    => $this->prepareFieldObjValueForJson($field_obj, $field_value),
828
+					'pretty' => $this->prepareFieldObjValueForJson($field_obj, $field_value, 'pretty'),
829
+				);
830
+			} elseif ($field_obj instanceof EE_Datetime_Field) {
831
+				$field_value = $field_obj->prepare_for_set_from_db($field_value);
832
+				// if the value is null, but we're not supposed to permit null, then set to the field's default
833
+				if (is_null($field_value)) {
834
+					$field_value = $field_obj->getDefaultDateTimeObj();
835
+				}
836
+				if (is_null($field_value)) {
837
+					$gmt_date = $local_date = ModelDataTranslator::prepareFieldValuesForJson(
838
+						$field_obj,
839
+						$field_value,
840
+						$this->getModelVersionInfo()->requestedVersion()
841
+					);
842
+				} else {
843
+					$timezone = $field_value->getTimezone();
844
+					EEH_DTT_Helper::setTimezone($field_value, new DateTimeZone('UTC'));
845
+					$gmt_date = ModelDataTranslator::prepareFieldValuesForJson(
846
+						$field_obj,
847
+						$field_value,
848
+						$this->getModelVersionInfo()->requestedVersion()
849
+					);
850
+					EEH_DTT_Helper::setTimezone($field_value, $timezone);
851
+					$local_date = ModelDataTranslator::prepareFieldValuesForJson(
852
+						$field_obj,
853
+						$field_value,
854
+						$this->getModelVersionInfo()->requestedVersion()
855
+					);
856
+				}
857
+				$result[ $field_name . '_gmt' ] = $gmt_date;
858
+				$result[ $field_name ] = $local_date;
859
+			} else {
860
+				$result[ $field_name ] = $this->prepareFieldObjValueForJson($field_obj, $field_value);
861
+			}
862
+		}
863
+		if ($do_chevy_shuffle) {
864
+			$post = $old_post;
865
+		}
866
+		return $result;
867
+	}
868
+
869
+
870
+	/**
871
+	 * Takes a value all the way from the DB representation, to the model object's representation, to the
872
+	 * user-facing PHP representation, to the REST API representation. (Assumes you've already taken from the DB
873
+	 * representation using $field_obj->prepare_for_set_from_db())
874
+	 *
875
+	 * @param EE_Model_Field_Base $field_obj
876
+	 * @param mixed               $value  as it's stored on a model object
877
+	 * @param string              $format valid values are 'normal' (default), 'pretty', 'datetime_obj'
878
+	 * @return mixed
879
+	 * @throws EE_Error
880
+	 */
881
+	protected function prepareFieldObjValueForJson(EE_Model_Field_Base $field_obj, $value, $format = 'normal')
882
+	{
883
+		$value = $field_obj->prepare_for_set_from_db($value);
884
+		switch ($format) {
885
+			case 'pretty':
886
+				$value = $field_obj->prepare_for_pretty_echoing($value);
887
+				break;
888
+			case 'normal':
889
+			default:
890
+				$value = $field_obj->prepare_for_get($value);
891
+				break;
892
+		}
893
+		return ModelDataTranslator::prepareFieldValuesForJson(
894
+			$field_obj,
895
+			$value,
896
+			$this->getModelVersionInfo()->requestedVersion()
897
+		);
898
+	}
899
+
900
+
901
+	/**
902
+	 * Adds a few extra fields to the entity response
903
+	 *
904
+	 * @param EEM_Base $model
905
+	 * @param array    $db_row
906
+	 * @param array    $entity_array
907
+	 * @return array modified entity
908
+	 * @throws EE_Error
909
+	 */
910
+	protected function addExtraFields(EEM_Base $model, $db_row, $entity_array)
911
+	{
912
+		if ($model instanceof EEM_CPT_Base) {
913
+			$entity_array['link'] = get_permalink($db_row[ $model->get_primary_key_field()->get_qualified_column() ]);
914
+		}
915
+		return $entity_array;
916
+	}
917
+
918
+
919
+	/**
920
+	 * Gets links we want to add to the response
921
+	 *
922
+	 * @param EEM_Base         $model
923
+	 * @param array            $db_row
924
+	 * @param array            $entity_array
925
+	 * @return array the _links item in the entity
926
+	 * @throws EE_Error
927
+	 * @global WP_REST_Server $wp_rest_server
928
+	 */
929
+	protected function getEntityLinks($model, $db_row, $entity_array)
930
+	{
931
+		// add basic links
932
+		$links = array();
933
+		if ($model->has_primary_key_field()) {
934
+			$links['self'] = array(
935
+				array(
936
+					'href' => $this->getVersionedLinkTo(
937
+						EEH_Inflector::pluralize_and_lower($model->get_this_model_name())
938
+						. '/'
939
+						. $entity_array[ $model->primary_key_name() ]
940
+					),
941
+				),
942
+			);
943
+		}
944
+		$links['collection'] = array(
945
+			array(
946
+				'href' => $this->getVersionedLinkTo(
947
+					EEH_Inflector::pluralize_and_lower($model->get_this_model_name())
948
+				),
949
+			),
950
+		);
951
+		// add links to related models
952
+		if ($model->has_primary_key_field()) {
953
+			foreach ($this->getModelVersionInfo()->relationSettings($model) as $relation_name => $relation_obj) {
954
+				$related_model_part = Read::getRelatedEntityName($relation_name, $relation_obj);
955
+				$links[ EED_Core_Rest_Api::ee_api_link_namespace . $related_model_part ] = array(
956
+					array(
957
+						'href'   => $this->getVersionedLinkTo(
958
+							EEH_Inflector::pluralize_and_lower($model->get_this_model_name())
959
+							. '/'
960
+							. $entity_array[ $model->primary_key_name() ]
961
+							. '/'
962
+							. $related_model_part
963
+						),
964
+						'single' => $relation_obj instanceof EE_Belongs_To_Relation,
965
+					),
966
+				);
967
+			}
968
+		}
969
+		return $links;
970
+	}
971
+
972
+
973
+	/**
974
+	 * Adds the included models indicated in the request to the entity provided
975
+	 *
976
+	 * @param EEM_Base        $model
977
+	 * @param WP_REST_Request $rest_request
978
+	 * @param array           $entity_array
979
+	 * @param array           $db_row
980
+	 * @param boolean         $included_items_protected if the original item is password protected, don't include any related models.
981
+	 * @return array the modified entity
982
+	 * @throws DomainException
983
+	 * @throws EE_Error
984
+	 * @throws InvalidArgumentException
985
+	 * @throws InvalidDataTypeException
986
+	 * @throws InvalidInterfaceException
987
+	 * @throws ModelConfigurationException
988
+	 * @throws ReflectionException
989
+	 * @throws UnexpectedEntityException
990
+	 */
991
+	protected function includeRequestedModels(
992
+		EEM_Base $model,
993
+		WP_REST_Request $rest_request,
994
+		$entity_array,
995
+		$db_row = array(),
996
+		$included_items_protected = false
997
+	) {
998
+		// if $db_row not included, hope the entity array has what we need
999
+		if (! $db_row) {
1000
+			$db_row = $entity_array;
1001
+		}
1002
+		$relation_settings = $this->getModelVersionInfo()->relationSettings($model);
1003
+		foreach ($relation_settings as $relation_name => $relation_obj) {
1004
+			$related_fields_to_include = $this->explodeAndGetItemsPrefixedWith(
1005
+				$rest_request->get_param('include'),
1006
+				$relation_name
1007
+			);
1008
+			$related_fields_to_calculate = $this->explodeAndGetItemsPrefixedWith(
1009
+				$rest_request->get_param('calculate'),
1010
+				$relation_name
1011
+			);
1012
+			// did they specify they wanted to include a related model, or
1013
+			// specific fields from a related model?
1014
+			// or did they specify to calculate a field from a related model?
1015
+			if ($related_fields_to_include || $related_fields_to_calculate) {
1016
+				// if so, we should include at least some part of the related model
1017
+				$pretend_related_request = new WP_REST_Request();
1018
+				$pretend_related_request->set_query_params(
1019
+					array(
1020
+						'caps'      => $rest_request->get_param('caps'),
1021
+						'include'   => $related_fields_to_include,
1022
+						'calculate' => $related_fields_to_calculate,
1023
+						'password' => $rest_request->get_param('password')
1024
+					)
1025
+				);
1026
+				$pretend_related_request->add_header('no_rest_headers', true);
1027
+				$primary_model_query_params = $model->alter_query_params_to_restrict_by_ID(
1028
+					$model->get_index_primary_key_string(
1029
+						$model->deduce_fields_n_values_from_cols_n_values($db_row)
1030
+					)
1031
+				);
1032
+				if (! $included_items_protected) {
1033
+					try {
1034
+						$related_results = $this->getEntitiesFromRelationUsingModelQueryParams(
1035
+							$primary_model_query_params,
1036
+							$relation_obj,
1037
+							$pretend_related_request
1038
+						);
1039
+					} catch (RestException $e) {
1040
+						$related_results = null;
1041
+					}
1042
+				} else {
1043
+					// they're protected, hide them.
1044
+					$related_results = null;
1045
+					$entity_array['_protected'][] = Read::getRelatedEntityName($relation_name, $relation_obj);
1046
+				}
1047
+				if ($related_results instanceof WP_Error || $related_results === null) {
1048
+					$related_results = $relation_obj instanceof EE_Belongs_To_Relation ? null : array();
1049
+				}
1050
+				$entity_array[ Read::getRelatedEntityName($relation_name, $relation_obj) ] = $related_results;
1051
+			}
1052
+		}
1053
+		return $entity_array;
1054
+	}
1055
+
1056
+	/**
1057
+	 * If the user has requested only specific properties (including meta properties like _links or _protected)
1058
+	 * remove everything else.
1059
+	 * @since 4.9.74.p
1060
+	 * @param EEM_Base $model
1061
+	 * @param WP_REST_Request $rest_request
1062
+	 * @param $entity_array
1063
+	 * @return array
1064
+	 * @throws EE_Error
1065
+	 */
1066
+	protected function includeOnlyRequestedProperties(
1067
+		EEM_Base $model,
1068
+		WP_REST_Request $rest_request,
1069
+		$entity_array
1070
+	) {
1071
+
1072
+		$includes_for_this_model = $this->explodeAndGetItemsPrefixedWith($rest_request->get_param('include'), '');
1073
+		$includes_for_this_model = $this->removeModelNamesFromArray($includes_for_this_model);
1074
+		// if they passed in * or didn't specify any includes, return everything
1075
+		if (! empty($includes_for_this_model) && ! in_array('*', $includes_for_this_model, true)) {
1076
+			if ($model->has_primary_key_field()) {
1077
+				// always include the primary key. ya just gotta know that at least
1078
+				$includes_for_this_model[] = $model->primary_key_name();
1079
+			}
1080
+			if ($this->explodeAndGetItemsPrefixedWith($rest_request->get_param('calculate'), '')) {
1081
+				$includes_for_this_model[] = '_calculated_fields';
1082
+			}
1083
+			$entity_array = array_intersect_key($entity_array, array_flip($includes_for_this_model));
1084
+		}
1085
+		return $entity_array;
1086
+	}
1087
+
1088
+
1089
+	/**
1090
+	 * Returns a new array with all the names of models removed. Eg
1091
+	 * array( 'Event', 'Datetime.*', 'foobar' ) would become array( 'Datetime.*', 'foobar' )
1092
+	 *
1093
+	 * @param array $arr
1094
+	 * @return array
1095
+	 */
1096
+	private function removeModelNamesFromArray($arr)
1097
+	{
1098
+		return array_diff($arr, array_keys(EE_Registry::instance()->non_abstract_db_models));
1099
+	}
1100
+
1101
+
1102
+	/**
1103
+	 * Gets the calculated fields for the response
1104
+	 *
1105
+	 * @param EEM_Base        $model
1106
+	 * @param array           $wpdb_row
1107
+	 * @param WP_REST_Request $rest_request
1108
+	 * @param boolean         $row_is_protected whether this row is password protected or not
1109
+	 * @return stdClass the _calculations item in the entity
1110
+	 * @throws EE_Error
1111
+	 * @throws UnexpectedEntityException
1112
+	 */
1113
+	protected function getEntityCalculations($model, $wpdb_row, $rest_request, $row_is_protected = false)
1114
+	{
1115
+		$calculated_fields = $this->explodeAndGetItemsPrefixedWith(
1116
+			$rest_request->get_param('calculate'),
1117
+			''
1118
+		);
1119
+		// note: setting calculate=* doesn't do anything
1120
+		$calculated_fields_to_return = new stdClass();
1121
+		$protected_fields = array();
1122
+		foreach ($calculated_fields as $field_to_calculate) {
1123
+			try {
1124
+				// it's password protected, so they shouldn't be able to read this. Remove the value
1125
+				$schema = $this->fields_calculator->getJsonSchemaForModel($model);
1126
+				if ($row_is_protected
1127
+					&& isset($schema['properties'][ $field_to_calculate ]['protected'])
1128
+					&& $schema['properties'][ $field_to_calculate ]['protected']) {
1129
+					$calculated_value = null;
1130
+					$protected_fields[] = $field_to_calculate;
1131
+					if ($schema['properties'][ $field_to_calculate ]['type']) {
1132
+						switch ($schema['properties'][ $field_to_calculate ]['type']) {
1133
+							case 'boolean':
1134
+								$calculated_value = false;
1135
+								break;
1136
+							case 'integer':
1137
+								$calculated_value = 0;
1138
+								break;
1139
+							case 'string':
1140
+								$calculated_value = '';
1141
+								break;
1142
+							case 'array':
1143
+								$calculated_value = array();
1144
+								break;
1145
+							case 'object':
1146
+								$calculated_value = new stdClass();
1147
+								break;
1148
+						}
1149
+					}
1150
+				} else {
1151
+					$calculated_value = ModelDataTranslator::prepareFieldValueForJson(
1152
+						null,
1153
+						$this->fields_calculator->retrieveCalculatedFieldValue(
1154
+							$model,
1155
+							$field_to_calculate,
1156
+							$wpdb_row,
1157
+							$rest_request,
1158
+							$this
1159
+						),
1160
+						$this->getModelVersionInfo()->requestedVersion()
1161
+					);
1162
+				}
1163
+				$calculated_fields_to_return->{$field_to_calculate} = $calculated_value;
1164
+			} catch (RestException $e) {
1165
+				// if we don't have permission to read it, just leave it out. but let devs know about the problem
1166
+				$this->setResponseHeader(
1167
+					'Notices-Field-Calculation-Errors['
1168
+					. $e->getStringCode()
1169
+					. ']['
1170
+					. $model->get_this_model_name()
1171
+					. ']['
1172
+					. $field_to_calculate
1173
+					. ']',
1174
+					$e->getMessage()
1175
+				);
1176
+			}
1177
+		}
1178
+		$calculated_fields_to_return->_protected = $protected_fields;
1179
+		return $calculated_fields_to_return;
1180
+	}
1181
+
1182
+
1183
+	/**
1184
+	 * Gets the full URL to the resource, taking the requested version into account
1185
+	 *
1186
+	 * @param string $link_part_after_version_and_slash eg "events/10/datetimes"
1187
+	 * @return string url eg "http://mysite.com/wp-json/ee/v4.6/events/10/datetimes"
1188
+	 * @throws EE_Error
1189
+	 */
1190
+	public function getVersionedLinkTo($link_part_after_version_and_slash)
1191
+	{
1192
+		return rest_url(
1193
+			EED_Core_Rest_Api::get_versioned_route_to(
1194
+				$link_part_after_version_and_slash,
1195
+				$this->getModelVersionInfo()->requestedVersion()
1196
+			)
1197
+		);
1198
+	}
1199
+
1200
+
1201
+	/**
1202
+	 * Gets the correct lowercase name for the relation in the API according
1203
+	 * to the relation's type
1204
+	 *
1205
+	 * @param string                  $relation_name
1206
+	 * @param EE_Model_Relation_Base $relation_obj
1207
+	 * @return string
1208
+	 */
1209
+	public static function getRelatedEntityName($relation_name, $relation_obj)
1210
+	{
1211
+		if ($relation_obj instanceof EE_Belongs_To_Relation) {
1212
+			return strtolower($relation_name);
1213
+		}
1214
+		return EEH_Inflector::pluralize_and_lower($relation_name);
1215
+	}
1216
+
1217
+
1218
+	/**
1219
+	 * Gets the one model object with the specified id for the specified model
1220
+	 *
1221
+	 * @param EEM_Base        $model
1222
+	 * @param WP_REST_Request $request
1223
+	 * @return array
1224
+	 * @throws EE_Error
1225
+	 * @throws InvalidArgumentException
1226
+	 * @throws InvalidDataTypeException
1227
+	 * @throws InvalidInterfaceException
1228
+	 * @throws ModelConfigurationException
1229
+	 * @throws ReflectionException
1230
+	 * @throws RestException
1231
+	 * @throws RestPasswordIncorrectException
1232
+	 * @throws RestPasswordRequiredException
1233
+	 * @throws UnexpectedEntityException
1234
+	 * @throws DomainException
1235
+	 */
1236
+	public function getEntityFromModel($model, $request)
1237
+	{
1238
+		$context = $this->validateContext($request->get_param('caps'));
1239
+		return $this->getOneOrReportPermissionError($model, $request, $context);
1240
+	}
1241
+
1242
+
1243
+	/**
1244
+	 * If a context is provided which isn't valid, maybe it was added in a future
1245
+	 * version so just treat it as a default read
1246
+	 *
1247
+	 * @param string $context
1248
+	 * @return string array key of EEM_Base::cap_contexts_to_cap_action_map()
1249
+	 */
1250
+	public function validateContext($context)
1251
+	{
1252
+		if (! $context) {
1253
+			$context = EEM_Base::caps_read;
1254
+		}
1255
+		$valid_contexts = EEM_Base::valid_cap_contexts();
1256
+		if (in_array($context, $valid_contexts, true)) {
1257
+			return $context;
1258
+		}
1259
+		return EEM_Base::caps_read;
1260
+	}
1261
+
1262
+
1263
+	/**
1264
+	 * Verifies the passed in value is an allowable default where conditions value.
1265
+	 *
1266
+	 * @param $default_query_params
1267
+	 * @return string
1268
+	 */
1269
+	public function validateDefaultQueryParams($default_query_params)
1270
+	{
1271
+		$valid_default_where_conditions_for_api_calls = array(
1272
+			EEM_Base::default_where_conditions_all,
1273
+			EEM_Base::default_where_conditions_minimum_all,
1274
+			EEM_Base::default_where_conditions_minimum_others,
1275
+		);
1276
+		if (! $default_query_params) {
1277
+			$default_query_params = EEM_Base::default_where_conditions_all;
1278
+		}
1279
+		if (in_array(
1280
+			$default_query_params,
1281
+			$valid_default_where_conditions_for_api_calls,
1282
+			true
1283
+		)) {
1284
+			return $default_query_params;
1285
+		} else {
1286
+			return EEM_Base::default_where_conditions_all;
1287
+		}
1288
+	}
1289
+
1290
+
1291
+	/**
1292
+	 * Translates API filter get parameter into model query params @see https://github.com/eventespresso/event-espresso-core/tree/master/docs/G--Model-System/model-query-params.md#0-where-conditions.
1293
+	 * Note: right now the query parameter keys for fields (and related fields)
1294
+	 * can be left as-is, but it's quite possible this will change someday.
1295
+	 * Also, this method's contents might be candidate for moving to Model_Data_Translator
1296
+	 *
1297
+	 * @param EEM_Base $model
1298
+	 * @param          $query_params
1299
+	 * @return array model query params (@see https://github.com/eventespresso/event-espresso-core/tree/master/docs/G--Model-System/model-query-params.md#0-where-conditions)
1300
+	 *                                    or FALSE to indicate that absolutely no results should be returned
1301
+	 * @throws EE_Error
1302
+	 * @throws InvalidArgumentException
1303
+	 * @throws InvalidDataTypeException
1304
+	 * @throws InvalidInterfaceException
1305
+	 * @throws RestException
1306
+	 * @throws DomainException
1307
+	 */
1308
+	public function createModelQueryParams($model, $query_params)
1309
+	{
1310
+		$model_query_params = array();
1311
+		if (isset($query_params['where'])) {
1312
+			$model_query_params[0] = ModelDataTranslator::prepareConditionsQueryParamsForModels(
1313
+				$query_params['where'],
1314
+				$model,
1315
+				$this->getModelVersionInfo()->requestedVersion()
1316
+			);
1317
+		}
1318
+		if (isset($query_params['order_by'])) {
1319
+			$order_by = $query_params['order_by'];
1320
+		} elseif (isset($query_params['orderby'])) {
1321
+			$order_by = $query_params['orderby'];
1322
+		} else {
1323
+			$order_by = null;
1324
+		}
1325
+		if ($order_by !== null) {
1326
+			if (is_array($order_by)) {
1327
+				$order_by = ModelDataTranslator::prepareFieldNamesInArrayKeysFromJson($order_by);
1328
+			} else {
1329
+				// it's a single item
1330
+				$order_by = ModelDataTranslator::prepareFieldNameFromJson($order_by);
1331
+			}
1332
+			$model_query_params['order_by'] = $order_by;
1333
+		}
1334
+		if (isset($query_params['group_by'])) {
1335
+			$group_by = $query_params['group_by'];
1336
+		} elseif (isset($query_params['groupby'])) {
1337
+			$group_by = $query_params['groupby'];
1338
+		} else {
1339
+			$group_by = array_keys($model->get_combined_primary_key_fields());
1340
+		}
1341
+		// make sure they're all real names
1342
+		if (is_array($group_by)) {
1343
+			$group_by = ModelDataTranslator::prepareFieldNamesFromJson($group_by);
1344
+		}
1345
+		if ($group_by !== null) {
1346
+			$model_query_params['group_by'] = $group_by;
1347
+		}
1348
+		if (isset($query_params['having'])) {
1349
+			$model_query_params['having'] = ModelDataTranslator::prepareConditionsQueryParamsForModels(
1350
+				$query_params['having'],
1351
+				$model,
1352
+				$this->getModelVersionInfo()->requestedVersion()
1353
+			);
1354
+		}
1355
+		if (isset($query_params['order'])) {
1356
+			$model_query_params['order'] = $query_params['order'];
1357
+		}
1358
+		if (isset($query_params['mine'])) {
1359
+			$model_query_params = $model->alter_query_params_to_only_include_mine($model_query_params);
1360
+		}
1361
+		if (isset($query_params['limit'])) {
1362
+			// limit should be either a string like '23' or '23,43', or an array with two items in it
1363
+			if (! is_array($query_params['limit'])) {
1364
+				$limit_array = explode(',', (string) $query_params['limit']);
1365
+			} else {
1366
+				$limit_array = $query_params['limit'];
1367
+			}
1368
+			$sanitized_limit = array();
1369
+			foreach ($limit_array as $key => $limit_part) {
1370
+				if ($this->debug_mode && (! is_numeric($limit_part) || count($sanitized_limit) > 2)) {
1371
+					throw new EE_Error(
1372
+						sprintf(
1373
+							__(
1374
+							// @codingStandardsIgnoreStart
1375
+								'An invalid limit filter was provided. It was: %s. If the EE4 JSON REST API weren\'t in debug mode, this message would not appear.',
1376
+								// @codingStandardsIgnoreEnd
1377
+								'event_espresso'
1378
+							),
1379
+							wp_json_encode($query_params['limit'])
1380
+						)
1381
+					);
1382
+				}
1383
+				$sanitized_limit[] = (int) $limit_part;
1384
+			}
1385
+			$model_query_params['limit'] = implode(',', $sanitized_limit);
1386
+		} else {
1387
+			$model_query_params['limit'] = EED_Core_Rest_Api::get_default_query_limit();
1388
+		}
1389
+		if (isset($query_params['caps'])) {
1390
+			$model_query_params['caps'] = $this->validateContext($query_params['caps']);
1391
+		} else {
1392
+			$model_query_params['caps'] = EEM_Base::caps_read;
1393
+		}
1394
+		if (isset($query_params['default_where_conditions'])) {
1395
+			$model_query_params['default_where_conditions'] = $this->validateDefaultQueryParams(
1396
+				$query_params['default_where_conditions']
1397
+			);
1398
+		}
1399
+		// if this is a model protected by a password on another model, exclude the password protected
1400
+		// entities by default. But if they passed in a password, try to show them all. If the password is wrong,
1401
+		// though, they'll get an error (see Read::createEntityFromWpdbResult() which calls Read::checkPassword)
1402
+		if ($model_query_params['caps'] === EEM_Base::caps_read
1403
+			&& empty($query_params['password'])
1404
+			&& ! $model->hasPassword()
1405
+			&& $model->restrictedByRelatedModelPassword()
1406
+		) {
1407
+			$model_query_params['exclude_protected'] = true;
1408
+		}
1409
+
1410
+		return apply_filters('FHEE__Read__create_model_query_params', $model_query_params, $query_params, $model);
1411
+	}
1412
+
1413
+
1414
+	/**
1415
+	 * Changes the REST-style query params for use in the models
1416
+	 *
1417
+	 * @deprecated
1418
+	 * @param EEM_Base $model
1419
+	 * @param array    $query_params sub-array from @see EEM_Base::get_all()
1420
+	 * @return array
1421
+	 */
1422
+	public function prepareRestQueryParamsKeyForModels($model, $query_params)
1423
+	{
1424
+		$model_ready_query_params = array();
1425
+		foreach ($query_params as $key => $value) {
1426
+			if (is_array($value)) {
1427
+				$model_ready_query_params[ $key ] = $this->prepareRestQueryParamsKeyForModels($model, $value);
1428
+			} else {
1429
+				$model_ready_query_params[ $key ] = $value;
1430
+			}
1431
+		}
1432
+		return $model_ready_query_params;
1433
+	}
1434
+
1435
+
1436
+	/**
1437
+	 * @deprecated instead use ModelDataTranslator::prepareFieldValuesFromJson()
1438
+	 * @param $model
1439
+	 * @param $query_params
1440
+	 * @return array
1441
+	 */
1442
+	public function prepareRestQueryParamsValuesForModels($model, $query_params)
1443
+	{
1444
+		$model_ready_query_params = array();
1445
+		foreach ($query_params as $key => $value) {
1446
+			if (is_array($value)) {
1447
+				$model_ready_query_params[ $key ] = $this->prepareRestQueryParamsValuesForModels($model, $value);
1448
+			} else {
1449
+				$model_ready_query_params[ $key ] = $value;
1450
+			}
1451
+		}
1452
+		return $model_ready_query_params;
1453
+	}
1454
+
1455
+
1456
+	/**
1457
+	 * Explodes the string on commas, and only returns items with $prefix followed by a period.
1458
+	 * If no prefix is specified, returns items with no period.
1459
+	 *
1460
+	 * @param string|array $string_to_explode eg "jibba,jabba, blah, blah, blah" or array('jibba', 'jabba' )
1461
+	 * @param string       $prefix            "Event" or "foobar"
1462
+	 * @return array $string_to_exploded exploded on COMMAS, and if a prefix was specified
1463
+	 *                                        we only return strings starting with that and a period; if no prefix was
1464
+	 *                                        specified we return all items containing NO periods
1465
+	 */
1466
+	public function explodeAndGetItemsPrefixedWith($string_to_explode, $prefix)
1467
+	{
1468
+		if (is_string($string_to_explode)) {
1469
+			$exploded_contents = explode(',', $string_to_explode);
1470
+		} elseif (is_array($string_to_explode)) {
1471
+			$exploded_contents = $string_to_explode;
1472
+		} else {
1473
+			$exploded_contents = array();
1474
+		}
1475
+		// if the string was empty, we want an empty array
1476
+		$exploded_contents = array_filter($exploded_contents);
1477
+		$contents_with_prefix = array();
1478
+		foreach ($exploded_contents as $item) {
1479
+			$item = trim($item);
1480
+			// if no prefix was provided, so we look for items with no "." in them
1481
+			if (! $prefix) {
1482
+				// does this item have a period?
1483
+				if (strpos($item, '.') === false) {
1484
+					// if not, then its what we're looking for
1485
+					$contents_with_prefix[] = $item;
1486
+				}
1487
+			} elseif (strpos($item, $prefix . '.') === 0) {
1488
+				// this item has the prefix and a period, grab it
1489
+				$contents_with_prefix[] = substr(
1490
+					$item,
1491
+					strpos($item, $prefix . '.') + strlen($prefix . '.')
1492
+				);
1493
+			} elseif ($item === $prefix) {
1494
+				// this item is JUST the prefix
1495
+				// so let's grab everything after, which is a blank string
1496
+				$contents_with_prefix[] = '';
1497
+			}
1498
+		}
1499
+		return $contents_with_prefix;
1500
+	}
1501
+
1502
+
1503
+	/**
1504
+	 * @deprecated since 4.8.36.rc.001 You should instead use Read::explode_and_get_items_prefixed_with.
1505
+	 *             Deprecated because its return values were really quite confusing- sometimes it returned
1506
+	 *             an empty array (when the include string was blank or '*') or sometimes it returned
1507
+	 *             array('*') (when you provided a model and a model of that kind was found).
1508
+	 *             Parses the $include_string so we fetch all the field names relating to THIS model
1509
+	 *             (ie have NO period in them), or for the provided model (ie start with the model
1510
+	 *             name and then a period).
1511
+	 * @param string $include_string @see Read:handle_request_get_all
1512
+	 * @param string $model_name
1513
+	 * @return array of fields for this model. If $model_name is provided, then
1514
+	 *                               the fields for that model, with the model's name removed from each.
1515
+	 *                               If $include_string was blank or '*' returns an empty array
1516
+	 * @throws EE_Error
1517
+	 */
1518
+	public function extractIncludesForThisModel($include_string, $model_name = null)
1519
+	{
1520
+		if (is_array($include_string)) {
1521
+			$include_string = implode(',', $include_string);
1522
+		}
1523
+		if ($include_string === '*' || $include_string === '') {
1524
+			return array();
1525
+		}
1526
+		$includes = explode(',', $include_string);
1527
+		$extracted_fields_to_include = array();
1528
+		if ($model_name) {
1529
+			foreach ($includes as $field_to_include) {
1530
+				$field_to_include = trim($field_to_include);
1531
+				if (strpos($field_to_include, $model_name . '.') === 0) {
1532
+					// found the model name at the exact start
1533
+					$field_sans_model_name = str_replace($model_name . '.', '', $field_to_include);
1534
+					$extracted_fields_to_include[] = $field_sans_model_name;
1535
+				} elseif ($field_to_include === $model_name) {
1536
+					$extracted_fields_to_include[] = '*';
1537
+				}
1538
+			}
1539
+		} else {
1540
+			// look for ones with no period
1541
+			foreach ($includes as $field_to_include) {
1542
+				$field_to_include = trim($field_to_include);
1543
+				if (strpos($field_to_include, '.') === false
1544
+					&& ! $this->getModelVersionInfo()->isModelNameInThisVersion($field_to_include)
1545
+				) {
1546
+					$extracted_fields_to_include[] = $field_to_include;
1547
+				}
1548
+			}
1549
+		}
1550
+		return $extracted_fields_to_include;
1551
+	}
1552
+
1553
+
1554
+	/**
1555
+	 * Gets the single item using the model according to the request in the context given, otherwise
1556
+	 * returns that it's inaccessible to the current user
1557
+	 *
1558
+	 * @param EEM_Base        $model
1559
+	 * @param WP_REST_Request $request
1560
+	 * @param null            $context
1561
+	 * @return array
1562
+	 * @throws EE_Error
1563
+	 * @throws InvalidArgumentException
1564
+	 * @throws InvalidDataTypeException
1565
+	 * @throws InvalidInterfaceException
1566
+	 * @throws ModelConfigurationException
1567
+	 * @throws ReflectionException
1568
+	 * @throws RestException
1569
+	 * @throws RestPasswordIncorrectException
1570
+	 * @throws RestPasswordRequiredException
1571
+	 * @throws UnexpectedEntityException
1572
+	 * @throws DomainException
1573
+	 */
1574
+	public function getOneOrReportPermissionError(EEM_Base $model, WP_REST_Request $request, $context = null)
1575
+	{
1576
+		$query_params = array(array($model->primary_key_name() => $request->get_param('id')), 'limit' => 1);
1577
+		if ($model instanceof EEM_Soft_Delete_Base) {
1578
+			$query_params = $model->alter_query_params_so_deleted_and_undeleted_items_included($query_params);
1579
+		}
1580
+		$restricted_query_params = $query_params;
1581
+		$restricted_query_params['caps'] = $context;
1582
+		$this->setDebugInfo('model query params', $restricted_query_params);
1583
+		$model_rows = $model->get_all_wpdb_results($restricted_query_params);
1584
+		if (! empty($model_rows)) {
1585
+			return $this->createEntityFromWpdbResult(
1586
+				$model,
1587
+				reset($model_rows),
1588
+				$request
1589
+			);
1590
+		}
1591
+		// ok let's test to see if we WOULD have found it, had we not had restrictions from missing capabilities
1592
+		$lowercase_model_name = strtolower($model->get_this_model_name());
1593
+		if ($model->exists($query_params)) {
1594
+			// you got shafted- it existed but we didn't want to tell you!
1595
+			throw new RestException(
1596
+				'rest_user_cannot_' . $context,
1597
+				sprintf(
1598
+					__('Sorry, you cannot %1$s this %2$s. Missing permissions are: %3$s', 'event_espresso'),
1599
+					$context,
1600
+					$lowercase_model_name,
1601
+					Capabilities::getMissingPermissionsString(
1602
+						$model,
1603
+						$context
1604
+					)
1605
+				),
1606
+				array('status' => 403)
1607
+			);
1608
+		}
1609
+		// it's not you. It just doesn't exist
1610
+		throw new RestException(
1611
+			sprintf('rest_%s_invalid_id', $lowercase_model_name),
1612
+			sprintf(__('Invalid %s ID.', 'event_espresso'), $lowercase_model_name),
1613
+			array('status' => 404)
1614
+		);
1615
+	}
1616
+
1617
+	/**
1618
+	 * Checks that if this content requires a password to be read, that it's been provided and is correct.
1619
+	 * @since 4.9.74.p
1620
+	 * @param EEM_Base $model
1621
+	 * @param $model_row
1622
+	 * @param array $query_params Adds 'default_where_conditions' => 'minimum' to ensure we don't confuse trashed with
1623
+	 *                      password protected.
1624
+	 * @param WP_REST_Request $request
1625
+	 * @throws EE_Error
1626
+	 * @throws InvalidArgumentException
1627
+	 * @throws InvalidDataTypeException
1628
+	 * @throws InvalidInterfaceException
1629
+	 * @throws RestPasswordRequiredException
1630
+	 * @throws RestPasswordIncorrectException
1631
+	 * @throws ModelConfigurationException
1632
+	 * @throws ReflectionException
1633
+	 */
1634
+	protected function checkPassword(EEM_Base $model, $model_row, $query_params, WP_REST_Request $request)
1635
+	{
1636
+		$query_params['default_where_conditions'] = 'minimum';
1637
+		// stuff is only "protected" for front-end requests. Elsewhere, you either get full permission to access the object
1638
+		// or you don't.
1639
+		$request_caps = $request->get_param('caps');
1640
+		if (isset($request_caps) && $request_caps !== EEM_Base::caps_read) {
1641
+			return;
1642
+		}
1643
+		// if this entity requires a password, they better give it and it better be right!
1644
+		if ($model->hasPassword()
1645
+			&& $model_row[ $model->getPasswordField()->get_qualified_column() ] !== '') {
1646
+			if (empty($request['password'])) {
1647
+				throw new RestPasswordRequiredException();
1648
+			}
1649
+			if (!hash_equals(
1650
+				$model_row[ $model->getPasswordField()->get_qualified_column() ],
1651
+				$request['password']
1652
+			)) {
1653
+				throw new RestPasswordIncorrectException();
1654
+			}
1655
+		} // wait! maybe this content is password protected
1656
+		elseif ($model->restrictedByRelatedModelPassword()
1657
+			&& $request->get_param('caps') === EEM_Base::caps_read) {
1658
+			$password_supplied = $request->get_param('password');
1659
+			if (empty($password_supplied)) {
1660
+				$query_params['exclude_protected'] = true;
1661
+				if (!$model->exists($query_params)) {
1662
+					throw new RestPasswordRequiredException();
1663
+				}
1664
+			} else {
1665
+				$query_params[0][ $model->modelChainAndPassword() ] = $password_supplied;
1666
+				if (!$model->exists($query_params)) {
1667
+					throw new RestPasswordIncorrectException();
1668
+				}
1669
+			}
1670
+		}
1671
+	}
1672 1672
 }
Please login to merge, or discard this patch.
Spacing   +67 added lines, -67 removed lines patch added patch discarded remove patch
@@ -86,7 +86,7 @@  discard block
 block discarded – undo
86 86
         $controller = LoaderFactory::getLoader()->getNew('EventEspresso\core\libraries\rest_api\controllers\model\Read');
87 87
         try {
88 88
             $controller->setRequestedVersion($version);
89
-            if (! $controller->getModelVersionInfo()->isModelNameInThisVersion($model_name)) {
89
+            if ( ! $controller->getModelVersionInfo()->isModelNameInThisVersion($model_name)) {
90 90
                 return $controller->sendResponse(
91 91
                     new WP_Error(
92 92
                         'endpoint_parsing_error',
@@ -128,7 +128,7 @@  discard block
 block discarded – undo
128 128
         $controller = LoaderFactory::getLoader()->getNew('EventEspresso\core\libraries\rest_api\controllers\model\Read');
129 129
         try {
130 130
             $controller->setRequestedVersion($version);
131
-            if (! $controller->getModelVersionInfo()->isModelNameInThisVersion($model_name)) {
131
+            if ( ! $controller->getModelVersionInfo()->isModelNameInThisVersion($model_name)) {
132 132
                 return array();
133 133
             }
134 134
             // get the model for this version
@@ -185,11 +185,11 @@  discard block
 block discarded – undo
185 185
      */
186 186
     protected function translateDefaultsForRestResponse($field_name, EE_Model_Field_Base $field, array $schema)
187 187
     {
188
-        if (isset($schema['properties'][ $field_name ]['default'])) {
189
-            if (is_array($schema['properties'][ $field_name ]['default'])) {
190
-                foreach ($schema['properties'][ $field_name ]['default'] as $default_key => $default_value) {
188
+        if (isset($schema['properties'][$field_name]['default'])) {
189
+            if (is_array($schema['properties'][$field_name]['default'])) {
190
+                foreach ($schema['properties'][$field_name]['default'] as $default_key => $default_value) {
191 191
                     if ($default_key === 'raw') {
192
-                        $schema['properties'][ $field_name ]['default'][ $default_key ] =
192
+                        $schema['properties'][$field_name]['default'][$default_key] =
193 193
                             ModelDataTranslator::prepareFieldValueForJson(
194 194
                                 $field,
195 195
                                 $default_value,
@@ -198,9 +198,9 @@  discard block
 block discarded – undo
198 198
                     }
199 199
                 }
200 200
             } else {
201
-                $schema['properties'][ $field_name ]['default'] = ModelDataTranslator::prepareFieldValueForJson(
201
+                $schema['properties'][$field_name]['default'] = ModelDataTranslator::prepareFieldValueForJson(
202 202
                     $field,
203
-                    $schema['properties'][ $field_name ]['default'],
203
+                    $schema['properties'][$field_name]['default'],
204 204
                     $this->getModelVersionInfo()->requestedVersion()
205 205
                 );
206 206
             }
@@ -222,9 +222,9 @@  discard block
 block discarded – undo
222 222
     protected function maybeAddExtraFieldsToSchema($field_name, EE_Model_Field_Base $field, array $schema)
223 223
     {
224 224
         if ($field instanceof EE_Datetime_Field) {
225
-            $schema['properties'][ $field_name . '_gmt' ] = $field->getSchema();
225
+            $schema['properties'][$field_name.'_gmt'] = $field->getSchema();
226 226
             // modify the description
227
-            $schema['properties'][ $field_name . '_gmt' ]['description'] = sprintf(
227
+            $schema['properties'][$field_name.'_gmt']['description'] = sprintf(
228 228
                 esc_html__('%s - the value for this field is in GMT.', 'event_espresso'),
229 229
                 wp_specialchars_decode($field->get_nicename(), ENT_QUOTES)
230 230
             );
@@ -266,7 +266,7 @@  discard block
 block discarded – undo
266 266
         $controller = LoaderFactory::getLoader()->getNew('EventEspresso\core\libraries\rest_api\controllers\model\Read');
267 267
         try {
268 268
             $controller->setRequestedVersion($version);
269
-            if (! $controller->getModelVersionInfo()->isModelNameInThisVersion($model_name)) {
269
+            if ( ! $controller->getModelVersionInfo()->isModelNameInThisVersion($model_name)) {
270 270
                 return $controller->sendResponse(
271 271
                     new WP_Error(
272 272
                         'endpoint_parsing_error',
@@ -350,7 +350,7 @@  discard block
 block discarded – undo
350 350
     public function getEntitiesFromModel($model, $request)
351 351
     {
352 352
         $query_params = $this->createModelQueryParams($model, $request->get_params());
353
-        if (! Capabilities::currentUserHasPartialAccessTo($model, $query_params['caps'])) {
353
+        if ( ! Capabilities::currentUserHasPartialAccessTo($model, $query_params['caps'])) {
354 354
             $model_name_plural = EEH_Inflector::pluralize_and_lower($model->get_this_model_name());
355 355
             throw new RestException(
356 356
                 sprintf('rest_%s_cannot_list', $model_name_plural),
@@ -362,14 +362,14 @@  discard block
 block discarded – undo
362 362
                 array('status' => 403)
363 363
             );
364 364
         }
365
-        if (! $request->get_header('no_rest_headers')) {
365
+        if ( ! $request->get_header('no_rest_headers')) {
366 366
             $this->setHeadersFromQueryParams($model, $query_params);
367 367
         }
368 368
         /** @type array $results */
369 369
         $results = $model->get_all_wpdb_results($query_params);
370 370
         $nice_results = array();
371 371
         foreach ($results as $result) {
372
-            $nice_results[] =  $this->createEntityFromWpdbResult(
372
+            $nice_results[] = $this->createEntityFromWpdbResult(
373 373
                 $model,
374 374
                 $result,
375 375
                 $request
@@ -406,7 +406,7 @@  discard block
 block discarded – undo
406 406
         $context = $this->validateContext($request->get_param('caps'));
407 407
         $model = $relation->get_this_model();
408 408
         $related_model = $relation->get_other_model();
409
-        if (! isset($primary_model_query_params[0])) {
409
+        if ( ! isset($primary_model_query_params[0])) {
410 410
             $primary_model_query_params[0] = array();
411 411
         }
412 412
         // check if they can access the 1st model object
@@ -429,7 +429,7 @@  discard block
 block discarded – undo
429 429
         if (is_array($primary_model_rows)) {
430 430
             $primary_model_row = reset($primary_model_rows);
431 431
         }
432
-        if (! (
432
+        if ( ! (
433 433
             $primary_model_row
434 434
             && Capabilities::currentUserHasPartialAccessTo($related_model, $context)
435 435
         )
@@ -469,13 +469,13 @@  discard block
 block discarded – undo
469 469
         );
470 470
         $query_params = $this->createModelQueryParams($relation->get_other_model(), $request->get_params());
471 471
         foreach ($primary_model_query_params[0] as $where_condition_key => $where_condition_value) {
472
-            $query_params[0][ $relation->get_this_model()->get_this_model_name()
472
+            $query_params[0][$relation->get_this_model()->get_this_model_name()
473 473
                               . '.'
474
-                              . $where_condition_key ] = $where_condition_value;
474
+                              . $where_condition_key] = $where_condition_value;
475 475
         }
476 476
         $query_params['default_where_conditions'] = 'none';
477 477
         $query_params['caps'] = $context;
478
-        if (! $request->get_header('no_rest_headers')) {
478
+        if ( ! $request->get_header('no_rest_headers')) {
479 479
             $this->setHeadersFromQueryParams($relation->get_other_model(), $query_params);
480 480
         }
481 481
         /** @type array $results */
@@ -534,7 +534,7 @@  discard block
 block discarded – undo
534 534
      */
535 535
     public function getEntitiesFromRelation($id, $relation, $request)
536 536
     {
537
-        if (! $relation->get_this_model()->has_primary_key_field()) {
537
+        if ( ! $relation->get_this_model()->has_primary_key_field()) {
538 538
             throw new EE_Error(
539 539
                 sprintf(
540 540
                     __(
@@ -580,7 +580,7 @@  discard block
 block discarded – undo
580 580
             Capabilities::getMissingPermissionsString($model, $query_params['caps'])
581 581
         );
582 582
         // normally the limit to a 2-part array, where the 2nd item is the limit
583
-        if (! isset($query_params['limit'])) {
583
+        if ( ! isset($query_params['limit'])) {
584 584
             $query_params['limit'] = EED_Core_Rest_Api::get_default_query_limit();
585 585
         }
586 586
         if (is_array($query_params['limit'])) {
@@ -624,7 +624,7 @@  discard block
 block discarded – undo
624 624
      */
625 625
     public function createEntityFromWpdbResult($model, $db_row, $rest_request, $deprecated = null)
626 626
     {
627
-        if (! $rest_request instanceof WP_REST_Request) {
627
+        if ( ! $rest_request instanceof WP_REST_Request) {
628 628
             // ok so this was called in the old style, where the 3rd arg was
629 629
             // $include, and the 4th arg was $context
630 630
             // now setup the request just to avoid fatal errors, although we won't be able
@@ -699,7 +699,7 @@  discard block
 block discarded – undo
699 699
             $rest_request,
700 700
             $this
701 701
         );
702
-        if (! $current_user_full_access_to_entity) {
702
+        if ( ! $current_user_full_access_to_entity) {
703 703
             $result_without_inaccessible_fields = Capabilities::filterOutInaccessibleEntityFields(
704 704
                 $entity_array,
705 705
                 $model,
@@ -734,7 +734,7 @@  discard block
 block discarded – undo
734 734
      */
735 735
     protected function addProtectedProperty(EEM_Base $model, $results_so_far, $protected)
736 736
     {
737
-        if (! $protected || ! $model->hasPassword()) {
737
+        if ( ! $protected || ! $model->hasPassword()) {
738 738
             return $results_so_far;
739 739
         }
740 740
         $password_field = $model->getPasswordField();
@@ -748,7 +748,7 @@  discard block
 block discarded – undo
748 748
             $fields_included
749 749
         );
750 750
         foreach ($fields_included as $field_name) {
751
-            $results_so_far['_protected'][] = $field_name ;
751
+            $results_so_far['_protected'][] = $field_name;
752 752
         }
753 753
         return $results_so_far;
754 754
     }
@@ -786,8 +786,8 @@  discard block
 block discarded – undo
786 786
         if ($do_chevy_shuffle) {
787 787
             global $post;
788 788
             $old_post = $post;
789
-            $post = get_post($result[ $model->primary_key_name() ]);
790
-            if (! $post instanceof WP_Post) {
789
+            $post = get_post($result[$model->primary_key_name()]);
790
+            if ( ! $post instanceof WP_Post) {
791 791
                 // well that's weird, because $result is what we JUST fetched from the database
792 792
                 throw new RestException(
793 793
                     'error_fetching_post_from_database_results',
@@ -797,7 +797,7 @@  discard block
 block discarded – undo
797 797
                     )
798 798
                 );
799 799
             }
800
-            $model_object_classname = 'EE_' . $model->get_this_model_name();
800
+            $model_object_classname = 'EE_'.$model->get_this_model_name();
801 801
             $post->{$model_object_classname} = EE_Registry::instance()->load_class(
802 802
                 $model_object_classname,
803 803
                 $result,
@@ -808,13 +808,13 @@  discard block
 block discarded – undo
808 808
         foreach ($result as $field_name => $field_value) {
809 809
             $field_obj = $model->field_settings_for($field_name);
810 810
             if ($this->isSubclassOfOne($field_obj, $this->getModelVersionInfo()->fieldsIgnored())) {
811
-                unset($result[ $field_name ]);
811
+                unset($result[$field_name]);
812 812
             } elseif ($this->isSubclassOfOne(
813 813
                 $field_obj,
814 814
                 $this->getModelVersionInfo()->fieldsThatHaveRenderedFormat()
815 815
             )
816 816
             ) {
817
-                $result[ $field_name ] = array(
817
+                $result[$field_name] = array(
818 818
                     'raw'      => $this->prepareFieldObjValueForJson($field_obj, $field_value),
819 819
                     'rendered' => $this->prepareFieldObjValueForJson($field_obj, $field_value, 'pretty'),
820 820
                 );
@@ -823,7 +823,7 @@  discard block
 block discarded – undo
823 823
                 $this->getModelVersionInfo()->fieldsThatHavePrettyFormat()
824 824
             )
825 825
             ) {
826
-                $result[ $field_name ] = array(
826
+                $result[$field_name] = array(
827 827
                     'raw'    => $this->prepareFieldObjValueForJson($field_obj, $field_value),
828 828
                     'pretty' => $this->prepareFieldObjValueForJson($field_obj, $field_value, 'pretty'),
829 829
                 );
@@ -854,10 +854,10 @@  discard block
 block discarded – undo
854 854
                         $this->getModelVersionInfo()->requestedVersion()
855 855
                     );
856 856
                 }
857
-                $result[ $field_name . '_gmt' ] = $gmt_date;
858
-                $result[ $field_name ] = $local_date;
857
+                $result[$field_name.'_gmt'] = $gmt_date;
858
+                $result[$field_name] = $local_date;
859 859
             } else {
860
-                $result[ $field_name ] = $this->prepareFieldObjValueForJson($field_obj, $field_value);
860
+                $result[$field_name] = $this->prepareFieldObjValueForJson($field_obj, $field_value);
861 861
             }
862 862
         }
863 863
         if ($do_chevy_shuffle) {
@@ -910,7 +910,7 @@  discard block
 block discarded – undo
910 910
     protected function addExtraFields(EEM_Base $model, $db_row, $entity_array)
911 911
     {
912 912
         if ($model instanceof EEM_CPT_Base) {
913
-            $entity_array['link'] = get_permalink($db_row[ $model->get_primary_key_field()->get_qualified_column() ]);
913
+            $entity_array['link'] = get_permalink($db_row[$model->get_primary_key_field()->get_qualified_column()]);
914 914
         }
915 915
         return $entity_array;
916 916
     }
@@ -936,7 +936,7 @@  discard block
 block discarded – undo
936 936
                     'href' => $this->getVersionedLinkTo(
937 937
                         EEH_Inflector::pluralize_and_lower($model->get_this_model_name())
938 938
                         . '/'
939
-                        . $entity_array[ $model->primary_key_name() ]
939
+                        . $entity_array[$model->primary_key_name()]
940 940
                     ),
941 941
                 ),
942 942
             );
@@ -952,12 +952,12 @@  discard block
 block discarded – undo
952 952
         if ($model->has_primary_key_field()) {
953 953
             foreach ($this->getModelVersionInfo()->relationSettings($model) as $relation_name => $relation_obj) {
954 954
                 $related_model_part = Read::getRelatedEntityName($relation_name, $relation_obj);
955
-                $links[ EED_Core_Rest_Api::ee_api_link_namespace . $related_model_part ] = array(
955
+                $links[EED_Core_Rest_Api::ee_api_link_namespace.$related_model_part] = array(
956 956
                     array(
957 957
                         'href'   => $this->getVersionedLinkTo(
958 958
                             EEH_Inflector::pluralize_and_lower($model->get_this_model_name())
959 959
                             . '/'
960
-                            . $entity_array[ $model->primary_key_name() ]
960
+                            . $entity_array[$model->primary_key_name()]
961 961
                             . '/'
962 962
                             . $related_model_part
963 963
                         ),
@@ -996,7 +996,7 @@  discard block
 block discarded – undo
996 996
         $included_items_protected = false
997 997
     ) {
998 998
         // if $db_row not included, hope the entity array has what we need
999
-        if (! $db_row) {
999
+        if ( ! $db_row) {
1000 1000
             $db_row = $entity_array;
1001 1001
         }
1002 1002
         $relation_settings = $this->getModelVersionInfo()->relationSettings($model);
@@ -1029,7 +1029,7 @@  discard block
 block discarded – undo
1029 1029
                         $model->deduce_fields_n_values_from_cols_n_values($db_row)
1030 1030
                     )
1031 1031
                 );
1032
-                if (! $included_items_protected) {
1032
+                if ( ! $included_items_protected) {
1033 1033
                     try {
1034 1034
                         $related_results = $this->getEntitiesFromRelationUsingModelQueryParams(
1035 1035
                             $primary_model_query_params,
@@ -1047,7 +1047,7 @@  discard block
 block discarded – undo
1047 1047
                 if ($related_results instanceof WP_Error || $related_results === null) {
1048 1048
                     $related_results = $relation_obj instanceof EE_Belongs_To_Relation ? null : array();
1049 1049
                 }
1050
-                $entity_array[ Read::getRelatedEntityName($relation_name, $relation_obj) ] = $related_results;
1050
+                $entity_array[Read::getRelatedEntityName($relation_name, $relation_obj)] = $related_results;
1051 1051
             }
1052 1052
         }
1053 1053
         return $entity_array;
@@ -1072,7 +1072,7 @@  discard block
 block discarded – undo
1072 1072
         $includes_for_this_model = $this->explodeAndGetItemsPrefixedWith($rest_request->get_param('include'), '');
1073 1073
         $includes_for_this_model = $this->removeModelNamesFromArray($includes_for_this_model);
1074 1074
         // if they passed in * or didn't specify any includes, return everything
1075
-        if (! empty($includes_for_this_model) && ! in_array('*', $includes_for_this_model, true)) {
1075
+        if ( ! empty($includes_for_this_model) && ! in_array('*', $includes_for_this_model, true)) {
1076 1076
             if ($model->has_primary_key_field()) {
1077 1077
                 // always include the primary key. ya just gotta know that at least
1078 1078
                 $includes_for_this_model[] = $model->primary_key_name();
@@ -1124,12 +1124,12 @@  discard block
 block discarded – undo
1124 1124
                 // it's password protected, so they shouldn't be able to read this. Remove the value
1125 1125
                 $schema = $this->fields_calculator->getJsonSchemaForModel($model);
1126 1126
                 if ($row_is_protected
1127
-                    && isset($schema['properties'][ $field_to_calculate ]['protected'])
1128
-                    && $schema['properties'][ $field_to_calculate ]['protected']) {
1127
+                    && isset($schema['properties'][$field_to_calculate]['protected'])
1128
+                    && $schema['properties'][$field_to_calculate]['protected']) {
1129 1129
                     $calculated_value = null;
1130 1130
                     $protected_fields[] = $field_to_calculate;
1131
-                    if ($schema['properties'][ $field_to_calculate ]['type']) {
1132
-                        switch ($schema['properties'][ $field_to_calculate ]['type']) {
1131
+                    if ($schema['properties'][$field_to_calculate]['type']) {
1132
+                        switch ($schema['properties'][$field_to_calculate]['type']) {
1133 1133
                             case 'boolean':
1134 1134
                                 $calculated_value = false;
1135 1135
                                 break;
@@ -1249,7 +1249,7 @@  discard block
 block discarded – undo
1249 1249
      */
1250 1250
     public function validateContext($context)
1251 1251
     {
1252
-        if (! $context) {
1252
+        if ( ! $context) {
1253 1253
             $context = EEM_Base::caps_read;
1254 1254
         }
1255 1255
         $valid_contexts = EEM_Base::valid_cap_contexts();
@@ -1273,7 +1273,7 @@  discard block
 block discarded – undo
1273 1273
             EEM_Base::default_where_conditions_minimum_all,
1274 1274
             EEM_Base::default_where_conditions_minimum_others,
1275 1275
         );
1276
-        if (! $default_query_params) {
1276
+        if ( ! $default_query_params) {
1277 1277
             $default_query_params = EEM_Base::default_where_conditions_all;
1278 1278
         }
1279 1279
         if (in_array(
@@ -1360,14 +1360,14 @@  discard block
 block discarded – undo
1360 1360
         }
1361 1361
         if (isset($query_params['limit'])) {
1362 1362
             // limit should be either a string like '23' or '23,43', or an array with two items in it
1363
-            if (! is_array($query_params['limit'])) {
1363
+            if ( ! is_array($query_params['limit'])) {
1364 1364
                 $limit_array = explode(',', (string) $query_params['limit']);
1365 1365
             } else {
1366 1366
                 $limit_array = $query_params['limit'];
1367 1367
             }
1368 1368
             $sanitized_limit = array();
1369 1369
             foreach ($limit_array as $key => $limit_part) {
1370
-                if ($this->debug_mode && (! is_numeric($limit_part) || count($sanitized_limit) > 2)) {
1370
+                if ($this->debug_mode && ( ! is_numeric($limit_part) || count($sanitized_limit) > 2)) {
1371 1371
                     throw new EE_Error(
1372 1372
                         sprintf(
1373 1373
                             __(
@@ -1424,9 +1424,9 @@  discard block
 block discarded – undo
1424 1424
         $model_ready_query_params = array();
1425 1425
         foreach ($query_params as $key => $value) {
1426 1426
             if (is_array($value)) {
1427
-                $model_ready_query_params[ $key ] = $this->prepareRestQueryParamsKeyForModels($model, $value);
1427
+                $model_ready_query_params[$key] = $this->prepareRestQueryParamsKeyForModels($model, $value);
1428 1428
             } else {
1429
-                $model_ready_query_params[ $key ] = $value;
1429
+                $model_ready_query_params[$key] = $value;
1430 1430
             }
1431 1431
         }
1432 1432
         return $model_ready_query_params;
@@ -1444,9 +1444,9 @@  discard block
 block discarded – undo
1444 1444
         $model_ready_query_params = array();
1445 1445
         foreach ($query_params as $key => $value) {
1446 1446
             if (is_array($value)) {
1447
-                $model_ready_query_params[ $key ] = $this->prepareRestQueryParamsValuesForModels($model, $value);
1447
+                $model_ready_query_params[$key] = $this->prepareRestQueryParamsValuesForModels($model, $value);
1448 1448
             } else {
1449
-                $model_ready_query_params[ $key ] = $value;
1449
+                $model_ready_query_params[$key] = $value;
1450 1450
             }
1451 1451
         }
1452 1452
         return $model_ready_query_params;
@@ -1478,17 +1478,17 @@  discard block
 block discarded – undo
1478 1478
         foreach ($exploded_contents as $item) {
1479 1479
             $item = trim($item);
1480 1480
             // if no prefix was provided, so we look for items with no "." in them
1481
-            if (! $prefix) {
1481
+            if ( ! $prefix) {
1482 1482
                 // does this item have a period?
1483 1483
                 if (strpos($item, '.') === false) {
1484 1484
                     // if not, then its what we're looking for
1485 1485
                     $contents_with_prefix[] = $item;
1486 1486
                 }
1487
-            } elseif (strpos($item, $prefix . '.') === 0) {
1487
+            } elseif (strpos($item, $prefix.'.') === 0) {
1488 1488
                 // this item has the prefix and a period, grab it
1489 1489
                 $contents_with_prefix[] = substr(
1490 1490
                     $item,
1491
-                    strpos($item, $prefix . '.') + strlen($prefix . '.')
1491
+                    strpos($item, $prefix.'.') + strlen($prefix.'.')
1492 1492
                 );
1493 1493
             } elseif ($item === $prefix) {
1494 1494
                 // this item is JUST the prefix
@@ -1528,9 +1528,9 @@  discard block
 block discarded – undo
1528 1528
         if ($model_name) {
1529 1529
             foreach ($includes as $field_to_include) {
1530 1530
                 $field_to_include = trim($field_to_include);
1531
-                if (strpos($field_to_include, $model_name . '.') === 0) {
1531
+                if (strpos($field_to_include, $model_name.'.') === 0) {
1532 1532
                     // found the model name at the exact start
1533
-                    $field_sans_model_name = str_replace($model_name . '.', '', $field_to_include);
1533
+                    $field_sans_model_name = str_replace($model_name.'.', '', $field_to_include);
1534 1534
                     $extracted_fields_to_include[] = $field_sans_model_name;
1535 1535
                 } elseif ($field_to_include === $model_name) {
1536 1536
                     $extracted_fields_to_include[] = '*';
@@ -1581,7 +1581,7 @@  discard block
 block discarded – undo
1581 1581
         $restricted_query_params['caps'] = $context;
1582 1582
         $this->setDebugInfo('model query params', $restricted_query_params);
1583 1583
         $model_rows = $model->get_all_wpdb_results($restricted_query_params);
1584
-        if (! empty($model_rows)) {
1584
+        if ( ! empty($model_rows)) {
1585 1585
             return $this->createEntityFromWpdbResult(
1586 1586
                 $model,
1587 1587
                 reset($model_rows),
@@ -1593,7 +1593,7 @@  discard block
 block discarded – undo
1593 1593
         if ($model->exists($query_params)) {
1594 1594
             // you got shafted- it existed but we didn't want to tell you!
1595 1595
             throw new RestException(
1596
-                'rest_user_cannot_' . $context,
1596
+                'rest_user_cannot_'.$context,
1597 1597
                 sprintf(
1598 1598
                     __('Sorry, you cannot %1$s this %2$s. Missing permissions are: %3$s', 'event_espresso'),
1599 1599
                     $context,
@@ -1642,12 +1642,12 @@  discard block
 block discarded – undo
1642 1642
         }
1643 1643
         // if this entity requires a password, they better give it and it better be right!
1644 1644
         if ($model->hasPassword()
1645
-            && $model_row[ $model->getPasswordField()->get_qualified_column() ] !== '') {
1645
+            && $model_row[$model->getPasswordField()->get_qualified_column()] !== '') {
1646 1646
             if (empty($request['password'])) {
1647 1647
                 throw new RestPasswordRequiredException();
1648 1648
             }
1649
-            if (!hash_equals(
1650
-                $model_row[ $model->getPasswordField()->get_qualified_column() ],
1649
+            if ( ! hash_equals(
1650
+                $model_row[$model->getPasswordField()->get_qualified_column()],
1651 1651
                 $request['password']
1652 1652
             )) {
1653 1653
                 throw new RestPasswordIncorrectException();
@@ -1658,12 +1658,12 @@  discard block
 block discarded – undo
1658 1658
             $password_supplied = $request->get_param('password');
1659 1659
             if (empty($password_supplied)) {
1660 1660
                 $query_params['exclude_protected'] = true;
1661
-                if (!$model->exists($query_params)) {
1661
+                if ( ! $model->exists($query_params)) {
1662 1662
                     throw new RestPasswordRequiredException();
1663 1663
                 }
1664 1664
             } else {
1665
-                $query_params[0][ $model->modelChainAndPassword() ] = $password_supplied;
1666
-                if (!$model->exists($query_params)) {
1665
+                $query_params[0][$model->modelChainAndPassword()] = $password_supplied;
1666
+                if ( ! $model->exists($query_params)) {
1667 1667
                     throw new RestPasswordIncorrectException();
1668 1668
                 }
1669 1669
             }
Please login to merge, or discard this patch.
core/EE_System.core.php 2 patches
Spacing   +29 added lines, -29 removed lines patch added patch discarded remove patch
@@ -141,7 +141,7 @@  discard block
 block discarded – undo
141 141
         EE_Maintenance_Mode $maintenance_mode = null
142 142
     ) {
143 143
         // check if class object is instantiated
144
-        if (! self::$_instance instanceof EE_System) {
144
+        if ( ! self::$_instance instanceof EE_System) {
145 145
             self::$_instance = new self($registry, $loader, $request, $maintenance_mode);
146 146
         }
147 147
         return self::$_instance;
@@ -263,7 +263,7 @@  discard block
 block discarded – undo
263 263
         $this->capabilities = $this->loader->getShared('EE_Capabilities');
264 264
         add_action(
265 265
             'AHEE__EE_Capabilities__init_caps__before_initialization',
266
-            function () {
266
+            function() {
267 267
                 LoaderFactory::getLoader()->getShared('EE_Payment_Method_Manager');
268 268
             }
269 269
         );
@@ -304,7 +304,7 @@  discard block
 block discarded – undo
304 304
     {
305 305
         // set autoloaders for all of the classes implementing EEI_Plugin_API
306 306
         // which provide helpers for EE plugin authors to more easily register certain components with EE.
307
-        EEH_Autoloader::instance()->register_autoloaders_for_each_file_in_folder(EE_LIBRARIES . 'plugin_api');
307
+        EEH_Autoloader::instance()->register_autoloaders_for_each_file_in_folder(EE_LIBRARIES.'plugin_api');
308 308
         $this->loader->getShared('EE_Request_Handler');
309 309
     }
310 310
 
@@ -324,14 +324,14 @@  discard block
 block discarded – undo
324 324
         $load_callback,
325 325
         $plugin_file_constant
326 326
     ) {
327
-        if (! defined($version_constant)) {
327
+        if ( ! defined($version_constant)) {
328 328
             return;
329 329
         }
330 330
         $addon_version = constant($version_constant);
331 331
         if ($addon_version && version_compare($addon_version, $min_version_required, '<')) {
332 332
             remove_action('AHEE__EE_System__load_espresso_addons', $load_callback);
333
-            if (! function_exists('deactivate_plugins')) {
334
-                require_once ABSPATH . 'wp-admin/includes/plugin.php';
333
+            if ( ! function_exists('deactivate_plugins')) {
334
+                require_once ABSPATH.'wp-admin/includes/plugin.php';
335 335
             }
336 336
             deactivate_plugins(plugin_basename(constant($plugin_file_constant)));
337 337
             unset($_GET['activate'], $_REQUEST['activate'], $_GET['activate-multi'], $_REQUEST['activate-multi']);
@@ -345,7 +345,7 @@  discard block
 block discarded – undo
345 345
                     $min_version_required
346 346
                 ),
347 347
                 __FILE__,
348
-                __FUNCTION__ . "({$addon_name})",
348
+                __FUNCTION__."({$addon_name})",
349 349
                 __LINE__
350 350
             );
351 351
             EE_Error::get_notices(false, true);
@@ -396,7 +396,7 @@  discard block
 block discarded – undo
396 396
                 true
397 397
             )
398 398
         ) {
399
-            include_once EE_THIRD_PARTY . 'wp-api-basic-auth/basic-auth.php';
399
+            include_once EE_THIRD_PARTY.'wp-api-basic-auth/basic-auth.php';
400 400
         }
401 401
         do_action('AHEE__EE_System__load_espresso_addons__complete');
402 402
     }
@@ -498,11 +498,11 @@  discard block
 block discarded – undo
498 498
     private function fix_espresso_db_upgrade_option($espresso_db_update = null)
499 499
     {
500 500
         do_action('FHEE__EE_System__manage_fix_espresso_db_upgrade_option__begin', $espresso_db_update);
501
-        if (! $espresso_db_update) {
501
+        if ( ! $espresso_db_update) {
502 502
             $espresso_db_update = get_option('espresso_db_update');
503 503
         }
504 504
         // check that option is an array
505
-        if (! is_array($espresso_db_update)) {
505
+        if ( ! is_array($espresso_db_update)) {
506 506
             // if option is FALSE, then it never existed
507 507
             if ($espresso_db_update === false) {
508 508
                 // make $espresso_db_update an array and save option with autoload OFF
@@ -522,10 +522,10 @@  discard block
 block discarded – undo
522 522
                     // so it must be numerically-indexed, where values are versions installed...
523 523
                     // fix it!
524 524
                     $version_string = $should_be_array;
525
-                    $corrected_db_update[ $version_string ] = array('unknown-date');
525
+                    $corrected_db_update[$version_string] = array('unknown-date');
526 526
                 } else {
527 527
                     // ok it checks out
528
-                    $corrected_db_update[ $should_be_version_string ] = $should_be_array;
528
+                    $corrected_db_update[$should_be_version_string] = $should_be_array;
529 529
                 }
530 530
             }
531 531
             $espresso_db_update = $corrected_db_update;
@@ -608,13 +608,13 @@  discard block
 block discarded – undo
608 608
      */
609 609
     public function update_list_of_installed_versions($version_history = null, $current_version_to_add = null)
610 610
     {
611
-        if (! $version_history) {
611
+        if ( ! $version_history) {
612 612
             $version_history = $this->fix_espresso_db_upgrade_option($version_history);
613 613
         }
614 614
         if ($current_version_to_add === null) {
615 615
             $current_version_to_add = espresso_version();
616 616
         }
617
-        $version_history[ $current_version_to_add ][] = date('Y-m-d H:i:s', time());
617
+        $version_history[$current_version_to_add][] = date('Y-m-d H:i:s', time());
618 618
         // re-save
619 619
         return update_option('espresso_db_update', $version_history);
620 620
     }
@@ -704,7 +704,7 @@  discard block
 block discarded – undo
704 704
         if ($activation_history_for_addon) {
705 705
             // it exists, so this isn't a completely new install
706 706
             // check if this version already in that list of previously installed versions
707
-            if (! isset($activation_history_for_addon[ $version_to_upgrade_to ])) {
707
+            if ( ! isset($activation_history_for_addon[$version_to_upgrade_to])) {
708 708
                 // it a version we haven't seen before
709 709
                 if ($version_is_higher === 1) {
710 710
                     $req_type = EE_System::req_type_upgrade;
@@ -782,7 +782,7 @@  discard block
 block discarded – undo
782 782
             foreach ($activation_history as $version => $times_activated) {
783 783
                 // check there is a record of when this version was activated. Otherwise,
784 784
                 // mark it as unknown
785
-                if (! $times_activated) {
785
+                if ( ! $times_activated) {
786 786
                     $times_activated = array('unknown-date');
787 787
                 }
788 788
                 if (is_string($times_activated)) {
@@ -813,7 +813,7 @@  discard block
 block discarded – undo
813 813
     {
814 814
         $notices = EE_Error::get_notices(false);
815 815
         // if current user is an admin and it's not an ajax or rest request
816
-        if (! isset($notices['errors'])
816
+        if ( ! isset($notices['errors'])
817 817
             && $this->request->isAdmin()
818 818
             && apply_filters(
819 819
                 'FHEE__EE_System__redirect_to_about_ee__do_redirect',
@@ -883,7 +883,7 @@  discard block
 block discarded – undo
883 883
     private function _parse_model_names()
884 884
     {
885 885
         // get all the files in the EE_MODELS folder that end in .model.php
886
-        $models = glob(EE_MODELS . '*.model.php');
886
+        $models = glob(EE_MODELS.'*.model.php');
887 887
         $model_names = array();
888 888
         $non_abstract_db_models = array();
889 889
         foreach ($models as $model) {
@@ -892,9 +892,9 @@  discard block
 block discarded – undo
892 892
             $short_name = str_replace('EEM_', '', $classname);
893 893
             $reflectionClass = new ReflectionClass($classname);
894 894
             if ($reflectionClass->isSubclassOf('EEM_Base') && ! $reflectionClass->isAbstract()) {
895
-                $non_abstract_db_models[ $short_name ] = $classname;
895
+                $non_abstract_db_models[$short_name] = $classname;
896 896
             }
897
-            $model_names[ $short_name ] = $classname;
897
+            $model_names[$short_name] = $classname;
898 898
         }
899 899
         $this->registry->models = apply_filters('FHEE__EE_System__parse_model_names', $model_names);
900 900
         $this->registry->non_abstract_db_models = apply_filters(
@@ -929,7 +929,7 @@  discard block
 block discarded – undo
929 929
             )
930 930
         );
931 931
         if ($domain->isCaffeinated()) {
932
-            require_once EE_CAFF_PATH . 'brewing_regular.php';
932
+            require_once EE_CAFF_PATH.'brewing_regular.php';
933 933
         }
934 934
     }
935 935
 
@@ -997,7 +997,7 @@  discard block
 block discarded – undo
997 997
         $class_names = EEH_Class_Tools::get_class_names_for_all_callbacks_on_hook(
998 998
             'AHEE__EE_System__register_shortcodes_modules_and_addons'
999 999
         );
1000
-        if (! empty($class_names)) {
1000
+        if ( ! empty($class_names)) {
1001 1001
             $msg = __(
1002 1002
                 'The following plugins, addons, or modules appear to be incompatible with this version of Event Espresso and were automatically deactivated to avoid fatal errors:',
1003 1003
                 'event_espresso'
@@ -1009,7 +1009,7 @@  discard block
 block discarded – undo
1009 1009
                             array('EE_', 'EEM_', 'EED_', 'EES_', 'EEW_'),
1010 1010
                             '',
1011 1011
                             $class_name
1012
-                        ) . '</b></li>';
1012
+                        ).'</b></li>';
1013 1013
             }
1014 1014
             $msg .= '</ul>';
1015 1015
             $msg .= __(
@@ -1078,7 +1078,7 @@  discard block
 block discarded – undo
1078 1078
     private function _deactivate_incompatible_addons()
1079 1079
     {
1080 1080
         $incompatible_addons = get_option('ee_incompatible_addons', array());
1081
-        if (! empty($incompatible_addons)) {
1081
+        if ( ! empty($incompatible_addons)) {
1082 1082
             $active_plugins = get_option('active_plugins', array());
1083 1083
             foreach ($active_plugins as $active_plugin) {
1084 1084
                 foreach ($incompatible_addons as $incompatible_addon) {
@@ -1145,7 +1145,7 @@  discard block
 block discarded – undo
1145 1145
     {
1146 1146
         do_action('AHEE__EE_System__load_controllers__start');
1147 1147
         // let's get it started
1148
-        if (! $this->maintenance_mode->level()
1148
+        if ( ! $this->maintenance_mode->level()
1149 1149
             && ($this->request->isFrontend() || $this->request->isFrontAjax())
1150 1150
         ) {
1151 1151
             do_action('AHEE__EE_System__load_controllers__load_front_controllers');
@@ -1198,7 +1198,7 @@  discard block
 block discarded – undo
1198 1198
         do_action('AHEE__EE_System__core_loaded_and_ready');
1199 1199
         // always load template tags, because it's faster than checking if it's a front-end request, and many page
1200 1200
         // builders require these even on the front-end
1201
-        require_once EE_PUBLIC . 'template_tags.php';
1201
+        require_once EE_PUBLIC.'template_tags.php';
1202 1202
         // load handler for GraphQL requests
1203 1203
         if (class_exists('WPGraphQL') && $this->request->isGQL()) {
1204 1204
             try {
@@ -1275,13 +1275,13 @@  discard block
 block discarded – undo
1275 1275
     public static function do_not_cache()
1276 1276
     {
1277 1277
         // set no cache constants
1278
-        if (! defined('DONOTCACHEPAGE')) {
1278
+        if ( ! defined('DONOTCACHEPAGE')) {
1279 1279
             define('DONOTCACHEPAGE', true);
1280 1280
         }
1281
-        if (! defined('DONOTCACHCEOBJECT')) {
1281
+        if ( ! defined('DONOTCACHCEOBJECT')) {
1282 1282
             define('DONOTCACHCEOBJECT', true);
1283 1283
         }
1284
-        if (! defined('DONOTCACHEDB')) {
1284
+        if ( ! defined('DONOTCACHEDB')) {
1285 1285
             define('DONOTCACHEDB', true);
1286 1286
         }
1287 1287
         // add no cache headers
Please login to merge, or discard this patch.
Indentation   +1320 added lines, -1320 removed lines patch added patch discarded remove patch
@@ -27,1324 +27,1324 @@
 block discarded – undo
27 27
 final class EE_System implements ResettableInterface
28 28
 {
29 29
 
30
-    /**
31
-     * indicates this is a 'normal' request. Ie, not activation, nor upgrade, nor activation.
32
-     * So examples of this would be a normal GET request on the frontend or backend, or a POST, etc
33
-     */
34
-    const req_type_normal = 0;
35
-
36
-    /**
37
-     * Indicates this is a brand new installation of EE so we should install
38
-     * tables and default data etc
39
-     */
40
-    const req_type_new_activation = 1;
41
-
42
-    /**
43
-     * we've detected that EE has been reactivated (or EE was activated during maintenance mode,
44
-     * and we just exited maintenance mode). We MUST check the database is setup properly
45
-     * and that default data is setup too
46
-     */
47
-    const req_type_reactivation = 2;
48
-
49
-    /**
50
-     * indicates that EE has been upgraded since its previous request.
51
-     * We may have data migration scripts to call and will want to trigger maintenance mode
52
-     */
53
-    const req_type_upgrade = 3;
54
-
55
-    /**
56
-     * TODO  will detect that EE has been DOWNGRADED. We probably don't want to run in this case...
57
-     */
58
-    const req_type_downgrade = 4;
59
-
60
-    /**
61
-     * @deprecated since version 4.6.0.dev.006
62
-     * Now whenever a new_activation is detected the request type is still just
63
-     * new_activation (same for reactivation, upgrade, downgrade etc), but if we'r ein maintenance mode
64
-     * EE_System::initialize_db_if_no_migrations_required and EE_Addon::initialize_db_if_no_migrations_required
65
-     * will instead enqueue that EE plugin's db initialization for when we're taken out of maintenance mode.
66
-     * (Specifically, when the migration manager indicates migrations are finished
67
-     * EE_Data_Migration_Manager::initialize_db_for_enqueued_ee_plugins() will be called)
68
-     */
69
-    const req_type_activation_but_not_installed = 5;
70
-
71
-    /**
72
-     * option prefix for recording the activation history (like core's "espresso_db_update") of addons
73
-     */
74
-    const addon_activation_history_option_prefix = 'ee_addon_activation_history_';
75
-
76
-    /**
77
-     * @var EE_System $_instance
78
-     */
79
-    private static $_instance;
80
-
81
-    /**
82
-     * @var EE_Registry $registry
83
-     */
84
-    private $registry;
85
-
86
-    /**
87
-     * @var LoaderInterface $loader
88
-     */
89
-    private $loader;
90
-
91
-    /**
92
-     * @var EE_Capabilities $capabilities
93
-     */
94
-    private $capabilities;
95
-
96
-    /**
97
-     * @var RequestInterface $request
98
-     */
99
-    private $request;
100
-
101
-    /**
102
-     * @var EE_Maintenance_Mode $maintenance_mode
103
-     */
104
-    private $maintenance_mode;
105
-
106
-    /**
107
-     * Stores which type of request this is, options being one of the constants on EE_System starting with req_type_*.
108
-     * It can be a brand-new activation, a reactivation, an upgrade, a downgrade, or a normal request.
109
-     *
110
-     * @var int $_req_type
111
-     */
112
-    private $_req_type;
113
-
114
-    /**
115
-     * Whether or not there was a non-micro version change in EE core version during this request
116
-     *
117
-     * @var boolean $_major_version_change
118
-     */
119
-    private $_major_version_change = false;
120
-
121
-    /**
122
-     * A Context DTO dedicated solely to identifying the current request type.
123
-     *
124
-     * @var RequestTypeContextCheckerInterface $request_type
125
-     */
126
-    private $request_type;
127
-
128
-
129
-    /**
130
-     * @singleton method used to instantiate class object
131
-     * @param EE_Registry|null         $registry
132
-     * @param LoaderInterface|null     $loader
133
-     * @param RequestInterface|null    $request
134
-     * @param EE_Maintenance_Mode|null $maintenance_mode
135
-     * @return EE_System
136
-     */
137
-    public static function instance(
138
-        EE_Registry $registry = null,
139
-        LoaderInterface $loader = null,
140
-        RequestInterface $request = null,
141
-        EE_Maintenance_Mode $maintenance_mode = null
142
-    ) {
143
-        // check if class object is instantiated
144
-        if (! self::$_instance instanceof EE_System) {
145
-            self::$_instance = new self($registry, $loader, $request, $maintenance_mode);
146
-        }
147
-        return self::$_instance;
148
-    }
149
-
150
-
151
-    /**
152
-     * resets the instance and returns it
153
-     *
154
-     * @return EE_System
155
-     */
156
-    public static function reset()
157
-    {
158
-        self::$_instance->_req_type = null;
159
-        // make sure none of the old hooks are left hanging around
160
-        remove_all_actions('AHEE__EE_System__perform_activations_upgrades_and_migrations');
161
-        // we need to reset the migration manager in order for it to detect DMSs properly
162
-        EE_Data_Migration_Manager::reset();
163
-        self::instance()->detect_activations_or_upgrades();
164
-        self::instance()->perform_activations_upgrades_and_migrations();
165
-        return self::instance();
166
-    }
167
-
168
-
169
-    /**
170
-     * sets hooks for running rest of system
171
-     * provides "AHEE__EE_System__construct__complete" hook for EE Addons to use as their starting point
172
-     * starting EE Addons from any other point may lead to problems
173
-     *
174
-     * @param EE_Registry         $registry
175
-     * @param LoaderInterface     $loader
176
-     * @param RequestInterface    $request
177
-     * @param EE_Maintenance_Mode $maintenance_mode
178
-     */
179
-    private function __construct(
180
-        EE_Registry $registry,
181
-        LoaderInterface $loader,
182
-        RequestInterface $request,
183
-        EE_Maintenance_Mode $maintenance_mode
184
-    ) {
185
-        $this->registry = $registry;
186
-        $this->loader = $loader;
187
-        $this->request = $request;
188
-        $this->maintenance_mode = $maintenance_mode;
189
-        do_action('AHEE__EE_System__construct__begin', $this);
190
-        add_action(
191
-            'AHEE__EE_Bootstrap__load_espresso_addons',
192
-            array($this, 'loadCapabilities'),
193
-            5
194
-        );
195
-        add_action(
196
-            'AHEE__EE_Bootstrap__load_espresso_addons',
197
-            array($this, 'loadCommandBus'),
198
-            7
199
-        );
200
-        add_action(
201
-            'AHEE__EE_Bootstrap__load_espresso_addons',
202
-            array($this, 'loadPluginApi'),
203
-            9
204
-        );
205
-        // allow addons to load first so that they can register autoloaders, set hooks for running DMS's, etc
206
-        add_action(
207
-            'AHEE__EE_Bootstrap__load_espresso_addons',
208
-            array($this, 'load_espresso_addons')
209
-        );
210
-        // when an ee addon is activated, we want to call the core hook(s) again
211
-        // because the newly-activated addon didn't get a chance to run at all
212
-        add_action('activate_plugin', array($this, 'load_espresso_addons'), 1);
213
-        // detect whether install or upgrade
214
-        add_action(
215
-            'AHEE__EE_Bootstrap__detect_activations_or_upgrades',
216
-            array($this, 'detect_activations_or_upgrades'),
217
-            3
218
-        );
219
-        // load EE_Config, EE_Textdomain, etc
220
-        add_action(
221
-            'AHEE__EE_Bootstrap__load_core_configuration',
222
-            array($this, 'load_core_configuration'),
223
-            5
224
-        );
225
-        // load specifications for matching routes to current request
226
-        add_action(
227
-            'AHEE__EE_Bootstrap__load_core_configuration',
228
-            array($this, 'loadRouteMatchSpecifications')
229
-        );
230
-        // load EE_Config, EE_Textdomain, etc
231
-        add_action(
232
-            'AHEE__EE_Bootstrap__register_shortcodes_modules_and_widgets',
233
-            array($this, 'register_shortcodes_modules_and_widgets'),
234
-            7
235
-        );
236
-        // you wanna get going? I wanna get going... let's get going!
237
-        add_action(
238
-            'AHEE__EE_Bootstrap__brew_espresso',
239
-            array($this, 'brew_espresso'),
240
-            9
241
-        );
242
-        // other housekeeping
243
-        // exclude EE critical pages from wp_list_pages
244
-        add_filter(
245
-            'wp_list_pages_excludes',
246
-            array($this, 'remove_pages_from_wp_list_pages'),
247
-            10
248
-        );
249
-        // ALL EE Addons should use the following hook point to attach their initial setup too
250
-        // it's extremely important for EE Addons to register any class autoloaders so that they can be available when the EE_Config loads
251
-        do_action('AHEE__EE_System__construct__complete', $this);
252
-    }
253
-
254
-
255
-    /**
256
-     * load and setup EE_Capabilities
257
-     *
258
-     * @return void
259
-     * @throws EE_Error
260
-     */
261
-    public function loadCapabilities()
262
-    {
263
-        $this->capabilities = $this->loader->getShared('EE_Capabilities');
264
-        add_action(
265
-            'AHEE__EE_Capabilities__init_caps__before_initialization',
266
-            function () {
267
-                LoaderFactory::getLoader()->getShared('EE_Payment_Method_Manager');
268
-            }
269
-        );
270
-    }
271
-
272
-
273
-    /**
274
-     * create and cache the CommandBus, and also add middleware
275
-     * The CapChecker middleware requires the use of EE_Capabilities
276
-     * which is why we need to load the CommandBus after Caps are set up
277
-     *
278
-     * @return void
279
-     * @throws EE_Error
280
-     */
281
-    public function loadCommandBus()
282
-    {
283
-        $this->loader->getShared(
284
-            'CommandBusInterface',
285
-            array(
286
-                null,
287
-                apply_filters(
288
-                    'FHEE__EE_Load_Espresso_Core__handle_request__CommandBus_middleware',
289
-                    array(
290
-                        $this->loader->getShared('EventEspresso\core\services\commands\middleware\CapChecker'),
291
-                        $this->loader->getShared('EventEspresso\core\services\commands\middleware\AddActionHook'),
292
-                    )
293
-                ),
294
-            )
295
-        );
296
-    }
297
-
298
-
299
-    /**
300
-     * @return void
301
-     * @throws EE_Error
302
-     */
303
-    public function loadPluginApi()
304
-    {
305
-        // set autoloaders for all of the classes implementing EEI_Plugin_API
306
-        // which provide helpers for EE plugin authors to more easily register certain components with EE.
307
-        EEH_Autoloader::instance()->register_autoloaders_for_each_file_in_folder(EE_LIBRARIES . 'plugin_api');
308
-        $this->loader->getShared('EE_Request_Handler');
309
-    }
310
-
311
-
312
-    /**
313
-     * @param string $addon_name
314
-     * @param string $version_constant
315
-     * @param string $min_version_required
316
-     * @param string $load_callback
317
-     * @param string $plugin_file_constant
318
-     * @return void
319
-     */
320
-    private function deactivateIncompatibleAddon(
321
-        $addon_name,
322
-        $version_constant,
323
-        $min_version_required,
324
-        $load_callback,
325
-        $plugin_file_constant
326
-    ) {
327
-        if (! defined($version_constant)) {
328
-            return;
329
-        }
330
-        $addon_version = constant($version_constant);
331
-        if ($addon_version && version_compare($addon_version, $min_version_required, '<')) {
332
-            remove_action('AHEE__EE_System__load_espresso_addons', $load_callback);
333
-            if (! function_exists('deactivate_plugins')) {
334
-                require_once ABSPATH . 'wp-admin/includes/plugin.php';
335
-            }
336
-            deactivate_plugins(plugin_basename(constant($plugin_file_constant)));
337
-            unset($_GET['activate'], $_REQUEST['activate'], $_GET['activate-multi'], $_REQUEST['activate-multi']);
338
-            EE_Error::add_error(
339
-                sprintf(
340
-                    esc_html__(
341
-                        '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.',
342
-                        'event_espresso'
343
-                    ),
344
-                    $addon_name,
345
-                    $min_version_required
346
-                ),
347
-                __FILE__,
348
-                __FUNCTION__ . "({$addon_name})",
349
-                __LINE__
350
-            );
351
-            EE_Error::get_notices(false, true);
352
-        }
353
-    }
354
-
355
-
356
-    /**
357
-     * load_espresso_addons
358
-     * allow addons to load first so that they can set hooks for running DMS's, etc
359
-     * this is hooked into both:
360
-     *    'AHEE__EE_Bootstrap__load_core_configuration'
361
-     *        which runs during the WP 'plugins_loaded' action at priority 5
362
-     *    and the WP 'activate_plugin' hook point
363
-     *
364
-     * @access public
365
-     * @return void
366
-     */
367
-    public function load_espresso_addons()
368
-    {
369
-        $this->deactivateIncompatibleAddon(
370
-            'Wait Lists',
371
-            'EE_WAIT_LISTS_VERSION',
372
-            '1.0.0.beta.074',
373
-            'load_espresso_wait_lists',
374
-            'EE_WAIT_LISTS_PLUGIN_FILE'
375
-        );
376
-        $this->deactivateIncompatibleAddon(
377
-            'Automated Upcoming Event Notifications',
378
-            'EE_AUTOMATED_UPCOMING_EVENT_NOTIFICATION_VERSION',
379
-            '1.0.0.beta.091',
380
-            'load_espresso_automated_upcoming_event_notification',
381
-            'EE_AUTOMATED_UPCOMING_EVENT_NOTIFICATION_PLUGIN_FILE'
382
-        );
383
-        do_action('AHEE__EE_System__load_espresso_addons');
384
-        // if the WP API basic auth plugin isn't already loaded, load it now.
385
-        // We want it for mobile apps. Just include the entire plugin
386
-        // also, don't load the basic auth when a plugin is getting activated, because
387
-        // it could be the basic auth plugin, and it doesn't check if its methods are already defined
388
-        // and causes a fatal error
389
-        if (($this->request->isWordPressApi() || $this->request->isApi())
390
-            && $this->request->getRequestParam('activate') !== 'true'
391
-            && ! function_exists('json_basic_auth_handler')
392
-            && ! function_exists('json_basic_auth_error')
393
-            && ! in_array(
394
-                $this->request->getRequestParam('action'),
395
-                array('activate', 'activate-selected'),
396
-                true
397
-            )
398
-        ) {
399
-            include_once EE_THIRD_PARTY . 'wp-api-basic-auth/basic-auth.php';
400
-        }
401
-        do_action('AHEE__EE_System__load_espresso_addons__complete');
402
-    }
403
-
404
-
405
-    /**
406
-     * detect_activations_or_upgrades
407
-     * Checks for activation or upgrade of core first;
408
-     * then also checks if any registered addons have been activated or upgraded
409
-     * This is hooked into 'AHEE__EE_Bootstrap__detect_activations_or_upgrades'
410
-     * which runs during the WP 'plugins_loaded' action at priority 3
411
-     *
412
-     * @access public
413
-     * @return void
414
-     */
415
-    public function detect_activations_or_upgrades()
416
-    {
417
-        // first off: let's make sure to handle core
418
-        $this->detect_if_activation_or_upgrade();
419
-        foreach ($this->registry->addons as $addon) {
420
-            if ($addon instanceof EE_Addon) {
421
-                // detect teh request type for that addon
422
-                $addon->detect_activation_or_upgrade();
423
-            }
424
-        }
425
-    }
426
-
427
-
428
-    /**
429
-     * detect_if_activation_or_upgrade
430
-     * Takes care of detecting whether this is a brand new install or code upgrade,
431
-     * and either setting up the DB or setting up maintenance mode etc.
432
-     *
433
-     * @access public
434
-     * @return void
435
-     */
436
-    public function detect_if_activation_or_upgrade()
437
-    {
438
-        do_action('AHEE__EE_System___detect_if_activation_or_upgrade__begin');
439
-        // check if db has been updated, or if its a brand-new installation
440
-        $espresso_db_update = $this->fix_espresso_db_upgrade_option();
441
-        $request_type = $this->detect_req_type($espresso_db_update);
442
-        // EEH_Debug_Tools::printr( $request_type, '$request_type', __FILE__, __LINE__ );
443
-        switch ($request_type) {
444
-            case EE_System::req_type_new_activation:
445
-                do_action('AHEE__EE_System__detect_if_activation_or_upgrade__new_activation');
446
-                $this->_handle_core_version_change($espresso_db_update);
447
-                break;
448
-            case EE_System::req_type_reactivation:
449
-                do_action('AHEE__EE_System__detect_if_activation_or_upgrade__reactivation');
450
-                $this->_handle_core_version_change($espresso_db_update);
451
-                break;
452
-            case EE_System::req_type_upgrade:
453
-                do_action('AHEE__EE_System__detect_if_activation_or_upgrade__upgrade');
454
-                // migrations may be required now that we've upgraded
455
-                $this->maintenance_mode->set_maintenance_mode_if_db_old();
456
-                $this->_handle_core_version_change($espresso_db_update);
457
-                break;
458
-            case EE_System::req_type_downgrade:
459
-                do_action('AHEE__EE_System__detect_if_activation_or_upgrade__downgrade');
460
-                // its possible migrations are no longer required
461
-                $this->maintenance_mode->set_maintenance_mode_if_db_old();
462
-                $this->_handle_core_version_change($espresso_db_update);
463
-                break;
464
-            case EE_System::req_type_normal:
465
-            default:
466
-                break;
467
-        }
468
-        do_action('AHEE__EE_System__detect_if_activation_or_upgrade__complete');
469
-    }
470
-
471
-
472
-    /**
473
-     * Updates the list of installed versions and sets hooks for
474
-     * initializing the database later during the request
475
-     *
476
-     * @param array $espresso_db_update
477
-     */
478
-    private function _handle_core_version_change($espresso_db_update)
479
-    {
480
-        $this->update_list_of_installed_versions($espresso_db_update);
481
-        // get ready to verify the DB is ok (provided we aren't in maintenance mode, of course)
482
-        add_action(
483
-            'AHEE__EE_System__perform_activations_upgrades_and_migrations',
484
-            array($this, 'initialize_db_if_no_migrations_required')
485
-        );
486
-    }
487
-
488
-
489
-    /**
490
-     * standardizes the wp option 'espresso_db_upgrade' which actually stores
491
-     * information about what versions of EE have been installed and activated,
492
-     * NOT necessarily the state of the database
493
-     *
494
-     * @param mixed $espresso_db_update           the value of the WordPress option.
495
-     *                                            If not supplied, fetches it from the options table
496
-     * @return array the correct value of 'espresso_db_upgrade', after saving it, if it needed correction
497
-     */
498
-    private function fix_espresso_db_upgrade_option($espresso_db_update = null)
499
-    {
500
-        do_action('FHEE__EE_System__manage_fix_espresso_db_upgrade_option__begin', $espresso_db_update);
501
-        if (! $espresso_db_update) {
502
-            $espresso_db_update = get_option('espresso_db_update');
503
-        }
504
-        // check that option is an array
505
-        if (! is_array($espresso_db_update)) {
506
-            // if option is FALSE, then it never existed
507
-            if ($espresso_db_update === false) {
508
-                // make $espresso_db_update an array and save option with autoload OFF
509
-                $espresso_db_update = array();
510
-                add_option('espresso_db_update', $espresso_db_update, '', 'no');
511
-            } else {
512
-                // option is NOT FALSE but also is NOT an array, so make it an array and save it
513
-                $espresso_db_update = array($espresso_db_update => array());
514
-                update_option('espresso_db_update', $espresso_db_update);
515
-            }
516
-        } else {
517
-            $corrected_db_update = array();
518
-            // if IS an array, but is it an array where KEYS are version numbers, and values are arrays?
519
-            foreach ($espresso_db_update as $should_be_version_string => $should_be_array) {
520
-                if (is_int($should_be_version_string) && ! is_array($should_be_array)) {
521
-                    // the key is an int, and the value IS NOT an array
522
-                    // so it must be numerically-indexed, where values are versions installed...
523
-                    // fix it!
524
-                    $version_string = $should_be_array;
525
-                    $corrected_db_update[ $version_string ] = array('unknown-date');
526
-                } else {
527
-                    // ok it checks out
528
-                    $corrected_db_update[ $should_be_version_string ] = $should_be_array;
529
-                }
530
-            }
531
-            $espresso_db_update = $corrected_db_update;
532
-            update_option('espresso_db_update', $espresso_db_update);
533
-        }
534
-        do_action('FHEE__EE_System__manage_fix_espresso_db_upgrade_option__complete', $espresso_db_update);
535
-        return $espresso_db_update;
536
-    }
537
-
538
-
539
-    /**
540
-     * Does the traditional work of setting up the plugin's database and adding default data.
541
-     * If migration script/process did not exist, this is what would happen on every activation/reactivation/upgrade.
542
-     * NOTE: if we're in maintenance mode (which would be the case if we detect there are data
543
-     * migration scripts that need to be run and a version change happens), enqueues core for database initialization,
544
-     * so that it will be done when migrations are finished
545
-     *
546
-     * @param boolean $initialize_addons_too if true, we double-check addons' database tables etc too;
547
-     * @param boolean $verify_schema         if true will re-check the database tables have the correct schema.
548
-     *                                       This is a resource-intensive job
549
-     *                                       so we prefer to only do it when necessary
550
-     * @return void
551
-     * @throws EE_Error
552
-     */
553
-    public function initialize_db_if_no_migrations_required($initialize_addons_too = false, $verify_schema = true)
554
-    {
555
-        $request_type = $this->detect_req_type();
556
-        // only initialize system if we're not in maintenance mode.
557
-        if ($this->maintenance_mode->level() !== EE_Maintenance_Mode::level_2_complete_maintenance) {
558
-            /** @var EventEspresso\core\domain\services\custom_post_types\RewriteRules $rewrite_rules */
559
-            $rewrite_rules = $this->loader->getShared(
560
-                'EventEspresso\core\domain\services\custom_post_types\RewriteRules'
561
-            );
562
-            $rewrite_rules->flush();
563
-            if ($verify_schema) {
564
-                EEH_Activation::initialize_db_and_folders();
565
-            }
566
-            EEH_Activation::initialize_db_content();
567
-            EEH_Activation::system_initialization();
568
-            if ($initialize_addons_too) {
569
-                $this->initialize_addons();
570
-            }
571
-        } else {
572
-            EE_Data_Migration_Manager::instance()->enqueue_db_initialization_for('Core');
573
-        }
574
-        if ($request_type === EE_System::req_type_new_activation
575
-            || $request_type === EE_System::req_type_reactivation
576
-            || (
577
-                $request_type === EE_System::req_type_upgrade
578
-                && $this->is_major_version_change()
579
-            )
580
-        ) {
581
-            add_action('AHEE__EE_System__initialize_last', array($this, 'redirect_to_about_ee'), 9);
582
-        }
583
-    }
584
-
585
-
586
-    /**
587
-     * Initializes the db for all registered addons
588
-     *
589
-     * @throws EE_Error
590
-     */
591
-    public function initialize_addons()
592
-    {
593
-        // foreach registered addon, make sure its db is up-to-date too
594
-        foreach ($this->registry->addons as $addon) {
595
-            if ($addon instanceof EE_Addon) {
596
-                $addon->initialize_db_if_no_migrations_required();
597
-            }
598
-        }
599
-    }
600
-
601
-
602
-    /**
603
-     * Adds the current code version to the saved wp option which stores a list of all ee versions ever installed.
604
-     *
605
-     * @param    array  $version_history
606
-     * @param    string $current_version_to_add version to be added to the version history
607
-     * @return    boolean success as to whether or not this option was changed
608
-     */
609
-    public function update_list_of_installed_versions($version_history = null, $current_version_to_add = null)
610
-    {
611
-        if (! $version_history) {
612
-            $version_history = $this->fix_espresso_db_upgrade_option($version_history);
613
-        }
614
-        if ($current_version_to_add === null) {
615
-            $current_version_to_add = espresso_version();
616
-        }
617
-        $version_history[ $current_version_to_add ][] = date('Y-m-d H:i:s', time());
618
-        // re-save
619
-        return update_option('espresso_db_update', $version_history);
620
-    }
621
-
622
-
623
-    /**
624
-     * Detects if the current version indicated in the has existed in the list of
625
-     * previously-installed versions of EE (espresso_db_update). Does NOT modify it (ie, no side-effect)
626
-     *
627
-     * @param array $espresso_db_update array from the wp option stored under the name 'espresso_db_update'.
628
-     *                                  If not supplied, fetches it from the options table.
629
-     *                                  Also, caches its result so later parts of the code can also know whether
630
-     *                                  there's been an update or not. This way we can add the current version to
631
-     *                                  espresso_db_update, but still know if this is a new install or not
632
-     * @return int one of the constants on EE_System::req_type_
633
-     */
634
-    public function detect_req_type($espresso_db_update = null)
635
-    {
636
-        if ($this->_req_type === null) {
637
-            $espresso_db_update = ! empty($espresso_db_update)
638
-                ? $espresso_db_update
639
-                : $this->fix_espresso_db_upgrade_option();
640
-            $this->_req_type = EE_System::detect_req_type_given_activation_history(
641
-                $espresso_db_update,
642
-                'ee_espresso_activation',
643
-                espresso_version()
644
-            );
645
-            $this->_major_version_change = $this->_detect_major_version_change($espresso_db_update);
646
-            $this->request->setIsActivation($this->_req_type !== EE_System::req_type_normal);
647
-        }
648
-        return $this->_req_type;
649
-    }
650
-
651
-
652
-    /**
653
-     * Returns whether or not there was a non-micro version change (ie, change in either
654
-     * the first or second number in the version. Eg 4.9.0.rc.001 to 4.10.0.rc.000,
655
-     * but not 4.9.0.rc.0001 to 4.9.1.rc.0001
656
-     *
657
-     * @param $activation_history
658
-     * @return bool
659
-     */
660
-    private function _detect_major_version_change($activation_history)
661
-    {
662
-        $previous_version = EE_System::_get_most_recently_active_version_from_activation_history($activation_history);
663
-        $previous_version_parts = explode('.', $previous_version);
664
-        $current_version_parts = explode('.', espresso_version());
665
-        return isset($previous_version_parts[0], $previous_version_parts[1], $current_version_parts[0], $current_version_parts[1])
666
-               && ($previous_version_parts[0] !== $current_version_parts[0]
667
-                   || $previous_version_parts[1] !== $current_version_parts[1]
668
-               );
669
-    }
670
-
671
-
672
-    /**
673
-     * Returns true if either the major or minor version of EE changed during this request.
674
-     * 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
675
-     *
676
-     * @return bool
677
-     */
678
-    public function is_major_version_change()
679
-    {
680
-        return $this->_major_version_change;
681
-    }
682
-
683
-
684
-    /**
685
-     * Determines the request type for any ee addon, given three piece of info: the current array of activation
686
-     * histories (for core that' 'espresso_db_update' wp option); the name of the WordPress option which is temporarily
687
-     * set upon activation of the plugin (for core it's 'ee_espresso_activation'); and the version that this plugin was
688
-     * just activated to (for core that will always be espresso_version())
689
-     *
690
-     * @param array  $activation_history_for_addon     the option's value which stores the activation history for this
691
-     *                                                 ee plugin. for core that's 'espresso_db_update'
692
-     * @param string $activation_indicator_option_name the name of the WordPress option that is temporarily set to
693
-     *                                                 indicate that this plugin was just activated
694
-     * @param string $version_to_upgrade_to            the version that was just upgraded to (for core that will be
695
-     *                                                 espresso_version())
696
-     * @return int one of the constants on EE_System::req_type_*
697
-     */
698
-    public static function detect_req_type_given_activation_history(
699
-        $activation_history_for_addon,
700
-        $activation_indicator_option_name,
701
-        $version_to_upgrade_to
702
-    ) {
703
-        $version_is_higher = self::_new_version_is_higher($activation_history_for_addon, $version_to_upgrade_to);
704
-        if ($activation_history_for_addon) {
705
-            // it exists, so this isn't a completely new install
706
-            // check if this version already in that list of previously installed versions
707
-            if (! isset($activation_history_for_addon[ $version_to_upgrade_to ])) {
708
-                // it a version we haven't seen before
709
-                if ($version_is_higher === 1) {
710
-                    $req_type = EE_System::req_type_upgrade;
711
-                } else {
712
-                    $req_type = EE_System::req_type_downgrade;
713
-                }
714
-                delete_option($activation_indicator_option_name);
715
-            } else {
716
-                // its not an update. maybe a reactivation?
717
-                if (get_option($activation_indicator_option_name, false)) {
718
-                    if ($version_is_higher === -1) {
719
-                        $req_type = EE_System::req_type_downgrade;
720
-                    } elseif ($version_is_higher === 0) {
721
-                        // we've seen this version before, but it's an activation. must be a reactivation
722
-                        $req_type = EE_System::req_type_reactivation;
723
-                    } else {// $version_is_higher === 1
724
-                        $req_type = EE_System::req_type_upgrade;
725
-                    }
726
-                    delete_option($activation_indicator_option_name);
727
-                } else {
728
-                    // we've seen this version before and the activation indicate doesn't show it was just activated
729
-                    if ($version_is_higher === -1) {
730
-                        $req_type = EE_System::req_type_downgrade;
731
-                    } elseif ($version_is_higher === 0) {
732
-                        // we've seen this version before and it's not an activation. its normal request
733
-                        $req_type = EE_System::req_type_normal;
734
-                    } else {// $version_is_higher === 1
735
-                        $req_type = EE_System::req_type_upgrade;
736
-                    }
737
-                }
738
-            }
739
-        } else {
740
-            // brand new install
741
-            $req_type = EE_System::req_type_new_activation;
742
-            delete_option($activation_indicator_option_name);
743
-        }
744
-        return $req_type;
745
-    }
746
-
747
-
748
-    /**
749
-     * Detects if the $version_to_upgrade_to is higher than the most recent version in
750
-     * the $activation_history_for_addon
751
-     *
752
-     * @param array  $activation_history_for_addon (keys are versions, values are arrays of times activated,
753
-     *                                             sometimes containing 'unknown-date'
754
-     * @param string $version_to_upgrade_to        (current version)
755
-     * @return int results of version_compare( $version_to_upgrade_to, $most_recently_active_version ).
756
-     *                                             ie, -1 if $version_to_upgrade_to is LOWER (downgrade);
757
-     *                                             0 if $version_to_upgrade_to MATCHES (reactivation or normal request);
758
-     *                                             1 if $version_to_upgrade_to is HIGHER (upgrade) ;
759
-     */
760
-    private static function _new_version_is_higher($activation_history_for_addon, $version_to_upgrade_to)
761
-    {
762
-        // find the most recently-activated version
763
-        $most_recently_active_version =
764
-            EE_System::_get_most_recently_active_version_from_activation_history($activation_history_for_addon);
765
-        return version_compare($version_to_upgrade_to, $most_recently_active_version);
766
-    }
767
-
768
-
769
-    /**
770
-     * Gets the most recently active version listed in the activation history,
771
-     * and if none are found (ie, it's a brand new install) returns '0.0.0.dev.000'.
772
-     *
773
-     * @param array $activation_history  (keys are versions, values are arrays of times activated,
774
-     *                                   sometimes containing 'unknown-date'
775
-     * @return string
776
-     */
777
-    private static function _get_most_recently_active_version_from_activation_history($activation_history)
778
-    {
779
-        $most_recently_active_version_activation = '1970-01-01 00:00:00';
780
-        $most_recently_active_version = '0.0.0.dev.000';
781
-        if (is_array($activation_history)) {
782
-            foreach ($activation_history as $version => $times_activated) {
783
-                // check there is a record of when this version was activated. Otherwise,
784
-                // mark it as unknown
785
-                if (! $times_activated) {
786
-                    $times_activated = array('unknown-date');
787
-                }
788
-                if (is_string($times_activated)) {
789
-                    $times_activated = array($times_activated);
790
-                }
791
-                foreach ($times_activated as $an_activation) {
792
-                    if ($an_activation !== 'unknown-date'
793
-                        && $an_activation
794
-                           > $most_recently_active_version_activation) {
795
-                        $most_recently_active_version = $version;
796
-                        $most_recently_active_version_activation = $an_activation === 'unknown-date'
797
-                            ? '1970-01-01 00:00:00'
798
-                            : $an_activation;
799
-                    }
800
-                }
801
-            }
802
-        }
803
-        return $most_recently_active_version;
804
-    }
805
-
806
-
807
-    /**
808
-     * This redirects to the about EE page after activation
809
-     *
810
-     * @return void
811
-     */
812
-    public function redirect_to_about_ee()
813
-    {
814
-        $notices = EE_Error::get_notices(false);
815
-        // if current user is an admin and it's not an ajax or rest request
816
-        if (! isset($notices['errors'])
817
-            && $this->request->isAdmin()
818
-            && apply_filters(
819
-                'FHEE__EE_System__redirect_to_about_ee__do_redirect',
820
-                $this->capabilities->current_user_can('manage_options', 'espresso_about_default')
821
-            )
822
-        ) {
823
-            $query_params = array('page' => 'espresso_about');
824
-            if (EE_System::instance()->detect_req_type() === EE_System::req_type_new_activation) {
825
-                $query_params['new_activation'] = true;
826
-            }
827
-            if (EE_System::instance()->detect_req_type() === EE_System::req_type_reactivation) {
828
-                $query_params['reactivation'] = true;
829
-            }
830
-            $url = add_query_arg($query_params, admin_url('admin.php'));
831
-            wp_safe_redirect($url);
832
-            exit();
833
-        }
834
-    }
835
-
836
-
837
-    /**
838
-     * load_core_configuration
839
-     * this is hooked into 'AHEE__EE_Bootstrap__load_core_configuration'
840
-     * which runs during the WP 'plugins_loaded' action at priority 5
841
-     *
842
-     * @return void
843
-     * @throws ReflectionException
844
-     * @throws Exception
845
-     */
846
-    public function load_core_configuration()
847
-    {
848
-        do_action('AHEE__EE_System__load_core_configuration__begin', $this);
849
-        $this->loader->getShared('EE_Load_Textdomain');
850
-        // load textdomain
851
-        EE_Load_Textdomain::load_textdomain();
852
-        // load caf stuff a chance to play during the activation process too.
853
-        $this->_maybe_brew_regular();
854
-        // load and setup EE_Config and EE_Network_Config
855
-        $config = $this->loader->getShared('EE_Config');
856
-        $this->loader->getShared('EE_Network_Config');
857
-        // setup autoloaders
858
-        // enable logging?
859
-        if ($config->admin->use_remote_logging) {
860
-            $this->loader->getShared('EE_Log');
861
-        }
862
-        // check for activation errors
863
-        $activation_errors = get_option('ee_plugin_activation_errors', false);
864
-        if ($activation_errors) {
865
-            EE_Error::add_error($activation_errors, __FILE__, __FUNCTION__, __LINE__);
866
-            update_option('ee_plugin_activation_errors', false);
867
-        }
868
-        // get model names
869
-        $this->_parse_model_names();
870
-        // configure custom post type definitions
871
-        $this->loader->getShared('EventEspresso\core\domain\entities\custom_post_types\CustomTaxonomyDefinitions');
872
-        $this->loader->getShared('EventEspresso\core\domain\entities\custom_post_types\CustomPostTypeDefinitions');
873
-        do_action('AHEE__EE_System__load_core_configuration__complete', $this);
874
-    }
875
-
876
-
877
-    /**
878
-     * cycles through all of the models/*.model.php files, and assembles an array of model names
879
-     *
880
-     * @return void
881
-     * @throws ReflectionException
882
-     */
883
-    private function _parse_model_names()
884
-    {
885
-        // get all the files in the EE_MODELS folder that end in .model.php
886
-        $models = glob(EE_MODELS . '*.model.php');
887
-        $model_names = array();
888
-        $non_abstract_db_models = array();
889
-        foreach ($models as $model) {
890
-            // get model classname
891
-            $classname = EEH_File::get_classname_from_filepath_with_standard_filename($model);
892
-            $short_name = str_replace('EEM_', '', $classname);
893
-            $reflectionClass = new ReflectionClass($classname);
894
-            if ($reflectionClass->isSubclassOf('EEM_Base') && ! $reflectionClass->isAbstract()) {
895
-                $non_abstract_db_models[ $short_name ] = $classname;
896
-            }
897
-            $model_names[ $short_name ] = $classname;
898
-        }
899
-        $this->registry->models = apply_filters('FHEE__EE_System__parse_model_names', $model_names);
900
-        $this->registry->non_abstract_db_models = apply_filters(
901
-            'FHEE__EE_System__parse_implemented_model_names',
902
-            $non_abstract_db_models
903
-        );
904
-    }
905
-
906
-
907
-    /**
908
-     * The purpose of this method is to simply check for a file named "caffeinated/brewing_regular.php" for any hooks
909
-     * that need to be setup before our EE_System launches.
910
-     *
911
-     * @return void
912
-     * @throws DomainException
913
-     * @throws InvalidArgumentException
914
-     * @throws InvalidDataTypeException
915
-     * @throws InvalidInterfaceException
916
-     * @throws InvalidClassException
917
-     * @throws InvalidFilePathException
918
-     */
919
-    private function _maybe_brew_regular()
920
-    {
921
-        /** @var Domain $domain */
922
-        $domain = DomainFactory::getShared(
923
-            new FullyQualifiedName(
924
-                'EventEspresso\core\domain\Domain'
925
-            ),
926
-            array(
927
-                new FilePath(EVENT_ESPRESSO_MAIN_FILE),
928
-                Version::fromString(espresso_version()),
929
-            )
930
-        );
931
-        if ($domain->isCaffeinated()) {
932
-            require_once EE_CAFF_PATH . 'brewing_regular.php';
933
-        }
934
-    }
935
-
936
-
937
-    /**
938
-     * @since 4.9.71.p
939
-     * @throws Exception
940
-     */
941
-    public function loadRouteMatchSpecifications()
942
-    {
943
-        try {
944
-            $this->loader->getShared(
945
-                'EventEspresso\core\services\route_match\RouteMatchSpecificationManager'
946
-            );
947
-        } catch (Exception $exception) {
948
-            new ExceptionStackTraceDisplay($exception);
949
-        }
950
-        do_action('AHEE__EE_System__loadRouteMatchSpecifications');
951
-    }
952
-
953
-
954
-    /**
955
-     * register_shortcodes_modules_and_widgets
956
-     * generate lists of shortcodes and modules, then verify paths and classes
957
-     * This is hooked into 'AHEE__EE_Bootstrap__register_shortcodes_modules_and_widgets'
958
-     * which runs during the WP 'plugins_loaded' action at priority 7
959
-     *
960
-     * @access public
961
-     * @return void
962
-     * @throws Exception
963
-     */
964
-    public function register_shortcodes_modules_and_widgets()
965
-    {
966
-        if ($this->request->isFrontend() || $this->request->isIframe() || $this->request->isAjax()) {
967
-            try {
968
-                // load, register, and add shortcodes the new way
969
-                $this->loader->getShared(
970
-                    'EventEspresso\core\services\shortcodes\ShortcodesManager',
971
-                    array(
972
-                        // and the old way, but we'll put it under control of the new system
973
-                        EE_Config::getLegacyShortcodesManager(),
974
-                    )
975
-                );
976
-            } catch (Exception $exception) {
977
-                new ExceptionStackTraceDisplay($exception);
978
-            }
979
-        }
980
-        do_action('AHEE__EE_System__register_shortcodes_modules_and_widgets');
981
-        // check for addons using old hook point
982
-        if (has_action('AHEE__EE_System__register_shortcodes_modules_and_addons')) {
983
-            $this->_incompatible_addon_error();
984
-        }
985
-    }
986
-
987
-
988
-    /**
989
-     * _incompatible_addon_error
990
-     *
991
-     * @access public
992
-     * @return void
993
-     */
994
-    private function _incompatible_addon_error()
995
-    {
996
-        // get array of classes hooking into here
997
-        $class_names = EEH_Class_Tools::get_class_names_for_all_callbacks_on_hook(
998
-            'AHEE__EE_System__register_shortcodes_modules_and_addons'
999
-        );
1000
-        if (! empty($class_names)) {
1001
-            $msg = __(
1002
-                'The following plugins, addons, or modules appear to be incompatible with this version of Event Espresso and were automatically deactivated to avoid fatal errors:',
1003
-                'event_espresso'
1004
-            );
1005
-            $msg .= '<ul>';
1006
-            foreach ($class_names as $class_name) {
1007
-                $msg .= '<li><b>Event Espresso - '
1008
-                        . str_replace(
1009
-                            array('EE_', 'EEM_', 'EED_', 'EES_', 'EEW_'),
1010
-                            '',
1011
-                            $class_name
1012
-                        ) . '</b></li>';
1013
-            }
1014
-            $msg .= '</ul>';
1015
-            $msg .= __(
1016
-                'Compatibility issues can be avoided and/or resolved by keeping addons and plugins updated to the latest version.',
1017
-                'event_espresso'
1018
-            );
1019
-            // save list of incompatible addons to wp-options for later use
1020
-            add_option('ee_incompatible_addons', $class_names, '', 'no');
1021
-            if (is_admin()) {
1022
-                EE_Error::add_error($msg, __FILE__, __FUNCTION__, __LINE__);
1023
-            }
1024
-        }
1025
-    }
1026
-
1027
-
1028
-    /**
1029
-     * brew_espresso
1030
-     * begins the process of setting hooks for initializing EE in the correct order
1031
-     * This is happening on the 'AHEE__EE_Bootstrap__brew_espresso' hook point
1032
-     * which runs during the WP 'plugins_loaded' action at priority 9
1033
-     *
1034
-     * @return void
1035
-     */
1036
-    public function brew_espresso()
1037
-    {
1038
-        do_action('AHEE__EE_System__brew_espresso__begin', $this);
1039
-        // load some final core systems
1040
-        add_action('init', array($this, 'set_hooks_for_core'), 1);
1041
-        add_action('init', array($this, 'perform_activations_upgrades_and_migrations'), 3);
1042
-        add_action('init', array($this, 'load_CPTs_and_session'), 5);
1043
-        add_action('init', array($this, 'load_controllers'), 7);
1044
-        add_action('init', array($this, 'core_loaded_and_ready'), 9);
1045
-        add_action('init', array($this, 'initialize'), 10);
1046
-        add_action('init', array($this, 'initialize_last'), 100);
1047
-        if (is_admin() && apply_filters('FHEE__EE_System__brew_espresso__load_pue', true)) {
1048
-            // pew pew pew
1049
-            $this->loader->getShared('EventEspresso\core\services\licensing\LicenseService');
1050
-            do_action('AHEE__EE_System__brew_espresso__after_pue_init');
1051
-        }
1052
-        do_action('AHEE__EE_System__brew_espresso__complete', $this);
1053
-    }
1054
-
1055
-
1056
-    /**
1057
-     *    set_hooks_for_core
1058
-     *
1059
-     * @access public
1060
-     * @return    void
1061
-     * @throws EE_Error
1062
-     */
1063
-    public function set_hooks_for_core()
1064
-    {
1065
-        $this->_deactivate_incompatible_addons();
1066
-        do_action('AHEE__EE_System__set_hooks_for_core');
1067
-        $this->loader->getShared('EventEspresso\core\domain\values\session\SessionLifespan');
1068
-        // caps need to be initialized on every request so that capability maps are set.
1069
-        // @see https://events.codebasehq.com/projects/event-espresso/tickets/8674
1070
-        $this->registry->CAP->init_caps();
1071
-    }
1072
-
1073
-
1074
-    /**
1075
-     * Using the information gathered in EE_System::_incompatible_addon_error,
1076
-     * deactivates any addons considered incompatible with the current version of EE
1077
-     */
1078
-    private function _deactivate_incompatible_addons()
1079
-    {
1080
-        $incompatible_addons = get_option('ee_incompatible_addons', array());
1081
-        if (! empty($incompatible_addons)) {
1082
-            $active_plugins = get_option('active_plugins', array());
1083
-            foreach ($active_plugins as $active_plugin) {
1084
-                foreach ($incompatible_addons as $incompatible_addon) {
1085
-                    if (strpos($active_plugin, $incompatible_addon) !== false) {
1086
-                        unset($_GET['activate']);
1087
-                        espresso_deactivate_plugin($active_plugin);
1088
-                    }
1089
-                }
1090
-            }
1091
-        }
1092
-    }
1093
-
1094
-
1095
-    /**
1096
-     *    perform_activations_upgrades_and_migrations
1097
-     *
1098
-     * @access public
1099
-     * @return    void
1100
-     */
1101
-    public function perform_activations_upgrades_and_migrations()
1102
-    {
1103
-        do_action('AHEE__EE_System__perform_activations_upgrades_and_migrations');
1104
-    }
1105
-
1106
-
1107
-    /**
1108
-     * @return void
1109
-     * @throws DomainException
1110
-     */
1111
-    public function load_CPTs_and_session()
1112
-    {
1113
-        do_action('AHEE__EE_System__load_CPTs_and_session__start');
1114
-        /** @var EventEspresso\core\domain\services\custom_post_types\RegisterCustomTaxonomies $register_custom_taxonomies */
1115
-        $register_custom_taxonomies = $this->loader->getShared(
1116
-            'EventEspresso\core\domain\services\custom_post_types\RegisterCustomTaxonomies'
1117
-        );
1118
-        $register_custom_taxonomies->registerCustomTaxonomies();
1119
-        /** @var EventEspresso\core\domain\services\custom_post_types\RegisterCustomPostTypes $register_custom_post_types */
1120
-        $register_custom_post_types = $this->loader->getShared(
1121
-            'EventEspresso\core\domain\services\custom_post_types\RegisterCustomPostTypes'
1122
-        );
1123
-        $register_custom_post_types->registerCustomPostTypes();
1124
-        /** @var EventEspresso\core\domain\services\custom_post_types\RegisterCustomTaxonomyTerms $register_custom_taxonomy_terms */
1125
-        $register_custom_taxonomy_terms = $this->loader->getShared(
1126
-            'EventEspresso\core\domain\services\custom_post_types\RegisterCustomTaxonomyTerms'
1127
-        );
1128
-        $register_custom_taxonomy_terms->registerCustomTaxonomyTerms();
1129
-        // load legacy Custom Post Types and Taxonomies
1130
-        $this->loader->getShared('EE_Register_CPTs');
1131
-        do_action('AHEE__EE_System__load_CPTs_and_session__complete');
1132
-    }
1133
-
1134
-
1135
-    /**
1136
-     * load_controllers
1137
-     * this is the best place to load any additional controllers that needs access to EE core.
1138
-     * it is expected that all basic core EE systems, that are not dependant on the current request are loaded at this
1139
-     * time
1140
-     *
1141
-     * @access public
1142
-     * @return void
1143
-     */
1144
-    public function load_controllers()
1145
-    {
1146
-        do_action('AHEE__EE_System__load_controllers__start');
1147
-        // let's get it started
1148
-        if (! $this->maintenance_mode->level()
1149
-            && ($this->request->isFrontend() || $this->request->isFrontAjax())
1150
-        ) {
1151
-            do_action('AHEE__EE_System__load_controllers__load_front_controllers');
1152
-            $this->loader->getShared('EE_Front_Controller');
1153
-        } elseif ($this->request->isAdmin() || $this->request->isAdminAjax()) {
1154
-            do_action('AHEE__EE_System__load_controllers__load_admin_controllers');
1155
-            $this->loader->getShared('EE_Admin');
1156
-        } elseif ($this->request->isWordPressHeartbeat()) {
1157
-            $this->loader->getShared('EventEspresso\core\domain\services\admin\ajax\WordpressHeartbeat');
1158
-        }
1159
-        do_action('AHEE__EE_System__load_controllers__complete');
1160
-    }
1161
-
1162
-
1163
-    /**
1164
-     * core_loaded_and_ready
1165
-     * all of the basic EE core should be loaded at this point and available regardless of M-Mode
1166
-     *
1167
-     * @access public
1168
-     * @return void
1169
-     * @throws Exception
1170
-     */
1171
-    public function core_loaded_and_ready()
1172
-    {
1173
-        if ($this->request->isAdmin()
1174
-            || $this->request->isFrontend()
1175
-            || $this->request->isIframe()
1176
-            || $this->request->isWordPressApi()
1177
-        ) {
1178
-            try {
1179
-                $this->loader->getShared('EventEspresso\core\services\assets\Registry');
1180
-                $this->loader->getShared('EventEspresso\core\domain\services\assets\CoreAssetManager');
1181
-                if ($this->canLoadBlocks()) {
1182
-                    $this->loader->getShared(
1183
-                        'EventEspresso\core\services\editor\BlockRegistrationManager'
1184
-                    );
1185
-                }
1186
-            } catch (Exception $exception) {
1187
-                new ExceptionStackTraceDisplay($exception);
1188
-            }
1189
-        }
1190
-        if ($this->request->isAdmin()
1191
-            || $this->request->isEeAjax()
1192
-            || $this->request->isFrontend()
1193
-        ) {
1194
-            $this->loader->getShared('EE_Session');
1195
-        }
1196
-        // integrate WP_Query with the EE models
1197
-        $this->loader->getShared('EE_CPT_Strategy');
1198
-        do_action('AHEE__EE_System__core_loaded_and_ready');
1199
-        // always load template tags, because it's faster than checking if it's a front-end request, and many page
1200
-        // builders require these even on the front-end
1201
-        require_once EE_PUBLIC . 'template_tags.php';
1202
-        // load handler for GraphQL requests
1203
-        if (class_exists('WPGraphQL') && $this->request->isGQL()) {
1204
-            try {
1205
-                $graphQL_manager = $this->loader->getShared(
1206
-                    'EventEspresso\core\services\graphql\GraphQLManager'
1207
-                );
1208
-                $graphQL_manager->init();
1209
-            } catch (Exception $exception) {
1210
-                new ExceptionStackTraceDisplay($exception);
1211
-            }
1212
-        }
1213
-        do_action('AHEE__EE_System__set_hooks_for_shortcodes_modules_and_addons');
1214
-    }
1215
-
1216
-
1217
-    /**
1218
-     * initialize
1219
-     * this is the best place to begin initializing client code
1220
-     *
1221
-     * @access public
1222
-     * @return void
1223
-     */
1224
-    public function initialize()
1225
-    {
1226
-        do_action('AHEE__EE_System__initialize');
1227
-    }
1228
-
1229
-
1230
-    /**
1231
-     * initialize_last
1232
-     * this is run really late during the WP init hook point, and ensures that mostly everything else that needs to
1233
-     * initialize has done so
1234
-     *
1235
-     * @access public
1236
-     * @return void
1237
-     */
1238
-    public function initialize_last()
1239
-    {
1240
-        do_action('AHEE__EE_System__initialize_last');
1241
-        /** @var EventEspresso\core\domain\services\custom_post_types\RewriteRules $rewrite_rules */
1242
-        $rewrite_rules = $this->loader->getShared(
1243
-            'EventEspresso\core\domain\services\custom_post_types\RewriteRules'
1244
-        );
1245
-        $rewrite_rules->flushRewriteRules();
1246
-        add_action('admin_bar_init', array($this, 'addEspressoToolbar'));
1247
-        if (($this->request->isAjax() || $this->request->isAdmin())
1248
-            && $this->maintenance_mode->models_can_query()) {
1249
-            $this->loader->getShared('EventEspresso\core\services\privacy\export\PersonalDataExporterManager');
1250
-            $this->loader->getShared('EventEspresso\core\services\privacy\erasure\PersonalDataEraserManager');
1251
-        }
1252
-    }
1253
-
1254
-
1255
-    /**
1256
-     * @return void
1257
-     * @throws EE_Error
1258
-     */
1259
-    public function addEspressoToolbar()
1260
-    {
1261
-        $this->loader->getShared(
1262
-            'EventEspresso\core\domain\services\admin\AdminToolBar',
1263
-            array($this->registry->CAP)
1264
-        );
1265
-    }
1266
-
1267
-
1268
-    /**
1269
-     * do_not_cache
1270
-     * sets no cache headers and defines no cache constants for WP plugins
1271
-     *
1272
-     * @access public
1273
-     * @return void
1274
-     */
1275
-    public static function do_not_cache()
1276
-    {
1277
-        // set no cache constants
1278
-        if (! defined('DONOTCACHEPAGE')) {
1279
-            define('DONOTCACHEPAGE', true);
1280
-        }
1281
-        if (! defined('DONOTCACHCEOBJECT')) {
1282
-            define('DONOTCACHCEOBJECT', true);
1283
-        }
1284
-        if (! defined('DONOTCACHEDB')) {
1285
-            define('DONOTCACHEDB', true);
1286
-        }
1287
-        // add no cache headers
1288
-        add_action('send_headers', array('EE_System', 'nocache_headers'), 10);
1289
-        // plus a little extra for nginx and Google Chrome
1290
-        add_filter('nocache_headers', array('EE_System', 'extra_nocache_headers'), 10, 1);
1291
-        // prevent browsers from prefetching of the rel='next' link, because it may contain content that interferes with the registration process
1292
-        remove_action('wp_head', 'adjacent_posts_rel_link_wp_head');
1293
-    }
1294
-
1295
-
1296
-    /**
1297
-     *    extra_nocache_headers
1298
-     *
1299
-     * @access    public
1300
-     * @param $headers
1301
-     * @return    array
1302
-     */
1303
-    public static function extra_nocache_headers($headers)
1304
-    {
1305
-        // for NGINX
1306
-        $headers['X-Accel-Expires'] = 0;
1307
-        // plus extra for Google Chrome since it doesn't seem to respect "no-cache", but WILL respect "no-store"
1308
-        $headers['Cache-Control'] = 'no-store, no-cache, must-revalidate, max-age=0';
1309
-        return $headers;
1310
-    }
1311
-
1312
-
1313
-    /**
1314
-     *    nocache_headers
1315
-     *
1316
-     * @access    public
1317
-     * @return    void
1318
-     */
1319
-    public static function nocache_headers()
1320
-    {
1321
-        nocache_headers();
1322
-    }
1323
-
1324
-
1325
-    /**
1326
-     * simply hooks into "wp_list_pages_exclude" filter (for wp_list_pages method) and makes sure EE critical pages are
1327
-     * never returned with the function.
1328
-     *
1329
-     * @param  array $exclude_array any existing pages being excluded are in this array.
1330
-     * @return array
1331
-     */
1332
-    public function remove_pages_from_wp_list_pages($exclude_array)
1333
-    {
1334
-        return array_merge($exclude_array, $this->registry->CFG->core->get_critical_pages_array());
1335
-    }
1336
-
1337
-
1338
-    /**
1339
-     * Return whether blocks can be registered/loaded or not.
1340
-     * @return bool
1341
-     */
1342
-    private function canLoadBlocks()
1343
-    {
1344
-        return apply_filters('FHEE__EE_System__canLoadBlocks', true)
1345
-               && function_exists('register_block_type')
1346
-               // don't load blocks if in the Divi page builder editor context
1347
-               // @see https://github.com/eventespresso/event-espresso-core/issues/814
1348
-               && ! $this->request->getRequestParam('et_fb', false);
1349
-    }
30
+	/**
31
+	 * indicates this is a 'normal' request. Ie, not activation, nor upgrade, nor activation.
32
+	 * So examples of this would be a normal GET request on the frontend or backend, or a POST, etc
33
+	 */
34
+	const req_type_normal = 0;
35
+
36
+	/**
37
+	 * Indicates this is a brand new installation of EE so we should install
38
+	 * tables and default data etc
39
+	 */
40
+	const req_type_new_activation = 1;
41
+
42
+	/**
43
+	 * we've detected that EE has been reactivated (or EE was activated during maintenance mode,
44
+	 * and we just exited maintenance mode). We MUST check the database is setup properly
45
+	 * and that default data is setup too
46
+	 */
47
+	const req_type_reactivation = 2;
48
+
49
+	/**
50
+	 * indicates that EE has been upgraded since its previous request.
51
+	 * We may have data migration scripts to call and will want to trigger maintenance mode
52
+	 */
53
+	const req_type_upgrade = 3;
54
+
55
+	/**
56
+	 * TODO  will detect that EE has been DOWNGRADED. We probably don't want to run in this case...
57
+	 */
58
+	const req_type_downgrade = 4;
59
+
60
+	/**
61
+	 * @deprecated since version 4.6.0.dev.006
62
+	 * Now whenever a new_activation is detected the request type is still just
63
+	 * new_activation (same for reactivation, upgrade, downgrade etc), but if we'r ein maintenance mode
64
+	 * EE_System::initialize_db_if_no_migrations_required and EE_Addon::initialize_db_if_no_migrations_required
65
+	 * will instead enqueue that EE plugin's db initialization for when we're taken out of maintenance mode.
66
+	 * (Specifically, when the migration manager indicates migrations are finished
67
+	 * EE_Data_Migration_Manager::initialize_db_for_enqueued_ee_plugins() will be called)
68
+	 */
69
+	const req_type_activation_but_not_installed = 5;
70
+
71
+	/**
72
+	 * option prefix for recording the activation history (like core's "espresso_db_update") of addons
73
+	 */
74
+	const addon_activation_history_option_prefix = 'ee_addon_activation_history_';
75
+
76
+	/**
77
+	 * @var EE_System $_instance
78
+	 */
79
+	private static $_instance;
80
+
81
+	/**
82
+	 * @var EE_Registry $registry
83
+	 */
84
+	private $registry;
85
+
86
+	/**
87
+	 * @var LoaderInterface $loader
88
+	 */
89
+	private $loader;
90
+
91
+	/**
92
+	 * @var EE_Capabilities $capabilities
93
+	 */
94
+	private $capabilities;
95
+
96
+	/**
97
+	 * @var RequestInterface $request
98
+	 */
99
+	private $request;
100
+
101
+	/**
102
+	 * @var EE_Maintenance_Mode $maintenance_mode
103
+	 */
104
+	private $maintenance_mode;
105
+
106
+	/**
107
+	 * Stores which type of request this is, options being one of the constants on EE_System starting with req_type_*.
108
+	 * It can be a brand-new activation, a reactivation, an upgrade, a downgrade, or a normal request.
109
+	 *
110
+	 * @var int $_req_type
111
+	 */
112
+	private $_req_type;
113
+
114
+	/**
115
+	 * Whether or not there was a non-micro version change in EE core version during this request
116
+	 *
117
+	 * @var boolean $_major_version_change
118
+	 */
119
+	private $_major_version_change = false;
120
+
121
+	/**
122
+	 * A Context DTO dedicated solely to identifying the current request type.
123
+	 *
124
+	 * @var RequestTypeContextCheckerInterface $request_type
125
+	 */
126
+	private $request_type;
127
+
128
+
129
+	/**
130
+	 * @singleton method used to instantiate class object
131
+	 * @param EE_Registry|null         $registry
132
+	 * @param LoaderInterface|null     $loader
133
+	 * @param RequestInterface|null    $request
134
+	 * @param EE_Maintenance_Mode|null $maintenance_mode
135
+	 * @return EE_System
136
+	 */
137
+	public static function instance(
138
+		EE_Registry $registry = null,
139
+		LoaderInterface $loader = null,
140
+		RequestInterface $request = null,
141
+		EE_Maintenance_Mode $maintenance_mode = null
142
+	) {
143
+		// check if class object is instantiated
144
+		if (! self::$_instance instanceof EE_System) {
145
+			self::$_instance = new self($registry, $loader, $request, $maintenance_mode);
146
+		}
147
+		return self::$_instance;
148
+	}
149
+
150
+
151
+	/**
152
+	 * resets the instance and returns it
153
+	 *
154
+	 * @return EE_System
155
+	 */
156
+	public static function reset()
157
+	{
158
+		self::$_instance->_req_type = null;
159
+		// make sure none of the old hooks are left hanging around
160
+		remove_all_actions('AHEE__EE_System__perform_activations_upgrades_and_migrations');
161
+		// we need to reset the migration manager in order for it to detect DMSs properly
162
+		EE_Data_Migration_Manager::reset();
163
+		self::instance()->detect_activations_or_upgrades();
164
+		self::instance()->perform_activations_upgrades_and_migrations();
165
+		return self::instance();
166
+	}
167
+
168
+
169
+	/**
170
+	 * sets hooks for running rest of system
171
+	 * provides "AHEE__EE_System__construct__complete" hook for EE Addons to use as their starting point
172
+	 * starting EE Addons from any other point may lead to problems
173
+	 *
174
+	 * @param EE_Registry         $registry
175
+	 * @param LoaderInterface     $loader
176
+	 * @param RequestInterface    $request
177
+	 * @param EE_Maintenance_Mode $maintenance_mode
178
+	 */
179
+	private function __construct(
180
+		EE_Registry $registry,
181
+		LoaderInterface $loader,
182
+		RequestInterface $request,
183
+		EE_Maintenance_Mode $maintenance_mode
184
+	) {
185
+		$this->registry = $registry;
186
+		$this->loader = $loader;
187
+		$this->request = $request;
188
+		$this->maintenance_mode = $maintenance_mode;
189
+		do_action('AHEE__EE_System__construct__begin', $this);
190
+		add_action(
191
+			'AHEE__EE_Bootstrap__load_espresso_addons',
192
+			array($this, 'loadCapabilities'),
193
+			5
194
+		);
195
+		add_action(
196
+			'AHEE__EE_Bootstrap__load_espresso_addons',
197
+			array($this, 'loadCommandBus'),
198
+			7
199
+		);
200
+		add_action(
201
+			'AHEE__EE_Bootstrap__load_espresso_addons',
202
+			array($this, 'loadPluginApi'),
203
+			9
204
+		);
205
+		// allow addons to load first so that they can register autoloaders, set hooks for running DMS's, etc
206
+		add_action(
207
+			'AHEE__EE_Bootstrap__load_espresso_addons',
208
+			array($this, 'load_espresso_addons')
209
+		);
210
+		// when an ee addon is activated, we want to call the core hook(s) again
211
+		// because the newly-activated addon didn't get a chance to run at all
212
+		add_action('activate_plugin', array($this, 'load_espresso_addons'), 1);
213
+		// detect whether install or upgrade
214
+		add_action(
215
+			'AHEE__EE_Bootstrap__detect_activations_or_upgrades',
216
+			array($this, 'detect_activations_or_upgrades'),
217
+			3
218
+		);
219
+		// load EE_Config, EE_Textdomain, etc
220
+		add_action(
221
+			'AHEE__EE_Bootstrap__load_core_configuration',
222
+			array($this, 'load_core_configuration'),
223
+			5
224
+		);
225
+		// load specifications for matching routes to current request
226
+		add_action(
227
+			'AHEE__EE_Bootstrap__load_core_configuration',
228
+			array($this, 'loadRouteMatchSpecifications')
229
+		);
230
+		// load EE_Config, EE_Textdomain, etc
231
+		add_action(
232
+			'AHEE__EE_Bootstrap__register_shortcodes_modules_and_widgets',
233
+			array($this, 'register_shortcodes_modules_and_widgets'),
234
+			7
235
+		);
236
+		// you wanna get going? I wanna get going... let's get going!
237
+		add_action(
238
+			'AHEE__EE_Bootstrap__brew_espresso',
239
+			array($this, 'brew_espresso'),
240
+			9
241
+		);
242
+		// other housekeeping
243
+		// exclude EE critical pages from wp_list_pages
244
+		add_filter(
245
+			'wp_list_pages_excludes',
246
+			array($this, 'remove_pages_from_wp_list_pages'),
247
+			10
248
+		);
249
+		// ALL EE Addons should use the following hook point to attach their initial setup too
250
+		// it's extremely important for EE Addons to register any class autoloaders so that they can be available when the EE_Config loads
251
+		do_action('AHEE__EE_System__construct__complete', $this);
252
+	}
253
+
254
+
255
+	/**
256
+	 * load and setup EE_Capabilities
257
+	 *
258
+	 * @return void
259
+	 * @throws EE_Error
260
+	 */
261
+	public function loadCapabilities()
262
+	{
263
+		$this->capabilities = $this->loader->getShared('EE_Capabilities');
264
+		add_action(
265
+			'AHEE__EE_Capabilities__init_caps__before_initialization',
266
+			function () {
267
+				LoaderFactory::getLoader()->getShared('EE_Payment_Method_Manager');
268
+			}
269
+		);
270
+	}
271
+
272
+
273
+	/**
274
+	 * create and cache the CommandBus, and also add middleware
275
+	 * The CapChecker middleware requires the use of EE_Capabilities
276
+	 * which is why we need to load the CommandBus after Caps are set up
277
+	 *
278
+	 * @return void
279
+	 * @throws EE_Error
280
+	 */
281
+	public function loadCommandBus()
282
+	{
283
+		$this->loader->getShared(
284
+			'CommandBusInterface',
285
+			array(
286
+				null,
287
+				apply_filters(
288
+					'FHEE__EE_Load_Espresso_Core__handle_request__CommandBus_middleware',
289
+					array(
290
+						$this->loader->getShared('EventEspresso\core\services\commands\middleware\CapChecker'),
291
+						$this->loader->getShared('EventEspresso\core\services\commands\middleware\AddActionHook'),
292
+					)
293
+				),
294
+			)
295
+		);
296
+	}
297
+
298
+
299
+	/**
300
+	 * @return void
301
+	 * @throws EE_Error
302
+	 */
303
+	public function loadPluginApi()
304
+	{
305
+		// set autoloaders for all of the classes implementing EEI_Plugin_API
306
+		// which provide helpers for EE plugin authors to more easily register certain components with EE.
307
+		EEH_Autoloader::instance()->register_autoloaders_for_each_file_in_folder(EE_LIBRARIES . 'plugin_api');
308
+		$this->loader->getShared('EE_Request_Handler');
309
+	}
310
+
311
+
312
+	/**
313
+	 * @param string $addon_name
314
+	 * @param string $version_constant
315
+	 * @param string $min_version_required
316
+	 * @param string $load_callback
317
+	 * @param string $plugin_file_constant
318
+	 * @return void
319
+	 */
320
+	private function deactivateIncompatibleAddon(
321
+		$addon_name,
322
+		$version_constant,
323
+		$min_version_required,
324
+		$load_callback,
325
+		$plugin_file_constant
326
+	) {
327
+		if (! defined($version_constant)) {
328
+			return;
329
+		}
330
+		$addon_version = constant($version_constant);
331
+		if ($addon_version && version_compare($addon_version, $min_version_required, '<')) {
332
+			remove_action('AHEE__EE_System__load_espresso_addons', $load_callback);
333
+			if (! function_exists('deactivate_plugins')) {
334
+				require_once ABSPATH . 'wp-admin/includes/plugin.php';
335
+			}
336
+			deactivate_plugins(plugin_basename(constant($plugin_file_constant)));
337
+			unset($_GET['activate'], $_REQUEST['activate'], $_GET['activate-multi'], $_REQUEST['activate-multi']);
338
+			EE_Error::add_error(
339
+				sprintf(
340
+					esc_html__(
341
+						'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.',
342
+						'event_espresso'
343
+					),
344
+					$addon_name,
345
+					$min_version_required
346
+				),
347
+				__FILE__,
348
+				__FUNCTION__ . "({$addon_name})",
349
+				__LINE__
350
+			);
351
+			EE_Error::get_notices(false, true);
352
+		}
353
+	}
354
+
355
+
356
+	/**
357
+	 * load_espresso_addons
358
+	 * allow addons to load first so that they can set hooks for running DMS's, etc
359
+	 * this is hooked into both:
360
+	 *    'AHEE__EE_Bootstrap__load_core_configuration'
361
+	 *        which runs during the WP 'plugins_loaded' action at priority 5
362
+	 *    and the WP 'activate_plugin' hook point
363
+	 *
364
+	 * @access public
365
+	 * @return void
366
+	 */
367
+	public function load_espresso_addons()
368
+	{
369
+		$this->deactivateIncompatibleAddon(
370
+			'Wait Lists',
371
+			'EE_WAIT_LISTS_VERSION',
372
+			'1.0.0.beta.074',
373
+			'load_espresso_wait_lists',
374
+			'EE_WAIT_LISTS_PLUGIN_FILE'
375
+		);
376
+		$this->deactivateIncompatibleAddon(
377
+			'Automated Upcoming Event Notifications',
378
+			'EE_AUTOMATED_UPCOMING_EVENT_NOTIFICATION_VERSION',
379
+			'1.0.0.beta.091',
380
+			'load_espresso_automated_upcoming_event_notification',
381
+			'EE_AUTOMATED_UPCOMING_EVENT_NOTIFICATION_PLUGIN_FILE'
382
+		);
383
+		do_action('AHEE__EE_System__load_espresso_addons');
384
+		// if the WP API basic auth plugin isn't already loaded, load it now.
385
+		// We want it for mobile apps. Just include the entire plugin
386
+		// also, don't load the basic auth when a plugin is getting activated, because
387
+		// it could be the basic auth plugin, and it doesn't check if its methods are already defined
388
+		// and causes a fatal error
389
+		if (($this->request->isWordPressApi() || $this->request->isApi())
390
+			&& $this->request->getRequestParam('activate') !== 'true'
391
+			&& ! function_exists('json_basic_auth_handler')
392
+			&& ! function_exists('json_basic_auth_error')
393
+			&& ! in_array(
394
+				$this->request->getRequestParam('action'),
395
+				array('activate', 'activate-selected'),
396
+				true
397
+			)
398
+		) {
399
+			include_once EE_THIRD_PARTY . 'wp-api-basic-auth/basic-auth.php';
400
+		}
401
+		do_action('AHEE__EE_System__load_espresso_addons__complete');
402
+	}
403
+
404
+
405
+	/**
406
+	 * detect_activations_or_upgrades
407
+	 * Checks for activation or upgrade of core first;
408
+	 * then also checks if any registered addons have been activated or upgraded
409
+	 * This is hooked into 'AHEE__EE_Bootstrap__detect_activations_or_upgrades'
410
+	 * which runs during the WP 'plugins_loaded' action at priority 3
411
+	 *
412
+	 * @access public
413
+	 * @return void
414
+	 */
415
+	public function detect_activations_or_upgrades()
416
+	{
417
+		// first off: let's make sure to handle core
418
+		$this->detect_if_activation_or_upgrade();
419
+		foreach ($this->registry->addons as $addon) {
420
+			if ($addon instanceof EE_Addon) {
421
+				// detect teh request type for that addon
422
+				$addon->detect_activation_or_upgrade();
423
+			}
424
+		}
425
+	}
426
+
427
+
428
+	/**
429
+	 * detect_if_activation_or_upgrade
430
+	 * Takes care of detecting whether this is a brand new install or code upgrade,
431
+	 * and either setting up the DB or setting up maintenance mode etc.
432
+	 *
433
+	 * @access public
434
+	 * @return void
435
+	 */
436
+	public function detect_if_activation_or_upgrade()
437
+	{
438
+		do_action('AHEE__EE_System___detect_if_activation_or_upgrade__begin');
439
+		// check if db has been updated, or if its a brand-new installation
440
+		$espresso_db_update = $this->fix_espresso_db_upgrade_option();
441
+		$request_type = $this->detect_req_type($espresso_db_update);
442
+		// EEH_Debug_Tools::printr( $request_type, '$request_type', __FILE__, __LINE__ );
443
+		switch ($request_type) {
444
+			case EE_System::req_type_new_activation:
445
+				do_action('AHEE__EE_System__detect_if_activation_or_upgrade__new_activation');
446
+				$this->_handle_core_version_change($espresso_db_update);
447
+				break;
448
+			case EE_System::req_type_reactivation:
449
+				do_action('AHEE__EE_System__detect_if_activation_or_upgrade__reactivation');
450
+				$this->_handle_core_version_change($espresso_db_update);
451
+				break;
452
+			case EE_System::req_type_upgrade:
453
+				do_action('AHEE__EE_System__detect_if_activation_or_upgrade__upgrade');
454
+				// migrations may be required now that we've upgraded
455
+				$this->maintenance_mode->set_maintenance_mode_if_db_old();
456
+				$this->_handle_core_version_change($espresso_db_update);
457
+				break;
458
+			case EE_System::req_type_downgrade:
459
+				do_action('AHEE__EE_System__detect_if_activation_or_upgrade__downgrade');
460
+				// its possible migrations are no longer required
461
+				$this->maintenance_mode->set_maintenance_mode_if_db_old();
462
+				$this->_handle_core_version_change($espresso_db_update);
463
+				break;
464
+			case EE_System::req_type_normal:
465
+			default:
466
+				break;
467
+		}
468
+		do_action('AHEE__EE_System__detect_if_activation_or_upgrade__complete');
469
+	}
470
+
471
+
472
+	/**
473
+	 * Updates the list of installed versions and sets hooks for
474
+	 * initializing the database later during the request
475
+	 *
476
+	 * @param array $espresso_db_update
477
+	 */
478
+	private function _handle_core_version_change($espresso_db_update)
479
+	{
480
+		$this->update_list_of_installed_versions($espresso_db_update);
481
+		// get ready to verify the DB is ok (provided we aren't in maintenance mode, of course)
482
+		add_action(
483
+			'AHEE__EE_System__perform_activations_upgrades_and_migrations',
484
+			array($this, 'initialize_db_if_no_migrations_required')
485
+		);
486
+	}
487
+
488
+
489
+	/**
490
+	 * standardizes the wp option 'espresso_db_upgrade' which actually stores
491
+	 * information about what versions of EE have been installed and activated,
492
+	 * NOT necessarily the state of the database
493
+	 *
494
+	 * @param mixed $espresso_db_update           the value of the WordPress option.
495
+	 *                                            If not supplied, fetches it from the options table
496
+	 * @return array the correct value of 'espresso_db_upgrade', after saving it, if it needed correction
497
+	 */
498
+	private function fix_espresso_db_upgrade_option($espresso_db_update = null)
499
+	{
500
+		do_action('FHEE__EE_System__manage_fix_espresso_db_upgrade_option__begin', $espresso_db_update);
501
+		if (! $espresso_db_update) {
502
+			$espresso_db_update = get_option('espresso_db_update');
503
+		}
504
+		// check that option is an array
505
+		if (! is_array($espresso_db_update)) {
506
+			// if option is FALSE, then it never existed
507
+			if ($espresso_db_update === false) {
508
+				// make $espresso_db_update an array and save option with autoload OFF
509
+				$espresso_db_update = array();
510
+				add_option('espresso_db_update', $espresso_db_update, '', 'no');
511
+			} else {
512
+				// option is NOT FALSE but also is NOT an array, so make it an array and save it
513
+				$espresso_db_update = array($espresso_db_update => array());
514
+				update_option('espresso_db_update', $espresso_db_update);
515
+			}
516
+		} else {
517
+			$corrected_db_update = array();
518
+			// if IS an array, but is it an array where KEYS are version numbers, and values are arrays?
519
+			foreach ($espresso_db_update as $should_be_version_string => $should_be_array) {
520
+				if (is_int($should_be_version_string) && ! is_array($should_be_array)) {
521
+					// the key is an int, and the value IS NOT an array
522
+					// so it must be numerically-indexed, where values are versions installed...
523
+					// fix it!
524
+					$version_string = $should_be_array;
525
+					$corrected_db_update[ $version_string ] = array('unknown-date');
526
+				} else {
527
+					// ok it checks out
528
+					$corrected_db_update[ $should_be_version_string ] = $should_be_array;
529
+				}
530
+			}
531
+			$espresso_db_update = $corrected_db_update;
532
+			update_option('espresso_db_update', $espresso_db_update);
533
+		}
534
+		do_action('FHEE__EE_System__manage_fix_espresso_db_upgrade_option__complete', $espresso_db_update);
535
+		return $espresso_db_update;
536
+	}
537
+
538
+
539
+	/**
540
+	 * Does the traditional work of setting up the plugin's database and adding default data.
541
+	 * If migration script/process did not exist, this is what would happen on every activation/reactivation/upgrade.
542
+	 * NOTE: if we're in maintenance mode (which would be the case if we detect there are data
543
+	 * migration scripts that need to be run and a version change happens), enqueues core for database initialization,
544
+	 * so that it will be done when migrations are finished
545
+	 *
546
+	 * @param boolean $initialize_addons_too if true, we double-check addons' database tables etc too;
547
+	 * @param boolean $verify_schema         if true will re-check the database tables have the correct schema.
548
+	 *                                       This is a resource-intensive job
549
+	 *                                       so we prefer to only do it when necessary
550
+	 * @return void
551
+	 * @throws EE_Error
552
+	 */
553
+	public function initialize_db_if_no_migrations_required($initialize_addons_too = false, $verify_schema = true)
554
+	{
555
+		$request_type = $this->detect_req_type();
556
+		// only initialize system if we're not in maintenance mode.
557
+		if ($this->maintenance_mode->level() !== EE_Maintenance_Mode::level_2_complete_maintenance) {
558
+			/** @var EventEspresso\core\domain\services\custom_post_types\RewriteRules $rewrite_rules */
559
+			$rewrite_rules = $this->loader->getShared(
560
+				'EventEspresso\core\domain\services\custom_post_types\RewriteRules'
561
+			);
562
+			$rewrite_rules->flush();
563
+			if ($verify_schema) {
564
+				EEH_Activation::initialize_db_and_folders();
565
+			}
566
+			EEH_Activation::initialize_db_content();
567
+			EEH_Activation::system_initialization();
568
+			if ($initialize_addons_too) {
569
+				$this->initialize_addons();
570
+			}
571
+		} else {
572
+			EE_Data_Migration_Manager::instance()->enqueue_db_initialization_for('Core');
573
+		}
574
+		if ($request_type === EE_System::req_type_new_activation
575
+			|| $request_type === EE_System::req_type_reactivation
576
+			|| (
577
+				$request_type === EE_System::req_type_upgrade
578
+				&& $this->is_major_version_change()
579
+			)
580
+		) {
581
+			add_action('AHEE__EE_System__initialize_last', array($this, 'redirect_to_about_ee'), 9);
582
+		}
583
+	}
584
+
585
+
586
+	/**
587
+	 * Initializes the db for all registered addons
588
+	 *
589
+	 * @throws EE_Error
590
+	 */
591
+	public function initialize_addons()
592
+	{
593
+		// foreach registered addon, make sure its db is up-to-date too
594
+		foreach ($this->registry->addons as $addon) {
595
+			if ($addon instanceof EE_Addon) {
596
+				$addon->initialize_db_if_no_migrations_required();
597
+			}
598
+		}
599
+	}
600
+
601
+
602
+	/**
603
+	 * Adds the current code version to the saved wp option which stores a list of all ee versions ever installed.
604
+	 *
605
+	 * @param    array  $version_history
606
+	 * @param    string $current_version_to_add version to be added to the version history
607
+	 * @return    boolean success as to whether or not this option was changed
608
+	 */
609
+	public function update_list_of_installed_versions($version_history = null, $current_version_to_add = null)
610
+	{
611
+		if (! $version_history) {
612
+			$version_history = $this->fix_espresso_db_upgrade_option($version_history);
613
+		}
614
+		if ($current_version_to_add === null) {
615
+			$current_version_to_add = espresso_version();
616
+		}
617
+		$version_history[ $current_version_to_add ][] = date('Y-m-d H:i:s', time());
618
+		// re-save
619
+		return update_option('espresso_db_update', $version_history);
620
+	}
621
+
622
+
623
+	/**
624
+	 * Detects if the current version indicated in the has existed in the list of
625
+	 * previously-installed versions of EE (espresso_db_update). Does NOT modify it (ie, no side-effect)
626
+	 *
627
+	 * @param array $espresso_db_update array from the wp option stored under the name 'espresso_db_update'.
628
+	 *                                  If not supplied, fetches it from the options table.
629
+	 *                                  Also, caches its result so later parts of the code can also know whether
630
+	 *                                  there's been an update or not. This way we can add the current version to
631
+	 *                                  espresso_db_update, but still know if this is a new install or not
632
+	 * @return int one of the constants on EE_System::req_type_
633
+	 */
634
+	public function detect_req_type($espresso_db_update = null)
635
+	{
636
+		if ($this->_req_type === null) {
637
+			$espresso_db_update = ! empty($espresso_db_update)
638
+				? $espresso_db_update
639
+				: $this->fix_espresso_db_upgrade_option();
640
+			$this->_req_type = EE_System::detect_req_type_given_activation_history(
641
+				$espresso_db_update,
642
+				'ee_espresso_activation',
643
+				espresso_version()
644
+			);
645
+			$this->_major_version_change = $this->_detect_major_version_change($espresso_db_update);
646
+			$this->request->setIsActivation($this->_req_type !== EE_System::req_type_normal);
647
+		}
648
+		return $this->_req_type;
649
+	}
650
+
651
+
652
+	/**
653
+	 * Returns whether or not there was a non-micro version change (ie, change in either
654
+	 * the first or second number in the version. Eg 4.9.0.rc.001 to 4.10.0.rc.000,
655
+	 * but not 4.9.0.rc.0001 to 4.9.1.rc.0001
656
+	 *
657
+	 * @param $activation_history
658
+	 * @return bool
659
+	 */
660
+	private function _detect_major_version_change($activation_history)
661
+	{
662
+		$previous_version = EE_System::_get_most_recently_active_version_from_activation_history($activation_history);
663
+		$previous_version_parts = explode('.', $previous_version);
664
+		$current_version_parts = explode('.', espresso_version());
665
+		return isset($previous_version_parts[0], $previous_version_parts[1], $current_version_parts[0], $current_version_parts[1])
666
+			   && ($previous_version_parts[0] !== $current_version_parts[0]
667
+				   || $previous_version_parts[1] !== $current_version_parts[1]
668
+			   );
669
+	}
670
+
671
+
672
+	/**
673
+	 * Returns true if either the major or minor version of EE changed during this request.
674
+	 * 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
675
+	 *
676
+	 * @return bool
677
+	 */
678
+	public function is_major_version_change()
679
+	{
680
+		return $this->_major_version_change;
681
+	}
682
+
683
+
684
+	/**
685
+	 * Determines the request type for any ee addon, given three piece of info: the current array of activation
686
+	 * histories (for core that' 'espresso_db_update' wp option); the name of the WordPress option which is temporarily
687
+	 * set upon activation of the plugin (for core it's 'ee_espresso_activation'); and the version that this plugin was
688
+	 * just activated to (for core that will always be espresso_version())
689
+	 *
690
+	 * @param array  $activation_history_for_addon     the option's value which stores the activation history for this
691
+	 *                                                 ee plugin. for core that's 'espresso_db_update'
692
+	 * @param string $activation_indicator_option_name the name of the WordPress option that is temporarily set to
693
+	 *                                                 indicate that this plugin was just activated
694
+	 * @param string $version_to_upgrade_to            the version that was just upgraded to (for core that will be
695
+	 *                                                 espresso_version())
696
+	 * @return int one of the constants on EE_System::req_type_*
697
+	 */
698
+	public static function detect_req_type_given_activation_history(
699
+		$activation_history_for_addon,
700
+		$activation_indicator_option_name,
701
+		$version_to_upgrade_to
702
+	) {
703
+		$version_is_higher = self::_new_version_is_higher($activation_history_for_addon, $version_to_upgrade_to);
704
+		if ($activation_history_for_addon) {
705
+			// it exists, so this isn't a completely new install
706
+			// check if this version already in that list of previously installed versions
707
+			if (! isset($activation_history_for_addon[ $version_to_upgrade_to ])) {
708
+				// it a version we haven't seen before
709
+				if ($version_is_higher === 1) {
710
+					$req_type = EE_System::req_type_upgrade;
711
+				} else {
712
+					$req_type = EE_System::req_type_downgrade;
713
+				}
714
+				delete_option($activation_indicator_option_name);
715
+			} else {
716
+				// its not an update. maybe a reactivation?
717
+				if (get_option($activation_indicator_option_name, false)) {
718
+					if ($version_is_higher === -1) {
719
+						$req_type = EE_System::req_type_downgrade;
720
+					} elseif ($version_is_higher === 0) {
721
+						// we've seen this version before, but it's an activation. must be a reactivation
722
+						$req_type = EE_System::req_type_reactivation;
723
+					} else {// $version_is_higher === 1
724
+						$req_type = EE_System::req_type_upgrade;
725
+					}
726
+					delete_option($activation_indicator_option_name);
727
+				} else {
728
+					// we've seen this version before and the activation indicate doesn't show it was just activated
729
+					if ($version_is_higher === -1) {
730
+						$req_type = EE_System::req_type_downgrade;
731
+					} elseif ($version_is_higher === 0) {
732
+						// we've seen this version before and it's not an activation. its normal request
733
+						$req_type = EE_System::req_type_normal;
734
+					} else {// $version_is_higher === 1
735
+						$req_type = EE_System::req_type_upgrade;
736
+					}
737
+				}
738
+			}
739
+		} else {
740
+			// brand new install
741
+			$req_type = EE_System::req_type_new_activation;
742
+			delete_option($activation_indicator_option_name);
743
+		}
744
+		return $req_type;
745
+	}
746
+
747
+
748
+	/**
749
+	 * Detects if the $version_to_upgrade_to is higher than the most recent version in
750
+	 * the $activation_history_for_addon
751
+	 *
752
+	 * @param array  $activation_history_for_addon (keys are versions, values are arrays of times activated,
753
+	 *                                             sometimes containing 'unknown-date'
754
+	 * @param string $version_to_upgrade_to        (current version)
755
+	 * @return int results of version_compare( $version_to_upgrade_to, $most_recently_active_version ).
756
+	 *                                             ie, -1 if $version_to_upgrade_to is LOWER (downgrade);
757
+	 *                                             0 if $version_to_upgrade_to MATCHES (reactivation or normal request);
758
+	 *                                             1 if $version_to_upgrade_to is HIGHER (upgrade) ;
759
+	 */
760
+	private static function _new_version_is_higher($activation_history_for_addon, $version_to_upgrade_to)
761
+	{
762
+		// find the most recently-activated version
763
+		$most_recently_active_version =
764
+			EE_System::_get_most_recently_active_version_from_activation_history($activation_history_for_addon);
765
+		return version_compare($version_to_upgrade_to, $most_recently_active_version);
766
+	}
767
+
768
+
769
+	/**
770
+	 * Gets the most recently active version listed in the activation history,
771
+	 * and if none are found (ie, it's a brand new install) returns '0.0.0.dev.000'.
772
+	 *
773
+	 * @param array $activation_history  (keys are versions, values are arrays of times activated,
774
+	 *                                   sometimes containing 'unknown-date'
775
+	 * @return string
776
+	 */
777
+	private static function _get_most_recently_active_version_from_activation_history($activation_history)
778
+	{
779
+		$most_recently_active_version_activation = '1970-01-01 00:00:00';
780
+		$most_recently_active_version = '0.0.0.dev.000';
781
+		if (is_array($activation_history)) {
782
+			foreach ($activation_history as $version => $times_activated) {
783
+				// check there is a record of when this version was activated. Otherwise,
784
+				// mark it as unknown
785
+				if (! $times_activated) {
786
+					$times_activated = array('unknown-date');
787
+				}
788
+				if (is_string($times_activated)) {
789
+					$times_activated = array($times_activated);
790
+				}
791
+				foreach ($times_activated as $an_activation) {
792
+					if ($an_activation !== 'unknown-date'
793
+						&& $an_activation
794
+						   > $most_recently_active_version_activation) {
795
+						$most_recently_active_version = $version;
796
+						$most_recently_active_version_activation = $an_activation === 'unknown-date'
797
+							? '1970-01-01 00:00:00'
798
+							: $an_activation;
799
+					}
800
+				}
801
+			}
802
+		}
803
+		return $most_recently_active_version;
804
+	}
805
+
806
+
807
+	/**
808
+	 * This redirects to the about EE page after activation
809
+	 *
810
+	 * @return void
811
+	 */
812
+	public function redirect_to_about_ee()
813
+	{
814
+		$notices = EE_Error::get_notices(false);
815
+		// if current user is an admin and it's not an ajax or rest request
816
+		if (! isset($notices['errors'])
817
+			&& $this->request->isAdmin()
818
+			&& apply_filters(
819
+				'FHEE__EE_System__redirect_to_about_ee__do_redirect',
820
+				$this->capabilities->current_user_can('manage_options', 'espresso_about_default')
821
+			)
822
+		) {
823
+			$query_params = array('page' => 'espresso_about');
824
+			if (EE_System::instance()->detect_req_type() === EE_System::req_type_new_activation) {
825
+				$query_params['new_activation'] = true;
826
+			}
827
+			if (EE_System::instance()->detect_req_type() === EE_System::req_type_reactivation) {
828
+				$query_params['reactivation'] = true;
829
+			}
830
+			$url = add_query_arg($query_params, admin_url('admin.php'));
831
+			wp_safe_redirect($url);
832
+			exit();
833
+		}
834
+	}
835
+
836
+
837
+	/**
838
+	 * load_core_configuration
839
+	 * this is hooked into 'AHEE__EE_Bootstrap__load_core_configuration'
840
+	 * which runs during the WP 'plugins_loaded' action at priority 5
841
+	 *
842
+	 * @return void
843
+	 * @throws ReflectionException
844
+	 * @throws Exception
845
+	 */
846
+	public function load_core_configuration()
847
+	{
848
+		do_action('AHEE__EE_System__load_core_configuration__begin', $this);
849
+		$this->loader->getShared('EE_Load_Textdomain');
850
+		// load textdomain
851
+		EE_Load_Textdomain::load_textdomain();
852
+		// load caf stuff a chance to play during the activation process too.
853
+		$this->_maybe_brew_regular();
854
+		// load and setup EE_Config and EE_Network_Config
855
+		$config = $this->loader->getShared('EE_Config');
856
+		$this->loader->getShared('EE_Network_Config');
857
+		// setup autoloaders
858
+		// enable logging?
859
+		if ($config->admin->use_remote_logging) {
860
+			$this->loader->getShared('EE_Log');
861
+		}
862
+		// check for activation errors
863
+		$activation_errors = get_option('ee_plugin_activation_errors', false);
864
+		if ($activation_errors) {
865
+			EE_Error::add_error($activation_errors, __FILE__, __FUNCTION__, __LINE__);
866
+			update_option('ee_plugin_activation_errors', false);
867
+		}
868
+		// get model names
869
+		$this->_parse_model_names();
870
+		// configure custom post type definitions
871
+		$this->loader->getShared('EventEspresso\core\domain\entities\custom_post_types\CustomTaxonomyDefinitions');
872
+		$this->loader->getShared('EventEspresso\core\domain\entities\custom_post_types\CustomPostTypeDefinitions');
873
+		do_action('AHEE__EE_System__load_core_configuration__complete', $this);
874
+	}
875
+
876
+
877
+	/**
878
+	 * cycles through all of the models/*.model.php files, and assembles an array of model names
879
+	 *
880
+	 * @return void
881
+	 * @throws ReflectionException
882
+	 */
883
+	private function _parse_model_names()
884
+	{
885
+		// get all the files in the EE_MODELS folder that end in .model.php
886
+		$models = glob(EE_MODELS . '*.model.php');
887
+		$model_names = array();
888
+		$non_abstract_db_models = array();
889
+		foreach ($models as $model) {
890
+			// get model classname
891
+			$classname = EEH_File::get_classname_from_filepath_with_standard_filename($model);
892
+			$short_name = str_replace('EEM_', '', $classname);
893
+			$reflectionClass = new ReflectionClass($classname);
894
+			if ($reflectionClass->isSubclassOf('EEM_Base') && ! $reflectionClass->isAbstract()) {
895
+				$non_abstract_db_models[ $short_name ] = $classname;
896
+			}
897
+			$model_names[ $short_name ] = $classname;
898
+		}
899
+		$this->registry->models = apply_filters('FHEE__EE_System__parse_model_names', $model_names);
900
+		$this->registry->non_abstract_db_models = apply_filters(
901
+			'FHEE__EE_System__parse_implemented_model_names',
902
+			$non_abstract_db_models
903
+		);
904
+	}
905
+
906
+
907
+	/**
908
+	 * The purpose of this method is to simply check for a file named "caffeinated/brewing_regular.php" for any hooks
909
+	 * that need to be setup before our EE_System launches.
910
+	 *
911
+	 * @return void
912
+	 * @throws DomainException
913
+	 * @throws InvalidArgumentException
914
+	 * @throws InvalidDataTypeException
915
+	 * @throws InvalidInterfaceException
916
+	 * @throws InvalidClassException
917
+	 * @throws InvalidFilePathException
918
+	 */
919
+	private function _maybe_brew_regular()
920
+	{
921
+		/** @var Domain $domain */
922
+		$domain = DomainFactory::getShared(
923
+			new FullyQualifiedName(
924
+				'EventEspresso\core\domain\Domain'
925
+			),
926
+			array(
927
+				new FilePath(EVENT_ESPRESSO_MAIN_FILE),
928
+				Version::fromString(espresso_version()),
929
+			)
930
+		);
931
+		if ($domain->isCaffeinated()) {
932
+			require_once EE_CAFF_PATH . 'brewing_regular.php';
933
+		}
934
+	}
935
+
936
+
937
+	/**
938
+	 * @since 4.9.71.p
939
+	 * @throws Exception
940
+	 */
941
+	public function loadRouteMatchSpecifications()
942
+	{
943
+		try {
944
+			$this->loader->getShared(
945
+				'EventEspresso\core\services\route_match\RouteMatchSpecificationManager'
946
+			);
947
+		} catch (Exception $exception) {
948
+			new ExceptionStackTraceDisplay($exception);
949
+		}
950
+		do_action('AHEE__EE_System__loadRouteMatchSpecifications');
951
+	}
952
+
953
+
954
+	/**
955
+	 * register_shortcodes_modules_and_widgets
956
+	 * generate lists of shortcodes and modules, then verify paths and classes
957
+	 * This is hooked into 'AHEE__EE_Bootstrap__register_shortcodes_modules_and_widgets'
958
+	 * which runs during the WP 'plugins_loaded' action at priority 7
959
+	 *
960
+	 * @access public
961
+	 * @return void
962
+	 * @throws Exception
963
+	 */
964
+	public function register_shortcodes_modules_and_widgets()
965
+	{
966
+		if ($this->request->isFrontend() || $this->request->isIframe() || $this->request->isAjax()) {
967
+			try {
968
+				// load, register, and add shortcodes the new way
969
+				$this->loader->getShared(
970
+					'EventEspresso\core\services\shortcodes\ShortcodesManager',
971
+					array(
972
+						// and the old way, but we'll put it under control of the new system
973
+						EE_Config::getLegacyShortcodesManager(),
974
+					)
975
+				);
976
+			} catch (Exception $exception) {
977
+				new ExceptionStackTraceDisplay($exception);
978
+			}
979
+		}
980
+		do_action('AHEE__EE_System__register_shortcodes_modules_and_widgets');
981
+		// check for addons using old hook point
982
+		if (has_action('AHEE__EE_System__register_shortcodes_modules_and_addons')) {
983
+			$this->_incompatible_addon_error();
984
+		}
985
+	}
986
+
987
+
988
+	/**
989
+	 * _incompatible_addon_error
990
+	 *
991
+	 * @access public
992
+	 * @return void
993
+	 */
994
+	private function _incompatible_addon_error()
995
+	{
996
+		// get array of classes hooking into here
997
+		$class_names = EEH_Class_Tools::get_class_names_for_all_callbacks_on_hook(
998
+			'AHEE__EE_System__register_shortcodes_modules_and_addons'
999
+		);
1000
+		if (! empty($class_names)) {
1001
+			$msg = __(
1002
+				'The following plugins, addons, or modules appear to be incompatible with this version of Event Espresso and were automatically deactivated to avoid fatal errors:',
1003
+				'event_espresso'
1004
+			);
1005
+			$msg .= '<ul>';
1006
+			foreach ($class_names as $class_name) {
1007
+				$msg .= '<li><b>Event Espresso - '
1008
+						. str_replace(
1009
+							array('EE_', 'EEM_', 'EED_', 'EES_', 'EEW_'),
1010
+							'',
1011
+							$class_name
1012
+						) . '</b></li>';
1013
+			}
1014
+			$msg .= '</ul>';
1015
+			$msg .= __(
1016
+				'Compatibility issues can be avoided and/or resolved by keeping addons and plugins updated to the latest version.',
1017
+				'event_espresso'
1018
+			);
1019
+			// save list of incompatible addons to wp-options for later use
1020
+			add_option('ee_incompatible_addons', $class_names, '', 'no');
1021
+			if (is_admin()) {
1022
+				EE_Error::add_error($msg, __FILE__, __FUNCTION__, __LINE__);
1023
+			}
1024
+		}
1025
+	}
1026
+
1027
+
1028
+	/**
1029
+	 * brew_espresso
1030
+	 * begins the process of setting hooks for initializing EE in the correct order
1031
+	 * This is happening on the 'AHEE__EE_Bootstrap__brew_espresso' hook point
1032
+	 * which runs during the WP 'plugins_loaded' action at priority 9
1033
+	 *
1034
+	 * @return void
1035
+	 */
1036
+	public function brew_espresso()
1037
+	{
1038
+		do_action('AHEE__EE_System__brew_espresso__begin', $this);
1039
+		// load some final core systems
1040
+		add_action('init', array($this, 'set_hooks_for_core'), 1);
1041
+		add_action('init', array($this, 'perform_activations_upgrades_and_migrations'), 3);
1042
+		add_action('init', array($this, 'load_CPTs_and_session'), 5);
1043
+		add_action('init', array($this, 'load_controllers'), 7);
1044
+		add_action('init', array($this, 'core_loaded_and_ready'), 9);
1045
+		add_action('init', array($this, 'initialize'), 10);
1046
+		add_action('init', array($this, 'initialize_last'), 100);
1047
+		if (is_admin() && apply_filters('FHEE__EE_System__brew_espresso__load_pue', true)) {
1048
+			// pew pew pew
1049
+			$this->loader->getShared('EventEspresso\core\services\licensing\LicenseService');
1050
+			do_action('AHEE__EE_System__brew_espresso__after_pue_init');
1051
+		}
1052
+		do_action('AHEE__EE_System__brew_espresso__complete', $this);
1053
+	}
1054
+
1055
+
1056
+	/**
1057
+	 *    set_hooks_for_core
1058
+	 *
1059
+	 * @access public
1060
+	 * @return    void
1061
+	 * @throws EE_Error
1062
+	 */
1063
+	public function set_hooks_for_core()
1064
+	{
1065
+		$this->_deactivate_incompatible_addons();
1066
+		do_action('AHEE__EE_System__set_hooks_for_core');
1067
+		$this->loader->getShared('EventEspresso\core\domain\values\session\SessionLifespan');
1068
+		// caps need to be initialized on every request so that capability maps are set.
1069
+		// @see https://events.codebasehq.com/projects/event-espresso/tickets/8674
1070
+		$this->registry->CAP->init_caps();
1071
+	}
1072
+
1073
+
1074
+	/**
1075
+	 * Using the information gathered in EE_System::_incompatible_addon_error,
1076
+	 * deactivates any addons considered incompatible with the current version of EE
1077
+	 */
1078
+	private function _deactivate_incompatible_addons()
1079
+	{
1080
+		$incompatible_addons = get_option('ee_incompatible_addons', array());
1081
+		if (! empty($incompatible_addons)) {
1082
+			$active_plugins = get_option('active_plugins', array());
1083
+			foreach ($active_plugins as $active_plugin) {
1084
+				foreach ($incompatible_addons as $incompatible_addon) {
1085
+					if (strpos($active_plugin, $incompatible_addon) !== false) {
1086
+						unset($_GET['activate']);
1087
+						espresso_deactivate_plugin($active_plugin);
1088
+					}
1089
+				}
1090
+			}
1091
+		}
1092
+	}
1093
+
1094
+
1095
+	/**
1096
+	 *    perform_activations_upgrades_and_migrations
1097
+	 *
1098
+	 * @access public
1099
+	 * @return    void
1100
+	 */
1101
+	public function perform_activations_upgrades_and_migrations()
1102
+	{
1103
+		do_action('AHEE__EE_System__perform_activations_upgrades_and_migrations');
1104
+	}
1105
+
1106
+
1107
+	/**
1108
+	 * @return void
1109
+	 * @throws DomainException
1110
+	 */
1111
+	public function load_CPTs_and_session()
1112
+	{
1113
+		do_action('AHEE__EE_System__load_CPTs_and_session__start');
1114
+		/** @var EventEspresso\core\domain\services\custom_post_types\RegisterCustomTaxonomies $register_custom_taxonomies */
1115
+		$register_custom_taxonomies = $this->loader->getShared(
1116
+			'EventEspresso\core\domain\services\custom_post_types\RegisterCustomTaxonomies'
1117
+		);
1118
+		$register_custom_taxonomies->registerCustomTaxonomies();
1119
+		/** @var EventEspresso\core\domain\services\custom_post_types\RegisterCustomPostTypes $register_custom_post_types */
1120
+		$register_custom_post_types = $this->loader->getShared(
1121
+			'EventEspresso\core\domain\services\custom_post_types\RegisterCustomPostTypes'
1122
+		);
1123
+		$register_custom_post_types->registerCustomPostTypes();
1124
+		/** @var EventEspresso\core\domain\services\custom_post_types\RegisterCustomTaxonomyTerms $register_custom_taxonomy_terms */
1125
+		$register_custom_taxonomy_terms = $this->loader->getShared(
1126
+			'EventEspresso\core\domain\services\custom_post_types\RegisterCustomTaxonomyTerms'
1127
+		);
1128
+		$register_custom_taxonomy_terms->registerCustomTaxonomyTerms();
1129
+		// load legacy Custom Post Types and Taxonomies
1130
+		$this->loader->getShared('EE_Register_CPTs');
1131
+		do_action('AHEE__EE_System__load_CPTs_and_session__complete');
1132
+	}
1133
+
1134
+
1135
+	/**
1136
+	 * load_controllers
1137
+	 * this is the best place to load any additional controllers that needs access to EE core.
1138
+	 * it is expected that all basic core EE systems, that are not dependant on the current request are loaded at this
1139
+	 * time
1140
+	 *
1141
+	 * @access public
1142
+	 * @return void
1143
+	 */
1144
+	public function load_controllers()
1145
+	{
1146
+		do_action('AHEE__EE_System__load_controllers__start');
1147
+		// let's get it started
1148
+		if (! $this->maintenance_mode->level()
1149
+			&& ($this->request->isFrontend() || $this->request->isFrontAjax())
1150
+		) {
1151
+			do_action('AHEE__EE_System__load_controllers__load_front_controllers');
1152
+			$this->loader->getShared('EE_Front_Controller');
1153
+		} elseif ($this->request->isAdmin() || $this->request->isAdminAjax()) {
1154
+			do_action('AHEE__EE_System__load_controllers__load_admin_controllers');
1155
+			$this->loader->getShared('EE_Admin');
1156
+		} elseif ($this->request->isWordPressHeartbeat()) {
1157
+			$this->loader->getShared('EventEspresso\core\domain\services\admin\ajax\WordpressHeartbeat');
1158
+		}
1159
+		do_action('AHEE__EE_System__load_controllers__complete');
1160
+	}
1161
+
1162
+
1163
+	/**
1164
+	 * core_loaded_and_ready
1165
+	 * all of the basic EE core should be loaded at this point and available regardless of M-Mode
1166
+	 *
1167
+	 * @access public
1168
+	 * @return void
1169
+	 * @throws Exception
1170
+	 */
1171
+	public function core_loaded_and_ready()
1172
+	{
1173
+		if ($this->request->isAdmin()
1174
+			|| $this->request->isFrontend()
1175
+			|| $this->request->isIframe()
1176
+			|| $this->request->isWordPressApi()
1177
+		) {
1178
+			try {
1179
+				$this->loader->getShared('EventEspresso\core\services\assets\Registry');
1180
+				$this->loader->getShared('EventEspresso\core\domain\services\assets\CoreAssetManager');
1181
+				if ($this->canLoadBlocks()) {
1182
+					$this->loader->getShared(
1183
+						'EventEspresso\core\services\editor\BlockRegistrationManager'
1184
+					);
1185
+				}
1186
+			} catch (Exception $exception) {
1187
+				new ExceptionStackTraceDisplay($exception);
1188
+			}
1189
+		}
1190
+		if ($this->request->isAdmin()
1191
+			|| $this->request->isEeAjax()
1192
+			|| $this->request->isFrontend()
1193
+		) {
1194
+			$this->loader->getShared('EE_Session');
1195
+		}
1196
+		// integrate WP_Query with the EE models
1197
+		$this->loader->getShared('EE_CPT_Strategy');
1198
+		do_action('AHEE__EE_System__core_loaded_and_ready');
1199
+		// always load template tags, because it's faster than checking if it's a front-end request, and many page
1200
+		// builders require these even on the front-end
1201
+		require_once EE_PUBLIC . 'template_tags.php';
1202
+		// load handler for GraphQL requests
1203
+		if (class_exists('WPGraphQL') && $this->request->isGQL()) {
1204
+			try {
1205
+				$graphQL_manager = $this->loader->getShared(
1206
+					'EventEspresso\core\services\graphql\GraphQLManager'
1207
+				);
1208
+				$graphQL_manager->init();
1209
+			} catch (Exception $exception) {
1210
+				new ExceptionStackTraceDisplay($exception);
1211
+			}
1212
+		}
1213
+		do_action('AHEE__EE_System__set_hooks_for_shortcodes_modules_and_addons');
1214
+	}
1215
+
1216
+
1217
+	/**
1218
+	 * initialize
1219
+	 * this is the best place to begin initializing client code
1220
+	 *
1221
+	 * @access public
1222
+	 * @return void
1223
+	 */
1224
+	public function initialize()
1225
+	{
1226
+		do_action('AHEE__EE_System__initialize');
1227
+	}
1228
+
1229
+
1230
+	/**
1231
+	 * initialize_last
1232
+	 * this is run really late during the WP init hook point, and ensures that mostly everything else that needs to
1233
+	 * initialize has done so
1234
+	 *
1235
+	 * @access public
1236
+	 * @return void
1237
+	 */
1238
+	public function initialize_last()
1239
+	{
1240
+		do_action('AHEE__EE_System__initialize_last');
1241
+		/** @var EventEspresso\core\domain\services\custom_post_types\RewriteRules $rewrite_rules */
1242
+		$rewrite_rules = $this->loader->getShared(
1243
+			'EventEspresso\core\domain\services\custom_post_types\RewriteRules'
1244
+		);
1245
+		$rewrite_rules->flushRewriteRules();
1246
+		add_action('admin_bar_init', array($this, 'addEspressoToolbar'));
1247
+		if (($this->request->isAjax() || $this->request->isAdmin())
1248
+			&& $this->maintenance_mode->models_can_query()) {
1249
+			$this->loader->getShared('EventEspresso\core\services\privacy\export\PersonalDataExporterManager');
1250
+			$this->loader->getShared('EventEspresso\core\services\privacy\erasure\PersonalDataEraserManager');
1251
+		}
1252
+	}
1253
+
1254
+
1255
+	/**
1256
+	 * @return void
1257
+	 * @throws EE_Error
1258
+	 */
1259
+	public function addEspressoToolbar()
1260
+	{
1261
+		$this->loader->getShared(
1262
+			'EventEspresso\core\domain\services\admin\AdminToolBar',
1263
+			array($this->registry->CAP)
1264
+		);
1265
+	}
1266
+
1267
+
1268
+	/**
1269
+	 * do_not_cache
1270
+	 * sets no cache headers and defines no cache constants for WP plugins
1271
+	 *
1272
+	 * @access public
1273
+	 * @return void
1274
+	 */
1275
+	public static function do_not_cache()
1276
+	{
1277
+		// set no cache constants
1278
+		if (! defined('DONOTCACHEPAGE')) {
1279
+			define('DONOTCACHEPAGE', true);
1280
+		}
1281
+		if (! defined('DONOTCACHCEOBJECT')) {
1282
+			define('DONOTCACHCEOBJECT', true);
1283
+		}
1284
+		if (! defined('DONOTCACHEDB')) {
1285
+			define('DONOTCACHEDB', true);
1286
+		}
1287
+		// add no cache headers
1288
+		add_action('send_headers', array('EE_System', 'nocache_headers'), 10);
1289
+		// plus a little extra for nginx and Google Chrome
1290
+		add_filter('nocache_headers', array('EE_System', 'extra_nocache_headers'), 10, 1);
1291
+		// prevent browsers from prefetching of the rel='next' link, because it may contain content that interferes with the registration process
1292
+		remove_action('wp_head', 'adjacent_posts_rel_link_wp_head');
1293
+	}
1294
+
1295
+
1296
+	/**
1297
+	 *    extra_nocache_headers
1298
+	 *
1299
+	 * @access    public
1300
+	 * @param $headers
1301
+	 * @return    array
1302
+	 */
1303
+	public static function extra_nocache_headers($headers)
1304
+	{
1305
+		// for NGINX
1306
+		$headers['X-Accel-Expires'] = 0;
1307
+		// plus extra for Google Chrome since it doesn't seem to respect "no-cache", but WILL respect "no-store"
1308
+		$headers['Cache-Control'] = 'no-store, no-cache, must-revalidate, max-age=0';
1309
+		return $headers;
1310
+	}
1311
+
1312
+
1313
+	/**
1314
+	 *    nocache_headers
1315
+	 *
1316
+	 * @access    public
1317
+	 * @return    void
1318
+	 */
1319
+	public static function nocache_headers()
1320
+	{
1321
+		nocache_headers();
1322
+	}
1323
+
1324
+
1325
+	/**
1326
+	 * simply hooks into "wp_list_pages_exclude" filter (for wp_list_pages method) and makes sure EE critical pages are
1327
+	 * never returned with the function.
1328
+	 *
1329
+	 * @param  array $exclude_array any existing pages being excluded are in this array.
1330
+	 * @return array
1331
+	 */
1332
+	public function remove_pages_from_wp_list_pages($exclude_array)
1333
+	{
1334
+		return array_merge($exclude_array, $this->registry->CFG->core->get_critical_pages_array());
1335
+	}
1336
+
1337
+
1338
+	/**
1339
+	 * Return whether blocks can be registered/loaded or not.
1340
+	 * @return bool
1341
+	 */
1342
+	private function canLoadBlocks()
1343
+	{
1344
+		return apply_filters('FHEE__EE_System__canLoadBlocks', true)
1345
+			   && function_exists('register_block_type')
1346
+			   // don't load blocks if in the Divi page builder editor context
1347
+			   // @see https://github.com/eventespresso/event-espresso-core/issues/814
1348
+			   && ! $this->request->getRequestParam('et_fb', false);
1349
+	}
1350 1350
 }
Please login to merge, or discard this patch.
core/services/converters/json/ModelObjectToJsonConverterInterface.php 1 patch
Indentation   +36 added lines, -36 removed lines patch added patch discarded remove patch
@@ -15,50 +15,50 @@
 block discarded – undo
15 15
 interface ModelObjectToJsonConverterInterface
16 16
 {
17 17
 
18
-    /**
19
-     * @param array $entities
20
-     * @return array
21
-     * @since $VID:$
22
-     */
23
-    public function convertAndEncodeArrayOf(array $entities);
18
+	/**
19
+	 * @param array $entities
20
+	 * @return array
21
+	 * @since $VID:$
22
+	 */
23
+	public function convertAndEncodeArrayOf(array $entities);
24 24
 
25 25
 
26
-    /**
27
-     * @param $entity
28
-     * @return false|string
29
-     * @since $VID:$
30
-     */
31
-    public function convertAndEncode($entity);
26
+	/**
27
+	 * @param $entity
28
+	 * @return false|string
29
+	 * @since $VID:$
30
+	 */
31
+	public function convertAndEncode($entity);
32 32
 
33 33
 
34
-    /**
35
-     * @param array $entities
36
-     * @return array
37
-     * @since $VID:$
38
-     */
39
-    public function convertArrayOf(array $entities);
34
+	/**
35
+	 * @param array $entities
36
+	 * @return array
37
+	 * @since $VID:$
38
+	 */
39
+	public function convertArrayOf(array $entities);
40 40
 
41 41
 
42
-    /**
43
-     * @param $entity
44
-     * @return array
45
-     * @since $VID:$
46
-     */
47
-    public function convert($entity);
42
+	/**
43
+	 * @param $entity
44
+	 * @return array
45
+	 * @since $VID:$
46
+	 */
47
+	public function convert($entity);
48 48
 
49 49
 
50
-    /**
51
-     * @param array $entities
52
-     * @return array
53
-     * @since $VID:$
54
-     */
55
-    public function encodeArrayOf(array $entities);
50
+	/**
51
+	 * @param array $entities
52
+	 * @return array
53
+	 * @since $VID:$
54
+	 */
55
+	public function encodeArrayOf(array $entities);
56 56
 
57 57
 
58
-    /**
59
-     * @param array $entity_array
60
-     * @return false|string
61
-     * @since $VID:$
62
-     */
63
-    public function encode(array $entity_array);
58
+	/**
59
+	 * @param array $entity_array
60
+	 * @return false|string
61
+	 * @since $VID:$
62
+	 */
63
+	public function encode(array $entity_array);
64 64
 }
65 65
\ No newline at end of file
Please login to merge, or discard this patch.
core/domain/services/converters/json/DatetimeToJson.php 2 patches
Indentation   +111 added lines, -111 removed lines patch added patch discarded remove patch
@@ -22,125 +22,125 @@
 block discarded – undo
22 22
 class DatetimeToJson implements ModelObjectToJsonConverterInterface
23 23
 {
24 24
 
25
-    /**
26
-     * @param EE_Datetime[] $datetimes
27
-     * @return array
28
-     * @throws EE_Error
29
-     * @throws InvalidArgumentException
30
-     * @throws InvalidDataTypeException
31
-     * @throws InvalidInterfaceException
32
-     * @throws ReflectionException
33
-     * @since $VID:$
34
-     */
35
-    public function convertAndEncodeArrayOf(array $datetimes)
36
-    {
37
-        $jsonDates = [];
38
-        foreach ($datetimes as $datetime) {
39
-            if ($datetime instanceof EE_Datetime) {
40
-                $jsonDates[ $datetime->ID() ] = $this->convertAndEncode($datetime);
41
-            }
42
-        }
43
-        return $jsonDates;
44
-    }
25
+	/**
26
+	 * @param EE_Datetime[] $datetimes
27
+	 * @return array
28
+	 * @throws EE_Error
29
+	 * @throws InvalidArgumentException
30
+	 * @throws InvalidDataTypeException
31
+	 * @throws InvalidInterfaceException
32
+	 * @throws ReflectionException
33
+	 * @since $VID:$
34
+	 */
35
+	public function convertAndEncodeArrayOf(array $datetimes)
36
+	{
37
+		$jsonDates = [];
38
+		foreach ($datetimes as $datetime) {
39
+			if ($datetime instanceof EE_Datetime) {
40
+				$jsonDates[ $datetime->ID() ] = $this->convertAndEncode($datetime);
41
+			}
42
+		}
43
+		return $jsonDates;
44
+	}
45 45
 
46 46
 
47
-    /**
48
-     * @param EE_Datetime $datetime
49
-     * @return false|string
50
-     * @throws EE_Error
51
-     * @throws InvalidArgumentException
52
-     * @throws InvalidDataTypeException
53
-     * @throws InvalidInterfaceException
54
-     * @throws ReflectionException
55
-     * @since $VID:$
56
-     */
57
-    public function convertAndEncode($datetime)
58
-    {
59
-        return $datetime instanceof EE_Datetime ? $this->encode($this->convert($datetime)) : false;
60
-    }
47
+	/**
48
+	 * @param EE_Datetime $datetime
49
+	 * @return false|string
50
+	 * @throws EE_Error
51
+	 * @throws InvalidArgumentException
52
+	 * @throws InvalidDataTypeException
53
+	 * @throws InvalidInterfaceException
54
+	 * @throws ReflectionException
55
+	 * @since $VID:$
56
+	 */
57
+	public function convertAndEncode($datetime)
58
+	{
59
+		return $datetime instanceof EE_Datetime ? $this->encode($this->convert($datetime)) : false;
60
+	}
61 61
 
62 62
 
63
-    /**
64
-     * @param EE_Datetime[] $datetimes
65
-     * @return array
66
-     * @throws EE_Error
67
-     * @throws InvalidArgumentException
68
-     * @throws InvalidDataTypeException
69
-     * @throws InvalidInterfaceException
70
-     * @throws ReflectionException
71
-     * @since $VID:$
72
-     */
73
-    public function convertArrayOf(array $datetimes)
74
-    {
75
-        $arrayOfDates = [];
76
-        foreach ($datetimes as $datetime) {
77
-            if ($datetime instanceof EE_Datetime) {
78
-                $arrayOfDates[ $datetime->ID() ] = $this->convert($datetime);
79
-            }
80
-        }
81
-        return $arrayOfDates;
82
-    }
63
+	/**
64
+	 * @param EE_Datetime[] $datetimes
65
+	 * @return array
66
+	 * @throws EE_Error
67
+	 * @throws InvalidArgumentException
68
+	 * @throws InvalidDataTypeException
69
+	 * @throws InvalidInterfaceException
70
+	 * @throws ReflectionException
71
+	 * @since $VID:$
72
+	 */
73
+	public function convertArrayOf(array $datetimes)
74
+	{
75
+		$arrayOfDates = [];
76
+		foreach ($datetimes as $datetime) {
77
+			if ($datetime instanceof EE_Datetime) {
78
+				$arrayOfDates[ $datetime->ID() ] = $this->convert($datetime);
79
+			}
80
+		}
81
+		return $arrayOfDates;
82
+	}
83 83
 
84 84
 
85
-    /**
86
-     * @param EE_Datetime $datetime
87
-     * @return array
88
-     * @throws EE_Error
89
-     * @throws InvalidDataTypeException
90
-     * @throws InvalidInterfaceException
91
-     * @throws InvalidArgumentException
92
-     * @throws ReflectionException
93
-     * @since $VID:$
94
-     */
95
-    public function convert($datetime)
96
-    {
97
-        return $datetime instanceof EE_Datetime ? [
98
-            'DTT_ID'          => $datetime->ID(),
99
-            'EVT_ID'          => $datetime->event() instanceof EE_Event ? $datetime->event()->ID() : 0,
100
-            'DTT_name'        => $datetime->name(),
101
-            'DTT_description' => $datetime->description(),
102
-            'DTT_EVT_start'   => $datetime->start_date(DATE_ATOM),
103
-            'DTT_EVT_end'     => $datetime->end_date(DATE_ATOM),
104
-            'DTT_sold'        => $datetime->sold(),
105
-            'DTT_reserved'    => $datetime->reserved(),
106
-            'DTT_reg_limit'   => $datetime->reg_limit() === INF ? -1 : $datetime->reg_limit(),
107
-            'DTT_is_primary'  => $datetime->get_active_status(),
108
-            'DTT_order'       => $datetime->order(),
109
-            'DTT_parent'      => $datetime->parent(),
110
-            'DTT_deleted'     => $datetime->get('DTT_deleted'),
111
-        ] : [];
112
-    }
85
+	/**
86
+	 * @param EE_Datetime $datetime
87
+	 * @return array
88
+	 * @throws EE_Error
89
+	 * @throws InvalidDataTypeException
90
+	 * @throws InvalidInterfaceException
91
+	 * @throws InvalidArgumentException
92
+	 * @throws ReflectionException
93
+	 * @since $VID:$
94
+	 */
95
+	public function convert($datetime)
96
+	{
97
+		return $datetime instanceof EE_Datetime ? [
98
+			'DTT_ID'          => $datetime->ID(),
99
+			'EVT_ID'          => $datetime->event() instanceof EE_Event ? $datetime->event()->ID() : 0,
100
+			'DTT_name'        => $datetime->name(),
101
+			'DTT_description' => $datetime->description(),
102
+			'DTT_EVT_start'   => $datetime->start_date(DATE_ATOM),
103
+			'DTT_EVT_end'     => $datetime->end_date(DATE_ATOM),
104
+			'DTT_sold'        => $datetime->sold(),
105
+			'DTT_reserved'    => $datetime->reserved(),
106
+			'DTT_reg_limit'   => $datetime->reg_limit() === INF ? -1 : $datetime->reg_limit(),
107
+			'DTT_is_primary'  => $datetime->get_active_status(),
108
+			'DTT_order'       => $datetime->order(),
109
+			'DTT_parent'      => $datetime->parent(),
110
+			'DTT_deleted'     => $datetime->get('DTT_deleted'),
111
+		] : [];
112
+	}
113 113
 
114 114
 
115
-    /**
116
-     * @param EE_Datetime[] $datetimes
117
-     * @return array
118
-     * @throws EE_Error
119
-     * @throws InvalidArgumentException
120
-     * @throws InvalidDataTypeException
121
-     * @throws InvalidInterfaceException
122
-     * @throws ReflectionException
123
-     * @since $VID:$
124
-     */
125
-    public function encodeArrayOf(array $datetimes)
126
-    {
127
-        $jsonDates = [];
128
-        foreach ($datetimes as $datetime) {
129
-            if ($datetime instanceof EE_Datetime) {
130
-                $jsonDates[ $datetime->ID() ] = $this->encode($datetime);
131
-            }
132
-        }
133
-        return $jsonDates;
134
-    }
115
+	/**
116
+	 * @param EE_Datetime[] $datetimes
117
+	 * @return array
118
+	 * @throws EE_Error
119
+	 * @throws InvalidArgumentException
120
+	 * @throws InvalidDataTypeException
121
+	 * @throws InvalidInterfaceException
122
+	 * @throws ReflectionException
123
+	 * @since $VID:$
124
+	 */
125
+	public function encodeArrayOf(array $datetimes)
126
+	{
127
+		$jsonDates = [];
128
+		foreach ($datetimes as $datetime) {
129
+			if ($datetime instanceof EE_Datetime) {
130
+				$jsonDates[ $datetime->ID() ] = $this->encode($datetime);
131
+			}
132
+		}
133
+		return $jsonDates;
134
+	}
135 135
 
136 136
 
137
-    /**
138
-     * @param array $datetime_array
139
-     * @return false|string
140
-     * @since $VID:$
141
-     */
142
-    public function encode(array $datetime_array)
143
-    {
144
-        return wp_json_encode($datetime_array);
145
-    }
137
+	/**
138
+	 * @param array $datetime_array
139
+	 * @return false|string
140
+	 * @since $VID:$
141
+	 */
142
+	public function encode(array $datetime_array)
143
+	{
144
+		return wp_json_encode($datetime_array);
145
+	}
146 146
 }
147 147
\ No newline at end of file
Please login to merge, or discard this patch.
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -37,7 +37,7 @@  discard block
 block discarded – undo
37 37
         $jsonDates = [];
38 38
         foreach ($datetimes as $datetime) {
39 39
             if ($datetime instanceof EE_Datetime) {
40
-                $jsonDates[ $datetime->ID() ] = $this->convertAndEncode($datetime);
40
+                $jsonDates[$datetime->ID()] = $this->convertAndEncode($datetime);
41 41
             }
42 42
         }
43 43
         return $jsonDates;
@@ -75,7 +75,7 @@  discard block
 block discarded – undo
75 75
         $arrayOfDates = [];
76 76
         foreach ($datetimes as $datetime) {
77 77
             if ($datetime instanceof EE_Datetime) {
78
-                $arrayOfDates[ $datetime->ID() ] = $this->convert($datetime);
78
+                $arrayOfDates[$datetime->ID()] = $this->convert($datetime);
79 79
             }
80 80
         }
81 81
         return $arrayOfDates;
@@ -127,7 +127,7 @@  discard block
 block discarded – undo
127 127
         $jsonDates = [];
128 128
         foreach ($datetimes as $datetime) {
129 129
             if ($datetime instanceof EE_Datetime) {
130
-                $jsonDates[ $datetime->ID() ] = $this->encode($datetime);
130
+                $jsonDates[$datetime->ID()] = $this->encode($datetime);
131 131
             }
132 132
         }
133 133
         return $jsonDates;
Please login to merge, or discard this patch.