Completed
Branch FET/account-for-password-prote... (09e244)
by
unknown
44:22 queued 35:05
created
core/db_models/EEM_Base.model.php 3 patches
Doc Comments   +16 added lines, -14 removed lines patch added patch discarded remove patch
@@ -891,7 +891,7 @@  discard block
 block discarded – undo
891 891
      *  on this model (or follows the _model_chain_to_wp_user and uses that model's
892 892
      * foreign key to the WP_User table)
893 893
      *
894
-     * @return string|boolean string on success, boolean false when there is no
894
+     * @return string|false string on success, boolean false when there is no
895 895
      * foreign key to the WP_User table
896 896
      */
897 897
     public function wp_user_field_name()
@@ -1022,7 +1022,7 @@  discard block
 block discarded – undo
1022 1022
      *
1023 1023
      * @param array  $query_params      @see https://github.com/eventespresso/event-espresso-core/tree/master/docs/G--Model-System/model-query-params.md
1024 1024
      * @param string $output            ARRAY_A, OBJECT_K, etc. Just like
1025
-     * @param mixed  $columns_to_select , What columns to select. By default, we select all columns specified by the
1025
+     * @param string  $columns_to_select , What columns to select. By default, we select all columns specified by the
1026 1026
      *                                  fields on the model, and the models we joined to in the query. However, you can
1027 1027
      *                                  override this and set the select to "*", or a specific column name, like
1028 1028
      *                                  "ATT_ID", etc. If you would like to use these custom selections in WHERE,
@@ -1448,7 +1448,7 @@  discard block
 block discarded – undo
1448 1448
      * @param string $field_name The name of the field the formats are being retrieved for.
1449 1449
      * @param bool   $pretty     Whether to return the pretty formats (true) or not (false).
1450 1450
      * @throws EE_Error   If the given field_name is not of the EE_Datetime_Field type.
1451
-     * @return array formats in an array with the date format first, and the time format last.
1451
+     * @return string[] formats in an array with the date format first, and the time format last.
1452 1452
      */
1453 1453
     public function get_formats_for($field_name, $pretty = false)
1454 1454
     {
@@ -1485,7 +1485,7 @@  discard block
 block discarded – undo
1485 1485
      *                                 be returned.
1486 1486
      * @param string $what             Whether to return the string in just the time format, the date format, or both.
1487 1487
      * @throws EE_Error    If the given field_name is not of the EE_Datetime_Field type.
1488
-     * @return int|string  If the given field_name is not of the EE_Datetime_Field type, then an EE_Error
1488
+     * @return string|null  If the given field_name is not of the EE_Datetime_Field type, then an EE_Error
1489 1489
      *                                 exception is triggered.
1490 1490
      */
1491 1491
     public function current_time_for_query($field_name, $timestamp = false, $what = 'both')
@@ -1525,7 +1525,7 @@  discard block
 block discarded – undo
1525 1525
      *                                the blog.  If this is not the case, then it can be specified here.  If incoming
1526 1526
      *                                format is
1527 1527
      *                                'U', this is ignored.
1528
-     * @return DateTime
1528
+     * @return string
1529 1529
      * @throws EE_Error
1530 1530
      */
1531 1531
     public function convert_datetime_for_query($field_name, $timestring, $incoming_format, $timezone = '')
@@ -2416,7 +2416,7 @@  discard block
 block discarded – undo
2416 2416
      * Verifies the EE addons' database is up-to-date and records that we've done it on
2417 2417
      * EEM_Base::$_db_verification_level
2418 2418
      *
2419
-     * @param $wpdb_method
2419
+     * @param string $wpdb_method
2420 2420
      * @param $arguments_to_provide
2421 2421
      * @return string
2422 2422
      */
@@ -2542,6 +2542,7 @@  discard block
 block discarded – undo
2542 2542
      *                             methods that allow you to further specify extra columns to join by (such as HABTM).
2543 2543
      *                             Keep in mind that the only acceptable query_params is strict "col" => "value" pairs
2544 2544
      *                             because these will be inserted in any new rows created as well.
2545
+     * @param EE_Base_Class $id_or_obj
2545 2546
      */
2546 2547
     public function remove_relationship_to($id_or_obj, $other_model_id_or_obj, $relationName, $where_query = array())
2547 2548
     {
@@ -2552,7 +2553,7 @@  discard block
 block discarded – undo
2552 2553
 
2553 2554
 
2554 2555
     /**
2555
-     * @param mixed           $id_or_obj
2556
+     * @param EE_Base_Class           $id_or_obj
2556 2557
      * @param string          $relationName
2557 2558
      * @param array           $where_query_params
2558 2559
      * @param EE_Base_Class[] objects to which relations were removed
@@ -2593,7 +2594,7 @@  discard block
 block discarded – undo
2593 2594
      * However, if the model objects can't be deleted because of blocking related model objects, then
2594 2595
      * they aren't deleted. (Unless the thing that would have been deleted can be soft-deleted, that still happens).
2595 2596
      *
2596
-     * @param EE_Base_Class|int|string $id_or_obj
2597
+     * @param EE_Base_Class $id_or_obj
2597 2598
      * @param string                   $model_name
2598 2599
      * @param array                    $query_params
2599 2600
      * @return int how many deleted
@@ -2614,7 +2615,7 @@  discard block
 block discarded – undo
2614 2615
      * the model objects can't be hard deleted because of blocking related model objects,
2615 2616
      * just does a soft-delete on them instead.
2616 2617
      *
2617
-     * @param EE_Base_Class|int|string $id_or_obj
2618
+     * @param EE_Base_Class $id_or_obj
2618 2619
      * @param string                   $model_name
2619 2620
      * @param array                    $query_params
2620 2621
      * @return int how many deleted
@@ -2671,6 +2672,7 @@  discard block
 block discarded – undo
2671 2672
      * @param string $model_name   like 'Event', or 'Registration'
2672 2673
      * @param array  $query_params @see https://github.com/eventespresso/event-espresso-core/tree/master/docs/G--Model-System/model-query-params.md
2673 2674
      * @param string $field_to_sum name of field to count by. By default, uses primary key
2675
+     * @param EE_Base_Class $id_or_obj
2674 2676
      * @return float
2675 2677
      * @throws EE_Error
2676 2678
      */
@@ -3685,7 +3687,7 @@  discard block
 block discarded – undo
3685 3687
      * this model only, or to use minimum where conditions on all other models and normal where conditions on this one.
3686 3688
      * We should use default where conditions on related models when they requested to use default where conditions
3687 3689
      * on all models, or specifically just on other related models
3688
-     * @param      $default_where_conditions_value
3690
+     * @param      string $default_where_conditions_value
3689 3691
      * @param bool $for_this_model false means this is for OTHER related models
3690 3692
      * @return bool
3691 3693
      */
@@ -3723,7 +3725,7 @@  discard block
 block discarded – undo
3723 3725
      * where conditions.
3724 3726
      * We should use minimum where conditions on related models if they requested to use minimum where conditions
3725 3727
      * on this model or others
3726
-     * @param      $default_where_conditions_value
3728
+     * @param      string $default_where_conditions_value
3727 3729
      * @param bool $for_this_model false means this is for OTHER related models
3728 3730
      * @return bool
3729 3731
      */
@@ -4902,7 +4904,7 @@  discard block
 block discarded – undo
4902 4904
      * gets the field object of type 'primary_key' from the fieldsSettings attribute.
4903 4905
      * Eg, on EE_Answer that would be ANS_ID field object
4904 4906
      *
4905
-     * @param $field_obj
4907
+     * @param EE_Model_Field_Base $field_obj
4906 4908
      * @return boolean
4907 4909
      */
4908 4910
     public function is_primary_key_field($field_obj)
@@ -5694,7 +5696,7 @@  discard block
 block discarded – undo
5694 5696
     /**
5695 5697
      * Read comments for assume_values_already_prepared_by_model_object()
5696 5698
      *
5697
-     * @return int
5699
+     * @return boolean
5698 5700
      */
5699 5701
     public function get_assumption_concerning_values_already_prepared_by_model_object()
5700 5702
     {
@@ -6317,7 +6319,7 @@  discard block
 block discarded – undo
6317 6319
     /**
6318 6320
      * Returns the password field on this model, if there is one
6319 6321
      * @since $VID:$
6320
-     * @return EE_Password_Field|null
6322
+     * @return EE_Model_Field_Base|null
6321 6323
      */
6322 6324
     public function getPasswordField()
6323 6325
     {
Please login to merge, or discard this patch.
Indentation   +6418 added lines, -6418 removed lines patch added patch discarded remove patch
@@ -36,6425 +36,6425 @@
 block discarded – undo
36 36
 abstract class EEM_Base extends EE_Base implements ResettableInterface
37 37
 {
38 38
 
39
-    /**
40
-     * Flag to indicate whether the values provided to EEM_Base have already been prepared
41
-     * by the model object or not (ie, the model object has used the field's _prepare_for_set function on the values).
42
-     * They almost always WILL NOT, but it's not necessarily a requirement.
43
-     * For example, if you want to run EEM_Event::instance()->get_all(array(array('EVT_ID'=>$_GET['event_id'])));
44
-     *
45
-     * @var boolean
46
-     */
47
-    private $_values_already_prepared_by_model_object = 0;
48
-
49
-    /**
50
-     * when $_values_already_prepared_by_model_object equals this, we assume
51
-     * the data is just like form input that needs to have the model fields'
52
-     * prepare_for_set and prepare_for_use_in_db called on it
53
-     */
54
-    const not_prepared_by_model_object = 0;
55
-
56
-    /**
57
-     * when $_values_already_prepared_by_model_object equals this, we
58
-     * assume this value is coming from a model object and doesn't need to have
59
-     * prepare_for_set called on it, just prepare_for_use_in_db is used
60
-     */
61
-    const prepared_by_model_object = 1;
62
-
63
-    /**
64
-     * when $_values_already_prepared_by_model_object equals this, we assume
65
-     * the values are already to be used in the database (ie no processing is done
66
-     * on them by the model's fields)
67
-     */
68
-    const prepared_for_use_in_db = 2;
69
-
70
-
71
-    protected $singular_item = 'Item';
72
-
73
-    protected $plural_item   = 'Items';
74
-
75
-    /**
76
-     * @type \EE_Table_Base[] $_tables array of EE_Table objects for defining which tables comprise this model.
77
-     */
78
-    protected $_tables;
79
-
80
-    /**
81
-     * with two levels: top-level has array keys which are database table aliases (ie, keys in _tables)
82
-     * and the value is an array. Each of those sub-arrays have keys of field names (eg 'ATT_ID', which should also be
83
-     * variable names on the model objects (eg, EE_Attendee), and the keys should be children of EE_Model_Field
84
-     *
85
-     * @var \EE_Model_Field_Base[][] $_fields
86
-     */
87
-    protected $_fields;
88
-
89
-    /**
90
-     * array of different kinds of relations
91
-     *
92
-     * @var \EE_Model_Relation_Base[] $_model_relations
93
-     */
94
-    protected $_model_relations;
95
-
96
-    /**
97
-     * @var \EE_Index[] $_indexes
98
-     */
99
-    protected $_indexes = array();
100
-
101
-    /**
102
-     * Default strategy for getting where conditions on this model. This strategy is used to get default
103
-     * where conditions which are added to get_all, update, and delete queries. They can be overridden
104
-     * by setting the same columns as used in these queries in the query yourself.
105
-     *
106
-     * @var EE_Default_Where_Conditions
107
-     */
108
-    protected $_default_where_conditions_strategy;
109
-
110
-    /**
111
-     * Strategy for getting conditions on this model when 'default_where_conditions' equals 'minimum'.
112
-     * This is particularly useful when you want something between 'none' and 'default'
113
-     *
114
-     * @var EE_Default_Where_Conditions
115
-     */
116
-    protected $_minimum_where_conditions_strategy;
117
-
118
-    /**
119
-     * String describing how to find the "owner" of this model's objects.
120
-     * When there is a foreign key on this model to the wp_users table, this isn't needed.
121
-     * But when there isn't, this indicates which related model, or transiently-related model,
122
-     * has the foreign key to the wp_users table.
123
-     * Eg, for EEM_Registration this would be 'Event' because registrations are directly
124
-     * related to events, and events have a foreign key to wp_users.
125
-     * On EEM_Transaction, this would be 'Transaction.Event'
126
-     *
127
-     * @var string
128
-     */
129
-    protected $_model_chain_to_wp_user = '';
130
-
131
-    /**
132
-     * String describing how to find the model with a password controlling access to this model. This property has the
133
-     * same format as $_model_chain_to_wp_user. This is primarily used by the query param "exclude_protected".
134
-     * This value is the path of models to follow to arrive at the model with the password field.
135
-     * If it is an empty string, it means this model has the password field. If it is null, it means there is no
136
-     * model with a password that should affect reading this on the front-end.
137
-     * Eg this is an empty string for the Event model because it has a password.
138
-     * This is null for the Registration model, because its event's password has no bearing on whether
139
-     * you can read the registration or not on the front-end (it just depends on your capabilities.)
140
-     * This is 'Datetime.Event' on the Ticket model, because model queries for tickets that set "exclude_protected"
141
-     * should hide tickets for datetimes for events that have a password set.
142
-     * @var string |null
143
-     */
144
-    protected $model_chain_to_password = null;
145
-
146
-    /**
147
-     * This is a flag typically set by updates so that we don't load the where strategy on updates because updates
148
-     * don't need it (particularly CPT models)
149
-     *
150
-     * @var bool
151
-     */
152
-    protected $_ignore_where_strategy = false;
153
-
154
-    /**
155
-     * String used in caps relating to this model. Eg, if the caps relating to this
156
-     * model are 'ee_edit_events', 'ee_read_events', etc, it would be 'events'.
157
-     *
158
-     * @var string. If null it hasn't been initialized yet. If false then we
159
-     * have indicated capabilities don't apply to this
160
-     */
161
-    protected $_caps_slug = null;
162
-
163
-    /**
164
-     * 2d array where top-level keys are one of EEM_Base::valid_cap_contexts(),
165
-     * and next-level keys are capability names, and each's value is a
166
-     * EE_Default_Where_Condition. If the requester requests to apply caps to the query,
167
-     * they specify which context to use (ie, frontend, backend, edit or delete)
168
-     * and then each capability in the corresponding sub-array that they're missing
169
-     * adds the where conditions onto the query.
170
-     *
171
-     * @var array
172
-     */
173
-    protected $_cap_restrictions = array(
174
-        self::caps_read       => array(),
175
-        self::caps_read_admin => array(),
176
-        self::caps_edit       => array(),
177
-        self::caps_delete     => array(),
178
-    );
179
-
180
-    /**
181
-     * Array defining which cap restriction generators to use to create default
182
-     * cap restrictions to put in EEM_Base::_cap_restrictions.
183
-     * Array-keys are one of EEM_Base::valid_cap_contexts(), and values are a child of
184
-     * EE_Restriction_Generator_Base. If you don't want any cap restrictions generated
185
-     * automatically set this to false (not just null).
186
-     *
187
-     * @var EE_Restriction_Generator_Base[]
188
-     */
189
-    protected $_cap_restriction_generators = array();
190
-
191
-    /**
192
-     * constants used to categorize capability restrictions on EEM_Base::_caps_restrictions
193
-     */
194
-    const caps_read       = 'read';
195
-
196
-    const caps_read_admin = 'read_admin';
197
-
198
-    const caps_edit       = 'edit';
199
-
200
-    const caps_delete     = 'delete';
201
-
202
-    /**
203
-     * Keys are all the cap contexts (ie constants EEM_Base::_caps_*) and values are their 'action'
204
-     * as how they'd be used in capability names. Eg EEM_Base::caps_read ('read_frontend')
205
-     * maps to 'read' because when looking for relevant permissions we're going to use
206
-     * 'read' in teh capabilities names like 'ee_read_events' etc.
207
-     *
208
-     * @var array
209
-     */
210
-    protected $_cap_contexts_to_cap_action_map = array(
211
-        self::caps_read       => 'read',
212
-        self::caps_read_admin => 'read',
213
-        self::caps_edit       => 'edit',
214
-        self::caps_delete     => 'delete',
215
-    );
216
-
217
-    /**
218
-     * Timezone
219
-     * This gets set via the constructor so that we know what timezone incoming strings|timestamps are in when there
220
-     * are EE_Datetime_Fields in use.  This can also be used before a get to set what timezone you want strings coming
221
-     * out of the created objects.  NOT all EEM_Base child classes use this property but any that use a
222
-     * EE_Datetime_Field data type will have access to it.
223
-     *
224
-     * @var string
225
-     */
226
-    protected $_timezone;
227
-
228
-
229
-    /**
230
-     * This holds the id of the blog currently making the query.  Has no bearing on single site but is used for
231
-     * multisite.
232
-     *
233
-     * @var int
234
-     */
235
-    protected static $_model_query_blog_id;
236
-
237
-    /**
238
-     * A copy of _fields, except the array keys are the model names pointed to by
239
-     * the field
240
-     *
241
-     * @var EE_Model_Field_Base[]
242
-     */
243
-    private $_cache_foreign_key_to_fields = array();
244
-
245
-    /**
246
-     * Cached list of all the fields on the model, indexed by their name
247
-     *
248
-     * @var EE_Model_Field_Base[]
249
-     */
250
-    private $_cached_fields = null;
251
-
252
-    /**
253
-     * Cached list of all the fields on the model, except those that are
254
-     * marked as only pertinent to the database
255
-     *
256
-     * @var EE_Model_Field_Base[]
257
-     */
258
-    private $_cached_fields_non_db_only = null;
259
-
260
-    /**
261
-     * A cached reference to the primary key for quick lookup
262
-     *
263
-     * @var EE_Model_Field_Base
264
-     */
265
-    private $_primary_key_field = null;
266
-
267
-    /**
268
-     * Flag indicating whether this model has a primary key or not
269
-     *
270
-     * @var boolean
271
-     */
272
-    protected $_has_primary_key_field = null;
273
-
274
-    /**
275
-     * Whether or not this model is based off a table in WP core only (CPTs should set
276
-     * this to FALSE, but if we were to make an EE_WP_Post model, it should set this to true).
277
-     * This should be true for models that deal with data that should exist independent of EE.
278
-     * For example, if the model can read and insert data that isn't used by EE, this should be true.
279
-     * It would be false, however, if you could guarantee the model would only interact with EE data,
280
-     * even if it uses a WP core table (eg event and venue models set this to false for that reason:
281
-     * they can only read and insert events and venues custom post types, not arbitrary post types)
282
-     * @var boolean
283
-     */
284
-    protected $_wp_core_model = false;
285
-
286
-    /**
287
-     * @var bool stores whether this model has a password field or not.
288
-     * null until initialized by hasPasswordField()
289
-     */
290
-    protected $has_password_field;
39
+	/**
40
+	 * Flag to indicate whether the values provided to EEM_Base have already been prepared
41
+	 * by the model object or not (ie, the model object has used the field's _prepare_for_set function on the values).
42
+	 * They almost always WILL NOT, but it's not necessarily a requirement.
43
+	 * For example, if you want to run EEM_Event::instance()->get_all(array(array('EVT_ID'=>$_GET['event_id'])));
44
+	 *
45
+	 * @var boolean
46
+	 */
47
+	private $_values_already_prepared_by_model_object = 0;
48
+
49
+	/**
50
+	 * when $_values_already_prepared_by_model_object equals this, we assume
51
+	 * the data is just like form input that needs to have the model fields'
52
+	 * prepare_for_set and prepare_for_use_in_db called on it
53
+	 */
54
+	const not_prepared_by_model_object = 0;
55
+
56
+	/**
57
+	 * when $_values_already_prepared_by_model_object equals this, we
58
+	 * assume this value is coming from a model object and doesn't need to have
59
+	 * prepare_for_set called on it, just prepare_for_use_in_db is used
60
+	 */
61
+	const prepared_by_model_object = 1;
62
+
63
+	/**
64
+	 * when $_values_already_prepared_by_model_object equals this, we assume
65
+	 * the values are already to be used in the database (ie no processing is done
66
+	 * on them by the model's fields)
67
+	 */
68
+	const prepared_for_use_in_db = 2;
69
+
70
+
71
+	protected $singular_item = 'Item';
72
+
73
+	protected $plural_item   = 'Items';
74
+
75
+	/**
76
+	 * @type \EE_Table_Base[] $_tables array of EE_Table objects for defining which tables comprise this model.
77
+	 */
78
+	protected $_tables;
79
+
80
+	/**
81
+	 * with two levels: top-level has array keys which are database table aliases (ie, keys in _tables)
82
+	 * and the value is an array. Each of those sub-arrays have keys of field names (eg 'ATT_ID', which should also be
83
+	 * variable names on the model objects (eg, EE_Attendee), and the keys should be children of EE_Model_Field
84
+	 *
85
+	 * @var \EE_Model_Field_Base[][] $_fields
86
+	 */
87
+	protected $_fields;
88
+
89
+	/**
90
+	 * array of different kinds of relations
91
+	 *
92
+	 * @var \EE_Model_Relation_Base[] $_model_relations
93
+	 */
94
+	protected $_model_relations;
95
+
96
+	/**
97
+	 * @var \EE_Index[] $_indexes
98
+	 */
99
+	protected $_indexes = array();
100
+
101
+	/**
102
+	 * Default strategy for getting where conditions on this model. This strategy is used to get default
103
+	 * where conditions which are added to get_all, update, and delete queries. They can be overridden
104
+	 * by setting the same columns as used in these queries in the query yourself.
105
+	 *
106
+	 * @var EE_Default_Where_Conditions
107
+	 */
108
+	protected $_default_where_conditions_strategy;
109
+
110
+	/**
111
+	 * Strategy for getting conditions on this model when 'default_where_conditions' equals 'minimum'.
112
+	 * This is particularly useful when you want something between 'none' and 'default'
113
+	 *
114
+	 * @var EE_Default_Where_Conditions
115
+	 */
116
+	protected $_minimum_where_conditions_strategy;
117
+
118
+	/**
119
+	 * String describing how to find the "owner" of this model's objects.
120
+	 * When there is a foreign key on this model to the wp_users table, this isn't needed.
121
+	 * But when there isn't, this indicates which related model, or transiently-related model,
122
+	 * has the foreign key to the wp_users table.
123
+	 * Eg, for EEM_Registration this would be 'Event' because registrations are directly
124
+	 * related to events, and events have a foreign key to wp_users.
125
+	 * On EEM_Transaction, this would be 'Transaction.Event'
126
+	 *
127
+	 * @var string
128
+	 */
129
+	protected $_model_chain_to_wp_user = '';
130
+
131
+	/**
132
+	 * String describing how to find the model with a password controlling access to this model. This property has the
133
+	 * same format as $_model_chain_to_wp_user. This is primarily used by the query param "exclude_protected".
134
+	 * This value is the path of models to follow to arrive at the model with the password field.
135
+	 * If it is an empty string, it means this model has the password field. If it is null, it means there is no
136
+	 * model with a password that should affect reading this on the front-end.
137
+	 * Eg this is an empty string for the Event model because it has a password.
138
+	 * This is null for the Registration model, because its event's password has no bearing on whether
139
+	 * you can read the registration or not on the front-end (it just depends on your capabilities.)
140
+	 * This is 'Datetime.Event' on the Ticket model, because model queries for tickets that set "exclude_protected"
141
+	 * should hide tickets for datetimes for events that have a password set.
142
+	 * @var string |null
143
+	 */
144
+	protected $model_chain_to_password = null;
145
+
146
+	/**
147
+	 * This is a flag typically set by updates so that we don't load the where strategy on updates because updates
148
+	 * don't need it (particularly CPT models)
149
+	 *
150
+	 * @var bool
151
+	 */
152
+	protected $_ignore_where_strategy = false;
153
+
154
+	/**
155
+	 * String used in caps relating to this model. Eg, if the caps relating to this
156
+	 * model are 'ee_edit_events', 'ee_read_events', etc, it would be 'events'.
157
+	 *
158
+	 * @var string. If null it hasn't been initialized yet. If false then we
159
+	 * have indicated capabilities don't apply to this
160
+	 */
161
+	protected $_caps_slug = null;
162
+
163
+	/**
164
+	 * 2d array where top-level keys are one of EEM_Base::valid_cap_contexts(),
165
+	 * and next-level keys are capability names, and each's value is a
166
+	 * EE_Default_Where_Condition. If the requester requests to apply caps to the query,
167
+	 * they specify which context to use (ie, frontend, backend, edit or delete)
168
+	 * and then each capability in the corresponding sub-array that they're missing
169
+	 * adds the where conditions onto the query.
170
+	 *
171
+	 * @var array
172
+	 */
173
+	protected $_cap_restrictions = array(
174
+		self::caps_read       => array(),
175
+		self::caps_read_admin => array(),
176
+		self::caps_edit       => array(),
177
+		self::caps_delete     => array(),
178
+	);
179
+
180
+	/**
181
+	 * Array defining which cap restriction generators to use to create default
182
+	 * cap restrictions to put in EEM_Base::_cap_restrictions.
183
+	 * Array-keys are one of EEM_Base::valid_cap_contexts(), and values are a child of
184
+	 * EE_Restriction_Generator_Base. If you don't want any cap restrictions generated
185
+	 * automatically set this to false (not just null).
186
+	 *
187
+	 * @var EE_Restriction_Generator_Base[]
188
+	 */
189
+	protected $_cap_restriction_generators = array();
190
+
191
+	/**
192
+	 * constants used to categorize capability restrictions on EEM_Base::_caps_restrictions
193
+	 */
194
+	const caps_read       = 'read';
195
+
196
+	const caps_read_admin = 'read_admin';
197
+
198
+	const caps_edit       = 'edit';
199
+
200
+	const caps_delete     = 'delete';
201
+
202
+	/**
203
+	 * Keys are all the cap contexts (ie constants EEM_Base::_caps_*) and values are their 'action'
204
+	 * as how they'd be used in capability names. Eg EEM_Base::caps_read ('read_frontend')
205
+	 * maps to 'read' because when looking for relevant permissions we're going to use
206
+	 * 'read' in teh capabilities names like 'ee_read_events' etc.
207
+	 *
208
+	 * @var array
209
+	 */
210
+	protected $_cap_contexts_to_cap_action_map = array(
211
+		self::caps_read       => 'read',
212
+		self::caps_read_admin => 'read',
213
+		self::caps_edit       => 'edit',
214
+		self::caps_delete     => 'delete',
215
+	);
216
+
217
+	/**
218
+	 * Timezone
219
+	 * This gets set via the constructor so that we know what timezone incoming strings|timestamps are in when there
220
+	 * are EE_Datetime_Fields in use.  This can also be used before a get to set what timezone you want strings coming
221
+	 * out of the created objects.  NOT all EEM_Base child classes use this property but any that use a
222
+	 * EE_Datetime_Field data type will have access to it.
223
+	 *
224
+	 * @var string
225
+	 */
226
+	protected $_timezone;
227
+
228
+
229
+	/**
230
+	 * This holds the id of the blog currently making the query.  Has no bearing on single site but is used for
231
+	 * multisite.
232
+	 *
233
+	 * @var int
234
+	 */
235
+	protected static $_model_query_blog_id;
236
+
237
+	/**
238
+	 * A copy of _fields, except the array keys are the model names pointed to by
239
+	 * the field
240
+	 *
241
+	 * @var EE_Model_Field_Base[]
242
+	 */
243
+	private $_cache_foreign_key_to_fields = array();
244
+
245
+	/**
246
+	 * Cached list of all the fields on the model, indexed by their name
247
+	 *
248
+	 * @var EE_Model_Field_Base[]
249
+	 */
250
+	private $_cached_fields = null;
251
+
252
+	/**
253
+	 * Cached list of all the fields on the model, except those that are
254
+	 * marked as only pertinent to the database
255
+	 *
256
+	 * @var EE_Model_Field_Base[]
257
+	 */
258
+	private $_cached_fields_non_db_only = null;
259
+
260
+	/**
261
+	 * A cached reference to the primary key for quick lookup
262
+	 *
263
+	 * @var EE_Model_Field_Base
264
+	 */
265
+	private $_primary_key_field = null;
266
+
267
+	/**
268
+	 * Flag indicating whether this model has a primary key or not
269
+	 *
270
+	 * @var boolean
271
+	 */
272
+	protected $_has_primary_key_field = null;
273
+
274
+	/**
275
+	 * Whether or not this model is based off a table in WP core only (CPTs should set
276
+	 * this to FALSE, but if we were to make an EE_WP_Post model, it should set this to true).
277
+	 * This should be true for models that deal with data that should exist independent of EE.
278
+	 * For example, if the model can read and insert data that isn't used by EE, this should be true.
279
+	 * It would be false, however, if you could guarantee the model would only interact with EE data,
280
+	 * even if it uses a WP core table (eg event and venue models set this to false for that reason:
281
+	 * they can only read and insert events and venues custom post types, not arbitrary post types)
282
+	 * @var boolean
283
+	 */
284
+	protected $_wp_core_model = false;
285
+
286
+	/**
287
+	 * @var bool stores whether this model has a password field or not.
288
+	 * null until initialized by hasPasswordField()
289
+	 */
290
+	protected $has_password_field;
291 291
     
292
-    /**
293
-     * @var EE_Password_Field|null Automatically set when calling getPasswordField()
294
-     */
295
-    protected $password_field;
296
-
297
-    /**
298
-     *    List of valid operators that can be used for querying.
299
-     * The keys are all operators we'll accept, the values are the real SQL
300
-     * operators used
301
-     *
302
-     * @var array
303
-     */
304
-    protected $_valid_operators = array(
305
-        '='           => '=',
306
-        '<='          => '<=',
307
-        '<'           => '<',
308
-        '>='          => '>=',
309
-        '>'           => '>',
310
-        '!='          => '!=',
311
-        'LIKE'        => 'LIKE',
312
-        'like'        => 'LIKE',
313
-        'NOT_LIKE'    => 'NOT LIKE',
314
-        'not_like'    => 'NOT LIKE',
315
-        'NOT LIKE'    => 'NOT LIKE',
316
-        'not like'    => 'NOT LIKE',
317
-        'IN'          => 'IN',
318
-        'in'          => 'IN',
319
-        'NOT_IN'      => 'NOT IN',
320
-        'not_in'      => 'NOT IN',
321
-        'NOT IN'      => 'NOT IN',
322
-        'not in'      => 'NOT IN',
323
-        'between'     => 'BETWEEN',
324
-        'BETWEEN'     => 'BETWEEN',
325
-        'IS_NOT_NULL' => 'IS NOT NULL',
326
-        'is_not_null' => 'IS NOT NULL',
327
-        'IS NOT NULL' => 'IS NOT NULL',
328
-        'is not null' => 'IS NOT NULL',
329
-        'IS_NULL'     => 'IS NULL',
330
-        'is_null'     => 'IS NULL',
331
-        'IS NULL'     => 'IS NULL',
332
-        'is null'     => 'IS NULL',
333
-        'REGEXP'      => 'REGEXP',
334
-        'regexp'      => 'REGEXP',
335
-        'NOT_REGEXP'  => 'NOT REGEXP',
336
-        'not_regexp'  => 'NOT REGEXP',
337
-        'NOT REGEXP'  => 'NOT REGEXP',
338
-        'not regexp'  => 'NOT REGEXP',
339
-    );
340
-
341
-    /**
342
-     * operators that work like 'IN', accepting a comma-separated list of values inside brackets. Eg '(1,2,3)'
343
-     *
344
-     * @var array
345
-     */
346
-    protected $_in_style_operators = array('IN', 'NOT IN');
347
-
348
-    /**
349
-     * operators that work like 'BETWEEN'.  Typically used for datetime calculations, i.e. "BETWEEN '12-1-2011' AND
350
-     * '12-31-2012'"
351
-     *
352
-     * @var array
353
-     */
354
-    protected $_between_style_operators = array('BETWEEN');
355
-
356
-    /**
357
-     * Operators that work like SQL's like: input should be assumed to be a string, already prepared for a LIKE query.
358
-     * @var array
359
-     */
360
-    protected $_like_style_operators = array('LIKE', 'NOT LIKE');
361
-    /**
362
-     * operators that are used for handling NUll and !NULL queries.  Typically used for when checking if a row exists
363
-     * on a join table.
364
-     *
365
-     * @var array
366
-     */
367
-    protected $_null_style_operators = array('IS NOT NULL', 'IS NULL');
368
-
369
-    /**
370
-     * Allowed values for $query_params['order'] for ordering in queries
371
-     *
372
-     * @var array
373
-     */
374
-    protected $_allowed_order_values = array('asc', 'desc', 'ASC', 'DESC');
375
-
376
-    /**
377
-     * When these are keys in a WHERE or HAVING clause, they are handled much differently
378
-     * than regular field names. It is assumed that their values are an array of WHERE conditions
379
-     *
380
-     * @var array
381
-     */
382
-    private $_logic_query_param_keys = array('not', 'and', 'or', 'NOT', 'AND', 'OR');
383
-
384
-    /**
385
-     * Allowed keys in $query_params arrays passed into queries. Note that 0 is meant to always be a
386
-     * 'where', but 'where' clauses are so common that we thought we'd omit it
387
-     *
388
-     * @var array
389
-     */
390
-    private $_allowed_query_params = array(
391
-        0,
392
-        'limit',
393
-        'order_by',
394
-        'group_by',
395
-        'having',
396
-        'force_join',
397
-        'order',
398
-        'on_join_limit',
399
-        'default_where_conditions',
400
-        'caps',
401
-        'extra_selects',
402
-        'exclude_protected',
403
-    );
404
-
405
-    /**
406
-     * All the data types that can be used in $wpdb->prepare statements.
407
-     *
408
-     * @var array
409
-     */
410
-    private $_valid_wpdb_data_types = array('%d', '%s', '%f');
411
-
412
-    /**
413
-     * @var EE_Registry $EE
414
-     */
415
-    protected $EE = null;
416
-
417
-
418
-    /**
419
-     * Property which, when set, will have this model echo out the next X queries to the page for debugging.
420
-     *
421
-     * @var int
422
-     */
423
-    protected $_show_next_x_db_queries = 0;
424
-
425
-    /**
426
-     * When using _get_all_wpdb_results, you can specify a custom selection. If you do so,
427
-     * it gets saved on this property as an instance of CustomSelects so those selections can be used in
428
-     * WHERE, GROUP_BY, etc.
429
-     *
430
-     * @var CustomSelects
431
-     */
432
-    protected $_custom_selections = array();
433
-
434
-    /**
435
-     * key => value Entity Map using  array( EEM_Base::$_model_query_blog_id => array( ID => model object ) )
436
-     * caches every model object we've fetched from the DB on this request
437
-     *
438
-     * @var array
439
-     */
440
-    protected $_entity_map;
441
-
442
-    /**
443
-     * @var LoaderInterface $loader
444
-     */
445
-    private static $loader;
446
-
447
-
448
-    /**
449
-     * constant used to show EEM_Base has not yet verified the db on this http request
450
-     */
451
-    const db_verified_none = 0;
452
-
453
-    /**
454
-     * constant used to show EEM_Base has verified the EE core db on this http request,
455
-     * but not the addons' dbs
456
-     */
457
-    const db_verified_core = 1;
458
-
459
-    /**
460
-     * constant used to show EEM_Base has verified the addons' dbs (and implicitly
461
-     * the EE core db too)
462
-     */
463
-    const db_verified_addons = 2;
464
-
465
-    /**
466
-     * indicates whether an EEM_Base child has already re-verified the DB
467
-     * is ok (we don't want to do it repetitively). Should be set to one the constants
468
-     * looking like EEM_Base::db_verified_*
469
-     *
470
-     * @var int - 0 = none, 1 = core, 2 = addons
471
-     */
472
-    protected static $_db_verification_level = EEM_Base::db_verified_none;
473
-
474
-    /**
475
-     * @const constant for 'default_where_conditions' to apply default where conditions to ALL queried models
476
-     *        (eg, if retrieving registrations ordered by their datetimes, this will only return non-trashed
477
-     *        registrations for non-trashed tickets for non-trashed datetimes)
478
-     */
479
-    const default_where_conditions_all = 'all';
480
-
481
-    /**
482
-     * @const constant for 'default_where_conditions' to apply default where conditions to THIS model only, but
483
-     *        no other models which are joined to (eg, if retrieving registrations ordered by their datetimes, this will
484
-     *        return non-trashed registrations, regardless of the related datetimes and tickets' statuses).
485
-     *        It is preferred to use EEM_Base::default_where_conditions_minimum_others because, when joining to
486
-     *        models which share tables with other models, this can return data for the wrong model.
487
-     */
488
-    const default_where_conditions_this_only = 'this_model_only';
489
-
490
-    /**
491
-     * @const constant for 'default_where_conditions' to apply default where conditions to other models queried,
492
-     *        but not the current model (eg, if retrieving registrations ordered by their datetimes, this will
493
-     *        return all registrations related to non-trashed tickets and non-trashed datetimes)
494
-     */
495
-    const default_where_conditions_others_only = 'other_models_only';
496
-
497
-    /**
498
-     * @const constant for 'default_where_conditions' to apply minimum where conditions to all models queried.
499
-     *        For most models this the same as EEM_Base::default_where_conditions_none, except for models which share
500
-     *        their table with other models, like the Event and Venue models. For example, when querying for events
501
-     *        ordered by their venues' name, this will be sure to only return real events with associated real venues
502
-     *        (regardless of whether those events and venues are trashed)
503
-     *        In contrast, using EEM_Base::default_where_conditions_none would could return WP posts other than EE
504
-     *        events.
505
-     */
506
-    const default_where_conditions_minimum_all = 'minimum';
507
-
508
-    /**
509
-     * @const constant for 'default_where_conditions' to apply apply where conditions to other models, and full default
510
-     *        where conditions for the queried model (eg, when querying events ordered by venues' names, this will
511
-     *        return non-trashed events for any venues, regardless of whether those associated venues are trashed or
512
-     *        not)
513
-     */
514
-    const default_where_conditions_minimum_others = 'full_this_minimum_others';
515
-
516
-    /**
517
-     * @const constant for 'default_where_conditions' to NOT apply any where conditions. This should very rarely be
518
-     *        used, because when querying from a model which shares its table with another model (eg Events and Venues)
519
-     *        it's possible it will return table entries for other models. You should use
520
-     *        EEM_Base::default_where_conditions_minimum_all instead.
521
-     */
522
-    const default_where_conditions_none = 'none';
523
-
524
-
525
-
526
-    /**
527
-     * About all child constructors:
528
-     * they should define the _tables, _fields and _model_relations arrays.
529
-     * Should ALWAYS be called after child constructor.
530
-     * In order to make the child constructors to be as simple as possible, this parent constructor
531
-     * finalizes constructing all the object's attributes.
532
-     * Generally, rather than requiring a child to code
533
-     * $this->_tables = array(
534
-     *        'Event_Post_Table' => new EE_Table('Event_Post_Table','wp_posts')
535
-     *        ...);
536
-     *  (thus repeating itself in the array key and in the constructor of the new EE_Table,)
537
-     * each EE_Table has a function to set the table's alias after the constructor, using
538
-     * the array key ('Event_Post_Table'), instead of repeating it. The model fields and model relations
539
-     * do something similar.
540
-     *
541
-     * @param null $timezone
542
-     * @throws EE_Error
543
-     */
544
-    protected function __construct($timezone = null)
545
-    {
546
-        // check that the model has not been loaded too soon
547
-        if (! did_action('AHEE__EE_System__load_espresso_addons')) {
548
-            throw new EE_Error(
549
-                sprintf(
550
-                    __(
551
-                        'The %1$s model can not be loaded before the "AHEE__EE_System__load_espresso_addons" hook has been called. This gives other addons a chance to extend this model.',
552
-                        'event_espresso'
553
-                    ),
554
-                    get_class($this)
555
-                )
556
-            );
557
-        }
558
-        /**
559
-         * Set blogid for models to current blog. However we ONLY do this if $_model_query_blog_id is not already set.
560
-         */
561
-        if (empty(EEM_Base::$_model_query_blog_id)) {
562
-            EEM_Base::set_model_query_blog_id();
563
-        }
564
-        /**
565
-         * Filters the list of tables on a model. It is best to NOT use this directly and instead
566
-         * just use EE_Register_Model_Extension
567
-         *
568
-         * @var EE_Table_Base[] $_tables
569
-         */
570
-        $this->_tables = (array) apply_filters('FHEE__' . get_class($this) . '__construct__tables', $this->_tables);
571
-        foreach ($this->_tables as $table_alias => $table_obj) {
572
-            /** @var $table_obj EE_Table_Base */
573
-            $table_obj->_construct_finalize_with_alias($table_alias);
574
-            if ($table_obj instanceof EE_Secondary_Table) {
575
-                /** @var $table_obj EE_Secondary_Table */
576
-                $table_obj->_construct_finalize_set_table_to_join_with($this->_get_main_table());
577
-            }
578
-        }
579
-        /**
580
-         * Filters the list of fields on a model. It is best to NOT use this directly and instead just use
581
-         * EE_Register_Model_Extension
582
-         *
583
-         * @param EE_Model_Field_Base[] $_fields
584
-         */
585
-        $this->_fields = (array) apply_filters('FHEE__' . get_class($this) . '__construct__fields', $this->_fields);
586
-        $this->_invalidate_field_caches();
587
-        foreach ($this->_fields as $table_alias => $fields_for_table) {
588
-            if (! array_key_exists($table_alias, $this->_tables)) {
589
-                throw new EE_Error(sprintf(__(
590
-                    "Table alias %s does not exist in EEM_Base child's _tables array. Only tables defined are %s",
591
-                    'event_espresso'
592
-                ), $table_alias, implode(",", $this->_fields)));
593
-            }
594
-            foreach ($fields_for_table as $field_name => $field_obj) {
595
-                /** @var $field_obj EE_Model_Field_Base | EE_Primary_Key_Field_Base */
596
-                // primary key field base has a slightly different _construct_finalize
597
-                /** @var $field_obj EE_Model_Field_Base */
598
-                $field_obj->_construct_finalize($table_alias, $field_name, $this->get_this_model_name());
599
-            }
600
-        }
601
-        // everything is related to Extra_Meta
602
-        if (get_class($this) !== 'EEM_Extra_Meta') {
603
-            // make extra meta related to everything, but don't block deleting things just
604
-            // because they have related extra meta info. For now just orphan those extra meta
605
-            // in the future we should automatically delete them
606
-            $this->_model_relations['Extra_Meta'] = new EE_Has_Many_Any_Relation(false);
607
-        }
608
-        // and change logs
609
-        if (get_class($this) !== 'EEM_Change_Log') {
610
-            $this->_model_relations['Change_Log'] = new EE_Has_Many_Any_Relation(false);
611
-        }
612
-        /**
613
-         * Filters the list of relations on a model. It is best to NOT use this directly and instead just use
614
-         * EE_Register_Model_Extension
615
-         *
616
-         * @param EE_Model_Relation_Base[] $_model_relations
617
-         */
618
-        $this->_model_relations = (array) apply_filters(
619
-            'FHEE__' . get_class($this) . '__construct__model_relations',
620
-            $this->_model_relations
621
-        );
622
-        foreach ($this->_model_relations as $model_name => $relation_obj) {
623
-            /** @var $relation_obj EE_Model_Relation_Base */
624
-            $relation_obj->_construct_finalize_set_models($this->get_this_model_name(), $model_name);
625
-        }
626
-        foreach ($this->_indexes as $index_name => $index_obj) {
627
-            /** @var $index_obj EE_Index */
628
-            $index_obj->_construct_finalize($index_name, $this->get_this_model_name());
629
-        }
630
-        $this->set_timezone($timezone);
631
-        // finalize default where condition strategy, or set default
632
-        if (! $this->_default_where_conditions_strategy) {
633
-            // nothing was set during child constructor, so set default
634
-            $this->_default_where_conditions_strategy = new EE_Default_Where_Conditions();
635
-        }
636
-        $this->_default_where_conditions_strategy->_finalize_construct($this);
637
-        if (! $this->_minimum_where_conditions_strategy) {
638
-            // nothing was set during child constructor, so set default
639
-            $this->_minimum_where_conditions_strategy = new EE_Default_Where_Conditions();
640
-        }
641
-        $this->_minimum_where_conditions_strategy->_finalize_construct($this);
642
-        // if the cap slug hasn't been set, and we haven't set it to false on purpose
643
-        // to indicate to NOT set it, set it to the logical default
644
-        if ($this->_caps_slug === null) {
645
-            $this->_caps_slug = EEH_Inflector::pluralize_and_lower($this->get_this_model_name());
646
-        }
647
-        // initialize the standard cap restriction generators if none were specified by the child constructor
648
-        if ($this->_cap_restriction_generators !== false) {
649
-            foreach ($this->cap_contexts_to_cap_action_map() as $cap_context => $action) {
650
-                if (! isset($this->_cap_restriction_generators[ $cap_context ])) {
651
-                    $this->_cap_restriction_generators[ $cap_context ] = apply_filters(
652
-                        'FHEE__EEM_Base___construct__standard_cap_restriction_generator',
653
-                        new EE_Restriction_Generator_Protected(),
654
-                        $cap_context,
655
-                        $this
656
-                    );
657
-                }
658
-            }
659
-        }
660
-        // if there are cap restriction generators, use them to make the default cap restrictions
661
-        if ($this->_cap_restriction_generators !== false) {
662
-            foreach ($this->_cap_restriction_generators as $context => $generator_object) {
663
-                if (! $generator_object) {
664
-                    continue;
665
-                }
666
-                if (! $generator_object instanceof EE_Restriction_Generator_Base) {
667
-                    throw new EE_Error(
668
-                        sprintf(
669
-                            __(
670
-                                'Index "%1$s" in the model %2$s\'s _cap_restriction_generators is not a child of EE_Restriction_Generator_Base. It should be that or NULL.',
671
-                                'event_espresso'
672
-                            ),
673
-                            $context,
674
-                            $this->get_this_model_name()
675
-                        )
676
-                    );
677
-                }
678
-                $action = $this->cap_action_for_context($context);
679
-                if (! $generator_object->construction_finalized()) {
680
-                    $generator_object->_construct_finalize($this, $action);
681
-                }
682
-            }
683
-        }
684
-        do_action('AHEE__' . get_class($this) . '__construct__end');
685
-    }
686
-
687
-
688
-
689
-    /**
690
-     * Used to set the $_model_query_blog_id static property.
691
-     *
692
-     * @param int $blog_id  If provided then will set the blog_id for the models to this id.  If not provided then the
693
-     *                      value for get_current_blog_id() will be used.
694
-     */
695
-    public static function set_model_query_blog_id($blog_id = 0)
696
-    {
697
-        EEM_Base::$_model_query_blog_id = $blog_id > 0 ? (int) $blog_id : get_current_blog_id();
698
-    }
699
-
700
-
701
-
702
-    /**
703
-     * Returns whatever is set as the internal $model_query_blog_id.
704
-     *
705
-     * @return int
706
-     */
707
-    public static function get_model_query_blog_id()
708
-    {
709
-        return EEM_Base::$_model_query_blog_id;
710
-    }
711
-
712
-
713
-
714
-    /**
715
-     * This function is a singleton method used to instantiate the Espresso_model object
716
-     *
717
-     * @param string $timezone string representing the timezone we want to set for returned Date Time Strings
718
-     *                                (and any incoming timezone data that gets saved).
719
-     *                                Note this just sends the timezone info to the date time model field objects.
720
-     *                                Default is NULL
721
-     *                                (and will be assumed using the set timezone in the 'timezone_string' wp option)
722
-     * @return static (as in the concrete child class)
723
-     * @throws EE_Error
724
-     * @throws InvalidArgumentException
725
-     * @throws InvalidDataTypeException
726
-     * @throws InvalidInterfaceException
727
-     */
728
-    public static function instance($timezone = null)
729
-    {
730
-        // check if instance of Espresso_model already exists
731
-        if (! static::$_instance instanceof static) {
732
-            // instantiate Espresso_model
733
-            static::$_instance = new static(
734
-                $timezone,
735
-                LoaderFactory::getLoader()->load('EventEspresso\core\services\orm\ModelFieldFactory')
736
-            );
737
-        }
738
-        // we might have a timezone set, let set_timezone decide what to do with it
739
-        static::$_instance->set_timezone($timezone);
740
-        // Espresso_model object
741
-        return static::$_instance;
742
-    }
743
-
744
-
745
-
746
-    /**
747
-     * resets the model and returns it
748
-     *
749
-     * @param null | string $timezone
750
-     * @return EEM_Base|null (if the model was already instantiated, returns it, with
751
-     * all its properties reset; if it wasn't instantiated, returns null)
752
-     * @throws EE_Error
753
-     * @throws ReflectionException
754
-     * @throws InvalidArgumentException
755
-     * @throws InvalidDataTypeException
756
-     * @throws InvalidInterfaceException
757
-     */
758
-    public static function reset($timezone = null)
759
-    {
760
-        if (static::$_instance instanceof EEM_Base) {
761
-            // let's try to NOT swap out the current instance for a new one
762
-            // because if someone has a reference to it, we can't remove their reference
763
-            // so it's best to keep using the same reference, but change the original object
764
-            // reset all its properties to their original values as defined in the class
765
-            $r = new ReflectionClass(get_class(static::$_instance));
766
-            $static_properties = $r->getStaticProperties();
767
-            foreach ($r->getDefaultProperties() as $property => $value) {
768
-                // don't set instance to null like it was originally,
769
-                // but it's static anyways, and we're ignoring static properties (for now at least)
770
-                if (! isset($static_properties[ $property ])) {
771
-                    static::$_instance->{$property} = $value;
772
-                }
773
-            }
774
-            // and then directly call its constructor again, like we would if we were creating a new one
775
-            static::$_instance->__construct(
776
-                $timezone,
777
-                LoaderFactory::getLoader()->load('EventEspresso\core\services\orm\ModelFieldFactory')
778
-            );
779
-            return self::instance();
780
-        }
781
-        return null;
782
-    }
783
-
784
-
785
-
786
-    /**
787
-     * @return LoaderInterface
788
-     * @throws InvalidArgumentException
789
-     * @throws InvalidDataTypeException
790
-     * @throws InvalidInterfaceException
791
-     */
792
-    private static function getLoader()
793
-    {
794
-        if (! EEM_Base::$loader instanceof LoaderInterface) {
795
-            EEM_Base::$loader = LoaderFactory::getLoader();
796
-        }
797
-        return EEM_Base::$loader;
798
-    }
799
-
800
-
801
-
802
-    /**
803
-     * retrieve the status details from esp_status table as an array IF this model has the status table as a relation.
804
-     *
805
-     * @param  boolean $translated return localized strings or JUST the array.
806
-     * @return array
807
-     * @throws EE_Error
808
-     * @throws InvalidArgumentException
809
-     * @throws InvalidDataTypeException
810
-     * @throws InvalidInterfaceException
811
-     */
812
-    public function status_array($translated = false)
813
-    {
814
-        if (! array_key_exists('Status', $this->_model_relations)) {
815
-            return array();
816
-        }
817
-        $model_name = $this->get_this_model_name();
818
-        $status_type = str_replace(' ', '_', strtolower(str_replace('_', ' ', $model_name)));
819
-        $stati = EEM_Status::instance()->get_all(array(array('STS_type' => $status_type)));
820
-        $status_array = array();
821
-        foreach ($stati as $status) {
822
-            $status_array[ $status->ID() ] = $status->get('STS_code');
823
-        }
824
-        return $translated
825
-            ? EEM_Status::instance()->localized_status($status_array, false, 'sentence')
826
-            : $status_array;
827
-    }
828
-
829
-
830
-
831
-    /**
832
-     * Gets all the EE_Base_Class objects which match the $query_params, by querying the DB.
833
-     *
834
-     * @param array $query_params  @see https://github.com/eventespresso/event-espresso-core/tree/master/docs/G--Model-System/model-query-params.md
835
-     *                             or if you have the development copy of EE you can view this at the path:
836
-     *                             /docs/G--Model-System/model-query-params.md
837
-     * @return EE_Base_Class[]  *note that there is NO option to pass the output type. If you want results different
838
-     *                                        from EE_Base_Class[], use get_all_wpdb_results(). Array keys are object IDs (if there is a primary key on the model.
839
-     *                                        if not, numerically indexed) Some full examples: get 10 transactions
840
-     *                                        which have Scottish attendees: EEM_Transaction::instance()->get_all(
841
-     *                                        array( array(
842
-     *                                        'OR'=>array(
843
-     *                                        'Registration.Attendee.ATT_fname'=>array('like','Mc%'),
844
-     *                                        'Registration.Attendee.ATT_fname*other'=>array('like','Mac%')
845
-     *                                        )
846
-     *                                        ),
847
-     *                                        'limit'=>10,
848
-     *                                        'group_by'=>'TXN_ID'
849
-     *                                        ));
850
-     *                                        get all the answers to the question titled "shirt size" for event with id
851
-     *                                        12, ordered by their answer EEM_Answer::instance()->get_all(array( array(
852
-     *                                        'Question.QST_display_text'=>'shirt size',
853
-     *                                        'Registration.Event.EVT_ID'=>12
854
-     *                                        ),
855
-     *                                        'order_by'=>array('ANS_value'=>'ASC')
856
-     *                                        ));
857
-     * @throws EE_Error
858
-     */
859
-    public function get_all($query_params = array())
860
-    {
861
-        if (isset($query_params['limit'])
862
-            && ! isset($query_params['group_by'])
863
-        ) {
864
-            $query_params['group_by'] = array_keys($this->get_combined_primary_key_fields());
865
-        }
866
-        return $this->_create_objects($this->_get_all_wpdb_results($query_params, ARRAY_A, null));
867
-    }
868
-
869
-
870
-
871
-    /**
872
-     * Modifies the query parameters so we only get back model objects
873
-     * that "belong" to the current user
874
-     *
875
-     * @param array $query_params @see https://github.com/eventespresso/event-espresso-core/tree/master/docs/G--Model-System/model-query-params.md
876
-     * @return array @see https://github.com/eventespresso/event-espresso-core/tree/master/docs/G--Model-System/model-query-params.md
877
-     */
878
-    public function alter_query_params_to_only_include_mine($query_params = array())
879
-    {
880
-        $wp_user_field_name = $this->wp_user_field_name();
881
-        if ($wp_user_field_name) {
882
-            $query_params[0][ $wp_user_field_name ] = get_current_user_id();
883
-        }
884
-        return $query_params;
885
-    }
886
-
887
-
888
-
889
-    /**
890
-     * Returns the name of the field's name that points to the WP_User table
891
-     *  on this model (or follows the _model_chain_to_wp_user and uses that model's
892
-     * foreign key to the WP_User table)
893
-     *
894
-     * @return string|boolean string on success, boolean false when there is no
895
-     * foreign key to the WP_User table
896
-     */
897
-    public function wp_user_field_name()
898
-    {
899
-        try {
900
-            if (! empty($this->_model_chain_to_wp_user)) {
901
-                $models_to_follow_to_wp_users = explode('.', $this->_model_chain_to_wp_user);
902
-                $last_model_name = end($models_to_follow_to_wp_users);
903
-                $model_with_fk_to_wp_users = EE_Registry::instance()->load_model($last_model_name);
904
-                $model_chain_to_wp_user = $this->_model_chain_to_wp_user . '.';
905
-            } else {
906
-                $model_with_fk_to_wp_users = $this;
907
-                $model_chain_to_wp_user = '';
908
-            }
909
-            $wp_user_field = $model_with_fk_to_wp_users->get_foreign_key_to('WP_User');
910
-            return $model_chain_to_wp_user . $wp_user_field->get_name();
911
-        } catch (EE_Error $e) {
912
-            return false;
913
-        }
914
-    }
915
-
916
-
917
-
918
-    /**
919
-     * Returns the _model_chain_to_wp_user string, which indicates which related model
920
-     * (or transiently-related model) has a foreign key to the wp_users table;
921
-     * useful for finding if model objects of this type are 'owned' by the current user.
922
-     * This is an empty string when the foreign key is on this model and when it isn't,
923
-     * but is only non-empty when this model's ownership is indicated by a RELATED model
924
-     * (or transiently-related model)
925
-     *
926
-     * @return string
927
-     */
928
-    public function model_chain_to_wp_user()
929
-    {
930
-        return $this->_model_chain_to_wp_user;
931
-    }
932
-
933
-
934
-
935
-    /**
936
-     * Whether this model is 'owned' by a specific wordpress user (even indirectly,
937
-     * like how registrations don't have a foreign key to wp_users, but the
938
-     * events they are for are), or is unrelated to wp users.
939
-     * generally available
940
-     *
941
-     * @return boolean
942
-     */
943
-    public function is_owned()
944
-    {
945
-        if ($this->model_chain_to_wp_user()) {
946
-            return true;
947
-        }
948
-        try {
949
-            $this->get_foreign_key_to('WP_User');
950
-            return true;
951
-        } catch (EE_Error $e) {
952
-            return false;
953
-        }
954
-    }
955
-
956
-
957
-    /**
958
-     * Used internally to get WPDB results, because other functions, besides get_all, may want to do some queries, but
959
-     * may want to preserve the WPDB results (eg, update, which first queries to make sure we have all the tables on
960
-     * the model)
961
-     *
962
-     * @param array  $query_params      @see https://github.com/eventespresso/event-espresso-core/tree/master/docs/G--Model-System/model-query-params.md
963
-     * @param string $output            ARRAY_A, OBJECT_K, etc. Just like
964
-     * @param mixed  $columns_to_select , What columns to select. By default, we select all columns specified by the
965
-     *                                  fields on the model, and the models we joined to in the query. However, you can
966
-     *                                  override this and set the select to "*", or a specific column name, like
967
-     *                                  "ATT_ID", etc. If you would like to use these custom selections in WHERE,
968
-     *                                  GROUP_BY, or HAVING clauses, you must instead provide an array. Array keys are
969
-     *                                  the aliases used to refer to this selection, and values are to be
970
-     *                                  numerically-indexed arrays, where 0 is the selection and 1 is the data type.
971
-     *                                  Eg, array('count'=>array('COUNT(REG_ID)','%d'))
972
-     * @return array | stdClass[] like results of $wpdb->get_results($sql,OBJECT), (ie, output type is OBJECT)
973
-     * @throws EE_Error
974
-     * @throws InvalidArgumentException
975
-     */
976
-    protected function _get_all_wpdb_results($query_params = array(), $output = ARRAY_A, $columns_to_select = null)
977
-    {
978
-        $this->_custom_selections = $this->getCustomSelection($query_params, $columns_to_select);
979
-        ;
980
-        $model_query_info = $this->_create_model_query_info_carrier($query_params);
981
-        $select_expressions = $columns_to_select === null
982
-            ? $this->_construct_default_select_sql($model_query_info)
983
-            : '';
984
-        if ($this->_custom_selections instanceof CustomSelects) {
985
-            $custom_expressions = $this->_custom_selections->columnsToSelectExpression();
986
-            $select_expressions .= $select_expressions
987
-                ? ', ' . $custom_expressions
988
-                : $custom_expressions;
989
-        }
990
-
991
-        $SQL = "SELECT $select_expressions " . $this->_construct_2nd_half_of_select_query($model_query_info);
992
-        return $this->_do_wpdb_query('get_results', array($SQL, $output));
993
-    }
994
-
995
-
996
-    /**
997
-     * Get a CustomSelects object if the $query_params or $columns_to_select allows for it.
998
-     * Note: $query_params['extra_selects'] will always override any $columns_to_select values. It is the preferred
999
-     * method of including extra select information.
1000
-     *
1001
-     * @param array             $query_params
1002
-     * @param null|array|string $columns_to_select
1003
-     * @return null|CustomSelects
1004
-     * @throws InvalidArgumentException
1005
-     */
1006
-    protected function getCustomSelection(array $query_params, $columns_to_select = null)
1007
-    {
1008
-        if (! isset($query_params['extra_selects']) && $columns_to_select === null) {
1009
-            return null;
1010
-        }
1011
-        $selects = isset($query_params['extra_selects']) ? $query_params['extra_selects'] : $columns_to_select;
1012
-        $selects = is_string($selects) ? explode(',', $selects) : $selects;
1013
-        return new CustomSelects($selects);
1014
-    }
1015
-
1016
-
1017
-
1018
-    /**
1019
-     * Gets an array of rows from the database just like $wpdb->get_results would,
1020
-     * but you can use the model query params to more easily
1021
-     * take care of joins, field preparation etc.
1022
-     *
1023
-     * @param array  $query_params      @see https://github.com/eventespresso/event-espresso-core/tree/master/docs/G--Model-System/model-query-params.md
1024
-     * @param string $output            ARRAY_A, OBJECT_K, etc. Just like
1025
-     * @param mixed  $columns_to_select , What columns to select. By default, we select all columns specified by the
1026
-     *                                  fields on the model, and the models we joined to in the query. However, you can
1027
-     *                                  override this and set the select to "*", or a specific column name, like
1028
-     *                                  "ATT_ID", etc. If you would like to use these custom selections in WHERE,
1029
-     *                                  GROUP_BY, or HAVING clauses, you must instead provide an array. Array keys are
1030
-     *                                  the aliases used to refer to this selection, and values are to be
1031
-     *                                  numerically-indexed arrays, where 0 is the selection and 1 is the data type.
1032
-     *                                  Eg, array('count'=>array('COUNT(REG_ID)','%d'))
1033
-     * @return array|stdClass[] like results of $wpdb->get_results($sql,OBJECT), (ie, output type is OBJECT)
1034
-     * @throws EE_Error
1035
-     */
1036
-    public function get_all_wpdb_results($query_params = array(), $output = ARRAY_A, $columns_to_select = null)
1037
-    {
1038
-        return $this->_get_all_wpdb_results($query_params, $output, $columns_to_select);
1039
-    }
1040
-
1041
-
1042
-
1043
-    /**
1044
-     * For creating a custom select statement
1045
-     *
1046
-     * @param mixed $columns_to_select either a string to be inserted directly as the select statement,
1047
-     *                                 or an array where keys are aliases, and values are arrays where 0=>the selection
1048
-     *                                 SQL, and 1=>is the datatype
1049
-     * @throws EE_Error
1050
-     * @return string
1051
-     */
1052
-    private function _construct_select_from_input($columns_to_select)
1053
-    {
1054
-        if (is_array($columns_to_select)) {
1055
-            $select_sql_array = array();
1056
-            foreach ($columns_to_select as $alias => $selection_and_datatype) {
1057
-                if (! is_array($selection_and_datatype) || ! isset($selection_and_datatype[1])) {
1058
-                    throw new EE_Error(
1059
-                        sprintf(
1060
-                            __(
1061
-                                "Custom selection %s (alias %s) needs to be an array like array('COUNT(REG_ID)','%%d')",
1062
-                                'event_espresso'
1063
-                            ),
1064
-                            $selection_and_datatype,
1065
-                            $alias
1066
-                        )
1067
-                    );
1068
-                }
1069
-                if (! in_array($selection_and_datatype[1], $this->_valid_wpdb_data_types, true)) {
1070
-                    throw new EE_Error(
1071
-                        sprintf(
1072
-                            esc_html__(
1073
-                                "Datatype %s (for selection '%s' and alias '%s') is not a valid wpdb datatype (eg %%s)",
1074
-                                'event_espresso'
1075
-                            ),
1076
-                            $selection_and_datatype[1],
1077
-                            $selection_and_datatype[0],
1078
-                            $alias,
1079
-                            implode(', ', $this->_valid_wpdb_data_types)
1080
-                        )
1081
-                    );
1082
-                }
1083
-                $select_sql_array[] = "{$selection_and_datatype[0]} AS $alias";
1084
-            }
1085
-            $columns_to_select_string = implode(', ', $select_sql_array);
1086
-        } else {
1087
-            $columns_to_select_string = $columns_to_select;
1088
-        }
1089
-        return $columns_to_select_string;
1090
-    }
1091
-
1092
-
1093
-
1094
-    /**
1095
-     * Convenient wrapper for getting the primary key field's name. Eg, on Registration, this would be 'REG_ID'
1096
-     *
1097
-     * @return string
1098
-     * @throws EE_Error
1099
-     */
1100
-    public function primary_key_name()
1101
-    {
1102
-        return $this->get_primary_key_field()->get_name();
1103
-    }
1104
-
1105
-
1106
-
1107
-    /**
1108
-     * Gets a single item for this model from the DB, given only its ID (or null if none is found).
1109
-     * If there is no primary key on this model, $id is treated as primary key string
1110
-     *
1111
-     * @param mixed $id int or string, depending on the type of the model's primary key
1112
-     * @return EE_Base_Class
1113
-     */
1114
-    public function get_one_by_ID($id)
1115
-    {
1116
-        if ($this->get_from_entity_map($id)) {
1117
-            return $this->get_from_entity_map($id);
1118
-        }
1119
-        return $this->get_one(
1120
-            $this->alter_query_params_to_restrict_by_ID(
1121
-                $id,
1122
-                array('default_where_conditions' => EEM_Base::default_where_conditions_minimum_all)
1123
-            )
1124
-        );
1125
-    }
1126
-
1127
-
1128
-
1129
-    /**
1130
-     * Alters query parameters to only get items with this ID are returned.
1131
-     * Takes into account that the ID might be a string produced by EEM_Base::get_index_primary_key_string(),
1132
-     * or could just be a simple primary key ID
1133
-     *
1134
-     * @param int   $id
1135
-     * @param array $query_params
1136
-     * @return array of normal query params, @see https://github.com/eventespresso/event-espresso-core/tree/master/docs/G--Model-System/model-query-params.md
1137
-     * @throws EE_Error
1138
-     */
1139
-    public function alter_query_params_to_restrict_by_ID($id, $query_params = array())
1140
-    {
1141
-        if (! isset($query_params[0])) {
1142
-            $query_params[0] = array();
1143
-        }
1144
-        $conditions_from_id = $this->parse_index_primary_key_string($id);
1145
-        if ($conditions_from_id === null) {
1146
-            $query_params[0][ $this->primary_key_name() ] = $id;
1147
-        } else {
1148
-            // no primary key, so the $id must be from the get_index_primary_key_string()
1149
-            $query_params[0] = array_replace_recursive($query_params[0], $this->parse_index_primary_key_string($id));
1150
-        }
1151
-        return $query_params;
1152
-    }
1153
-
1154
-
1155
-
1156
-    /**
1157
-     * Gets a single item for this model from the DB, given the $query_params. Only returns a single class, not an
1158
-     * array. If no item is found, null is returned.
1159
-     *
1160
-     * @param array $query_params like EEM_Base's $query_params variable.
1161
-     * @return EE_Base_Class|EE_Soft_Delete_Base_Class|NULL
1162
-     * @throws EE_Error
1163
-     */
1164
-    public function get_one($query_params = array())
1165
-    {
1166
-        if (! is_array($query_params)) {
1167
-            EE_Error::doing_it_wrong(
1168
-                'EEM_Base::get_one',
1169
-                sprintf(
1170
-                    __('$query_params should be an array, you passed a variable of type %s', 'event_espresso'),
1171
-                    gettype($query_params)
1172
-                ),
1173
-                '4.6.0'
1174
-            );
1175
-            $query_params = array();
1176
-        }
1177
-        $query_params['limit'] = 1;
1178
-        $items = $this->get_all($query_params);
1179
-        if (empty($items)) {
1180
-            return null;
1181
-        }
1182
-        return array_shift($items);
1183
-    }
1184
-
1185
-
1186
-
1187
-    /**
1188
-     * Returns the next x number of items in sequence from the given value as
1189
-     * found in the database matching the given query conditions.
1190
-     *
1191
-     * @param mixed $current_field_value    Value used for the reference point.
1192
-     * @param null  $field_to_order_by      What field is used for the
1193
-     *                                      reference point.
1194
-     * @param int   $limit                  How many to return.
1195
-     * @param array $query_params           Extra conditions on the query.
1196
-     * @param null  $columns_to_select      If left null, then an array of
1197
-     *                                      EE_Base_Class objects is returned,
1198
-     *                                      otherwise you can indicate just the
1199
-     *                                      columns you want returned.
1200
-     * @return EE_Base_Class[]|array
1201
-     * @throws EE_Error
1202
-     */
1203
-    public function next_x(
1204
-        $current_field_value,
1205
-        $field_to_order_by = null,
1206
-        $limit = 1,
1207
-        $query_params = array(),
1208
-        $columns_to_select = null
1209
-    ) {
1210
-        return $this->_get_consecutive(
1211
-            $current_field_value,
1212
-            '>',
1213
-            $field_to_order_by,
1214
-            $limit,
1215
-            $query_params,
1216
-            $columns_to_select
1217
-        );
1218
-    }
1219
-
1220
-
1221
-
1222
-    /**
1223
-     * Returns the previous x number of items in sequence from the given value
1224
-     * as found in the database matching the given query conditions.
1225
-     *
1226
-     * @param mixed $current_field_value    Value used for the reference point.
1227
-     * @param null  $field_to_order_by      What field is used for the
1228
-     *                                      reference point.
1229
-     * @param int   $limit                  How many to return.
1230
-     * @param array $query_params           Extra conditions on the query.
1231
-     * @param null  $columns_to_select      If left null, then an array of
1232
-     *                                      EE_Base_Class objects is returned,
1233
-     *                                      otherwise you can indicate just the
1234
-     *                                      columns you want returned.
1235
-     * @return EE_Base_Class[]|array
1236
-     * @throws EE_Error
1237
-     */
1238
-    public function previous_x(
1239
-        $current_field_value,
1240
-        $field_to_order_by = null,
1241
-        $limit = 1,
1242
-        $query_params = array(),
1243
-        $columns_to_select = null
1244
-    ) {
1245
-        return $this->_get_consecutive(
1246
-            $current_field_value,
1247
-            '<',
1248
-            $field_to_order_by,
1249
-            $limit,
1250
-            $query_params,
1251
-            $columns_to_select
1252
-        );
1253
-    }
1254
-
1255
-
1256
-
1257
-    /**
1258
-     * Returns the next item in sequence from the given value as found in the
1259
-     * database matching the given query conditions.
1260
-     *
1261
-     * @param mixed $current_field_value    Value used for the reference point.
1262
-     * @param null  $field_to_order_by      What field is used for the
1263
-     *                                      reference point.
1264
-     * @param array $query_params           Extra conditions on the query.
1265
-     * @param null  $columns_to_select      If left null, then an EE_Base_Class
1266
-     *                                      object is returned, otherwise you
1267
-     *                                      can indicate just the columns you
1268
-     *                                      want and a single array indexed by
1269
-     *                                      the columns will be returned.
1270
-     * @return EE_Base_Class|null|array()
1271
-     * @throws EE_Error
1272
-     */
1273
-    public function next(
1274
-        $current_field_value,
1275
-        $field_to_order_by = null,
1276
-        $query_params = array(),
1277
-        $columns_to_select = null
1278
-    ) {
1279
-        $results = $this->_get_consecutive(
1280
-            $current_field_value,
1281
-            '>',
1282
-            $field_to_order_by,
1283
-            1,
1284
-            $query_params,
1285
-            $columns_to_select
1286
-        );
1287
-        return empty($results) ? null : reset($results);
1288
-    }
1289
-
1290
-
1291
-
1292
-    /**
1293
-     * Returns the previous item in sequence from the given value as found in
1294
-     * the database matching the given query conditions.
1295
-     *
1296
-     * @param mixed $current_field_value    Value used for the reference point.
1297
-     * @param null  $field_to_order_by      What field is used for the
1298
-     *                                      reference point.
1299
-     * @param array $query_params           Extra conditions on the query.
1300
-     * @param null  $columns_to_select      If left null, then an EE_Base_Class
1301
-     *                                      object is returned, otherwise you
1302
-     *                                      can indicate just the columns you
1303
-     *                                      want and a single array indexed by
1304
-     *                                      the columns will be returned.
1305
-     * @return EE_Base_Class|null|array()
1306
-     * @throws EE_Error
1307
-     */
1308
-    public function previous(
1309
-        $current_field_value,
1310
-        $field_to_order_by = null,
1311
-        $query_params = array(),
1312
-        $columns_to_select = null
1313
-    ) {
1314
-        $results = $this->_get_consecutive(
1315
-            $current_field_value,
1316
-            '<',
1317
-            $field_to_order_by,
1318
-            1,
1319
-            $query_params,
1320
-            $columns_to_select
1321
-        );
1322
-        return empty($results) ? null : reset($results);
1323
-    }
1324
-
1325
-
1326
-
1327
-    /**
1328
-     * Returns the a consecutive number of items in sequence from the given
1329
-     * value as found in the database matching the given query conditions.
1330
-     *
1331
-     * @param mixed  $current_field_value   Value used for the reference point.
1332
-     * @param string $operand               What operand is used for the sequence.
1333
-     * @param string $field_to_order_by     What field is used for the reference point.
1334
-     * @param int    $limit                 How many to return.
1335
-     * @param array  $query_params          Extra conditions on the query.
1336
-     * @param null   $columns_to_select     If left null, then an array of EE_Base_Class objects is returned,
1337
-     *                                      otherwise you can indicate just the columns you want returned.
1338
-     * @return EE_Base_Class[]|array
1339
-     * @throws EE_Error
1340
-     */
1341
-    protected function _get_consecutive(
1342
-        $current_field_value,
1343
-        $operand = '>',
1344
-        $field_to_order_by = null,
1345
-        $limit = 1,
1346
-        $query_params = array(),
1347
-        $columns_to_select = null
1348
-    ) {
1349
-        // if $field_to_order_by is empty then let's assume we're ordering by the primary key.
1350
-        if (empty($field_to_order_by)) {
1351
-            if ($this->has_primary_key_field()) {
1352
-                $field_to_order_by = $this->get_primary_key_field()->get_name();
1353
-            } else {
1354
-                if (WP_DEBUG) {
1355
-                    throw new EE_Error(__(
1356
-                        'EEM_Base::_get_consecutive() has been called with no $field_to_order_by argument and there is no primary key on the field.  Please provide the field you would like to use as the base for retrieving the next item(s).',
1357
-                        'event_espresso'
1358
-                    ));
1359
-                }
1360
-                EE_Error::add_error(__('There was an error with the query.', 'event_espresso'));
1361
-                return array();
1362
-            }
1363
-        }
1364
-        if (! is_array($query_params)) {
1365
-            EE_Error::doing_it_wrong(
1366
-                'EEM_Base::_get_consecutive',
1367
-                sprintf(
1368
-                    __('$query_params should be an array, you passed a variable of type %s', 'event_espresso'),
1369
-                    gettype($query_params)
1370
-                ),
1371
-                '4.6.0'
1372
-            );
1373
-            $query_params = array();
1374
-        }
1375
-        // let's add the where query param for consecutive look up.
1376
-        $query_params[0][ $field_to_order_by ] = array($operand, $current_field_value);
1377
-        $query_params['limit'] = $limit;
1378
-        // set direction
1379
-        $incoming_orderby = isset($query_params['order_by']) ? (array) $query_params['order_by'] : array();
1380
-        $query_params['order_by'] = $operand === '>'
1381
-            ? array($field_to_order_by => 'ASC') + $incoming_orderby
1382
-            : array($field_to_order_by => 'DESC') + $incoming_orderby;
1383
-        // if $columns_to_select is empty then that means we're returning EE_Base_Class objects
1384
-        if (empty($columns_to_select)) {
1385
-            return $this->get_all($query_params);
1386
-        }
1387
-        // getting just the fields
1388
-        return $this->_get_all_wpdb_results($query_params, ARRAY_A, $columns_to_select);
1389
-    }
1390
-
1391
-
1392
-
1393
-    /**
1394
-     * This sets the _timezone property after model object has been instantiated.
1395
-     *
1396
-     * @param null | string $timezone valid PHP DateTimeZone timezone string
1397
-     */
1398
-    public function set_timezone($timezone)
1399
-    {
1400
-        if ($timezone !== null) {
1401
-            $this->_timezone = $timezone;
1402
-        }
1403
-        // note we need to loop through relations and set the timezone on those objects as well.
1404
-        foreach ($this->_model_relations as $relation) {
1405
-            $relation->set_timezone($timezone);
1406
-        }
1407
-        // and finally we do the same for any datetime fields
1408
-        foreach ($this->_fields as $field) {
1409
-            if ($field instanceof EE_Datetime_Field) {
1410
-                $field->set_timezone($timezone);
1411
-            }
1412
-        }
1413
-    }
1414
-
1415
-
1416
-
1417
-    /**
1418
-     * This just returns whatever is set for the current timezone.
1419
-     *
1420
-     * @access public
1421
-     * @return string
1422
-     */
1423
-    public function get_timezone()
1424
-    {
1425
-        // first validate if timezone is set.  If not, then let's set it be whatever is set on the model fields.
1426
-        if (empty($this->_timezone)) {
1427
-            foreach ($this->_fields as $field) {
1428
-                if ($field instanceof EE_Datetime_Field) {
1429
-                    $this->set_timezone($field->get_timezone());
1430
-                    break;
1431
-                }
1432
-            }
1433
-        }
1434
-        // if timezone STILL empty then return the default timezone for the site.
1435
-        if (empty($this->_timezone)) {
1436
-            $this->set_timezone(EEH_DTT_Helper::get_timezone());
1437
-        }
1438
-        return $this->_timezone;
1439
-    }
1440
-
1441
-
1442
-
1443
-    /**
1444
-     * This returns the date formats set for the given field name and also ensures that
1445
-     * $this->_timezone property is set correctly.
1446
-     *
1447
-     * @since 4.6.x
1448
-     * @param string $field_name The name of the field the formats are being retrieved for.
1449
-     * @param bool   $pretty     Whether to return the pretty formats (true) or not (false).
1450
-     * @throws EE_Error   If the given field_name is not of the EE_Datetime_Field type.
1451
-     * @return array formats in an array with the date format first, and the time format last.
1452
-     */
1453
-    public function get_formats_for($field_name, $pretty = false)
1454
-    {
1455
-        $field_settings = $this->field_settings_for($field_name);
1456
-        // if not a valid EE_Datetime_Field then throw error
1457
-        if (! $field_settings instanceof EE_Datetime_Field) {
1458
-            throw new EE_Error(sprintf(__(
1459
-                'The field sent into EEM_Base::get_formats_for (%s) is not registered as a EE_Datetime_Field. Please check the spelling and make sure you are submitting the right field name to retrieve date_formats for.',
1460
-                'event_espresso'
1461
-            ), $field_name));
1462
-        }
1463
-        // while we are here, let's make sure the timezone internally in EEM_Base matches what is stored on
1464
-        // the field.
1465
-        $this->_timezone = $field_settings->get_timezone();
1466
-        return array($field_settings->get_date_format($pretty), $field_settings->get_time_format($pretty));
1467
-    }
1468
-
1469
-
1470
-
1471
-    /**
1472
-     * This returns the current time in a format setup for a query on this model.
1473
-     * Usage of this method makes it easier to setup queries against EE_Datetime_Field columns because
1474
-     * it will return:
1475
-     *  - a formatted string in the timezone and format currently set on the EE_Datetime_Field for the given field for
1476
-     *  NOW
1477
-     *  - or a unix timestamp (equivalent to time())
1478
-     * Note: When requesting a formatted string, if the date or time format doesn't include seconds, for example,
1479
-     * the time returned, because it uses that format, will also NOT include seconds. For this reason, if you want
1480
-     * the time returned to be the current time down to the exact second, set $timestamp to true.
1481
-     * @since 4.6.x
1482
-     * @param string $field_name       The field the current time is needed for.
1483
-     * @param bool   $timestamp        True means to return a unix timestamp. Otherwise a
1484
-     *                                 formatted string matching the set format for the field in the set timezone will
1485
-     *                                 be returned.
1486
-     * @param string $what             Whether to return the string in just the time format, the date format, or both.
1487
-     * @throws EE_Error    If the given field_name is not of the EE_Datetime_Field type.
1488
-     * @return int|string  If the given field_name is not of the EE_Datetime_Field type, then an EE_Error
1489
-     *                                 exception is triggered.
1490
-     */
1491
-    public function current_time_for_query($field_name, $timestamp = false, $what = 'both')
1492
-    {
1493
-        $formats = $this->get_formats_for($field_name);
1494
-        $DateTime = new DateTime("now", new DateTimeZone($this->_timezone));
1495
-        if ($timestamp) {
1496
-            return $DateTime->format('U');
1497
-        }
1498
-        // not returning timestamp, so return formatted string in timezone.
1499
-        switch ($what) {
1500
-            case 'time':
1501
-                return $DateTime->format($formats[1]);
1502
-                break;
1503
-            case 'date':
1504
-                return $DateTime->format($formats[0]);
1505
-                break;
1506
-            default:
1507
-                return $DateTime->format(implode(' ', $formats));
1508
-                break;
1509
-        }
1510
-    }
1511
-
1512
-
1513
-
1514
-    /**
1515
-     * This receives a time string for a given field and ensures that it is setup to match what the internal settings
1516
-     * for the model are.  Returns a DateTime object.
1517
-     * Note: a gotcha for when you send in unix timestamp.  Remember a unix timestamp is already timezone agnostic,
1518
-     * (functionally the equivalent of UTC+0).  So when you send it in, whatever timezone string you include is
1519
-     * ignored.
1520
-     *
1521
-     * @param string $field_name      The field being setup.
1522
-     * @param string $timestring      The date time string being used.
1523
-     * @param string $incoming_format The format for the time string.
1524
-     * @param string $timezone        By default, it is assumed the incoming time string is in timezone for
1525
-     *                                the blog.  If this is not the case, then it can be specified here.  If incoming
1526
-     *                                format is
1527
-     *                                'U', this is ignored.
1528
-     * @return DateTime
1529
-     * @throws EE_Error
1530
-     */
1531
-    public function convert_datetime_for_query($field_name, $timestring, $incoming_format, $timezone = '')
1532
-    {
1533
-        // just using this to ensure the timezone is set correctly internally
1534
-        $this->get_formats_for($field_name);
1535
-        // load EEH_DTT_Helper
1536
-        $set_timezone = empty($timezone) ? EEH_DTT_Helper::get_timezone() : $timezone;
1537
-        $incomingDateTime = date_create_from_format($incoming_format, $timestring, new DateTimeZone($set_timezone));
1538
-        EEH_DTT_Helper::setTimezone($incomingDateTime, new DateTimeZone($this->_timezone));
1539
-        return \EventEspresso\core\domain\entities\DbSafeDateTime::createFromDateTime($incomingDateTime);
1540
-    }
1541
-
1542
-
1543
-
1544
-    /**
1545
-     * Gets all the tables comprising this model. Array keys are the table aliases, and values are EE_Table objects
1546
-     *
1547
-     * @return EE_Table_Base[]
1548
-     */
1549
-    public function get_tables()
1550
-    {
1551
-        return $this->_tables;
1552
-    }
1553
-
1554
-
1555
-
1556
-    /**
1557
-     * Updates all the database entries (in each table for this model) according to $fields_n_values and optionally
1558
-     * also updates all the model objects, where the criteria expressed in $query_params are met..
1559
-     * Also note: if this model has multiple tables, this update verifies all the secondary tables have an entry for
1560
-     * each row (in the primary table) we're trying to update; if not, it inserts an entry in the secondary table. Eg:
1561
-     * if our model has 2 tables: wp_posts (primary), and wp_esp_event (secondary). Let's say we are trying to update a
1562
-     * model object with EVT_ID = 1
1563
-     * (which means where wp_posts has ID = 1, because wp_posts.ID is the primary key's column), which exists, but
1564
-     * there is no entry in wp_esp_event for this entry in wp_posts. So, this update script will insert a row into
1565
-     * wp_esp_event, using any available parameters from $fields_n_values (eg, if "EVT_limit" => 40 is in
1566
-     * $fields_n_values, the new entry in wp_esp_event will set EVT_limit = 40, and use default for other columns which
1567
-     * are not specified)
1568
-     *
1569
-     * @param array   $fields_n_values         keys are model fields (exactly like keys in EEM_Base::_fields, NOT db
1570
-     *                                         columns!), values are strings, ints, floats, and maybe arrays if they
1571
-     *                                         are to be serialized. Basically, the values are what you'd expect to be
1572
-     *                                         values on the model, NOT necessarily what's in the DB. For example, if
1573
-     *                                         we wanted to update only the TXN_details on any Transactions where its
1574
-     *                                         ID=34, we'd use this method as follows:
1575
-     *                                         EEM_Transaction::instance()->update(
1576
-     *                                         array('TXN_details'=>array('detail1'=>'monkey','detail2'=>'banana'),
1577
-     *                                         array(array('TXN_ID'=>34)));
1578
-     * @param array   $query_params            @see https://github.com/eventespresso/event-espresso-core/tree/master/docs/G--Model-System/model-query-params.md
1579
-     *                                         Eg, consider updating Question's QST_admin_label field is of type
1580
-     *                                         Simple_HTML. If you use this function to update that field to $new_value
1581
-     *                                         = (note replace 8's with appropriate opening and closing tags in the
1582
-     *                                         following example)"8script8alert('I hack all');8/script88b8boom
1583
-     *                                         baby8/b8", then if you set $values_already_prepared_by_model_object to
1584
-     *                                         TRUE, it is assumed that you've already called
1585
-     *                                         EE_Simple_HTML_Field->prepare_for_set($new_value), which removes the
1586
-     *                                         malicious javascript. However, if
1587
-     *                                         $values_already_prepared_by_model_object is left as FALSE, then
1588
-     *                                         EE_Simple_HTML_Field->prepare_for_set($new_value) will be called on it,
1589
-     *                                         and every other field, before insertion. We provide this parameter
1590
-     *                                         because model objects perform their prepare_for_set function on all
1591
-     *                                         their values, and so don't need to be called again (and in many cases,
1592
-     *                                         shouldn't be called again. Eg: if we escape HTML characters in the
1593
-     *                                         prepare_for_set method...)
1594
-     * @param boolean $keep_model_objs_in_sync if TRUE, makes sure we ALSO update model objects
1595
-     *                                         in this model's entity map according to $fields_n_values that match
1596
-     *                                         $query_params. This obviously has some overhead, so you can disable it
1597
-     *                                         by setting this to FALSE, but be aware that model objects being used
1598
-     *                                         could get out-of-sync with the database
1599
-     * @return int how many rows got updated or FALSE if something went wrong with the query (wp returns FALSE or num
1600
-     *                                         rows affected which *could* include 0 which DOES NOT mean the query was
1601
-     *                                         bad)
1602
-     * @throws EE_Error
1603
-     */
1604
-    public function update($fields_n_values, $query_params, $keep_model_objs_in_sync = true)
1605
-    {
1606
-        if (! is_array($query_params)) {
1607
-            EE_Error::doing_it_wrong(
1608
-                'EEM_Base::update',
1609
-                sprintf(
1610
-                    __('$query_params should be an array, you passed a variable of type %s', 'event_espresso'),
1611
-                    gettype($query_params)
1612
-                ),
1613
-                '4.6.0'
1614
-            );
1615
-            $query_params = array();
1616
-        }
1617
-        /**
1618
-         * Action called before a model update call has been made.
1619
-         *
1620
-         * @param EEM_Base $model
1621
-         * @param array    $fields_n_values the updated fields and their new values
1622
-         * @param array    $query_params    @see https://github.com/eventespresso/event-espresso-core/tree/master/docs/G--Model-System/model-query-params.md
1623
-         */
1624
-        do_action('AHEE__EEM_Base__update__begin', $this, $fields_n_values, $query_params);
1625
-        /**
1626
-         * Filters the fields about to be updated given the query parameters. You can provide the
1627
-         * $query_params to $this->get_all() to find exactly which records will be updated
1628
-         *
1629
-         * @param array    $fields_n_values fields and their new values
1630
-         * @param EEM_Base $model           the model being queried
1631
-         * @param array    $query_params    @see https://github.com/eventespresso/event-espresso-core/tree/master/docs/G--Model-System/model-query-params.md
1632
-         */
1633
-        $fields_n_values = (array) apply_filters(
1634
-            'FHEE__EEM_Base__update__fields_n_values',
1635
-            $fields_n_values,
1636
-            $this,
1637
-            $query_params
1638
-        );
1639
-        // need to verify that, for any entry we want to update, there are entries in each secondary table.
1640
-        // to do that, for each table, verify that it's PK isn't null.
1641
-        $tables = $this->get_tables();
1642
-        // and if the other tables don't have a row for each table-to-be-updated, we'll insert one with whatever values available in the current update query
1643
-        // NOTE: we should make this code more efficient by NOT querying twice
1644
-        // before the real update, but that needs to first go through ALPHA testing
1645
-        // as it's dangerous. says Mike August 8 2014
1646
-        // we want to make sure the default_where strategy is ignored
1647
-        $this->_ignore_where_strategy = true;
1648
-        $wpdb_select_results = $this->_get_all_wpdb_results($query_params);
1649
-        foreach ($wpdb_select_results as $wpdb_result) {
1650
-            // type cast stdClass as array
1651
-            $wpdb_result = (array) $wpdb_result;
1652
-            // get the model object's PK, as we'll want this if we need to insert a row into secondary tables
1653
-            if ($this->has_primary_key_field()) {
1654
-                $main_table_pk_value = $wpdb_result[ $this->get_primary_key_field()->get_qualified_column() ];
1655
-            } else {
1656
-                // if there's no primary key, we basically can't support having a 2nd table on the model (we could but it would be lots of work)
1657
-                $main_table_pk_value = null;
1658
-            }
1659
-            // if there are more than 1 tables, we'll want to verify that each table for this model has an entry in the other tables
1660
-            // and if the other tables don't have a row for each table-to-be-updated, we'll insert one with whatever values available in the current update query
1661
-            if (count($tables) > 1) {
1662
-                // foreach matching row in the DB, ensure that each table's PK isn't null. If so, there must not be an entry
1663
-                // in that table, and so we'll want to insert one
1664
-                foreach ($tables as $table_obj) {
1665
-                    $this_table_pk_column = $table_obj->get_fully_qualified_pk_column();
1666
-                    // if there is no private key for this table on the results, it means there's no entry
1667
-                    // in this table, right? so insert a row in the current table, using any fields available
1668
-                    if (! (array_key_exists($this_table_pk_column, $wpdb_result)
1669
-                           && $wpdb_result[ $this_table_pk_column ])
1670
-                    ) {
1671
-                        $success = $this->_insert_into_specific_table(
1672
-                            $table_obj,
1673
-                            $fields_n_values,
1674
-                            $main_table_pk_value
1675
-                        );
1676
-                        // if we died here, report the error
1677
-                        if (! $success) {
1678
-                            return false;
1679
-                        }
1680
-                    }
1681
-                }
1682
-            }
1683
-            //              //and now check that if we have cached any models by that ID on the model, that
1684
-            //              //they also get updated properly
1685
-            //              $model_object = $this->get_from_entity_map( $main_table_pk_value );
1686
-            //              if( $model_object ){
1687
-            //                  foreach( $fields_n_values as $field => $value ){
1688
-            //                      $model_object->set($field, $value);
1689
-            // let's make sure default_where strategy is followed now
1690
-            $this->_ignore_where_strategy = false;
1691
-        }
1692
-        // if we want to keep model objects in sync, AND
1693
-        // if this wasn't called from a model object (to update itself)
1694
-        // then we want to make sure we keep all the existing
1695
-        // model objects in sync with the db
1696
-        if ($keep_model_objs_in_sync && ! $this->_values_already_prepared_by_model_object) {
1697
-            if ($this->has_primary_key_field()) {
1698
-                $model_objs_affected_ids = $this->get_col($query_params);
1699
-            } else {
1700
-                // we need to select a bunch of columns and then combine them into the the "index primary key string"s
1701
-                $models_affected_key_columns = $this->_get_all_wpdb_results($query_params, ARRAY_A);
1702
-                $model_objs_affected_ids = array();
1703
-                foreach ($models_affected_key_columns as $row) {
1704
-                    $combined_index_key = $this->get_index_primary_key_string($row);
1705
-                    $model_objs_affected_ids[ $combined_index_key ] = $combined_index_key;
1706
-                }
1707
-            }
1708
-            if (! $model_objs_affected_ids) {
1709
-                // wait wait wait- if nothing was affected let's stop here
1710
-                return 0;
1711
-            }
1712
-            foreach ($model_objs_affected_ids as $id) {
1713
-                $model_obj_in_entity_map = $this->get_from_entity_map($id);
1714
-                if ($model_obj_in_entity_map) {
1715
-                    foreach ($fields_n_values as $field => $new_value) {
1716
-                        $model_obj_in_entity_map->set($field, $new_value);
1717
-                    }
1718
-                }
1719
-            }
1720
-            // if there is a primary key on this model, we can now do a slight optimization
1721
-            if ($this->has_primary_key_field()) {
1722
-                // we already know what we want to update. So let's make the query simpler so it's a little more efficient
1723
-                $query_params = array(
1724
-                    array($this->primary_key_name() => array('IN', $model_objs_affected_ids)),
1725
-                    'limit'                    => count($model_objs_affected_ids),
1726
-                    'default_where_conditions' => EEM_Base::default_where_conditions_none,
1727
-                );
1728
-            }
1729
-        }
1730
-        $model_query_info = $this->_create_model_query_info_carrier($query_params);
1731
-        $SQL = "UPDATE "
1732
-               . $model_query_info->get_full_join_sql()
1733
-               . " SET "
1734
-               . $this->_construct_update_sql($fields_n_values)
1735
-               . $model_query_info->get_where_sql();// note: doesn't use _construct_2nd_half_of_select_query() because doesn't accept LIMIT, ORDER BY, etc.
1736
-        $rows_affected = $this->_do_wpdb_query('query', array($SQL));
1737
-        /**
1738
-         * Action called after a model update call has been made.
1739
-         *
1740
-         * @param EEM_Base $model
1741
-         * @param array    $fields_n_values the updated fields and their new values
1742
-         * @param array    $query_params    @see https://github.com/eventespresso/event-espresso-core/tree/master/docs/G--Model-System/model-query-params.md
1743
-         * @param int      $rows_affected
1744
-         */
1745
-        do_action('AHEE__EEM_Base__update__end', $this, $fields_n_values, $query_params, $rows_affected);
1746
-        return $rows_affected;// how many supposedly got updated
1747
-    }
1748
-
1749
-
1750
-
1751
-    /**
1752
-     * Analogous to $wpdb->get_col, returns a 1-dimensional array where teh values
1753
-     * are teh values of the field specified (or by default the primary key field)
1754
-     * that matched the query params. Note that you should pass the name of the
1755
-     * model FIELD, not the database table's column name.
1756
-     *
1757
-     * @param array  $query_params @see https://github.com/eventespresso/event-espresso-core/tree/master/docs/G--Model-System/model-query-params.md
1758
-     * @param string $field_to_select
1759
-     * @return array just like $wpdb->get_col()
1760
-     * @throws EE_Error
1761
-     */
1762
-    public function get_col($query_params = array(), $field_to_select = null)
1763
-    {
1764
-        if ($field_to_select) {
1765
-            $field = $this->field_settings_for($field_to_select);
1766
-        } elseif ($this->has_primary_key_field()) {
1767
-            $field = $this->get_primary_key_field();
1768
-        } else {
1769
-            // no primary key, just grab the first column
1770
-            $field = reset($this->field_settings());
1771
-        }
1772
-        $model_query_info = $this->_create_model_query_info_carrier($query_params);
1773
-        $select_expressions = $field->get_qualified_column();
1774
-        $SQL = "SELECT $select_expressions " . $this->_construct_2nd_half_of_select_query($model_query_info);
1775
-        return $this->_do_wpdb_query('get_col', array($SQL));
1776
-    }
1777
-
1778
-
1779
-
1780
-    /**
1781
-     * Returns a single column value for a single row from the database
1782
-     *
1783
-     * @param array  $query_params    @see https://github.com/eventespresso/event-espresso-core/tree/master/docs/G--Model-System/model-query-params.md
1784
-     * @param string $field_to_select @see EEM_Base::get_col()
1785
-     * @return string
1786
-     * @throws EE_Error
1787
-     */
1788
-    public function get_var($query_params = array(), $field_to_select = null)
1789
-    {
1790
-        $query_params['limit'] = 1;
1791
-        $col = $this->get_col($query_params, $field_to_select);
1792
-        if (! empty($col)) {
1793
-            return reset($col);
1794
-        }
1795
-        return null;
1796
-    }
1797
-
1798
-
1799
-
1800
-    /**
1801
-     * Makes the SQL for after "UPDATE table_X inner join table_Y..." and before "...WHERE". Eg "Question.name='party
1802
-     * time?', Question.desc='what do you think?',..." Values are filtered through wpdb->prepare to avoid against SQL
1803
-     * injection, but currently no further filtering is done
1804
-     *
1805
-     * @global      $wpdb
1806
-     * @param array $fields_n_values array keys are field names on this model, and values are what those fields should
1807
-     *                               be updated to in the DB
1808
-     * @return string of SQL
1809
-     * @throws EE_Error
1810
-     */
1811
-    public function _construct_update_sql($fields_n_values)
1812
-    {
1813
-        /** @type WPDB $wpdb */
1814
-        global $wpdb;
1815
-        $cols_n_values = array();
1816
-        foreach ($fields_n_values as $field_name => $value) {
1817
-            $field_obj = $this->field_settings_for($field_name);
1818
-            // if the value is NULL, we want to assign the value to that.
1819
-            // wpdb->prepare doesn't really handle that properly
1820
-            $prepared_value = $this->_prepare_value_or_use_default($field_obj, $fields_n_values);
1821
-            $value_sql = $prepared_value === null ? 'NULL'
1822
-                : $wpdb->prepare($field_obj->get_wpdb_data_type(), $prepared_value);
1823
-            $cols_n_values[] = $field_obj->get_qualified_column() . "=" . $value_sql;
1824
-        }
1825
-        return implode(",", $cols_n_values);
1826
-    }
1827
-
1828
-
1829
-
1830
-    /**
1831
-     * Deletes a single row from the DB given the model object's primary key value. (eg, EE_Attendee->ID()'s value).
1832
-     * Performs a HARD delete, meaning the database row should always be removed,
1833
-     * not just have a flag field on it switched
1834
-     * Wrapper for EEM_Base::delete_permanently()
1835
-     *
1836
-     * @param mixed $id
1837
-     * @param boolean $allow_blocking
1838
-     * @return int the number of rows deleted
1839
-     * @throws EE_Error
1840
-     */
1841
-    public function delete_permanently_by_ID($id, $allow_blocking = true)
1842
-    {
1843
-        return $this->delete_permanently(
1844
-            array(
1845
-                array($this->get_primary_key_field()->get_name() => $id),
1846
-                'limit' => 1,
1847
-            ),
1848
-            $allow_blocking
1849
-        );
1850
-    }
1851
-
1852
-
1853
-
1854
-    /**
1855
-     * Deletes a single row from the DB given the model object's primary key value. (eg, EE_Attendee->ID()'s value).
1856
-     * Wrapper for EEM_Base::delete()
1857
-     *
1858
-     * @param mixed $id
1859
-     * @param boolean $allow_blocking
1860
-     * @return int the number of rows deleted
1861
-     * @throws EE_Error
1862
-     */
1863
-    public function delete_by_ID($id, $allow_blocking = true)
1864
-    {
1865
-        return $this->delete(
1866
-            array(
1867
-                array($this->get_primary_key_field()->get_name() => $id),
1868
-                'limit' => 1,
1869
-            ),
1870
-            $allow_blocking
1871
-        );
1872
-    }
1873
-
1874
-
1875
-
1876
-    /**
1877
-     * Identical to delete_permanently, but does a "soft" delete if possible,
1878
-     * meaning if the model has a field that indicates its been "trashed" or
1879
-     * "soft deleted", we will just set that instead of actually deleting the rows.
1880
-     *
1881
-     * @see EEM_Base::delete_permanently
1882
-     * @param array   $query_params
1883
-     * @param boolean $allow_blocking
1884
-     * @return int how many rows got deleted
1885
-     * @throws EE_Error
1886
-     */
1887
-    public function delete($query_params, $allow_blocking = true)
1888
-    {
1889
-        return $this->delete_permanently($query_params, $allow_blocking);
1890
-    }
1891
-
1892
-
1893
-
1894
-    /**
1895
-     * Deletes the model objects that meet the query params. Note: this method is overridden
1896
-     * in EEM_Soft_Delete_Base so that soft-deleted model objects are instead only flagged
1897
-     * as archived, not actually deleted
1898
-     *
1899
-     * @param array   $query_params   @see https://github.com/eventespresso/event-espresso-core/tree/master/docs/G--Model-System/model-query-params.md
1900
-     * @param boolean $allow_blocking if TRUE, matched objects will only be deleted if there is no related model info
1901
-     *                                that blocks it (ie, there' sno other data that depends on this data); if false,
1902
-     *                                deletes regardless of other objects which may depend on it. Its generally
1903
-     *                                advisable to always leave this as TRUE, otherwise you could easily corrupt your
1904
-     *                                DB
1905
-     * @return int how many rows got deleted
1906
-     * @throws EE_Error
1907
-     */
1908
-    public function delete_permanently($query_params, $allow_blocking = true)
1909
-    {
1910
-        /**
1911
-         * Action called just before performing a real deletion query. You can use the
1912
-         * model and its $query_params to find exactly which items will be deleted
1913
-         *
1914
-         * @param EEM_Base $model
1915
-         * @param array    $query_params   @see https://github.com/eventespresso/event-espresso-core/tree/master/docs/G--Model-System/model-query-params.md
1916
-         * @param boolean  $allow_blocking whether or not to allow related model objects
1917
-         *                                 to block (prevent) this deletion
1918
-         */
1919
-        do_action('AHEE__EEM_Base__delete__begin', $this, $query_params, $allow_blocking);
1920
-        // some MySQL databases may be running safe mode, which may restrict
1921
-        // deletion if there is no KEY column used in the WHERE statement of a deletion.
1922
-        // to get around this, we first do a SELECT, get all the IDs, and then run another query
1923
-        // to delete them
1924
-        $items_for_deletion = $this->_get_all_wpdb_results($query_params);
1925
-        $columns_and_ids_for_deleting = $this->_get_ids_for_delete($items_for_deletion, $allow_blocking);
1926
-        $deletion_where_query_part = $this->_build_query_part_for_deleting_from_columns_and_values(
1927
-            $columns_and_ids_for_deleting
1928
-        );
1929
-        /**
1930
-         * Allows client code to act on the items being deleted before the query is actually executed.
1931
-         *
1932
-         * @param EEM_Base $this  The model instance being acted on.
1933
-         * @param array    $query_params  The incoming array of query parameters influencing what gets deleted.
1934
-         * @param bool     $allow_blocking @see param description in method phpdoc block.
1935
-         * @param array $columns_and_ids_for_deleting       An array indicating what entities will get removed as
1936
-         *                                                  derived from the incoming query parameters.
1937
-         *                                                  @see details on the structure of this array in the phpdocs
1938
-         *                                                  for the `_get_ids_for_delete_method`
1939
-         *
1940
-         */
1941
-        do_action(
1942
-            'AHEE__EEM_Base__delete__before_query',
1943
-            $this,
1944
-            $query_params,
1945
-            $allow_blocking,
1946
-            $columns_and_ids_for_deleting
1947
-        );
1948
-        if ($deletion_where_query_part) {
1949
-            $model_query_info = $this->_create_model_query_info_carrier($query_params);
1950
-            $table_aliases = array_keys($this->_tables);
1951
-            $SQL = "DELETE "
1952
-                   . implode(", ", $table_aliases)
1953
-                   . " FROM "
1954
-                   . $model_query_info->get_full_join_sql()
1955
-                   . " WHERE "
1956
-                   . $deletion_where_query_part;
1957
-            $rows_deleted = $this->_do_wpdb_query('query', array($SQL));
1958
-        } else {
1959
-            $rows_deleted = 0;
1960
-        }
1961
-
1962
-        // Next, make sure those items are removed from the entity map; if they could be put into it at all; and if
1963
-        // there was no error with the delete query.
1964
-        if ($this->has_primary_key_field()
1965
-            && $rows_deleted !== false
1966
-            && isset($columns_and_ids_for_deleting[ $this->get_primary_key_field()->get_qualified_column() ])
1967
-        ) {
1968
-            $ids_for_removal = $columns_and_ids_for_deleting[ $this->get_primary_key_field()->get_qualified_column() ];
1969
-            foreach ($ids_for_removal as $id) {
1970
-                if (isset($this->_entity_map[ EEM_Base::$_model_query_blog_id ][ $id ])) {
1971
-                    unset($this->_entity_map[ EEM_Base::$_model_query_blog_id ][ $id ]);
1972
-                }
1973
-            }
1974
-
1975
-            // delete any extra meta attached to the deleted entities but ONLY if this model is not an instance of
1976
-            // `EEM_Extra_Meta`.  In other words we want to prevent recursion on EEM_Extra_Meta::delete_permanently calls
1977
-            // unnecessarily.  It's very unlikely that users will have assigned Extra Meta to Extra Meta
1978
-            // (although it is possible).
1979
-            // Note this can be skipped by using the provided filter and returning false.
1980
-            if (apply_filters(
1981
-                'FHEE__EEM_Base__delete_permanently__dont_delete_extra_meta_for_extra_meta',
1982
-                ! $this instanceof EEM_Extra_Meta,
1983
-                $this
1984
-            )) {
1985
-                EEM_Extra_Meta::instance()->delete_permanently(array(
1986
-                    0 => array(
1987
-                        'EXM_type' => $this->get_this_model_name(),
1988
-                        'OBJ_ID'   => array(
1989
-                            'IN',
1990
-                            $ids_for_removal
1991
-                        )
1992
-                    )
1993
-                ));
1994
-            }
1995
-        }
1996
-
1997
-        /**
1998
-         * Action called just after performing a real deletion query. Although at this point the
1999
-         * items should have been deleted
2000
-         *
2001
-         * @param EEM_Base $model
2002
-         * @param array    $query_params @see https://github.com/eventespresso/event-espresso-core/tree/master/docs/G--Model-System/model-query-params.md
2003
-         * @param int      $rows_deleted
2004
-         */
2005
-        do_action('AHEE__EEM_Base__delete__end', $this, $query_params, $rows_deleted, $columns_and_ids_for_deleting);
2006
-        return $rows_deleted;// how many supposedly got deleted
2007
-    }
2008
-
2009
-
2010
-
2011
-    /**
2012
-     * Checks all the relations that throw error messages when there are blocking related objects
2013
-     * for related model objects. If there are any related model objects on those relations,
2014
-     * adds an EE_Error, and return true
2015
-     *
2016
-     * @param EE_Base_Class|int $this_model_obj_or_id
2017
-     * @param EE_Base_Class     $ignore_this_model_obj a model object like 'EE_Event', or 'EE_Term_Taxonomy', which
2018
-     *                                                 should be ignored when determining whether there are related
2019
-     *                                                 model objects which block this model object's deletion. Useful
2020
-     *                                                 if you know A is related to B and are considering deleting A,
2021
-     *                                                 but want to see if A has any other objects blocking its deletion
2022
-     *                                                 before removing the relation between A and B
2023
-     * @return boolean
2024
-     * @throws EE_Error
2025
-     */
2026
-    public function delete_is_blocked_by_related_models($this_model_obj_or_id, $ignore_this_model_obj = null)
2027
-    {
2028
-        // first, if $ignore_this_model_obj was supplied, get its model
2029
-        if ($ignore_this_model_obj && $ignore_this_model_obj instanceof EE_Base_Class) {
2030
-            $ignored_model = $ignore_this_model_obj->get_model();
2031
-        } else {
2032
-            $ignored_model = null;
2033
-        }
2034
-        // now check all the relations of $this_model_obj_or_id and see if there
2035
-        // are any related model objects blocking it?
2036
-        $is_blocked = false;
2037
-        foreach ($this->_model_relations as $relation_name => $relation_obj) {
2038
-            if ($relation_obj->block_delete_if_related_models_exist()) {
2039
-                // if $ignore_this_model_obj was supplied, then for the query
2040
-                // on that model needs to be told to ignore $ignore_this_model_obj
2041
-                if ($ignored_model && $relation_name === $ignored_model->get_this_model_name()) {
2042
-                    $related_model_objects = $relation_obj->get_all_related($this_model_obj_or_id, array(
2043
-                        array(
2044
-                            $ignored_model->get_primary_key_field()->get_name() => array(
2045
-                                '!=',
2046
-                                $ignore_this_model_obj->ID(),
2047
-                            ),
2048
-                        ),
2049
-                    ));
2050
-                } else {
2051
-                    $related_model_objects = $relation_obj->get_all_related($this_model_obj_or_id);
2052
-                }
2053
-                if ($related_model_objects) {
2054
-                    EE_Error::add_error($relation_obj->get_deletion_error_message(), __FILE__, __FUNCTION__, __LINE__);
2055
-                    $is_blocked = true;
2056
-                }
2057
-            }
2058
-        }
2059
-        return $is_blocked;
2060
-    }
2061
-
2062
-
2063
-    /**
2064
-     * Builds the columns and values for items to delete from the incoming $row_results_for_deleting array.
2065
-     * @param array $row_results_for_deleting
2066
-     * @param bool  $allow_blocking
2067
-     * @return array   The shape of this array depends on whether the model `has_primary_key_field` or not.  If the
2068
-     *                 model DOES have a primary_key_field, then the array will be a simple single dimension array where
2069
-     *                 the key is the fully qualified primary key column and the value is an array of ids that will be
2070
-     *                 deleted. Example:
2071
-     *                      array('Event.EVT_ID' => array( 1,2,3))
2072
-     *                 If the model DOES NOT have a primary_key_field, then the array will be a two dimensional array
2073
-     *                 where each element is a group of columns and values that get deleted. Example:
2074
-     *                      array(
2075
-     *                          0 => array(
2076
-     *                              'Term_Relationship.object_id' => 1
2077
-     *                              'Term_Relationship.term_taxonomy_id' => 5
2078
-     *                          ),
2079
-     *                          1 => array(
2080
-     *                              'Term_Relationship.object_id' => 1
2081
-     *                              'Term_Relationship.term_taxonomy_id' => 6
2082
-     *                          )
2083
-     *                      )
2084
-     * @throws EE_Error
2085
-     */
2086
-    protected function _get_ids_for_delete(array $row_results_for_deleting, $allow_blocking = true)
2087
-    {
2088
-        $ids_to_delete_indexed_by_column = array();
2089
-        if ($this->has_primary_key_field()) {
2090
-            $primary_table = $this->_get_main_table();
2091
-            $primary_table_pk_field = $this->get_field_by_column($primary_table->get_fully_qualified_pk_column());
2092
-            $other_tables = $this->_get_other_tables();
2093
-            $ids_to_delete_indexed_by_column = $query = array();
2094
-            foreach ($row_results_for_deleting as $item_to_delete) {
2095
-                // before we mark this item for deletion,
2096
-                // make sure there's no related entities blocking its deletion (if we're checking)
2097
-                if ($allow_blocking
2098
-                    && $this->delete_is_blocked_by_related_models(
2099
-                        $item_to_delete[ $primary_table->get_fully_qualified_pk_column() ]
2100
-                    )
2101
-                ) {
2102
-                    continue;
2103
-                }
2104
-                // primary table deletes
2105
-                if (isset($item_to_delete[ $primary_table->get_fully_qualified_pk_column() ])) {
2106
-                    $ids_to_delete_indexed_by_column[ $primary_table->get_fully_qualified_pk_column() ][] =
2107
-                        $item_to_delete[ $primary_table->get_fully_qualified_pk_column() ];
2108
-                }
2109
-            }
2110
-        } elseif (count($this->get_combined_primary_key_fields()) > 1) {
2111
-            $fields = $this->get_combined_primary_key_fields();
2112
-            foreach ($row_results_for_deleting as $item_to_delete) {
2113
-                $ids_to_delete_indexed_by_column_for_row = array();
2114
-                foreach ($fields as $cpk_field) {
2115
-                    if ($cpk_field instanceof EE_Model_Field_Base) {
2116
-                        $ids_to_delete_indexed_by_column_for_row[ $cpk_field->get_qualified_column() ] =
2117
-                            $item_to_delete[ $cpk_field->get_qualified_column() ];
2118
-                    }
2119
-                }
2120
-                $ids_to_delete_indexed_by_column[] = $ids_to_delete_indexed_by_column_for_row;
2121
-            }
2122
-        } else {
2123
-            // so there's no primary key and no combined key...
2124
-            // sorry, can't help you
2125
-            throw new EE_Error(
2126
-                sprintf(
2127
-                    __(
2128
-                        "Cannot delete objects of type %s because there is no primary key NOR combined key",
2129
-                        "event_espresso"
2130
-                    ),
2131
-                    get_class($this)
2132
-                )
2133
-            );
2134
-        }
2135
-        return $ids_to_delete_indexed_by_column;
2136
-    }
2137
-
2138
-
2139
-    /**
2140
-     * This receives an array of columns and values set to be deleted (as prepared by _get_ids_for_delete) and prepares
2141
-     * the corresponding query_part for the query performing the delete.
2142
-     *
2143
-     * @param array $ids_to_delete_indexed_by_column @see _get_ids_for_delete for how this array might be shaped.
2144
-     * @return string
2145
-     * @throws EE_Error
2146
-     */
2147
-    protected function _build_query_part_for_deleting_from_columns_and_values(array $ids_to_delete_indexed_by_column)
2148
-    {
2149
-        $query_part = '';
2150
-        if (empty($ids_to_delete_indexed_by_column)) {
2151
-            return $query_part;
2152
-        } elseif ($this->has_primary_key_field()) {
2153
-            $query = array();
2154
-            foreach ($ids_to_delete_indexed_by_column as $column => $ids) {
2155
-                // make sure we have unique $ids
2156
-                $ids = array_unique($ids);
2157
-                $query[] = $column . ' IN(' . implode(',', $ids) . ')';
2158
-            }
2159
-            $query_part = ! empty($query) ? implode(' AND ', $query) : $query_part;
2160
-        } elseif (count($this->get_combined_primary_key_fields()) > 1) {
2161
-            $ways_to_identify_a_row = array();
2162
-            foreach ($ids_to_delete_indexed_by_column as $ids_to_delete_indexed_by_column_for_each_row) {
2163
-                $values_for_each_combined_primary_key_for_a_row = array();
2164
-                foreach ($ids_to_delete_indexed_by_column_for_each_row as $column => $id) {
2165
-                    $values_for_each_combined_primary_key_for_a_row[] = $column . '=' . $id;
2166
-                }
2167
-                $ways_to_identify_a_row[] = '('
2168
-                                            . implode(' AND ', $values_for_each_combined_primary_key_for_a_row)
2169
-                                            . ')';
2170
-            }
2171
-            $query_part = implode(' OR ', $ways_to_identify_a_row);
2172
-        }
2173
-        return $query_part;
2174
-    }
2175
-
2176
-
2177
-
2178
-    /**
2179
-     * Gets the model field by the fully qualified name
2180
-     * @param string $qualified_column_name eg 'Event_CPT.post_name' or $field_obj->get_qualified_column()
2181
-     * @return EE_Model_Field_Base
2182
-     */
2183
-    public function get_field_by_column($qualified_column_name)
2184
-    {
2185
-        foreach ($this->field_settings(true) as $field_name => $field_obj) {
2186
-            if ($field_obj->get_qualified_column() === $qualified_column_name) {
2187
-                return $field_obj;
2188
-            }
2189
-        }
2190
-        throw new EE_Error(
2191
-            sprintf(
2192
-                esc_html__('Could not find a field on the model "%1$s" for qualified column "%2$s"', 'event_espresso'),
2193
-                $this->get_this_model_name(),
2194
-                $qualified_column_name
2195
-            )
2196
-        );
2197
-    }
2198
-
2199
-
2200
-
2201
-    /**
2202
-     * Count all the rows that match criteria the model query params.
2203
-     * If $field_to_count isn't provided, the model's primary key is used. Otherwise, we count by field_to_count's
2204
-     * column
2205
-     *
2206
-     * @param array  $query_params   @see https://github.com/eventespresso/event-espresso-core/tree/master/docs/G--Model-System/model-query-params.md
2207
-     * @param string $field_to_count field on model to count by (not column name)
2208
-     * @param bool   $distinct       if we want to only count the distinct values for the column then you can trigger
2209
-     *                               that by the setting $distinct to TRUE;
2210
-     * @return int
2211
-     * @throws EE_Error
2212
-     */
2213
-    public function count($query_params = array(), $field_to_count = null, $distinct = false)
2214
-    {
2215
-        $model_query_info = $this->_create_model_query_info_carrier($query_params);
2216
-        if ($field_to_count) {
2217
-            $field_obj = $this->field_settings_for($field_to_count);
2218
-            $column_to_count = $field_obj->get_qualified_column();
2219
-        } elseif ($this->has_primary_key_field()) {
2220
-            $pk_field_obj = $this->get_primary_key_field();
2221
-            $column_to_count = $pk_field_obj->get_qualified_column();
2222
-        } else {
2223
-            // there's no primary key
2224
-            // if we're counting distinct items, and there's no primary key,
2225
-            // we need to list out the columns for distinction;
2226
-            // otherwise we can just use star
2227
-            if ($distinct) {
2228
-                $columns_to_use = array();
2229
-                foreach ($this->get_combined_primary_key_fields() as $field_obj) {
2230
-                    $columns_to_use[] = $field_obj->get_qualified_column();
2231
-                }
2232
-                $column_to_count = implode(',', $columns_to_use);
2233
-            } else {
2234
-                $column_to_count = '*';
2235
-            }
2236
-        }
2237
-        $column_to_count = $distinct ? "DISTINCT " . $column_to_count : $column_to_count;
2238
-        $SQL = "SELECT COUNT(" . $column_to_count . ")" . $this->_construct_2nd_half_of_select_query($model_query_info);
2239
-        return (int) $this->_do_wpdb_query('get_var', array($SQL));
2240
-    }
2241
-
2242
-
2243
-
2244
-    /**
2245
-     * Sums up the value of the $field_to_sum (defaults to the primary key, which isn't terribly useful)
2246
-     *
2247
-     * @param array  $query_params @see https://github.com/eventespresso/event-espresso-core/tree/master/docs/G--Model-System/model-query-params.md
2248
-     * @param string $field_to_sum name of field (array key in $_fields array)
2249
-     * @return float
2250
-     * @throws EE_Error
2251
-     */
2252
-    public function sum($query_params, $field_to_sum = null)
2253
-    {
2254
-        $model_query_info = $this->_create_model_query_info_carrier($query_params);
2255
-        if ($field_to_sum) {
2256
-            $field_obj = $this->field_settings_for($field_to_sum);
2257
-        } else {
2258
-            $field_obj = $this->get_primary_key_field();
2259
-        }
2260
-        $column_to_count = $field_obj->get_qualified_column();
2261
-        $SQL = "SELECT SUM(" . $column_to_count . ")" . $this->_construct_2nd_half_of_select_query($model_query_info);
2262
-        $return_value = $this->_do_wpdb_query('get_var', array($SQL));
2263
-        $data_type = $field_obj->get_wpdb_data_type();
2264
-        if ($data_type === '%d' || $data_type === '%s') {
2265
-            return (float) $return_value;
2266
-        }
2267
-        // must be %f
2268
-        return (float) $return_value;
2269
-    }
2270
-
2271
-
2272
-
2273
-    /**
2274
-     * Just calls the specified method on $wpdb with the given arguments
2275
-     * Consolidates a little extra error handling code
2276
-     *
2277
-     * @param string $wpdb_method
2278
-     * @param array  $arguments_to_provide
2279
-     * @throws EE_Error
2280
-     * @global wpdb  $wpdb
2281
-     * @return mixed
2282
-     */
2283
-    protected function _do_wpdb_query($wpdb_method, $arguments_to_provide)
2284
-    {
2285
-        // if we're in maintenance mode level 2, DON'T run any queries
2286
-        // because level 2 indicates the database needs updating and
2287
-        // is probably out of sync with the code
2288
-        if (! EE_Maintenance_Mode::instance()->models_can_query()) {
2289
-            throw new EE_Error(sprintf(__(
2290
-                "Event Espresso Level 2 Maintenance mode is active. That means EE can not run ANY database queries until the necessary migration scripts have run which will take EE out of maintenance mode level 2. Please inform support of this error.",
2291
-                "event_espresso"
2292
-            )));
2293
-        }
2294
-        /** @type WPDB $wpdb */
2295
-        global $wpdb;
2296
-        if (! method_exists($wpdb, $wpdb_method)) {
2297
-            throw new EE_Error(sprintf(__(
2298
-                'There is no method named "%s" on Wordpress\' $wpdb object',
2299
-                'event_espresso'
2300
-            ), $wpdb_method));
2301
-        }
2302
-        if (WP_DEBUG) {
2303
-            $old_show_errors_value = $wpdb->show_errors;
2304
-            $wpdb->show_errors(false);
2305
-        }
2306
-        $result = $this->_process_wpdb_query($wpdb_method, $arguments_to_provide);
2307
-        $this->show_db_query_if_previously_requested($wpdb->last_query);
2308
-        if (WP_DEBUG) {
2309
-            $wpdb->show_errors($old_show_errors_value);
2310
-            if (! empty($wpdb->last_error)) {
2311
-                throw new EE_Error(sprintf(__('WPDB Error: "%s"', 'event_espresso'), $wpdb->last_error));
2312
-            }
2313
-            if ($result === false) {
2314
-                throw new EE_Error(sprintf(__(
2315
-                    'WPDB Error occurred, but no error message was logged by wpdb! The wpdb method called was "%1$s" and the arguments were "%2$s"',
2316
-                    'event_espresso'
2317
-                ), $wpdb_method, var_export($arguments_to_provide, true)));
2318
-            }
2319
-        } elseif ($result === false) {
2320
-            EE_Error::add_error(
2321
-                sprintf(
2322
-                    __(
2323
-                        'A database error has occurred. Turn on WP_DEBUG for more information.||A database error occurred doing wpdb method "%1$s", with arguments "%2$s". The error was "%3$s"',
2324
-                        'event_espresso'
2325
-                    ),
2326
-                    $wpdb_method,
2327
-                    var_export($arguments_to_provide, true),
2328
-                    $wpdb->last_error
2329
-                ),
2330
-                __FILE__,
2331
-                __FUNCTION__,
2332
-                __LINE__
2333
-            );
2334
-        }
2335
-        return $result;
2336
-    }
2337
-
2338
-
2339
-
2340
-    /**
2341
-     * Attempts to run the indicated WPDB method with the provided arguments,
2342
-     * and if there's an error tries to verify the DB is correct. Uses
2343
-     * the static property EEM_Base::$_db_verification_level to determine whether
2344
-     * we should try to fix the EE core db, the addons, or just give up
2345
-     *
2346
-     * @param string $wpdb_method
2347
-     * @param array  $arguments_to_provide
2348
-     * @return mixed
2349
-     */
2350
-    private function _process_wpdb_query($wpdb_method, $arguments_to_provide)
2351
-    {
2352
-        /** @type WPDB $wpdb */
2353
-        global $wpdb;
2354
-        $wpdb->last_error = null;
2355
-        $result = call_user_func_array(array($wpdb, $wpdb_method), $arguments_to_provide);
2356
-        // was there an error running the query? but we don't care on new activations
2357
-        // (we're going to setup the DB anyway on new activations)
2358
-        if (($result === false || ! empty($wpdb->last_error))
2359
-            && EE_System::instance()->detect_req_type() !== EE_System::req_type_new_activation
2360
-        ) {
2361
-            switch (EEM_Base::$_db_verification_level) {
2362
-                case EEM_Base::db_verified_none:
2363
-                    // let's double-check core's DB
2364
-                    $error_message = $this->_verify_core_db($wpdb_method, $arguments_to_provide);
2365
-                    break;
2366
-                case EEM_Base::db_verified_core:
2367
-                    // STILL NO LOVE?? verify all the addons too. Maybe they need to be fixed
2368
-                    $error_message = $this->_verify_addons_db($wpdb_method, $arguments_to_provide);
2369
-                    break;
2370
-                case EEM_Base::db_verified_addons:
2371
-                    // ummmm... you in trouble
2372
-                    return $result;
2373
-                    break;
2374
-            }
2375
-            if (! empty($error_message)) {
2376
-                EE_Log::instance()->log(__FILE__, __FUNCTION__, $error_message, 'error');
2377
-                trigger_error($error_message);
2378
-            }
2379
-            return $this->_process_wpdb_query($wpdb_method, $arguments_to_provide);
2380
-        }
2381
-        return $result;
2382
-    }
2383
-
2384
-
2385
-
2386
-    /**
2387
-     * Verifies the EE core database is up-to-date and records that we've done it on
2388
-     * EEM_Base::$_db_verification_level
2389
-     *
2390
-     * @param string $wpdb_method
2391
-     * @param array  $arguments_to_provide
2392
-     * @return string
2393
-     */
2394
-    private function _verify_core_db($wpdb_method, $arguments_to_provide)
2395
-    {
2396
-        /** @type WPDB $wpdb */
2397
-        global $wpdb;
2398
-        // ok remember that we've already attempted fixing the core db, in case the problem persists
2399
-        EEM_Base::$_db_verification_level = EEM_Base::db_verified_core;
2400
-        $error_message = sprintf(
2401
-            __(
2402
-                'WPDB Error "%1$s" while running wpdb method "%2$s" with arguments %3$s. Automatically attempting to fix EE Core DB',
2403
-                'event_espresso'
2404
-            ),
2405
-            $wpdb->last_error,
2406
-            $wpdb_method,
2407
-            wp_json_encode($arguments_to_provide)
2408
-        );
2409
-        EE_System::instance()->initialize_db_if_no_migrations_required(false, true);
2410
-        return $error_message;
2411
-    }
2412
-
2413
-
2414
-
2415
-    /**
2416
-     * Verifies the EE addons' database is up-to-date and records that we've done it on
2417
-     * EEM_Base::$_db_verification_level
2418
-     *
2419
-     * @param $wpdb_method
2420
-     * @param $arguments_to_provide
2421
-     * @return string
2422
-     */
2423
-    private function _verify_addons_db($wpdb_method, $arguments_to_provide)
2424
-    {
2425
-        /** @type WPDB $wpdb */
2426
-        global $wpdb;
2427
-        // ok remember that we've already attempted fixing the addons dbs, in case the problem persists
2428
-        EEM_Base::$_db_verification_level = EEM_Base::db_verified_addons;
2429
-        $error_message = sprintf(
2430
-            __(
2431
-                'WPDB AGAIN: Error "%1$s" while running the same method and arguments as before. Automatically attempting to fix EE Addons DB',
2432
-                'event_espresso'
2433
-            ),
2434
-            $wpdb->last_error,
2435
-            $wpdb_method,
2436
-            wp_json_encode($arguments_to_provide)
2437
-        );
2438
-        EE_System::instance()->initialize_addons();
2439
-        return $error_message;
2440
-    }
2441
-
2442
-
2443
-
2444
-    /**
2445
-     * In order to avoid repeating this code for the get_all, sum, and count functions, put the code parts
2446
-     * that are identical in here. Returns a string of SQL of everything in a SELECT query except the beginning
2447
-     * SELECT clause, eg " FROM wp_posts AS Event INNER JOIN ... WHERE ... ORDER BY ... LIMIT ... GROUP BY ... HAVING
2448
-     * ..."
2449
-     *
2450
-     * @param EE_Model_Query_Info_Carrier $model_query_info
2451
-     * @return string
2452
-     */
2453
-    private function _construct_2nd_half_of_select_query(EE_Model_Query_Info_Carrier $model_query_info)
2454
-    {
2455
-        return " FROM " . $model_query_info->get_full_join_sql() .
2456
-               $model_query_info->get_where_sql() .
2457
-               $model_query_info->get_group_by_sql() .
2458
-               $model_query_info->get_having_sql() .
2459
-               $model_query_info->get_order_by_sql() .
2460
-               $model_query_info->get_limit_sql();
2461
-    }
2462
-
2463
-
2464
-
2465
-    /**
2466
-     * Set to easily debug the next X queries ran from this model.
2467
-     *
2468
-     * @param int $count
2469
-     */
2470
-    public function show_next_x_db_queries($count = 1)
2471
-    {
2472
-        $this->_show_next_x_db_queries = $count;
2473
-    }
2474
-
2475
-
2476
-
2477
-    /**
2478
-     * @param $sql_query
2479
-     */
2480
-    public function show_db_query_if_previously_requested($sql_query)
2481
-    {
2482
-        if ($this->_show_next_x_db_queries > 0) {
2483
-            echo $sql_query;
2484
-            $this->_show_next_x_db_queries--;
2485
-        }
2486
-    }
2487
-
2488
-
2489
-
2490
-    /**
2491
-     * Adds a relationship of the correct type between $modelObject and $otherModelObject.
2492
-     * There are the 3 cases:
2493
-     * 'belongsTo' relationship: sets $id_or_obj's foreign_key to be $other_model_id_or_obj's primary_key. If
2494
-     * $otherModelObject has no ID, it is first saved.
2495
-     * 'hasMany' relationship: sets $other_model_id_or_obj's foreign_key to be $id_or_obj's primary_key. If $id_or_obj
2496
-     * has no ID, it is first saved.
2497
-     * 'hasAndBelongsToMany' relationships: checks that there isn't already an entry in the join table, and adds one.
2498
-     * If one of the model Objects has not yet been saved to the database, it is saved before adding the entry in the
2499
-     * join table
2500
-     *
2501
-     * @param        EE_Base_Class                     /int $thisModelObject
2502
-     * @param        EE_Base_Class                     /int $id_or_obj EE_base_Class or ID of other Model Object
2503
-     * @param string $relationName                     , key in EEM_Base::_relations
2504
-     *                                                 an attendee to a group, you also want to specify which role they
2505
-     *                                                 will have in that group. So you would use this parameter to
2506
-     *                                                 specify array('role-column-name'=>'role-id')
2507
-     * @param array  $extra_join_model_fields_n_values This allows you to enter further query params for the relation
2508
-     *                                                 to for relation to methods that allow you to further specify
2509
-     *                                                 extra columns to join by (such as HABTM).  Keep in mind that the
2510
-     *                                                 only acceptable query_params is strict "col" => "value" pairs
2511
-     *                                                 because these will be inserted in any new rows created as well.
2512
-     * @return EE_Base_Class which was added as a relation. Object referred to by $other_model_id_or_obj
2513
-     * @throws EE_Error
2514
-     */
2515
-    public function add_relationship_to(
2516
-        $id_or_obj,
2517
-        $other_model_id_or_obj,
2518
-        $relationName,
2519
-        $extra_join_model_fields_n_values = array()
2520
-    ) {
2521
-        $relation_obj = $this->related_settings_for($relationName);
2522
-        return $relation_obj->add_relation_to($id_or_obj, $other_model_id_or_obj, $extra_join_model_fields_n_values);
2523
-    }
2524
-
2525
-
2526
-
2527
-    /**
2528
-     * Removes a relationship of the correct type between $modelObject and $otherModelObject.
2529
-     * There are the 3 cases:
2530
-     * 'belongsTo' relationship: sets $modelObject's foreign_key to null, if that field is nullable.Otherwise throws an
2531
-     * error
2532
-     * 'hasMany' relationship: sets $otherModelObject's foreign_key to null,if that field is nullable.Otherwise throws
2533
-     * an error
2534
-     * 'hasAndBelongsToMany' relationships:removes any existing entry in the join table between the two models.
2535
-     *
2536
-     * @param        EE_Base_Class /int $id_or_obj
2537
-     * @param        EE_Base_Class /int $other_model_id_or_obj EE_Base_Class or ID of other Model Object
2538
-     * @param string $relationName key in EEM_Base::_relations
2539
-     * @return boolean of success
2540
-     * @throws EE_Error
2541
-     * @param array  $where_query  This allows you to enter further query params for the relation to for relation to
2542
-     *                             methods that allow you to further specify extra columns to join by (such as HABTM).
2543
-     *                             Keep in mind that the only acceptable query_params is strict "col" => "value" pairs
2544
-     *                             because these will be inserted in any new rows created as well.
2545
-     */
2546
-    public function remove_relationship_to($id_or_obj, $other_model_id_or_obj, $relationName, $where_query = array())
2547
-    {
2548
-        $relation_obj = $this->related_settings_for($relationName);
2549
-        return $relation_obj->remove_relation_to($id_or_obj, $other_model_id_or_obj, $where_query);
2550
-    }
2551
-
2552
-
2553
-
2554
-    /**
2555
-     * @param mixed           $id_or_obj
2556
-     * @param string          $relationName
2557
-     * @param array           $where_query_params
2558
-     * @param EE_Base_Class[] objects to which relations were removed
2559
-     * @return \EE_Base_Class[]
2560
-     * @throws EE_Error
2561
-     */
2562
-    public function remove_relations($id_or_obj, $relationName, $where_query_params = array())
2563
-    {
2564
-        $relation_obj = $this->related_settings_for($relationName);
2565
-        return $relation_obj->remove_relations($id_or_obj, $where_query_params);
2566
-    }
2567
-
2568
-
2569
-
2570
-    /**
2571
-     * Gets all the related items of the specified $model_name, using $query_params.
2572
-     * Note: by default, we remove the "default query params"
2573
-     * because we want to get even deleted items etc.
2574
-     *
2575
-     * @param mixed  $id_or_obj    EE_Base_Class child or its ID
2576
-     * @param string $model_name   like 'Event', 'Registration', etc. always singular
2577
-     * @param array  $query_params @see https://github.com/eventespresso/event-espresso-core/tree/master/docs/G--Model-System/model-query-params.md
2578
-     * @return EE_Base_Class[]
2579
-     * @throws EE_Error
2580
-     */
2581
-    public function get_all_related($id_or_obj, $model_name, $query_params = null)
2582
-    {
2583
-        $model_obj = $this->ensure_is_obj($id_or_obj);
2584
-        $relation_settings = $this->related_settings_for($model_name);
2585
-        return $relation_settings->get_all_related($model_obj, $query_params);
2586
-    }
2587
-
2588
-
2589
-
2590
-    /**
2591
-     * Deletes all the model objects across the relation indicated by $model_name
2592
-     * which are related to $id_or_obj which meet the criteria set in $query_params.
2593
-     * However, if the model objects can't be deleted because of blocking related model objects, then
2594
-     * they aren't deleted. (Unless the thing that would have been deleted can be soft-deleted, that still happens).
2595
-     *
2596
-     * @param EE_Base_Class|int|string $id_or_obj
2597
-     * @param string                   $model_name
2598
-     * @param array                    $query_params
2599
-     * @return int how many deleted
2600
-     * @throws EE_Error
2601
-     */
2602
-    public function delete_related($id_or_obj, $model_name, $query_params = array())
2603
-    {
2604
-        $model_obj = $this->ensure_is_obj($id_or_obj);
2605
-        $relation_settings = $this->related_settings_for($model_name);
2606
-        return $relation_settings->delete_all_related($model_obj, $query_params);
2607
-    }
2608
-
2609
-
2610
-
2611
-    /**
2612
-     * Hard deletes all the model objects across the relation indicated by $model_name
2613
-     * which are related to $id_or_obj which meet the criteria set in $query_params. If
2614
-     * the model objects can't be hard deleted because of blocking related model objects,
2615
-     * just does a soft-delete on them instead.
2616
-     *
2617
-     * @param EE_Base_Class|int|string $id_or_obj
2618
-     * @param string                   $model_name
2619
-     * @param array                    $query_params
2620
-     * @return int how many deleted
2621
-     * @throws EE_Error
2622
-     */
2623
-    public function delete_related_permanently($id_or_obj, $model_name, $query_params = array())
2624
-    {
2625
-        $model_obj = $this->ensure_is_obj($id_or_obj);
2626
-        $relation_settings = $this->related_settings_for($model_name);
2627
-        return $relation_settings->delete_related_permanently($model_obj, $query_params);
2628
-    }
2629
-
2630
-
2631
-
2632
-    /**
2633
-     * Instead of getting the related model objects, simply counts them. Ignores default_where_conditions by default,
2634
-     * unless otherwise specified in the $query_params
2635
-     *
2636
-     * @param        int             /EE_Base_Class $id_or_obj
2637
-     * @param string $model_name     like 'Event', or 'Registration'
2638
-     * @param array  $query_params   @see https://github.com/eventespresso/event-espresso-core/tree/master/docs/G--Model-System/model-query-params.md
2639
-     * @param string $field_to_count name of field to count by. By default, uses primary key
2640
-     * @param bool   $distinct       if we want to only count the distinct values for the column then you can trigger
2641
-     *                               that by the setting $distinct to TRUE;
2642
-     * @return int
2643
-     * @throws EE_Error
2644
-     */
2645
-    public function count_related(
2646
-        $id_or_obj,
2647
-        $model_name,
2648
-        $query_params = array(),
2649
-        $field_to_count = null,
2650
-        $distinct = false
2651
-    ) {
2652
-        $related_model = $this->get_related_model_obj($model_name);
2653
-        // we're just going to use the query params on the related model's normal get_all query,
2654
-        // except add a condition to say to match the current mod
2655
-        if (! isset($query_params['default_where_conditions'])) {
2656
-            $query_params['default_where_conditions'] = EEM_Base::default_where_conditions_none;
2657
-        }
2658
-        $this_model_name = $this->get_this_model_name();
2659
-        $this_pk_field_name = $this->get_primary_key_field()->get_name();
2660
-        $query_params[0][ $this_model_name . "." . $this_pk_field_name ] = $id_or_obj;
2661
-        return $related_model->count($query_params, $field_to_count, $distinct);
2662
-    }
2663
-
2664
-
2665
-
2666
-    /**
2667
-     * Instead of getting the related model objects, simply sums up the values of the specified field.
2668
-     * Note: ignores default_where_conditions by default, unless otherwise specified in the $query_params
2669
-     *
2670
-     * @param        int           /EE_Base_Class $id_or_obj
2671
-     * @param string $model_name   like 'Event', or 'Registration'
2672
-     * @param array  $query_params @see https://github.com/eventespresso/event-espresso-core/tree/master/docs/G--Model-System/model-query-params.md
2673
-     * @param string $field_to_sum name of field to count by. By default, uses primary key
2674
-     * @return float
2675
-     * @throws EE_Error
2676
-     */
2677
-    public function sum_related($id_or_obj, $model_name, $query_params, $field_to_sum = null)
2678
-    {
2679
-        $related_model = $this->get_related_model_obj($model_name);
2680
-        if (! is_array($query_params)) {
2681
-            EE_Error::doing_it_wrong(
2682
-                'EEM_Base::sum_related',
2683
-                sprintf(
2684
-                    __('$query_params should be an array, you passed a variable of type %s', 'event_espresso'),
2685
-                    gettype($query_params)
2686
-                ),
2687
-                '4.6.0'
2688
-            );
2689
-            $query_params = array();
2690
-        }
2691
-        // we're just going to use the query params on the related model's normal get_all query,
2692
-        // except add a condition to say to match the current mod
2693
-        if (! isset($query_params['default_where_conditions'])) {
2694
-            $query_params['default_where_conditions'] = EEM_Base::default_where_conditions_none;
2695
-        }
2696
-        $this_model_name = $this->get_this_model_name();
2697
-        $this_pk_field_name = $this->get_primary_key_field()->get_name();
2698
-        $query_params[0][ $this_model_name . "." . $this_pk_field_name ] = $id_or_obj;
2699
-        return $related_model->sum($query_params, $field_to_sum);
2700
-    }
2701
-
2702
-
2703
-
2704
-    /**
2705
-     * Uses $this->_relatedModels info to find the first related model object of relation $relationName to the given
2706
-     * $modelObject
2707
-     *
2708
-     * @param int | EE_Base_Class $id_or_obj        EE_Base_Class child or its ID
2709
-     * @param string              $other_model_name , key in $this->_relatedModels, eg 'Registration', or 'Events'
2710
-     * @param array               $query_params     @see https://github.com/eventespresso/event-espresso-core/tree/master/docs/G--Model-System/model-query-params.md
2711
-     * @return EE_Base_Class
2712
-     * @throws EE_Error
2713
-     */
2714
-    public function get_first_related(EE_Base_Class $id_or_obj, $other_model_name, $query_params)
2715
-    {
2716
-        $query_params['limit'] = 1;
2717
-        $results = $this->get_all_related($id_or_obj, $other_model_name, $query_params);
2718
-        if ($results) {
2719
-            return array_shift($results);
2720
-        }
2721
-        return null;
2722
-    }
2723
-
2724
-
2725
-
2726
-    /**
2727
-     * Gets the model's name as it's expected in queries. For example, if this is EEM_Event model, that would be Event
2728
-     *
2729
-     * @return string
2730
-     */
2731
-    public function get_this_model_name()
2732
-    {
2733
-        return str_replace("EEM_", "", get_class($this));
2734
-    }
2735
-
2736
-
2737
-
2738
-    /**
2739
-     * Gets the model field on this model which is of type EE_Any_Foreign_Model_Name_Field
2740
-     *
2741
-     * @return EE_Any_Foreign_Model_Name_Field
2742
-     * @throws EE_Error
2743
-     */
2744
-    public function get_field_containing_related_model_name()
2745
-    {
2746
-        foreach ($this->field_settings(true) as $field) {
2747
-            if ($field instanceof EE_Any_Foreign_Model_Name_Field) {
2748
-                $field_with_model_name = $field;
2749
-            }
2750
-        }
2751
-        if (! isset($field_with_model_name) || ! $field_with_model_name) {
2752
-            throw new EE_Error(sprintf(
2753
-                __("There is no EE_Any_Foreign_Model_Name field on model %s", "event_espresso"),
2754
-                $this->get_this_model_name()
2755
-            ));
2756
-        }
2757
-        return $field_with_model_name;
2758
-    }
2759
-
2760
-
2761
-
2762
-    /**
2763
-     * Inserts a new entry into the database, for each table.
2764
-     * Note: does not add the item to the entity map because that is done by EE_Base_Class::save() right after this.
2765
-     * If client code uses EEM_Base::insert() directly, then although the item isn't in the entity map,
2766
-     * we also know there is no model object with the newly inserted item's ID at the moment (because
2767
-     * if there were, then they would already be in the DB and this would fail); and in the future if someone
2768
-     * creates a model object with this ID (or grabs it from the DB) then it will be added to the
2769
-     * entity map at that time anyways. SO, no need for EEM_Base::insert ot add to the entity map
2770
-     *
2771
-     * @param array $field_n_values keys are field names, values are their values (in the client code's domain if
2772
-     *                              $values_already_prepared_by_model_object is false, in the model object's domain if
2773
-     *                              $values_already_prepared_by_model_object is true. See comment about this at the top
2774
-     *                              of EEM_Base)
2775
-     * @return int|string new primary key on main table that got inserted
2776
-     * @throws EE_Error
2777
-     */
2778
-    public function insert($field_n_values)
2779
-    {
2780
-        /**
2781
-         * Filters the fields and their values before inserting an item using the models
2782
-         *
2783
-         * @param array    $fields_n_values keys are the fields and values are their new values
2784
-         * @param EEM_Base $model           the model used
2785
-         */
2786
-        $field_n_values = (array) apply_filters('FHEE__EEM_Base__insert__fields_n_values', $field_n_values, $this);
2787
-        if ($this->_satisfies_unique_indexes($field_n_values)) {
2788
-            $main_table = $this->_get_main_table();
2789
-            $new_id = $this->_insert_into_specific_table($main_table, $field_n_values, false);
2790
-            if ($new_id !== false) {
2791
-                foreach ($this->_get_other_tables() as $other_table) {
2792
-                    $this->_insert_into_specific_table($other_table, $field_n_values, $new_id);
2793
-                }
2794
-            }
2795
-            /**
2796
-             * Done just after attempting to insert a new model object
2797
-             *
2798
-             * @param EEM_Base   $model           used
2799
-             * @param array      $fields_n_values fields and their values
2800
-             * @param int|string the              ID of the newly-inserted model object
2801
-             */
2802
-            do_action('AHEE__EEM_Base__insert__end', $this, $field_n_values, $new_id);
2803
-            return $new_id;
2804
-        }
2805
-        return false;
2806
-    }
2807
-
2808
-
2809
-
2810
-    /**
2811
-     * Checks that the result would satisfy the unique indexes on this model
2812
-     *
2813
-     * @param array  $field_n_values
2814
-     * @param string $action
2815
-     * @return boolean
2816
-     * @throws EE_Error
2817
-     */
2818
-    protected function _satisfies_unique_indexes($field_n_values, $action = 'insert')
2819
-    {
2820
-        foreach ($this->unique_indexes() as $index_name => $index) {
2821
-            $uniqueness_where_params = array_intersect_key($field_n_values, $index->fields());
2822
-            if ($this->exists(array($uniqueness_where_params))) {
2823
-                EE_Error::add_error(
2824
-                    sprintf(
2825
-                        __(
2826
-                            "Could not %s %s. %s uniqueness index failed. Fields %s must form a unique set, but an entry already exists with values %s.",
2827
-                            "event_espresso"
2828
-                        ),
2829
-                        $action,
2830
-                        $this->_get_class_name(),
2831
-                        $index_name,
2832
-                        implode(",", $index->field_names()),
2833
-                        http_build_query($uniqueness_where_params)
2834
-                    ),
2835
-                    __FILE__,
2836
-                    __FUNCTION__,
2837
-                    __LINE__
2838
-                );
2839
-                return false;
2840
-            }
2841
-        }
2842
-        return true;
2843
-    }
2844
-
2845
-
2846
-
2847
-    /**
2848
-     * Checks the database for an item that conflicts (ie, if this item were
2849
-     * saved to the DB would break some uniqueness requirement, like a primary key
2850
-     * or an index primary key set) with the item specified. $id_obj_or_fields_array
2851
-     * can be either an EE_Base_Class or an array of fields n values
2852
-     *
2853
-     * @param EE_Base_Class|array $obj_or_fields_array
2854
-     * @param boolean             $include_primary_key whether to use the model object's primary key
2855
-     *                                                 when looking for conflicts
2856
-     *                                                 (ie, if false, we ignore the model object's primary key
2857
-     *                                                 when finding "conflicts". If true, it's also considered).
2858
-     *                                                 Only works for INT primary key,
2859
-     *                                                 STRING primary keys cannot be ignored
2860
-     * @throws EE_Error
2861
-     * @return EE_Base_Class|array
2862
-     */
2863
-    public function get_one_conflicting($obj_or_fields_array, $include_primary_key = true)
2864
-    {
2865
-        if ($obj_or_fields_array instanceof EE_Base_Class) {
2866
-            $fields_n_values = $obj_or_fields_array->model_field_array();
2867
-        } elseif (is_array($obj_or_fields_array)) {
2868
-            $fields_n_values = $obj_or_fields_array;
2869
-        } else {
2870
-            throw new EE_Error(
2871
-                sprintf(
2872
-                    __(
2873
-                        "%s get_all_conflicting should be called with a model object or an array of field names and values, you provided %d",
2874
-                        "event_espresso"
2875
-                    ),
2876
-                    get_class($this),
2877
-                    $obj_or_fields_array
2878
-                )
2879
-            );
2880
-        }
2881
-        $query_params = array();
2882
-        if ($this->has_primary_key_field()
2883
-            && ($include_primary_key
2884
-                || $this->get_primary_key_field()
2885
-                   instanceof
2886
-                   EE_Primary_Key_String_Field)
2887
-            && isset($fields_n_values[ $this->primary_key_name() ])
2888
-        ) {
2889
-            $query_params[0]['OR'][ $this->primary_key_name() ] = $fields_n_values[ $this->primary_key_name() ];
2890
-        }
2891
-        foreach ($this->unique_indexes() as $unique_index_name => $unique_index) {
2892
-            $uniqueness_where_params = array_intersect_key($fields_n_values, $unique_index->fields());
2893
-            $query_params[0]['OR'][ 'AND*' . $unique_index_name ] = $uniqueness_where_params;
2894
-        }
2895
-        // if there is nothing to base this search on, then we shouldn't find anything
2896
-        if (empty($query_params)) {
2897
-            return array();
2898
-        }
2899
-        return $this->get_one($query_params);
2900
-    }
2901
-
2902
-
2903
-
2904
-    /**
2905
-     * Like count, but is optimized and returns a boolean instead of an int
2906
-     *
2907
-     * @param array $query_params
2908
-     * @return boolean
2909
-     * @throws EE_Error
2910
-     */
2911
-    public function exists($query_params)
2912
-    {
2913
-        $query_params['limit'] = 1;
2914
-        return $this->count($query_params) > 0;
2915
-    }
2916
-
2917
-
2918
-
2919
-    /**
2920
-     * Wrapper for exists, except ignores default query parameters so we're only considering ID
2921
-     *
2922
-     * @param int|string $id
2923
-     * @return boolean
2924
-     * @throws EE_Error
2925
-     */
2926
-    public function exists_by_ID($id)
2927
-    {
2928
-        return $this->exists(
2929
-            array(
2930
-                'default_where_conditions' => EEM_Base::default_where_conditions_none,
2931
-                array(
2932
-                    $this->primary_key_name() => $id,
2933
-                ),
2934
-            )
2935
-        );
2936
-    }
2937
-
2938
-
2939
-
2940
-    /**
2941
-     * Inserts a new row in $table, using the $cols_n_values which apply to that table.
2942
-     * If a $new_id is supplied and if $table is an EE_Other_Table, we assume
2943
-     * we need to add a foreign key column to point to $new_id (which should be the primary key's value
2944
-     * on the main table)
2945
-     * This is protected rather than private because private is not accessible to any child methods and there MAY be
2946
-     * cases where we want to call it directly rather than via insert().
2947
-     *
2948
-     * @access   protected
2949
-     * @param EE_Table_Base $table
2950
-     * @param array         $fields_n_values each key should be in field's keys, and value should be an int, string or
2951
-     *                                       float
2952
-     * @param int           $new_id          for now we assume only int keys
2953
-     * @throws EE_Error
2954
-     * @global WPDB         $wpdb            only used to get the $wpdb->insert_id after performing an insert
2955
-     * @return int ID of new row inserted, or FALSE on failure
2956
-     */
2957
-    protected function _insert_into_specific_table(EE_Table_Base $table, $fields_n_values, $new_id = 0)
2958
-    {
2959
-        global $wpdb;
2960
-        $insertion_col_n_values = array();
2961
-        $format_for_insertion = array();
2962
-        $fields_on_table = $this->_get_fields_for_table($table->get_table_alias());
2963
-        foreach ($fields_on_table as $field_name => $field_obj) {
2964
-            // check if its an auto-incrementing column, in which case we should just leave it to do its autoincrement thing
2965
-            if ($field_obj->is_auto_increment()) {
2966
-                continue;
2967
-            }
2968
-            $prepared_value = $this->_prepare_value_or_use_default($field_obj, $fields_n_values);
2969
-            // if the value we want to assign it to is NULL, just don't mention it for the insertion
2970
-            if ($prepared_value !== null) {
2971
-                $insertion_col_n_values[ $field_obj->get_table_column() ] = $prepared_value;
2972
-                $format_for_insertion[] = $field_obj->get_wpdb_data_type();
2973
-            }
2974
-        }
2975
-        if ($table instanceof EE_Secondary_Table && $new_id) {
2976
-            // its not the main table, so we should have already saved the main table's PK which we just inserted
2977
-            // so add the fk to the main table as a column
2978
-            $insertion_col_n_values[ $table->get_fk_on_table() ] = $new_id;
2979
-            $format_for_insertion[] = '%d';// yes right now we're only allowing these foreign keys to be INTs
2980
-        }
2981
-        // insert the new entry
2982
-        $result = $this->_do_wpdb_query(
2983
-            'insert',
2984
-            array($table->get_table_name(), $insertion_col_n_values, $format_for_insertion)
2985
-        );
2986
-        if ($result === false) {
2987
-            return false;
2988
-        }
2989
-        // ok, now what do we return for the ID of the newly-inserted thing?
2990
-        if ($this->has_primary_key_field()) {
2991
-            if ($this->get_primary_key_field()->is_auto_increment()) {
2992
-                return $wpdb->insert_id;
2993
-            }
2994
-            // it's not an auto-increment primary key, so
2995
-            // it must have been supplied
2996
-            return $fields_n_values[ $this->get_primary_key_field()->get_name() ];
2997
-        }
2998
-        // we can't return a  primary key because there is none. instead return
2999
-        // a unique string indicating this model
3000
-        return $this->get_index_primary_key_string($fields_n_values);
3001
-    }
3002
-
3003
-
3004
-
3005
-    /**
3006
-     * Prepare the $field_obj 's value in $fields_n_values for use in the database.
3007
-     * If the field doesn't allow NULL, try to use its default. (If it doesn't allow NULL,
3008
-     * and there is no default, we pass it along. WPDB will take care of it)
3009
-     *
3010
-     * @param EE_Model_Field_Base $field_obj
3011
-     * @param array               $fields_n_values
3012
-     * @return mixed string|int|float depending on what the table column will be expecting
3013
-     * @throws EE_Error
3014
-     */
3015
-    protected function _prepare_value_or_use_default($field_obj, $fields_n_values)
3016
-    {
3017
-        // if this field doesn't allow nullable, don't allow it
3018
-        if (! $field_obj->is_nullable()
3019
-            && (
3020
-                ! isset($fields_n_values[ $field_obj->get_name() ])
3021
-                || $fields_n_values[ $field_obj->get_name() ] === null
3022
-            )
3023
-        ) {
3024
-            $fields_n_values[ $field_obj->get_name() ] = $field_obj->get_default_value();
3025
-        }
3026
-        $unprepared_value = isset($fields_n_values[ $field_obj->get_name() ])
3027
-            ? $fields_n_values[ $field_obj->get_name() ]
3028
-            : null;
3029
-        return $this->_prepare_value_for_use_in_db($unprepared_value, $field_obj);
3030
-    }
3031
-
3032
-
3033
-
3034
-    /**
3035
-     * Consolidates code for preparing  a value supplied to the model for use int eh db. Calls the field's
3036
-     * prepare_for_use_in_db method on the value, and depending on $value_already_prepare_by_model_obj, may also call
3037
-     * the field's prepare_for_set() method.
3038
-     *
3039
-     * @param mixed               $value value in the client code domain if $value_already_prepared_by_model_object is
3040
-     *                                   false, otherwise a value in the model object's domain (see lengthy comment at
3041
-     *                                   top of file)
3042
-     * @param EE_Model_Field_Base $field field which will be doing the preparing of the value. If null, we assume
3043
-     *                                   $value is a custom selection
3044
-     * @return mixed a value ready for use in the database for insertions, updating, or in a where clause
3045
-     */
3046
-    private function _prepare_value_for_use_in_db($value, $field)
3047
-    {
3048
-        if ($field && $field instanceof EE_Model_Field_Base) {
3049
-            // phpcs:disable PSR2.ControlStructures.SwitchDeclaration.TerminatingComment
3050
-            switch ($this->_values_already_prepared_by_model_object) {
3051
-                /** @noinspection PhpMissingBreakStatementInspection */
3052
-                case self::not_prepared_by_model_object:
3053
-                    $value = $field->prepare_for_set($value);
3054
-                // purposefully left out "return"
3055
-                case self::prepared_by_model_object:
3056
-                    /** @noinspection SuspiciousAssignmentsInspection */
3057
-                    $value = $field->prepare_for_use_in_db($value);
3058
-                case self::prepared_for_use_in_db:
3059
-                    // leave the value alone
3060
-            }
3061
-            return $value;
3062
-            // phpcs:enable
3063
-        }
3064
-        return $value;
3065
-    }
3066
-
3067
-
3068
-
3069
-    /**
3070
-     * Returns the main table on this model
3071
-     *
3072
-     * @return EE_Primary_Table
3073
-     * @throws EE_Error
3074
-     */
3075
-    protected function _get_main_table()
3076
-    {
3077
-        foreach ($this->_tables as $table) {
3078
-            if ($table instanceof EE_Primary_Table) {
3079
-                return $table;
3080
-            }
3081
-        }
3082
-        throw new EE_Error(sprintf(__(
3083
-            'There are no main tables on %s. They should be added to _tables array in the constructor',
3084
-            'event_espresso'
3085
-        ), get_class($this)));
3086
-    }
3087
-
3088
-
3089
-
3090
-    /**
3091
-     * table
3092
-     * returns EE_Primary_Table table name
3093
-     *
3094
-     * @return string
3095
-     * @throws EE_Error
3096
-     */
3097
-    public function table()
3098
-    {
3099
-        return $this->_get_main_table()->get_table_name();
3100
-    }
3101
-
3102
-
3103
-
3104
-    /**
3105
-     * table
3106
-     * returns first EE_Secondary_Table table name
3107
-     *
3108
-     * @return string
3109
-     */
3110
-    public function second_table()
3111
-    {
3112
-        // grab second table from tables array
3113
-        $second_table = end($this->_tables);
3114
-        return $second_table instanceof EE_Secondary_Table ? $second_table->get_table_name() : null;
3115
-    }
3116
-
3117
-
3118
-
3119
-    /**
3120
-     * get_table_obj_by_alias
3121
-     * returns table name given it's alias
3122
-     *
3123
-     * @param string $table_alias
3124
-     * @return EE_Primary_Table | EE_Secondary_Table
3125
-     */
3126
-    public function get_table_obj_by_alias($table_alias = '')
3127
-    {
3128
-        return isset($this->_tables[ $table_alias ]) ? $this->_tables[ $table_alias ] : null;
3129
-    }
3130
-
3131
-
3132
-
3133
-    /**
3134
-     * Gets all the tables of type EE_Other_Table from EEM_CPT_Basel_Model::_tables
3135
-     *
3136
-     * @return EE_Secondary_Table[]
3137
-     */
3138
-    protected function _get_other_tables()
3139
-    {
3140
-        $other_tables = array();
3141
-        foreach ($this->_tables as $table_alias => $table) {
3142
-            if ($table instanceof EE_Secondary_Table) {
3143
-                $other_tables[ $table_alias ] = $table;
3144
-            }
3145
-        }
3146
-        return $other_tables;
3147
-    }
3148
-
3149
-
3150
-
3151
-    /**
3152
-     * Finds all the fields that correspond to the given table
3153
-     *
3154
-     * @param string $table_alias , array key in EEM_Base::_tables
3155
-     * @return EE_Model_Field_Base[]
3156
-     */
3157
-    public function _get_fields_for_table($table_alias)
3158
-    {
3159
-        return $this->_fields[ $table_alias ];
3160
-    }
3161
-
3162
-
3163
-
3164
-    /**
3165
-     * Recurses through all the where parameters, and finds all the related models we'll need
3166
-     * to complete this query. Eg, given where parameters like array('EVT_ID'=>3) from within Event model, we won't
3167
-     * need any related models. But if the array were array('Registrations.REG_ID'=>3), we'd need the related
3168
-     * Registration model. If it were array('Registrations.Transactions.Payments.PAY_ID'=>3), then we'd need the
3169
-     * related Registration, Transaction, and Payment models.
3170
-     *
3171
-     * @param array $query_params @see https://github.com/eventespresso/event-espresso-core/tree/master/docs/G--Model-System/model-query-params.md
3172
-     * @return EE_Model_Query_Info_Carrier
3173
-     * @throws EE_Error
3174
-     */
3175
-    public function _extract_related_models_from_query($query_params)
3176
-    {
3177
-        $query_info_carrier = new EE_Model_Query_Info_Carrier();
3178
-        if (array_key_exists(0, $query_params)) {
3179
-            $this->_extract_related_models_from_sub_params_array_keys($query_params[0], $query_info_carrier, 0);
3180
-        }
3181
-        if (array_key_exists('group_by', $query_params)) {
3182
-            if (is_array($query_params['group_by'])) {
3183
-                $this->_extract_related_models_from_sub_params_array_values(
3184
-                    $query_params['group_by'],
3185
-                    $query_info_carrier,
3186
-                    'group_by'
3187
-                );
3188
-            } elseif (! empty($query_params['group_by'])) {
3189
-                $this->_extract_related_model_info_from_query_param(
3190
-                    $query_params['group_by'],
3191
-                    $query_info_carrier,
3192
-                    'group_by'
3193
-                );
3194
-            }
3195
-        }
3196
-        if (array_key_exists('having', $query_params)) {
3197
-            $this->_extract_related_models_from_sub_params_array_keys(
3198
-                $query_params[0],
3199
-                $query_info_carrier,
3200
-                'having'
3201
-            );
3202
-        }
3203
-        if (array_key_exists('order_by', $query_params)) {
3204
-            if (is_array($query_params['order_by'])) {
3205
-                $this->_extract_related_models_from_sub_params_array_keys(
3206
-                    $query_params['order_by'],
3207
-                    $query_info_carrier,
3208
-                    'order_by'
3209
-                );
3210
-            } elseif (! empty($query_params['order_by'])) {
3211
-                $this->_extract_related_model_info_from_query_param(
3212
-                    $query_params['order_by'],
3213
-                    $query_info_carrier,
3214
-                    'order_by'
3215
-                );
3216
-            }
3217
-        }
3218
-        if (array_key_exists('force_join', $query_params)) {
3219
-            $this->_extract_related_models_from_sub_params_array_values(
3220
-                $query_params['force_join'],
3221
-                $query_info_carrier,
3222
-                'force_join'
3223
-            );
3224
-        }
3225
-        $this->extractRelatedModelsFromCustomSelects($query_info_carrier);
3226
-        return $query_info_carrier;
3227
-    }
3228
-
3229
-
3230
-
3231
-    /**
3232
-     * For extracting related models from WHERE (0), HAVING (having), ORDER BY (order_by) or forced joins (force_join)
3233
-     *
3234
-     * @param array                       $sub_query_params @see https://github.com/eventespresso/event-espresso-core/tree/master/docs/G--Model-System/model-query-params.md#-0-where-conditions
3235
-     * @param EE_Model_Query_Info_Carrier $model_query_info_carrier
3236
-     * @param string                      $query_param_type one of $this->_allowed_query_params
3237
-     * @throws EE_Error
3238
-     * @return \EE_Model_Query_Info_Carrier
3239
-     */
3240
-    private function _extract_related_models_from_sub_params_array_keys(
3241
-        $sub_query_params,
3242
-        EE_Model_Query_Info_Carrier $model_query_info_carrier,
3243
-        $query_param_type
3244
-    ) {
3245
-        if (! empty($sub_query_params)) {
3246
-            $sub_query_params = (array) $sub_query_params;
3247
-            foreach ($sub_query_params as $param => $possibly_array_of_params) {
3248
-                // $param could be simply 'EVT_ID', or it could be 'Registrations.REG_ID', or even 'Registrations.Transactions.Payments.PAY_amount'
3249
-                $this->_extract_related_model_info_from_query_param(
3250
-                    $param,
3251
-                    $model_query_info_carrier,
3252
-                    $query_param_type
3253
-                );
3254
-                // if $possibly_array_of_params is an array, try recursing into it, searching for keys which
3255
-                // indicate needed joins. Eg, array('NOT'=>array('Registration.TXN_ID'=>23)). In this case, we tried
3256
-                // extracting models out of the 'NOT', which obviously wasn't successful, and then we recurse into the value
3257
-                // of array('Registration.TXN_ID'=>23)
3258
-                $query_param_sans_stars = $this->_remove_stars_and_anything_after_from_condition_query_param_key($param);
3259
-                if (in_array($query_param_sans_stars, $this->_logic_query_param_keys, true)) {
3260
-                    if (! is_array($possibly_array_of_params)) {
3261
-                        throw new EE_Error(sprintf(
3262
-                            __(
3263
-                                "You used a special where query param %s, but the value isn't an array of where query params, it's just %s'. It should be an array, eg array('EVT_ID'=>23,'OR'=>array('Venue.VNU_ID'=>32,'Venue.VNU_name'=>'monkey_land'))",
3264
-                                "event_espresso"
3265
-                            ),
3266
-                            $param,
3267
-                            $possibly_array_of_params
3268
-                        ));
3269
-                    }
3270
-                    $this->_extract_related_models_from_sub_params_array_keys(
3271
-                        $possibly_array_of_params,
3272
-                        $model_query_info_carrier,
3273
-                        $query_param_type
3274
-                    );
3275
-                } elseif ($query_param_type === 0 // ie WHERE
3276
-                          && is_array($possibly_array_of_params)
3277
-                          && isset($possibly_array_of_params[2])
3278
-                          && $possibly_array_of_params[2] == true
3279
-                ) {
3280
-                    // then $possible_array_of_params looks something like array('<','DTT_sold',true)
3281
-                    // indicating that $possible_array_of_params[1] is actually a field name,
3282
-                    // from which we should extract query parameters!
3283
-                    if (! isset($possibly_array_of_params[0], $possibly_array_of_params[1])) {
3284
-                        throw new EE_Error(sprintf(__(
3285
-                            "Improperly formed query parameter %s. It should be numerically indexed like array('<','DTT_sold',true); but you provided %s",
3286
-                            "event_espresso"
3287
-                        ), $query_param_type, implode(",", $possibly_array_of_params)));
3288
-                    }
3289
-                    $this->_extract_related_model_info_from_query_param(
3290
-                        $possibly_array_of_params[1],
3291
-                        $model_query_info_carrier,
3292
-                        $query_param_type
3293
-                    );
3294
-                }
3295
-            }
3296
-        }
3297
-        return $model_query_info_carrier;
3298
-    }
3299
-
3300
-
3301
-
3302
-    /**
3303
-     * For extracting related models from forced_joins, where the array values contain the info about what
3304
-     * models to join with. Eg an array like array('Attendee','Price.Price_Type');
3305
-     *
3306
-     * @param array                       $sub_query_params @see https://github.com/eventespresso/event-espresso-core/tree/master/docs/G--Model-System/model-query-params.md#0-where-conditions
3307
-     * @param EE_Model_Query_Info_Carrier $model_query_info_carrier
3308
-     * @param string                      $query_param_type one of $this->_allowed_query_params
3309
-     * @throws EE_Error
3310
-     * @return \EE_Model_Query_Info_Carrier
3311
-     */
3312
-    private function _extract_related_models_from_sub_params_array_values(
3313
-        $sub_query_params,
3314
-        EE_Model_Query_Info_Carrier $model_query_info_carrier,
3315
-        $query_param_type
3316
-    ) {
3317
-        if (! empty($sub_query_params)) {
3318
-            if (! is_array($sub_query_params)) {
3319
-                throw new EE_Error(sprintf(
3320
-                    __("Query parameter %s should be an array, but it isn't.", "event_espresso"),
3321
-                    $sub_query_params
3322
-                ));
3323
-            }
3324
-            foreach ($sub_query_params as $param) {
3325
-                // $param could be simply 'EVT_ID', or it could be 'Registrations.REG_ID', or even 'Registrations.Transactions.Payments.PAY_amount'
3326
-                $this->_extract_related_model_info_from_query_param(
3327
-                    $param,
3328
-                    $model_query_info_carrier,
3329
-                    $query_param_type
3330
-                );
3331
-            }
3332
-        }
3333
-        return $model_query_info_carrier;
3334
-    }
3335
-
3336
-
3337
-    /**
3338
-     * Extract all the query parts from  model query params
3339
-     * and put into a EEM_Related_Model_Info_Carrier for easy extraction into a query. We create this object
3340
-     * instead of directly constructing the SQL because often we need to extract info from the $query_params
3341
-     * but use them in a different order. Eg, we need to know what models we are querying
3342
-     * before we know what joins to perform. However, we need to know what data types correspond to which fields on
3343
-     * other models before we can finalize the where clause SQL.
3344
-     *
3345
-     * @param array $query_params @see https://github.com/eventespresso/event-espresso-core/tree/master/docs/G--Model-System/model-query-params.md
3346
-     * @throws EE_Error
3347
-     * @return EE_Model_Query_Info_Carrier
3348
-     * @throws ModelConfigurationException
3349
-     */
3350
-    public function _create_model_query_info_carrier($query_params)
3351
-    {
3352
-        if (! is_array($query_params)) {
3353
-            EE_Error::doing_it_wrong(
3354
-                'EEM_Base::_create_model_query_info_carrier',
3355
-                sprintf(
3356
-                    __(
3357
-                        '$query_params should be an array, you passed a variable of type %s',
3358
-                        'event_espresso'
3359
-                    ),
3360
-                    gettype($query_params)
3361
-                ),
3362
-                '4.6.0'
3363
-            );
3364
-            $query_params = array();
3365
-        }
3366
-        $query_params[0] = isset($query_params[0]) ? $query_params[0] : array();
3367
-        // first check if we should alter the query to account for caps or not
3368
-        // because the caps might require us to do extra joins
3369
-        if (isset($query_params['caps']) && $query_params['caps'] !== 'none') {
3370
-            $query_params[0] = array_replace_recursive(
3371
-                $query_params[0],
3372
-                $this->caps_where_conditions(
3373
-                    $query_params['caps']
3374
-                )
3375
-            );
3376
-        }
3377
-
3378
-        // check if we should alter the query to remove data related to protected
3379
-        // custom post types
3380
-        if (isset($query_params['exclude_protected']) && $query_params['exclude_protected'] === true) {
3381
-            $where_param_key_for_password = $this->modelChainAndPassword();
3382
-            // only include if related to a cpt where no password has been set
3383
-            $query_params[0]['OR*nopassword'] = array(
3384
-                $where_param_key_for_password => '',
3385
-                $where_param_key_for_password . '*' => array('IS_NULL')
3386
-            );
3387
-        }
3388
-        $query_object = $this->_extract_related_models_from_query($query_params);
3389
-        // verify where_query_params has NO numeric indexes.... that's simply not how you use it!
3390
-        foreach ($query_params[0] as $key => $value) {
3391
-            if (is_int($key)) {
3392
-                throw new EE_Error(
3393
-                    sprintf(
3394
-                        __(
3395
-                            "WHERE query params must NOT be numerically-indexed. You provided the array key '%s' for value '%s' while querying model %s. All the query params provided were '%s' Please read documentation on EEM_Base::get_all.",
3396
-                            "event_espresso"
3397
-                        ),
3398
-                        $key,
3399
-                        var_export($value, true),
3400
-                        var_export($query_params, true),
3401
-                        get_class($this)
3402
-                    )
3403
-                );
3404
-            }
3405
-        }
3406
-        if (array_key_exists('default_where_conditions', $query_params)
3407
-            && ! empty($query_params['default_where_conditions'])
3408
-        ) {
3409
-            $use_default_where_conditions = $query_params['default_where_conditions'];
3410
-        } else {
3411
-            $use_default_where_conditions = EEM_Base::default_where_conditions_all;
3412
-        }
3413
-        $query_params[0] = array_merge(
3414
-            $this->_get_default_where_conditions_for_models_in_query(
3415
-                $query_object,
3416
-                $use_default_where_conditions,
3417
-                $query_params[0]
3418
-            ),
3419
-            $query_params[0]
3420
-        );
3421
-        $query_object->set_where_sql($this->_construct_where_clause($query_params[0]));
3422
-        // if this is a "on_join_limit" then we are limiting on on a specific table in a multi_table join.
3423
-        // So we need to setup a subquery and use that for the main join.
3424
-        // Note for now this only works on the primary table for the model.
3425
-        // So for instance, you could set the limit array like this:
3426
-        // array( 'on_join_limit' => array('Primary_Table_Alias', array(1,10) ) )
3427
-        if (array_key_exists('on_join_limit', $query_params) && ! empty($query_params['on_join_limit'])) {
3428
-            $query_object->set_main_model_join_sql(
3429
-                $this->_construct_limit_join_select(
3430
-                    $query_params['on_join_limit'][0],
3431
-                    $query_params['on_join_limit'][1]
3432
-                )
3433
-            );
3434
-        }
3435
-        // set limit
3436
-        if (array_key_exists('limit', $query_params)) {
3437
-            if (is_array($query_params['limit'])) {
3438
-                if (! isset($query_params['limit'][0], $query_params['limit'][1])) {
3439
-                    $e = sprintf(
3440
-                        __(
3441
-                            "Invalid DB query. You passed '%s' for the LIMIT, but only the following are valid: an integer, string representing an integer, a string like 'int,int', or an array like array(int,int)",
3442
-                            "event_espresso"
3443
-                        ),
3444
-                        http_build_query($query_params['limit'])
3445
-                    );
3446
-                    throw new EE_Error($e . "|" . $e);
3447
-                }
3448
-                // they passed us an array for the limit. Assume it's like array(50,25), meaning offset by 50, and get 25
3449
-                $query_object->set_limit_sql(" LIMIT " . $query_params['limit'][0] . "," . $query_params['limit'][1]);
3450
-            } elseif (! empty($query_params['limit'])) {
3451
-                $query_object->set_limit_sql(" LIMIT " . $query_params['limit']);
3452
-            }
3453
-        }
3454
-        // set order by
3455
-        if (array_key_exists('order_by', $query_params)) {
3456
-            if (is_array($query_params['order_by'])) {
3457
-                // if they're using 'order_by' as an array, they can't use 'order' (because 'order_by' must
3458
-                // specify whether to ascend or descend on each field. Eg 'order_by'=>array('EVT_ID'=>'ASC'). So
3459
-                // including 'order' wouldn't make any sense if 'order_by' has already specified which way to order!
3460
-                if (array_key_exists('order', $query_params)) {
3461
-                    throw new EE_Error(
3462
-                        sprintf(
3463
-                            __(
3464
-                                "In querying %s, we are using query parameter 'order_by' as an array (keys:%s,values:%s), and so we can't use query parameter 'order' (value %s). You should just use the 'order_by' parameter ",
3465
-                                "event_espresso"
3466
-                            ),
3467
-                            get_class($this),
3468
-                            implode(", ", array_keys($query_params['order_by'])),
3469
-                            implode(", ", $query_params['order_by']),
3470
-                            $query_params['order']
3471
-                        )
3472
-                    );
3473
-                }
3474
-                $this->_extract_related_models_from_sub_params_array_keys(
3475
-                    $query_params['order_by'],
3476
-                    $query_object,
3477
-                    'order_by'
3478
-                );
3479
-                // assume it's an array of fields to order by
3480
-                $order_array = array();
3481
-                foreach ($query_params['order_by'] as $field_name_to_order_by => $order) {
3482
-                    $order = $this->_extract_order($order);
3483
-                    $order_array[] = $this->_deduce_column_name_from_query_param($field_name_to_order_by) . SP . $order;
3484
-                }
3485
-                $query_object->set_order_by_sql(" ORDER BY " . implode(",", $order_array));
3486
-            } elseif (! empty($query_params['order_by'])) {
3487
-                $this->_extract_related_model_info_from_query_param(
3488
-                    $query_params['order_by'],
3489
-                    $query_object,
3490
-                    'order',
3491
-                    $query_params['order_by']
3492
-                );
3493
-                $order = isset($query_params['order'])
3494
-                    ? $this->_extract_order($query_params['order'])
3495
-                    : 'DESC';
3496
-                $query_object->set_order_by_sql(
3497
-                    " ORDER BY " . $this->_deduce_column_name_from_query_param($query_params['order_by']) . SP . $order
3498
-                );
3499
-            }
3500
-        }
3501
-        // if 'order_by' wasn't set, maybe they are just using 'order' on its own?
3502
-        if (! array_key_exists('order_by', $query_params)
3503
-            && array_key_exists('order', $query_params)
3504
-            && ! empty($query_params['order'])
3505
-        ) {
3506
-            $pk_field = $this->get_primary_key_field();
3507
-            $order = $this->_extract_order($query_params['order']);
3508
-            $query_object->set_order_by_sql(" ORDER BY " . $pk_field->get_qualified_column() . SP . $order);
3509
-        }
3510
-        // set group by
3511
-        if (array_key_exists('group_by', $query_params)) {
3512
-            if (is_array($query_params['group_by'])) {
3513
-                // it's an array, so assume we'll be grouping by a bunch of stuff
3514
-                $group_by_array = array();
3515
-                foreach ($query_params['group_by'] as $field_name_to_group_by) {
3516
-                    $group_by_array[] = $this->_deduce_column_name_from_query_param($field_name_to_group_by);
3517
-                }
3518
-                $query_object->set_group_by_sql(" GROUP BY " . implode(", ", $group_by_array));
3519
-            } elseif (! empty($query_params['group_by'])) {
3520
-                $query_object->set_group_by_sql(
3521
-                    " GROUP BY " . $this->_deduce_column_name_from_query_param($query_params['group_by'])
3522
-                );
3523
-            }
3524
-        }
3525
-        // set having
3526
-        if (array_key_exists('having', $query_params) && $query_params['having']) {
3527
-            $query_object->set_having_sql($this->_construct_having_clause($query_params['having']));
3528
-        }
3529
-        // now, just verify they didn't pass anything wack
3530
-        foreach ($query_params as $query_key => $query_value) {
3531
-            if (! in_array($query_key, $this->_allowed_query_params, true)) {
3532
-                throw new EE_Error(
3533
-                    sprintf(
3534
-                        __(
3535
-                            "You passed %s as a query parameter to %s, which is illegal! The allowed query parameters are %s",
3536
-                            'event_espresso'
3537
-                        ),
3538
-                        $query_key,
3539
-                        get_class($this),
3540
-                        //                      print_r( $this->_allowed_query_params, TRUE )
3541
-                        implode(',', $this->_allowed_query_params)
3542
-                    )
3543
-                );
3544
-            }
3545
-        }
3546
-        $main_model_join_sql = $query_object->get_main_model_join_sql();
3547
-        if (empty($main_model_join_sql)) {
3548
-            $query_object->set_main_model_join_sql($this->_construct_internal_join());
3549
-        }
3550
-        return $query_object;
3551
-    }
3552
-
3553
-
3554
-
3555
-    /**
3556
-     * Gets the where conditions that should be imposed on the query based on the
3557
-     * context (eg reading frontend, backend, edit or delete).
3558
-     *
3559
-     * @param string $context one of EEM_Base::valid_cap_contexts()
3560
-     * @return array @see https://github.com/eventespresso/event-espresso-core/tree/master/docs/G--Model-System/model-query-params.md#0-where-conditions
3561
-     * @throws EE_Error
3562
-     */
3563
-    public function caps_where_conditions($context = self::caps_read)
3564
-    {
3565
-        EEM_Base::verify_is_valid_cap_context($context);
3566
-        $cap_where_conditions = array();
3567
-        $cap_restrictions = $this->caps_missing($context);
3568
-        /**
3569
-         * @var $cap_restrictions EE_Default_Where_Conditions[]
3570
-         */
3571
-        foreach ($cap_restrictions as $cap => $restriction_if_no_cap) {
3572
-            $cap_where_conditions = array_replace_recursive(
3573
-                $cap_where_conditions,
3574
-                $restriction_if_no_cap->get_default_where_conditions()
3575
-            );
3576
-        }
3577
-        return apply_filters(
3578
-            'FHEE__EEM_Base__caps_where_conditions__return',
3579
-            $cap_where_conditions,
3580
-            $this,
3581
-            $context,
3582
-            $cap_restrictions
3583
-        );
3584
-    }
3585
-
3586
-
3587
-
3588
-    /**
3589
-     * Verifies that $should_be_order_string is in $this->_allowed_order_values,
3590
-     * otherwise throws an exception
3591
-     *
3592
-     * @param string $should_be_order_string
3593
-     * @return string either ASC, asc, DESC or desc
3594
-     * @throws EE_Error
3595
-     */
3596
-    private function _extract_order($should_be_order_string)
3597
-    {
3598
-        if (in_array($should_be_order_string, $this->_allowed_order_values)) {
3599
-            return $should_be_order_string;
3600
-        }
3601
-        throw new EE_Error(
3602
-            sprintf(
3603
-                __(
3604
-                    "While performing a query on '%s', tried to use '%s' as an order parameter. ",
3605
-                    "event_espresso"
3606
-                ),
3607
-                get_class($this),
3608
-                $should_be_order_string
3609
-            )
3610
-        );
3611
-    }
3612
-
3613
-
3614
-
3615
-    /**
3616
-     * Looks at all the models which are included in this query, and asks each
3617
-     * for their universal_where_params, and returns them in the same format as $query_params[0] (where),
3618
-     * so they can be merged
3619
-     *
3620
-     * @param EE_Model_Query_Info_Carrier $query_info_carrier
3621
-     * @param string                      $use_default_where_conditions can be 'none','other_models_only', or 'all'.
3622
-     *                                                                  'none' means NO default where conditions will
3623
-     *                                                                  be used AT ALL during this query.
3624
-     *                                                                  'other_models_only' means default where
3625
-     *                                                                  conditions from other models will be used, but
3626
-     *                                                                  not for this primary model. 'all', the default,
3627
-     *                                                                  means default where conditions will apply as
3628
-     *                                                                  normal
3629
-     * @param array                       $where_query_params           @see https://github.com/eventespresso/event-espresso-core/tree/master/docs/G--Model-System/model-query-params.md#0-where-conditions
3630
-     * @throws EE_Error
3631
-     * @return array @see https://github.com/eventespresso/event-espresso-core/tree/master/docs/G--Model-System/model-query-params.md#0-where-conditions
3632
-     */
3633
-    private function _get_default_where_conditions_for_models_in_query(
3634
-        EE_Model_Query_Info_Carrier $query_info_carrier,
3635
-        $use_default_where_conditions = EEM_Base::default_where_conditions_all,
3636
-        $where_query_params = array()
3637
-    ) {
3638
-        $allowed_used_default_where_conditions_values = EEM_Base::valid_default_where_conditions();
3639
-        if (! in_array($use_default_where_conditions, $allowed_used_default_where_conditions_values)) {
3640
-            throw new EE_Error(sprintf(
3641
-                __(
3642
-                    "You passed an invalid value to the query parameter 'default_where_conditions' of '%s'. Allowed values are %s",
3643
-                    "event_espresso"
3644
-                ),
3645
-                $use_default_where_conditions,
3646
-                implode(", ", $allowed_used_default_where_conditions_values)
3647
-            ));
3648
-        }
3649
-        $universal_query_params = array();
3650
-        if ($this->_should_use_default_where_conditions($use_default_where_conditions, true)) {
3651
-            $universal_query_params = $this->_get_default_where_conditions();
3652
-        } elseif ($this->_should_use_minimum_where_conditions($use_default_where_conditions, true)) {
3653
-            $universal_query_params = $this->_get_minimum_where_conditions();
3654
-        }
3655
-        foreach ($query_info_carrier->get_model_names_included() as $model_relation_path => $model_name) {
3656
-            $related_model = $this->get_related_model_obj($model_name);
3657
-            if ($this->_should_use_default_where_conditions($use_default_where_conditions, false)) {
3658
-                $related_model_universal_where_params = $related_model->_get_default_where_conditions($model_relation_path);
3659
-            } elseif ($this->_should_use_minimum_where_conditions($use_default_where_conditions, false)) {
3660
-                $related_model_universal_where_params = $related_model->_get_minimum_where_conditions($model_relation_path);
3661
-            } else {
3662
-                // we don't want to add full or even minimum default where conditions from this model, so just continue
3663
-                continue;
3664
-            }
3665
-            $overrides = $this->_override_defaults_or_make_null_friendly(
3666
-                $related_model_universal_where_params,
3667
-                $where_query_params,
3668
-                $related_model,
3669
-                $model_relation_path
3670
-            );
3671
-            $universal_query_params = EEH_Array::merge_arrays_and_overwrite_keys(
3672
-                $universal_query_params,
3673
-                $overrides
3674
-            );
3675
-        }
3676
-        return $universal_query_params;
3677
-    }
3678
-
3679
-
3680
-
3681
-    /**
3682
-     * Determines whether or not we should use default where conditions for the model in question
3683
-     * (this model, or other related models).
3684
-     * Basically, we should use default where conditions on this model if they have requested to use them on all models,
3685
-     * this model only, or to use minimum where conditions on all other models and normal where conditions on this one.
3686
-     * We should use default where conditions on related models when they requested to use default where conditions
3687
-     * on all models, or specifically just on other related models
3688
-     * @param      $default_where_conditions_value
3689
-     * @param bool $for_this_model false means this is for OTHER related models
3690
-     * @return bool
3691
-     */
3692
-    private function _should_use_default_where_conditions($default_where_conditions_value, $for_this_model = true)
3693
-    {
3694
-        return (
3695
-                   $for_this_model
3696
-                   && in_array(
3697
-                       $default_where_conditions_value,
3698
-                       array(
3699
-                           EEM_Base::default_where_conditions_all,
3700
-                           EEM_Base::default_where_conditions_this_only,
3701
-                           EEM_Base::default_where_conditions_minimum_others,
3702
-                       ),
3703
-                       true
3704
-                   )
3705
-               )
3706
-               || (
3707
-                   ! $for_this_model
3708
-                   && in_array(
3709
-                       $default_where_conditions_value,
3710
-                       array(
3711
-                           EEM_Base::default_where_conditions_all,
3712
-                           EEM_Base::default_where_conditions_others_only,
3713
-                       ),
3714
-                       true
3715
-                   )
3716
-               );
3717
-    }
3718
-
3719
-    /**
3720
-     * Determines whether or not we should use default minimum conditions for the model in question
3721
-     * (this model, or other related models).
3722
-     * Basically, we should use minimum where conditions on this model only if they requested all models to use minimum
3723
-     * where conditions.
3724
-     * We should use minimum where conditions on related models if they requested to use minimum where conditions
3725
-     * on this model or others
3726
-     * @param      $default_where_conditions_value
3727
-     * @param bool $for_this_model false means this is for OTHER related models
3728
-     * @return bool
3729
-     */
3730
-    private function _should_use_minimum_where_conditions($default_where_conditions_value, $for_this_model = true)
3731
-    {
3732
-        return (
3733
-                   $for_this_model
3734
-                   && $default_where_conditions_value === EEM_Base::default_where_conditions_minimum_all
3735
-               )
3736
-               || (
3737
-                   ! $for_this_model
3738
-                   && in_array(
3739
-                       $default_where_conditions_value,
3740
-                       array(
3741
-                           EEM_Base::default_where_conditions_minimum_others,
3742
-                           EEM_Base::default_where_conditions_minimum_all,
3743
-                       ),
3744
-                       true
3745
-                   )
3746
-               );
3747
-    }
3748
-
3749
-
3750
-    /**
3751
-     * Checks if any of the defaults have been overridden. If there are any that AREN'T overridden,
3752
-     * then we also add a special where condition which allows for that model's primary key
3753
-     * to be null (which is important for JOINs. Eg, if you want to see all Events ordered by Venue's name,
3754
-     * then Event's with NO Venue won't appear unless you allow VNU_ID to be NULL)
3755
-     *
3756
-     * @param array    $default_where_conditions
3757
-     * @param array    $provided_where_conditions
3758
-     * @param EEM_Base $model
3759
-     * @param string   $model_relation_path like 'Transaction.Payment.'
3760
-     * @return array @see https://github.com/eventespresso/event-espresso-core/tree/master/docs/G--Model-System/model-query-params.md#0-where-conditions
3761
-     * @throws EE_Error
3762
-     */
3763
-    private function _override_defaults_or_make_null_friendly(
3764
-        $default_where_conditions,
3765
-        $provided_where_conditions,
3766
-        $model,
3767
-        $model_relation_path
3768
-    ) {
3769
-        $null_friendly_where_conditions = array();
3770
-        $none_overridden = true;
3771
-        $or_condition_key_for_defaults = 'OR*' . get_class($model);
3772
-        foreach ($default_where_conditions as $key => $val) {
3773
-            if (isset($provided_where_conditions[ $key ])) {
3774
-                $none_overridden = false;
3775
-            } else {
3776
-                $null_friendly_where_conditions[ $or_condition_key_for_defaults ]['AND'][ $key ] = $val;
3777
-            }
3778
-        }
3779
-        if ($none_overridden && $default_where_conditions) {
3780
-            if ($model->has_primary_key_field()) {
3781
-                $null_friendly_where_conditions[ $or_condition_key_for_defaults ][ $model_relation_path
3782
-                                                                                . "."
3783
-                                                                                . $model->primary_key_name() ] = array('IS NULL');
3784
-            }/*else{
292
+	/**
293
+	 * @var EE_Password_Field|null Automatically set when calling getPasswordField()
294
+	 */
295
+	protected $password_field;
296
+
297
+	/**
298
+	 *    List of valid operators that can be used for querying.
299
+	 * The keys are all operators we'll accept, the values are the real SQL
300
+	 * operators used
301
+	 *
302
+	 * @var array
303
+	 */
304
+	protected $_valid_operators = array(
305
+		'='           => '=',
306
+		'<='          => '<=',
307
+		'<'           => '<',
308
+		'>='          => '>=',
309
+		'>'           => '>',
310
+		'!='          => '!=',
311
+		'LIKE'        => 'LIKE',
312
+		'like'        => 'LIKE',
313
+		'NOT_LIKE'    => 'NOT LIKE',
314
+		'not_like'    => 'NOT LIKE',
315
+		'NOT LIKE'    => 'NOT LIKE',
316
+		'not like'    => 'NOT LIKE',
317
+		'IN'          => 'IN',
318
+		'in'          => 'IN',
319
+		'NOT_IN'      => 'NOT IN',
320
+		'not_in'      => 'NOT IN',
321
+		'NOT IN'      => 'NOT IN',
322
+		'not in'      => 'NOT IN',
323
+		'between'     => 'BETWEEN',
324
+		'BETWEEN'     => 'BETWEEN',
325
+		'IS_NOT_NULL' => 'IS NOT NULL',
326
+		'is_not_null' => 'IS NOT NULL',
327
+		'IS NOT NULL' => 'IS NOT NULL',
328
+		'is not null' => 'IS NOT NULL',
329
+		'IS_NULL'     => 'IS NULL',
330
+		'is_null'     => 'IS NULL',
331
+		'IS NULL'     => 'IS NULL',
332
+		'is null'     => 'IS NULL',
333
+		'REGEXP'      => 'REGEXP',
334
+		'regexp'      => 'REGEXP',
335
+		'NOT_REGEXP'  => 'NOT REGEXP',
336
+		'not_regexp'  => 'NOT REGEXP',
337
+		'NOT REGEXP'  => 'NOT REGEXP',
338
+		'not regexp'  => 'NOT REGEXP',
339
+	);
340
+
341
+	/**
342
+	 * operators that work like 'IN', accepting a comma-separated list of values inside brackets. Eg '(1,2,3)'
343
+	 *
344
+	 * @var array
345
+	 */
346
+	protected $_in_style_operators = array('IN', 'NOT IN');
347
+
348
+	/**
349
+	 * operators that work like 'BETWEEN'.  Typically used for datetime calculations, i.e. "BETWEEN '12-1-2011' AND
350
+	 * '12-31-2012'"
351
+	 *
352
+	 * @var array
353
+	 */
354
+	protected $_between_style_operators = array('BETWEEN');
355
+
356
+	/**
357
+	 * Operators that work like SQL's like: input should be assumed to be a string, already prepared for a LIKE query.
358
+	 * @var array
359
+	 */
360
+	protected $_like_style_operators = array('LIKE', 'NOT LIKE');
361
+	/**
362
+	 * operators that are used for handling NUll and !NULL queries.  Typically used for when checking if a row exists
363
+	 * on a join table.
364
+	 *
365
+	 * @var array
366
+	 */
367
+	protected $_null_style_operators = array('IS NOT NULL', 'IS NULL');
368
+
369
+	/**
370
+	 * Allowed values for $query_params['order'] for ordering in queries
371
+	 *
372
+	 * @var array
373
+	 */
374
+	protected $_allowed_order_values = array('asc', 'desc', 'ASC', 'DESC');
375
+
376
+	/**
377
+	 * When these are keys in a WHERE or HAVING clause, they are handled much differently
378
+	 * than regular field names. It is assumed that their values are an array of WHERE conditions
379
+	 *
380
+	 * @var array
381
+	 */
382
+	private $_logic_query_param_keys = array('not', 'and', 'or', 'NOT', 'AND', 'OR');
383
+
384
+	/**
385
+	 * Allowed keys in $query_params arrays passed into queries. Note that 0 is meant to always be a
386
+	 * 'where', but 'where' clauses are so common that we thought we'd omit it
387
+	 *
388
+	 * @var array
389
+	 */
390
+	private $_allowed_query_params = array(
391
+		0,
392
+		'limit',
393
+		'order_by',
394
+		'group_by',
395
+		'having',
396
+		'force_join',
397
+		'order',
398
+		'on_join_limit',
399
+		'default_where_conditions',
400
+		'caps',
401
+		'extra_selects',
402
+		'exclude_protected',
403
+	);
404
+
405
+	/**
406
+	 * All the data types that can be used in $wpdb->prepare statements.
407
+	 *
408
+	 * @var array
409
+	 */
410
+	private $_valid_wpdb_data_types = array('%d', '%s', '%f');
411
+
412
+	/**
413
+	 * @var EE_Registry $EE
414
+	 */
415
+	protected $EE = null;
416
+
417
+
418
+	/**
419
+	 * Property which, when set, will have this model echo out the next X queries to the page for debugging.
420
+	 *
421
+	 * @var int
422
+	 */
423
+	protected $_show_next_x_db_queries = 0;
424
+
425
+	/**
426
+	 * When using _get_all_wpdb_results, you can specify a custom selection. If you do so,
427
+	 * it gets saved on this property as an instance of CustomSelects so those selections can be used in
428
+	 * WHERE, GROUP_BY, etc.
429
+	 *
430
+	 * @var CustomSelects
431
+	 */
432
+	protected $_custom_selections = array();
433
+
434
+	/**
435
+	 * key => value Entity Map using  array( EEM_Base::$_model_query_blog_id => array( ID => model object ) )
436
+	 * caches every model object we've fetched from the DB on this request
437
+	 *
438
+	 * @var array
439
+	 */
440
+	protected $_entity_map;
441
+
442
+	/**
443
+	 * @var LoaderInterface $loader
444
+	 */
445
+	private static $loader;
446
+
447
+
448
+	/**
449
+	 * constant used to show EEM_Base has not yet verified the db on this http request
450
+	 */
451
+	const db_verified_none = 0;
452
+
453
+	/**
454
+	 * constant used to show EEM_Base has verified the EE core db on this http request,
455
+	 * but not the addons' dbs
456
+	 */
457
+	const db_verified_core = 1;
458
+
459
+	/**
460
+	 * constant used to show EEM_Base has verified the addons' dbs (and implicitly
461
+	 * the EE core db too)
462
+	 */
463
+	const db_verified_addons = 2;
464
+
465
+	/**
466
+	 * indicates whether an EEM_Base child has already re-verified the DB
467
+	 * is ok (we don't want to do it repetitively). Should be set to one the constants
468
+	 * looking like EEM_Base::db_verified_*
469
+	 *
470
+	 * @var int - 0 = none, 1 = core, 2 = addons
471
+	 */
472
+	protected static $_db_verification_level = EEM_Base::db_verified_none;
473
+
474
+	/**
475
+	 * @const constant for 'default_where_conditions' to apply default where conditions to ALL queried models
476
+	 *        (eg, if retrieving registrations ordered by their datetimes, this will only return non-trashed
477
+	 *        registrations for non-trashed tickets for non-trashed datetimes)
478
+	 */
479
+	const default_where_conditions_all = 'all';
480
+
481
+	/**
482
+	 * @const constant for 'default_where_conditions' to apply default where conditions to THIS model only, but
483
+	 *        no other models which are joined to (eg, if retrieving registrations ordered by their datetimes, this will
484
+	 *        return non-trashed registrations, regardless of the related datetimes and tickets' statuses).
485
+	 *        It is preferred to use EEM_Base::default_where_conditions_minimum_others because, when joining to
486
+	 *        models which share tables with other models, this can return data for the wrong model.
487
+	 */
488
+	const default_where_conditions_this_only = 'this_model_only';
489
+
490
+	/**
491
+	 * @const constant for 'default_where_conditions' to apply default where conditions to other models queried,
492
+	 *        but not the current model (eg, if retrieving registrations ordered by their datetimes, this will
493
+	 *        return all registrations related to non-trashed tickets and non-trashed datetimes)
494
+	 */
495
+	const default_where_conditions_others_only = 'other_models_only';
496
+
497
+	/**
498
+	 * @const constant for 'default_where_conditions' to apply minimum where conditions to all models queried.
499
+	 *        For most models this the same as EEM_Base::default_where_conditions_none, except for models which share
500
+	 *        their table with other models, like the Event and Venue models. For example, when querying for events
501
+	 *        ordered by their venues' name, this will be sure to only return real events with associated real venues
502
+	 *        (regardless of whether those events and venues are trashed)
503
+	 *        In contrast, using EEM_Base::default_where_conditions_none would could return WP posts other than EE
504
+	 *        events.
505
+	 */
506
+	const default_where_conditions_minimum_all = 'minimum';
507
+
508
+	/**
509
+	 * @const constant for 'default_where_conditions' to apply apply where conditions to other models, and full default
510
+	 *        where conditions for the queried model (eg, when querying events ordered by venues' names, this will
511
+	 *        return non-trashed events for any venues, regardless of whether those associated venues are trashed or
512
+	 *        not)
513
+	 */
514
+	const default_where_conditions_minimum_others = 'full_this_minimum_others';
515
+
516
+	/**
517
+	 * @const constant for 'default_where_conditions' to NOT apply any where conditions. This should very rarely be
518
+	 *        used, because when querying from a model which shares its table with another model (eg Events and Venues)
519
+	 *        it's possible it will return table entries for other models. You should use
520
+	 *        EEM_Base::default_where_conditions_minimum_all instead.
521
+	 */
522
+	const default_where_conditions_none = 'none';
523
+
524
+
525
+
526
+	/**
527
+	 * About all child constructors:
528
+	 * they should define the _tables, _fields and _model_relations arrays.
529
+	 * Should ALWAYS be called after child constructor.
530
+	 * In order to make the child constructors to be as simple as possible, this parent constructor
531
+	 * finalizes constructing all the object's attributes.
532
+	 * Generally, rather than requiring a child to code
533
+	 * $this->_tables = array(
534
+	 *        'Event_Post_Table' => new EE_Table('Event_Post_Table','wp_posts')
535
+	 *        ...);
536
+	 *  (thus repeating itself in the array key and in the constructor of the new EE_Table,)
537
+	 * each EE_Table has a function to set the table's alias after the constructor, using
538
+	 * the array key ('Event_Post_Table'), instead of repeating it. The model fields and model relations
539
+	 * do something similar.
540
+	 *
541
+	 * @param null $timezone
542
+	 * @throws EE_Error
543
+	 */
544
+	protected function __construct($timezone = null)
545
+	{
546
+		// check that the model has not been loaded too soon
547
+		if (! did_action('AHEE__EE_System__load_espresso_addons')) {
548
+			throw new EE_Error(
549
+				sprintf(
550
+					__(
551
+						'The %1$s model can not be loaded before the "AHEE__EE_System__load_espresso_addons" hook has been called. This gives other addons a chance to extend this model.',
552
+						'event_espresso'
553
+					),
554
+					get_class($this)
555
+				)
556
+			);
557
+		}
558
+		/**
559
+		 * Set blogid for models to current blog. However we ONLY do this if $_model_query_blog_id is not already set.
560
+		 */
561
+		if (empty(EEM_Base::$_model_query_blog_id)) {
562
+			EEM_Base::set_model_query_blog_id();
563
+		}
564
+		/**
565
+		 * Filters the list of tables on a model. It is best to NOT use this directly and instead
566
+		 * just use EE_Register_Model_Extension
567
+		 *
568
+		 * @var EE_Table_Base[] $_tables
569
+		 */
570
+		$this->_tables = (array) apply_filters('FHEE__' . get_class($this) . '__construct__tables', $this->_tables);
571
+		foreach ($this->_tables as $table_alias => $table_obj) {
572
+			/** @var $table_obj EE_Table_Base */
573
+			$table_obj->_construct_finalize_with_alias($table_alias);
574
+			if ($table_obj instanceof EE_Secondary_Table) {
575
+				/** @var $table_obj EE_Secondary_Table */
576
+				$table_obj->_construct_finalize_set_table_to_join_with($this->_get_main_table());
577
+			}
578
+		}
579
+		/**
580
+		 * Filters the list of fields on a model. It is best to NOT use this directly and instead just use
581
+		 * EE_Register_Model_Extension
582
+		 *
583
+		 * @param EE_Model_Field_Base[] $_fields
584
+		 */
585
+		$this->_fields = (array) apply_filters('FHEE__' . get_class($this) . '__construct__fields', $this->_fields);
586
+		$this->_invalidate_field_caches();
587
+		foreach ($this->_fields as $table_alias => $fields_for_table) {
588
+			if (! array_key_exists($table_alias, $this->_tables)) {
589
+				throw new EE_Error(sprintf(__(
590
+					"Table alias %s does not exist in EEM_Base child's _tables array. Only tables defined are %s",
591
+					'event_espresso'
592
+				), $table_alias, implode(",", $this->_fields)));
593
+			}
594
+			foreach ($fields_for_table as $field_name => $field_obj) {
595
+				/** @var $field_obj EE_Model_Field_Base | EE_Primary_Key_Field_Base */
596
+				// primary key field base has a slightly different _construct_finalize
597
+				/** @var $field_obj EE_Model_Field_Base */
598
+				$field_obj->_construct_finalize($table_alias, $field_name, $this->get_this_model_name());
599
+			}
600
+		}
601
+		// everything is related to Extra_Meta
602
+		if (get_class($this) !== 'EEM_Extra_Meta') {
603
+			// make extra meta related to everything, but don't block deleting things just
604
+			// because they have related extra meta info. For now just orphan those extra meta
605
+			// in the future we should automatically delete them
606
+			$this->_model_relations['Extra_Meta'] = new EE_Has_Many_Any_Relation(false);
607
+		}
608
+		// and change logs
609
+		if (get_class($this) !== 'EEM_Change_Log') {
610
+			$this->_model_relations['Change_Log'] = new EE_Has_Many_Any_Relation(false);
611
+		}
612
+		/**
613
+		 * Filters the list of relations on a model. It is best to NOT use this directly and instead just use
614
+		 * EE_Register_Model_Extension
615
+		 *
616
+		 * @param EE_Model_Relation_Base[] $_model_relations
617
+		 */
618
+		$this->_model_relations = (array) apply_filters(
619
+			'FHEE__' . get_class($this) . '__construct__model_relations',
620
+			$this->_model_relations
621
+		);
622
+		foreach ($this->_model_relations as $model_name => $relation_obj) {
623
+			/** @var $relation_obj EE_Model_Relation_Base */
624
+			$relation_obj->_construct_finalize_set_models($this->get_this_model_name(), $model_name);
625
+		}
626
+		foreach ($this->_indexes as $index_name => $index_obj) {
627
+			/** @var $index_obj EE_Index */
628
+			$index_obj->_construct_finalize($index_name, $this->get_this_model_name());
629
+		}
630
+		$this->set_timezone($timezone);
631
+		// finalize default where condition strategy, or set default
632
+		if (! $this->_default_where_conditions_strategy) {
633
+			// nothing was set during child constructor, so set default
634
+			$this->_default_where_conditions_strategy = new EE_Default_Where_Conditions();
635
+		}
636
+		$this->_default_where_conditions_strategy->_finalize_construct($this);
637
+		if (! $this->_minimum_where_conditions_strategy) {
638
+			// nothing was set during child constructor, so set default
639
+			$this->_minimum_where_conditions_strategy = new EE_Default_Where_Conditions();
640
+		}
641
+		$this->_minimum_where_conditions_strategy->_finalize_construct($this);
642
+		// if the cap slug hasn't been set, and we haven't set it to false on purpose
643
+		// to indicate to NOT set it, set it to the logical default
644
+		if ($this->_caps_slug === null) {
645
+			$this->_caps_slug = EEH_Inflector::pluralize_and_lower($this->get_this_model_name());
646
+		}
647
+		// initialize the standard cap restriction generators if none were specified by the child constructor
648
+		if ($this->_cap_restriction_generators !== false) {
649
+			foreach ($this->cap_contexts_to_cap_action_map() as $cap_context => $action) {
650
+				if (! isset($this->_cap_restriction_generators[ $cap_context ])) {
651
+					$this->_cap_restriction_generators[ $cap_context ] = apply_filters(
652
+						'FHEE__EEM_Base___construct__standard_cap_restriction_generator',
653
+						new EE_Restriction_Generator_Protected(),
654
+						$cap_context,
655
+						$this
656
+					);
657
+				}
658
+			}
659
+		}
660
+		// if there are cap restriction generators, use them to make the default cap restrictions
661
+		if ($this->_cap_restriction_generators !== false) {
662
+			foreach ($this->_cap_restriction_generators as $context => $generator_object) {
663
+				if (! $generator_object) {
664
+					continue;
665
+				}
666
+				if (! $generator_object instanceof EE_Restriction_Generator_Base) {
667
+					throw new EE_Error(
668
+						sprintf(
669
+							__(
670
+								'Index "%1$s" in the model %2$s\'s _cap_restriction_generators is not a child of EE_Restriction_Generator_Base. It should be that or NULL.',
671
+								'event_espresso'
672
+							),
673
+							$context,
674
+							$this->get_this_model_name()
675
+						)
676
+					);
677
+				}
678
+				$action = $this->cap_action_for_context($context);
679
+				if (! $generator_object->construction_finalized()) {
680
+					$generator_object->_construct_finalize($this, $action);
681
+				}
682
+			}
683
+		}
684
+		do_action('AHEE__' . get_class($this) . '__construct__end');
685
+	}
686
+
687
+
688
+
689
+	/**
690
+	 * Used to set the $_model_query_blog_id static property.
691
+	 *
692
+	 * @param int $blog_id  If provided then will set the blog_id for the models to this id.  If not provided then the
693
+	 *                      value for get_current_blog_id() will be used.
694
+	 */
695
+	public static function set_model_query_blog_id($blog_id = 0)
696
+	{
697
+		EEM_Base::$_model_query_blog_id = $blog_id > 0 ? (int) $blog_id : get_current_blog_id();
698
+	}
699
+
700
+
701
+
702
+	/**
703
+	 * Returns whatever is set as the internal $model_query_blog_id.
704
+	 *
705
+	 * @return int
706
+	 */
707
+	public static function get_model_query_blog_id()
708
+	{
709
+		return EEM_Base::$_model_query_blog_id;
710
+	}
711
+
712
+
713
+
714
+	/**
715
+	 * This function is a singleton method used to instantiate the Espresso_model object
716
+	 *
717
+	 * @param string $timezone string representing the timezone we want to set for returned Date Time Strings
718
+	 *                                (and any incoming timezone data that gets saved).
719
+	 *                                Note this just sends the timezone info to the date time model field objects.
720
+	 *                                Default is NULL
721
+	 *                                (and will be assumed using the set timezone in the 'timezone_string' wp option)
722
+	 * @return static (as in the concrete child class)
723
+	 * @throws EE_Error
724
+	 * @throws InvalidArgumentException
725
+	 * @throws InvalidDataTypeException
726
+	 * @throws InvalidInterfaceException
727
+	 */
728
+	public static function instance($timezone = null)
729
+	{
730
+		// check if instance of Espresso_model already exists
731
+		if (! static::$_instance instanceof static) {
732
+			// instantiate Espresso_model
733
+			static::$_instance = new static(
734
+				$timezone,
735
+				LoaderFactory::getLoader()->load('EventEspresso\core\services\orm\ModelFieldFactory')
736
+			);
737
+		}
738
+		// we might have a timezone set, let set_timezone decide what to do with it
739
+		static::$_instance->set_timezone($timezone);
740
+		// Espresso_model object
741
+		return static::$_instance;
742
+	}
743
+
744
+
745
+
746
+	/**
747
+	 * resets the model and returns it
748
+	 *
749
+	 * @param null | string $timezone
750
+	 * @return EEM_Base|null (if the model was already instantiated, returns it, with
751
+	 * all its properties reset; if it wasn't instantiated, returns null)
752
+	 * @throws EE_Error
753
+	 * @throws ReflectionException
754
+	 * @throws InvalidArgumentException
755
+	 * @throws InvalidDataTypeException
756
+	 * @throws InvalidInterfaceException
757
+	 */
758
+	public static function reset($timezone = null)
759
+	{
760
+		if (static::$_instance instanceof EEM_Base) {
761
+			// let's try to NOT swap out the current instance for a new one
762
+			// because if someone has a reference to it, we can't remove their reference
763
+			// so it's best to keep using the same reference, but change the original object
764
+			// reset all its properties to their original values as defined in the class
765
+			$r = new ReflectionClass(get_class(static::$_instance));
766
+			$static_properties = $r->getStaticProperties();
767
+			foreach ($r->getDefaultProperties() as $property => $value) {
768
+				// don't set instance to null like it was originally,
769
+				// but it's static anyways, and we're ignoring static properties (for now at least)
770
+				if (! isset($static_properties[ $property ])) {
771
+					static::$_instance->{$property} = $value;
772
+				}
773
+			}
774
+			// and then directly call its constructor again, like we would if we were creating a new one
775
+			static::$_instance->__construct(
776
+				$timezone,
777
+				LoaderFactory::getLoader()->load('EventEspresso\core\services\orm\ModelFieldFactory')
778
+			);
779
+			return self::instance();
780
+		}
781
+		return null;
782
+	}
783
+
784
+
785
+
786
+	/**
787
+	 * @return LoaderInterface
788
+	 * @throws InvalidArgumentException
789
+	 * @throws InvalidDataTypeException
790
+	 * @throws InvalidInterfaceException
791
+	 */
792
+	private static function getLoader()
793
+	{
794
+		if (! EEM_Base::$loader instanceof LoaderInterface) {
795
+			EEM_Base::$loader = LoaderFactory::getLoader();
796
+		}
797
+		return EEM_Base::$loader;
798
+	}
799
+
800
+
801
+
802
+	/**
803
+	 * retrieve the status details from esp_status table as an array IF this model has the status table as a relation.
804
+	 *
805
+	 * @param  boolean $translated return localized strings or JUST the array.
806
+	 * @return array
807
+	 * @throws EE_Error
808
+	 * @throws InvalidArgumentException
809
+	 * @throws InvalidDataTypeException
810
+	 * @throws InvalidInterfaceException
811
+	 */
812
+	public function status_array($translated = false)
813
+	{
814
+		if (! array_key_exists('Status', $this->_model_relations)) {
815
+			return array();
816
+		}
817
+		$model_name = $this->get_this_model_name();
818
+		$status_type = str_replace(' ', '_', strtolower(str_replace('_', ' ', $model_name)));
819
+		$stati = EEM_Status::instance()->get_all(array(array('STS_type' => $status_type)));
820
+		$status_array = array();
821
+		foreach ($stati as $status) {
822
+			$status_array[ $status->ID() ] = $status->get('STS_code');
823
+		}
824
+		return $translated
825
+			? EEM_Status::instance()->localized_status($status_array, false, 'sentence')
826
+			: $status_array;
827
+	}
828
+
829
+
830
+
831
+	/**
832
+	 * Gets all the EE_Base_Class objects which match the $query_params, by querying the DB.
833
+	 *
834
+	 * @param array $query_params  @see https://github.com/eventespresso/event-espresso-core/tree/master/docs/G--Model-System/model-query-params.md
835
+	 *                             or if you have the development copy of EE you can view this at the path:
836
+	 *                             /docs/G--Model-System/model-query-params.md
837
+	 * @return EE_Base_Class[]  *note that there is NO option to pass the output type. If you want results different
838
+	 *                                        from EE_Base_Class[], use get_all_wpdb_results(). Array keys are object IDs (if there is a primary key on the model.
839
+	 *                                        if not, numerically indexed) Some full examples: get 10 transactions
840
+	 *                                        which have Scottish attendees: EEM_Transaction::instance()->get_all(
841
+	 *                                        array( array(
842
+	 *                                        'OR'=>array(
843
+	 *                                        'Registration.Attendee.ATT_fname'=>array('like','Mc%'),
844
+	 *                                        'Registration.Attendee.ATT_fname*other'=>array('like','Mac%')
845
+	 *                                        )
846
+	 *                                        ),
847
+	 *                                        'limit'=>10,
848
+	 *                                        'group_by'=>'TXN_ID'
849
+	 *                                        ));
850
+	 *                                        get all the answers to the question titled "shirt size" for event with id
851
+	 *                                        12, ordered by their answer EEM_Answer::instance()->get_all(array( array(
852
+	 *                                        'Question.QST_display_text'=>'shirt size',
853
+	 *                                        'Registration.Event.EVT_ID'=>12
854
+	 *                                        ),
855
+	 *                                        'order_by'=>array('ANS_value'=>'ASC')
856
+	 *                                        ));
857
+	 * @throws EE_Error
858
+	 */
859
+	public function get_all($query_params = array())
860
+	{
861
+		if (isset($query_params['limit'])
862
+			&& ! isset($query_params['group_by'])
863
+		) {
864
+			$query_params['group_by'] = array_keys($this->get_combined_primary_key_fields());
865
+		}
866
+		return $this->_create_objects($this->_get_all_wpdb_results($query_params, ARRAY_A, null));
867
+	}
868
+
869
+
870
+
871
+	/**
872
+	 * Modifies the query parameters so we only get back model objects
873
+	 * that "belong" to the current user
874
+	 *
875
+	 * @param array $query_params @see https://github.com/eventespresso/event-espresso-core/tree/master/docs/G--Model-System/model-query-params.md
876
+	 * @return array @see https://github.com/eventespresso/event-espresso-core/tree/master/docs/G--Model-System/model-query-params.md
877
+	 */
878
+	public function alter_query_params_to_only_include_mine($query_params = array())
879
+	{
880
+		$wp_user_field_name = $this->wp_user_field_name();
881
+		if ($wp_user_field_name) {
882
+			$query_params[0][ $wp_user_field_name ] = get_current_user_id();
883
+		}
884
+		return $query_params;
885
+	}
886
+
887
+
888
+
889
+	/**
890
+	 * Returns the name of the field's name that points to the WP_User table
891
+	 *  on this model (or follows the _model_chain_to_wp_user and uses that model's
892
+	 * foreign key to the WP_User table)
893
+	 *
894
+	 * @return string|boolean string on success, boolean false when there is no
895
+	 * foreign key to the WP_User table
896
+	 */
897
+	public function wp_user_field_name()
898
+	{
899
+		try {
900
+			if (! empty($this->_model_chain_to_wp_user)) {
901
+				$models_to_follow_to_wp_users = explode('.', $this->_model_chain_to_wp_user);
902
+				$last_model_name = end($models_to_follow_to_wp_users);
903
+				$model_with_fk_to_wp_users = EE_Registry::instance()->load_model($last_model_name);
904
+				$model_chain_to_wp_user = $this->_model_chain_to_wp_user . '.';
905
+			} else {
906
+				$model_with_fk_to_wp_users = $this;
907
+				$model_chain_to_wp_user = '';
908
+			}
909
+			$wp_user_field = $model_with_fk_to_wp_users->get_foreign_key_to('WP_User');
910
+			return $model_chain_to_wp_user . $wp_user_field->get_name();
911
+		} catch (EE_Error $e) {
912
+			return false;
913
+		}
914
+	}
915
+
916
+
917
+
918
+	/**
919
+	 * Returns the _model_chain_to_wp_user string, which indicates which related model
920
+	 * (or transiently-related model) has a foreign key to the wp_users table;
921
+	 * useful for finding if model objects of this type are 'owned' by the current user.
922
+	 * This is an empty string when the foreign key is on this model and when it isn't,
923
+	 * but is only non-empty when this model's ownership is indicated by a RELATED model
924
+	 * (or transiently-related model)
925
+	 *
926
+	 * @return string
927
+	 */
928
+	public function model_chain_to_wp_user()
929
+	{
930
+		return $this->_model_chain_to_wp_user;
931
+	}
932
+
933
+
934
+
935
+	/**
936
+	 * Whether this model is 'owned' by a specific wordpress user (even indirectly,
937
+	 * like how registrations don't have a foreign key to wp_users, but the
938
+	 * events they are for are), or is unrelated to wp users.
939
+	 * generally available
940
+	 *
941
+	 * @return boolean
942
+	 */
943
+	public function is_owned()
944
+	{
945
+		if ($this->model_chain_to_wp_user()) {
946
+			return true;
947
+		}
948
+		try {
949
+			$this->get_foreign_key_to('WP_User');
950
+			return true;
951
+		} catch (EE_Error $e) {
952
+			return false;
953
+		}
954
+	}
955
+
956
+
957
+	/**
958
+	 * Used internally to get WPDB results, because other functions, besides get_all, may want to do some queries, but
959
+	 * may want to preserve the WPDB results (eg, update, which first queries to make sure we have all the tables on
960
+	 * the model)
961
+	 *
962
+	 * @param array  $query_params      @see https://github.com/eventespresso/event-espresso-core/tree/master/docs/G--Model-System/model-query-params.md
963
+	 * @param string $output            ARRAY_A, OBJECT_K, etc. Just like
964
+	 * @param mixed  $columns_to_select , What columns to select. By default, we select all columns specified by the
965
+	 *                                  fields on the model, and the models we joined to in the query. However, you can
966
+	 *                                  override this and set the select to "*", or a specific column name, like
967
+	 *                                  "ATT_ID", etc. If you would like to use these custom selections in WHERE,
968
+	 *                                  GROUP_BY, or HAVING clauses, you must instead provide an array. Array keys are
969
+	 *                                  the aliases used to refer to this selection, and values are to be
970
+	 *                                  numerically-indexed arrays, where 0 is the selection and 1 is the data type.
971
+	 *                                  Eg, array('count'=>array('COUNT(REG_ID)','%d'))
972
+	 * @return array | stdClass[] like results of $wpdb->get_results($sql,OBJECT), (ie, output type is OBJECT)
973
+	 * @throws EE_Error
974
+	 * @throws InvalidArgumentException
975
+	 */
976
+	protected function _get_all_wpdb_results($query_params = array(), $output = ARRAY_A, $columns_to_select = null)
977
+	{
978
+		$this->_custom_selections = $this->getCustomSelection($query_params, $columns_to_select);
979
+		;
980
+		$model_query_info = $this->_create_model_query_info_carrier($query_params);
981
+		$select_expressions = $columns_to_select === null
982
+			? $this->_construct_default_select_sql($model_query_info)
983
+			: '';
984
+		if ($this->_custom_selections instanceof CustomSelects) {
985
+			$custom_expressions = $this->_custom_selections->columnsToSelectExpression();
986
+			$select_expressions .= $select_expressions
987
+				? ', ' . $custom_expressions
988
+				: $custom_expressions;
989
+		}
990
+
991
+		$SQL = "SELECT $select_expressions " . $this->_construct_2nd_half_of_select_query($model_query_info);
992
+		return $this->_do_wpdb_query('get_results', array($SQL, $output));
993
+	}
994
+
995
+
996
+	/**
997
+	 * Get a CustomSelects object if the $query_params or $columns_to_select allows for it.
998
+	 * Note: $query_params['extra_selects'] will always override any $columns_to_select values. It is the preferred
999
+	 * method of including extra select information.
1000
+	 *
1001
+	 * @param array             $query_params
1002
+	 * @param null|array|string $columns_to_select
1003
+	 * @return null|CustomSelects
1004
+	 * @throws InvalidArgumentException
1005
+	 */
1006
+	protected function getCustomSelection(array $query_params, $columns_to_select = null)
1007
+	{
1008
+		if (! isset($query_params['extra_selects']) && $columns_to_select === null) {
1009
+			return null;
1010
+		}
1011
+		$selects = isset($query_params['extra_selects']) ? $query_params['extra_selects'] : $columns_to_select;
1012
+		$selects = is_string($selects) ? explode(',', $selects) : $selects;
1013
+		return new CustomSelects($selects);
1014
+	}
1015
+
1016
+
1017
+
1018
+	/**
1019
+	 * Gets an array of rows from the database just like $wpdb->get_results would,
1020
+	 * but you can use the model query params to more easily
1021
+	 * take care of joins, field preparation etc.
1022
+	 *
1023
+	 * @param array  $query_params      @see https://github.com/eventespresso/event-espresso-core/tree/master/docs/G--Model-System/model-query-params.md
1024
+	 * @param string $output            ARRAY_A, OBJECT_K, etc. Just like
1025
+	 * @param mixed  $columns_to_select , What columns to select. By default, we select all columns specified by the
1026
+	 *                                  fields on the model, and the models we joined to in the query. However, you can
1027
+	 *                                  override this and set the select to "*", or a specific column name, like
1028
+	 *                                  "ATT_ID", etc. If you would like to use these custom selections in WHERE,
1029
+	 *                                  GROUP_BY, or HAVING clauses, you must instead provide an array. Array keys are
1030
+	 *                                  the aliases used to refer to this selection, and values are to be
1031
+	 *                                  numerically-indexed arrays, where 0 is the selection and 1 is the data type.
1032
+	 *                                  Eg, array('count'=>array('COUNT(REG_ID)','%d'))
1033
+	 * @return array|stdClass[] like results of $wpdb->get_results($sql,OBJECT), (ie, output type is OBJECT)
1034
+	 * @throws EE_Error
1035
+	 */
1036
+	public function get_all_wpdb_results($query_params = array(), $output = ARRAY_A, $columns_to_select = null)
1037
+	{
1038
+		return $this->_get_all_wpdb_results($query_params, $output, $columns_to_select);
1039
+	}
1040
+
1041
+
1042
+
1043
+	/**
1044
+	 * For creating a custom select statement
1045
+	 *
1046
+	 * @param mixed $columns_to_select either a string to be inserted directly as the select statement,
1047
+	 *                                 or an array where keys are aliases, and values are arrays where 0=>the selection
1048
+	 *                                 SQL, and 1=>is the datatype
1049
+	 * @throws EE_Error
1050
+	 * @return string
1051
+	 */
1052
+	private function _construct_select_from_input($columns_to_select)
1053
+	{
1054
+		if (is_array($columns_to_select)) {
1055
+			$select_sql_array = array();
1056
+			foreach ($columns_to_select as $alias => $selection_and_datatype) {
1057
+				if (! is_array($selection_and_datatype) || ! isset($selection_and_datatype[1])) {
1058
+					throw new EE_Error(
1059
+						sprintf(
1060
+							__(
1061
+								"Custom selection %s (alias %s) needs to be an array like array('COUNT(REG_ID)','%%d')",
1062
+								'event_espresso'
1063
+							),
1064
+							$selection_and_datatype,
1065
+							$alias
1066
+						)
1067
+					);
1068
+				}
1069
+				if (! in_array($selection_and_datatype[1], $this->_valid_wpdb_data_types, true)) {
1070
+					throw new EE_Error(
1071
+						sprintf(
1072
+							esc_html__(
1073
+								"Datatype %s (for selection '%s' and alias '%s') is not a valid wpdb datatype (eg %%s)",
1074
+								'event_espresso'
1075
+							),
1076
+							$selection_and_datatype[1],
1077
+							$selection_and_datatype[0],
1078
+							$alias,
1079
+							implode(', ', $this->_valid_wpdb_data_types)
1080
+						)
1081
+					);
1082
+				}
1083
+				$select_sql_array[] = "{$selection_and_datatype[0]} AS $alias";
1084
+			}
1085
+			$columns_to_select_string = implode(', ', $select_sql_array);
1086
+		} else {
1087
+			$columns_to_select_string = $columns_to_select;
1088
+		}
1089
+		return $columns_to_select_string;
1090
+	}
1091
+
1092
+
1093
+
1094
+	/**
1095
+	 * Convenient wrapper for getting the primary key field's name. Eg, on Registration, this would be 'REG_ID'
1096
+	 *
1097
+	 * @return string
1098
+	 * @throws EE_Error
1099
+	 */
1100
+	public function primary_key_name()
1101
+	{
1102
+		return $this->get_primary_key_field()->get_name();
1103
+	}
1104
+
1105
+
1106
+
1107
+	/**
1108
+	 * Gets a single item for this model from the DB, given only its ID (or null if none is found).
1109
+	 * If there is no primary key on this model, $id is treated as primary key string
1110
+	 *
1111
+	 * @param mixed $id int or string, depending on the type of the model's primary key
1112
+	 * @return EE_Base_Class
1113
+	 */
1114
+	public function get_one_by_ID($id)
1115
+	{
1116
+		if ($this->get_from_entity_map($id)) {
1117
+			return $this->get_from_entity_map($id);
1118
+		}
1119
+		return $this->get_one(
1120
+			$this->alter_query_params_to_restrict_by_ID(
1121
+				$id,
1122
+				array('default_where_conditions' => EEM_Base::default_where_conditions_minimum_all)
1123
+			)
1124
+		);
1125
+	}
1126
+
1127
+
1128
+
1129
+	/**
1130
+	 * Alters query parameters to only get items with this ID are returned.
1131
+	 * Takes into account that the ID might be a string produced by EEM_Base::get_index_primary_key_string(),
1132
+	 * or could just be a simple primary key ID
1133
+	 *
1134
+	 * @param int   $id
1135
+	 * @param array $query_params
1136
+	 * @return array of normal query params, @see https://github.com/eventespresso/event-espresso-core/tree/master/docs/G--Model-System/model-query-params.md
1137
+	 * @throws EE_Error
1138
+	 */
1139
+	public function alter_query_params_to_restrict_by_ID($id, $query_params = array())
1140
+	{
1141
+		if (! isset($query_params[0])) {
1142
+			$query_params[0] = array();
1143
+		}
1144
+		$conditions_from_id = $this->parse_index_primary_key_string($id);
1145
+		if ($conditions_from_id === null) {
1146
+			$query_params[0][ $this->primary_key_name() ] = $id;
1147
+		} else {
1148
+			// no primary key, so the $id must be from the get_index_primary_key_string()
1149
+			$query_params[0] = array_replace_recursive($query_params[0], $this->parse_index_primary_key_string($id));
1150
+		}
1151
+		return $query_params;
1152
+	}
1153
+
1154
+
1155
+
1156
+	/**
1157
+	 * Gets a single item for this model from the DB, given the $query_params. Only returns a single class, not an
1158
+	 * array. If no item is found, null is returned.
1159
+	 *
1160
+	 * @param array $query_params like EEM_Base's $query_params variable.
1161
+	 * @return EE_Base_Class|EE_Soft_Delete_Base_Class|NULL
1162
+	 * @throws EE_Error
1163
+	 */
1164
+	public function get_one($query_params = array())
1165
+	{
1166
+		if (! is_array($query_params)) {
1167
+			EE_Error::doing_it_wrong(
1168
+				'EEM_Base::get_one',
1169
+				sprintf(
1170
+					__('$query_params should be an array, you passed a variable of type %s', 'event_espresso'),
1171
+					gettype($query_params)
1172
+				),
1173
+				'4.6.0'
1174
+			);
1175
+			$query_params = array();
1176
+		}
1177
+		$query_params['limit'] = 1;
1178
+		$items = $this->get_all($query_params);
1179
+		if (empty($items)) {
1180
+			return null;
1181
+		}
1182
+		return array_shift($items);
1183
+	}
1184
+
1185
+
1186
+
1187
+	/**
1188
+	 * Returns the next x number of items in sequence from the given value as
1189
+	 * found in the database matching the given query conditions.
1190
+	 *
1191
+	 * @param mixed $current_field_value    Value used for the reference point.
1192
+	 * @param null  $field_to_order_by      What field is used for the
1193
+	 *                                      reference point.
1194
+	 * @param int   $limit                  How many to return.
1195
+	 * @param array $query_params           Extra conditions on the query.
1196
+	 * @param null  $columns_to_select      If left null, then an array of
1197
+	 *                                      EE_Base_Class objects is returned,
1198
+	 *                                      otherwise you can indicate just the
1199
+	 *                                      columns you want returned.
1200
+	 * @return EE_Base_Class[]|array
1201
+	 * @throws EE_Error
1202
+	 */
1203
+	public function next_x(
1204
+		$current_field_value,
1205
+		$field_to_order_by = null,
1206
+		$limit = 1,
1207
+		$query_params = array(),
1208
+		$columns_to_select = null
1209
+	) {
1210
+		return $this->_get_consecutive(
1211
+			$current_field_value,
1212
+			'>',
1213
+			$field_to_order_by,
1214
+			$limit,
1215
+			$query_params,
1216
+			$columns_to_select
1217
+		);
1218
+	}
1219
+
1220
+
1221
+
1222
+	/**
1223
+	 * Returns the previous x number of items in sequence from the given value
1224
+	 * as found in the database matching the given query conditions.
1225
+	 *
1226
+	 * @param mixed $current_field_value    Value used for the reference point.
1227
+	 * @param null  $field_to_order_by      What field is used for the
1228
+	 *                                      reference point.
1229
+	 * @param int   $limit                  How many to return.
1230
+	 * @param array $query_params           Extra conditions on the query.
1231
+	 * @param null  $columns_to_select      If left null, then an array of
1232
+	 *                                      EE_Base_Class objects is returned,
1233
+	 *                                      otherwise you can indicate just the
1234
+	 *                                      columns you want returned.
1235
+	 * @return EE_Base_Class[]|array
1236
+	 * @throws EE_Error
1237
+	 */
1238
+	public function previous_x(
1239
+		$current_field_value,
1240
+		$field_to_order_by = null,
1241
+		$limit = 1,
1242
+		$query_params = array(),
1243
+		$columns_to_select = null
1244
+	) {
1245
+		return $this->_get_consecutive(
1246
+			$current_field_value,
1247
+			'<',
1248
+			$field_to_order_by,
1249
+			$limit,
1250
+			$query_params,
1251
+			$columns_to_select
1252
+		);
1253
+	}
1254
+
1255
+
1256
+
1257
+	/**
1258
+	 * Returns the next item in sequence from the given value as found in the
1259
+	 * database matching the given query conditions.
1260
+	 *
1261
+	 * @param mixed $current_field_value    Value used for the reference point.
1262
+	 * @param null  $field_to_order_by      What field is used for the
1263
+	 *                                      reference point.
1264
+	 * @param array $query_params           Extra conditions on the query.
1265
+	 * @param null  $columns_to_select      If left null, then an EE_Base_Class
1266
+	 *                                      object is returned, otherwise you
1267
+	 *                                      can indicate just the columns you
1268
+	 *                                      want and a single array indexed by
1269
+	 *                                      the columns will be returned.
1270
+	 * @return EE_Base_Class|null|array()
1271
+	 * @throws EE_Error
1272
+	 */
1273
+	public function next(
1274
+		$current_field_value,
1275
+		$field_to_order_by = null,
1276
+		$query_params = array(),
1277
+		$columns_to_select = null
1278
+	) {
1279
+		$results = $this->_get_consecutive(
1280
+			$current_field_value,
1281
+			'>',
1282
+			$field_to_order_by,
1283
+			1,
1284
+			$query_params,
1285
+			$columns_to_select
1286
+		);
1287
+		return empty($results) ? null : reset($results);
1288
+	}
1289
+
1290
+
1291
+
1292
+	/**
1293
+	 * Returns the previous item in sequence from the given value as found in
1294
+	 * the database matching the given query conditions.
1295
+	 *
1296
+	 * @param mixed $current_field_value    Value used for the reference point.
1297
+	 * @param null  $field_to_order_by      What field is used for the
1298
+	 *                                      reference point.
1299
+	 * @param array $query_params           Extra conditions on the query.
1300
+	 * @param null  $columns_to_select      If left null, then an EE_Base_Class
1301
+	 *                                      object is returned, otherwise you
1302
+	 *                                      can indicate just the columns you
1303
+	 *                                      want and a single array indexed by
1304
+	 *                                      the columns will be returned.
1305
+	 * @return EE_Base_Class|null|array()
1306
+	 * @throws EE_Error
1307
+	 */
1308
+	public function previous(
1309
+		$current_field_value,
1310
+		$field_to_order_by = null,
1311
+		$query_params = array(),
1312
+		$columns_to_select = null
1313
+	) {
1314
+		$results = $this->_get_consecutive(
1315
+			$current_field_value,
1316
+			'<',
1317
+			$field_to_order_by,
1318
+			1,
1319
+			$query_params,
1320
+			$columns_to_select
1321
+		);
1322
+		return empty($results) ? null : reset($results);
1323
+	}
1324
+
1325
+
1326
+
1327
+	/**
1328
+	 * Returns the a consecutive number of items in sequence from the given
1329
+	 * value as found in the database matching the given query conditions.
1330
+	 *
1331
+	 * @param mixed  $current_field_value   Value used for the reference point.
1332
+	 * @param string $operand               What operand is used for the sequence.
1333
+	 * @param string $field_to_order_by     What field is used for the reference point.
1334
+	 * @param int    $limit                 How many to return.
1335
+	 * @param array  $query_params          Extra conditions on the query.
1336
+	 * @param null   $columns_to_select     If left null, then an array of EE_Base_Class objects is returned,
1337
+	 *                                      otherwise you can indicate just the columns you want returned.
1338
+	 * @return EE_Base_Class[]|array
1339
+	 * @throws EE_Error
1340
+	 */
1341
+	protected function _get_consecutive(
1342
+		$current_field_value,
1343
+		$operand = '>',
1344
+		$field_to_order_by = null,
1345
+		$limit = 1,
1346
+		$query_params = array(),
1347
+		$columns_to_select = null
1348
+	) {
1349
+		// if $field_to_order_by is empty then let's assume we're ordering by the primary key.
1350
+		if (empty($field_to_order_by)) {
1351
+			if ($this->has_primary_key_field()) {
1352
+				$field_to_order_by = $this->get_primary_key_field()->get_name();
1353
+			} else {
1354
+				if (WP_DEBUG) {
1355
+					throw new EE_Error(__(
1356
+						'EEM_Base::_get_consecutive() has been called with no $field_to_order_by argument and there is no primary key on the field.  Please provide the field you would like to use as the base for retrieving the next item(s).',
1357
+						'event_espresso'
1358
+					));
1359
+				}
1360
+				EE_Error::add_error(__('There was an error with the query.', 'event_espresso'));
1361
+				return array();
1362
+			}
1363
+		}
1364
+		if (! is_array($query_params)) {
1365
+			EE_Error::doing_it_wrong(
1366
+				'EEM_Base::_get_consecutive',
1367
+				sprintf(
1368
+					__('$query_params should be an array, you passed a variable of type %s', 'event_espresso'),
1369
+					gettype($query_params)
1370
+				),
1371
+				'4.6.0'
1372
+			);
1373
+			$query_params = array();
1374
+		}
1375
+		// let's add the where query param for consecutive look up.
1376
+		$query_params[0][ $field_to_order_by ] = array($operand, $current_field_value);
1377
+		$query_params['limit'] = $limit;
1378
+		// set direction
1379
+		$incoming_orderby = isset($query_params['order_by']) ? (array) $query_params['order_by'] : array();
1380
+		$query_params['order_by'] = $operand === '>'
1381
+			? array($field_to_order_by => 'ASC') + $incoming_orderby
1382
+			: array($field_to_order_by => 'DESC') + $incoming_orderby;
1383
+		// if $columns_to_select is empty then that means we're returning EE_Base_Class objects
1384
+		if (empty($columns_to_select)) {
1385
+			return $this->get_all($query_params);
1386
+		}
1387
+		// getting just the fields
1388
+		return $this->_get_all_wpdb_results($query_params, ARRAY_A, $columns_to_select);
1389
+	}
1390
+
1391
+
1392
+
1393
+	/**
1394
+	 * This sets the _timezone property after model object has been instantiated.
1395
+	 *
1396
+	 * @param null | string $timezone valid PHP DateTimeZone timezone string
1397
+	 */
1398
+	public function set_timezone($timezone)
1399
+	{
1400
+		if ($timezone !== null) {
1401
+			$this->_timezone = $timezone;
1402
+		}
1403
+		// note we need to loop through relations and set the timezone on those objects as well.
1404
+		foreach ($this->_model_relations as $relation) {
1405
+			$relation->set_timezone($timezone);
1406
+		}
1407
+		// and finally we do the same for any datetime fields
1408
+		foreach ($this->_fields as $field) {
1409
+			if ($field instanceof EE_Datetime_Field) {
1410
+				$field->set_timezone($timezone);
1411
+			}
1412
+		}
1413
+	}
1414
+
1415
+
1416
+
1417
+	/**
1418
+	 * This just returns whatever is set for the current timezone.
1419
+	 *
1420
+	 * @access public
1421
+	 * @return string
1422
+	 */
1423
+	public function get_timezone()
1424
+	{
1425
+		// first validate if timezone is set.  If not, then let's set it be whatever is set on the model fields.
1426
+		if (empty($this->_timezone)) {
1427
+			foreach ($this->_fields as $field) {
1428
+				if ($field instanceof EE_Datetime_Field) {
1429
+					$this->set_timezone($field->get_timezone());
1430
+					break;
1431
+				}
1432
+			}
1433
+		}
1434
+		// if timezone STILL empty then return the default timezone for the site.
1435
+		if (empty($this->_timezone)) {
1436
+			$this->set_timezone(EEH_DTT_Helper::get_timezone());
1437
+		}
1438
+		return $this->_timezone;
1439
+	}
1440
+
1441
+
1442
+
1443
+	/**
1444
+	 * This returns the date formats set for the given field name and also ensures that
1445
+	 * $this->_timezone property is set correctly.
1446
+	 *
1447
+	 * @since 4.6.x
1448
+	 * @param string $field_name The name of the field the formats are being retrieved for.
1449
+	 * @param bool   $pretty     Whether to return the pretty formats (true) or not (false).
1450
+	 * @throws EE_Error   If the given field_name is not of the EE_Datetime_Field type.
1451
+	 * @return array formats in an array with the date format first, and the time format last.
1452
+	 */
1453
+	public function get_formats_for($field_name, $pretty = false)
1454
+	{
1455
+		$field_settings = $this->field_settings_for($field_name);
1456
+		// if not a valid EE_Datetime_Field then throw error
1457
+		if (! $field_settings instanceof EE_Datetime_Field) {
1458
+			throw new EE_Error(sprintf(__(
1459
+				'The field sent into EEM_Base::get_formats_for (%s) is not registered as a EE_Datetime_Field. Please check the spelling and make sure you are submitting the right field name to retrieve date_formats for.',
1460
+				'event_espresso'
1461
+			), $field_name));
1462
+		}
1463
+		// while we are here, let's make sure the timezone internally in EEM_Base matches what is stored on
1464
+		// the field.
1465
+		$this->_timezone = $field_settings->get_timezone();
1466
+		return array($field_settings->get_date_format($pretty), $field_settings->get_time_format($pretty));
1467
+	}
1468
+
1469
+
1470
+
1471
+	/**
1472
+	 * This returns the current time in a format setup for a query on this model.
1473
+	 * Usage of this method makes it easier to setup queries against EE_Datetime_Field columns because
1474
+	 * it will return:
1475
+	 *  - a formatted string in the timezone and format currently set on the EE_Datetime_Field for the given field for
1476
+	 *  NOW
1477
+	 *  - or a unix timestamp (equivalent to time())
1478
+	 * Note: When requesting a formatted string, if the date or time format doesn't include seconds, for example,
1479
+	 * the time returned, because it uses that format, will also NOT include seconds. For this reason, if you want
1480
+	 * the time returned to be the current time down to the exact second, set $timestamp to true.
1481
+	 * @since 4.6.x
1482
+	 * @param string $field_name       The field the current time is needed for.
1483
+	 * @param bool   $timestamp        True means to return a unix timestamp. Otherwise a
1484
+	 *                                 formatted string matching the set format for the field in the set timezone will
1485
+	 *                                 be returned.
1486
+	 * @param string $what             Whether to return the string in just the time format, the date format, or both.
1487
+	 * @throws EE_Error    If the given field_name is not of the EE_Datetime_Field type.
1488
+	 * @return int|string  If the given field_name is not of the EE_Datetime_Field type, then an EE_Error
1489
+	 *                                 exception is triggered.
1490
+	 */
1491
+	public function current_time_for_query($field_name, $timestamp = false, $what = 'both')
1492
+	{
1493
+		$formats = $this->get_formats_for($field_name);
1494
+		$DateTime = new DateTime("now", new DateTimeZone($this->_timezone));
1495
+		if ($timestamp) {
1496
+			return $DateTime->format('U');
1497
+		}
1498
+		// not returning timestamp, so return formatted string in timezone.
1499
+		switch ($what) {
1500
+			case 'time':
1501
+				return $DateTime->format($formats[1]);
1502
+				break;
1503
+			case 'date':
1504
+				return $DateTime->format($formats[0]);
1505
+				break;
1506
+			default:
1507
+				return $DateTime->format(implode(' ', $formats));
1508
+				break;
1509
+		}
1510
+	}
1511
+
1512
+
1513
+
1514
+	/**
1515
+	 * This receives a time string for a given field and ensures that it is setup to match what the internal settings
1516
+	 * for the model are.  Returns a DateTime object.
1517
+	 * Note: a gotcha for when you send in unix timestamp.  Remember a unix timestamp is already timezone agnostic,
1518
+	 * (functionally the equivalent of UTC+0).  So when you send it in, whatever timezone string you include is
1519
+	 * ignored.
1520
+	 *
1521
+	 * @param string $field_name      The field being setup.
1522
+	 * @param string $timestring      The date time string being used.
1523
+	 * @param string $incoming_format The format for the time string.
1524
+	 * @param string $timezone        By default, it is assumed the incoming time string is in timezone for
1525
+	 *                                the blog.  If this is not the case, then it can be specified here.  If incoming
1526
+	 *                                format is
1527
+	 *                                'U', this is ignored.
1528
+	 * @return DateTime
1529
+	 * @throws EE_Error
1530
+	 */
1531
+	public function convert_datetime_for_query($field_name, $timestring, $incoming_format, $timezone = '')
1532
+	{
1533
+		// just using this to ensure the timezone is set correctly internally
1534
+		$this->get_formats_for($field_name);
1535
+		// load EEH_DTT_Helper
1536
+		$set_timezone = empty($timezone) ? EEH_DTT_Helper::get_timezone() : $timezone;
1537
+		$incomingDateTime = date_create_from_format($incoming_format, $timestring, new DateTimeZone($set_timezone));
1538
+		EEH_DTT_Helper::setTimezone($incomingDateTime, new DateTimeZone($this->_timezone));
1539
+		return \EventEspresso\core\domain\entities\DbSafeDateTime::createFromDateTime($incomingDateTime);
1540
+	}
1541
+
1542
+
1543
+
1544
+	/**
1545
+	 * Gets all the tables comprising this model. Array keys are the table aliases, and values are EE_Table objects
1546
+	 *
1547
+	 * @return EE_Table_Base[]
1548
+	 */
1549
+	public function get_tables()
1550
+	{
1551
+		return $this->_tables;
1552
+	}
1553
+
1554
+
1555
+
1556
+	/**
1557
+	 * Updates all the database entries (in each table for this model) according to $fields_n_values and optionally
1558
+	 * also updates all the model objects, where the criteria expressed in $query_params are met..
1559
+	 * Also note: if this model has multiple tables, this update verifies all the secondary tables have an entry for
1560
+	 * each row (in the primary table) we're trying to update; if not, it inserts an entry in the secondary table. Eg:
1561
+	 * if our model has 2 tables: wp_posts (primary), and wp_esp_event (secondary). Let's say we are trying to update a
1562
+	 * model object with EVT_ID = 1
1563
+	 * (which means where wp_posts has ID = 1, because wp_posts.ID is the primary key's column), which exists, but
1564
+	 * there is no entry in wp_esp_event for this entry in wp_posts. So, this update script will insert a row into
1565
+	 * wp_esp_event, using any available parameters from $fields_n_values (eg, if "EVT_limit" => 40 is in
1566
+	 * $fields_n_values, the new entry in wp_esp_event will set EVT_limit = 40, and use default for other columns which
1567
+	 * are not specified)
1568
+	 *
1569
+	 * @param array   $fields_n_values         keys are model fields (exactly like keys in EEM_Base::_fields, NOT db
1570
+	 *                                         columns!), values are strings, ints, floats, and maybe arrays if they
1571
+	 *                                         are to be serialized. Basically, the values are what you'd expect to be
1572
+	 *                                         values on the model, NOT necessarily what's in the DB. For example, if
1573
+	 *                                         we wanted to update only the TXN_details on any Transactions where its
1574
+	 *                                         ID=34, we'd use this method as follows:
1575
+	 *                                         EEM_Transaction::instance()->update(
1576
+	 *                                         array('TXN_details'=>array('detail1'=>'monkey','detail2'=>'banana'),
1577
+	 *                                         array(array('TXN_ID'=>34)));
1578
+	 * @param array   $query_params            @see https://github.com/eventespresso/event-espresso-core/tree/master/docs/G--Model-System/model-query-params.md
1579
+	 *                                         Eg, consider updating Question's QST_admin_label field is of type
1580
+	 *                                         Simple_HTML. If you use this function to update that field to $new_value
1581
+	 *                                         = (note replace 8's with appropriate opening and closing tags in the
1582
+	 *                                         following example)"8script8alert('I hack all');8/script88b8boom
1583
+	 *                                         baby8/b8", then if you set $values_already_prepared_by_model_object to
1584
+	 *                                         TRUE, it is assumed that you've already called
1585
+	 *                                         EE_Simple_HTML_Field->prepare_for_set($new_value), which removes the
1586
+	 *                                         malicious javascript. However, if
1587
+	 *                                         $values_already_prepared_by_model_object is left as FALSE, then
1588
+	 *                                         EE_Simple_HTML_Field->prepare_for_set($new_value) will be called on it,
1589
+	 *                                         and every other field, before insertion. We provide this parameter
1590
+	 *                                         because model objects perform their prepare_for_set function on all
1591
+	 *                                         their values, and so don't need to be called again (and in many cases,
1592
+	 *                                         shouldn't be called again. Eg: if we escape HTML characters in the
1593
+	 *                                         prepare_for_set method...)
1594
+	 * @param boolean $keep_model_objs_in_sync if TRUE, makes sure we ALSO update model objects
1595
+	 *                                         in this model's entity map according to $fields_n_values that match
1596
+	 *                                         $query_params. This obviously has some overhead, so you can disable it
1597
+	 *                                         by setting this to FALSE, but be aware that model objects being used
1598
+	 *                                         could get out-of-sync with the database
1599
+	 * @return int how many rows got updated or FALSE if something went wrong with the query (wp returns FALSE or num
1600
+	 *                                         rows affected which *could* include 0 which DOES NOT mean the query was
1601
+	 *                                         bad)
1602
+	 * @throws EE_Error
1603
+	 */
1604
+	public function update($fields_n_values, $query_params, $keep_model_objs_in_sync = true)
1605
+	{
1606
+		if (! is_array($query_params)) {
1607
+			EE_Error::doing_it_wrong(
1608
+				'EEM_Base::update',
1609
+				sprintf(
1610
+					__('$query_params should be an array, you passed a variable of type %s', 'event_espresso'),
1611
+					gettype($query_params)
1612
+				),
1613
+				'4.6.0'
1614
+			);
1615
+			$query_params = array();
1616
+		}
1617
+		/**
1618
+		 * Action called before a model update call has been made.
1619
+		 *
1620
+		 * @param EEM_Base $model
1621
+		 * @param array    $fields_n_values the updated fields and their new values
1622
+		 * @param array    $query_params    @see https://github.com/eventespresso/event-espresso-core/tree/master/docs/G--Model-System/model-query-params.md
1623
+		 */
1624
+		do_action('AHEE__EEM_Base__update__begin', $this, $fields_n_values, $query_params);
1625
+		/**
1626
+		 * Filters the fields about to be updated given the query parameters. You can provide the
1627
+		 * $query_params to $this->get_all() to find exactly which records will be updated
1628
+		 *
1629
+		 * @param array    $fields_n_values fields and their new values
1630
+		 * @param EEM_Base $model           the model being queried
1631
+		 * @param array    $query_params    @see https://github.com/eventespresso/event-espresso-core/tree/master/docs/G--Model-System/model-query-params.md
1632
+		 */
1633
+		$fields_n_values = (array) apply_filters(
1634
+			'FHEE__EEM_Base__update__fields_n_values',
1635
+			$fields_n_values,
1636
+			$this,
1637
+			$query_params
1638
+		);
1639
+		// need to verify that, for any entry we want to update, there are entries in each secondary table.
1640
+		// to do that, for each table, verify that it's PK isn't null.
1641
+		$tables = $this->get_tables();
1642
+		// and if the other tables don't have a row for each table-to-be-updated, we'll insert one with whatever values available in the current update query
1643
+		// NOTE: we should make this code more efficient by NOT querying twice
1644
+		// before the real update, but that needs to first go through ALPHA testing
1645
+		// as it's dangerous. says Mike August 8 2014
1646
+		// we want to make sure the default_where strategy is ignored
1647
+		$this->_ignore_where_strategy = true;
1648
+		$wpdb_select_results = $this->_get_all_wpdb_results($query_params);
1649
+		foreach ($wpdb_select_results as $wpdb_result) {
1650
+			// type cast stdClass as array
1651
+			$wpdb_result = (array) $wpdb_result;
1652
+			// get the model object's PK, as we'll want this if we need to insert a row into secondary tables
1653
+			if ($this->has_primary_key_field()) {
1654
+				$main_table_pk_value = $wpdb_result[ $this->get_primary_key_field()->get_qualified_column() ];
1655
+			} else {
1656
+				// if there's no primary key, we basically can't support having a 2nd table on the model (we could but it would be lots of work)
1657
+				$main_table_pk_value = null;
1658
+			}
1659
+			// if there are more than 1 tables, we'll want to verify that each table for this model has an entry in the other tables
1660
+			// and if the other tables don't have a row for each table-to-be-updated, we'll insert one with whatever values available in the current update query
1661
+			if (count($tables) > 1) {
1662
+				// foreach matching row in the DB, ensure that each table's PK isn't null. If so, there must not be an entry
1663
+				// in that table, and so we'll want to insert one
1664
+				foreach ($tables as $table_obj) {
1665
+					$this_table_pk_column = $table_obj->get_fully_qualified_pk_column();
1666
+					// if there is no private key for this table on the results, it means there's no entry
1667
+					// in this table, right? so insert a row in the current table, using any fields available
1668
+					if (! (array_key_exists($this_table_pk_column, $wpdb_result)
1669
+						   && $wpdb_result[ $this_table_pk_column ])
1670
+					) {
1671
+						$success = $this->_insert_into_specific_table(
1672
+							$table_obj,
1673
+							$fields_n_values,
1674
+							$main_table_pk_value
1675
+						);
1676
+						// if we died here, report the error
1677
+						if (! $success) {
1678
+							return false;
1679
+						}
1680
+					}
1681
+				}
1682
+			}
1683
+			//              //and now check that if we have cached any models by that ID on the model, that
1684
+			//              //they also get updated properly
1685
+			//              $model_object = $this->get_from_entity_map( $main_table_pk_value );
1686
+			//              if( $model_object ){
1687
+			//                  foreach( $fields_n_values as $field => $value ){
1688
+			//                      $model_object->set($field, $value);
1689
+			// let's make sure default_where strategy is followed now
1690
+			$this->_ignore_where_strategy = false;
1691
+		}
1692
+		// if we want to keep model objects in sync, AND
1693
+		// if this wasn't called from a model object (to update itself)
1694
+		// then we want to make sure we keep all the existing
1695
+		// model objects in sync with the db
1696
+		if ($keep_model_objs_in_sync && ! $this->_values_already_prepared_by_model_object) {
1697
+			if ($this->has_primary_key_field()) {
1698
+				$model_objs_affected_ids = $this->get_col($query_params);
1699
+			} else {
1700
+				// we need to select a bunch of columns and then combine them into the the "index primary key string"s
1701
+				$models_affected_key_columns = $this->_get_all_wpdb_results($query_params, ARRAY_A);
1702
+				$model_objs_affected_ids = array();
1703
+				foreach ($models_affected_key_columns as $row) {
1704
+					$combined_index_key = $this->get_index_primary_key_string($row);
1705
+					$model_objs_affected_ids[ $combined_index_key ] = $combined_index_key;
1706
+				}
1707
+			}
1708
+			if (! $model_objs_affected_ids) {
1709
+				// wait wait wait- if nothing was affected let's stop here
1710
+				return 0;
1711
+			}
1712
+			foreach ($model_objs_affected_ids as $id) {
1713
+				$model_obj_in_entity_map = $this->get_from_entity_map($id);
1714
+				if ($model_obj_in_entity_map) {
1715
+					foreach ($fields_n_values as $field => $new_value) {
1716
+						$model_obj_in_entity_map->set($field, $new_value);
1717
+					}
1718
+				}
1719
+			}
1720
+			// if there is a primary key on this model, we can now do a slight optimization
1721
+			if ($this->has_primary_key_field()) {
1722
+				// we already know what we want to update. So let's make the query simpler so it's a little more efficient
1723
+				$query_params = array(
1724
+					array($this->primary_key_name() => array('IN', $model_objs_affected_ids)),
1725
+					'limit'                    => count($model_objs_affected_ids),
1726
+					'default_where_conditions' => EEM_Base::default_where_conditions_none,
1727
+				);
1728
+			}
1729
+		}
1730
+		$model_query_info = $this->_create_model_query_info_carrier($query_params);
1731
+		$SQL = "UPDATE "
1732
+			   . $model_query_info->get_full_join_sql()
1733
+			   . " SET "
1734
+			   . $this->_construct_update_sql($fields_n_values)
1735
+			   . $model_query_info->get_where_sql();// note: doesn't use _construct_2nd_half_of_select_query() because doesn't accept LIMIT, ORDER BY, etc.
1736
+		$rows_affected = $this->_do_wpdb_query('query', array($SQL));
1737
+		/**
1738
+		 * Action called after a model update call has been made.
1739
+		 *
1740
+		 * @param EEM_Base $model
1741
+		 * @param array    $fields_n_values the updated fields and their new values
1742
+		 * @param array    $query_params    @see https://github.com/eventespresso/event-espresso-core/tree/master/docs/G--Model-System/model-query-params.md
1743
+		 * @param int      $rows_affected
1744
+		 */
1745
+		do_action('AHEE__EEM_Base__update__end', $this, $fields_n_values, $query_params, $rows_affected);
1746
+		return $rows_affected;// how many supposedly got updated
1747
+	}
1748
+
1749
+
1750
+
1751
+	/**
1752
+	 * Analogous to $wpdb->get_col, returns a 1-dimensional array where teh values
1753
+	 * are teh values of the field specified (or by default the primary key field)
1754
+	 * that matched the query params. Note that you should pass the name of the
1755
+	 * model FIELD, not the database table's column name.
1756
+	 *
1757
+	 * @param array  $query_params @see https://github.com/eventespresso/event-espresso-core/tree/master/docs/G--Model-System/model-query-params.md
1758
+	 * @param string $field_to_select
1759
+	 * @return array just like $wpdb->get_col()
1760
+	 * @throws EE_Error
1761
+	 */
1762
+	public function get_col($query_params = array(), $field_to_select = null)
1763
+	{
1764
+		if ($field_to_select) {
1765
+			$field = $this->field_settings_for($field_to_select);
1766
+		} elseif ($this->has_primary_key_field()) {
1767
+			$field = $this->get_primary_key_field();
1768
+		} else {
1769
+			// no primary key, just grab the first column
1770
+			$field = reset($this->field_settings());
1771
+		}
1772
+		$model_query_info = $this->_create_model_query_info_carrier($query_params);
1773
+		$select_expressions = $field->get_qualified_column();
1774
+		$SQL = "SELECT $select_expressions " . $this->_construct_2nd_half_of_select_query($model_query_info);
1775
+		return $this->_do_wpdb_query('get_col', array($SQL));
1776
+	}
1777
+
1778
+
1779
+
1780
+	/**
1781
+	 * Returns a single column value for a single row from the database
1782
+	 *
1783
+	 * @param array  $query_params    @see https://github.com/eventespresso/event-espresso-core/tree/master/docs/G--Model-System/model-query-params.md
1784
+	 * @param string $field_to_select @see EEM_Base::get_col()
1785
+	 * @return string
1786
+	 * @throws EE_Error
1787
+	 */
1788
+	public function get_var($query_params = array(), $field_to_select = null)
1789
+	{
1790
+		$query_params['limit'] = 1;
1791
+		$col = $this->get_col($query_params, $field_to_select);
1792
+		if (! empty($col)) {
1793
+			return reset($col);
1794
+		}
1795
+		return null;
1796
+	}
1797
+
1798
+
1799
+
1800
+	/**
1801
+	 * Makes the SQL for after "UPDATE table_X inner join table_Y..." and before "...WHERE". Eg "Question.name='party
1802
+	 * time?', Question.desc='what do you think?',..." Values are filtered through wpdb->prepare to avoid against SQL
1803
+	 * injection, but currently no further filtering is done
1804
+	 *
1805
+	 * @global      $wpdb
1806
+	 * @param array $fields_n_values array keys are field names on this model, and values are what those fields should
1807
+	 *                               be updated to in the DB
1808
+	 * @return string of SQL
1809
+	 * @throws EE_Error
1810
+	 */
1811
+	public function _construct_update_sql($fields_n_values)
1812
+	{
1813
+		/** @type WPDB $wpdb */
1814
+		global $wpdb;
1815
+		$cols_n_values = array();
1816
+		foreach ($fields_n_values as $field_name => $value) {
1817
+			$field_obj = $this->field_settings_for($field_name);
1818
+			// if the value is NULL, we want to assign the value to that.
1819
+			// wpdb->prepare doesn't really handle that properly
1820
+			$prepared_value = $this->_prepare_value_or_use_default($field_obj, $fields_n_values);
1821
+			$value_sql = $prepared_value === null ? 'NULL'
1822
+				: $wpdb->prepare($field_obj->get_wpdb_data_type(), $prepared_value);
1823
+			$cols_n_values[] = $field_obj->get_qualified_column() . "=" . $value_sql;
1824
+		}
1825
+		return implode(",", $cols_n_values);
1826
+	}
1827
+
1828
+
1829
+
1830
+	/**
1831
+	 * Deletes a single row from the DB given the model object's primary key value. (eg, EE_Attendee->ID()'s value).
1832
+	 * Performs a HARD delete, meaning the database row should always be removed,
1833
+	 * not just have a flag field on it switched
1834
+	 * Wrapper for EEM_Base::delete_permanently()
1835
+	 *
1836
+	 * @param mixed $id
1837
+	 * @param boolean $allow_blocking
1838
+	 * @return int the number of rows deleted
1839
+	 * @throws EE_Error
1840
+	 */
1841
+	public function delete_permanently_by_ID($id, $allow_blocking = true)
1842
+	{
1843
+		return $this->delete_permanently(
1844
+			array(
1845
+				array($this->get_primary_key_field()->get_name() => $id),
1846
+				'limit' => 1,
1847
+			),
1848
+			$allow_blocking
1849
+		);
1850
+	}
1851
+
1852
+
1853
+
1854
+	/**
1855
+	 * Deletes a single row from the DB given the model object's primary key value. (eg, EE_Attendee->ID()'s value).
1856
+	 * Wrapper for EEM_Base::delete()
1857
+	 *
1858
+	 * @param mixed $id
1859
+	 * @param boolean $allow_blocking
1860
+	 * @return int the number of rows deleted
1861
+	 * @throws EE_Error
1862
+	 */
1863
+	public function delete_by_ID($id, $allow_blocking = true)
1864
+	{
1865
+		return $this->delete(
1866
+			array(
1867
+				array($this->get_primary_key_field()->get_name() => $id),
1868
+				'limit' => 1,
1869
+			),
1870
+			$allow_blocking
1871
+		);
1872
+	}
1873
+
1874
+
1875
+
1876
+	/**
1877
+	 * Identical to delete_permanently, but does a "soft" delete if possible,
1878
+	 * meaning if the model has a field that indicates its been "trashed" or
1879
+	 * "soft deleted", we will just set that instead of actually deleting the rows.
1880
+	 *
1881
+	 * @see EEM_Base::delete_permanently
1882
+	 * @param array   $query_params
1883
+	 * @param boolean $allow_blocking
1884
+	 * @return int how many rows got deleted
1885
+	 * @throws EE_Error
1886
+	 */
1887
+	public function delete($query_params, $allow_blocking = true)
1888
+	{
1889
+		return $this->delete_permanently($query_params, $allow_blocking);
1890
+	}
1891
+
1892
+
1893
+
1894
+	/**
1895
+	 * Deletes the model objects that meet the query params. Note: this method is overridden
1896
+	 * in EEM_Soft_Delete_Base so that soft-deleted model objects are instead only flagged
1897
+	 * as archived, not actually deleted
1898
+	 *
1899
+	 * @param array   $query_params   @see https://github.com/eventespresso/event-espresso-core/tree/master/docs/G--Model-System/model-query-params.md
1900
+	 * @param boolean $allow_blocking if TRUE, matched objects will only be deleted if there is no related model info
1901
+	 *                                that blocks it (ie, there' sno other data that depends on this data); if false,
1902
+	 *                                deletes regardless of other objects which may depend on it. Its generally
1903
+	 *                                advisable to always leave this as TRUE, otherwise you could easily corrupt your
1904
+	 *                                DB
1905
+	 * @return int how many rows got deleted
1906
+	 * @throws EE_Error
1907
+	 */
1908
+	public function delete_permanently($query_params, $allow_blocking = true)
1909
+	{
1910
+		/**
1911
+		 * Action called just before performing a real deletion query. You can use the
1912
+		 * model and its $query_params to find exactly which items will be deleted
1913
+		 *
1914
+		 * @param EEM_Base $model
1915
+		 * @param array    $query_params   @see https://github.com/eventespresso/event-espresso-core/tree/master/docs/G--Model-System/model-query-params.md
1916
+		 * @param boolean  $allow_blocking whether or not to allow related model objects
1917
+		 *                                 to block (prevent) this deletion
1918
+		 */
1919
+		do_action('AHEE__EEM_Base__delete__begin', $this, $query_params, $allow_blocking);
1920
+		// some MySQL databases may be running safe mode, which may restrict
1921
+		// deletion if there is no KEY column used in the WHERE statement of a deletion.
1922
+		// to get around this, we first do a SELECT, get all the IDs, and then run another query
1923
+		// to delete them
1924
+		$items_for_deletion = $this->_get_all_wpdb_results($query_params);
1925
+		$columns_and_ids_for_deleting = $this->_get_ids_for_delete($items_for_deletion, $allow_blocking);
1926
+		$deletion_where_query_part = $this->_build_query_part_for_deleting_from_columns_and_values(
1927
+			$columns_and_ids_for_deleting
1928
+		);
1929
+		/**
1930
+		 * Allows client code to act on the items being deleted before the query is actually executed.
1931
+		 *
1932
+		 * @param EEM_Base $this  The model instance being acted on.
1933
+		 * @param array    $query_params  The incoming array of query parameters influencing what gets deleted.
1934
+		 * @param bool     $allow_blocking @see param description in method phpdoc block.
1935
+		 * @param array $columns_and_ids_for_deleting       An array indicating what entities will get removed as
1936
+		 *                                                  derived from the incoming query parameters.
1937
+		 *                                                  @see details on the structure of this array in the phpdocs
1938
+		 *                                                  for the `_get_ids_for_delete_method`
1939
+		 *
1940
+		 */
1941
+		do_action(
1942
+			'AHEE__EEM_Base__delete__before_query',
1943
+			$this,
1944
+			$query_params,
1945
+			$allow_blocking,
1946
+			$columns_and_ids_for_deleting
1947
+		);
1948
+		if ($deletion_where_query_part) {
1949
+			$model_query_info = $this->_create_model_query_info_carrier($query_params);
1950
+			$table_aliases = array_keys($this->_tables);
1951
+			$SQL = "DELETE "
1952
+				   . implode(", ", $table_aliases)
1953
+				   . " FROM "
1954
+				   . $model_query_info->get_full_join_sql()
1955
+				   . " WHERE "
1956
+				   . $deletion_where_query_part;
1957
+			$rows_deleted = $this->_do_wpdb_query('query', array($SQL));
1958
+		} else {
1959
+			$rows_deleted = 0;
1960
+		}
1961
+
1962
+		// Next, make sure those items are removed from the entity map; if they could be put into it at all; and if
1963
+		// there was no error with the delete query.
1964
+		if ($this->has_primary_key_field()
1965
+			&& $rows_deleted !== false
1966
+			&& isset($columns_and_ids_for_deleting[ $this->get_primary_key_field()->get_qualified_column() ])
1967
+		) {
1968
+			$ids_for_removal = $columns_and_ids_for_deleting[ $this->get_primary_key_field()->get_qualified_column() ];
1969
+			foreach ($ids_for_removal as $id) {
1970
+				if (isset($this->_entity_map[ EEM_Base::$_model_query_blog_id ][ $id ])) {
1971
+					unset($this->_entity_map[ EEM_Base::$_model_query_blog_id ][ $id ]);
1972
+				}
1973
+			}
1974
+
1975
+			// delete any extra meta attached to the deleted entities but ONLY if this model is not an instance of
1976
+			// `EEM_Extra_Meta`.  In other words we want to prevent recursion on EEM_Extra_Meta::delete_permanently calls
1977
+			// unnecessarily.  It's very unlikely that users will have assigned Extra Meta to Extra Meta
1978
+			// (although it is possible).
1979
+			// Note this can be skipped by using the provided filter and returning false.
1980
+			if (apply_filters(
1981
+				'FHEE__EEM_Base__delete_permanently__dont_delete_extra_meta_for_extra_meta',
1982
+				! $this instanceof EEM_Extra_Meta,
1983
+				$this
1984
+			)) {
1985
+				EEM_Extra_Meta::instance()->delete_permanently(array(
1986
+					0 => array(
1987
+						'EXM_type' => $this->get_this_model_name(),
1988
+						'OBJ_ID'   => array(
1989
+							'IN',
1990
+							$ids_for_removal
1991
+						)
1992
+					)
1993
+				));
1994
+			}
1995
+		}
1996
+
1997
+		/**
1998
+		 * Action called just after performing a real deletion query. Although at this point the
1999
+		 * items should have been deleted
2000
+		 *
2001
+		 * @param EEM_Base $model
2002
+		 * @param array    $query_params @see https://github.com/eventespresso/event-espresso-core/tree/master/docs/G--Model-System/model-query-params.md
2003
+		 * @param int      $rows_deleted
2004
+		 */
2005
+		do_action('AHEE__EEM_Base__delete__end', $this, $query_params, $rows_deleted, $columns_and_ids_for_deleting);
2006
+		return $rows_deleted;// how many supposedly got deleted
2007
+	}
2008
+
2009
+
2010
+
2011
+	/**
2012
+	 * Checks all the relations that throw error messages when there are blocking related objects
2013
+	 * for related model objects. If there are any related model objects on those relations,
2014
+	 * adds an EE_Error, and return true
2015
+	 *
2016
+	 * @param EE_Base_Class|int $this_model_obj_or_id
2017
+	 * @param EE_Base_Class     $ignore_this_model_obj a model object like 'EE_Event', or 'EE_Term_Taxonomy', which
2018
+	 *                                                 should be ignored when determining whether there are related
2019
+	 *                                                 model objects which block this model object's deletion. Useful
2020
+	 *                                                 if you know A is related to B and are considering deleting A,
2021
+	 *                                                 but want to see if A has any other objects blocking its deletion
2022
+	 *                                                 before removing the relation between A and B
2023
+	 * @return boolean
2024
+	 * @throws EE_Error
2025
+	 */
2026
+	public function delete_is_blocked_by_related_models($this_model_obj_or_id, $ignore_this_model_obj = null)
2027
+	{
2028
+		// first, if $ignore_this_model_obj was supplied, get its model
2029
+		if ($ignore_this_model_obj && $ignore_this_model_obj instanceof EE_Base_Class) {
2030
+			$ignored_model = $ignore_this_model_obj->get_model();
2031
+		} else {
2032
+			$ignored_model = null;
2033
+		}
2034
+		// now check all the relations of $this_model_obj_or_id and see if there
2035
+		// are any related model objects blocking it?
2036
+		$is_blocked = false;
2037
+		foreach ($this->_model_relations as $relation_name => $relation_obj) {
2038
+			if ($relation_obj->block_delete_if_related_models_exist()) {
2039
+				// if $ignore_this_model_obj was supplied, then for the query
2040
+				// on that model needs to be told to ignore $ignore_this_model_obj
2041
+				if ($ignored_model && $relation_name === $ignored_model->get_this_model_name()) {
2042
+					$related_model_objects = $relation_obj->get_all_related($this_model_obj_or_id, array(
2043
+						array(
2044
+							$ignored_model->get_primary_key_field()->get_name() => array(
2045
+								'!=',
2046
+								$ignore_this_model_obj->ID(),
2047
+							),
2048
+						),
2049
+					));
2050
+				} else {
2051
+					$related_model_objects = $relation_obj->get_all_related($this_model_obj_or_id);
2052
+				}
2053
+				if ($related_model_objects) {
2054
+					EE_Error::add_error($relation_obj->get_deletion_error_message(), __FILE__, __FUNCTION__, __LINE__);
2055
+					$is_blocked = true;
2056
+				}
2057
+			}
2058
+		}
2059
+		return $is_blocked;
2060
+	}
2061
+
2062
+
2063
+	/**
2064
+	 * Builds the columns and values for items to delete from the incoming $row_results_for_deleting array.
2065
+	 * @param array $row_results_for_deleting
2066
+	 * @param bool  $allow_blocking
2067
+	 * @return array   The shape of this array depends on whether the model `has_primary_key_field` or not.  If the
2068
+	 *                 model DOES have a primary_key_field, then the array will be a simple single dimension array where
2069
+	 *                 the key is the fully qualified primary key column and the value is an array of ids that will be
2070
+	 *                 deleted. Example:
2071
+	 *                      array('Event.EVT_ID' => array( 1,2,3))
2072
+	 *                 If the model DOES NOT have a primary_key_field, then the array will be a two dimensional array
2073
+	 *                 where each element is a group of columns and values that get deleted. Example:
2074
+	 *                      array(
2075
+	 *                          0 => array(
2076
+	 *                              'Term_Relationship.object_id' => 1
2077
+	 *                              'Term_Relationship.term_taxonomy_id' => 5
2078
+	 *                          ),
2079
+	 *                          1 => array(
2080
+	 *                              'Term_Relationship.object_id' => 1
2081
+	 *                              'Term_Relationship.term_taxonomy_id' => 6
2082
+	 *                          )
2083
+	 *                      )
2084
+	 * @throws EE_Error
2085
+	 */
2086
+	protected function _get_ids_for_delete(array $row_results_for_deleting, $allow_blocking = true)
2087
+	{
2088
+		$ids_to_delete_indexed_by_column = array();
2089
+		if ($this->has_primary_key_field()) {
2090
+			$primary_table = $this->_get_main_table();
2091
+			$primary_table_pk_field = $this->get_field_by_column($primary_table->get_fully_qualified_pk_column());
2092
+			$other_tables = $this->_get_other_tables();
2093
+			$ids_to_delete_indexed_by_column = $query = array();
2094
+			foreach ($row_results_for_deleting as $item_to_delete) {
2095
+				// before we mark this item for deletion,
2096
+				// make sure there's no related entities blocking its deletion (if we're checking)
2097
+				if ($allow_blocking
2098
+					&& $this->delete_is_blocked_by_related_models(
2099
+						$item_to_delete[ $primary_table->get_fully_qualified_pk_column() ]
2100
+					)
2101
+				) {
2102
+					continue;
2103
+				}
2104
+				// primary table deletes
2105
+				if (isset($item_to_delete[ $primary_table->get_fully_qualified_pk_column() ])) {
2106
+					$ids_to_delete_indexed_by_column[ $primary_table->get_fully_qualified_pk_column() ][] =
2107
+						$item_to_delete[ $primary_table->get_fully_qualified_pk_column() ];
2108
+				}
2109
+			}
2110
+		} elseif (count($this->get_combined_primary_key_fields()) > 1) {
2111
+			$fields = $this->get_combined_primary_key_fields();
2112
+			foreach ($row_results_for_deleting as $item_to_delete) {
2113
+				$ids_to_delete_indexed_by_column_for_row = array();
2114
+				foreach ($fields as $cpk_field) {
2115
+					if ($cpk_field instanceof EE_Model_Field_Base) {
2116
+						$ids_to_delete_indexed_by_column_for_row[ $cpk_field->get_qualified_column() ] =
2117
+							$item_to_delete[ $cpk_field->get_qualified_column() ];
2118
+					}
2119
+				}
2120
+				$ids_to_delete_indexed_by_column[] = $ids_to_delete_indexed_by_column_for_row;
2121
+			}
2122
+		} else {
2123
+			// so there's no primary key and no combined key...
2124
+			// sorry, can't help you
2125
+			throw new EE_Error(
2126
+				sprintf(
2127
+					__(
2128
+						"Cannot delete objects of type %s because there is no primary key NOR combined key",
2129
+						"event_espresso"
2130
+					),
2131
+					get_class($this)
2132
+				)
2133
+			);
2134
+		}
2135
+		return $ids_to_delete_indexed_by_column;
2136
+	}
2137
+
2138
+
2139
+	/**
2140
+	 * This receives an array of columns and values set to be deleted (as prepared by _get_ids_for_delete) and prepares
2141
+	 * the corresponding query_part for the query performing the delete.
2142
+	 *
2143
+	 * @param array $ids_to_delete_indexed_by_column @see _get_ids_for_delete for how this array might be shaped.
2144
+	 * @return string
2145
+	 * @throws EE_Error
2146
+	 */
2147
+	protected function _build_query_part_for_deleting_from_columns_and_values(array $ids_to_delete_indexed_by_column)
2148
+	{
2149
+		$query_part = '';
2150
+		if (empty($ids_to_delete_indexed_by_column)) {
2151
+			return $query_part;
2152
+		} elseif ($this->has_primary_key_field()) {
2153
+			$query = array();
2154
+			foreach ($ids_to_delete_indexed_by_column as $column => $ids) {
2155
+				// make sure we have unique $ids
2156
+				$ids = array_unique($ids);
2157
+				$query[] = $column . ' IN(' . implode(',', $ids) . ')';
2158
+			}
2159
+			$query_part = ! empty($query) ? implode(' AND ', $query) : $query_part;
2160
+		} elseif (count($this->get_combined_primary_key_fields()) > 1) {
2161
+			$ways_to_identify_a_row = array();
2162
+			foreach ($ids_to_delete_indexed_by_column as $ids_to_delete_indexed_by_column_for_each_row) {
2163
+				$values_for_each_combined_primary_key_for_a_row = array();
2164
+				foreach ($ids_to_delete_indexed_by_column_for_each_row as $column => $id) {
2165
+					$values_for_each_combined_primary_key_for_a_row[] = $column . '=' . $id;
2166
+				}
2167
+				$ways_to_identify_a_row[] = '('
2168
+											. implode(' AND ', $values_for_each_combined_primary_key_for_a_row)
2169
+											. ')';
2170
+			}
2171
+			$query_part = implode(' OR ', $ways_to_identify_a_row);
2172
+		}
2173
+		return $query_part;
2174
+	}
2175
+
2176
+
2177
+
2178
+	/**
2179
+	 * Gets the model field by the fully qualified name
2180
+	 * @param string $qualified_column_name eg 'Event_CPT.post_name' or $field_obj->get_qualified_column()
2181
+	 * @return EE_Model_Field_Base
2182
+	 */
2183
+	public function get_field_by_column($qualified_column_name)
2184
+	{
2185
+		foreach ($this->field_settings(true) as $field_name => $field_obj) {
2186
+			if ($field_obj->get_qualified_column() === $qualified_column_name) {
2187
+				return $field_obj;
2188
+			}
2189
+		}
2190
+		throw new EE_Error(
2191
+			sprintf(
2192
+				esc_html__('Could not find a field on the model "%1$s" for qualified column "%2$s"', 'event_espresso'),
2193
+				$this->get_this_model_name(),
2194
+				$qualified_column_name
2195
+			)
2196
+		);
2197
+	}
2198
+
2199
+
2200
+
2201
+	/**
2202
+	 * Count all the rows that match criteria the model query params.
2203
+	 * If $field_to_count isn't provided, the model's primary key is used. Otherwise, we count by field_to_count's
2204
+	 * column
2205
+	 *
2206
+	 * @param array  $query_params   @see https://github.com/eventespresso/event-espresso-core/tree/master/docs/G--Model-System/model-query-params.md
2207
+	 * @param string $field_to_count field on model to count by (not column name)
2208
+	 * @param bool   $distinct       if we want to only count the distinct values for the column then you can trigger
2209
+	 *                               that by the setting $distinct to TRUE;
2210
+	 * @return int
2211
+	 * @throws EE_Error
2212
+	 */
2213
+	public function count($query_params = array(), $field_to_count = null, $distinct = false)
2214
+	{
2215
+		$model_query_info = $this->_create_model_query_info_carrier($query_params);
2216
+		if ($field_to_count) {
2217
+			$field_obj = $this->field_settings_for($field_to_count);
2218
+			$column_to_count = $field_obj->get_qualified_column();
2219
+		} elseif ($this->has_primary_key_field()) {
2220
+			$pk_field_obj = $this->get_primary_key_field();
2221
+			$column_to_count = $pk_field_obj->get_qualified_column();
2222
+		} else {
2223
+			// there's no primary key
2224
+			// if we're counting distinct items, and there's no primary key,
2225
+			// we need to list out the columns for distinction;
2226
+			// otherwise we can just use star
2227
+			if ($distinct) {
2228
+				$columns_to_use = array();
2229
+				foreach ($this->get_combined_primary_key_fields() as $field_obj) {
2230
+					$columns_to_use[] = $field_obj->get_qualified_column();
2231
+				}
2232
+				$column_to_count = implode(',', $columns_to_use);
2233
+			} else {
2234
+				$column_to_count = '*';
2235
+			}
2236
+		}
2237
+		$column_to_count = $distinct ? "DISTINCT " . $column_to_count : $column_to_count;
2238
+		$SQL = "SELECT COUNT(" . $column_to_count . ")" . $this->_construct_2nd_half_of_select_query($model_query_info);
2239
+		return (int) $this->_do_wpdb_query('get_var', array($SQL));
2240
+	}
2241
+
2242
+
2243
+
2244
+	/**
2245
+	 * Sums up the value of the $field_to_sum (defaults to the primary key, which isn't terribly useful)
2246
+	 *
2247
+	 * @param array  $query_params @see https://github.com/eventespresso/event-espresso-core/tree/master/docs/G--Model-System/model-query-params.md
2248
+	 * @param string $field_to_sum name of field (array key in $_fields array)
2249
+	 * @return float
2250
+	 * @throws EE_Error
2251
+	 */
2252
+	public function sum($query_params, $field_to_sum = null)
2253
+	{
2254
+		$model_query_info = $this->_create_model_query_info_carrier($query_params);
2255
+		if ($field_to_sum) {
2256
+			$field_obj = $this->field_settings_for($field_to_sum);
2257
+		} else {
2258
+			$field_obj = $this->get_primary_key_field();
2259
+		}
2260
+		$column_to_count = $field_obj->get_qualified_column();
2261
+		$SQL = "SELECT SUM(" . $column_to_count . ")" . $this->_construct_2nd_half_of_select_query($model_query_info);
2262
+		$return_value = $this->_do_wpdb_query('get_var', array($SQL));
2263
+		$data_type = $field_obj->get_wpdb_data_type();
2264
+		if ($data_type === '%d' || $data_type === '%s') {
2265
+			return (float) $return_value;
2266
+		}
2267
+		// must be %f
2268
+		return (float) $return_value;
2269
+	}
2270
+
2271
+
2272
+
2273
+	/**
2274
+	 * Just calls the specified method on $wpdb with the given arguments
2275
+	 * Consolidates a little extra error handling code
2276
+	 *
2277
+	 * @param string $wpdb_method
2278
+	 * @param array  $arguments_to_provide
2279
+	 * @throws EE_Error
2280
+	 * @global wpdb  $wpdb
2281
+	 * @return mixed
2282
+	 */
2283
+	protected function _do_wpdb_query($wpdb_method, $arguments_to_provide)
2284
+	{
2285
+		// if we're in maintenance mode level 2, DON'T run any queries
2286
+		// because level 2 indicates the database needs updating and
2287
+		// is probably out of sync with the code
2288
+		if (! EE_Maintenance_Mode::instance()->models_can_query()) {
2289
+			throw new EE_Error(sprintf(__(
2290
+				"Event Espresso Level 2 Maintenance mode is active. That means EE can not run ANY database queries until the necessary migration scripts have run which will take EE out of maintenance mode level 2. Please inform support of this error.",
2291
+				"event_espresso"
2292
+			)));
2293
+		}
2294
+		/** @type WPDB $wpdb */
2295
+		global $wpdb;
2296
+		if (! method_exists($wpdb, $wpdb_method)) {
2297
+			throw new EE_Error(sprintf(__(
2298
+				'There is no method named "%s" on Wordpress\' $wpdb object',
2299
+				'event_espresso'
2300
+			), $wpdb_method));
2301
+		}
2302
+		if (WP_DEBUG) {
2303
+			$old_show_errors_value = $wpdb->show_errors;
2304
+			$wpdb->show_errors(false);
2305
+		}
2306
+		$result = $this->_process_wpdb_query($wpdb_method, $arguments_to_provide);
2307
+		$this->show_db_query_if_previously_requested($wpdb->last_query);
2308
+		if (WP_DEBUG) {
2309
+			$wpdb->show_errors($old_show_errors_value);
2310
+			if (! empty($wpdb->last_error)) {
2311
+				throw new EE_Error(sprintf(__('WPDB Error: "%s"', 'event_espresso'), $wpdb->last_error));
2312
+			}
2313
+			if ($result === false) {
2314
+				throw new EE_Error(sprintf(__(
2315
+					'WPDB Error occurred, but no error message was logged by wpdb! The wpdb method called was "%1$s" and the arguments were "%2$s"',
2316
+					'event_espresso'
2317
+				), $wpdb_method, var_export($arguments_to_provide, true)));
2318
+			}
2319
+		} elseif ($result === false) {
2320
+			EE_Error::add_error(
2321
+				sprintf(
2322
+					__(
2323
+						'A database error has occurred. Turn on WP_DEBUG for more information.||A database error occurred doing wpdb method "%1$s", with arguments "%2$s". The error was "%3$s"',
2324
+						'event_espresso'
2325
+					),
2326
+					$wpdb_method,
2327
+					var_export($arguments_to_provide, true),
2328
+					$wpdb->last_error
2329
+				),
2330
+				__FILE__,
2331
+				__FUNCTION__,
2332
+				__LINE__
2333
+			);
2334
+		}
2335
+		return $result;
2336
+	}
2337
+
2338
+
2339
+
2340
+	/**
2341
+	 * Attempts to run the indicated WPDB method with the provided arguments,
2342
+	 * and if there's an error tries to verify the DB is correct. Uses
2343
+	 * the static property EEM_Base::$_db_verification_level to determine whether
2344
+	 * we should try to fix the EE core db, the addons, or just give up
2345
+	 *
2346
+	 * @param string $wpdb_method
2347
+	 * @param array  $arguments_to_provide
2348
+	 * @return mixed
2349
+	 */
2350
+	private function _process_wpdb_query($wpdb_method, $arguments_to_provide)
2351
+	{
2352
+		/** @type WPDB $wpdb */
2353
+		global $wpdb;
2354
+		$wpdb->last_error = null;
2355
+		$result = call_user_func_array(array($wpdb, $wpdb_method), $arguments_to_provide);
2356
+		// was there an error running the query? but we don't care on new activations
2357
+		// (we're going to setup the DB anyway on new activations)
2358
+		if (($result === false || ! empty($wpdb->last_error))
2359
+			&& EE_System::instance()->detect_req_type() !== EE_System::req_type_new_activation
2360
+		) {
2361
+			switch (EEM_Base::$_db_verification_level) {
2362
+				case EEM_Base::db_verified_none:
2363
+					// let's double-check core's DB
2364
+					$error_message = $this->_verify_core_db($wpdb_method, $arguments_to_provide);
2365
+					break;
2366
+				case EEM_Base::db_verified_core:
2367
+					// STILL NO LOVE?? verify all the addons too. Maybe they need to be fixed
2368
+					$error_message = $this->_verify_addons_db($wpdb_method, $arguments_to_provide);
2369
+					break;
2370
+				case EEM_Base::db_verified_addons:
2371
+					// ummmm... you in trouble
2372
+					return $result;
2373
+					break;
2374
+			}
2375
+			if (! empty($error_message)) {
2376
+				EE_Log::instance()->log(__FILE__, __FUNCTION__, $error_message, 'error');
2377
+				trigger_error($error_message);
2378
+			}
2379
+			return $this->_process_wpdb_query($wpdb_method, $arguments_to_provide);
2380
+		}
2381
+		return $result;
2382
+	}
2383
+
2384
+
2385
+
2386
+	/**
2387
+	 * Verifies the EE core database is up-to-date and records that we've done it on
2388
+	 * EEM_Base::$_db_verification_level
2389
+	 *
2390
+	 * @param string $wpdb_method
2391
+	 * @param array  $arguments_to_provide
2392
+	 * @return string
2393
+	 */
2394
+	private function _verify_core_db($wpdb_method, $arguments_to_provide)
2395
+	{
2396
+		/** @type WPDB $wpdb */
2397
+		global $wpdb;
2398
+		// ok remember that we've already attempted fixing the core db, in case the problem persists
2399
+		EEM_Base::$_db_verification_level = EEM_Base::db_verified_core;
2400
+		$error_message = sprintf(
2401
+			__(
2402
+				'WPDB Error "%1$s" while running wpdb method "%2$s" with arguments %3$s. Automatically attempting to fix EE Core DB',
2403
+				'event_espresso'
2404
+			),
2405
+			$wpdb->last_error,
2406
+			$wpdb_method,
2407
+			wp_json_encode($arguments_to_provide)
2408
+		);
2409
+		EE_System::instance()->initialize_db_if_no_migrations_required(false, true);
2410
+		return $error_message;
2411
+	}
2412
+
2413
+
2414
+
2415
+	/**
2416
+	 * Verifies the EE addons' database is up-to-date and records that we've done it on
2417
+	 * EEM_Base::$_db_verification_level
2418
+	 *
2419
+	 * @param $wpdb_method
2420
+	 * @param $arguments_to_provide
2421
+	 * @return string
2422
+	 */
2423
+	private function _verify_addons_db($wpdb_method, $arguments_to_provide)
2424
+	{
2425
+		/** @type WPDB $wpdb */
2426
+		global $wpdb;
2427
+		// ok remember that we've already attempted fixing the addons dbs, in case the problem persists
2428
+		EEM_Base::$_db_verification_level = EEM_Base::db_verified_addons;
2429
+		$error_message = sprintf(
2430
+			__(
2431
+				'WPDB AGAIN: Error "%1$s" while running the same method and arguments as before. Automatically attempting to fix EE Addons DB',
2432
+				'event_espresso'
2433
+			),
2434
+			$wpdb->last_error,
2435
+			$wpdb_method,
2436
+			wp_json_encode($arguments_to_provide)
2437
+		);
2438
+		EE_System::instance()->initialize_addons();
2439
+		return $error_message;
2440
+	}
2441
+
2442
+
2443
+
2444
+	/**
2445
+	 * In order to avoid repeating this code for the get_all, sum, and count functions, put the code parts
2446
+	 * that are identical in here. Returns a string of SQL of everything in a SELECT query except the beginning
2447
+	 * SELECT clause, eg " FROM wp_posts AS Event INNER JOIN ... WHERE ... ORDER BY ... LIMIT ... GROUP BY ... HAVING
2448
+	 * ..."
2449
+	 *
2450
+	 * @param EE_Model_Query_Info_Carrier $model_query_info
2451
+	 * @return string
2452
+	 */
2453
+	private function _construct_2nd_half_of_select_query(EE_Model_Query_Info_Carrier $model_query_info)
2454
+	{
2455
+		return " FROM " . $model_query_info->get_full_join_sql() .
2456
+			   $model_query_info->get_where_sql() .
2457
+			   $model_query_info->get_group_by_sql() .
2458
+			   $model_query_info->get_having_sql() .
2459
+			   $model_query_info->get_order_by_sql() .
2460
+			   $model_query_info->get_limit_sql();
2461
+	}
2462
+
2463
+
2464
+
2465
+	/**
2466
+	 * Set to easily debug the next X queries ran from this model.
2467
+	 *
2468
+	 * @param int $count
2469
+	 */
2470
+	public function show_next_x_db_queries($count = 1)
2471
+	{
2472
+		$this->_show_next_x_db_queries = $count;
2473
+	}
2474
+
2475
+
2476
+
2477
+	/**
2478
+	 * @param $sql_query
2479
+	 */
2480
+	public function show_db_query_if_previously_requested($sql_query)
2481
+	{
2482
+		if ($this->_show_next_x_db_queries > 0) {
2483
+			echo $sql_query;
2484
+			$this->_show_next_x_db_queries--;
2485
+		}
2486
+	}
2487
+
2488
+
2489
+
2490
+	/**
2491
+	 * Adds a relationship of the correct type between $modelObject and $otherModelObject.
2492
+	 * There are the 3 cases:
2493
+	 * 'belongsTo' relationship: sets $id_or_obj's foreign_key to be $other_model_id_or_obj's primary_key. If
2494
+	 * $otherModelObject has no ID, it is first saved.
2495
+	 * 'hasMany' relationship: sets $other_model_id_or_obj's foreign_key to be $id_or_obj's primary_key. If $id_or_obj
2496
+	 * has no ID, it is first saved.
2497
+	 * 'hasAndBelongsToMany' relationships: checks that there isn't already an entry in the join table, and adds one.
2498
+	 * If one of the model Objects has not yet been saved to the database, it is saved before adding the entry in the
2499
+	 * join table
2500
+	 *
2501
+	 * @param        EE_Base_Class                     /int $thisModelObject
2502
+	 * @param        EE_Base_Class                     /int $id_or_obj EE_base_Class or ID of other Model Object
2503
+	 * @param string $relationName                     , key in EEM_Base::_relations
2504
+	 *                                                 an attendee to a group, you also want to specify which role they
2505
+	 *                                                 will have in that group. So you would use this parameter to
2506
+	 *                                                 specify array('role-column-name'=>'role-id')
2507
+	 * @param array  $extra_join_model_fields_n_values This allows you to enter further query params for the relation
2508
+	 *                                                 to for relation to methods that allow you to further specify
2509
+	 *                                                 extra columns to join by (such as HABTM).  Keep in mind that the
2510
+	 *                                                 only acceptable query_params is strict "col" => "value" pairs
2511
+	 *                                                 because these will be inserted in any new rows created as well.
2512
+	 * @return EE_Base_Class which was added as a relation. Object referred to by $other_model_id_or_obj
2513
+	 * @throws EE_Error
2514
+	 */
2515
+	public function add_relationship_to(
2516
+		$id_or_obj,
2517
+		$other_model_id_or_obj,
2518
+		$relationName,
2519
+		$extra_join_model_fields_n_values = array()
2520
+	) {
2521
+		$relation_obj = $this->related_settings_for($relationName);
2522
+		return $relation_obj->add_relation_to($id_or_obj, $other_model_id_or_obj, $extra_join_model_fields_n_values);
2523
+	}
2524
+
2525
+
2526
+
2527
+	/**
2528
+	 * Removes a relationship of the correct type between $modelObject and $otherModelObject.
2529
+	 * There are the 3 cases:
2530
+	 * 'belongsTo' relationship: sets $modelObject's foreign_key to null, if that field is nullable.Otherwise throws an
2531
+	 * error
2532
+	 * 'hasMany' relationship: sets $otherModelObject's foreign_key to null,if that field is nullable.Otherwise throws
2533
+	 * an error
2534
+	 * 'hasAndBelongsToMany' relationships:removes any existing entry in the join table between the two models.
2535
+	 *
2536
+	 * @param        EE_Base_Class /int $id_or_obj
2537
+	 * @param        EE_Base_Class /int $other_model_id_or_obj EE_Base_Class or ID of other Model Object
2538
+	 * @param string $relationName key in EEM_Base::_relations
2539
+	 * @return boolean of success
2540
+	 * @throws EE_Error
2541
+	 * @param array  $where_query  This allows you to enter further query params for the relation to for relation to
2542
+	 *                             methods that allow you to further specify extra columns to join by (such as HABTM).
2543
+	 *                             Keep in mind that the only acceptable query_params is strict "col" => "value" pairs
2544
+	 *                             because these will be inserted in any new rows created as well.
2545
+	 */
2546
+	public function remove_relationship_to($id_or_obj, $other_model_id_or_obj, $relationName, $where_query = array())
2547
+	{
2548
+		$relation_obj = $this->related_settings_for($relationName);
2549
+		return $relation_obj->remove_relation_to($id_or_obj, $other_model_id_or_obj, $where_query);
2550
+	}
2551
+
2552
+
2553
+
2554
+	/**
2555
+	 * @param mixed           $id_or_obj
2556
+	 * @param string          $relationName
2557
+	 * @param array           $where_query_params
2558
+	 * @param EE_Base_Class[] objects to which relations were removed
2559
+	 * @return \EE_Base_Class[]
2560
+	 * @throws EE_Error
2561
+	 */
2562
+	public function remove_relations($id_or_obj, $relationName, $where_query_params = array())
2563
+	{
2564
+		$relation_obj = $this->related_settings_for($relationName);
2565
+		return $relation_obj->remove_relations($id_or_obj, $where_query_params);
2566
+	}
2567
+
2568
+
2569
+
2570
+	/**
2571
+	 * Gets all the related items of the specified $model_name, using $query_params.
2572
+	 * Note: by default, we remove the "default query params"
2573
+	 * because we want to get even deleted items etc.
2574
+	 *
2575
+	 * @param mixed  $id_or_obj    EE_Base_Class child or its ID
2576
+	 * @param string $model_name   like 'Event', 'Registration', etc. always singular
2577
+	 * @param array  $query_params @see https://github.com/eventespresso/event-espresso-core/tree/master/docs/G--Model-System/model-query-params.md
2578
+	 * @return EE_Base_Class[]
2579
+	 * @throws EE_Error
2580
+	 */
2581
+	public function get_all_related($id_or_obj, $model_name, $query_params = null)
2582
+	{
2583
+		$model_obj = $this->ensure_is_obj($id_or_obj);
2584
+		$relation_settings = $this->related_settings_for($model_name);
2585
+		return $relation_settings->get_all_related($model_obj, $query_params);
2586
+	}
2587
+
2588
+
2589
+
2590
+	/**
2591
+	 * Deletes all the model objects across the relation indicated by $model_name
2592
+	 * which are related to $id_or_obj which meet the criteria set in $query_params.
2593
+	 * However, if the model objects can't be deleted because of blocking related model objects, then
2594
+	 * they aren't deleted. (Unless the thing that would have been deleted can be soft-deleted, that still happens).
2595
+	 *
2596
+	 * @param EE_Base_Class|int|string $id_or_obj
2597
+	 * @param string                   $model_name
2598
+	 * @param array                    $query_params
2599
+	 * @return int how many deleted
2600
+	 * @throws EE_Error
2601
+	 */
2602
+	public function delete_related($id_or_obj, $model_name, $query_params = array())
2603
+	{
2604
+		$model_obj = $this->ensure_is_obj($id_or_obj);
2605
+		$relation_settings = $this->related_settings_for($model_name);
2606
+		return $relation_settings->delete_all_related($model_obj, $query_params);
2607
+	}
2608
+
2609
+
2610
+
2611
+	/**
2612
+	 * Hard deletes all the model objects across the relation indicated by $model_name
2613
+	 * which are related to $id_or_obj which meet the criteria set in $query_params. If
2614
+	 * the model objects can't be hard deleted because of blocking related model objects,
2615
+	 * just does a soft-delete on them instead.
2616
+	 *
2617
+	 * @param EE_Base_Class|int|string $id_or_obj
2618
+	 * @param string                   $model_name
2619
+	 * @param array                    $query_params
2620
+	 * @return int how many deleted
2621
+	 * @throws EE_Error
2622
+	 */
2623
+	public function delete_related_permanently($id_or_obj, $model_name, $query_params = array())
2624
+	{
2625
+		$model_obj = $this->ensure_is_obj($id_or_obj);
2626
+		$relation_settings = $this->related_settings_for($model_name);
2627
+		return $relation_settings->delete_related_permanently($model_obj, $query_params);
2628
+	}
2629
+
2630
+
2631
+
2632
+	/**
2633
+	 * Instead of getting the related model objects, simply counts them. Ignores default_where_conditions by default,
2634
+	 * unless otherwise specified in the $query_params
2635
+	 *
2636
+	 * @param        int             /EE_Base_Class $id_or_obj
2637
+	 * @param string $model_name     like 'Event', or 'Registration'
2638
+	 * @param array  $query_params   @see https://github.com/eventespresso/event-espresso-core/tree/master/docs/G--Model-System/model-query-params.md
2639
+	 * @param string $field_to_count name of field to count by. By default, uses primary key
2640
+	 * @param bool   $distinct       if we want to only count the distinct values for the column then you can trigger
2641
+	 *                               that by the setting $distinct to TRUE;
2642
+	 * @return int
2643
+	 * @throws EE_Error
2644
+	 */
2645
+	public function count_related(
2646
+		$id_or_obj,
2647
+		$model_name,
2648
+		$query_params = array(),
2649
+		$field_to_count = null,
2650
+		$distinct = false
2651
+	) {
2652
+		$related_model = $this->get_related_model_obj($model_name);
2653
+		// we're just going to use the query params on the related model's normal get_all query,
2654
+		// except add a condition to say to match the current mod
2655
+		if (! isset($query_params['default_where_conditions'])) {
2656
+			$query_params['default_where_conditions'] = EEM_Base::default_where_conditions_none;
2657
+		}
2658
+		$this_model_name = $this->get_this_model_name();
2659
+		$this_pk_field_name = $this->get_primary_key_field()->get_name();
2660
+		$query_params[0][ $this_model_name . "." . $this_pk_field_name ] = $id_or_obj;
2661
+		return $related_model->count($query_params, $field_to_count, $distinct);
2662
+	}
2663
+
2664
+
2665
+
2666
+	/**
2667
+	 * Instead of getting the related model objects, simply sums up the values of the specified field.
2668
+	 * Note: ignores default_where_conditions by default, unless otherwise specified in the $query_params
2669
+	 *
2670
+	 * @param        int           /EE_Base_Class $id_or_obj
2671
+	 * @param string $model_name   like 'Event', or 'Registration'
2672
+	 * @param array  $query_params @see https://github.com/eventespresso/event-espresso-core/tree/master/docs/G--Model-System/model-query-params.md
2673
+	 * @param string $field_to_sum name of field to count by. By default, uses primary key
2674
+	 * @return float
2675
+	 * @throws EE_Error
2676
+	 */
2677
+	public function sum_related($id_or_obj, $model_name, $query_params, $field_to_sum = null)
2678
+	{
2679
+		$related_model = $this->get_related_model_obj($model_name);
2680
+		if (! is_array($query_params)) {
2681
+			EE_Error::doing_it_wrong(
2682
+				'EEM_Base::sum_related',
2683
+				sprintf(
2684
+					__('$query_params should be an array, you passed a variable of type %s', 'event_espresso'),
2685
+					gettype($query_params)
2686
+				),
2687
+				'4.6.0'
2688
+			);
2689
+			$query_params = array();
2690
+		}
2691
+		// we're just going to use the query params on the related model's normal get_all query,
2692
+		// except add a condition to say to match the current mod
2693
+		if (! isset($query_params['default_where_conditions'])) {
2694
+			$query_params['default_where_conditions'] = EEM_Base::default_where_conditions_none;
2695
+		}
2696
+		$this_model_name = $this->get_this_model_name();
2697
+		$this_pk_field_name = $this->get_primary_key_field()->get_name();
2698
+		$query_params[0][ $this_model_name . "." . $this_pk_field_name ] = $id_or_obj;
2699
+		return $related_model->sum($query_params, $field_to_sum);
2700
+	}
2701
+
2702
+
2703
+
2704
+	/**
2705
+	 * Uses $this->_relatedModels info to find the first related model object of relation $relationName to the given
2706
+	 * $modelObject
2707
+	 *
2708
+	 * @param int | EE_Base_Class $id_or_obj        EE_Base_Class child or its ID
2709
+	 * @param string              $other_model_name , key in $this->_relatedModels, eg 'Registration', or 'Events'
2710
+	 * @param array               $query_params     @see https://github.com/eventespresso/event-espresso-core/tree/master/docs/G--Model-System/model-query-params.md
2711
+	 * @return EE_Base_Class
2712
+	 * @throws EE_Error
2713
+	 */
2714
+	public function get_first_related(EE_Base_Class $id_or_obj, $other_model_name, $query_params)
2715
+	{
2716
+		$query_params['limit'] = 1;
2717
+		$results = $this->get_all_related($id_or_obj, $other_model_name, $query_params);
2718
+		if ($results) {
2719
+			return array_shift($results);
2720
+		}
2721
+		return null;
2722
+	}
2723
+
2724
+
2725
+
2726
+	/**
2727
+	 * Gets the model's name as it's expected in queries. For example, if this is EEM_Event model, that would be Event
2728
+	 *
2729
+	 * @return string
2730
+	 */
2731
+	public function get_this_model_name()
2732
+	{
2733
+		return str_replace("EEM_", "", get_class($this));
2734
+	}
2735
+
2736
+
2737
+
2738
+	/**
2739
+	 * Gets the model field on this model which is of type EE_Any_Foreign_Model_Name_Field
2740
+	 *
2741
+	 * @return EE_Any_Foreign_Model_Name_Field
2742
+	 * @throws EE_Error
2743
+	 */
2744
+	public function get_field_containing_related_model_name()
2745
+	{
2746
+		foreach ($this->field_settings(true) as $field) {
2747
+			if ($field instanceof EE_Any_Foreign_Model_Name_Field) {
2748
+				$field_with_model_name = $field;
2749
+			}
2750
+		}
2751
+		if (! isset($field_with_model_name) || ! $field_with_model_name) {
2752
+			throw new EE_Error(sprintf(
2753
+				__("There is no EE_Any_Foreign_Model_Name field on model %s", "event_espresso"),
2754
+				$this->get_this_model_name()
2755
+			));
2756
+		}
2757
+		return $field_with_model_name;
2758
+	}
2759
+
2760
+
2761
+
2762
+	/**
2763
+	 * Inserts a new entry into the database, for each table.
2764
+	 * Note: does not add the item to the entity map because that is done by EE_Base_Class::save() right after this.
2765
+	 * If client code uses EEM_Base::insert() directly, then although the item isn't in the entity map,
2766
+	 * we also know there is no model object with the newly inserted item's ID at the moment (because
2767
+	 * if there were, then they would already be in the DB and this would fail); and in the future if someone
2768
+	 * creates a model object with this ID (or grabs it from the DB) then it will be added to the
2769
+	 * entity map at that time anyways. SO, no need for EEM_Base::insert ot add to the entity map
2770
+	 *
2771
+	 * @param array $field_n_values keys are field names, values are their values (in the client code's domain if
2772
+	 *                              $values_already_prepared_by_model_object is false, in the model object's domain if
2773
+	 *                              $values_already_prepared_by_model_object is true. See comment about this at the top
2774
+	 *                              of EEM_Base)
2775
+	 * @return int|string new primary key on main table that got inserted
2776
+	 * @throws EE_Error
2777
+	 */
2778
+	public function insert($field_n_values)
2779
+	{
2780
+		/**
2781
+		 * Filters the fields and their values before inserting an item using the models
2782
+		 *
2783
+		 * @param array    $fields_n_values keys are the fields and values are their new values
2784
+		 * @param EEM_Base $model           the model used
2785
+		 */
2786
+		$field_n_values = (array) apply_filters('FHEE__EEM_Base__insert__fields_n_values', $field_n_values, $this);
2787
+		if ($this->_satisfies_unique_indexes($field_n_values)) {
2788
+			$main_table = $this->_get_main_table();
2789
+			$new_id = $this->_insert_into_specific_table($main_table, $field_n_values, false);
2790
+			if ($new_id !== false) {
2791
+				foreach ($this->_get_other_tables() as $other_table) {
2792
+					$this->_insert_into_specific_table($other_table, $field_n_values, $new_id);
2793
+				}
2794
+			}
2795
+			/**
2796
+			 * Done just after attempting to insert a new model object
2797
+			 *
2798
+			 * @param EEM_Base   $model           used
2799
+			 * @param array      $fields_n_values fields and their values
2800
+			 * @param int|string the              ID of the newly-inserted model object
2801
+			 */
2802
+			do_action('AHEE__EEM_Base__insert__end', $this, $field_n_values, $new_id);
2803
+			return $new_id;
2804
+		}
2805
+		return false;
2806
+	}
2807
+
2808
+
2809
+
2810
+	/**
2811
+	 * Checks that the result would satisfy the unique indexes on this model
2812
+	 *
2813
+	 * @param array  $field_n_values
2814
+	 * @param string $action
2815
+	 * @return boolean
2816
+	 * @throws EE_Error
2817
+	 */
2818
+	protected function _satisfies_unique_indexes($field_n_values, $action = 'insert')
2819
+	{
2820
+		foreach ($this->unique_indexes() as $index_name => $index) {
2821
+			$uniqueness_where_params = array_intersect_key($field_n_values, $index->fields());
2822
+			if ($this->exists(array($uniqueness_where_params))) {
2823
+				EE_Error::add_error(
2824
+					sprintf(
2825
+						__(
2826
+							"Could not %s %s. %s uniqueness index failed. Fields %s must form a unique set, but an entry already exists with values %s.",
2827
+							"event_espresso"
2828
+						),
2829
+						$action,
2830
+						$this->_get_class_name(),
2831
+						$index_name,
2832
+						implode(",", $index->field_names()),
2833
+						http_build_query($uniqueness_where_params)
2834
+					),
2835
+					__FILE__,
2836
+					__FUNCTION__,
2837
+					__LINE__
2838
+				);
2839
+				return false;
2840
+			}
2841
+		}
2842
+		return true;
2843
+	}
2844
+
2845
+
2846
+
2847
+	/**
2848
+	 * Checks the database for an item that conflicts (ie, if this item were
2849
+	 * saved to the DB would break some uniqueness requirement, like a primary key
2850
+	 * or an index primary key set) with the item specified. $id_obj_or_fields_array
2851
+	 * can be either an EE_Base_Class or an array of fields n values
2852
+	 *
2853
+	 * @param EE_Base_Class|array $obj_or_fields_array
2854
+	 * @param boolean             $include_primary_key whether to use the model object's primary key
2855
+	 *                                                 when looking for conflicts
2856
+	 *                                                 (ie, if false, we ignore the model object's primary key
2857
+	 *                                                 when finding "conflicts". If true, it's also considered).
2858
+	 *                                                 Only works for INT primary key,
2859
+	 *                                                 STRING primary keys cannot be ignored
2860
+	 * @throws EE_Error
2861
+	 * @return EE_Base_Class|array
2862
+	 */
2863
+	public function get_one_conflicting($obj_or_fields_array, $include_primary_key = true)
2864
+	{
2865
+		if ($obj_or_fields_array instanceof EE_Base_Class) {
2866
+			$fields_n_values = $obj_or_fields_array->model_field_array();
2867
+		} elseif (is_array($obj_or_fields_array)) {
2868
+			$fields_n_values = $obj_or_fields_array;
2869
+		} else {
2870
+			throw new EE_Error(
2871
+				sprintf(
2872
+					__(
2873
+						"%s get_all_conflicting should be called with a model object or an array of field names and values, you provided %d",
2874
+						"event_espresso"
2875
+					),
2876
+					get_class($this),
2877
+					$obj_or_fields_array
2878
+				)
2879
+			);
2880
+		}
2881
+		$query_params = array();
2882
+		if ($this->has_primary_key_field()
2883
+			&& ($include_primary_key
2884
+				|| $this->get_primary_key_field()
2885
+				   instanceof
2886
+				   EE_Primary_Key_String_Field)
2887
+			&& isset($fields_n_values[ $this->primary_key_name() ])
2888
+		) {
2889
+			$query_params[0]['OR'][ $this->primary_key_name() ] = $fields_n_values[ $this->primary_key_name() ];
2890
+		}
2891
+		foreach ($this->unique_indexes() as $unique_index_name => $unique_index) {
2892
+			$uniqueness_where_params = array_intersect_key($fields_n_values, $unique_index->fields());
2893
+			$query_params[0]['OR'][ 'AND*' . $unique_index_name ] = $uniqueness_where_params;
2894
+		}
2895
+		// if there is nothing to base this search on, then we shouldn't find anything
2896
+		if (empty($query_params)) {
2897
+			return array();
2898
+		}
2899
+		return $this->get_one($query_params);
2900
+	}
2901
+
2902
+
2903
+
2904
+	/**
2905
+	 * Like count, but is optimized and returns a boolean instead of an int
2906
+	 *
2907
+	 * @param array $query_params
2908
+	 * @return boolean
2909
+	 * @throws EE_Error
2910
+	 */
2911
+	public function exists($query_params)
2912
+	{
2913
+		$query_params['limit'] = 1;
2914
+		return $this->count($query_params) > 0;
2915
+	}
2916
+
2917
+
2918
+
2919
+	/**
2920
+	 * Wrapper for exists, except ignores default query parameters so we're only considering ID
2921
+	 *
2922
+	 * @param int|string $id
2923
+	 * @return boolean
2924
+	 * @throws EE_Error
2925
+	 */
2926
+	public function exists_by_ID($id)
2927
+	{
2928
+		return $this->exists(
2929
+			array(
2930
+				'default_where_conditions' => EEM_Base::default_where_conditions_none,
2931
+				array(
2932
+					$this->primary_key_name() => $id,
2933
+				),
2934
+			)
2935
+		);
2936
+	}
2937
+
2938
+
2939
+
2940
+	/**
2941
+	 * Inserts a new row in $table, using the $cols_n_values which apply to that table.
2942
+	 * If a $new_id is supplied and if $table is an EE_Other_Table, we assume
2943
+	 * we need to add a foreign key column to point to $new_id (which should be the primary key's value
2944
+	 * on the main table)
2945
+	 * This is protected rather than private because private is not accessible to any child methods and there MAY be
2946
+	 * cases where we want to call it directly rather than via insert().
2947
+	 *
2948
+	 * @access   protected
2949
+	 * @param EE_Table_Base $table
2950
+	 * @param array         $fields_n_values each key should be in field's keys, and value should be an int, string or
2951
+	 *                                       float
2952
+	 * @param int           $new_id          for now we assume only int keys
2953
+	 * @throws EE_Error
2954
+	 * @global WPDB         $wpdb            only used to get the $wpdb->insert_id after performing an insert
2955
+	 * @return int ID of new row inserted, or FALSE on failure
2956
+	 */
2957
+	protected function _insert_into_specific_table(EE_Table_Base $table, $fields_n_values, $new_id = 0)
2958
+	{
2959
+		global $wpdb;
2960
+		$insertion_col_n_values = array();
2961
+		$format_for_insertion = array();
2962
+		$fields_on_table = $this->_get_fields_for_table($table->get_table_alias());
2963
+		foreach ($fields_on_table as $field_name => $field_obj) {
2964
+			// check if its an auto-incrementing column, in which case we should just leave it to do its autoincrement thing
2965
+			if ($field_obj->is_auto_increment()) {
2966
+				continue;
2967
+			}
2968
+			$prepared_value = $this->_prepare_value_or_use_default($field_obj, $fields_n_values);
2969
+			// if the value we want to assign it to is NULL, just don't mention it for the insertion
2970
+			if ($prepared_value !== null) {
2971
+				$insertion_col_n_values[ $field_obj->get_table_column() ] = $prepared_value;
2972
+				$format_for_insertion[] = $field_obj->get_wpdb_data_type();
2973
+			}
2974
+		}
2975
+		if ($table instanceof EE_Secondary_Table && $new_id) {
2976
+			// its not the main table, so we should have already saved the main table's PK which we just inserted
2977
+			// so add the fk to the main table as a column
2978
+			$insertion_col_n_values[ $table->get_fk_on_table() ] = $new_id;
2979
+			$format_for_insertion[] = '%d';// yes right now we're only allowing these foreign keys to be INTs
2980
+		}
2981
+		// insert the new entry
2982
+		$result = $this->_do_wpdb_query(
2983
+			'insert',
2984
+			array($table->get_table_name(), $insertion_col_n_values, $format_for_insertion)
2985
+		);
2986
+		if ($result === false) {
2987
+			return false;
2988
+		}
2989
+		// ok, now what do we return for the ID of the newly-inserted thing?
2990
+		if ($this->has_primary_key_field()) {
2991
+			if ($this->get_primary_key_field()->is_auto_increment()) {
2992
+				return $wpdb->insert_id;
2993
+			}
2994
+			// it's not an auto-increment primary key, so
2995
+			// it must have been supplied
2996
+			return $fields_n_values[ $this->get_primary_key_field()->get_name() ];
2997
+		}
2998
+		// we can't return a  primary key because there is none. instead return
2999
+		// a unique string indicating this model
3000
+		return $this->get_index_primary_key_string($fields_n_values);
3001
+	}
3002
+
3003
+
3004
+
3005
+	/**
3006
+	 * Prepare the $field_obj 's value in $fields_n_values for use in the database.
3007
+	 * If the field doesn't allow NULL, try to use its default. (If it doesn't allow NULL,
3008
+	 * and there is no default, we pass it along. WPDB will take care of it)
3009
+	 *
3010
+	 * @param EE_Model_Field_Base $field_obj
3011
+	 * @param array               $fields_n_values
3012
+	 * @return mixed string|int|float depending on what the table column will be expecting
3013
+	 * @throws EE_Error
3014
+	 */
3015
+	protected function _prepare_value_or_use_default($field_obj, $fields_n_values)
3016
+	{
3017
+		// if this field doesn't allow nullable, don't allow it
3018
+		if (! $field_obj->is_nullable()
3019
+			&& (
3020
+				! isset($fields_n_values[ $field_obj->get_name() ])
3021
+				|| $fields_n_values[ $field_obj->get_name() ] === null
3022
+			)
3023
+		) {
3024
+			$fields_n_values[ $field_obj->get_name() ] = $field_obj->get_default_value();
3025
+		}
3026
+		$unprepared_value = isset($fields_n_values[ $field_obj->get_name() ])
3027
+			? $fields_n_values[ $field_obj->get_name() ]
3028
+			: null;
3029
+		return $this->_prepare_value_for_use_in_db($unprepared_value, $field_obj);
3030
+	}
3031
+
3032
+
3033
+
3034
+	/**
3035
+	 * Consolidates code for preparing  a value supplied to the model for use int eh db. Calls the field's
3036
+	 * prepare_for_use_in_db method on the value, and depending on $value_already_prepare_by_model_obj, may also call
3037
+	 * the field's prepare_for_set() method.
3038
+	 *
3039
+	 * @param mixed               $value value in the client code domain if $value_already_prepared_by_model_object is
3040
+	 *                                   false, otherwise a value in the model object's domain (see lengthy comment at
3041
+	 *                                   top of file)
3042
+	 * @param EE_Model_Field_Base $field field which will be doing the preparing of the value. If null, we assume
3043
+	 *                                   $value is a custom selection
3044
+	 * @return mixed a value ready for use in the database for insertions, updating, or in a where clause
3045
+	 */
3046
+	private function _prepare_value_for_use_in_db($value, $field)
3047
+	{
3048
+		if ($field && $field instanceof EE_Model_Field_Base) {
3049
+			// phpcs:disable PSR2.ControlStructures.SwitchDeclaration.TerminatingComment
3050
+			switch ($this->_values_already_prepared_by_model_object) {
3051
+				/** @noinspection PhpMissingBreakStatementInspection */
3052
+				case self::not_prepared_by_model_object:
3053
+					$value = $field->prepare_for_set($value);
3054
+				// purposefully left out "return"
3055
+				case self::prepared_by_model_object:
3056
+					/** @noinspection SuspiciousAssignmentsInspection */
3057
+					$value = $field->prepare_for_use_in_db($value);
3058
+				case self::prepared_for_use_in_db:
3059
+					// leave the value alone
3060
+			}
3061
+			return $value;
3062
+			// phpcs:enable
3063
+		}
3064
+		return $value;
3065
+	}
3066
+
3067
+
3068
+
3069
+	/**
3070
+	 * Returns the main table on this model
3071
+	 *
3072
+	 * @return EE_Primary_Table
3073
+	 * @throws EE_Error
3074
+	 */
3075
+	protected function _get_main_table()
3076
+	{
3077
+		foreach ($this->_tables as $table) {
3078
+			if ($table instanceof EE_Primary_Table) {
3079
+				return $table;
3080
+			}
3081
+		}
3082
+		throw new EE_Error(sprintf(__(
3083
+			'There are no main tables on %s. They should be added to _tables array in the constructor',
3084
+			'event_espresso'
3085
+		), get_class($this)));
3086
+	}
3087
+
3088
+
3089
+
3090
+	/**
3091
+	 * table
3092
+	 * returns EE_Primary_Table table name
3093
+	 *
3094
+	 * @return string
3095
+	 * @throws EE_Error
3096
+	 */
3097
+	public function table()
3098
+	{
3099
+		return $this->_get_main_table()->get_table_name();
3100
+	}
3101
+
3102
+
3103
+
3104
+	/**
3105
+	 * table
3106
+	 * returns first EE_Secondary_Table table name
3107
+	 *
3108
+	 * @return string
3109
+	 */
3110
+	public function second_table()
3111
+	{
3112
+		// grab second table from tables array
3113
+		$second_table = end($this->_tables);
3114
+		return $second_table instanceof EE_Secondary_Table ? $second_table->get_table_name() : null;
3115
+	}
3116
+
3117
+
3118
+
3119
+	/**
3120
+	 * get_table_obj_by_alias
3121
+	 * returns table name given it's alias
3122
+	 *
3123
+	 * @param string $table_alias
3124
+	 * @return EE_Primary_Table | EE_Secondary_Table
3125
+	 */
3126
+	public function get_table_obj_by_alias($table_alias = '')
3127
+	{
3128
+		return isset($this->_tables[ $table_alias ]) ? $this->_tables[ $table_alias ] : null;
3129
+	}
3130
+
3131
+
3132
+
3133
+	/**
3134
+	 * Gets all the tables of type EE_Other_Table from EEM_CPT_Basel_Model::_tables
3135
+	 *
3136
+	 * @return EE_Secondary_Table[]
3137
+	 */
3138
+	protected function _get_other_tables()
3139
+	{
3140
+		$other_tables = array();
3141
+		foreach ($this->_tables as $table_alias => $table) {
3142
+			if ($table instanceof EE_Secondary_Table) {
3143
+				$other_tables[ $table_alias ] = $table;
3144
+			}
3145
+		}
3146
+		return $other_tables;
3147
+	}
3148
+
3149
+
3150
+
3151
+	/**
3152
+	 * Finds all the fields that correspond to the given table
3153
+	 *
3154
+	 * @param string $table_alias , array key in EEM_Base::_tables
3155
+	 * @return EE_Model_Field_Base[]
3156
+	 */
3157
+	public function _get_fields_for_table($table_alias)
3158
+	{
3159
+		return $this->_fields[ $table_alias ];
3160
+	}
3161
+
3162
+
3163
+
3164
+	/**
3165
+	 * Recurses through all the where parameters, and finds all the related models we'll need
3166
+	 * to complete this query. Eg, given where parameters like array('EVT_ID'=>3) from within Event model, we won't
3167
+	 * need any related models. But if the array were array('Registrations.REG_ID'=>3), we'd need the related
3168
+	 * Registration model. If it were array('Registrations.Transactions.Payments.PAY_ID'=>3), then we'd need the
3169
+	 * related Registration, Transaction, and Payment models.
3170
+	 *
3171
+	 * @param array $query_params @see https://github.com/eventespresso/event-espresso-core/tree/master/docs/G--Model-System/model-query-params.md
3172
+	 * @return EE_Model_Query_Info_Carrier
3173
+	 * @throws EE_Error
3174
+	 */
3175
+	public function _extract_related_models_from_query($query_params)
3176
+	{
3177
+		$query_info_carrier = new EE_Model_Query_Info_Carrier();
3178
+		if (array_key_exists(0, $query_params)) {
3179
+			$this->_extract_related_models_from_sub_params_array_keys($query_params[0], $query_info_carrier, 0);
3180
+		}
3181
+		if (array_key_exists('group_by', $query_params)) {
3182
+			if (is_array($query_params['group_by'])) {
3183
+				$this->_extract_related_models_from_sub_params_array_values(
3184
+					$query_params['group_by'],
3185
+					$query_info_carrier,
3186
+					'group_by'
3187
+				);
3188
+			} elseif (! empty($query_params['group_by'])) {
3189
+				$this->_extract_related_model_info_from_query_param(
3190
+					$query_params['group_by'],
3191
+					$query_info_carrier,
3192
+					'group_by'
3193
+				);
3194
+			}
3195
+		}
3196
+		if (array_key_exists('having', $query_params)) {
3197
+			$this->_extract_related_models_from_sub_params_array_keys(
3198
+				$query_params[0],
3199
+				$query_info_carrier,
3200
+				'having'
3201
+			);
3202
+		}
3203
+		if (array_key_exists('order_by', $query_params)) {
3204
+			if (is_array($query_params['order_by'])) {
3205
+				$this->_extract_related_models_from_sub_params_array_keys(
3206
+					$query_params['order_by'],
3207
+					$query_info_carrier,
3208
+					'order_by'
3209
+				);
3210
+			} elseif (! empty($query_params['order_by'])) {
3211
+				$this->_extract_related_model_info_from_query_param(
3212
+					$query_params['order_by'],
3213
+					$query_info_carrier,
3214
+					'order_by'
3215
+				);
3216
+			}
3217
+		}
3218
+		if (array_key_exists('force_join', $query_params)) {
3219
+			$this->_extract_related_models_from_sub_params_array_values(
3220
+				$query_params['force_join'],
3221
+				$query_info_carrier,
3222
+				'force_join'
3223
+			);
3224
+		}
3225
+		$this->extractRelatedModelsFromCustomSelects($query_info_carrier);
3226
+		return $query_info_carrier;
3227
+	}
3228
+
3229
+
3230
+
3231
+	/**
3232
+	 * For extracting related models from WHERE (0), HAVING (having), ORDER BY (order_by) or forced joins (force_join)
3233
+	 *
3234
+	 * @param array                       $sub_query_params @see https://github.com/eventespresso/event-espresso-core/tree/master/docs/G--Model-System/model-query-params.md#-0-where-conditions
3235
+	 * @param EE_Model_Query_Info_Carrier $model_query_info_carrier
3236
+	 * @param string                      $query_param_type one of $this->_allowed_query_params
3237
+	 * @throws EE_Error
3238
+	 * @return \EE_Model_Query_Info_Carrier
3239
+	 */
3240
+	private function _extract_related_models_from_sub_params_array_keys(
3241
+		$sub_query_params,
3242
+		EE_Model_Query_Info_Carrier $model_query_info_carrier,
3243
+		$query_param_type
3244
+	) {
3245
+		if (! empty($sub_query_params)) {
3246
+			$sub_query_params = (array) $sub_query_params;
3247
+			foreach ($sub_query_params as $param => $possibly_array_of_params) {
3248
+				// $param could be simply 'EVT_ID', or it could be 'Registrations.REG_ID', or even 'Registrations.Transactions.Payments.PAY_amount'
3249
+				$this->_extract_related_model_info_from_query_param(
3250
+					$param,
3251
+					$model_query_info_carrier,
3252
+					$query_param_type
3253
+				);
3254
+				// if $possibly_array_of_params is an array, try recursing into it, searching for keys which
3255
+				// indicate needed joins. Eg, array('NOT'=>array('Registration.TXN_ID'=>23)). In this case, we tried
3256
+				// extracting models out of the 'NOT', which obviously wasn't successful, and then we recurse into the value
3257
+				// of array('Registration.TXN_ID'=>23)
3258
+				$query_param_sans_stars = $this->_remove_stars_and_anything_after_from_condition_query_param_key($param);
3259
+				if (in_array($query_param_sans_stars, $this->_logic_query_param_keys, true)) {
3260
+					if (! is_array($possibly_array_of_params)) {
3261
+						throw new EE_Error(sprintf(
3262
+							__(
3263
+								"You used a special where query param %s, but the value isn't an array of where query params, it's just %s'. It should be an array, eg array('EVT_ID'=>23,'OR'=>array('Venue.VNU_ID'=>32,'Venue.VNU_name'=>'monkey_land'))",
3264
+								"event_espresso"
3265
+							),
3266
+							$param,
3267
+							$possibly_array_of_params
3268
+						));
3269
+					}
3270
+					$this->_extract_related_models_from_sub_params_array_keys(
3271
+						$possibly_array_of_params,
3272
+						$model_query_info_carrier,
3273
+						$query_param_type
3274
+					);
3275
+				} elseif ($query_param_type === 0 // ie WHERE
3276
+						  && is_array($possibly_array_of_params)
3277
+						  && isset($possibly_array_of_params[2])
3278
+						  && $possibly_array_of_params[2] == true
3279
+				) {
3280
+					// then $possible_array_of_params looks something like array('<','DTT_sold',true)
3281
+					// indicating that $possible_array_of_params[1] is actually a field name,
3282
+					// from which we should extract query parameters!
3283
+					if (! isset($possibly_array_of_params[0], $possibly_array_of_params[1])) {
3284
+						throw new EE_Error(sprintf(__(
3285
+							"Improperly formed query parameter %s. It should be numerically indexed like array('<','DTT_sold',true); but you provided %s",
3286
+							"event_espresso"
3287
+						), $query_param_type, implode(",", $possibly_array_of_params)));
3288
+					}
3289
+					$this->_extract_related_model_info_from_query_param(
3290
+						$possibly_array_of_params[1],
3291
+						$model_query_info_carrier,
3292
+						$query_param_type
3293
+					);
3294
+				}
3295
+			}
3296
+		}
3297
+		return $model_query_info_carrier;
3298
+	}
3299
+
3300
+
3301
+
3302
+	/**
3303
+	 * For extracting related models from forced_joins, where the array values contain the info about what
3304
+	 * models to join with. Eg an array like array('Attendee','Price.Price_Type');
3305
+	 *
3306
+	 * @param array                       $sub_query_params @see https://github.com/eventespresso/event-espresso-core/tree/master/docs/G--Model-System/model-query-params.md#0-where-conditions
3307
+	 * @param EE_Model_Query_Info_Carrier $model_query_info_carrier
3308
+	 * @param string                      $query_param_type one of $this->_allowed_query_params
3309
+	 * @throws EE_Error
3310
+	 * @return \EE_Model_Query_Info_Carrier
3311
+	 */
3312
+	private function _extract_related_models_from_sub_params_array_values(
3313
+		$sub_query_params,
3314
+		EE_Model_Query_Info_Carrier $model_query_info_carrier,
3315
+		$query_param_type
3316
+	) {
3317
+		if (! empty($sub_query_params)) {
3318
+			if (! is_array($sub_query_params)) {
3319
+				throw new EE_Error(sprintf(
3320
+					__("Query parameter %s should be an array, but it isn't.", "event_espresso"),
3321
+					$sub_query_params
3322
+				));
3323
+			}
3324
+			foreach ($sub_query_params as $param) {
3325
+				// $param could be simply 'EVT_ID', or it could be 'Registrations.REG_ID', or even 'Registrations.Transactions.Payments.PAY_amount'
3326
+				$this->_extract_related_model_info_from_query_param(
3327
+					$param,
3328
+					$model_query_info_carrier,
3329
+					$query_param_type
3330
+				);
3331
+			}
3332
+		}
3333
+		return $model_query_info_carrier;
3334
+	}
3335
+
3336
+
3337
+	/**
3338
+	 * Extract all the query parts from  model query params
3339
+	 * and put into a EEM_Related_Model_Info_Carrier for easy extraction into a query. We create this object
3340
+	 * instead of directly constructing the SQL because often we need to extract info from the $query_params
3341
+	 * but use them in a different order. Eg, we need to know what models we are querying
3342
+	 * before we know what joins to perform. However, we need to know what data types correspond to which fields on
3343
+	 * other models before we can finalize the where clause SQL.
3344
+	 *
3345
+	 * @param array $query_params @see https://github.com/eventespresso/event-espresso-core/tree/master/docs/G--Model-System/model-query-params.md
3346
+	 * @throws EE_Error
3347
+	 * @return EE_Model_Query_Info_Carrier
3348
+	 * @throws ModelConfigurationException
3349
+	 */
3350
+	public function _create_model_query_info_carrier($query_params)
3351
+	{
3352
+		if (! is_array($query_params)) {
3353
+			EE_Error::doing_it_wrong(
3354
+				'EEM_Base::_create_model_query_info_carrier',
3355
+				sprintf(
3356
+					__(
3357
+						'$query_params should be an array, you passed a variable of type %s',
3358
+						'event_espresso'
3359
+					),
3360
+					gettype($query_params)
3361
+				),
3362
+				'4.6.0'
3363
+			);
3364
+			$query_params = array();
3365
+		}
3366
+		$query_params[0] = isset($query_params[0]) ? $query_params[0] : array();
3367
+		// first check if we should alter the query to account for caps or not
3368
+		// because the caps might require us to do extra joins
3369
+		if (isset($query_params['caps']) && $query_params['caps'] !== 'none') {
3370
+			$query_params[0] = array_replace_recursive(
3371
+				$query_params[0],
3372
+				$this->caps_where_conditions(
3373
+					$query_params['caps']
3374
+				)
3375
+			);
3376
+		}
3377
+
3378
+		// check if we should alter the query to remove data related to protected
3379
+		// custom post types
3380
+		if (isset($query_params['exclude_protected']) && $query_params['exclude_protected'] === true) {
3381
+			$where_param_key_for_password = $this->modelChainAndPassword();
3382
+			// only include if related to a cpt where no password has been set
3383
+			$query_params[0]['OR*nopassword'] = array(
3384
+				$where_param_key_for_password => '',
3385
+				$where_param_key_for_password . '*' => array('IS_NULL')
3386
+			);
3387
+		}
3388
+		$query_object = $this->_extract_related_models_from_query($query_params);
3389
+		// verify where_query_params has NO numeric indexes.... that's simply not how you use it!
3390
+		foreach ($query_params[0] as $key => $value) {
3391
+			if (is_int($key)) {
3392
+				throw new EE_Error(
3393
+					sprintf(
3394
+						__(
3395
+							"WHERE query params must NOT be numerically-indexed. You provided the array key '%s' for value '%s' while querying model %s. All the query params provided were '%s' Please read documentation on EEM_Base::get_all.",
3396
+							"event_espresso"
3397
+						),
3398
+						$key,
3399
+						var_export($value, true),
3400
+						var_export($query_params, true),
3401
+						get_class($this)
3402
+					)
3403
+				);
3404
+			}
3405
+		}
3406
+		if (array_key_exists('default_where_conditions', $query_params)
3407
+			&& ! empty($query_params['default_where_conditions'])
3408
+		) {
3409
+			$use_default_where_conditions = $query_params['default_where_conditions'];
3410
+		} else {
3411
+			$use_default_where_conditions = EEM_Base::default_where_conditions_all;
3412
+		}
3413
+		$query_params[0] = array_merge(
3414
+			$this->_get_default_where_conditions_for_models_in_query(
3415
+				$query_object,
3416
+				$use_default_where_conditions,
3417
+				$query_params[0]
3418
+			),
3419
+			$query_params[0]
3420
+		);
3421
+		$query_object->set_where_sql($this->_construct_where_clause($query_params[0]));
3422
+		// if this is a "on_join_limit" then we are limiting on on a specific table in a multi_table join.
3423
+		// So we need to setup a subquery and use that for the main join.
3424
+		// Note for now this only works on the primary table for the model.
3425
+		// So for instance, you could set the limit array like this:
3426
+		// array( 'on_join_limit' => array('Primary_Table_Alias', array(1,10) ) )
3427
+		if (array_key_exists('on_join_limit', $query_params) && ! empty($query_params['on_join_limit'])) {
3428
+			$query_object->set_main_model_join_sql(
3429
+				$this->_construct_limit_join_select(
3430
+					$query_params['on_join_limit'][0],
3431
+					$query_params['on_join_limit'][1]
3432
+				)
3433
+			);
3434
+		}
3435
+		// set limit
3436
+		if (array_key_exists('limit', $query_params)) {
3437
+			if (is_array($query_params['limit'])) {
3438
+				if (! isset($query_params['limit'][0], $query_params['limit'][1])) {
3439
+					$e = sprintf(
3440
+						__(
3441
+							"Invalid DB query. You passed '%s' for the LIMIT, but only the following are valid: an integer, string representing an integer, a string like 'int,int', or an array like array(int,int)",
3442
+							"event_espresso"
3443
+						),
3444
+						http_build_query($query_params['limit'])
3445
+					);
3446
+					throw new EE_Error($e . "|" . $e);
3447
+				}
3448
+				// they passed us an array for the limit. Assume it's like array(50,25), meaning offset by 50, and get 25
3449
+				$query_object->set_limit_sql(" LIMIT " . $query_params['limit'][0] . "," . $query_params['limit'][1]);
3450
+			} elseif (! empty($query_params['limit'])) {
3451
+				$query_object->set_limit_sql(" LIMIT " . $query_params['limit']);
3452
+			}
3453
+		}
3454
+		// set order by
3455
+		if (array_key_exists('order_by', $query_params)) {
3456
+			if (is_array($query_params['order_by'])) {
3457
+				// if they're using 'order_by' as an array, they can't use 'order' (because 'order_by' must
3458
+				// specify whether to ascend or descend on each field. Eg 'order_by'=>array('EVT_ID'=>'ASC'). So
3459
+				// including 'order' wouldn't make any sense if 'order_by' has already specified which way to order!
3460
+				if (array_key_exists('order', $query_params)) {
3461
+					throw new EE_Error(
3462
+						sprintf(
3463
+							__(
3464
+								"In querying %s, we are using query parameter 'order_by' as an array (keys:%s,values:%s), and so we can't use query parameter 'order' (value %s). You should just use the 'order_by' parameter ",
3465
+								"event_espresso"
3466
+							),
3467
+							get_class($this),
3468
+							implode(", ", array_keys($query_params['order_by'])),
3469
+							implode(", ", $query_params['order_by']),
3470
+							$query_params['order']
3471
+						)
3472
+					);
3473
+				}
3474
+				$this->_extract_related_models_from_sub_params_array_keys(
3475
+					$query_params['order_by'],
3476
+					$query_object,
3477
+					'order_by'
3478
+				);
3479
+				// assume it's an array of fields to order by
3480
+				$order_array = array();
3481
+				foreach ($query_params['order_by'] as $field_name_to_order_by => $order) {
3482
+					$order = $this->_extract_order($order);
3483
+					$order_array[] = $this->_deduce_column_name_from_query_param($field_name_to_order_by) . SP . $order;
3484
+				}
3485
+				$query_object->set_order_by_sql(" ORDER BY " . implode(",", $order_array));
3486
+			} elseif (! empty($query_params['order_by'])) {
3487
+				$this->_extract_related_model_info_from_query_param(
3488
+					$query_params['order_by'],
3489
+					$query_object,
3490
+					'order',
3491
+					$query_params['order_by']
3492
+				);
3493
+				$order = isset($query_params['order'])
3494
+					? $this->_extract_order($query_params['order'])
3495
+					: 'DESC';
3496
+				$query_object->set_order_by_sql(
3497
+					" ORDER BY " . $this->_deduce_column_name_from_query_param($query_params['order_by']) . SP . $order
3498
+				);
3499
+			}
3500
+		}
3501
+		// if 'order_by' wasn't set, maybe they are just using 'order' on its own?
3502
+		if (! array_key_exists('order_by', $query_params)
3503
+			&& array_key_exists('order', $query_params)
3504
+			&& ! empty($query_params['order'])
3505
+		) {
3506
+			$pk_field = $this->get_primary_key_field();
3507
+			$order = $this->_extract_order($query_params['order']);
3508
+			$query_object->set_order_by_sql(" ORDER BY " . $pk_field->get_qualified_column() . SP . $order);
3509
+		}
3510
+		// set group by
3511
+		if (array_key_exists('group_by', $query_params)) {
3512
+			if (is_array($query_params['group_by'])) {
3513
+				// it's an array, so assume we'll be grouping by a bunch of stuff
3514
+				$group_by_array = array();
3515
+				foreach ($query_params['group_by'] as $field_name_to_group_by) {
3516
+					$group_by_array[] = $this->_deduce_column_name_from_query_param($field_name_to_group_by);
3517
+				}
3518
+				$query_object->set_group_by_sql(" GROUP BY " . implode(", ", $group_by_array));
3519
+			} elseif (! empty($query_params['group_by'])) {
3520
+				$query_object->set_group_by_sql(
3521
+					" GROUP BY " . $this->_deduce_column_name_from_query_param($query_params['group_by'])
3522
+				);
3523
+			}
3524
+		}
3525
+		// set having
3526
+		if (array_key_exists('having', $query_params) && $query_params['having']) {
3527
+			$query_object->set_having_sql($this->_construct_having_clause($query_params['having']));
3528
+		}
3529
+		// now, just verify they didn't pass anything wack
3530
+		foreach ($query_params as $query_key => $query_value) {
3531
+			if (! in_array($query_key, $this->_allowed_query_params, true)) {
3532
+				throw new EE_Error(
3533
+					sprintf(
3534
+						__(
3535
+							"You passed %s as a query parameter to %s, which is illegal! The allowed query parameters are %s",
3536
+							'event_espresso'
3537
+						),
3538
+						$query_key,
3539
+						get_class($this),
3540
+						//                      print_r( $this->_allowed_query_params, TRUE )
3541
+						implode(',', $this->_allowed_query_params)
3542
+					)
3543
+				);
3544
+			}
3545
+		}
3546
+		$main_model_join_sql = $query_object->get_main_model_join_sql();
3547
+		if (empty($main_model_join_sql)) {
3548
+			$query_object->set_main_model_join_sql($this->_construct_internal_join());
3549
+		}
3550
+		return $query_object;
3551
+	}
3552
+
3553
+
3554
+
3555
+	/**
3556
+	 * Gets the where conditions that should be imposed on the query based on the
3557
+	 * context (eg reading frontend, backend, edit or delete).
3558
+	 *
3559
+	 * @param string $context one of EEM_Base::valid_cap_contexts()
3560
+	 * @return array @see https://github.com/eventespresso/event-espresso-core/tree/master/docs/G--Model-System/model-query-params.md#0-where-conditions
3561
+	 * @throws EE_Error
3562
+	 */
3563
+	public function caps_where_conditions($context = self::caps_read)
3564
+	{
3565
+		EEM_Base::verify_is_valid_cap_context($context);
3566
+		$cap_where_conditions = array();
3567
+		$cap_restrictions = $this->caps_missing($context);
3568
+		/**
3569
+		 * @var $cap_restrictions EE_Default_Where_Conditions[]
3570
+		 */
3571
+		foreach ($cap_restrictions as $cap => $restriction_if_no_cap) {
3572
+			$cap_where_conditions = array_replace_recursive(
3573
+				$cap_where_conditions,
3574
+				$restriction_if_no_cap->get_default_where_conditions()
3575
+			);
3576
+		}
3577
+		return apply_filters(
3578
+			'FHEE__EEM_Base__caps_where_conditions__return',
3579
+			$cap_where_conditions,
3580
+			$this,
3581
+			$context,
3582
+			$cap_restrictions
3583
+		);
3584
+	}
3585
+
3586
+
3587
+
3588
+	/**
3589
+	 * Verifies that $should_be_order_string is in $this->_allowed_order_values,
3590
+	 * otherwise throws an exception
3591
+	 *
3592
+	 * @param string $should_be_order_string
3593
+	 * @return string either ASC, asc, DESC or desc
3594
+	 * @throws EE_Error
3595
+	 */
3596
+	private function _extract_order($should_be_order_string)
3597
+	{
3598
+		if (in_array($should_be_order_string, $this->_allowed_order_values)) {
3599
+			return $should_be_order_string;
3600
+		}
3601
+		throw new EE_Error(
3602
+			sprintf(
3603
+				__(
3604
+					"While performing a query on '%s', tried to use '%s' as an order parameter. ",
3605
+					"event_espresso"
3606
+				),
3607
+				get_class($this),
3608
+				$should_be_order_string
3609
+			)
3610
+		);
3611
+	}
3612
+
3613
+
3614
+
3615
+	/**
3616
+	 * Looks at all the models which are included in this query, and asks each
3617
+	 * for their universal_where_params, and returns them in the same format as $query_params[0] (where),
3618
+	 * so they can be merged
3619
+	 *
3620
+	 * @param EE_Model_Query_Info_Carrier $query_info_carrier
3621
+	 * @param string                      $use_default_where_conditions can be 'none','other_models_only', or 'all'.
3622
+	 *                                                                  'none' means NO default where conditions will
3623
+	 *                                                                  be used AT ALL during this query.
3624
+	 *                                                                  'other_models_only' means default where
3625
+	 *                                                                  conditions from other models will be used, but
3626
+	 *                                                                  not for this primary model. 'all', the default,
3627
+	 *                                                                  means default where conditions will apply as
3628
+	 *                                                                  normal
3629
+	 * @param array                       $where_query_params           @see https://github.com/eventespresso/event-espresso-core/tree/master/docs/G--Model-System/model-query-params.md#0-where-conditions
3630
+	 * @throws EE_Error
3631
+	 * @return array @see https://github.com/eventespresso/event-espresso-core/tree/master/docs/G--Model-System/model-query-params.md#0-where-conditions
3632
+	 */
3633
+	private function _get_default_where_conditions_for_models_in_query(
3634
+		EE_Model_Query_Info_Carrier $query_info_carrier,
3635
+		$use_default_where_conditions = EEM_Base::default_where_conditions_all,
3636
+		$where_query_params = array()
3637
+	) {
3638
+		$allowed_used_default_where_conditions_values = EEM_Base::valid_default_where_conditions();
3639
+		if (! in_array($use_default_where_conditions, $allowed_used_default_where_conditions_values)) {
3640
+			throw new EE_Error(sprintf(
3641
+				__(
3642
+					"You passed an invalid value to the query parameter 'default_where_conditions' of '%s'. Allowed values are %s",
3643
+					"event_espresso"
3644
+				),
3645
+				$use_default_where_conditions,
3646
+				implode(", ", $allowed_used_default_where_conditions_values)
3647
+			));
3648
+		}
3649
+		$universal_query_params = array();
3650
+		if ($this->_should_use_default_where_conditions($use_default_where_conditions, true)) {
3651
+			$universal_query_params = $this->_get_default_where_conditions();
3652
+		} elseif ($this->_should_use_minimum_where_conditions($use_default_where_conditions, true)) {
3653
+			$universal_query_params = $this->_get_minimum_where_conditions();
3654
+		}
3655
+		foreach ($query_info_carrier->get_model_names_included() as $model_relation_path => $model_name) {
3656
+			$related_model = $this->get_related_model_obj($model_name);
3657
+			if ($this->_should_use_default_where_conditions($use_default_where_conditions, false)) {
3658
+				$related_model_universal_where_params = $related_model->_get_default_where_conditions($model_relation_path);
3659
+			} elseif ($this->_should_use_minimum_where_conditions($use_default_where_conditions, false)) {
3660
+				$related_model_universal_where_params = $related_model->_get_minimum_where_conditions($model_relation_path);
3661
+			} else {
3662
+				// we don't want to add full or even minimum default where conditions from this model, so just continue
3663
+				continue;
3664
+			}
3665
+			$overrides = $this->_override_defaults_or_make_null_friendly(
3666
+				$related_model_universal_where_params,
3667
+				$where_query_params,
3668
+				$related_model,
3669
+				$model_relation_path
3670
+			);
3671
+			$universal_query_params = EEH_Array::merge_arrays_and_overwrite_keys(
3672
+				$universal_query_params,
3673
+				$overrides
3674
+			);
3675
+		}
3676
+		return $universal_query_params;
3677
+	}
3678
+
3679
+
3680
+
3681
+	/**
3682
+	 * Determines whether or not we should use default where conditions for the model in question
3683
+	 * (this model, or other related models).
3684
+	 * Basically, we should use default where conditions on this model if they have requested to use them on all models,
3685
+	 * this model only, or to use minimum where conditions on all other models and normal where conditions on this one.
3686
+	 * We should use default where conditions on related models when they requested to use default where conditions
3687
+	 * on all models, or specifically just on other related models
3688
+	 * @param      $default_where_conditions_value
3689
+	 * @param bool $for_this_model false means this is for OTHER related models
3690
+	 * @return bool
3691
+	 */
3692
+	private function _should_use_default_where_conditions($default_where_conditions_value, $for_this_model = true)
3693
+	{
3694
+		return (
3695
+				   $for_this_model
3696
+				   && in_array(
3697
+					   $default_where_conditions_value,
3698
+					   array(
3699
+						   EEM_Base::default_where_conditions_all,
3700
+						   EEM_Base::default_where_conditions_this_only,
3701
+						   EEM_Base::default_where_conditions_minimum_others,
3702
+					   ),
3703
+					   true
3704
+				   )
3705
+			   )
3706
+			   || (
3707
+				   ! $for_this_model
3708
+				   && in_array(
3709
+					   $default_where_conditions_value,
3710
+					   array(
3711
+						   EEM_Base::default_where_conditions_all,
3712
+						   EEM_Base::default_where_conditions_others_only,
3713
+					   ),
3714
+					   true
3715
+				   )
3716
+			   );
3717
+	}
3718
+
3719
+	/**
3720
+	 * Determines whether or not we should use default minimum conditions for the model in question
3721
+	 * (this model, or other related models).
3722
+	 * Basically, we should use minimum where conditions on this model only if they requested all models to use minimum
3723
+	 * where conditions.
3724
+	 * We should use minimum where conditions on related models if they requested to use minimum where conditions
3725
+	 * on this model or others
3726
+	 * @param      $default_where_conditions_value
3727
+	 * @param bool $for_this_model false means this is for OTHER related models
3728
+	 * @return bool
3729
+	 */
3730
+	private function _should_use_minimum_where_conditions($default_where_conditions_value, $for_this_model = true)
3731
+	{
3732
+		return (
3733
+				   $for_this_model
3734
+				   && $default_where_conditions_value === EEM_Base::default_where_conditions_minimum_all
3735
+			   )
3736
+			   || (
3737
+				   ! $for_this_model
3738
+				   && in_array(
3739
+					   $default_where_conditions_value,
3740
+					   array(
3741
+						   EEM_Base::default_where_conditions_minimum_others,
3742
+						   EEM_Base::default_where_conditions_minimum_all,
3743
+					   ),
3744
+					   true
3745
+				   )
3746
+			   );
3747
+	}
3748
+
3749
+
3750
+	/**
3751
+	 * Checks if any of the defaults have been overridden. If there are any that AREN'T overridden,
3752
+	 * then we also add a special where condition which allows for that model's primary key
3753
+	 * to be null (which is important for JOINs. Eg, if you want to see all Events ordered by Venue's name,
3754
+	 * then Event's with NO Venue won't appear unless you allow VNU_ID to be NULL)
3755
+	 *
3756
+	 * @param array    $default_where_conditions
3757
+	 * @param array    $provided_where_conditions
3758
+	 * @param EEM_Base $model
3759
+	 * @param string   $model_relation_path like 'Transaction.Payment.'
3760
+	 * @return array @see https://github.com/eventespresso/event-espresso-core/tree/master/docs/G--Model-System/model-query-params.md#0-where-conditions
3761
+	 * @throws EE_Error
3762
+	 */
3763
+	private function _override_defaults_or_make_null_friendly(
3764
+		$default_where_conditions,
3765
+		$provided_where_conditions,
3766
+		$model,
3767
+		$model_relation_path
3768
+	) {
3769
+		$null_friendly_where_conditions = array();
3770
+		$none_overridden = true;
3771
+		$or_condition_key_for_defaults = 'OR*' . get_class($model);
3772
+		foreach ($default_where_conditions as $key => $val) {
3773
+			if (isset($provided_where_conditions[ $key ])) {
3774
+				$none_overridden = false;
3775
+			} else {
3776
+				$null_friendly_where_conditions[ $or_condition_key_for_defaults ]['AND'][ $key ] = $val;
3777
+			}
3778
+		}
3779
+		if ($none_overridden && $default_where_conditions) {
3780
+			if ($model->has_primary_key_field()) {
3781
+				$null_friendly_where_conditions[ $or_condition_key_for_defaults ][ $model_relation_path
3782
+																				. "."
3783
+																				. $model->primary_key_name() ] = array('IS NULL');
3784
+			}/*else{
3785 3785
                 //@todo NO PK, use other defaults
3786 3786
             }*/
3787
-        }
3788
-        return $null_friendly_where_conditions;
3789
-    }
3790
-
3791
-
3792
-
3793
-    /**
3794
-     * Uses the _default_where_conditions_strategy set during __construct() to get
3795
-     * default where conditions on all get_all, update, and delete queries done by this model.
3796
-     * Use the same syntax as client code. Eg on the Event model, use array('Event.EVT_post_type'=>'esp_event'),
3797
-     * NOT array('Event_CPT.post_type'=>'esp_event').
3798
-     *
3799
-     * @param string $model_relation_path eg, path from Event to Payment is "Registration.Transaction.Payment."
3800
-     * @return array @see https://github.com/eventespresso/event-espresso-core/tree/master/docs/G--Model-System/model-query-params.md#0-where-conditions
3801
-     */
3802
-    private function _get_default_where_conditions($model_relation_path = null)
3803
-    {
3804
-        if ($this->_ignore_where_strategy) {
3805
-            return array();
3806
-        }
3807
-        return $this->_default_where_conditions_strategy->get_default_where_conditions($model_relation_path);
3808
-    }
3809
-
3810
-
3811
-
3812
-    /**
3813
-     * Uses the _minimum_where_conditions_strategy set during __construct() to get
3814
-     * minimum where conditions on all get_all, update, and delete queries done by this model.
3815
-     * Use the same syntax as client code. Eg on the Event model, use array('Event.EVT_post_type'=>'esp_event'),
3816
-     * NOT array('Event_CPT.post_type'=>'esp_event').
3817
-     * Similar to _get_default_where_conditions
3818
-     *
3819
-     * @param string $model_relation_path eg, path from Event to Payment is "Registration.Transaction.Payment."
3820
-     * @return array @see https://github.com/eventespresso/event-espresso-core/tree/master/docs/G--Model-System/model-query-params.md#0-where-conditions
3821
-     */
3822
-    protected function _get_minimum_where_conditions($model_relation_path = null)
3823
-    {
3824
-        if ($this->_ignore_where_strategy) {
3825
-            return array();
3826
-        }
3827
-        return $this->_minimum_where_conditions_strategy->get_default_where_conditions($model_relation_path);
3828
-    }
3829
-
3830
-
3831
-
3832
-    /**
3833
-     * Creates the string of SQL for the select part of a select query, everything behind SELECT and before FROM.
3834
-     * Eg, "Event.post_id, Event.post_name,Event_Detail.EVT_ID..."
3835
-     *
3836
-     * @param EE_Model_Query_Info_Carrier $model_query_info
3837
-     * @return string
3838
-     * @throws EE_Error
3839
-     */
3840
-    private function _construct_default_select_sql(EE_Model_Query_Info_Carrier $model_query_info)
3841
-    {
3842
-        $selects = $this->_get_columns_to_select_for_this_model();
3843
-        foreach ($model_query_info->get_model_names_included() as $model_relation_chain =>
3844
-            $name_of_other_model_included) {
3845
-            $other_model_included = $this->get_related_model_obj($name_of_other_model_included);
3846
-            $other_model_selects = $other_model_included->_get_columns_to_select_for_this_model($model_relation_chain);
3847
-            foreach ($other_model_selects as $key => $value) {
3848
-                $selects[] = $value;
3849
-            }
3850
-        }
3851
-        return implode(", ", $selects);
3852
-    }
3853
-
3854
-
3855
-
3856
-    /**
3857
-     * Gets an array of columns to select for this model, which are necessary for it to create its objects.
3858
-     * So that's going to be the columns for all the fields on the model
3859
-     *
3860
-     * @param string $model_relation_chain like 'Question.Question_Group.Event'
3861
-     * @return array numerically indexed, values are columns to select and rename, eg "Event.ID AS 'Event.ID'"
3862
-     */
3863
-    public function _get_columns_to_select_for_this_model($model_relation_chain = '')
3864
-    {
3865
-        $fields = $this->field_settings();
3866
-        $selects = array();
3867
-        $table_alias_with_model_relation_chain_prefix = EE_Model_Parser::extract_table_alias_model_relation_chain_prefix(
3868
-            $model_relation_chain,
3869
-            $this->get_this_model_name()
3870
-        );
3871
-        foreach ($fields as $field_obj) {
3872
-            $selects[] = $table_alias_with_model_relation_chain_prefix
3873
-                         . $field_obj->get_table_alias()
3874
-                         . "."
3875
-                         . $field_obj->get_table_column()
3876
-                         . " AS '"
3877
-                         . $table_alias_with_model_relation_chain_prefix
3878
-                         . $field_obj->get_table_alias()
3879
-                         . "."
3880
-                         . $field_obj->get_table_column()
3881
-                         . "'";
3882
-        }
3883
-        // make sure we are also getting the PKs of each table
3884
-        $tables = $this->get_tables();
3885
-        if (count($tables) > 1) {
3886
-            foreach ($tables as $table_obj) {
3887
-                $qualified_pk_column = $table_alias_with_model_relation_chain_prefix
3888
-                                       . $table_obj->get_fully_qualified_pk_column();
3889
-                if (! in_array($qualified_pk_column, $selects)) {
3890
-                    $selects[] = "$qualified_pk_column AS '$qualified_pk_column'";
3891
-                }
3892
-            }
3893
-        }
3894
-        return $selects;
3895
-    }
3896
-
3897
-
3898
-
3899
-    /**
3900
-     * Given a $query_param like 'Registration.Transaction.TXN_ID', pops off 'Registration.',
3901
-     * gets the join statement for it; gets the data types for it; and passes the remaining 'Transaction.TXN_ID'
3902
-     * onto its related Transaction object to do the same. Returns an EE_Join_And_Data_Types object which contains the
3903
-     * SQL for joining, and the data types
3904
-     *
3905
-     * @param null|string                 $original_query_param
3906
-     * @param string                      $query_param          like Registration.Transaction.TXN_ID
3907
-     * @param EE_Model_Query_Info_Carrier $passed_in_query_info
3908
-     * @param    string                   $query_param_type     like Registration.Transaction.TXN_ID
3909
-     *                                                          or 'PAY_ID'. Otherwise, we don't expect there to be a
3910
-     *                                                          column name. We only want model names, eg 'Event.Venue'
3911
-     *                                                          or 'Registration's
3912
-     * @param string                      $original_query_param what it originally was (eg
3913
-     *                                                          Registration.Transaction.TXN_ID). If null, we assume it
3914
-     *                                                          matches $query_param
3915
-     * @throws EE_Error
3916
-     * @return void only modifies the EEM_Related_Model_Info_Carrier passed into it
3917
-     */
3918
-    private function _extract_related_model_info_from_query_param(
3919
-        $query_param,
3920
-        EE_Model_Query_Info_Carrier $passed_in_query_info,
3921
-        $query_param_type,
3922
-        $original_query_param = null
3923
-    ) {
3924
-        if ($original_query_param === null) {
3925
-            $original_query_param = $query_param;
3926
-        }
3927
-        $query_param = $this->_remove_stars_and_anything_after_from_condition_query_param_key($query_param);
3928
-        /** @var $allow_logic_query_params bool whether or not to allow logic_query_params like 'NOT','OR', or 'AND' */
3929
-        $allow_logic_query_params = in_array($query_param_type, array('where', 'having', 0, 'custom_selects'), true);
3930
-        $allow_fields = in_array(
3931
-            $query_param_type,
3932
-            array('where', 'having', 'order_by', 'group_by', 'order', 'custom_selects', 0),
3933
-            true
3934
-        );
3935
-        // check to see if we have a field on this model
3936
-        $this_model_fields = $this->field_settings(true);
3937
-        if (array_key_exists($query_param, $this_model_fields)) {
3938
-            if ($allow_fields) {
3939
-                return;
3940
-            }
3941
-            throw new EE_Error(
3942
-                sprintf(
3943
-                    __(
3944
-                        "Using a field name (%s) on model %s is not allowed on this query param type '%s'. Original query param was %s",
3945
-                        "event_espresso"
3946
-                    ),
3947
-                    $query_param,
3948
-                    get_class($this),
3949
-                    $query_param_type,
3950
-                    $original_query_param
3951
-                )
3952
-            );
3953
-        }
3954
-        // check if this is a special logic query param
3955
-        if (in_array($query_param, $this->_logic_query_param_keys, true)) {
3956
-            if ($allow_logic_query_params) {
3957
-                return;
3958
-            }
3959
-            throw new EE_Error(
3960
-                sprintf(
3961
-                    __(
3962
-                        'Logic query params ("%1$s") are being used incorrectly with the following query param ("%2$s") on model %3$s. %4$sAdditional Info:%4$s%5$s',
3963
-                        'event_espresso'
3964
-                    ),
3965
-                    implode('", "', $this->_logic_query_param_keys),
3966
-                    $query_param,
3967
-                    get_class($this),
3968
-                    '<br />',
3969
-                    "\t"
3970
-                    . ' $passed_in_query_info = <pre>'
3971
-                    . print_r($passed_in_query_info, true)
3972
-                    . '</pre>'
3973
-                    . "\n\t"
3974
-                    . ' $query_param_type = '
3975
-                    . $query_param_type
3976
-                    . "\n\t"
3977
-                    . ' $original_query_param = '
3978
-                    . $original_query_param
3979
-                )
3980
-            );
3981
-        }
3982
-        // check if it's a custom selection
3983
-        if ($this->_custom_selections instanceof CustomSelects
3984
-            && in_array($query_param, $this->_custom_selections->columnAliases(), true)
3985
-        ) {
3986
-            return;
3987
-        }
3988
-        // check if has a model name at the beginning
3989
-        // and
3990
-        // check if it's a field on a related model
3991
-        if ($this->extractJoinModelFromQueryParams(
3992
-            $passed_in_query_info,
3993
-            $query_param,
3994
-            $original_query_param,
3995
-            $query_param_type
3996
-        )) {
3997
-            return;
3998
-        }
3999
-
4000
-        // ok so $query_param didn't start with a model name
4001
-        // and we previously confirmed it wasn't a logic query param or field on the current model
4002
-        // it's wack, that's what it is
4003
-        throw new EE_Error(
4004
-            sprintf(
4005
-                esc_html__(
4006
-                    "There is no model named '%s' related to %s. Query param type is %s and original query param is %s",
4007
-                    "event_espresso"
4008
-                ),
4009
-                $query_param,
4010
-                get_class($this),
4011
-                $query_param_type,
4012
-                $original_query_param
4013
-            )
4014
-        );
4015
-    }
4016
-
4017
-
4018
-    /**
4019
-     * Extracts any possible join model information from the provided possible_join_string.
4020
-     * This method will read the provided $possible_join_string value and determine if there are any possible model join
4021
-     * parts that should be added to the query.
4022
-     *
4023
-     * @param EE_Model_Query_Info_Carrier $query_info_carrier
4024
-     * @param string                      $possible_join_string  Such as Registration.REG_ID, or Registration
4025
-     * @param null|string                 $original_query_param
4026
-     * @param string                      $query_parameter_type  The type for the source of the $possible_join_string
4027
-     *                                                           ('where', 'order_by', 'group_by', 'custom_selects' etc.)
4028
-     * @return bool  returns true if a join was added and false if not.
4029
-     * @throws EE_Error
4030
-     */
4031
-    private function extractJoinModelFromQueryParams(
4032
-        EE_Model_Query_Info_Carrier $query_info_carrier,
4033
-        $possible_join_string,
4034
-        $original_query_param,
4035
-        $query_parameter_type
4036
-    ) {
4037
-        foreach ($this->_model_relations as $valid_related_model_name => $relation_obj) {
4038
-            if (strpos($possible_join_string, $valid_related_model_name . ".") === 0) {
4039
-                $this->_add_join_to_model($valid_related_model_name, $query_info_carrier, $original_query_param);
4040
-                $possible_join_string = substr($possible_join_string, strlen($valid_related_model_name . "."));
4041
-                if ($possible_join_string === '') {
4042
-                    // nothing left to $query_param
4043
-                    // we should actually end in a field name, not a model like this!
4044
-                    throw new EE_Error(
4045
-                        sprintf(
4046
-                            esc_html__(
4047
-                                "Query param '%s' (of type %s on model %s) shouldn't end on a period (.) ",
4048
-                                "event_espresso"
4049
-                            ),
4050
-                            $possible_join_string,
4051
-                            $query_parameter_type,
4052
-                            get_class($this),
4053
-                            $valid_related_model_name
4054
-                        )
4055
-                    );
4056
-                }
4057
-                $related_model_obj = $this->get_related_model_obj($valid_related_model_name);
4058
-                $related_model_obj->_extract_related_model_info_from_query_param(
4059
-                    $possible_join_string,
4060
-                    $query_info_carrier,
4061
-                    $query_parameter_type,
4062
-                    $original_query_param
4063
-                );
4064
-                return true;
4065
-            }
4066
-            if ($possible_join_string === $valid_related_model_name) {
4067
-                $this->_add_join_to_model(
4068
-                    $valid_related_model_name,
4069
-                    $query_info_carrier,
4070
-                    $original_query_param
4071
-                );
4072
-                return true;
4073
-            }
4074
-        }
4075
-        return false;
4076
-    }
4077
-
4078
-
4079
-    /**
4080
-     * Extracts related models from Custom Selects and sets up any joins for those related models.
4081
-     * @param EE_Model_Query_Info_Carrier $query_info_carrier
4082
-     * @throws EE_Error
4083
-     */
4084
-    private function extractRelatedModelsFromCustomSelects(EE_Model_Query_Info_Carrier $query_info_carrier)
4085
-    {
4086
-        if ($this->_custom_selections instanceof CustomSelects
4087
-            && ($this->_custom_selections->type() === CustomSelects::TYPE_STRUCTURED
4088
-                || $this->_custom_selections->type() == CustomSelects::TYPE_COMPLEX
4089
-            )
4090
-        ) {
4091
-            $original_selects = $this->_custom_selections->originalSelects();
4092
-            foreach ($original_selects as $alias => $select_configuration) {
4093
-                $this->extractJoinModelFromQueryParams(
4094
-                    $query_info_carrier,
4095
-                    $select_configuration[0],
4096
-                    $select_configuration[0],
4097
-                    'custom_selects'
4098
-                );
4099
-            }
4100
-        }
4101
-    }
4102
-
4103
-
4104
-
4105
-    /**
4106
-     * Privately used by _extract_related_model_info_from_query_param to add a join to $model_name
4107
-     * and store it on $passed_in_query_info
4108
-     *
4109
-     * @param string                      $model_name
4110
-     * @param EE_Model_Query_Info_Carrier $passed_in_query_info
4111
-     * @param string                      $original_query_param used to extract the relation chain between the queried
4112
-     *                                                          model and $model_name. Eg, if we are querying Event,
4113
-     *                                                          and are adding a join to 'Payment' with the original
4114
-     *                                                          query param key
4115
-     *                                                          'Registration.Transaction.Payment.PAY_amount', we want
4116
-     *                                                          to extract 'Registration.Transaction.Payment', in case
4117
-     *                                                          Payment wants to add default query params so that it
4118
-     *                                                          will know what models to prepend onto its default query
4119
-     *                                                          params or in case it wants to rename tables (in case
4120
-     *                                                          there are multiple joins to the same table)
4121
-     * @return void
4122
-     * @throws EE_Error
4123
-     */
4124
-    private function _add_join_to_model(
4125
-        $model_name,
4126
-        EE_Model_Query_Info_Carrier $passed_in_query_info,
4127
-        $original_query_param
4128
-    ) {
4129
-        $relation_obj = $this->related_settings_for($model_name);
4130
-        $model_relation_chain = EE_Model_Parser::extract_model_relation_chain($model_name, $original_query_param);
4131
-        // check if the relation is HABTM, because then we're essentially doing two joins
4132
-        // If so, join first to the JOIN table, and add its data types, and then continue as normal
4133
-        if ($relation_obj instanceof EE_HABTM_Relation) {
4134
-            $join_model_obj = $relation_obj->get_join_model();
4135
-            // replace the model specified with the join model for this relation chain, whi
4136
-            $relation_chain_to_join_model = EE_Model_Parser::replace_model_name_with_join_model_name_in_model_relation_chain(
4137
-                $model_name,
4138
-                $join_model_obj->get_this_model_name(),
4139
-                $model_relation_chain
4140
-            );
4141
-            $passed_in_query_info->merge(
4142
-                new EE_Model_Query_Info_Carrier(
4143
-                    array($relation_chain_to_join_model => $join_model_obj->get_this_model_name()),
4144
-                    $relation_obj->get_join_to_intermediate_model_statement($relation_chain_to_join_model)
4145
-                )
4146
-            );
4147
-        }
4148
-        // now just join to the other table pointed to by the relation object, and add its data types
4149
-        $passed_in_query_info->merge(
4150
-            new EE_Model_Query_Info_Carrier(
4151
-                array($model_relation_chain => $model_name),
4152
-                $relation_obj->get_join_statement($model_relation_chain)
4153
-            )
4154
-        );
4155
-    }
4156
-
4157
-
4158
-
4159
-    /**
4160
-     * Constructs SQL for where clause, like "WHERE Event.ID = 23 AND Transaction.amount > 100" etc.
4161
-     *
4162
-     * @param array $where_params @see https://github.com/eventespresso/event-espresso-core/tree/master/docs/G--Model-System/model-query-params.md#0-where-conditions
4163
-     * @return string of SQL
4164
-     * @throws EE_Error
4165
-     */
4166
-    private function _construct_where_clause($where_params)
4167
-    {
4168
-        $SQL = $this->_construct_condition_clause_recursive($where_params, ' AND ');
4169
-        if ($SQL) {
4170
-            return " WHERE " . $SQL;
4171
-        }
4172
-        return '';
4173
-    }
4174
-
4175
-
4176
-
4177
-    /**
4178
-     * Just like the _construct_where_clause, except prepends 'HAVING' instead of 'WHERE',
4179
-     * and should be passed HAVING parameters, not WHERE parameters
4180
-     *
4181
-     * @param array $having_params
4182
-     * @return string
4183
-     * @throws EE_Error
4184
-     */
4185
-    private function _construct_having_clause($having_params)
4186
-    {
4187
-        $SQL = $this->_construct_condition_clause_recursive($having_params, ' AND ');
4188
-        if ($SQL) {
4189
-            return " HAVING " . $SQL;
4190
-        }
4191
-        return '';
4192
-    }
4193
-
4194
-
4195
-    /**
4196
-     * Used for creating nested WHERE conditions. Eg "WHERE ! (Event.ID = 3 OR ( Event_Meta.meta_key = 'bob' AND
4197
-     * Event_Meta.meta_value = 'foo'))"
4198
-     *
4199
-     * @param array  $where_params @see https://github.com/eventespresso/event-espresso-core/tree/master/docs/G--Model-System/model-query-params.md#0-where-conditions
4200
-     * @param string $glue         joins each subclause together. Should really only be " AND " or " OR "...
4201
-     * @throws EE_Error
4202
-     * @return string of SQL
4203
-     */
4204
-    private function _construct_condition_clause_recursive($where_params, $glue = ' AND')
4205
-    {
4206
-        $where_clauses = array();
4207
-        foreach ($where_params as $query_param => $op_and_value_or_sub_condition) {
4208
-            $query_param = $this->_remove_stars_and_anything_after_from_condition_query_param_key($query_param);// str_replace("*",'',$query_param);
4209
-            if (in_array($query_param, $this->_logic_query_param_keys)) {
4210
-                switch ($query_param) {
4211
-                    case 'not':
4212
-                    case 'NOT':
4213
-                        $where_clauses[] = "! ("
4214
-                                           . $this->_construct_condition_clause_recursive(
4215
-                                               $op_and_value_or_sub_condition,
4216
-                                               $glue
4217
-                                           )
4218
-                                           . ")";
4219
-                        break;
4220
-                    case 'and':
4221
-                    case 'AND':
4222
-                        $where_clauses[] = " ("
4223
-                                           . $this->_construct_condition_clause_recursive(
4224
-                                               $op_and_value_or_sub_condition,
4225
-                                               ' AND '
4226
-                                           )
4227
-                                           . ")";
4228
-                        break;
4229
-                    case 'or':
4230
-                    case 'OR':
4231
-                        $where_clauses[] = " ("
4232
-                                           . $this->_construct_condition_clause_recursive(
4233
-                                               $op_and_value_or_sub_condition,
4234
-                                               ' OR '
4235
-                                           )
4236
-                                           . ")";
4237
-                        break;
4238
-                }
4239
-            } else {
4240
-                $field_obj = $this->_deduce_field_from_query_param($query_param);
4241
-                // if it's not a normal field, maybe it's a custom selection?
4242
-                if (! $field_obj) {
4243
-                    if ($this->_custom_selections instanceof CustomSelects) {
4244
-                        $field_obj = $this->_custom_selections->getDataTypeForAlias($query_param);
4245
-                    } else {
4246
-                        throw new EE_Error(sprintf(__(
4247
-                            "%s is neither a valid model field name, nor a custom selection",
4248
-                            "event_espresso"
4249
-                        ), $query_param));
4250
-                    }
4251
-                }
4252
-                $op_and_value_sql = $this->_construct_op_and_value($op_and_value_or_sub_condition, $field_obj);
4253
-                $where_clauses[] = $this->_deduce_column_name_from_query_param($query_param) . SP . $op_and_value_sql;
4254
-            }
4255
-        }
4256
-        return $where_clauses ? implode($glue, $where_clauses) : '';
4257
-    }
4258
-
4259
-
4260
-
4261
-    /**
4262
-     * Takes the input parameter and extract the table name (alias) and column name
4263
-     *
4264
-     * @param string $query_param like Registration.Transaction.TXN_ID, Event.Datetime.start_time, or REG_ID
4265
-     * @throws EE_Error
4266
-     * @return string table alias and column name for SQL, eg "Transaction.TXN_ID"
4267
-     */
4268
-    private function _deduce_column_name_from_query_param($query_param)
4269
-    {
4270
-        $field = $this->_deduce_field_from_query_param($query_param);
4271
-        if ($field) {
4272
-            $table_alias_prefix = EE_Model_Parser::extract_table_alias_model_relation_chain_from_query_param(
4273
-                $field->get_model_name(),
4274
-                $query_param
4275
-            );
4276
-            return $table_alias_prefix . $field->get_qualified_column();
4277
-        }
4278
-        if ($this->_custom_selections instanceof CustomSelects
4279
-            && in_array($query_param, $this->_custom_selections->columnAliases(), true)
4280
-        ) {
4281
-            // maybe it's custom selection item?
4282
-            // if so, just use it as the "column name"
4283
-            return $query_param;
4284
-        }
4285
-        $custom_select_aliases = $this->_custom_selections instanceof CustomSelects
4286
-            ? implode(',', $this->_custom_selections->columnAliases())
4287
-            : '';
4288
-        throw new EE_Error(
4289
-            sprintf(
4290
-                __(
4291
-                    "%s is not a valid field on this model, nor a custom selection (%s)",
4292
-                    "event_espresso"
4293
-                ),
4294
-                $query_param,
4295
-                $custom_select_aliases
4296
-            )
4297
-        );
4298
-    }
4299
-
4300
-
4301
-
4302
-    /**
4303
-     * Removes the * and anything after it from the condition query param key. It is useful to add the * to condition
4304
-     * query param keys (eg, 'OR*', 'EVT_ID') in order for the array keys to still be unique, so that they don't get
4305
-     * overwritten Takes a string like 'Event.EVT_ID*', 'TXN_total**', 'OR*1st', and 'DTT_reg_start*foobar' to
4306
-     * 'Event.EVT_ID', 'TXN_total', 'OR', and 'DTT_reg_start', respectively.
4307
-     *
4308
-     * @param string $condition_query_param_key
4309
-     * @return string
4310
-     */
4311
-    private function _remove_stars_and_anything_after_from_condition_query_param_key($condition_query_param_key)
4312
-    {
4313
-        $pos_of_star = strpos($condition_query_param_key, '*');
4314
-        if ($pos_of_star === false) {
4315
-            return $condition_query_param_key;
4316
-        }
4317
-        $condition_query_param_sans_star = substr($condition_query_param_key, 0, $pos_of_star);
4318
-        return $condition_query_param_sans_star;
4319
-    }
4320
-
4321
-
4322
-
4323
-    /**
4324
-     * creates the SQL for the operator and the value in a WHERE clause, eg "< 23" or "LIKE '%monkey%'"
4325
-     *
4326
-     * @param                            mixed      array | string    $op_and_value
4327
-     * @param EE_Model_Field_Base|string $field_obj . If string, should be one of EEM_Base::_valid_wpdb_data_types
4328
-     * @throws EE_Error
4329
-     * @return string
4330
-     */
4331
-    private function _construct_op_and_value($op_and_value, $field_obj)
4332
-    {
4333
-        if (is_array($op_and_value)) {
4334
-            $operator = isset($op_and_value[0]) ? $this->_prepare_operator_for_sql($op_and_value[0]) : null;
4335
-            if (! $operator) {
4336
-                $php_array_like_string = array();
4337
-                foreach ($op_and_value as $key => $value) {
4338
-                    $php_array_like_string[] = "$key=>$value";
4339
-                }
4340
-                throw new EE_Error(
4341
-                    sprintf(
4342
-                        __(
4343
-                            "You setup a query parameter like you were going to specify an operator, but didn't. You provided '(%s)', but the operator should be at array key index 0 (eg array('>',32))",
4344
-                            "event_espresso"
4345
-                        ),
4346
-                        implode(",", $php_array_like_string)
4347
-                    )
4348
-                );
4349
-            }
4350
-            $value = isset($op_and_value[1]) ? $op_and_value[1] : null;
4351
-        } else {
4352
-            $operator = '=';
4353
-            $value = $op_and_value;
4354
-        }
4355
-        // check to see if the value is actually another field
4356
-        if (is_array($op_and_value) && isset($op_and_value[2]) && $op_and_value[2] == true) {
4357
-            return $operator . SP . $this->_deduce_column_name_from_query_param($value);
4358
-        }
4359
-        if (in_array($operator, $this->valid_in_style_operators()) && is_array($value)) {
4360
-            // in this case, the value should be an array, or at least a comma-separated list
4361
-            // it will need to handle a little differently
4362
-            $cleaned_value = $this->_construct_in_value($value, $field_obj);
4363
-            // note: $cleaned_value has already been run through $wpdb->prepare()
4364
-            return $operator . SP . $cleaned_value;
4365
-        }
4366
-        if (in_array($operator, $this->valid_between_style_operators()) && is_array($value)) {
4367
-            // the value should be an array with count of two.
4368
-            if (count($value) !== 2) {
4369
-                throw new EE_Error(
4370
-                    sprintf(
4371
-                        __(
4372
-                            "The '%s' operator must be used with an array of values and there must be exactly TWO values in that array.",
4373
-                            'event_espresso'
4374
-                        ),
4375
-                        "BETWEEN"
4376
-                    )
4377
-                );
4378
-            }
4379
-            $cleaned_value = $this->_construct_between_value($value, $field_obj);
4380
-            return $operator . SP . $cleaned_value;
4381
-        }
4382
-        if (in_array($operator, $this->valid_null_style_operators())) {
4383
-            if ($value !== null) {
4384
-                throw new EE_Error(
4385
-                    sprintf(
4386
-                        __(
4387
-                            "You attempted to give a value  (%s) while using a NULL-style operator (%s). That isn't valid",
4388
-                            "event_espresso"
4389
-                        ),
4390
-                        $value,
4391
-                        $operator
4392
-                    )
4393
-                );
4394
-            }
4395
-            return $operator;
4396
-        }
4397
-        if (in_array($operator, $this->valid_like_style_operators()) && ! is_array($value)) {
4398
-            // if the operator is 'LIKE', we want to allow percent signs (%) and not
4399
-            // remove other junk. So just treat it as a string.
4400
-            return $operator . SP . $this->_wpdb_prepare_using_field($value, '%s');
4401
-        }
4402
-        if (! in_array($operator, $this->valid_in_style_operators()) && ! is_array($value)) {
4403
-            return $operator . SP . $this->_wpdb_prepare_using_field($value, $field_obj);
4404
-        }
4405
-        if (in_array($operator, $this->valid_in_style_operators()) && ! is_array($value)) {
4406
-            throw new EE_Error(
4407
-                sprintf(
4408
-                    __(
4409
-                        "Operator '%s' must be used with an array of values, eg 'Registration.REG_ID' => array('%s',array(1,2,3))",
4410
-                        'event_espresso'
4411
-                    ),
4412
-                    $operator,
4413
-                    $operator
4414
-                )
4415
-            );
4416
-        }
4417
-        if (! in_array($operator, $this->valid_in_style_operators()) && is_array($value)) {
4418
-            throw new EE_Error(
4419
-                sprintf(
4420
-                    __(
4421
-                        "Operator '%s' must be used with a single value, not an array. Eg 'Registration.REG_ID => array('%s',23))",
4422
-                        'event_espresso'
4423
-                    ),
4424
-                    $operator,
4425
-                    $operator
4426
-                )
4427
-            );
4428
-        }
4429
-        throw new EE_Error(
4430
-            sprintf(
4431
-                __(
4432
-                    "It appears you've provided some totally invalid query parameters. Operator and value were:'%s', which isn't right at all",
4433
-                    "event_espresso"
4434
-                ),
4435
-                http_build_query($op_and_value)
4436
-            )
4437
-        );
4438
-    }
4439
-
4440
-
4441
-
4442
-    /**
4443
-     * Creates the operands to be used in a BETWEEN query, eg "'2014-12-31 20:23:33' AND '2015-01-23 12:32:54'"
4444
-     *
4445
-     * @param array                      $values
4446
-     * @param EE_Model_Field_Base|string $field_obj if string, it should be the datatype to be used when querying, eg
4447
-     *                                              '%s'
4448
-     * @return string
4449
-     * @throws EE_Error
4450
-     */
4451
-    public function _construct_between_value($values, $field_obj)
4452
-    {
4453
-        $cleaned_values = array();
4454
-        foreach ($values as $value) {
4455
-            $cleaned_values[] = $this->_wpdb_prepare_using_field($value, $field_obj);
4456
-        }
4457
-        return $cleaned_values[0] . " AND " . $cleaned_values[1];
4458
-    }
4459
-
4460
-
4461
-
4462
-    /**
4463
-     * Takes an array or a comma-separated list of $values and cleans them
4464
-     * according to $data_type using $wpdb->prepare, and then makes the list a
4465
-     * string surrounded by ( and ). Eg, _construct_in_value(array(1,2,3),'%d') would
4466
-     * return '(1,2,3)'; _construct_in_value("1,2,hack",'%d') would return '(1,2,1)' (assuming
4467
-     * I'm right that a string, when interpreted as a digit, becomes a 1. It might become a 0)
4468
-     *
4469
-     * @param mixed                      $values    array or comma-separated string
4470
-     * @param EE_Model_Field_Base|string $field_obj if string, it should be a wpdb data type like '%s', or '%d'
4471
-     * @return string of SQL to follow an 'IN' or 'NOT IN' operator
4472
-     * @throws EE_Error
4473
-     */
4474
-    public function _construct_in_value($values, $field_obj)
4475
-    {
4476
-        // check if the value is a CSV list
4477
-        if (is_string($values)) {
4478
-            // in which case, turn it into an array
4479
-            $values = explode(",", $values);
4480
-        }
4481
-        $cleaned_values = array();
4482
-        foreach ($values as $value) {
4483
-            $cleaned_values[] = $this->_wpdb_prepare_using_field($value, $field_obj);
4484
-        }
4485
-        // we would just LOVE to leave $cleaned_values as an empty array, and return the value as "()",
4486
-        // but unfortunately that's invalid SQL. So instead we return a string which we KNOW will evaluate to be the empty set
4487
-        // which is effectively equivalent to returning "()". We don't return "(0)" because that only works for auto-incrementing columns
4488
-        if (empty($cleaned_values)) {
4489
-            $all_fields = $this->field_settings();
4490
-            $a_field = array_shift($all_fields);
4491
-            $main_table = $this->_get_main_table();
4492
-            $cleaned_values[] = "SELECT "
4493
-                                . $a_field->get_table_column()
4494
-                                . " FROM "
4495
-                                . $main_table->get_table_name()
4496
-                                . " WHERE FALSE";
4497
-        }
4498
-        return "(" . implode(",", $cleaned_values) . ")";
4499
-    }
4500
-
4501
-
4502
-
4503
-    /**
4504
-     * @param mixed                      $value
4505
-     * @param EE_Model_Field_Base|string $field_obj if string it should be a wpdb data type like '%d'
4506
-     * @throws EE_Error
4507
-     * @return false|null|string
4508
-     */
4509
-    private function _wpdb_prepare_using_field($value, $field_obj)
4510
-    {
4511
-        /** @type WPDB $wpdb */
4512
-        global $wpdb;
4513
-        if ($field_obj instanceof EE_Model_Field_Base) {
4514
-            return $wpdb->prepare(
4515
-                $field_obj->get_wpdb_data_type(),
4516
-                $this->_prepare_value_for_use_in_db($value, $field_obj)
4517
-            );
4518
-        } //$field_obj should really just be a data type
4519
-        if (! in_array($field_obj, $this->_valid_wpdb_data_types)) {
4520
-            throw new EE_Error(
4521
-                sprintf(
4522
-                    __("%s is not a valid wpdb datatype. Valid ones are %s", "event_espresso"),
4523
-                    $field_obj,
4524
-                    implode(",", $this->_valid_wpdb_data_types)
4525
-                )
4526
-            );
4527
-        }
4528
-        return $wpdb->prepare($field_obj, $value);
4529
-    }
4530
-
4531
-
4532
-
4533
-    /**
4534
-     * Takes the input parameter and finds the model field that it indicates.
4535
-     *
4536
-     * @param string $query_param_name like Registration.Transaction.TXN_ID, Event.Datetime.start_time, or REG_ID
4537
-     * @throws EE_Error
4538
-     * @return EE_Model_Field_Base
4539
-     */
4540
-    protected function _deduce_field_from_query_param($query_param_name)
4541
-    {
4542
-        // ok, now proceed with deducing which part is the model's name, and which is the field's name
4543
-        // which will help us find the database table and column
4544
-        $query_param_parts = explode(".", $query_param_name);
4545
-        if (empty($query_param_parts)) {
4546
-            throw new EE_Error(sprintf(__(
4547
-                "_extract_column_name is empty when trying to extract column and table name from %s",
4548
-                'event_espresso'
4549
-            ), $query_param_name));
4550
-        }
4551
-        $number_of_parts = count($query_param_parts);
4552
-        $last_query_param_part = $query_param_parts[ count($query_param_parts) - 1 ];
4553
-        if ($number_of_parts === 1) {
4554
-            $field_name = $last_query_param_part;
4555
-            $model_obj = $this;
4556
-        } else {// $number_of_parts >= 2
4557
-            // the last part is the column name, and there are only 2parts. therefore...
4558
-            $field_name = $last_query_param_part;
4559
-            $model_obj = $this->get_related_model_obj($query_param_parts[ $number_of_parts - 2 ]);
4560
-        }
4561
-        try {
4562
-            return $model_obj->field_settings_for($field_name);
4563
-        } catch (EE_Error $e) {
4564
-            return null;
4565
-        }
4566
-    }
4567
-
4568
-
4569
-
4570
-    /**
4571
-     * Given a field's name (ie, a key in $this->field_settings()), uses the EE_Model_Field object to get the table's
4572
-     * alias and column which corresponds to it
4573
-     *
4574
-     * @param string $field_name
4575
-     * @throws EE_Error
4576
-     * @return string
4577
-     */
4578
-    public function _get_qualified_column_for_field($field_name)
4579
-    {
4580
-        $all_fields = $this->field_settings();
4581
-        $field = isset($all_fields[ $field_name ]) ? $all_fields[ $field_name ] : false;
4582
-        if ($field) {
4583
-            return $field->get_qualified_column();
4584
-        }
4585
-        throw new EE_Error(
4586
-            sprintf(
4587
-                __(
4588
-                    "There is no field titled %s on model %s. Either the query trying to use it is bad, or you need to add it to the list of fields on the model.",
4589
-                    'event_espresso'
4590
-                ),
4591
-                $field_name,
4592
-                get_class($this)
4593
-            )
4594
-        );
4595
-    }
4596
-
4597
-
4598
-
4599
-    /**
4600
-     * similar to \EEM_Base::_get_qualified_column_for_field() but returns an array with data for ALL fields.
4601
-     * Example usage:
4602
-     * EEM_Ticket::instance()->get_all_wpdb_results(
4603
-     *      array(),
4604
-     *      ARRAY_A,
4605
-     *      EEM_Ticket::instance()->get_qualified_columns_for_all_fields()
4606
-     *  );
4607
-     * is equivalent to
4608
-     *  EEM_Ticket::instance()->get_all_wpdb_results( array(), ARRAY_A, '*' );
4609
-     * and
4610
-     *  EEM_Event::instance()->get_all_wpdb_results(
4611
-     *      array(
4612
-     *          array(
4613
-     *              'Datetime.Ticket.TKT_ID' => array( '<', 100 ),
4614
-     *          ),
4615
-     *          ARRAY_A,
4616
-     *          implode(
4617
-     *              ', ',
4618
-     *              array_merge(
4619
-     *                  EEM_Event::instance()->get_qualified_columns_for_all_fields( '', false ),
4620
-     *                  EEM_Ticket::instance()->get_qualified_columns_for_all_fields( 'Datetime', false )
4621
-     *              )
4622
-     *          )
4623
-     *      )
4624
-     *  );
4625
-     * selects rows from the database, selecting all the event and ticket columns, where the ticket ID is below 100
4626
-     *
4627
-     * @param string $model_relation_chain        the chain of models used to join between the model you want to query
4628
-     *                                            and the one whose fields you are selecting for example: when querying
4629
-     *                                            tickets model and selecting fields from the tickets model you would
4630
-     *                                            leave this parameter empty, because no models are needed to join
4631
-     *                                            between the queried model and the selected one. Likewise when
4632
-     *                                            querying the datetime model and selecting fields from the tickets
4633
-     *                                            model, it would also be left empty, because there is a direct
4634
-     *                                            relation from datetimes to tickets, so no model is needed to join
4635
-     *                                            them together. However, when querying from the event model and
4636
-     *                                            selecting fields from the ticket model, you should provide the string
4637
-     *                                            'Datetime', indicating that the event model must first join to the
4638
-     *                                            datetime model in order to find its relation to ticket model.
4639
-     *                                            Also, when querying from the venue model and selecting fields from
4640
-     *                                            the ticket model, you should provide the string 'Event.Datetime',
4641
-     *                                            indicating you need to join the venue model to the event model,
4642
-     *                                            to the datetime model, in order to find its relation to the ticket model.
4643
-     *                                            This string is used to deduce the prefix that gets added onto the
4644
-     *                                            models' tables qualified columns
4645
-     * @param bool   $return_string               if true, will return a string with qualified column names separated
4646
-     *                                            by ', ' if false, will simply return a numerically indexed array of
4647
-     *                                            qualified column names
4648
-     * @return array|string
4649
-     */
4650
-    public function get_qualified_columns_for_all_fields($model_relation_chain = '', $return_string = true)
4651
-    {
4652
-        $table_prefix = str_replace('.', '__', $model_relation_chain) . (empty($model_relation_chain) ? '' : '__');
4653
-        $qualified_columns = array();
4654
-        foreach ($this->field_settings() as $field_name => $field) {
4655
-            $qualified_columns[] = $table_prefix . $field->get_qualified_column();
4656
-        }
4657
-        return $return_string ? implode(', ', $qualified_columns) : $qualified_columns;
4658
-    }
4659
-
4660
-
4661
-
4662
-    /**
4663
-     * constructs the select use on special limit joins
4664
-     * NOTE: for now this has only been tested and will work when the  table alias is for the PRIMARY table. Although
4665
-     * its setup so the select query will be setup on and just doing the special select join off of the primary table
4666
-     * (as that is typically where the limits would be set).
4667
-     *
4668
-     * @param  string       $table_alias The table the select is being built for
4669
-     * @param  mixed|string $limit       The limit for this select
4670
-     * @return string                The final select join element for the query.
4671
-     */
4672
-    public function _construct_limit_join_select($table_alias, $limit)
4673
-    {
4674
-        $SQL = '';
4675
-        foreach ($this->_tables as $table_obj) {
4676
-            if ($table_obj instanceof EE_Primary_Table) {
4677
-                $SQL .= $table_alias === $table_obj->get_table_alias()
4678
-                    ? $table_obj->get_select_join_limit($limit)
4679
-                    : SP . $table_obj->get_table_name() . " AS " . $table_obj->get_table_alias() . SP;
4680
-            } elseif ($table_obj instanceof EE_Secondary_Table) {
4681
-                $SQL .= $table_alias === $table_obj->get_table_alias()
4682
-                    ? $table_obj->get_select_join_limit_join($limit)
4683
-                    : SP . $table_obj->get_join_sql($table_alias) . SP;
4684
-            }
4685
-        }
4686
-        return $SQL;
4687
-    }
4688
-
4689
-
4690
-
4691
-    /**
4692
-     * Constructs the internal join if there are multiple tables, or simply the table's name and alias
4693
-     * Eg "wp_post AS Event" or "wp_post AS Event INNER JOIN wp_postmeta Event_Meta ON Event.ID = Event_Meta.post_id"
4694
-     *
4695
-     * @return string SQL
4696
-     * @throws EE_Error
4697
-     */
4698
-    public function _construct_internal_join()
4699
-    {
4700
-        $SQL = $this->_get_main_table()->get_table_sql();
4701
-        $SQL .= $this->_construct_internal_join_to_table_with_alias($this->_get_main_table()->get_table_alias());
4702
-        return $SQL;
4703
-    }
4704
-
4705
-
4706
-
4707
-    /**
4708
-     * Constructs the SQL for joining all the tables on this model.
4709
-     * Normally $alias should be the primary table's alias, but in cases where
4710
-     * we have already joined to a secondary table (eg, the secondary table has a foreign key and is joined before the
4711
-     * primary table) then we should provide that secondary table's alias. Eg, with $alias being the primary table's
4712
-     * alias, this will construct SQL like:
4713
-     * " INNER JOIN wp_esp_secondary_table AS Secondary_Table ON Primary_Table.pk = Secondary_Table.fk".
4714
-     * With $alias being a secondary table's alias, this will construct SQL like:
4715
-     * " INNER JOIN wp_esp_primary_table AS Primary_Table ON Primary_Table.pk = Secondary_Table.fk".
4716
-     *
4717
-     * @param string $alias_prefixed table alias to join to (this table should already be in the FROM SQL clause)
4718
-     * @return string
4719
-     */
4720
-    public function _construct_internal_join_to_table_with_alias($alias_prefixed)
4721
-    {
4722
-        $SQL = '';
4723
-        $alias_sans_prefix = EE_Model_Parser::remove_table_alias_model_relation_chain_prefix($alias_prefixed);
4724
-        foreach ($this->_tables as $table_obj) {
4725
-            if ($table_obj instanceof EE_Secondary_Table) {// table is secondary table
4726
-                if ($alias_sans_prefix === $table_obj->get_table_alias()) {
4727
-                    // so we're joining to this table, meaning the table is already in
4728
-                    // the FROM statement, BUT the primary table isn't. So we want
4729
-                    // to add the inverse join sql
4730
-                    $SQL .= $table_obj->get_inverse_join_sql($alias_prefixed);
4731
-                } else {
4732
-                    // just add a regular JOIN to this table from the primary table
4733
-                    $SQL .= $table_obj->get_join_sql($alias_prefixed);
4734
-                }
4735
-            }//if it's a primary table, dont add any SQL. it should already be in the FROM statement
4736
-        }
4737
-        return $SQL;
4738
-    }
4739
-
4740
-
4741
-
4742
-    /**
4743
-     * Gets an array for storing all the data types on the next-to-be-executed-query.
4744
-     * This should be a growing array of keys being table-columns (eg 'EVT_ID' and 'Event.EVT_ID'), and values being
4745
-     * their data type (eg, '%s', '%d', etc)
4746
-     *
4747
-     * @return array
4748
-     */
4749
-    public function _get_data_types()
4750
-    {
4751
-        $data_types = array();
4752
-        foreach ($this->field_settings() as $field_obj) {
4753
-            // $data_types[$field_obj->get_table_column()] = $field_obj->get_wpdb_data_type();
4754
-            /** @var $field_obj EE_Model_Field_Base */
4755
-            $data_types[ $field_obj->get_qualified_column() ] = $field_obj->get_wpdb_data_type();
4756
-        }
4757
-        return $data_types;
4758
-    }
4759
-
4760
-
4761
-
4762
-    /**
4763
-     * Gets the model object given the relation's name / model's name (eg, 'Event', 'Registration',etc. Always singular)
4764
-     *
4765
-     * @param string $model_name
4766
-     * @throws EE_Error
4767
-     * @return EEM_Base
4768
-     */
4769
-    public function get_related_model_obj($model_name)
4770
-    {
4771
-        $model_classname = "EEM_" . $model_name;
4772
-        if (! class_exists($model_classname)) {
4773
-            throw new EE_Error(sprintf(__(
4774
-                "You specified a related model named %s in your query. No such model exists, if it did, it would have the classname %s",
4775
-                'event_espresso'
4776
-            ), $model_name, $model_classname));
4777
-        }
4778
-        return call_user_func($model_classname . "::instance");
4779
-    }
4780
-
4781
-
4782
-
4783
-    /**
4784
-     * Returns the array of EE_ModelRelations for this model.
4785
-     *
4786
-     * @return EE_Model_Relation_Base[]
4787
-     */
4788
-    public function relation_settings()
4789
-    {
4790
-        return $this->_model_relations;
4791
-    }
4792
-
4793
-
4794
-
4795
-    /**
4796
-     * Gets all related models that this model BELONGS TO. Handy to know sometimes
4797
-     * because without THOSE models, this model probably doesn't have much purpose.
4798
-     * (Eg, without an event, datetimes have little purpose.)
4799
-     *
4800
-     * @return EE_Belongs_To_Relation[]
4801
-     */
4802
-    public function belongs_to_relations()
4803
-    {
4804
-        $belongs_to_relations = array();
4805
-        foreach ($this->relation_settings() as $model_name => $relation_obj) {
4806
-            if ($relation_obj instanceof EE_Belongs_To_Relation) {
4807
-                $belongs_to_relations[ $model_name ] = $relation_obj;
4808
-            }
4809
-        }
4810
-        return $belongs_to_relations;
4811
-    }
4812
-
4813
-
4814
-
4815
-    /**
4816
-     * Returns the specified EE_Model_Relation, or throws an exception
4817
-     *
4818
-     * @param string $relation_name name of relation, key in $this->_relatedModels
4819
-     * @throws EE_Error
4820
-     * @return EE_Model_Relation_Base
4821
-     */
4822
-    public function related_settings_for($relation_name)
4823
-    {
4824
-        $relatedModels = $this->relation_settings();
4825
-        if (! array_key_exists($relation_name, $relatedModels)) {
4826
-            throw new EE_Error(
4827
-                sprintf(
4828
-                    __(
4829
-                        'Cannot get %s related to %s. There is no model relation of that type. There is, however, %s...',
4830
-                        'event_espresso'
4831
-                    ),
4832
-                    $relation_name,
4833
-                    $this->_get_class_name(),
4834
-                    implode(', ', array_keys($relatedModels))
4835
-                )
4836
-            );
4837
-        }
4838
-        return $relatedModels[ $relation_name ];
4839
-    }
4840
-
4841
-
4842
-
4843
-    /**
4844
-     * A convenience method for getting a specific field's settings, instead of getting all field settings for all
4845
-     * fields
4846
-     *
4847
-     * @param string $fieldName
4848
-     * @param boolean $include_db_only_fields
4849
-     * @throws EE_Error
4850
-     * @return EE_Model_Field_Base
4851
-     */
4852
-    public function field_settings_for($fieldName, $include_db_only_fields = true)
4853
-    {
4854
-        $fieldSettings = $this->field_settings($include_db_only_fields);
4855
-        if (! array_key_exists($fieldName, $fieldSettings)) {
4856
-            throw new EE_Error(sprintf(
4857
-                __("There is no field/column '%s' on '%s'", 'event_espresso'),
4858
-                $fieldName,
4859
-                get_class($this)
4860
-            ));
4861
-        }
4862
-        return $fieldSettings[ $fieldName ];
4863
-    }
4864
-
4865
-
4866
-
4867
-    /**
4868
-     * Checks if this field exists on this model
4869
-     *
4870
-     * @param string $fieldName a key in the model's _field_settings array
4871
-     * @return boolean
4872
-     */
4873
-    public function has_field($fieldName)
4874
-    {
4875
-        $fieldSettings = $this->field_settings(true);
4876
-        if (isset($fieldSettings[ $fieldName ])) {
4877
-            return true;
4878
-        }
4879
-        return false;
4880
-    }
4881
-
4882
-
4883
-
4884
-    /**
4885
-     * Returns whether or not this model has a relation to the specified model
4886
-     *
4887
-     * @param string $relation_name possibly one of the keys in the relation_settings array
4888
-     * @return boolean
4889
-     */
4890
-    public function has_relation($relation_name)
4891
-    {
4892
-        $relations = $this->relation_settings();
4893
-        if (isset($relations[ $relation_name ])) {
4894
-            return true;
4895
-        }
4896
-        return false;
4897
-    }
4898
-
4899
-
4900
-
4901
-    /**
4902
-     * gets the field object of type 'primary_key' from the fieldsSettings attribute.
4903
-     * Eg, on EE_Answer that would be ANS_ID field object
4904
-     *
4905
-     * @param $field_obj
4906
-     * @return boolean
4907
-     */
4908
-    public function is_primary_key_field($field_obj)
4909
-    {
4910
-        return $field_obj instanceof EE_Primary_Key_Field_Base ? true : false;
4911
-    }
4912
-
4913
-
4914
-
4915
-    /**
4916
-     * gets the field object of type 'primary_key' from the fieldsSettings attribute.
4917
-     * Eg, on EE_Answer that would be ANS_ID field object
4918
-     *
4919
-     * @return EE_Model_Field_Base
4920
-     * @throws EE_Error
4921
-     */
4922
-    public function get_primary_key_field()
4923
-    {
4924
-        if ($this->_primary_key_field === null) {
4925
-            foreach ($this->field_settings(true) as $field_obj) {
4926
-                if ($this->is_primary_key_field($field_obj)) {
4927
-                    $this->_primary_key_field = $field_obj;
4928
-                    break;
4929
-                }
4930
-            }
4931
-            if (! $this->_primary_key_field instanceof EE_Primary_Key_Field_Base) {
4932
-                throw new EE_Error(sprintf(
4933
-                    __("There is no Primary Key defined on model %s", 'event_espresso'),
4934
-                    get_class($this)
4935
-                ));
4936
-            }
4937
-        }
4938
-        return $this->_primary_key_field;
4939
-    }
4940
-
4941
-
4942
-
4943
-    /**
4944
-     * Returns whether or not not there is a primary key on this model.
4945
-     * Internally does some caching.
4946
-     *
4947
-     * @return boolean
4948
-     */
4949
-    public function has_primary_key_field()
4950
-    {
4951
-        if ($this->_has_primary_key_field === null) {
4952
-            try {
4953
-                $this->get_primary_key_field();
4954
-                $this->_has_primary_key_field = true;
4955
-            } catch (EE_Error $e) {
4956
-                $this->_has_primary_key_field = false;
4957
-            }
4958
-        }
4959
-        return $this->_has_primary_key_field;
4960
-    }
4961
-
4962
-
4963
-
4964
-    /**
4965
-     * Finds the first field of type $field_class_name.
4966
-     *
4967
-     * @param string $field_class_name class name of field that you want to find. Eg, EE_Datetime_Field,
4968
-     *                                 EE_Foreign_Key_Field, etc
4969
-     * @return EE_Model_Field_Base or null if none is found
4970
-     */
4971
-    public function get_a_field_of_type($field_class_name)
4972
-    {
4973
-        foreach ($this->field_settings() as $field) {
4974
-            if ($field instanceof $field_class_name) {
4975
-                return $field;
4976
-            }
4977
-        }
4978
-        return null;
4979
-    }
4980
-
4981
-
4982
-
4983
-    /**
4984
-     * Gets a foreign key field pointing to model.
4985
-     *
4986
-     * @param string $model_name eg Event, Registration, not EEM_Event
4987
-     * @return EE_Foreign_Key_Field_Base
4988
-     * @throws EE_Error
4989
-     */
4990
-    public function get_foreign_key_to($model_name)
4991
-    {
4992
-        if (! isset($this->_cache_foreign_key_to_fields[ $model_name ])) {
4993
-            foreach ($this->field_settings() as $field) {
4994
-                if ($field instanceof EE_Foreign_Key_Field_Base
4995
-                    && in_array($model_name, $field->get_model_names_pointed_to())
4996
-                ) {
4997
-                    $this->_cache_foreign_key_to_fields[ $model_name ] = $field;
4998
-                    break;
4999
-                }
5000
-            }
5001
-            if (! isset($this->_cache_foreign_key_to_fields[ $model_name ])) {
5002
-                throw new EE_Error(sprintf(__(
5003
-                    "There is no foreign key field pointing to model %s on model %s",
5004
-                    'event_espresso'
5005
-                ), $model_name, get_class($this)));
5006
-            }
5007
-        }
5008
-        return $this->_cache_foreign_key_to_fields[ $model_name ];
5009
-    }
5010
-
5011
-
5012
-
5013
-    /**
5014
-     * Gets the table name (including $wpdb->prefix) for the table alias
5015
-     *
5016
-     * @param string $table_alias eg Event, Event_Meta, Registration, Transaction, but maybe
5017
-     *                            a table alias with a model chain prefix, like 'Venue__Event_Venue___Event_Meta'.
5018
-     *                            Either one works
5019
-     * @return string
5020
-     */
5021
-    public function get_table_for_alias($table_alias)
5022
-    {
5023
-        $table_alias_sans_model_relation_chain_prefix = EE_Model_Parser::remove_table_alias_model_relation_chain_prefix($table_alias);
5024
-        return $this->_tables[ $table_alias_sans_model_relation_chain_prefix ]->get_table_name();
5025
-    }
5026
-
5027
-
5028
-
5029
-    /**
5030
-     * Returns a flat array of all field son this model, instead of organizing them
5031
-     * by table_alias as they are in the constructor.
5032
-     *
5033
-     * @param bool $include_db_only_fields flag indicating whether or not to include the db-only fields
5034
-     * @return EE_Model_Field_Base[] where the keys are the field's name
5035
-     */
5036
-    public function field_settings($include_db_only_fields = false)
5037
-    {
5038
-        if ($include_db_only_fields) {
5039
-            if ($this->_cached_fields === null) {
5040
-                $this->_cached_fields = array();
5041
-                foreach ($this->_fields as $fields_corresponding_to_table) {
5042
-                    foreach ($fields_corresponding_to_table as $field_name => $field_obj) {
5043
-                        $this->_cached_fields[ $field_name ] = $field_obj;
5044
-                    }
5045
-                }
5046
-            }
5047
-            return $this->_cached_fields;
5048
-        }
5049
-        if ($this->_cached_fields_non_db_only === null) {
5050
-            $this->_cached_fields_non_db_only = array();
5051
-            foreach ($this->_fields as $fields_corresponding_to_table) {
5052
-                foreach ($fields_corresponding_to_table as $field_name => $field_obj) {
5053
-                    /** @var $field_obj EE_Model_Field_Base */
5054
-                    if (! $field_obj->is_db_only_field()) {
5055
-                        $this->_cached_fields_non_db_only[ $field_name ] = $field_obj;
5056
-                    }
5057
-                }
5058
-            }
5059
-        }
5060
-        return $this->_cached_fields_non_db_only;
5061
-    }
5062
-
5063
-
5064
-
5065
-    /**
5066
-     *        cycle though array of attendees and create objects out of each item
5067
-     *
5068
-     * @access        private
5069
-     * @param        array $rows of results of $wpdb->get_results($query,ARRAY_A)
5070
-     * @return \EE_Base_Class[] array keys are primary keys (if there is a primary key on the model. if not,
5071
-     *                           numerically indexed)
5072
-     * @throws EE_Error
5073
-     */
5074
-    protected function _create_objects($rows = array())
5075
-    {
5076
-        $array_of_objects = array();
5077
-        if (empty($rows)) {
5078
-            return array();
5079
-        }
5080
-        $count_if_model_has_no_primary_key = 0;
5081
-        $has_primary_key = $this->has_primary_key_field();
5082
-        $primary_key_field = $has_primary_key ? $this->get_primary_key_field() : null;
5083
-        foreach ((array) $rows as $row) {
5084
-            if (empty($row)) {
5085
-                // wp did its weird thing where it returns an array like array(0=>null), which is totally not helpful...
5086
-                return array();
5087
-            }
5088
-            // check if we've already set this object in the results array,
5089
-            // in which case there's no need to process it further (again)
5090
-            if ($has_primary_key) {
5091
-                $table_pk_value = $this->_get_column_value_with_table_alias_or_not(
5092
-                    $row,
5093
-                    $primary_key_field->get_qualified_column(),
5094
-                    $primary_key_field->get_table_column()
5095
-                );
5096
-                if ($table_pk_value && isset($array_of_objects[ $table_pk_value ])) {
5097
-                    continue;
5098
-                }
5099
-            }
5100
-            $classInstance = $this->instantiate_class_from_array_or_object($row);
5101
-            if (! $classInstance) {
5102
-                throw new EE_Error(
5103
-                    sprintf(
5104
-                        __('Could not create instance of class %s from row %s', 'event_espresso'),
5105
-                        $this->get_this_model_name(),
5106
-                        http_build_query($row)
5107
-                    )
5108
-                );
5109
-            }
5110
-            // set the timezone on the instantiated objects
5111
-            $classInstance->set_timezone($this->_timezone);
5112
-            // make sure if there is any timezone setting present that we set the timezone for the object
5113
-            $key = $has_primary_key ? $classInstance->ID() : $count_if_model_has_no_primary_key++;
5114
-            $array_of_objects[ $key ] = $classInstance;
5115
-            // also, for all the relations of type BelongsTo, see if we can cache
5116
-            // those related models
5117
-            // (we could do this for other relations too, but if there are conditions
5118
-            // that filtered out some fo the results, then we'd be caching an incomplete set
5119
-            // so it requires a little more thought than just caching them immediately...)
5120
-            foreach ($this->_model_relations as $modelName => $relation_obj) {
5121
-                if ($relation_obj instanceof EE_Belongs_To_Relation) {
5122
-                    // check if this model's INFO is present. If so, cache it on the model
5123
-                    $other_model = $relation_obj->get_other_model();
5124
-                    $other_model_obj_maybe = $other_model->instantiate_class_from_array_or_object($row);
5125
-                    // if we managed to make a model object from the results, cache it on the main model object
5126
-                    if ($other_model_obj_maybe) {
5127
-                        // set timezone on these other model objects if they are present
5128
-                        $other_model_obj_maybe->set_timezone($this->_timezone);
5129
-                        $classInstance->cache($modelName, $other_model_obj_maybe);
5130
-                    }
5131
-                }
5132
-            }
5133
-            // also, if this was a custom select query, let's see if there are any results for the custom select fields
5134
-            // and add them to the object as well.  We'll convert according to the set data_type if there's any set for
5135
-            // the field in the CustomSelects object
5136
-            if ($this->_custom_selections instanceof CustomSelects) {
5137
-                $classInstance->setCustomSelectsValues(
5138
-                    $this->getValuesForCustomSelectAliasesFromResults($row)
5139
-                );
5140
-            }
5141
-        }
5142
-        return $array_of_objects;
5143
-    }
5144
-
5145
-
5146
-    /**
5147
-     * This will parse a given row of results from the db and see if any keys in the results match an alias within the
5148
-     * current CustomSelects object. This will be used to build an array of values indexed by those keys.
5149
-     *
5150
-     * @param array $db_results_row
5151
-     * @return array
5152
-     */
5153
-    protected function getValuesForCustomSelectAliasesFromResults(array $db_results_row)
5154
-    {
5155
-        $results = array();
5156
-        if ($this->_custom_selections instanceof CustomSelects) {
5157
-            foreach ($this->_custom_selections->columnAliases() as $alias) {
5158
-                if (isset($db_results_row[ $alias ])) {
5159
-                    $results[ $alias ] = $this->convertValueToDataType(
5160
-                        $db_results_row[ $alias ],
5161
-                        $this->_custom_selections->getDataTypeForAlias($alias)
5162
-                    );
5163
-                }
5164
-            }
5165
-        }
5166
-        return $results;
5167
-    }
5168
-
5169
-
5170
-    /**
5171
-     * This will set the value for the given alias
5172
-     * @param string $value
5173
-     * @param string $datatype (one of %d, %s, %f)
5174
-     * @return int|string|float (int for %d, string for %s, float for %f)
5175
-     */
5176
-    protected function convertValueToDataType($value, $datatype)
5177
-    {
5178
-        switch ($datatype) {
5179
-            case '%f':
5180
-                return (float) $value;
5181
-            case '%d':
5182
-                return (int) $value;
5183
-            default:
5184
-                return (string) $value;
5185
-        }
5186
-    }
5187
-
5188
-
5189
-    /**
5190
-     * The purpose of this method is to allow us to create a model object that is not in the db that holds default
5191
-     * values. A typical example of where this is used is when creating a new item and the initial load of a form.  We
5192
-     * dont' necessarily want to test for if the object is present but just assume it is BUT load the defaults from the
5193
-     * object (as set in the model_field!).
5194
-     *
5195
-     * @return EE_Base_Class single EE_Base_Class object with default values for the properties.
5196
-     */
5197
-    public function create_default_object()
5198
-    {
5199
-        $this_model_fields_and_values = array();
5200
-        // setup the row using default values;
5201
-        foreach ($this->field_settings() as $field_name => $field_obj) {
5202
-            $this_model_fields_and_values[ $field_name ] = $field_obj->get_default_value();
5203
-        }
5204
-        $className = $this->_get_class_name();
5205
-        $classInstance = EE_Registry::instance()
5206
-                                    ->load_class($className, array($this_model_fields_and_values), false, false);
5207
-        return $classInstance;
5208
-    }
5209
-
5210
-
5211
-
5212
-    /**
5213
-     * @param mixed $cols_n_values either an array of where each key is the name of a field, and the value is its value
5214
-     *                             or an stdClass where each property is the name of a column,
5215
-     * @return EE_Base_Class
5216
-     * @throws EE_Error
5217
-     */
5218
-    public function instantiate_class_from_array_or_object($cols_n_values)
5219
-    {
5220
-        if (! is_array($cols_n_values) && is_object($cols_n_values)) {
5221
-            $cols_n_values = get_object_vars($cols_n_values);
5222
-        }
5223
-        $primary_key = null;
5224
-        // make sure the array only has keys that are fields/columns on this model
5225
-        $this_model_fields_n_values = $this->_deduce_fields_n_values_from_cols_n_values($cols_n_values);
5226
-        if ($this->has_primary_key_field() && isset($this_model_fields_n_values[ $this->primary_key_name() ])) {
5227
-            $primary_key = $this_model_fields_n_values[ $this->primary_key_name() ];
5228
-        }
5229
-        $className = $this->_get_class_name();
5230
-        // check we actually found results that we can use to build our model object
5231
-        // if not, return null
5232
-        if ($this->has_primary_key_field()) {
5233
-            if (empty($this_model_fields_n_values[ $this->primary_key_name() ])) {
5234
-                return null;
5235
-            }
5236
-        } elseif ($this->unique_indexes()) {
5237
-            $first_column = reset($this_model_fields_n_values);
5238
-            if (empty($first_column)) {
5239
-                return null;
5240
-            }
5241
-        }
5242
-        // if there is no primary key or the object doesn't already exist in the entity map, then create a new instance
5243
-        if ($primary_key) {
5244
-            $classInstance = $this->get_from_entity_map($primary_key);
5245
-            if (! $classInstance) {
5246
-                $classInstance = EE_Registry::instance()
5247
-                                            ->load_class(
5248
-                                                $className,
5249
-                                                array($this_model_fields_n_values, $this->_timezone),
5250
-                                                true,
5251
-                                                false
5252
-                                            );
5253
-                // add this new object to the entity map
5254
-                $classInstance = $this->add_to_entity_map($classInstance);
5255
-            }
5256
-        } else {
5257
-            $classInstance = EE_Registry::instance()
5258
-                                        ->load_class(
5259
-                                            $className,
5260
-                                            array($this_model_fields_n_values, $this->_timezone),
5261
-                                            true,
5262
-                                            false
5263
-                                        );
5264
-        }
5265
-        return $classInstance;
5266
-    }
5267
-
5268
-
5269
-
5270
-    /**
5271
-     * Gets the model object from the  entity map if it exists
5272
-     *
5273
-     * @param int|string $id the ID of the model object
5274
-     * @return EE_Base_Class
5275
-     */
5276
-    public function get_from_entity_map($id)
5277
-    {
5278
-        return isset($this->_entity_map[ EEM_Base::$_model_query_blog_id ][ $id ])
5279
-            ? $this->_entity_map[ EEM_Base::$_model_query_blog_id ][ $id ] : null;
5280
-    }
5281
-
5282
-
5283
-
5284
-    /**
5285
-     * add_to_entity_map
5286
-     * Adds the object to the model's entity mappings
5287
-     *        Effectively tells the models "Hey, this model object is the most up-to-date representation of the data,
5288
-     *        and for the remainder of the request, it's even more up-to-date than what's in the database.
5289
-     *        So, if the database doesn't agree with what's in the entity mapper, ignore the database"
5290
-     *        If the database gets updated directly and you want the entity mapper to reflect that change,
5291
-     *        then this method should be called immediately after the update query
5292
-     * Note: The map is indexed by whatever the current blog id is set (via EEM_Base::$_model_query_blog_id).  This is
5293
-     * so on multisite, the entity map is specific to the query being done for a specific site.
5294
-     *
5295
-     * @param    EE_Base_Class $object
5296
-     * @throws EE_Error
5297
-     * @return \EE_Base_Class
5298
-     */
5299
-    public function add_to_entity_map(EE_Base_Class $object)
5300
-    {
5301
-        $className = $this->_get_class_name();
5302
-        if (! $object instanceof $className) {
5303
-            throw new EE_Error(sprintf(
5304
-                __("You tried adding a %s to a mapping of %ss", "event_espresso"),
5305
-                is_object($object) ? get_class($object) : $object,
5306
-                $className
5307
-            ));
5308
-        }
5309
-        /** @var $object EE_Base_Class */
5310
-        if (! $object->ID()) {
5311
-            throw new EE_Error(sprintf(__(
5312
-                "You tried storing a model object with NO ID in the %s entity mapper.",
5313
-                "event_espresso"
5314
-            ), get_class($this)));
5315
-        }
5316
-        // double check it's not already there
5317
-        $classInstance = $this->get_from_entity_map($object->ID());
5318
-        if ($classInstance) {
5319
-            return $classInstance;
5320
-        }
5321
-        $this->_entity_map[ EEM_Base::$_model_query_blog_id ][ $object->ID() ] = $object;
5322
-        return $object;
5323
-    }
5324
-
5325
-
5326
-
5327
-    /**
5328
-     * if a valid identifier is provided, then that entity is unset from the entity map,
5329
-     * if no identifier is provided, then the entire entity map is emptied
5330
-     *
5331
-     * @param int|string $id the ID of the model object
5332
-     * @return boolean
5333
-     */
5334
-    public function clear_entity_map($id = null)
5335
-    {
5336
-        if (empty($id)) {
5337
-            $this->_entity_map[ EEM_Base::$_model_query_blog_id ] = array();
5338
-            return true;
5339
-        }
5340
-        if (isset($this->_entity_map[ EEM_Base::$_model_query_blog_id ][ $id ])) {
5341
-            unset($this->_entity_map[ EEM_Base::$_model_query_blog_id ][ $id ]);
5342
-            return true;
5343
-        }
5344
-        return false;
5345
-    }
5346
-
5347
-
5348
-
5349
-    /**
5350
-     * Public wrapper for _deduce_fields_n_values_from_cols_n_values.
5351
-     * Given an array where keys are column (or column alias) names and values,
5352
-     * returns an array of their corresponding field names and database values
5353
-     *
5354
-     * @param array $cols_n_values
5355
-     * @return array
5356
-     */
5357
-    public function deduce_fields_n_values_from_cols_n_values($cols_n_values)
5358
-    {
5359
-        return $this->_deduce_fields_n_values_from_cols_n_values($cols_n_values);
5360
-    }
5361
-
5362
-
5363
-
5364
-    /**
5365
-     * _deduce_fields_n_values_from_cols_n_values
5366
-     * Given an array where keys are column (or column alias) names and values,
5367
-     * returns an array of their corresponding field names and database values
5368
-     *
5369
-     * @param string $cols_n_values
5370
-     * @return array
5371
-     */
5372
-    protected function _deduce_fields_n_values_from_cols_n_values($cols_n_values)
5373
-    {
5374
-        $this_model_fields_n_values = array();
5375
-        foreach ($this->get_tables() as $table_alias => $table_obj) {
5376
-            $table_pk_value = $this->_get_column_value_with_table_alias_or_not(
5377
-                $cols_n_values,
5378
-                $table_obj->get_fully_qualified_pk_column(),
5379
-                $table_obj->get_pk_column()
5380
-            );
5381
-            // there is a primary key on this table and its not set. Use defaults for all its columns
5382
-            if ($table_pk_value === null && $table_obj->get_pk_column()) {
5383
-                foreach ($this->_get_fields_for_table($table_alias) as $field_name => $field_obj) {
5384
-                    if (! $field_obj->is_db_only_field()) {
5385
-                        // prepare field as if its coming from db
5386
-                        $prepared_value = $field_obj->prepare_for_set($field_obj->get_default_value());
5387
-                        $this_model_fields_n_values[ $field_name ] = $field_obj->prepare_for_use_in_db($prepared_value);
5388
-                    }
5389
-                }
5390
-            } else {
5391
-                // the table's rows existed. Use their values
5392
-                foreach ($this->_get_fields_for_table($table_alias) as $field_name => $field_obj) {
5393
-                    if (! $field_obj->is_db_only_field()) {
5394
-                        $this_model_fields_n_values[ $field_name ] = $this->_get_column_value_with_table_alias_or_not(
5395
-                            $cols_n_values,
5396
-                            $field_obj->get_qualified_column(),
5397
-                            $field_obj->get_table_column()
5398
-                        );
5399
-                    }
5400
-                }
5401
-            }
5402
-        }
5403
-        return $this_model_fields_n_values;
5404
-    }
5405
-
5406
-
5407
-
5408
-    /**
5409
-     * @param $cols_n_values
5410
-     * @param $qualified_column
5411
-     * @param $regular_column
5412
-     * @return null
5413
-     */
5414
-    protected function _get_column_value_with_table_alias_or_not($cols_n_values, $qualified_column, $regular_column)
5415
-    {
5416
-        $value = null;
5417
-        // ask the field what it think it's table_name.column_name should be, and call it the "qualified column"
5418
-        // does the field on the model relate to this column retrieved from the db?
5419
-        // or is it a db-only field? (not relating to the model)
5420
-        if (isset($cols_n_values[ $qualified_column ])) {
5421
-            $value = $cols_n_values[ $qualified_column ];
5422
-        } elseif (isset($cols_n_values[ $regular_column ])) {
5423
-            $value = $cols_n_values[ $regular_column ];
5424
-        }
5425
-        return $value;
5426
-    }
5427
-
5428
-
5429
-
5430
-    /**
5431
-     * refresh_entity_map_from_db
5432
-     * Makes sure the model object in the entity map at $id assumes the values
5433
-     * of the database (opposite of EE_base_Class::save())
5434
-     *
5435
-     * @param int|string $id
5436
-     * @return EE_Base_Class
5437
-     * @throws EE_Error
5438
-     */
5439
-    public function refresh_entity_map_from_db($id)
5440
-    {
5441
-        $obj_in_map = $this->get_from_entity_map($id);
5442
-        if ($obj_in_map) {
5443
-            $wpdb_results = $this->_get_all_wpdb_results(
5444
-                array(array($this->get_primary_key_field()->get_name() => $id), 'limit' => 1)
5445
-            );
5446
-            if ($wpdb_results && is_array($wpdb_results)) {
5447
-                $one_row = reset($wpdb_results);
5448
-                foreach ($this->_deduce_fields_n_values_from_cols_n_values($one_row) as $field_name => $db_value) {
5449
-                    $obj_in_map->set_from_db($field_name, $db_value);
5450
-                }
5451
-                // clear the cache of related model objects
5452
-                foreach ($this->relation_settings() as $relation_name => $relation_obj) {
5453
-                    $obj_in_map->clear_cache($relation_name, null, true);
5454
-                }
5455
-            }
5456
-            $this->_entity_map[ EEM_Base::$_model_query_blog_id ][ $id ] = $obj_in_map;
5457
-            return $obj_in_map;
5458
-        }
5459
-        return $this->get_one_by_ID($id);
5460
-    }
5461
-
5462
-
5463
-
5464
-    /**
5465
-     * refresh_entity_map_with
5466
-     * Leaves the entry in the entity map alone, but updates it to match the provided
5467
-     * $replacing_model_obj (which we assume to be its equivalent but somehow NOT in the entity map).
5468
-     * This is useful if you have a model object you want to make authoritative over what's in the entity map currently.
5469
-     * Note: The old $replacing_model_obj should now be destroyed as it's now un-authoritative
5470
-     *
5471
-     * @param int|string    $id
5472
-     * @param EE_Base_Class $replacing_model_obj
5473
-     * @return \EE_Base_Class
5474
-     * @throws EE_Error
5475
-     */
5476
-    public function refresh_entity_map_with($id, $replacing_model_obj)
5477
-    {
5478
-        $obj_in_map = $this->get_from_entity_map($id);
5479
-        if ($obj_in_map) {
5480
-            if ($replacing_model_obj instanceof EE_Base_Class) {
5481
-                foreach ($replacing_model_obj->model_field_array() as $field_name => $value) {
5482
-                    $obj_in_map->set($field_name, $value);
5483
-                }
5484
-                // make the model object in the entity map's cache match the $replacing_model_obj
5485
-                foreach ($this->relation_settings() as $relation_name => $relation_obj) {
5486
-                    $obj_in_map->clear_cache($relation_name, null, true);
5487
-                    foreach ($replacing_model_obj->get_all_from_cache($relation_name) as $cache_id => $cached_obj) {
5488
-                        $obj_in_map->cache($relation_name, $cached_obj, $cache_id);
5489
-                    }
5490
-                }
5491
-            }
5492
-            return $obj_in_map;
5493
-        }
5494
-        $this->add_to_entity_map($replacing_model_obj);
5495
-        return $replacing_model_obj;
5496
-    }
5497
-
5498
-
5499
-
5500
-    /**
5501
-     * Gets the EE class that corresponds to this model. Eg, for EEM_Answer that
5502
-     * would be EE_Answer.To import that class, you'd just add ".class.php" to the name, like so
5503
-     * require_once($this->_getClassName().".class.php");
5504
-     *
5505
-     * @return string
5506
-     */
5507
-    private function _get_class_name()
5508
-    {
5509
-        return "EE_" . $this->get_this_model_name();
5510
-    }
5511
-
5512
-
5513
-
5514
-    /**
5515
-     * Get the name of the items this model represents, for the quantity specified. Eg,
5516
-     * if $quantity==1, on EEM_Event, it would 'Event' (internationalized), otherwise
5517
-     * it would be 'Events'.
5518
-     *
5519
-     * @param int $quantity
5520
-     * @return string
5521
-     */
5522
-    public function item_name($quantity = 1)
5523
-    {
5524
-        return (int) $quantity === 1 ? $this->singular_item : $this->plural_item;
5525
-    }
5526
-
5527
-
5528
-
5529
-    /**
5530
-     * Very handy general function to allow for plugins to extend any child of EE_TempBase.
5531
-     * If a method is called on a child of EE_TempBase that doesn't exist, this function is called
5532
-     * (http://www.garfieldtech.com/blog/php-magic-call) and passed the method's name and arguments. Instead of
5533
-     * requiring a plugin to extend the EE_TempBase (which works fine is there's only 1 plugin, but when will that
5534
-     * happen?) they can add a hook onto 'filters_hook_espresso__{className}__{methodName}' (eg,
5535
-     * filters_hook_espresso__EE_Answer__my_great_function) and accepts 2 arguments: the object on which the function
5536
-     * was called, and an array of the original arguments passed to the function. Whatever their callback function
5537
-     * returns will be returned by this function. Example: in functions.php (or in a plugin):
5538
-     * add_filter('FHEE__EE_Answer__my_callback','my_callback',10,3); function
5539
-     * my_callback($previousReturnValue,EE_TempBase $object,$argsArray){
5540
-     * $returnString= "you called my_callback! and passed args:".implode(",",$argsArray);
5541
-     *        return $previousReturnValue.$returnString;
5542
-     * }
5543
-     * require('EEM_Answer.model.php');
5544
-     * $answer=EEM_Answer::instance();
5545
-     * echo $answer->my_callback('monkeys',100);
5546
-     * //will output "you called my_callback! and passed args:monkeys,100"
5547
-     *
5548
-     * @param string $methodName name of method which was called on a child of EE_TempBase, but which
5549
-     * @param array  $args       array of original arguments passed to the function
5550
-     * @throws EE_Error
5551
-     * @return mixed whatever the plugin which calls add_filter decides
5552
-     */
5553
-    public function __call($methodName, $args)
5554
-    {
5555
-        $className = get_class($this);
5556
-        $tagName = "FHEE__{$className}__{$methodName}";
5557
-        if (! has_filter($tagName)) {
5558
-            throw new EE_Error(
5559
-                sprintf(
5560
-                    __(
5561
-                        'Method %1$s on model %2$s does not exist! You can create one with the following code in functions.php or in a plugin: %4$s function my_callback(%4$s \$previousReturnValue, EEM_Base \$object\ $argsArray=NULL ){%4$s     /*function body*/%4$s      return \$whatever;%4$s }%4$s add_filter( \'%3$s\', \'my_callback\', 10, 3 );',
5562
-                        'event_espresso'
5563
-                    ),
5564
-                    $methodName,
5565
-                    $className,
5566
-                    $tagName,
5567
-                    '<br />'
5568
-                )
5569
-            );
5570
-        }
5571
-        return apply_filters($tagName, null, $this, $args);
5572
-    }
5573
-
5574
-
5575
-
5576
-    /**
5577
-     * Ensures $base_class_obj_or_id is of the EE_Base_Class child that corresponds ot this model.
5578
-     * If not, assumes its an ID, and uses $this->get_one_by_ID() to get the EE_Base_Class.
5579
-     *
5580
-     * @param EE_Base_Class|string|int $base_class_obj_or_id either:
5581
-     *                                                       the EE_Base_Class object that corresponds to this Model,
5582
-     *                                                       the object's class name
5583
-     *                                                       or object's ID
5584
-     * @param boolean                  $ensure_is_in_db      if set, we will also verify this model object
5585
-     *                                                       exists in the database. If it does not, we add it
5586
-     * @throws EE_Error
5587
-     * @return EE_Base_Class
5588
-     */
5589
-    public function ensure_is_obj($base_class_obj_or_id, $ensure_is_in_db = false)
5590
-    {
5591
-        $className = $this->_get_class_name();
5592
-        if ($base_class_obj_or_id instanceof $className) {
5593
-            $model_object = $base_class_obj_or_id;
5594
-        } else {
5595
-            $primary_key_field = $this->get_primary_key_field();
5596
-            if ($primary_key_field instanceof EE_Primary_Key_Int_Field
5597
-                && (
5598
-                    is_int($base_class_obj_or_id)
5599
-                    || is_string($base_class_obj_or_id)
5600
-                )
5601
-            ) {
5602
-                // assume it's an ID.
5603
-                // either a proper integer or a string representing an integer (eg "101" instead of 101)
5604
-                $model_object = $this->get_one_by_ID($base_class_obj_or_id);
5605
-            } elseif ($primary_key_field instanceof EE_Primary_Key_String_Field
5606
-                && is_string($base_class_obj_or_id)
5607
-            ) {
5608
-                // assume its a string representation of the object
5609
-                $model_object = $this->get_one_by_ID($base_class_obj_or_id);
5610
-            } else {
5611
-                throw new EE_Error(
5612
-                    sprintf(
5613
-                        __(
5614
-                            "'%s' is neither an object of type %s, nor an ID! Its full value is '%s'",
5615
-                            'event_espresso'
5616
-                        ),
5617
-                        $base_class_obj_or_id,
5618
-                        $this->_get_class_name(),
5619
-                        print_r($base_class_obj_or_id, true)
5620
-                    )
5621
-                );
5622
-            }
5623
-        }
5624
-        if ($ensure_is_in_db && $model_object->ID() !== null) {
5625
-            $model_object->save();
5626
-        }
5627
-        return $model_object;
5628
-    }
5629
-
5630
-
5631
-
5632
-    /**
5633
-     * Similar to ensure_is_obj(), this method makes sure $base_class_obj_or_id
5634
-     * is a value of the this model's primary key. If it's an EE_Base_Class child,
5635
-     * returns it ID.
5636
-     *
5637
-     * @param EE_Base_Class|int|string $base_class_obj_or_id
5638
-     * @return int|string depending on the type of this model object's ID
5639
-     * @throws EE_Error
5640
-     */
5641
-    public function ensure_is_ID($base_class_obj_or_id)
5642
-    {
5643
-        $className = $this->_get_class_name();
5644
-        if ($base_class_obj_or_id instanceof $className) {
5645
-            /** @var $base_class_obj_or_id EE_Base_Class */
5646
-            $id = $base_class_obj_or_id->ID();
5647
-        } elseif (is_int($base_class_obj_or_id)) {
5648
-            // assume it's an ID
5649
-            $id = $base_class_obj_or_id;
5650
-        } elseif (is_string($base_class_obj_or_id)) {
5651
-            // assume its a string representation of the object
5652
-            $id = $base_class_obj_or_id;
5653
-        } else {
5654
-            throw new EE_Error(sprintf(
5655
-                __(
5656
-                    "'%s' is neither an object of type %s, nor an ID! Its full value is '%s'",
5657
-                    'event_espresso'
5658
-                ),
5659
-                $base_class_obj_or_id,
5660
-                $this->_get_class_name(),
5661
-                print_r($base_class_obj_or_id, true)
5662
-            ));
5663
-        }
5664
-        return $id;
5665
-    }
5666
-
5667
-
5668
-
5669
-    /**
5670
-     * Sets whether the values passed to the model (eg, values in WHERE, values in INSERT, UPDATE, etc)
5671
-     * have already been ran through the appropriate model field's prepare_for_use_in_db method. IE, they have
5672
-     * been sanitized and converted into the appropriate domain.
5673
-     * Usually the only place you'll want to change the default (which is to assume values have NOT been sanitized by
5674
-     * the model object/model field) is when making a method call from WITHIN a model object, which has direct access
5675
-     * to its sanitized values. Note: after changing this setting, you should set it back to its previous value (using
5676
-     * get_assumption_concerning_values_already_prepared_by_model_object()) eg.
5677
-     * $EVT = EEM_Event::instance(); $old_setting =
5678
-     * $EVT->get_assumption_concerning_values_already_prepared_by_model_object();
5679
-     * $EVT->assume_values_already_prepared_by_model_object(true);
5680
-     * $EVT->update(array('foo'=>'bar'),array(array('foo'=>'monkey')));
5681
-     * $EVT->assume_values_already_prepared_by_model_object($old_setting);
5682
-     *
5683
-     * @param int $values_already_prepared like one of the constants on EEM_Base
5684
-     * @return void
5685
-     */
5686
-    public function assume_values_already_prepared_by_model_object(
5687
-        $values_already_prepared = self::not_prepared_by_model_object
5688
-    ) {
5689
-        $this->_values_already_prepared_by_model_object = $values_already_prepared;
5690
-    }
5691
-
5692
-
5693
-
5694
-    /**
5695
-     * Read comments for assume_values_already_prepared_by_model_object()
5696
-     *
5697
-     * @return int
5698
-     */
5699
-    public function get_assumption_concerning_values_already_prepared_by_model_object()
5700
-    {
5701
-        return $this->_values_already_prepared_by_model_object;
5702
-    }
5703
-
5704
-
5705
-
5706
-    /**
5707
-     * Gets all the indexes on this model
5708
-     *
5709
-     * @return EE_Index[]
5710
-     */
5711
-    public function indexes()
5712
-    {
5713
-        return $this->_indexes;
5714
-    }
5715
-
5716
-
5717
-
5718
-    /**
5719
-     * Gets all the Unique Indexes on this model
5720
-     *
5721
-     * @return EE_Unique_Index[]
5722
-     */
5723
-    public function unique_indexes()
5724
-    {
5725
-        $unique_indexes = array();
5726
-        foreach ($this->_indexes as $name => $index) {
5727
-            if ($index instanceof EE_Unique_Index) {
5728
-                $unique_indexes [ $name ] = $index;
5729
-            }
5730
-        }
5731
-        return $unique_indexes;
5732
-    }
5733
-
5734
-
5735
-
5736
-    /**
5737
-     * Gets all the fields which, when combined, make the primary key.
5738
-     * This is usually just an array with 1 element (the primary key), but in cases
5739
-     * where there is no primary key, it's a combination of fields as defined
5740
-     * on a primary index
5741
-     *
5742
-     * @return EE_Model_Field_Base[] indexed by the field's name
5743
-     * @throws EE_Error
5744
-     */
5745
-    public function get_combined_primary_key_fields()
5746
-    {
5747
-        foreach ($this->indexes() as $index) {
5748
-            if ($index instanceof EE_Primary_Key_Index) {
5749
-                return $index->fields();
5750
-            }
5751
-        }
5752
-        return array($this->primary_key_name() => $this->get_primary_key_field());
5753
-    }
5754
-
5755
-
5756
-
5757
-    /**
5758
-     * Used to build a primary key string (when the model has no primary key),
5759
-     * which can be used a unique string to identify this model object.
5760
-     *
5761
-     * @param array $cols_n_values keys are field names, values are their values
5762
-     * @return string
5763
-     * @throws EE_Error
5764
-     */
5765
-    public function get_index_primary_key_string($cols_n_values)
5766
-    {
5767
-        $cols_n_values_for_primary_key_index = array_intersect_key(
5768
-            $cols_n_values,
5769
-            $this->get_combined_primary_key_fields()
5770
-        );
5771
-        return http_build_query($cols_n_values_for_primary_key_index);
5772
-    }
5773
-
5774
-
5775
-
5776
-    /**
5777
-     * Gets the field values from the primary key string
5778
-     *
5779
-     * @see EEM_Base::get_combined_primary_key_fields() and EEM_Base::get_index_primary_key_string()
5780
-     * @param string $index_primary_key_string
5781
-     * @return null|array
5782
-     * @throws EE_Error
5783
-     */
5784
-    public function parse_index_primary_key_string($index_primary_key_string)
5785
-    {
5786
-        $key_fields = $this->get_combined_primary_key_fields();
5787
-        // check all of them are in the $id
5788
-        $key_vals_in_combined_pk = array();
5789
-        parse_str($index_primary_key_string, $key_vals_in_combined_pk);
5790
-        foreach ($key_fields as $key_field_name => $field_obj) {
5791
-            if (! isset($key_vals_in_combined_pk[ $key_field_name ])) {
5792
-                return null;
5793
-            }
5794
-        }
5795
-        return $key_vals_in_combined_pk;
5796
-    }
5797
-
5798
-
5799
-
5800
-    /**
5801
-     * verifies that an array of key-value pairs for model fields has a key
5802
-     * for each field comprising the primary key index
5803
-     *
5804
-     * @param array $key_vals
5805
-     * @return boolean
5806
-     * @throws EE_Error
5807
-     */
5808
-    public function has_all_combined_primary_key_fields($key_vals)
5809
-    {
5810
-        $keys_it_should_have = array_keys($this->get_combined_primary_key_fields());
5811
-        foreach ($keys_it_should_have as $key) {
5812
-            if (! isset($key_vals[ $key ])) {
5813
-                return false;
5814
-            }
5815
-        }
5816
-        return true;
5817
-    }
5818
-
5819
-
5820
-
5821
-    /**
5822
-     * Finds all model objects in the DB that appear to be a copy of $model_object_or_attributes_array.
5823
-     * We consider something to be a copy if all the attributes match (except the ID, of course).
5824
-     *
5825
-     * @param array|EE_Base_Class $model_object_or_attributes_array If its an array, it's field-value pairs
5826
-     * @param array               $query_params @see https://github.com/eventespresso/event-espresso-core/tree/master/docs/G--Model-System/model-query-params.md
5827
-     * @throws EE_Error
5828
-     * @return \EE_Base_Class[] Array keys are object IDs (if there is a primary key on the model. if not, numerically
5829
-     *                                                              indexed)
5830
-     */
5831
-    public function get_all_copies($model_object_or_attributes_array, $query_params = array())
5832
-    {
5833
-        if ($model_object_or_attributes_array instanceof EE_Base_Class) {
5834
-            $attributes_array = $model_object_or_attributes_array->model_field_array();
5835
-        } elseif (is_array($model_object_or_attributes_array)) {
5836
-            $attributes_array = $model_object_or_attributes_array;
5837
-        } else {
5838
-            throw new EE_Error(sprintf(__(
5839
-                "get_all_copies should be provided with either a model object or an array of field-value-pairs, but was given %s",
5840
-                "event_espresso"
5841
-            ), $model_object_or_attributes_array));
5842
-        }
5843
-        // even copies obviously won't have the same ID, so remove the primary key
5844
-        // from the WHERE conditions for finding copies (if there is a primary key, of course)
5845
-        if ($this->has_primary_key_field() && isset($attributes_array[ $this->primary_key_name() ])) {
5846
-            unset($attributes_array[ $this->primary_key_name() ]);
5847
-        }
5848
-        if (isset($query_params[0])) {
5849
-            $query_params[0] = array_merge($attributes_array, $query_params);
5850
-        } else {
5851
-            $query_params[0] = $attributes_array;
5852
-        }
5853
-        return $this->get_all($query_params);
5854
-    }
5855
-
5856
-
5857
-
5858
-    /**
5859
-     * Gets the first copy we find. See get_all_copies for more details
5860
-     *
5861
-     * @param       mixed EE_Base_Class | array        $model_object_or_attributes_array
5862
-     * @param array $query_params
5863
-     * @return EE_Base_Class
5864
-     * @throws EE_Error
5865
-     */
5866
-    public function get_one_copy($model_object_or_attributes_array, $query_params = array())
5867
-    {
5868
-        if (! is_array($query_params)) {
5869
-            EE_Error::doing_it_wrong(
5870
-                'EEM_Base::get_one_copy',
5871
-                sprintf(
5872
-                    __('$query_params should be an array, you passed a variable of type %s', 'event_espresso'),
5873
-                    gettype($query_params)
5874
-                ),
5875
-                '4.6.0'
5876
-            );
5877
-            $query_params = array();
5878
-        }
5879
-        $query_params['limit'] = 1;
5880
-        $copies = $this->get_all_copies($model_object_or_attributes_array, $query_params);
5881
-        if (is_array($copies)) {
5882
-            return array_shift($copies);
5883
-        }
5884
-        return null;
5885
-    }
5886
-
5887
-
5888
-
5889
-    /**
5890
-     * Updates the item with the specified id. Ignores default query parameters because
5891
-     * we have specified the ID, and its assumed we KNOW what we're doing
5892
-     *
5893
-     * @param array      $fields_n_values keys are field names, values are their new values
5894
-     * @param int|string $id              the value of the primary key to update
5895
-     * @return int number of rows updated
5896
-     * @throws EE_Error
5897
-     */
5898
-    public function update_by_ID($fields_n_values, $id)
5899
-    {
5900
-        $query_params = array(
5901
-            0                          => array($this->get_primary_key_field()->get_name() => $id),
5902
-            'default_where_conditions' => EEM_Base::default_where_conditions_others_only,
5903
-        );
5904
-        return $this->update($fields_n_values, $query_params);
5905
-    }
5906
-
5907
-
5908
-
5909
-    /**
5910
-     * Changes an operator which was supplied to the models into one usable in SQL
5911
-     *
5912
-     * @param string $operator_supplied
5913
-     * @return string an operator which can be used in SQL
5914
-     * @throws EE_Error
5915
-     */
5916
-    private function _prepare_operator_for_sql($operator_supplied)
5917
-    {
5918
-        $sql_operator = isset($this->_valid_operators[ $operator_supplied ]) ? $this->_valid_operators[ $operator_supplied ]
5919
-            : null;
5920
-        if ($sql_operator) {
5921
-            return $sql_operator;
5922
-        }
5923
-        throw new EE_Error(
5924
-            sprintf(
5925
-                __(
5926
-                    "The operator '%s' is not in the list of valid operators: %s",
5927
-                    "event_espresso"
5928
-                ),
5929
-                $operator_supplied,
5930
-                implode(",", array_keys($this->_valid_operators))
5931
-            )
5932
-        );
5933
-    }
5934
-
5935
-
5936
-
5937
-    /**
5938
-     * Gets the valid operators
5939
-     * @return array keys are accepted strings, values are the SQL they are converted to
5940
-     */
5941
-    public function valid_operators()
5942
-    {
5943
-        return $this->_valid_operators;
5944
-    }
5945
-
5946
-
5947
-
5948
-    /**
5949
-     * Gets the between-style operators (take 2 arguments).
5950
-     * @return array keys are accepted strings, values are the SQL they are converted to
5951
-     */
5952
-    public function valid_between_style_operators()
5953
-    {
5954
-        return array_intersect(
5955
-            $this->valid_operators(),
5956
-            $this->_between_style_operators
5957
-        );
5958
-    }
5959
-
5960
-    /**
5961
-     * Gets the "like"-style operators (take a single argument, but it may contain wildcards)
5962
-     * @return array keys are accepted strings, values are the SQL they are converted to
5963
-     */
5964
-    public function valid_like_style_operators()
5965
-    {
5966
-        return array_intersect(
5967
-            $this->valid_operators(),
5968
-            $this->_like_style_operators
5969
-        );
5970
-    }
5971
-
5972
-    /**
5973
-     * Gets the "in"-style operators
5974
-     * @return array keys are accepted strings, values are the SQL they are converted to
5975
-     */
5976
-    public function valid_in_style_operators()
5977
-    {
5978
-        return array_intersect(
5979
-            $this->valid_operators(),
5980
-            $this->_in_style_operators
5981
-        );
5982
-    }
5983
-
5984
-    /**
5985
-     * Gets the "null"-style operators (accept no arguments)
5986
-     * @return array keys are accepted strings, values are the SQL they are converted to
5987
-     */
5988
-    public function valid_null_style_operators()
5989
-    {
5990
-        return array_intersect(
5991
-            $this->valid_operators(),
5992
-            $this->_null_style_operators
5993
-        );
5994
-    }
5995
-
5996
-    /**
5997
-     * Gets an array where keys are the primary keys and values are their 'names'
5998
-     * (as determined by the model object's name() function, which is often overridden)
5999
-     *
6000
-     * @param array $query_params like get_all's
6001
-     * @return string[]
6002
-     * @throws EE_Error
6003
-     */
6004
-    public function get_all_names($query_params = array())
6005
-    {
6006
-        $objs = $this->get_all($query_params);
6007
-        $names = array();
6008
-        foreach ($objs as $obj) {
6009
-            $names[ $obj->ID() ] = $obj->name();
6010
-        }
6011
-        return $names;
6012
-    }
6013
-
6014
-
6015
-
6016
-    /**
6017
-     * Gets an array of primary keys from the model objects. If you acquired the model objects
6018
-     * using EEM_Base::get_all() you don't need to call this (and probably shouldn't because
6019
-     * this is duplicated effort and reduces efficiency) you would be better to use
6020
-     * array_keys() on $model_objects.
6021
-     *
6022
-     * @param \EE_Base_Class[] $model_objects
6023
-     * @param boolean          $filter_out_empty_ids if a model object has an ID of '' or 0, don't bother including it
6024
-     *                                               in the returned array
6025
-     * @return array
6026
-     * @throws EE_Error
6027
-     */
6028
-    public function get_IDs($model_objects, $filter_out_empty_ids = false)
6029
-    {
6030
-        if (! $this->has_primary_key_field()) {
6031
-            if (WP_DEBUG) {
6032
-                EE_Error::add_error(
6033
-                    __('Trying to get IDs from a model than has no primary key', 'event_espresso'),
6034
-                    __FILE__,
6035
-                    __FUNCTION__,
6036
-                    __LINE__
6037
-                );
6038
-            }
6039
-        }
6040
-        $IDs = array();
6041
-        foreach ($model_objects as $model_object) {
6042
-            $id = $model_object->ID();
6043
-            if (! $id) {
6044
-                if ($filter_out_empty_ids) {
6045
-                    continue;
6046
-                }
6047
-                if (WP_DEBUG) {
6048
-                    EE_Error::add_error(
6049
-                        __(
6050
-                            'Called %1$s on a model object that has no ID and so probably hasn\'t been saved to the database',
6051
-                            'event_espresso'
6052
-                        ),
6053
-                        __FILE__,
6054
-                        __FUNCTION__,
6055
-                        __LINE__
6056
-                    );
6057
-                }
6058
-            }
6059
-            $IDs[] = $id;
6060
-        }
6061
-        return $IDs;
6062
-    }
6063
-
6064
-
6065
-
6066
-    /**
6067
-     * Returns the string used in capabilities relating to this model. If there
6068
-     * are no capabilities that relate to this model returns false
6069
-     *
6070
-     * @return string|false
6071
-     */
6072
-    public function cap_slug()
6073
-    {
6074
-        return apply_filters('FHEE__EEM_Base__cap_slug', $this->_caps_slug, $this);
6075
-    }
6076
-
6077
-
6078
-
6079
-    /**
6080
-     * Returns the capability-restrictions array (@see EEM_Base::_cap_restrictions).
6081
-     * If $context is provided (which should be set to one of EEM_Base::valid_cap_contexts())
6082
-     * only returns the cap restrictions array in that context (ie, the array
6083
-     * at that key)
6084
-     *
6085
-     * @param string $context
6086
-     * @return EE_Default_Where_Conditions[] indexed by associated capability
6087
-     * @throws EE_Error
6088
-     */
6089
-    public function cap_restrictions($context = EEM_Base::caps_read)
6090
-    {
6091
-        EEM_Base::verify_is_valid_cap_context($context);
6092
-        // check if we ought to run the restriction generator first
6093
-        if (isset($this->_cap_restriction_generators[ $context ])
6094
-            && $this->_cap_restriction_generators[ $context ] instanceof EE_Restriction_Generator_Base
6095
-            && ! $this->_cap_restriction_generators[ $context ]->has_generated_cap_restrictions()
6096
-        ) {
6097
-            $this->_cap_restrictions[ $context ] = array_merge(
6098
-                $this->_cap_restrictions[ $context ],
6099
-                $this->_cap_restriction_generators[ $context ]->generate_restrictions()
6100
-            );
6101
-        }
6102
-        // and make sure we've finalized the construction of each restriction
6103
-        foreach ($this->_cap_restrictions[ $context ] as $where_conditions_obj) {
6104
-            if ($where_conditions_obj instanceof EE_Default_Where_Conditions) {
6105
-                $where_conditions_obj->_finalize_construct($this);
6106
-            }
6107
-        }
6108
-        return $this->_cap_restrictions[ $context ];
6109
-    }
6110
-
6111
-
6112
-
6113
-    /**
6114
-     * Indicating whether or not this model thinks its a wp core model
6115
-     *
6116
-     * @return boolean
6117
-     */
6118
-    public function is_wp_core_model()
6119
-    {
6120
-        return $this->_wp_core_model;
6121
-    }
6122
-
6123
-
6124
-
6125
-    /**
6126
-     * Gets all the caps that are missing which impose a restriction on
6127
-     * queries made in this context
6128
-     *
6129
-     * @param string $context one of EEM_Base::caps_ constants
6130
-     * @return EE_Default_Where_Conditions[] indexed by capability name
6131
-     * @throws EE_Error
6132
-     */
6133
-    public function caps_missing($context = EEM_Base::caps_read)
6134
-    {
6135
-        $missing_caps = array();
6136
-        $cap_restrictions = $this->cap_restrictions($context);
6137
-        foreach ($cap_restrictions as $cap => $restriction_if_no_cap) {
6138
-            if (! EE_Capabilities::instance()
6139
-                                 ->current_user_can($cap, $this->get_this_model_name() . '_model_applying_caps')
6140
-            ) {
6141
-                $missing_caps[ $cap ] = $restriction_if_no_cap;
6142
-            }
6143
-        }
6144
-        return $missing_caps;
6145
-    }
6146
-
6147
-
6148
-
6149
-    /**
6150
-     * Gets the mapping from capability contexts to action strings used in capability names
6151
-     *
6152
-     * @return array keys are one of EEM_Base::valid_cap_contexts(), and values are usually
6153
-     * one of 'read', 'edit', or 'delete'
6154
-     */
6155
-    public function cap_contexts_to_cap_action_map()
6156
-    {
6157
-        return apply_filters(
6158
-            'FHEE__EEM_Base__cap_contexts_to_cap_action_map',
6159
-            $this->_cap_contexts_to_cap_action_map,
6160
-            $this
6161
-        );
6162
-    }
6163
-
6164
-
6165
-
6166
-    /**
6167
-     * Gets the action string for the specified capability context
6168
-     *
6169
-     * @param string $context
6170
-     * @return string one of EEM_Base::cap_contexts_to_cap_action_map() values
6171
-     * @throws EE_Error
6172
-     */
6173
-    public function cap_action_for_context($context)
6174
-    {
6175
-        $mapping = $this->cap_contexts_to_cap_action_map();
6176
-        if (isset($mapping[ $context ])) {
6177
-            return $mapping[ $context ];
6178
-        }
6179
-        if ($action = apply_filters('FHEE__EEM_Base__cap_action_for_context', null, $this, $mapping, $context)) {
6180
-            return $action;
6181
-        }
6182
-        throw new EE_Error(
6183
-            sprintf(
6184
-                __('Cannot find capability restrictions for context "%1$s", allowed values are:%2$s', 'event_espresso'),
6185
-                $context,
6186
-                implode(',', array_keys($this->cap_contexts_to_cap_action_map()))
6187
-            )
6188
-        );
6189
-    }
6190
-
6191
-
6192
-
6193
-    /**
6194
-     * Returns all the capability contexts which are valid when querying models
6195
-     *
6196
-     * @return array
6197
-     */
6198
-    public static function valid_cap_contexts()
6199
-    {
6200
-        return apply_filters('FHEE__EEM_Base__valid_cap_contexts', array(
6201
-            self::caps_read,
6202
-            self::caps_read_admin,
6203
-            self::caps_edit,
6204
-            self::caps_delete,
6205
-        ));
6206
-    }
6207
-
6208
-
6209
-
6210
-    /**
6211
-     * Returns all valid options for 'default_where_conditions'
6212
-     *
6213
-     * @return array
6214
-     */
6215
-    public static function valid_default_where_conditions()
6216
-    {
6217
-        return array(
6218
-            EEM_Base::default_where_conditions_all,
6219
-            EEM_Base::default_where_conditions_this_only,
6220
-            EEM_Base::default_where_conditions_others_only,
6221
-            EEM_Base::default_where_conditions_minimum_all,
6222
-            EEM_Base::default_where_conditions_minimum_others,
6223
-            EEM_Base::default_where_conditions_none
6224
-        );
6225
-    }
6226
-
6227
-    // public static function default_where_conditions_full
6228
-    /**
6229
-     * Verifies $context is one of EEM_Base::valid_cap_contexts(), if not it throws an exception
6230
-     *
6231
-     * @param string $context
6232
-     * @return bool
6233
-     * @throws EE_Error
6234
-     */
6235
-    public static function verify_is_valid_cap_context($context)
6236
-    {
6237
-        $valid_cap_contexts = EEM_Base::valid_cap_contexts();
6238
-        if (in_array($context, $valid_cap_contexts)) {
6239
-            return true;
6240
-        }
6241
-        throw new EE_Error(
6242
-            sprintf(
6243
-                __(
6244
-                    'Context "%1$s" passed into model "%2$s" is not a valid context. They are: %3$s',
6245
-                    'event_espresso'
6246
-                ),
6247
-                $context,
6248
-                'EEM_Base',
6249
-                implode(',', $valid_cap_contexts)
6250
-            )
6251
-        );
6252
-    }
6253
-
6254
-
6255
-
6256
-    /**
6257
-     * Clears all the models field caches. This is only useful when a sub-class
6258
-     * might have added a field or something and these caches might be invalidated
6259
-     */
6260
-    protected function _invalidate_field_caches()
6261
-    {
6262
-        $this->_cache_foreign_key_to_fields = array();
6263
-        $this->_cached_fields = null;
6264
-        $this->_cached_fields_non_db_only = null;
6265
-    }
6266
-
6267
-
6268
-
6269
-    /**
6270
-     * Gets the list of all the where query param keys that relate to logic instead of field names
6271
-     * (eg "and", "or", "not").
6272
-     *
6273
-     * @return array
6274
-     */
6275
-    public function logic_query_param_keys()
6276
-    {
6277
-        return $this->_logic_query_param_keys;
6278
-    }
6279
-
6280
-
6281
-
6282
-    /**
6283
-     * Determines whether or not the where query param array key is for a logic query param.
6284
-     * Eg 'OR', 'not*', and 'and*because-i-say-so' should all return true, whereas
6285
-     * 'ATT_fname', 'EVT_name*not-you-or-me', and 'ORG_name' should return false
6286
-     *
6287
-     * @param $query_param_key
6288
-     * @return bool
6289
-     */
6290
-    public function is_logic_query_param_key($query_param_key)
6291
-    {
6292
-        foreach ($this->logic_query_param_keys() as $logic_query_param_key) {
6293
-            if ($query_param_key === $logic_query_param_key
6294
-                || strpos($query_param_key, $logic_query_param_key . '*') === 0
6295
-            ) {
6296
-                return true;
6297
-            }
6298
-        }
6299
-        return false;
6300
-    }
6301
-
6302
-    /**
6303
-     * Returns true if this model has a password field on it (regardless of whether that password field has any content)
6304
-     * @since $VID:$
6305
-     * @return boolean
6306
-     */
6307
-    public function hasPassword()
6308
-    {
6309
-        // if we don't yet know if there's a password field, find out and remember it for next time.
6310
-        if ($this->has_password_field === null) {
6311
-            $password_field = $this->getPasswordField();
6312
-            $this->has_password_field = $password_field instanceof EE_Password_Field ? true : false;
6313
-        }
6314
-        return $this->has_password_field;
6315
-    }
6316
-
6317
-    /**
6318
-     * Returns the password field on this model, if there is one
6319
-     * @since $VID:$
6320
-     * @return EE_Password_Field|null
6321
-     */
6322
-    public function getPasswordField()
6323
-    {
6324
-        // if we definetely already know there is a password field or not (because has_password_field is true or false)
6325
-        // there's no need to search for it. If we don't know yet, then find out
6326
-        if ($this->has_password_field === null && $this->password_field === null) {
6327
-            $this->password_field = $this->get_a_field_of_type('EE_Password_Field');
6328
-        }
6329
-        // don't bother setting has_password_field because that's hasPassword()'s job.
6330
-        return $this->password_field;
6331
-    }
6332
-
6333
-
6334
-    /**
6335
-     * Returns the list of field (as EE_Model_Field_Bases) that are protected by the password
6336
-     * @since $VID:$
6337
-     * @return EE_Model_Field_Base[]
6338
-     * @throws EE_Error
6339
-     */
6340
-    public function getPasswordProtectedFields()
6341
-    {
6342
-        $password_field = $this->getPasswordField();
6343
-        $fields = array();
6344
-        if ($password_field instanceof EE_Password_Field) {
6345
-            $field_names = $password_field->protectedFields();
6346
-            foreach ($field_names as $field_name) {
6347
-                $fields[ $field_name ] = $this->field_settings_for($field_name);
6348
-            }
6349
-        }
6350
-        return $fields;
6351
-    }
6352
-
6353
-
6354
-    /**
6355
-     * Checks if the current user can perform the requested action on this model
6356
-     * @since $VID:$
6357
-     * @param string $cap_to_check one of the array keys from _cap_contexts_to_cap_action_map
6358
-     * @param EE_Base_Class|array $model_obj_or_fields_n_values
6359
-     * @return bool
6360
-     * @throws EE_Error
6361
-     * @throws InvalidArgumentException
6362
-     * @throws InvalidDataTypeException
6363
-     * @throws InvalidInterfaceException
6364
-     * @throws ReflectionException
6365
-     * @throws UnexpectedEntityException
6366
-     */
6367
-    public function currentUserCan($cap_to_check, $model_obj_or_fields_n_values)
6368
-    {
6369
-        if ($model_obj_or_fields_n_values instanceof EE_Base_Class) {
6370
-            $model_obj_or_fields_n_values = $model_obj_or_fields_n_values->model_field_array();
6371
-        }
6372
-        if (!is_array($model_obj_or_fields_n_values)) {
6373
-            throw new UnexpectedEntityException(
6374
-                $model_obj_or_fields_n_values,
6375
-                'EE_Base_Class',
6376
-                sprintf(
6377
-                    esc_html__('%1$s must be passed an `EE_Base_Class or an array of fields names with their values. You passed in something different.', 'event_espresso'),
6378
-                    __FUNCTION__
6379
-                )
6380
-            );
6381
-        }
6382
-        return $this->exists(
6383
-            $this->alter_query_params_to_restrict_by_ID(
6384
-                $this->get_index_primary_key_string($model_obj_or_fields_n_values),
6385
-                array(
6386
-                    'default_where_conditions' => 'none',
6387
-                    'caps'                     => $cap_to_check,
6388
-                )
6389
-            )
6390
-        );
6391
-    }
6392
-
6393
-    /**
6394
-     * Returns the query param where conditions key to the password affecting this model.
6395
-     * Eg on EEM_Event this would just be "password", on EEM_Datetime this would be "Event.password", etc.
6396
-     * @since $VID:$
6397
-     * @return null|string
6398
-     * @throws EE_Error
6399
-     * @throws InvalidArgumentException
6400
-     * @throws InvalidDataTypeException
6401
-     * @throws InvalidInterfaceException
6402
-     * @throws ModelConfigurationException
6403
-     * @throws ReflectionException
6404
-     */
6405
-    public function modelChainAndPassword()
6406
-    {
6407
-        if ($this->model_chain_to_password === null) {
6408
-            throw new ModelConfigurationException(
6409
-                $this,
6410
-                esc_html_x(
6411
-                // @codingStandardsIgnoreStart
6412
-                    'Cannot exclude protected data because the model has not specified which model has the password.',
6413
-                    // @codingStandardsIgnoreEnd
6414
-                    '1: model name',
6415
-                    'event_espresso'
6416
-                )
6417
-            );
6418
-        }
6419
-        if ($this->model_chain_to_password === '') {
6420
-            $model_with_password = $this;
6421
-        } else {
6422
-            if ($pos_of_period = strrpos($this->model_chain_to_password, '.')) {
6423
-                $last_model_in_chain = substr($this->model_chain_to_password, $pos_of_period + 1);
6424
-            } else {
6425
-                $last_model_in_chain = $this->model_chain_to_password;
6426
-            }
6427
-            $model_with_password = EE_Registry::instance()->load_model($last_model_in_chain);
6428
-        }
6429
-
6430
-        $password_field = $model_with_password->getPasswordField();
6431
-        if ($password_field instanceof EE_Password_Field) {
6432
-            $password_field_name = $password_field->get_name();
6433
-        } else {
6434
-            throw new ModelConfigurationException(
6435
-                $this,
6436
-                sprintf(
6437
-                    esc_html_x(
6438
-                        'This model claims related model "%1$s" should have a password field on it, but none was found. The model relation chain is "%2$s"',
6439
-                        '1: model name, 2: special string',
6440
-                        'event_espresso'
6441
-                    ),
6442
-                    $model_with_password->get_this_model_name(),
6443
-                    $this->model_chain_to_password
6444
-                )
6445
-            );
6446
-        }
6447
-        return ($this->model_chain_to_password ? $this->model_chain_to_password . '.' : '') . $password_field_name;
6448
-    }
6449
-
6450
-    /**
6451
-     * Returns true if there is a password on a related model which restricts access to some of this model's rows,
6452
-     * or if this model itself has a password affecting access to some of its other fields.
6453
-     * @since $VID:$
6454
-     * @return boolean
6455
-     */
6456
-    public function restrictedByRelatedModelPassword()
6457
-    {
6458
-        return $this->model_chain_to_password !== null;
6459
-    }
3787
+		}
3788
+		return $null_friendly_where_conditions;
3789
+	}
3790
+
3791
+
3792
+
3793
+	/**
3794
+	 * Uses the _default_where_conditions_strategy set during __construct() to get
3795
+	 * default where conditions on all get_all, update, and delete queries done by this model.
3796
+	 * Use the same syntax as client code. Eg on the Event model, use array('Event.EVT_post_type'=>'esp_event'),
3797
+	 * NOT array('Event_CPT.post_type'=>'esp_event').
3798
+	 *
3799
+	 * @param string $model_relation_path eg, path from Event to Payment is "Registration.Transaction.Payment."
3800
+	 * @return array @see https://github.com/eventespresso/event-espresso-core/tree/master/docs/G--Model-System/model-query-params.md#0-where-conditions
3801
+	 */
3802
+	private function _get_default_where_conditions($model_relation_path = null)
3803
+	{
3804
+		if ($this->_ignore_where_strategy) {
3805
+			return array();
3806
+		}
3807
+		return $this->_default_where_conditions_strategy->get_default_where_conditions($model_relation_path);
3808
+	}
3809
+
3810
+
3811
+
3812
+	/**
3813
+	 * Uses the _minimum_where_conditions_strategy set during __construct() to get
3814
+	 * minimum where conditions on all get_all, update, and delete queries done by this model.
3815
+	 * Use the same syntax as client code. Eg on the Event model, use array('Event.EVT_post_type'=>'esp_event'),
3816
+	 * NOT array('Event_CPT.post_type'=>'esp_event').
3817
+	 * Similar to _get_default_where_conditions
3818
+	 *
3819
+	 * @param string $model_relation_path eg, path from Event to Payment is "Registration.Transaction.Payment."
3820
+	 * @return array @see https://github.com/eventespresso/event-espresso-core/tree/master/docs/G--Model-System/model-query-params.md#0-where-conditions
3821
+	 */
3822
+	protected function _get_minimum_where_conditions($model_relation_path = null)
3823
+	{
3824
+		if ($this->_ignore_where_strategy) {
3825
+			return array();
3826
+		}
3827
+		return $this->_minimum_where_conditions_strategy->get_default_where_conditions($model_relation_path);
3828
+	}
3829
+
3830
+
3831
+
3832
+	/**
3833
+	 * Creates the string of SQL for the select part of a select query, everything behind SELECT and before FROM.
3834
+	 * Eg, "Event.post_id, Event.post_name,Event_Detail.EVT_ID..."
3835
+	 *
3836
+	 * @param EE_Model_Query_Info_Carrier $model_query_info
3837
+	 * @return string
3838
+	 * @throws EE_Error
3839
+	 */
3840
+	private function _construct_default_select_sql(EE_Model_Query_Info_Carrier $model_query_info)
3841
+	{
3842
+		$selects = $this->_get_columns_to_select_for_this_model();
3843
+		foreach ($model_query_info->get_model_names_included() as $model_relation_chain =>
3844
+			$name_of_other_model_included) {
3845
+			$other_model_included = $this->get_related_model_obj($name_of_other_model_included);
3846
+			$other_model_selects = $other_model_included->_get_columns_to_select_for_this_model($model_relation_chain);
3847
+			foreach ($other_model_selects as $key => $value) {
3848
+				$selects[] = $value;
3849
+			}
3850
+		}
3851
+		return implode(", ", $selects);
3852
+	}
3853
+
3854
+
3855
+
3856
+	/**
3857
+	 * Gets an array of columns to select for this model, which are necessary for it to create its objects.
3858
+	 * So that's going to be the columns for all the fields on the model
3859
+	 *
3860
+	 * @param string $model_relation_chain like 'Question.Question_Group.Event'
3861
+	 * @return array numerically indexed, values are columns to select and rename, eg "Event.ID AS 'Event.ID'"
3862
+	 */
3863
+	public function _get_columns_to_select_for_this_model($model_relation_chain = '')
3864
+	{
3865
+		$fields = $this->field_settings();
3866
+		$selects = array();
3867
+		$table_alias_with_model_relation_chain_prefix = EE_Model_Parser::extract_table_alias_model_relation_chain_prefix(
3868
+			$model_relation_chain,
3869
+			$this->get_this_model_name()
3870
+		);
3871
+		foreach ($fields as $field_obj) {
3872
+			$selects[] = $table_alias_with_model_relation_chain_prefix
3873
+						 . $field_obj->get_table_alias()
3874
+						 . "."
3875
+						 . $field_obj->get_table_column()
3876
+						 . " AS '"
3877
+						 . $table_alias_with_model_relation_chain_prefix
3878
+						 . $field_obj->get_table_alias()
3879
+						 . "."
3880
+						 . $field_obj->get_table_column()
3881
+						 . "'";
3882
+		}
3883
+		// make sure we are also getting the PKs of each table
3884
+		$tables = $this->get_tables();
3885
+		if (count($tables) > 1) {
3886
+			foreach ($tables as $table_obj) {
3887
+				$qualified_pk_column = $table_alias_with_model_relation_chain_prefix
3888
+									   . $table_obj->get_fully_qualified_pk_column();
3889
+				if (! in_array($qualified_pk_column, $selects)) {
3890
+					$selects[] = "$qualified_pk_column AS '$qualified_pk_column'";
3891
+				}
3892
+			}
3893
+		}
3894
+		return $selects;
3895
+	}
3896
+
3897
+
3898
+
3899
+	/**
3900
+	 * Given a $query_param like 'Registration.Transaction.TXN_ID', pops off 'Registration.',
3901
+	 * gets the join statement for it; gets the data types for it; and passes the remaining 'Transaction.TXN_ID'
3902
+	 * onto its related Transaction object to do the same. Returns an EE_Join_And_Data_Types object which contains the
3903
+	 * SQL for joining, and the data types
3904
+	 *
3905
+	 * @param null|string                 $original_query_param
3906
+	 * @param string                      $query_param          like Registration.Transaction.TXN_ID
3907
+	 * @param EE_Model_Query_Info_Carrier $passed_in_query_info
3908
+	 * @param    string                   $query_param_type     like Registration.Transaction.TXN_ID
3909
+	 *                                                          or 'PAY_ID'. Otherwise, we don't expect there to be a
3910
+	 *                                                          column name. We only want model names, eg 'Event.Venue'
3911
+	 *                                                          or 'Registration's
3912
+	 * @param string                      $original_query_param what it originally was (eg
3913
+	 *                                                          Registration.Transaction.TXN_ID). If null, we assume it
3914
+	 *                                                          matches $query_param
3915
+	 * @throws EE_Error
3916
+	 * @return void only modifies the EEM_Related_Model_Info_Carrier passed into it
3917
+	 */
3918
+	private function _extract_related_model_info_from_query_param(
3919
+		$query_param,
3920
+		EE_Model_Query_Info_Carrier $passed_in_query_info,
3921
+		$query_param_type,
3922
+		$original_query_param = null
3923
+	) {
3924
+		if ($original_query_param === null) {
3925
+			$original_query_param = $query_param;
3926
+		}
3927
+		$query_param = $this->_remove_stars_and_anything_after_from_condition_query_param_key($query_param);
3928
+		/** @var $allow_logic_query_params bool whether or not to allow logic_query_params like 'NOT','OR', or 'AND' */
3929
+		$allow_logic_query_params = in_array($query_param_type, array('where', 'having', 0, 'custom_selects'), true);
3930
+		$allow_fields = in_array(
3931
+			$query_param_type,
3932
+			array('where', 'having', 'order_by', 'group_by', 'order', 'custom_selects', 0),
3933
+			true
3934
+		);
3935
+		// check to see if we have a field on this model
3936
+		$this_model_fields = $this->field_settings(true);
3937
+		if (array_key_exists($query_param, $this_model_fields)) {
3938
+			if ($allow_fields) {
3939
+				return;
3940
+			}
3941
+			throw new EE_Error(
3942
+				sprintf(
3943
+					__(
3944
+						"Using a field name (%s) on model %s is not allowed on this query param type '%s'. Original query param was %s",
3945
+						"event_espresso"
3946
+					),
3947
+					$query_param,
3948
+					get_class($this),
3949
+					$query_param_type,
3950
+					$original_query_param
3951
+				)
3952
+			);
3953
+		}
3954
+		// check if this is a special logic query param
3955
+		if (in_array($query_param, $this->_logic_query_param_keys, true)) {
3956
+			if ($allow_logic_query_params) {
3957
+				return;
3958
+			}
3959
+			throw new EE_Error(
3960
+				sprintf(
3961
+					__(
3962
+						'Logic query params ("%1$s") are being used incorrectly with the following query param ("%2$s") on model %3$s. %4$sAdditional Info:%4$s%5$s',
3963
+						'event_espresso'
3964
+					),
3965
+					implode('", "', $this->_logic_query_param_keys),
3966
+					$query_param,
3967
+					get_class($this),
3968
+					'<br />',
3969
+					"\t"
3970
+					. ' $passed_in_query_info = <pre>'
3971
+					. print_r($passed_in_query_info, true)
3972
+					. '</pre>'
3973
+					. "\n\t"
3974
+					. ' $query_param_type = '
3975
+					. $query_param_type
3976
+					. "\n\t"
3977
+					. ' $original_query_param = '
3978
+					. $original_query_param
3979
+				)
3980
+			);
3981
+		}
3982
+		// check if it's a custom selection
3983
+		if ($this->_custom_selections instanceof CustomSelects
3984
+			&& in_array($query_param, $this->_custom_selections->columnAliases(), true)
3985
+		) {
3986
+			return;
3987
+		}
3988
+		// check if has a model name at the beginning
3989
+		// and
3990
+		// check if it's a field on a related model
3991
+		if ($this->extractJoinModelFromQueryParams(
3992
+			$passed_in_query_info,
3993
+			$query_param,
3994
+			$original_query_param,
3995
+			$query_param_type
3996
+		)) {
3997
+			return;
3998
+		}
3999
+
4000
+		// ok so $query_param didn't start with a model name
4001
+		// and we previously confirmed it wasn't a logic query param or field on the current model
4002
+		// it's wack, that's what it is
4003
+		throw new EE_Error(
4004
+			sprintf(
4005
+				esc_html__(
4006
+					"There is no model named '%s' related to %s. Query param type is %s and original query param is %s",
4007
+					"event_espresso"
4008
+				),
4009
+				$query_param,
4010
+				get_class($this),
4011
+				$query_param_type,
4012
+				$original_query_param
4013
+			)
4014
+		);
4015
+	}
4016
+
4017
+
4018
+	/**
4019
+	 * Extracts any possible join model information from the provided possible_join_string.
4020
+	 * This method will read the provided $possible_join_string value and determine if there are any possible model join
4021
+	 * parts that should be added to the query.
4022
+	 *
4023
+	 * @param EE_Model_Query_Info_Carrier $query_info_carrier
4024
+	 * @param string                      $possible_join_string  Such as Registration.REG_ID, or Registration
4025
+	 * @param null|string                 $original_query_param
4026
+	 * @param string                      $query_parameter_type  The type for the source of the $possible_join_string
4027
+	 *                                                           ('where', 'order_by', 'group_by', 'custom_selects' etc.)
4028
+	 * @return bool  returns true if a join was added and false if not.
4029
+	 * @throws EE_Error
4030
+	 */
4031
+	private function extractJoinModelFromQueryParams(
4032
+		EE_Model_Query_Info_Carrier $query_info_carrier,
4033
+		$possible_join_string,
4034
+		$original_query_param,
4035
+		$query_parameter_type
4036
+	) {
4037
+		foreach ($this->_model_relations as $valid_related_model_name => $relation_obj) {
4038
+			if (strpos($possible_join_string, $valid_related_model_name . ".") === 0) {
4039
+				$this->_add_join_to_model($valid_related_model_name, $query_info_carrier, $original_query_param);
4040
+				$possible_join_string = substr($possible_join_string, strlen($valid_related_model_name . "."));
4041
+				if ($possible_join_string === '') {
4042
+					// nothing left to $query_param
4043
+					// we should actually end in a field name, not a model like this!
4044
+					throw new EE_Error(
4045
+						sprintf(
4046
+							esc_html__(
4047
+								"Query param '%s' (of type %s on model %s) shouldn't end on a period (.) ",
4048
+								"event_espresso"
4049
+							),
4050
+							$possible_join_string,
4051
+							$query_parameter_type,
4052
+							get_class($this),
4053
+							$valid_related_model_name
4054
+						)
4055
+					);
4056
+				}
4057
+				$related_model_obj = $this->get_related_model_obj($valid_related_model_name);
4058
+				$related_model_obj->_extract_related_model_info_from_query_param(
4059
+					$possible_join_string,
4060
+					$query_info_carrier,
4061
+					$query_parameter_type,
4062
+					$original_query_param
4063
+				);
4064
+				return true;
4065
+			}
4066
+			if ($possible_join_string === $valid_related_model_name) {
4067
+				$this->_add_join_to_model(
4068
+					$valid_related_model_name,
4069
+					$query_info_carrier,
4070
+					$original_query_param
4071
+				);
4072
+				return true;
4073
+			}
4074
+		}
4075
+		return false;
4076
+	}
4077
+
4078
+
4079
+	/**
4080
+	 * Extracts related models from Custom Selects and sets up any joins for those related models.
4081
+	 * @param EE_Model_Query_Info_Carrier $query_info_carrier
4082
+	 * @throws EE_Error
4083
+	 */
4084
+	private function extractRelatedModelsFromCustomSelects(EE_Model_Query_Info_Carrier $query_info_carrier)
4085
+	{
4086
+		if ($this->_custom_selections instanceof CustomSelects
4087
+			&& ($this->_custom_selections->type() === CustomSelects::TYPE_STRUCTURED
4088
+				|| $this->_custom_selections->type() == CustomSelects::TYPE_COMPLEX
4089
+			)
4090
+		) {
4091
+			$original_selects = $this->_custom_selections->originalSelects();
4092
+			foreach ($original_selects as $alias => $select_configuration) {
4093
+				$this->extractJoinModelFromQueryParams(
4094
+					$query_info_carrier,
4095
+					$select_configuration[0],
4096
+					$select_configuration[0],
4097
+					'custom_selects'
4098
+				);
4099
+			}
4100
+		}
4101
+	}
4102
+
4103
+
4104
+
4105
+	/**
4106
+	 * Privately used by _extract_related_model_info_from_query_param to add a join to $model_name
4107
+	 * and store it on $passed_in_query_info
4108
+	 *
4109
+	 * @param string                      $model_name
4110
+	 * @param EE_Model_Query_Info_Carrier $passed_in_query_info
4111
+	 * @param string                      $original_query_param used to extract the relation chain between the queried
4112
+	 *                                                          model and $model_name. Eg, if we are querying Event,
4113
+	 *                                                          and are adding a join to 'Payment' with the original
4114
+	 *                                                          query param key
4115
+	 *                                                          'Registration.Transaction.Payment.PAY_amount', we want
4116
+	 *                                                          to extract 'Registration.Transaction.Payment', in case
4117
+	 *                                                          Payment wants to add default query params so that it
4118
+	 *                                                          will know what models to prepend onto its default query
4119
+	 *                                                          params or in case it wants to rename tables (in case
4120
+	 *                                                          there are multiple joins to the same table)
4121
+	 * @return void
4122
+	 * @throws EE_Error
4123
+	 */
4124
+	private function _add_join_to_model(
4125
+		$model_name,
4126
+		EE_Model_Query_Info_Carrier $passed_in_query_info,
4127
+		$original_query_param
4128
+	) {
4129
+		$relation_obj = $this->related_settings_for($model_name);
4130
+		$model_relation_chain = EE_Model_Parser::extract_model_relation_chain($model_name, $original_query_param);
4131
+		// check if the relation is HABTM, because then we're essentially doing two joins
4132
+		// If so, join first to the JOIN table, and add its data types, and then continue as normal
4133
+		if ($relation_obj instanceof EE_HABTM_Relation) {
4134
+			$join_model_obj = $relation_obj->get_join_model();
4135
+			// replace the model specified with the join model for this relation chain, whi
4136
+			$relation_chain_to_join_model = EE_Model_Parser::replace_model_name_with_join_model_name_in_model_relation_chain(
4137
+				$model_name,
4138
+				$join_model_obj->get_this_model_name(),
4139
+				$model_relation_chain
4140
+			);
4141
+			$passed_in_query_info->merge(
4142
+				new EE_Model_Query_Info_Carrier(
4143
+					array($relation_chain_to_join_model => $join_model_obj->get_this_model_name()),
4144
+					$relation_obj->get_join_to_intermediate_model_statement($relation_chain_to_join_model)
4145
+				)
4146
+			);
4147
+		}
4148
+		// now just join to the other table pointed to by the relation object, and add its data types
4149
+		$passed_in_query_info->merge(
4150
+			new EE_Model_Query_Info_Carrier(
4151
+				array($model_relation_chain => $model_name),
4152
+				$relation_obj->get_join_statement($model_relation_chain)
4153
+			)
4154
+		);
4155
+	}
4156
+
4157
+
4158
+
4159
+	/**
4160
+	 * Constructs SQL for where clause, like "WHERE Event.ID = 23 AND Transaction.amount > 100" etc.
4161
+	 *
4162
+	 * @param array $where_params @see https://github.com/eventespresso/event-espresso-core/tree/master/docs/G--Model-System/model-query-params.md#0-where-conditions
4163
+	 * @return string of SQL
4164
+	 * @throws EE_Error
4165
+	 */
4166
+	private function _construct_where_clause($where_params)
4167
+	{
4168
+		$SQL = $this->_construct_condition_clause_recursive($where_params, ' AND ');
4169
+		if ($SQL) {
4170
+			return " WHERE " . $SQL;
4171
+		}
4172
+		return '';
4173
+	}
4174
+
4175
+
4176
+
4177
+	/**
4178
+	 * Just like the _construct_where_clause, except prepends 'HAVING' instead of 'WHERE',
4179
+	 * and should be passed HAVING parameters, not WHERE parameters
4180
+	 *
4181
+	 * @param array $having_params
4182
+	 * @return string
4183
+	 * @throws EE_Error
4184
+	 */
4185
+	private function _construct_having_clause($having_params)
4186
+	{
4187
+		$SQL = $this->_construct_condition_clause_recursive($having_params, ' AND ');
4188
+		if ($SQL) {
4189
+			return " HAVING " . $SQL;
4190
+		}
4191
+		return '';
4192
+	}
4193
+
4194
+
4195
+	/**
4196
+	 * Used for creating nested WHERE conditions. Eg "WHERE ! (Event.ID = 3 OR ( Event_Meta.meta_key = 'bob' AND
4197
+	 * Event_Meta.meta_value = 'foo'))"
4198
+	 *
4199
+	 * @param array  $where_params @see https://github.com/eventespresso/event-espresso-core/tree/master/docs/G--Model-System/model-query-params.md#0-where-conditions
4200
+	 * @param string $glue         joins each subclause together. Should really only be " AND " or " OR "...
4201
+	 * @throws EE_Error
4202
+	 * @return string of SQL
4203
+	 */
4204
+	private function _construct_condition_clause_recursive($where_params, $glue = ' AND')
4205
+	{
4206
+		$where_clauses = array();
4207
+		foreach ($where_params as $query_param => $op_and_value_or_sub_condition) {
4208
+			$query_param = $this->_remove_stars_and_anything_after_from_condition_query_param_key($query_param);// str_replace("*",'',$query_param);
4209
+			if (in_array($query_param, $this->_logic_query_param_keys)) {
4210
+				switch ($query_param) {
4211
+					case 'not':
4212
+					case 'NOT':
4213
+						$where_clauses[] = "! ("
4214
+										   . $this->_construct_condition_clause_recursive(
4215
+											   $op_and_value_or_sub_condition,
4216
+											   $glue
4217
+										   )
4218
+										   . ")";
4219
+						break;
4220
+					case 'and':
4221
+					case 'AND':
4222
+						$where_clauses[] = " ("
4223
+										   . $this->_construct_condition_clause_recursive(
4224
+											   $op_and_value_or_sub_condition,
4225
+											   ' AND '
4226
+										   )
4227
+										   . ")";
4228
+						break;
4229
+					case 'or':
4230
+					case 'OR':
4231
+						$where_clauses[] = " ("
4232
+										   . $this->_construct_condition_clause_recursive(
4233
+											   $op_and_value_or_sub_condition,
4234
+											   ' OR '
4235
+										   )
4236
+										   . ")";
4237
+						break;
4238
+				}
4239
+			} else {
4240
+				$field_obj = $this->_deduce_field_from_query_param($query_param);
4241
+				// if it's not a normal field, maybe it's a custom selection?
4242
+				if (! $field_obj) {
4243
+					if ($this->_custom_selections instanceof CustomSelects) {
4244
+						$field_obj = $this->_custom_selections->getDataTypeForAlias($query_param);
4245
+					} else {
4246
+						throw new EE_Error(sprintf(__(
4247
+							"%s is neither a valid model field name, nor a custom selection",
4248
+							"event_espresso"
4249
+						), $query_param));
4250
+					}
4251
+				}
4252
+				$op_and_value_sql = $this->_construct_op_and_value($op_and_value_or_sub_condition, $field_obj);
4253
+				$where_clauses[] = $this->_deduce_column_name_from_query_param($query_param) . SP . $op_and_value_sql;
4254
+			}
4255
+		}
4256
+		return $where_clauses ? implode($glue, $where_clauses) : '';
4257
+	}
4258
+
4259
+
4260
+
4261
+	/**
4262
+	 * Takes the input parameter and extract the table name (alias) and column name
4263
+	 *
4264
+	 * @param string $query_param like Registration.Transaction.TXN_ID, Event.Datetime.start_time, or REG_ID
4265
+	 * @throws EE_Error
4266
+	 * @return string table alias and column name for SQL, eg "Transaction.TXN_ID"
4267
+	 */
4268
+	private function _deduce_column_name_from_query_param($query_param)
4269
+	{
4270
+		$field = $this->_deduce_field_from_query_param($query_param);
4271
+		if ($field) {
4272
+			$table_alias_prefix = EE_Model_Parser::extract_table_alias_model_relation_chain_from_query_param(
4273
+				$field->get_model_name(),
4274
+				$query_param
4275
+			);
4276
+			return $table_alias_prefix . $field->get_qualified_column();
4277
+		}
4278
+		if ($this->_custom_selections instanceof CustomSelects
4279
+			&& in_array($query_param, $this->_custom_selections->columnAliases(), true)
4280
+		) {
4281
+			// maybe it's custom selection item?
4282
+			// if so, just use it as the "column name"
4283
+			return $query_param;
4284
+		}
4285
+		$custom_select_aliases = $this->_custom_selections instanceof CustomSelects
4286
+			? implode(',', $this->_custom_selections->columnAliases())
4287
+			: '';
4288
+		throw new EE_Error(
4289
+			sprintf(
4290
+				__(
4291
+					"%s is not a valid field on this model, nor a custom selection (%s)",
4292
+					"event_espresso"
4293
+				),
4294
+				$query_param,
4295
+				$custom_select_aliases
4296
+			)
4297
+		);
4298
+	}
4299
+
4300
+
4301
+
4302
+	/**
4303
+	 * Removes the * and anything after it from the condition query param key. It is useful to add the * to condition
4304
+	 * query param keys (eg, 'OR*', 'EVT_ID') in order for the array keys to still be unique, so that they don't get
4305
+	 * overwritten Takes a string like 'Event.EVT_ID*', 'TXN_total**', 'OR*1st', and 'DTT_reg_start*foobar' to
4306
+	 * 'Event.EVT_ID', 'TXN_total', 'OR', and 'DTT_reg_start', respectively.
4307
+	 *
4308
+	 * @param string $condition_query_param_key
4309
+	 * @return string
4310
+	 */
4311
+	private function _remove_stars_and_anything_after_from_condition_query_param_key($condition_query_param_key)
4312
+	{
4313
+		$pos_of_star = strpos($condition_query_param_key, '*');
4314
+		if ($pos_of_star === false) {
4315
+			return $condition_query_param_key;
4316
+		}
4317
+		$condition_query_param_sans_star = substr($condition_query_param_key, 0, $pos_of_star);
4318
+		return $condition_query_param_sans_star;
4319
+	}
4320
+
4321
+
4322
+
4323
+	/**
4324
+	 * creates the SQL for the operator and the value in a WHERE clause, eg "< 23" or "LIKE '%monkey%'"
4325
+	 *
4326
+	 * @param                            mixed      array | string    $op_and_value
4327
+	 * @param EE_Model_Field_Base|string $field_obj . If string, should be one of EEM_Base::_valid_wpdb_data_types
4328
+	 * @throws EE_Error
4329
+	 * @return string
4330
+	 */
4331
+	private function _construct_op_and_value($op_and_value, $field_obj)
4332
+	{
4333
+		if (is_array($op_and_value)) {
4334
+			$operator = isset($op_and_value[0]) ? $this->_prepare_operator_for_sql($op_and_value[0]) : null;
4335
+			if (! $operator) {
4336
+				$php_array_like_string = array();
4337
+				foreach ($op_and_value as $key => $value) {
4338
+					$php_array_like_string[] = "$key=>$value";
4339
+				}
4340
+				throw new EE_Error(
4341
+					sprintf(
4342
+						__(
4343
+							"You setup a query parameter like you were going to specify an operator, but didn't. You provided '(%s)', but the operator should be at array key index 0 (eg array('>',32))",
4344
+							"event_espresso"
4345
+						),
4346
+						implode(",", $php_array_like_string)
4347
+					)
4348
+				);
4349
+			}
4350
+			$value = isset($op_and_value[1]) ? $op_and_value[1] : null;
4351
+		} else {
4352
+			$operator = '=';
4353
+			$value = $op_and_value;
4354
+		}
4355
+		// check to see if the value is actually another field
4356
+		if (is_array($op_and_value) && isset($op_and_value[2]) && $op_and_value[2] == true) {
4357
+			return $operator . SP . $this->_deduce_column_name_from_query_param($value);
4358
+		}
4359
+		if (in_array($operator, $this->valid_in_style_operators()) && is_array($value)) {
4360
+			// in this case, the value should be an array, or at least a comma-separated list
4361
+			// it will need to handle a little differently
4362
+			$cleaned_value = $this->_construct_in_value($value, $field_obj);
4363
+			// note: $cleaned_value has already been run through $wpdb->prepare()
4364
+			return $operator . SP . $cleaned_value;
4365
+		}
4366
+		if (in_array($operator, $this->valid_between_style_operators()) && is_array($value)) {
4367
+			// the value should be an array with count of two.
4368
+			if (count($value) !== 2) {
4369
+				throw new EE_Error(
4370
+					sprintf(
4371
+						__(
4372
+							"The '%s' operator must be used with an array of values and there must be exactly TWO values in that array.",
4373
+							'event_espresso'
4374
+						),
4375
+						"BETWEEN"
4376
+					)
4377
+				);
4378
+			}
4379
+			$cleaned_value = $this->_construct_between_value($value, $field_obj);
4380
+			return $operator . SP . $cleaned_value;
4381
+		}
4382
+		if (in_array($operator, $this->valid_null_style_operators())) {
4383
+			if ($value !== null) {
4384
+				throw new EE_Error(
4385
+					sprintf(
4386
+						__(
4387
+							"You attempted to give a value  (%s) while using a NULL-style operator (%s). That isn't valid",
4388
+							"event_espresso"
4389
+						),
4390
+						$value,
4391
+						$operator
4392
+					)
4393
+				);
4394
+			}
4395
+			return $operator;
4396
+		}
4397
+		if (in_array($operator, $this->valid_like_style_operators()) && ! is_array($value)) {
4398
+			// if the operator is 'LIKE', we want to allow percent signs (%) and not
4399
+			// remove other junk. So just treat it as a string.
4400
+			return $operator . SP . $this->_wpdb_prepare_using_field($value, '%s');
4401
+		}
4402
+		if (! in_array($operator, $this->valid_in_style_operators()) && ! is_array($value)) {
4403
+			return $operator . SP . $this->_wpdb_prepare_using_field($value, $field_obj);
4404
+		}
4405
+		if (in_array($operator, $this->valid_in_style_operators()) && ! is_array($value)) {
4406
+			throw new EE_Error(
4407
+				sprintf(
4408
+					__(
4409
+						"Operator '%s' must be used with an array of values, eg 'Registration.REG_ID' => array('%s',array(1,2,3))",
4410
+						'event_espresso'
4411
+					),
4412
+					$operator,
4413
+					$operator
4414
+				)
4415
+			);
4416
+		}
4417
+		if (! in_array($operator, $this->valid_in_style_operators()) && is_array($value)) {
4418
+			throw new EE_Error(
4419
+				sprintf(
4420
+					__(
4421
+						"Operator '%s' must be used with a single value, not an array. Eg 'Registration.REG_ID => array('%s',23))",
4422
+						'event_espresso'
4423
+					),
4424
+					$operator,
4425
+					$operator
4426
+				)
4427
+			);
4428
+		}
4429
+		throw new EE_Error(
4430
+			sprintf(
4431
+				__(
4432
+					"It appears you've provided some totally invalid query parameters. Operator and value were:'%s', which isn't right at all",
4433
+					"event_espresso"
4434
+				),
4435
+				http_build_query($op_and_value)
4436
+			)
4437
+		);
4438
+	}
4439
+
4440
+
4441
+
4442
+	/**
4443
+	 * Creates the operands to be used in a BETWEEN query, eg "'2014-12-31 20:23:33' AND '2015-01-23 12:32:54'"
4444
+	 *
4445
+	 * @param array                      $values
4446
+	 * @param EE_Model_Field_Base|string $field_obj if string, it should be the datatype to be used when querying, eg
4447
+	 *                                              '%s'
4448
+	 * @return string
4449
+	 * @throws EE_Error
4450
+	 */
4451
+	public function _construct_between_value($values, $field_obj)
4452
+	{
4453
+		$cleaned_values = array();
4454
+		foreach ($values as $value) {
4455
+			$cleaned_values[] = $this->_wpdb_prepare_using_field($value, $field_obj);
4456
+		}
4457
+		return $cleaned_values[0] . " AND " . $cleaned_values[1];
4458
+	}
4459
+
4460
+
4461
+
4462
+	/**
4463
+	 * Takes an array or a comma-separated list of $values and cleans them
4464
+	 * according to $data_type using $wpdb->prepare, and then makes the list a
4465
+	 * string surrounded by ( and ). Eg, _construct_in_value(array(1,2,3),'%d') would
4466
+	 * return '(1,2,3)'; _construct_in_value("1,2,hack",'%d') would return '(1,2,1)' (assuming
4467
+	 * I'm right that a string, when interpreted as a digit, becomes a 1. It might become a 0)
4468
+	 *
4469
+	 * @param mixed                      $values    array or comma-separated string
4470
+	 * @param EE_Model_Field_Base|string $field_obj if string, it should be a wpdb data type like '%s', or '%d'
4471
+	 * @return string of SQL to follow an 'IN' or 'NOT IN' operator
4472
+	 * @throws EE_Error
4473
+	 */
4474
+	public function _construct_in_value($values, $field_obj)
4475
+	{
4476
+		// check if the value is a CSV list
4477
+		if (is_string($values)) {
4478
+			// in which case, turn it into an array
4479
+			$values = explode(",", $values);
4480
+		}
4481
+		$cleaned_values = array();
4482
+		foreach ($values as $value) {
4483
+			$cleaned_values[] = $this->_wpdb_prepare_using_field($value, $field_obj);
4484
+		}
4485
+		// we would just LOVE to leave $cleaned_values as an empty array, and return the value as "()",
4486
+		// but unfortunately that's invalid SQL. So instead we return a string which we KNOW will evaluate to be the empty set
4487
+		// which is effectively equivalent to returning "()". We don't return "(0)" because that only works for auto-incrementing columns
4488
+		if (empty($cleaned_values)) {
4489
+			$all_fields = $this->field_settings();
4490
+			$a_field = array_shift($all_fields);
4491
+			$main_table = $this->_get_main_table();
4492
+			$cleaned_values[] = "SELECT "
4493
+								. $a_field->get_table_column()
4494
+								. " FROM "
4495
+								. $main_table->get_table_name()
4496
+								. " WHERE FALSE";
4497
+		}
4498
+		return "(" . implode(",", $cleaned_values) . ")";
4499
+	}
4500
+
4501
+
4502
+
4503
+	/**
4504
+	 * @param mixed                      $value
4505
+	 * @param EE_Model_Field_Base|string $field_obj if string it should be a wpdb data type like '%d'
4506
+	 * @throws EE_Error
4507
+	 * @return false|null|string
4508
+	 */
4509
+	private function _wpdb_prepare_using_field($value, $field_obj)
4510
+	{
4511
+		/** @type WPDB $wpdb */
4512
+		global $wpdb;
4513
+		if ($field_obj instanceof EE_Model_Field_Base) {
4514
+			return $wpdb->prepare(
4515
+				$field_obj->get_wpdb_data_type(),
4516
+				$this->_prepare_value_for_use_in_db($value, $field_obj)
4517
+			);
4518
+		} //$field_obj should really just be a data type
4519
+		if (! in_array($field_obj, $this->_valid_wpdb_data_types)) {
4520
+			throw new EE_Error(
4521
+				sprintf(
4522
+					__("%s is not a valid wpdb datatype. Valid ones are %s", "event_espresso"),
4523
+					$field_obj,
4524
+					implode(",", $this->_valid_wpdb_data_types)
4525
+				)
4526
+			);
4527
+		}
4528
+		return $wpdb->prepare($field_obj, $value);
4529
+	}
4530
+
4531
+
4532
+
4533
+	/**
4534
+	 * Takes the input parameter and finds the model field that it indicates.
4535
+	 *
4536
+	 * @param string $query_param_name like Registration.Transaction.TXN_ID, Event.Datetime.start_time, or REG_ID
4537
+	 * @throws EE_Error
4538
+	 * @return EE_Model_Field_Base
4539
+	 */
4540
+	protected function _deduce_field_from_query_param($query_param_name)
4541
+	{
4542
+		// ok, now proceed with deducing which part is the model's name, and which is the field's name
4543
+		// which will help us find the database table and column
4544
+		$query_param_parts = explode(".", $query_param_name);
4545
+		if (empty($query_param_parts)) {
4546
+			throw new EE_Error(sprintf(__(
4547
+				"_extract_column_name is empty when trying to extract column and table name from %s",
4548
+				'event_espresso'
4549
+			), $query_param_name));
4550
+		}
4551
+		$number_of_parts = count($query_param_parts);
4552
+		$last_query_param_part = $query_param_parts[ count($query_param_parts) - 1 ];
4553
+		if ($number_of_parts === 1) {
4554
+			$field_name = $last_query_param_part;
4555
+			$model_obj = $this;
4556
+		} else {// $number_of_parts >= 2
4557
+			// the last part is the column name, and there are only 2parts. therefore...
4558
+			$field_name = $last_query_param_part;
4559
+			$model_obj = $this->get_related_model_obj($query_param_parts[ $number_of_parts - 2 ]);
4560
+		}
4561
+		try {
4562
+			return $model_obj->field_settings_for($field_name);
4563
+		} catch (EE_Error $e) {
4564
+			return null;
4565
+		}
4566
+	}
4567
+
4568
+
4569
+
4570
+	/**
4571
+	 * Given a field's name (ie, a key in $this->field_settings()), uses the EE_Model_Field object to get the table's
4572
+	 * alias and column which corresponds to it
4573
+	 *
4574
+	 * @param string $field_name
4575
+	 * @throws EE_Error
4576
+	 * @return string
4577
+	 */
4578
+	public function _get_qualified_column_for_field($field_name)
4579
+	{
4580
+		$all_fields = $this->field_settings();
4581
+		$field = isset($all_fields[ $field_name ]) ? $all_fields[ $field_name ] : false;
4582
+		if ($field) {
4583
+			return $field->get_qualified_column();
4584
+		}
4585
+		throw new EE_Error(
4586
+			sprintf(
4587
+				__(
4588
+					"There is no field titled %s on model %s. Either the query trying to use it is bad, or you need to add it to the list of fields on the model.",
4589
+					'event_espresso'
4590
+				),
4591
+				$field_name,
4592
+				get_class($this)
4593
+			)
4594
+		);
4595
+	}
4596
+
4597
+
4598
+
4599
+	/**
4600
+	 * similar to \EEM_Base::_get_qualified_column_for_field() but returns an array with data for ALL fields.
4601
+	 * Example usage:
4602
+	 * EEM_Ticket::instance()->get_all_wpdb_results(
4603
+	 *      array(),
4604
+	 *      ARRAY_A,
4605
+	 *      EEM_Ticket::instance()->get_qualified_columns_for_all_fields()
4606
+	 *  );
4607
+	 * is equivalent to
4608
+	 *  EEM_Ticket::instance()->get_all_wpdb_results( array(), ARRAY_A, '*' );
4609
+	 * and
4610
+	 *  EEM_Event::instance()->get_all_wpdb_results(
4611
+	 *      array(
4612
+	 *          array(
4613
+	 *              'Datetime.Ticket.TKT_ID' => array( '<', 100 ),
4614
+	 *          ),
4615
+	 *          ARRAY_A,
4616
+	 *          implode(
4617
+	 *              ', ',
4618
+	 *              array_merge(
4619
+	 *                  EEM_Event::instance()->get_qualified_columns_for_all_fields( '', false ),
4620
+	 *                  EEM_Ticket::instance()->get_qualified_columns_for_all_fields( 'Datetime', false )
4621
+	 *              )
4622
+	 *          )
4623
+	 *      )
4624
+	 *  );
4625
+	 * selects rows from the database, selecting all the event and ticket columns, where the ticket ID is below 100
4626
+	 *
4627
+	 * @param string $model_relation_chain        the chain of models used to join between the model you want to query
4628
+	 *                                            and the one whose fields you are selecting for example: when querying
4629
+	 *                                            tickets model and selecting fields from the tickets model you would
4630
+	 *                                            leave this parameter empty, because no models are needed to join
4631
+	 *                                            between the queried model and the selected one. Likewise when
4632
+	 *                                            querying the datetime model and selecting fields from the tickets
4633
+	 *                                            model, it would also be left empty, because there is a direct
4634
+	 *                                            relation from datetimes to tickets, so no model is needed to join
4635
+	 *                                            them together. However, when querying from the event model and
4636
+	 *                                            selecting fields from the ticket model, you should provide the string
4637
+	 *                                            'Datetime', indicating that the event model must first join to the
4638
+	 *                                            datetime model in order to find its relation to ticket model.
4639
+	 *                                            Also, when querying from the venue model and selecting fields from
4640
+	 *                                            the ticket model, you should provide the string 'Event.Datetime',
4641
+	 *                                            indicating you need to join the venue model to the event model,
4642
+	 *                                            to the datetime model, in order to find its relation to the ticket model.
4643
+	 *                                            This string is used to deduce the prefix that gets added onto the
4644
+	 *                                            models' tables qualified columns
4645
+	 * @param bool   $return_string               if true, will return a string with qualified column names separated
4646
+	 *                                            by ', ' if false, will simply return a numerically indexed array of
4647
+	 *                                            qualified column names
4648
+	 * @return array|string
4649
+	 */
4650
+	public function get_qualified_columns_for_all_fields($model_relation_chain = '', $return_string = true)
4651
+	{
4652
+		$table_prefix = str_replace('.', '__', $model_relation_chain) . (empty($model_relation_chain) ? '' : '__');
4653
+		$qualified_columns = array();
4654
+		foreach ($this->field_settings() as $field_name => $field) {
4655
+			$qualified_columns[] = $table_prefix . $field->get_qualified_column();
4656
+		}
4657
+		return $return_string ? implode(', ', $qualified_columns) : $qualified_columns;
4658
+	}
4659
+
4660
+
4661
+
4662
+	/**
4663
+	 * constructs the select use on special limit joins
4664
+	 * NOTE: for now this has only been tested and will work when the  table alias is for the PRIMARY table. Although
4665
+	 * its setup so the select query will be setup on and just doing the special select join off of the primary table
4666
+	 * (as that is typically where the limits would be set).
4667
+	 *
4668
+	 * @param  string       $table_alias The table the select is being built for
4669
+	 * @param  mixed|string $limit       The limit for this select
4670
+	 * @return string                The final select join element for the query.
4671
+	 */
4672
+	public function _construct_limit_join_select($table_alias, $limit)
4673
+	{
4674
+		$SQL = '';
4675
+		foreach ($this->_tables as $table_obj) {
4676
+			if ($table_obj instanceof EE_Primary_Table) {
4677
+				$SQL .= $table_alias === $table_obj->get_table_alias()
4678
+					? $table_obj->get_select_join_limit($limit)
4679
+					: SP . $table_obj->get_table_name() . " AS " . $table_obj->get_table_alias() . SP;
4680
+			} elseif ($table_obj instanceof EE_Secondary_Table) {
4681
+				$SQL .= $table_alias === $table_obj->get_table_alias()
4682
+					? $table_obj->get_select_join_limit_join($limit)
4683
+					: SP . $table_obj->get_join_sql($table_alias) . SP;
4684
+			}
4685
+		}
4686
+		return $SQL;
4687
+	}
4688
+
4689
+
4690
+
4691
+	/**
4692
+	 * Constructs the internal join if there are multiple tables, or simply the table's name and alias
4693
+	 * Eg "wp_post AS Event" or "wp_post AS Event INNER JOIN wp_postmeta Event_Meta ON Event.ID = Event_Meta.post_id"
4694
+	 *
4695
+	 * @return string SQL
4696
+	 * @throws EE_Error
4697
+	 */
4698
+	public function _construct_internal_join()
4699
+	{
4700
+		$SQL = $this->_get_main_table()->get_table_sql();
4701
+		$SQL .= $this->_construct_internal_join_to_table_with_alias($this->_get_main_table()->get_table_alias());
4702
+		return $SQL;
4703
+	}
4704
+
4705
+
4706
+
4707
+	/**
4708
+	 * Constructs the SQL for joining all the tables on this model.
4709
+	 * Normally $alias should be the primary table's alias, but in cases where
4710
+	 * we have already joined to a secondary table (eg, the secondary table has a foreign key and is joined before the
4711
+	 * primary table) then we should provide that secondary table's alias. Eg, with $alias being the primary table's
4712
+	 * alias, this will construct SQL like:
4713
+	 * " INNER JOIN wp_esp_secondary_table AS Secondary_Table ON Primary_Table.pk = Secondary_Table.fk".
4714
+	 * With $alias being a secondary table's alias, this will construct SQL like:
4715
+	 * " INNER JOIN wp_esp_primary_table AS Primary_Table ON Primary_Table.pk = Secondary_Table.fk".
4716
+	 *
4717
+	 * @param string $alias_prefixed table alias to join to (this table should already be in the FROM SQL clause)
4718
+	 * @return string
4719
+	 */
4720
+	public function _construct_internal_join_to_table_with_alias($alias_prefixed)
4721
+	{
4722
+		$SQL = '';
4723
+		$alias_sans_prefix = EE_Model_Parser::remove_table_alias_model_relation_chain_prefix($alias_prefixed);
4724
+		foreach ($this->_tables as $table_obj) {
4725
+			if ($table_obj instanceof EE_Secondary_Table) {// table is secondary table
4726
+				if ($alias_sans_prefix === $table_obj->get_table_alias()) {
4727
+					// so we're joining to this table, meaning the table is already in
4728
+					// the FROM statement, BUT the primary table isn't. So we want
4729
+					// to add the inverse join sql
4730
+					$SQL .= $table_obj->get_inverse_join_sql($alias_prefixed);
4731
+				} else {
4732
+					// just add a regular JOIN to this table from the primary table
4733
+					$SQL .= $table_obj->get_join_sql($alias_prefixed);
4734
+				}
4735
+			}//if it's a primary table, dont add any SQL. it should already be in the FROM statement
4736
+		}
4737
+		return $SQL;
4738
+	}
4739
+
4740
+
4741
+
4742
+	/**
4743
+	 * Gets an array for storing all the data types on the next-to-be-executed-query.
4744
+	 * This should be a growing array of keys being table-columns (eg 'EVT_ID' and 'Event.EVT_ID'), and values being
4745
+	 * their data type (eg, '%s', '%d', etc)
4746
+	 *
4747
+	 * @return array
4748
+	 */
4749
+	public function _get_data_types()
4750
+	{
4751
+		$data_types = array();
4752
+		foreach ($this->field_settings() as $field_obj) {
4753
+			// $data_types[$field_obj->get_table_column()] = $field_obj->get_wpdb_data_type();
4754
+			/** @var $field_obj EE_Model_Field_Base */
4755
+			$data_types[ $field_obj->get_qualified_column() ] = $field_obj->get_wpdb_data_type();
4756
+		}
4757
+		return $data_types;
4758
+	}
4759
+
4760
+
4761
+
4762
+	/**
4763
+	 * Gets the model object given the relation's name / model's name (eg, 'Event', 'Registration',etc. Always singular)
4764
+	 *
4765
+	 * @param string $model_name
4766
+	 * @throws EE_Error
4767
+	 * @return EEM_Base
4768
+	 */
4769
+	public function get_related_model_obj($model_name)
4770
+	{
4771
+		$model_classname = "EEM_" . $model_name;
4772
+		if (! class_exists($model_classname)) {
4773
+			throw new EE_Error(sprintf(__(
4774
+				"You specified a related model named %s in your query. No such model exists, if it did, it would have the classname %s",
4775
+				'event_espresso'
4776
+			), $model_name, $model_classname));
4777
+		}
4778
+		return call_user_func($model_classname . "::instance");
4779
+	}
4780
+
4781
+
4782
+
4783
+	/**
4784
+	 * Returns the array of EE_ModelRelations for this model.
4785
+	 *
4786
+	 * @return EE_Model_Relation_Base[]
4787
+	 */
4788
+	public function relation_settings()
4789
+	{
4790
+		return $this->_model_relations;
4791
+	}
4792
+
4793
+
4794
+
4795
+	/**
4796
+	 * Gets all related models that this model BELONGS TO. Handy to know sometimes
4797
+	 * because without THOSE models, this model probably doesn't have much purpose.
4798
+	 * (Eg, without an event, datetimes have little purpose.)
4799
+	 *
4800
+	 * @return EE_Belongs_To_Relation[]
4801
+	 */
4802
+	public function belongs_to_relations()
4803
+	{
4804
+		$belongs_to_relations = array();
4805
+		foreach ($this->relation_settings() as $model_name => $relation_obj) {
4806
+			if ($relation_obj instanceof EE_Belongs_To_Relation) {
4807
+				$belongs_to_relations[ $model_name ] = $relation_obj;
4808
+			}
4809
+		}
4810
+		return $belongs_to_relations;
4811
+	}
4812
+
4813
+
4814
+
4815
+	/**
4816
+	 * Returns the specified EE_Model_Relation, or throws an exception
4817
+	 *
4818
+	 * @param string $relation_name name of relation, key in $this->_relatedModels
4819
+	 * @throws EE_Error
4820
+	 * @return EE_Model_Relation_Base
4821
+	 */
4822
+	public function related_settings_for($relation_name)
4823
+	{
4824
+		$relatedModels = $this->relation_settings();
4825
+		if (! array_key_exists($relation_name, $relatedModels)) {
4826
+			throw new EE_Error(
4827
+				sprintf(
4828
+					__(
4829
+						'Cannot get %s related to %s. There is no model relation of that type. There is, however, %s...',
4830
+						'event_espresso'
4831
+					),
4832
+					$relation_name,
4833
+					$this->_get_class_name(),
4834
+					implode(', ', array_keys($relatedModels))
4835
+				)
4836
+			);
4837
+		}
4838
+		return $relatedModels[ $relation_name ];
4839
+	}
4840
+
4841
+
4842
+
4843
+	/**
4844
+	 * A convenience method for getting a specific field's settings, instead of getting all field settings for all
4845
+	 * fields
4846
+	 *
4847
+	 * @param string $fieldName
4848
+	 * @param boolean $include_db_only_fields
4849
+	 * @throws EE_Error
4850
+	 * @return EE_Model_Field_Base
4851
+	 */
4852
+	public function field_settings_for($fieldName, $include_db_only_fields = true)
4853
+	{
4854
+		$fieldSettings = $this->field_settings($include_db_only_fields);
4855
+		if (! array_key_exists($fieldName, $fieldSettings)) {
4856
+			throw new EE_Error(sprintf(
4857
+				__("There is no field/column '%s' on '%s'", 'event_espresso'),
4858
+				$fieldName,
4859
+				get_class($this)
4860
+			));
4861
+		}
4862
+		return $fieldSettings[ $fieldName ];
4863
+	}
4864
+
4865
+
4866
+
4867
+	/**
4868
+	 * Checks if this field exists on this model
4869
+	 *
4870
+	 * @param string $fieldName a key in the model's _field_settings array
4871
+	 * @return boolean
4872
+	 */
4873
+	public function has_field($fieldName)
4874
+	{
4875
+		$fieldSettings = $this->field_settings(true);
4876
+		if (isset($fieldSettings[ $fieldName ])) {
4877
+			return true;
4878
+		}
4879
+		return false;
4880
+	}
4881
+
4882
+
4883
+
4884
+	/**
4885
+	 * Returns whether or not this model has a relation to the specified model
4886
+	 *
4887
+	 * @param string $relation_name possibly one of the keys in the relation_settings array
4888
+	 * @return boolean
4889
+	 */
4890
+	public function has_relation($relation_name)
4891
+	{
4892
+		$relations = $this->relation_settings();
4893
+		if (isset($relations[ $relation_name ])) {
4894
+			return true;
4895
+		}
4896
+		return false;
4897
+	}
4898
+
4899
+
4900
+
4901
+	/**
4902
+	 * gets the field object of type 'primary_key' from the fieldsSettings attribute.
4903
+	 * Eg, on EE_Answer that would be ANS_ID field object
4904
+	 *
4905
+	 * @param $field_obj
4906
+	 * @return boolean
4907
+	 */
4908
+	public function is_primary_key_field($field_obj)
4909
+	{
4910
+		return $field_obj instanceof EE_Primary_Key_Field_Base ? true : false;
4911
+	}
4912
+
4913
+
4914
+
4915
+	/**
4916
+	 * gets the field object of type 'primary_key' from the fieldsSettings attribute.
4917
+	 * Eg, on EE_Answer that would be ANS_ID field object
4918
+	 *
4919
+	 * @return EE_Model_Field_Base
4920
+	 * @throws EE_Error
4921
+	 */
4922
+	public function get_primary_key_field()
4923
+	{
4924
+		if ($this->_primary_key_field === null) {
4925
+			foreach ($this->field_settings(true) as $field_obj) {
4926
+				if ($this->is_primary_key_field($field_obj)) {
4927
+					$this->_primary_key_field = $field_obj;
4928
+					break;
4929
+				}
4930
+			}
4931
+			if (! $this->_primary_key_field instanceof EE_Primary_Key_Field_Base) {
4932
+				throw new EE_Error(sprintf(
4933
+					__("There is no Primary Key defined on model %s", 'event_espresso'),
4934
+					get_class($this)
4935
+				));
4936
+			}
4937
+		}
4938
+		return $this->_primary_key_field;
4939
+	}
4940
+
4941
+
4942
+
4943
+	/**
4944
+	 * Returns whether or not not there is a primary key on this model.
4945
+	 * Internally does some caching.
4946
+	 *
4947
+	 * @return boolean
4948
+	 */
4949
+	public function has_primary_key_field()
4950
+	{
4951
+		if ($this->_has_primary_key_field === null) {
4952
+			try {
4953
+				$this->get_primary_key_field();
4954
+				$this->_has_primary_key_field = true;
4955
+			} catch (EE_Error $e) {
4956
+				$this->_has_primary_key_field = false;
4957
+			}
4958
+		}
4959
+		return $this->_has_primary_key_field;
4960
+	}
4961
+
4962
+
4963
+
4964
+	/**
4965
+	 * Finds the first field of type $field_class_name.
4966
+	 *
4967
+	 * @param string $field_class_name class name of field that you want to find. Eg, EE_Datetime_Field,
4968
+	 *                                 EE_Foreign_Key_Field, etc
4969
+	 * @return EE_Model_Field_Base or null if none is found
4970
+	 */
4971
+	public function get_a_field_of_type($field_class_name)
4972
+	{
4973
+		foreach ($this->field_settings() as $field) {
4974
+			if ($field instanceof $field_class_name) {
4975
+				return $field;
4976
+			}
4977
+		}
4978
+		return null;
4979
+	}
4980
+
4981
+
4982
+
4983
+	/**
4984
+	 * Gets a foreign key field pointing to model.
4985
+	 *
4986
+	 * @param string $model_name eg Event, Registration, not EEM_Event
4987
+	 * @return EE_Foreign_Key_Field_Base
4988
+	 * @throws EE_Error
4989
+	 */
4990
+	public function get_foreign_key_to($model_name)
4991
+	{
4992
+		if (! isset($this->_cache_foreign_key_to_fields[ $model_name ])) {
4993
+			foreach ($this->field_settings() as $field) {
4994
+				if ($field instanceof EE_Foreign_Key_Field_Base
4995
+					&& in_array($model_name, $field->get_model_names_pointed_to())
4996
+				) {
4997
+					$this->_cache_foreign_key_to_fields[ $model_name ] = $field;
4998
+					break;
4999
+				}
5000
+			}
5001
+			if (! isset($this->_cache_foreign_key_to_fields[ $model_name ])) {
5002
+				throw new EE_Error(sprintf(__(
5003
+					"There is no foreign key field pointing to model %s on model %s",
5004
+					'event_espresso'
5005
+				), $model_name, get_class($this)));
5006
+			}
5007
+		}
5008
+		return $this->_cache_foreign_key_to_fields[ $model_name ];
5009
+	}
5010
+
5011
+
5012
+
5013
+	/**
5014
+	 * Gets the table name (including $wpdb->prefix) for the table alias
5015
+	 *
5016
+	 * @param string $table_alias eg Event, Event_Meta, Registration, Transaction, but maybe
5017
+	 *                            a table alias with a model chain prefix, like 'Venue__Event_Venue___Event_Meta'.
5018
+	 *                            Either one works
5019
+	 * @return string
5020
+	 */
5021
+	public function get_table_for_alias($table_alias)
5022
+	{
5023
+		$table_alias_sans_model_relation_chain_prefix = EE_Model_Parser::remove_table_alias_model_relation_chain_prefix($table_alias);
5024
+		return $this->_tables[ $table_alias_sans_model_relation_chain_prefix ]->get_table_name();
5025
+	}
5026
+
5027
+
5028
+
5029
+	/**
5030
+	 * Returns a flat array of all field son this model, instead of organizing them
5031
+	 * by table_alias as they are in the constructor.
5032
+	 *
5033
+	 * @param bool $include_db_only_fields flag indicating whether or not to include the db-only fields
5034
+	 * @return EE_Model_Field_Base[] where the keys are the field's name
5035
+	 */
5036
+	public function field_settings($include_db_only_fields = false)
5037
+	{
5038
+		if ($include_db_only_fields) {
5039
+			if ($this->_cached_fields === null) {
5040
+				$this->_cached_fields = array();
5041
+				foreach ($this->_fields as $fields_corresponding_to_table) {
5042
+					foreach ($fields_corresponding_to_table as $field_name => $field_obj) {
5043
+						$this->_cached_fields[ $field_name ] = $field_obj;
5044
+					}
5045
+				}
5046
+			}
5047
+			return $this->_cached_fields;
5048
+		}
5049
+		if ($this->_cached_fields_non_db_only === null) {
5050
+			$this->_cached_fields_non_db_only = array();
5051
+			foreach ($this->_fields as $fields_corresponding_to_table) {
5052
+				foreach ($fields_corresponding_to_table as $field_name => $field_obj) {
5053
+					/** @var $field_obj EE_Model_Field_Base */
5054
+					if (! $field_obj->is_db_only_field()) {
5055
+						$this->_cached_fields_non_db_only[ $field_name ] = $field_obj;
5056
+					}
5057
+				}
5058
+			}
5059
+		}
5060
+		return $this->_cached_fields_non_db_only;
5061
+	}
5062
+
5063
+
5064
+
5065
+	/**
5066
+	 *        cycle though array of attendees and create objects out of each item
5067
+	 *
5068
+	 * @access        private
5069
+	 * @param        array $rows of results of $wpdb->get_results($query,ARRAY_A)
5070
+	 * @return \EE_Base_Class[] array keys are primary keys (if there is a primary key on the model. if not,
5071
+	 *                           numerically indexed)
5072
+	 * @throws EE_Error
5073
+	 */
5074
+	protected function _create_objects($rows = array())
5075
+	{
5076
+		$array_of_objects = array();
5077
+		if (empty($rows)) {
5078
+			return array();
5079
+		}
5080
+		$count_if_model_has_no_primary_key = 0;
5081
+		$has_primary_key = $this->has_primary_key_field();
5082
+		$primary_key_field = $has_primary_key ? $this->get_primary_key_field() : null;
5083
+		foreach ((array) $rows as $row) {
5084
+			if (empty($row)) {
5085
+				// wp did its weird thing where it returns an array like array(0=>null), which is totally not helpful...
5086
+				return array();
5087
+			}
5088
+			// check if we've already set this object in the results array,
5089
+			// in which case there's no need to process it further (again)
5090
+			if ($has_primary_key) {
5091
+				$table_pk_value = $this->_get_column_value_with_table_alias_or_not(
5092
+					$row,
5093
+					$primary_key_field->get_qualified_column(),
5094
+					$primary_key_field->get_table_column()
5095
+				);
5096
+				if ($table_pk_value && isset($array_of_objects[ $table_pk_value ])) {
5097
+					continue;
5098
+				}
5099
+			}
5100
+			$classInstance = $this->instantiate_class_from_array_or_object($row);
5101
+			if (! $classInstance) {
5102
+				throw new EE_Error(
5103
+					sprintf(
5104
+						__('Could not create instance of class %s from row %s', 'event_espresso'),
5105
+						$this->get_this_model_name(),
5106
+						http_build_query($row)
5107
+					)
5108
+				);
5109
+			}
5110
+			// set the timezone on the instantiated objects
5111
+			$classInstance->set_timezone($this->_timezone);
5112
+			// make sure if there is any timezone setting present that we set the timezone for the object
5113
+			$key = $has_primary_key ? $classInstance->ID() : $count_if_model_has_no_primary_key++;
5114
+			$array_of_objects[ $key ] = $classInstance;
5115
+			// also, for all the relations of type BelongsTo, see if we can cache
5116
+			// those related models
5117
+			// (we could do this for other relations too, but if there are conditions
5118
+			// that filtered out some fo the results, then we'd be caching an incomplete set
5119
+			// so it requires a little more thought than just caching them immediately...)
5120
+			foreach ($this->_model_relations as $modelName => $relation_obj) {
5121
+				if ($relation_obj instanceof EE_Belongs_To_Relation) {
5122
+					// check if this model's INFO is present. If so, cache it on the model
5123
+					$other_model = $relation_obj->get_other_model();
5124
+					$other_model_obj_maybe = $other_model->instantiate_class_from_array_or_object($row);
5125
+					// if we managed to make a model object from the results, cache it on the main model object
5126
+					if ($other_model_obj_maybe) {
5127
+						// set timezone on these other model objects if they are present
5128
+						$other_model_obj_maybe->set_timezone($this->_timezone);
5129
+						$classInstance->cache($modelName, $other_model_obj_maybe);
5130
+					}
5131
+				}
5132
+			}
5133
+			// also, if this was a custom select query, let's see if there are any results for the custom select fields
5134
+			// and add them to the object as well.  We'll convert according to the set data_type if there's any set for
5135
+			// the field in the CustomSelects object
5136
+			if ($this->_custom_selections instanceof CustomSelects) {
5137
+				$classInstance->setCustomSelectsValues(
5138
+					$this->getValuesForCustomSelectAliasesFromResults($row)
5139
+				);
5140
+			}
5141
+		}
5142
+		return $array_of_objects;
5143
+	}
5144
+
5145
+
5146
+	/**
5147
+	 * This will parse a given row of results from the db and see if any keys in the results match an alias within the
5148
+	 * current CustomSelects object. This will be used to build an array of values indexed by those keys.
5149
+	 *
5150
+	 * @param array $db_results_row
5151
+	 * @return array
5152
+	 */
5153
+	protected function getValuesForCustomSelectAliasesFromResults(array $db_results_row)
5154
+	{
5155
+		$results = array();
5156
+		if ($this->_custom_selections instanceof CustomSelects) {
5157
+			foreach ($this->_custom_selections->columnAliases() as $alias) {
5158
+				if (isset($db_results_row[ $alias ])) {
5159
+					$results[ $alias ] = $this->convertValueToDataType(
5160
+						$db_results_row[ $alias ],
5161
+						$this->_custom_selections->getDataTypeForAlias($alias)
5162
+					);
5163
+				}
5164
+			}
5165
+		}
5166
+		return $results;
5167
+	}
5168
+
5169
+
5170
+	/**
5171
+	 * This will set the value for the given alias
5172
+	 * @param string $value
5173
+	 * @param string $datatype (one of %d, %s, %f)
5174
+	 * @return int|string|float (int for %d, string for %s, float for %f)
5175
+	 */
5176
+	protected function convertValueToDataType($value, $datatype)
5177
+	{
5178
+		switch ($datatype) {
5179
+			case '%f':
5180
+				return (float) $value;
5181
+			case '%d':
5182
+				return (int) $value;
5183
+			default:
5184
+				return (string) $value;
5185
+		}
5186
+	}
5187
+
5188
+
5189
+	/**
5190
+	 * The purpose of this method is to allow us to create a model object that is not in the db that holds default
5191
+	 * values. A typical example of where this is used is when creating a new item and the initial load of a form.  We
5192
+	 * dont' necessarily want to test for if the object is present but just assume it is BUT load the defaults from the
5193
+	 * object (as set in the model_field!).
5194
+	 *
5195
+	 * @return EE_Base_Class single EE_Base_Class object with default values for the properties.
5196
+	 */
5197
+	public function create_default_object()
5198
+	{
5199
+		$this_model_fields_and_values = array();
5200
+		// setup the row using default values;
5201
+		foreach ($this->field_settings() as $field_name => $field_obj) {
5202
+			$this_model_fields_and_values[ $field_name ] = $field_obj->get_default_value();
5203
+		}
5204
+		$className = $this->_get_class_name();
5205
+		$classInstance = EE_Registry::instance()
5206
+									->load_class($className, array($this_model_fields_and_values), false, false);
5207
+		return $classInstance;
5208
+	}
5209
+
5210
+
5211
+
5212
+	/**
5213
+	 * @param mixed $cols_n_values either an array of where each key is the name of a field, and the value is its value
5214
+	 *                             or an stdClass where each property is the name of a column,
5215
+	 * @return EE_Base_Class
5216
+	 * @throws EE_Error
5217
+	 */
5218
+	public function instantiate_class_from_array_or_object($cols_n_values)
5219
+	{
5220
+		if (! is_array($cols_n_values) && is_object($cols_n_values)) {
5221
+			$cols_n_values = get_object_vars($cols_n_values);
5222
+		}
5223
+		$primary_key = null;
5224
+		// make sure the array only has keys that are fields/columns on this model
5225
+		$this_model_fields_n_values = $this->_deduce_fields_n_values_from_cols_n_values($cols_n_values);
5226
+		if ($this->has_primary_key_field() && isset($this_model_fields_n_values[ $this->primary_key_name() ])) {
5227
+			$primary_key = $this_model_fields_n_values[ $this->primary_key_name() ];
5228
+		}
5229
+		$className = $this->_get_class_name();
5230
+		// check we actually found results that we can use to build our model object
5231
+		// if not, return null
5232
+		if ($this->has_primary_key_field()) {
5233
+			if (empty($this_model_fields_n_values[ $this->primary_key_name() ])) {
5234
+				return null;
5235
+			}
5236
+		} elseif ($this->unique_indexes()) {
5237
+			$first_column = reset($this_model_fields_n_values);
5238
+			if (empty($first_column)) {
5239
+				return null;
5240
+			}
5241
+		}
5242
+		// if there is no primary key or the object doesn't already exist in the entity map, then create a new instance
5243
+		if ($primary_key) {
5244
+			$classInstance = $this->get_from_entity_map($primary_key);
5245
+			if (! $classInstance) {
5246
+				$classInstance = EE_Registry::instance()
5247
+											->load_class(
5248
+												$className,
5249
+												array($this_model_fields_n_values, $this->_timezone),
5250
+												true,
5251
+												false
5252
+											);
5253
+				// add this new object to the entity map
5254
+				$classInstance = $this->add_to_entity_map($classInstance);
5255
+			}
5256
+		} else {
5257
+			$classInstance = EE_Registry::instance()
5258
+										->load_class(
5259
+											$className,
5260
+											array($this_model_fields_n_values, $this->_timezone),
5261
+											true,
5262
+											false
5263
+										);
5264
+		}
5265
+		return $classInstance;
5266
+	}
5267
+
5268
+
5269
+
5270
+	/**
5271
+	 * Gets the model object from the  entity map if it exists
5272
+	 *
5273
+	 * @param int|string $id the ID of the model object
5274
+	 * @return EE_Base_Class
5275
+	 */
5276
+	public function get_from_entity_map($id)
5277
+	{
5278
+		return isset($this->_entity_map[ EEM_Base::$_model_query_blog_id ][ $id ])
5279
+			? $this->_entity_map[ EEM_Base::$_model_query_blog_id ][ $id ] : null;
5280
+	}
5281
+
5282
+
5283
+
5284
+	/**
5285
+	 * add_to_entity_map
5286
+	 * Adds the object to the model's entity mappings
5287
+	 *        Effectively tells the models "Hey, this model object is the most up-to-date representation of the data,
5288
+	 *        and for the remainder of the request, it's even more up-to-date than what's in the database.
5289
+	 *        So, if the database doesn't agree with what's in the entity mapper, ignore the database"
5290
+	 *        If the database gets updated directly and you want the entity mapper to reflect that change,
5291
+	 *        then this method should be called immediately after the update query
5292
+	 * Note: The map is indexed by whatever the current blog id is set (via EEM_Base::$_model_query_blog_id).  This is
5293
+	 * so on multisite, the entity map is specific to the query being done for a specific site.
5294
+	 *
5295
+	 * @param    EE_Base_Class $object
5296
+	 * @throws EE_Error
5297
+	 * @return \EE_Base_Class
5298
+	 */
5299
+	public function add_to_entity_map(EE_Base_Class $object)
5300
+	{
5301
+		$className = $this->_get_class_name();
5302
+		if (! $object instanceof $className) {
5303
+			throw new EE_Error(sprintf(
5304
+				__("You tried adding a %s to a mapping of %ss", "event_espresso"),
5305
+				is_object($object) ? get_class($object) : $object,
5306
+				$className
5307
+			));
5308
+		}
5309
+		/** @var $object EE_Base_Class */
5310
+		if (! $object->ID()) {
5311
+			throw new EE_Error(sprintf(__(
5312
+				"You tried storing a model object with NO ID in the %s entity mapper.",
5313
+				"event_espresso"
5314
+			), get_class($this)));
5315
+		}
5316
+		// double check it's not already there
5317
+		$classInstance = $this->get_from_entity_map($object->ID());
5318
+		if ($classInstance) {
5319
+			return $classInstance;
5320
+		}
5321
+		$this->_entity_map[ EEM_Base::$_model_query_blog_id ][ $object->ID() ] = $object;
5322
+		return $object;
5323
+	}
5324
+
5325
+
5326
+
5327
+	/**
5328
+	 * if a valid identifier is provided, then that entity is unset from the entity map,
5329
+	 * if no identifier is provided, then the entire entity map is emptied
5330
+	 *
5331
+	 * @param int|string $id the ID of the model object
5332
+	 * @return boolean
5333
+	 */
5334
+	public function clear_entity_map($id = null)
5335
+	{
5336
+		if (empty($id)) {
5337
+			$this->_entity_map[ EEM_Base::$_model_query_blog_id ] = array();
5338
+			return true;
5339
+		}
5340
+		if (isset($this->_entity_map[ EEM_Base::$_model_query_blog_id ][ $id ])) {
5341
+			unset($this->_entity_map[ EEM_Base::$_model_query_blog_id ][ $id ]);
5342
+			return true;
5343
+		}
5344
+		return false;
5345
+	}
5346
+
5347
+
5348
+
5349
+	/**
5350
+	 * Public wrapper for _deduce_fields_n_values_from_cols_n_values.
5351
+	 * Given an array where keys are column (or column alias) names and values,
5352
+	 * returns an array of their corresponding field names and database values
5353
+	 *
5354
+	 * @param array $cols_n_values
5355
+	 * @return array
5356
+	 */
5357
+	public function deduce_fields_n_values_from_cols_n_values($cols_n_values)
5358
+	{
5359
+		return $this->_deduce_fields_n_values_from_cols_n_values($cols_n_values);
5360
+	}
5361
+
5362
+
5363
+
5364
+	/**
5365
+	 * _deduce_fields_n_values_from_cols_n_values
5366
+	 * Given an array where keys are column (or column alias) names and values,
5367
+	 * returns an array of their corresponding field names and database values
5368
+	 *
5369
+	 * @param string $cols_n_values
5370
+	 * @return array
5371
+	 */
5372
+	protected function _deduce_fields_n_values_from_cols_n_values($cols_n_values)
5373
+	{
5374
+		$this_model_fields_n_values = array();
5375
+		foreach ($this->get_tables() as $table_alias => $table_obj) {
5376
+			$table_pk_value = $this->_get_column_value_with_table_alias_or_not(
5377
+				$cols_n_values,
5378
+				$table_obj->get_fully_qualified_pk_column(),
5379
+				$table_obj->get_pk_column()
5380
+			);
5381
+			// there is a primary key on this table and its not set. Use defaults for all its columns
5382
+			if ($table_pk_value === null && $table_obj->get_pk_column()) {
5383
+				foreach ($this->_get_fields_for_table($table_alias) as $field_name => $field_obj) {
5384
+					if (! $field_obj->is_db_only_field()) {
5385
+						// prepare field as if its coming from db
5386
+						$prepared_value = $field_obj->prepare_for_set($field_obj->get_default_value());
5387
+						$this_model_fields_n_values[ $field_name ] = $field_obj->prepare_for_use_in_db($prepared_value);
5388
+					}
5389
+				}
5390
+			} else {
5391
+				// the table's rows existed. Use their values
5392
+				foreach ($this->_get_fields_for_table($table_alias) as $field_name => $field_obj) {
5393
+					if (! $field_obj->is_db_only_field()) {
5394
+						$this_model_fields_n_values[ $field_name ] = $this->_get_column_value_with_table_alias_or_not(
5395
+							$cols_n_values,
5396
+							$field_obj->get_qualified_column(),
5397
+							$field_obj->get_table_column()
5398
+						);
5399
+					}
5400
+				}
5401
+			}
5402
+		}
5403
+		return $this_model_fields_n_values;
5404
+	}
5405
+
5406
+
5407
+
5408
+	/**
5409
+	 * @param $cols_n_values
5410
+	 * @param $qualified_column
5411
+	 * @param $regular_column
5412
+	 * @return null
5413
+	 */
5414
+	protected function _get_column_value_with_table_alias_or_not($cols_n_values, $qualified_column, $regular_column)
5415
+	{
5416
+		$value = null;
5417
+		// ask the field what it think it's table_name.column_name should be, and call it the "qualified column"
5418
+		// does the field on the model relate to this column retrieved from the db?
5419
+		// or is it a db-only field? (not relating to the model)
5420
+		if (isset($cols_n_values[ $qualified_column ])) {
5421
+			$value = $cols_n_values[ $qualified_column ];
5422
+		} elseif (isset($cols_n_values[ $regular_column ])) {
5423
+			$value = $cols_n_values[ $regular_column ];
5424
+		}
5425
+		return $value;
5426
+	}
5427
+
5428
+
5429
+
5430
+	/**
5431
+	 * refresh_entity_map_from_db
5432
+	 * Makes sure the model object in the entity map at $id assumes the values
5433
+	 * of the database (opposite of EE_base_Class::save())
5434
+	 *
5435
+	 * @param int|string $id
5436
+	 * @return EE_Base_Class
5437
+	 * @throws EE_Error
5438
+	 */
5439
+	public function refresh_entity_map_from_db($id)
5440
+	{
5441
+		$obj_in_map = $this->get_from_entity_map($id);
5442
+		if ($obj_in_map) {
5443
+			$wpdb_results = $this->_get_all_wpdb_results(
5444
+				array(array($this->get_primary_key_field()->get_name() => $id), 'limit' => 1)
5445
+			);
5446
+			if ($wpdb_results && is_array($wpdb_results)) {
5447
+				$one_row = reset($wpdb_results);
5448
+				foreach ($this->_deduce_fields_n_values_from_cols_n_values($one_row) as $field_name => $db_value) {
5449
+					$obj_in_map->set_from_db($field_name, $db_value);
5450
+				}
5451
+				// clear the cache of related model objects
5452
+				foreach ($this->relation_settings() as $relation_name => $relation_obj) {
5453
+					$obj_in_map->clear_cache($relation_name, null, true);
5454
+				}
5455
+			}
5456
+			$this->_entity_map[ EEM_Base::$_model_query_blog_id ][ $id ] = $obj_in_map;
5457
+			return $obj_in_map;
5458
+		}
5459
+		return $this->get_one_by_ID($id);
5460
+	}
5461
+
5462
+
5463
+
5464
+	/**
5465
+	 * refresh_entity_map_with
5466
+	 * Leaves the entry in the entity map alone, but updates it to match the provided
5467
+	 * $replacing_model_obj (which we assume to be its equivalent but somehow NOT in the entity map).
5468
+	 * This is useful if you have a model object you want to make authoritative over what's in the entity map currently.
5469
+	 * Note: The old $replacing_model_obj should now be destroyed as it's now un-authoritative
5470
+	 *
5471
+	 * @param int|string    $id
5472
+	 * @param EE_Base_Class $replacing_model_obj
5473
+	 * @return \EE_Base_Class
5474
+	 * @throws EE_Error
5475
+	 */
5476
+	public function refresh_entity_map_with($id, $replacing_model_obj)
5477
+	{
5478
+		$obj_in_map = $this->get_from_entity_map($id);
5479
+		if ($obj_in_map) {
5480
+			if ($replacing_model_obj instanceof EE_Base_Class) {
5481
+				foreach ($replacing_model_obj->model_field_array() as $field_name => $value) {
5482
+					$obj_in_map->set($field_name, $value);
5483
+				}
5484
+				// make the model object in the entity map's cache match the $replacing_model_obj
5485
+				foreach ($this->relation_settings() as $relation_name => $relation_obj) {
5486
+					$obj_in_map->clear_cache($relation_name, null, true);
5487
+					foreach ($replacing_model_obj->get_all_from_cache($relation_name) as $cache_id => $cached_obj) {
5488
+						$obj_in_map->cache($relation_name, $cached_obj, $cache_id);
5489
+					}
5490
+				}
5491
+			}
5492
+			return $obj_in_map;
5493
+		}
5494
+		$this->add_to_entity_map($replacing_model_obj);
5495
+		return $replacing_model_obj;
5496
+	}
5497
+
5498
+
5499
+
5500
+	/**
5501
+	 * Gets the EE class that corresponds to this model. Eg, for EEM_Answer that
5502
+	 * would be EE_Answer.To import that class, you'd just add ".class.php" to the name, like so
5503
+	 * require_once($this->_getClassName().".class.php");
5504
+	 *
5505
+	 * @return string
5506
+	 */
5507
+	private function _get_class_name()
5508
+	{
5509
+		return "EE_" . $this->get_this_model_name();
5510
+	}
5511
+
5512
+
5513
+
5514
+	/**
5515
+	 * Get the name of the items this model represents, for the quantity specified. Eg,
5516
+	 * if $quantity==1, on EEM_Event, it would 'Event' (internationalized), otherwise
5517
+	 * it would be 'Events'.
5518
+	 *
5519
+	 * @param int $quantity
5520
+	 * @return string
5521
+	 */
5522
+	public function item_name($quantity = 1)
5523
+	{
5524
+		return (int) $quantity === 1 ? $this->singular_item : $this->plural_item;
5525
+	}
5526
+
5527
+
5528
+
5529
+	/**
5530
+	 * Very handy general function to allow for plugins to extend any child of EE_TempBase.
5531
+	 * If a method is called on a child of EE_TempBase that doesn't exist, this function is called
5532
+	 * (http://www.garfieldtech.com/blog/php-magic-call) and passed the method's name and arguments. Instead of
5533
+	 * requiring a plugin to extend the EE_TempBase (which works fine is there's only 1 plugin, but when will that
5534
+	 * happen?) they can add a hook onto 'filters_hook_espresso__{className}__{methodName}' (eg,
5535
+	 * filters_hook_espresso__EE_Answer__my_great_function) and accepts 2 arguments: the object on which the function
5536
+	 * was called, and an array of the original arguments passed to the function. Whatever their callback function
5537
+	 * returns will be returned by this function. Example: in functions.php (or in a plugin):
5538
+	 * add_filter('FHEE__EE_Answer__my_callback','my_callback',10,3); function
5539
+	 * my_callback($previousReturnValue,EE_TempBase $object,$argsArray){
5540
+	 * $returnString= "you called my_callback! and passed args:".implode(",",$argsArray);
5541
+	 *        return $previousReturnValue.$returnString;
5542
+	 * }
5543
+	 * require('EEM_Answer.model.php');
5544
+	 * $answer=EEM_Answer::instance();
5545
+	 * echo $answer->my_callback('monkeys',100);
5546
+	 * //will output "you called my_callback! and passed args:monkeys,100"
5547
+	 *
5548
+	 * @param string $methodName name of method which was called on a child of EE_TempBase, but which
5549
+	 * @param array  $args       array of original arguments passed to the function
5550
+	 * @throws EE_Error
5551
+	 * @return mixed whatever the plugin which calls add_filter decides
5552
+	 */
5553
+	public function __call($methodName, $args)
5554
+	{
5555
+		$className = get_class($this);
5556
+		$tagName = "FHEE__{$className}__{$methodName}";
5557
+		if (! has_filter($tagName)) {
5558
+			throw new EE_Error(
5559
+				sprintf(
5560
+					__(
5561
+						'Method %1$s on model %2$s does not exist! You can create one with the following code in functions.php or in a plugin: %4$s function my_callback(%4$s \$previousReturnValue, EEM_Base \$object\ $argsArray=NULL ){%4$s     /*function body*/%4$s      return \$whatever;%4$s }%4$s add_filter( \'%3$s\', \'my_callback\', 10, 3 );',
5562
+						'event_espresso'
5563
+					),
5564
+					$methodName,
5565
+					$className,
5566
+					$tagName,
5567
+					'<br />'
5568
+				)
5569
+			);
5570
+		}
5571
+		return apply_filters($tagName, null, $this, $args);
5572
+	}
5573
+
5574
+
5575
+
5576
+	/**
5577
+	 * Ensures $base_class_obj_or_id is of the EE_Base_Class child that corresponds ot this model.
5578
+	 * If not, assumes its an ID, and uses $this->get_one_by_ID() to get the EE_Base_Class.
5579
+	 *
5580
+	 * @param EE_Base_Class|string|int $base_class_obj_or_id either:
5581
+	 *                                                       the EE_Base_Class object that corresponds to this Model,
5582
+	 *                                                       the object's class name
5583
+	 *                                                       or object's ID
5584
+	 * @param boolean                  $ensure_is_in_db      if set, we will also verify this model object
5585
+	 *                                                       exists in the database. If it does not, we add it
5586
+	 * @throws EE_Error
5587
+	 * @return EE_Base_Class
5588
+	 */
5589
+	public function ensure_is_obj($base_class_obj_or_id, $ensure_is_in_db = false)
5590
+	{
5591
+		$className = $this->_get_class_name();
5592
+		if ($base_class_obj_or_id instanceof $className) {
5593
+			$model_object = $base_class_obj_or_id;
5594
+		} else {
5595
+			$primary_key_field = $this->get_primary_key_field();
5596
+			if ($primary_key_field instanceof EE_Primary_Key_Int_Field
5597
+				&& (
5598
+					is_int($base_class_obj_or_id)
5599
+					|| is_string($base_class_obj_or_id)
5600
+				)
5601
+			) {
5602
+				// assume it's an ID.
5603
+				// either a proper integer or a string representing an integer (eg "101" instead of 101)
5604
+				$model_object = $this->get_one_by_ID($base_class_obj_or_id);
5605
+			} elseif ($primary_key_field instanceof EE_Primary_Key_String_Field
5606
+				&& is_string($base_class_obj_or_id)
5607
+			) {
5608
+				// assume its a string representation of the object
5609
+				$model_object = $this->get_one_by_ID($base_class_obj_or_id);
5610
+			} else {
5611
+				throw new EE_Error(
5612
+					sprintf(
5613
+						__(
5614
+							"'%s' is neither an object of type %s, nor an ID! Its full value is '%s'",
5615
+							'event_espresso'
5616
+						),
5617
+						$base_class_obj_or_id,
5618
+						$this->_get_class_name(),
5619
+						print_r($base_class_obj_or_id, true)
5620
+					)
5621
+				);
5622
+			}
5623
+		}
5624
+		if ($ensure_is_in_db && $model_object->ID() !== null) {
5625
+			$model_object->save();
5626
+		}
5627
+		return $model_object;
5628
+	}
5629
+
5630
+
5631
+
5632
+	/**
5633
+	 * Similar to ensure_is_obj(), this method makes sure $base_class_obj_or_id
5634
+	 * is a value of the this model's primary key. If it's an EE_Base_Class child,
5635
+	 * returns it ID.
5636
+	 *
5637
+	 * @param EE_Base_Class|int|string $base_class_obj_or_id
5638
+	 * @return int|string depending on the type of this model object's ID
5639
+	 * @throws EE_Error
5640
+	 */
5641
+	public function ensure_is_ID($base_class_obj_or_id)
5642
+	{
5643
+		$className = $this->_get_class_name();
5644
+		if ($base_class_obj_or_id instanceof $className) {
5645
+			/** @var $base_class_obj_or_id EE_Base_Class */
5646
+			$id = $base_class_obj_or_id->ID();
5647
+		} elseif (is_int($base_class_obj_or_id)) {
5648
+			// assume it's an ID
5649
+			$id = $base_class_obj_or_id;
5650
+		} elseif (is_string($base_class_obj_or_id)) {
5651
+			// assume its a string representation of the object
5652
+			$id = $base_class_obj_or_id;
5653
+		} else {
5654
+			throw new EE_Error(sprintf(
5655
+				__(
5656
+					"'%s' is neither an object of type %s, nor an ID! Its full value is '%s'",
5657
+					'event_espresso'
5658
+				),
5659
+				$base_class_obj_or_id,
5660
+				$this->_get_class_name(),
5661
+				print_r($base_class_obj_or_id, true)
5662
+			));
5663
+		}
5664
+		return $id;
5665
+	}
5666
+
5667
+
5668
+
5669
+	/**
5670
+	 * Sets whether the values passed to the model (eg, values in WHERE, values in INSERT, UPDATE, etc)
5671
+	 * have already been ran through the appropriate model field's prepare_for_use_in_db method. IE, they have
5672
+	 * been sanitized and converted into the appropriate domain.
5673
+	 * Usually the only place you'll want to change the default (which is to assume values have NOT been sanitized by
5674
+	 * the model object/model field) is when making a method call from WITHIN a model object, which has direct access
5675
+	 * to its sanitized values. Note: after changing this setting, you should set it back to its previous value (using
5676
+	 * get_assumption_concerning_values_already_prepared_by_model_object()) eg.
5677
+	 * $EVT = EEM_Event::instance(); $old_setting =
5678
+	 * $EVT->get_assumption_concerning_values_already_prepared_by_model_object();
5679
+	 * $EVT->assume_values_already_prepared_by_model_object(true);
5680
+	 * $EVT->update(array('foo'=>'bar'),array(array('foo'=>'monkey')));
5681
+	 * $EVT->assume_values_already_prepared_by_model_object($old_setting);
5682
+	 *
5683
+	 * @param int $values_already_prepared like one of the constants on EEM_Base
5684
+	 * @return void
5685
+	 */
5686
+	public function assume_values_already_prepared_by_model_object(
5687
+		$values_already_prepared = self::not_prepared_by_model_object
5688
+	) {
5689
+		$this->_values_already_prepared_by_model_object = $values_already_prepared;
5690
+	}
5691
+
5692
+
5693
+
5694
+	/**
5695
+	 * Read comments for assume_values_already_prepared_by_model_object()
5696
+	 *
5697
+	 * @return int
5698
+	 */
5699
+	public function get_assumption_concerning_values_already_prepared_by_model_object()
5700
+	{
5701
+		return $this->_values_already_prepared_by_model_object;
5702
+	}
5703
+
5704
+
5705
+
5706
+	/**
5707
+	 * Gets all the indexes on this model
5708
+	 *
5709
+	 * @return EE_Index[]
5710
+	 */
5711
+	public function indexes()
5712
+	{
5713
+		return $this->_indexes;
5714
+	}
5715
+
5716
+
5717
+
5718
+	/**
5719
+	 * Gets all the Unique Indexes on this model
5720
+	 *
5721
+	 * @return EE_Unique_Index[]
5722
+	 */
5723
+	public function unique_indexes()
5724
+	{
5725
+		$unique_indexes = array();
5726
+		foreach ($this->_indexes as $name => $index) {
5727
+			if ($index instanceof EE_Unique_Index) {
5728
+				$unique_indexes [ $name ] = $index;
5729
+			}
5730
+		}
5731
+		return $unique_indexes;
5732
+	}
5733
+
5734
+
5735
+
5736
+	/**
5737
+	 * Gets all the fields which, when combined, make the primary key.
5738
+	 * This is usually just an array with 1 element (the primary key), but in cases
5739
+	 * where there is no primary key, it's a combination of fields as defined
5740
+	 * on a primary index
5741
+	 *
5742
+	 * @return EE_Model_Field_Base[] indexed by the field's name
5743
+	 * @throws EE_Error
5744
+	 */
5745
+	public function get_combined_primary_key_fields()
5746
+	{
5747
+		foreach ($this->indexes() as $index) {
5748
+			if ($index instanceof EE_Primary_Key_Index) {
5749
+				return $index->fields();
5750
+			}
5751
+		}
5752
+		return array($this->primary_key_name() => $this->get_primary_key_field());
5753
+	}
5754
+
5755
+
5756
+
5757
+	/**
5758
+	 * Used to build a primary key string (when the model has no primary key),
5759
+	 * which can be used a unique string to identify this model object.
5760
+	 *
5761
+	 * @param array $cols_n_values keys are field names, values are their values
5762
+	 * @return string
5763
+	 * @throws EE_Error
5764
+	 */
5765
+	public function get_index_primary_key_string($cols_n_values)
5766
+	{
5767
+		$cols_n_values_for_primary_key_index = array_intersect_key(
5768
+			$cols_n_values,
5769
+			$this->get_combined_primary_key_fields()
5770
+		);
5771
+		return http_build_query($cols_n_values_for_primary_key_index);
5772
+	}
5773
+
5774
+
5775
+
5776
+	/**
5777
+	 * Gets the field values from the primary key string
5778
+	 *
5779
+	 * @see EEM_Base::get_combined_primary_key_fields() and EEM_Base::get_index_primary_key_string()
5780
+	 * @param string $index_primary_key_string
5781
+	 * @return null|array
5782
+	 * @throws EE_Error
5783
+	 */
5784
+	public function parse_index_primary_key_string($index_primary_key_string)
5785
+	{
5786
+		$key_fields = $this->get_combined_primary_key_fields();
5787
+		// check all of them are in the $id
5788
+		$key_vals_in_combined_pk = array();
5789
+		parse_str($index_primary_key_string, $key_vals_in_combined_pk);
5790
+		foreach ($key_fields as $key_field_name => $field_obj) {
5791
+			if (! isset($key_vals_in_combined_pk[ $key_field_name ])) {
5792
+				return null;
5793
+			}
5794
+		}
5795
+		return $key_vals_in_combined_pk;
5796
+	}
5797
+
5798
+
5799
+
5800
+	/**
5801
+	 * verifies that an array of key-value pairs for model fields has a key
5802
+	 * for each field comprising the primary key index
5803
+	 *
5804
+	 * @param array $key_vals
5805
+	 * @return boolean
5806
+	 * @throws EE_Error
5807
+	 */
5808
+	public function has_all_combined_primary_key_fields($key_vals)
5809
+	{
5810
+		$keys_it_should_have = array_keys($this->get_combined_primary_key_fields());
5811
+		foreach ($keys_it_should_have as $key) {
5812
+			if (! isset($key_vals[ $key ])) {
5813
+				return false;
5814
+			}
5815
+		}
5816
+		return true;
5817
+	}
5818
+
5819
+
5820
+
5821
+	/**
5822
+	 * Finds all model objects in the DB that appear to be a copy of $model_object_or_attributes_array.
5823
+	 * We consider something to be a copy if all the attributes match (except the ID, of course).
5824
+	 *
5825
+	 * @param array|EE_Base_Class $model_object_or_attributes_array If its an array, it's field-value pairs
5826
+	 * @param array               $query_params @see https://github.com/eventespresso/event-espresso-core/tree/master/docs/G--Model-System/model-query-params.md
5827
+	 * @throws EE_Error
5828
+	 * @return \EE_Base_Class[] Array keys are object IDs (if there is a primary key on the model. if not, numerically
5829
+	 *                                                              indexed)
5830
+	 */
5831
+	public function get_all_copies($model_object_or_attributes_array, $query_params = array())
5832
+	{
5833
+		if ($model_object_or_attributes_array instanceof EE_Base_Class) {
5834
+			$attributes_array = $model_object_or_attributes_array->model_field_array();
5835
+		} elseif (is_array($model_object_or_attributes_array)) {
5836
+			$attributes_array = $model_object_or_attributes_array;
5837
+		} else {
5838
+			throw new EE_Error(sprintf(__(
5839
+				"get_all_copies should be provided with either a model object or an array of field-value-pairs, but was given %s",
5840
+				"event_espresso"
5841
+			), $model_object_or_attributes_array));
5842
+		}
5843
+		// even copies obviously won't have the same ID, so remove the primary key
5844
+		// from the WHERE conditions for finding copies (if there is a primary key, of course)
5845
+		if ($this->has_primary_key_field() && isset($attributes_array[ $this->primary_key_name() ])) {
5846
+			unset($attributes_array[ $this->primary_key_name() ]);
5847
+		}
5848
+		if (isset($query_params[0])) {
5849
+			$query_params[0] = array_merge($attributes_array, $query_params);
5850
+		} else {
5851
+			$query_params[0] = $attributes_array;
5852
+		}
5853
+		return $this->get_all($query_params);
5854
+	}
5855
+
5856
+
5857
+
5858
+	/**
5859
+	 * Gets the first copy we find. See get_all_copies for more details
5860
+	 *
5861
+	 * @param       mixed EE_Base_Class | array        $model_object_or_attributes_array
5862
+	 * @param array $query_params
5863
+	 * @return EE_Base_Class
5864
+	 * @throws EE_Error
5865
+	 */
5866
+	public function get_one_copy($model_object_or_attributes_array, $query_params = array())
5867
+	{
5868
+		if (! is_array($query_params)) {
5869
+			EE_Error::doing_it_wrong(
5870
+				'EEM_Base::get_one_copy',
5871
+				sprintf(
5872
+					__('$query_params should be an array, you passed a variable of type %s', 'event_espresso'),
5873
+					gettype($query_params)
5874
+				),
5875
+				'4.6.0'
5876
+			);
5877
+			$query_params = array();
5878
+		}
5879
+		$query_params['limit'] = 1;
5880
+		$copies = $this->get_all_copies($model_object_or_attributes_array, $query_params);
5881
+		if (is_array($copies)) {
5882
+			return array_shift($copies);
5883
+		}
5884
+		return null;
5885
+	}
5886
+
5887
+
5888
+
5889
+	/**
5890
+	 * Updates the item with the specified id. Ignores default query parameters because
5891
+	 * we have specified the ID, and its assumed we KNOW what we're doing
5892
+	 *
5893
+	 * @param array      $fields_n_values keys are field names, values are their new values
5894
+	 * @param int|string $id              the value of the primary key to update
5895
+	 * @return int number of rows updated
5896
+	 * @throws EE_Error
5897
+	 */
5898
+	public function update_by_ID($fields_n_values, $id)
5899
+	{
5900
+		$query_params = array(
5901
+			0                          => array($this->get_primary_key_field()->get_name() => $id),
5902
+			'default_where_conditions' => EEM_Base::default_where_conditions_others_only,
5903
+		);
5904
+		return $this->update($fields_n_values, $query_params);
5905
+	}
5906
+
5907
+
5908
+
5909
+	/**
5910
+	 * Changes an operator which was supplied to the models into one usable in SQL
5911
+	 *
5912
+	 * @param string $operator_supplied
5913
+	 * @return string an operator which can be used in SQL
5914
+	 * @throws EE_Error
5915
+	 */
5916
+	private function _prepare_operator_for_sql($operator_supplied)
5917
+	{
5918
+		$sql_operator = isset($this->_valid_operators[ $operator_supplied ]) ? $this->_valid_operators[ $operator_supplied ]
5919
+			: null;
5920
+		if ($sql_operator) {
5921
+			return $sql_operator;
5922
+		}
5923
+		throw new EE_Error(
5924
+			sprintf(
5925
+				__(
5926
+					"The operator '%s' is not in the list of valid operators: %s",
5927
+					"event_espresso"
5928
+				),
5929
+				$operator_supplied,
5930
+				implode(",", array_keys($this->_valid_operators))
5931
+			)
5932
+		);
5933
+	}
5934
+
5935
+
5936
+
5937
+	/**
5938
+	 * Gets the valid operators
5939
+	 * @return array keys are accepted strings, values are the SQL they are converted to
5940
+	 */
5941
+	public function valid_operators()
5942
+	{
5943
+		return $this->_valid_operators;
5944
+	}
5945
+
5946
+
5947
+
5948
+	/**
5949
+	 * Gets the between-style operators (take 2 arguments).
5950
+	 * @return array keys are accepted strings, values are the SQL they are converted to
5951
+	 */
5952
+	public function valid_between_style_operators()
5953
+	{
5954
+		return array_intersect(
5955
+			$this->valid_operators(),
5956
+			$this->_between_style_operators
5957
+		);
5958
+	}
5959
+
5960
+	/**
5961
+	 * Gets the "like"-style operators (take a single argument, but it may contain wildcards)
5962
+	 * @return array keys are accepted strings, values are the SQL they are converted to
5963
+	 */
5964
+	public function valid_like_style_operators()
5965
+	{
5966
+		return array_intersect(
5967
+			$this->valid_operators(),
5968
+			$this->_like_style_operators
5969
+		);
5970
+	}
5971
+
5972
+	/**
5973
+	 * Gets the "in"-style operators
5974
+	 * @return array keys are accepted strings, values are the SQL they are converted to
5975
+	 */
5976
+	public function valid_in_style_operators()
5977
+	{
5978
+		return array_intersect(
5979
+			$this->valid_operators(),
5980
+			$this->_in_style_operators
5981
+		);
5982
+	}
5983
+
5984
+	/**
5985
+	 * Gets the "null"-style operators (accept no arguments)
5986
+	 * @return array keys are accepted strings, values are the SQL they are converted to
5987
+	 */
5988
+	public function valid_null_style_operators()
5989
+	{
5990
+		return array_intersect(
5991
+			$this->valid_operators(),
5992
+			$this->_null_style_operators
5993
+		);
5994
+	}
5995
+
5996
+	/**
5997
+	 * Gets an array where keys are the primary keys and values are their 'names'
5998
+	 * (as determined by the model object's name() function, which is often overridden)
5999
+	 *
6000
+	 * @param array $query_params like get_all's
6001
+	 * @return string[]
6002
+	 * @throws EE_Error
6003
+	 */
6004
+	public function get_all_names($query_params = array())
6005
+	{
6006
+		$objs = $this->get_all($query_params);
6007
+		$names = array();
6008
+		foreach ($objs as $obj) {
6009
+			$names[ $obj->ID() ] = $obj->name();
6010
+		}
6011
+		return $names;
6012
+	}
6013
+
6014
+
6015
+
6016
+	/**
6017
+	 * Gets an array of primary keys from the model objects. If you acquired the model objects
6018
+	 * using EEM_Base::get_all() you don't need to call this (and probably shouldn't because
6019
+	 * this is duplicated effort and reduces efficiency) you would be better to use
6020
+	 * array_keys() on $model_objects.
6021
+	 *
6022
+	 * @param \EE_Base_Class[] $model_objects
6023
+	 * @param boolean          $filter_out_empty_ids if a model object has an ID of '' or 0, don't bother including it
6024
+	 *                                               in the returned array
6025
+	 * @return array
6026
+	 * @throws EE_Error
6027
+	 */
6028
+	public function get_IDs($model_objects, $filter_out_empty_ids = false)
6029
+	{
6030
+		if (! $this->has_primary_key_field()) {
6031
+			if (WP_DEBUG) {
6032
+				EE_Error::add_error(
6033
+					__('Trying to get IDs from a model than has no primary key', 'event_espresso'),
6034
+					__FILE__,
6035
+					__FUNCTION__,
6036
+					__LINE__
6037
+				);
6038
+			}
6039
+		}
6040
+		$IDs = array();
6041
+		foreach ($model_objects as $model_object) {
6042
+			$id = $model_object->ID();
6043
+			if (! $id) {
6044
+				if ($filter_out_empty_ids) {
6045
+					continue;
6046
+				}
6047
+				if (WP_DEBUG) {
6048
+					EE_Error::add_error(
6049
+						__(
6050
+							'Called %1$s on a model object that has no ID and so probably hasn\'t been saved to the database',
6051
+							'event_espresso'
6052
+						),
6053
+						__FILE__,
6054
+						__FUNCTION__,
6055
+						__LINE__
6056
+					);
6057
+				}
6058
+			}
6059
+			$IDs[] = $id;
6060
+		}
6061
+		return $IDs;
6062
+	}
6063
+
6064
+
6065
+
6066
+	/**
6067
+	 * Returns the string used in capabilities relating to this model. If there
6068
+	 * are no capabilities that relate to this model returns false
6069
+	 *
6070
+	 * @return string|false
6071
+	 */
6072
+	public function cap_slug()
6073
+	{
6074
+		return apply_filters('FHEE__EEM_Base__cap_slug', $this->_caps_slug, $this);
6075
+	}
6076
+
6077
+
6078
+
6079
+	/**
6080
+	 * Returns the capability-restrictions array (@see EEM_Base::_cap_restrictions).
6081
+	 * If $context is provided (which should be set to one of EEM_Base::valid_cap_contexts())
6082
+	 * only returns the cap restrictions array in that context (ie, the array
6083
+	 * at that key)
6084
+	 *
6085
+	 * @param string $context
6086
+	 * @return EE_Default_Where_Conditions[] indexed by associated capability
6087
+	 * @throws EE_Error
6088
+	 */
6089
+	public function cap_restrictions($context = EEM_Base::caps_read)
6090
+	{
6091
+		EEM_Base::verify_is_valid_cap_context($context);
6092
+		// check if we ought to run the restriction generator first
6093
+		if (isset($this->_cap_restriction_generators[ $context ])
6094
+			&& $this->_cap_restriction_generators[ $context ] instanceof EE_Restriction_Generator_Base
6095
+			&& ! $this->_cap_restriction_generators[ $context ]->has_generated_cap_restrictions()
6096
+		) {
6097
+			$this->_cap_restrictions[ $context ] = array_merge(
6098
+				$this->_cap_restrictions[ $context ],
6099
+				$this->_cap_restriction_generators[ $context ]->generate_restrictions()
6100
+			);
6101
+		}
6102
+		// and make sure we've finalized the construction of each restriction
6103
+		foreach ($this->_cap_restrictions[ $context ] as $where_conditions_obj) {
6104
+			if ($where_conditions_obj instanceof EE_Default_Where_Conditions) {
6105
+				$where_conditions_obj->_finalize_construct($this);
6106
+			}
6107
+		}
6108
+		return $this->_cap_restrictions[ $context ];
6109
+	}
6110
+
6111
+
6112
+
6113
+	/**
6114
+	 * Indicating whether or not this model thinks its a wp core model
6115
+	 *
6116
+	 * @return boolean
6117
+	 */
6118
+	public function is_wp_core_model()
6119
+	{
6120
+		return $this->_wp_core_model;
6121
+	}
6122
+
6123
+
6124
+
6125
+	/**
6126
+	 * Gets all the caps that are missing which impose a restriction on
6127
+	 * queries made in this context
6128
+	 *
6129
+	 * @param string $context one of EEM_Base::caps_ constants
6130
+	 * @return EE_Default_Where_Conditions[] indexed by capability name
6131
+	 * @throws EE_Error
6132
+	 */
6133
+	public function caps_missing($context = EEM_Base::caps_read)
6134
+	{
6135
+		$missing_caps = array();
6136
+		$cap_restrictions = $this->cap_restrictions($context);
6137
+		foreach ($cap_restrictions as $cap => $restriction_if_no_cap) {
6138
+			if (! EE_Capabilities::instance()
6139
+								 ->current_user_can($cap, $this->get_this_model_name() . '_model_applying_caps')
6140
+			) {
6141
+				$missing_caps[ $cap ] = $restriction_if_no_cap;
6142
+			}
6143
+		}
6144
+		return $missing_caps;
6145
+	}
6146
+
6147
+
6148
+
6149
+	/**
6150
+	 * Gets the mapping from capability contexts to action strings used in capability names
6151
+	 *
6152
+	 * @return array keys are one of EEM_Base::valid_cap_contexts(), and values are usually
6153
+	 * one of 'read', 'edit', or 'delete'
6154
+	 */
6155
+	public function cap_contexts_to_cap_action_map()
6156
+	{
6157
+		return apply_filters(
6158
+			'FHEE__EEM_Base__cap_contexts_to_cap_action_map',
6159
+			$this->_cap_contexts_to_cap_action_map,
6160
+			$this
6161
+		);
6162
+	}
6163
+
6164
+
6165
+
6166
+	/**
6167
+	 * Gets the action string for the specified capability context
6168
+	 *
6169
+	 * @param string $context
6170
+	 * @return string one of EEM_Base::cap_contexts_to_cap_action_map() values
6171
+	 * @throws EE_Error
6172
+	 */
6173
+	public function cap_action_for_context($context)
6174
+	{
6175
+		$mapping = $this->cap_contexts_to_cap_action_map();
6176
+		if (isset($mapping[ $context ])) {
6177
+			return $mapping[ $context ];
6178
+		}
6179
+		if ($action = apply_filters('FHEE__EEM_Base__cap_action_for_context', null, $this, $mapping, $context)) {
6180
+			return $action;
6181
+		}
6182
+		throw new EE_Error(
6183
+			sprintf(
6184
+				__('Cannot find capability restrictions for context "%1$s", allowed values are:%2$s', 'event_espresso'),
6185
+				$context,
6186
+				implode(',', array_keys($this->cap_contexts_to_cap_action_map()))
6187
+			)
6188
+		);
6189
+	}
6190
+
6191
+
6192
+
6193
+	/**
6194
+	 * Returns all the capability contexts which are valid when querying models
6195
+	 *
6196
+	 * @return array
6197
+	 */
6198
+	public static function valid_cap_contexts()
6199
+	{
6200
+		return apply_filters('FHEE__EEM_Base__valid_cap_contexts', array(
6201
+			self::caps_read,
6202
+			self::caps_read_admin,
6203
+			self::caps_edit,
6204
+			self::caps_delete,
6205
+		));
6206
+	}
6207
+
6208
+
6209
+
6210
+	/**
6211
+	 * Returns all valid options for 'default_where_conditions'
6212
+	 *
6213
+	 * @return array
6214
+	 */
6215
+	public static function valid_default_where_conditions()
6216
+	{
6217
+		return array(
6218
+			EEM_Base::default_where_conditions_all,
6219
+			EEM_Base::default_where_conditions_this_only,
6220
+			EEM_Base::default_where_conditions_others_only,
6221
+			EEM_Base::default_where_conditions_minimum_all,
6222
+			EEM_Base::default_where_conditions_minimum_others,
6223
+			EEM_Base::default_where_conditions_none
6224
+		);
6225
+	}
6226
+
6227
+	// public static function default_where_conditions_full
6228
+	/**
6229
+	 * Verifies $context is one of EEM_Base::valid_cap_contexts(), if not it throws an exception
6230
+	 *
6231
+	 * @param string $context
6232
+	 * @return bool
6233
+	 * @throws EE_Error
6234
+	 */
6235
+	public static function verify_is_valid_cap_context($context)
6236
+	{
6237
+		$valid_cap_contexts = EEM_Base::valid_cap_contexts();
6238
+		if (in_array($context, $valid_cap_contexts)) {
6239
+			return true;
6240
+		}
6241
+		throw new EE_Error(
6242
+			sprintf(
6243
+				__(
6244
+					'Context "%1$s" passed into model "%2$s" is not a valid context. They are: %3$s',
6245
+					'event_espresso'
6246
+				),
6247
+				$context,
6248
+				'EEM_Base',
6249
+				implode(',', $valid_cap_contexts)
6250
+			)
6251
+		);
6252
+	}
6253
+
6254
+
6255
+
6256
+	/**
6257
+	 * Clears all the models field caches. This is only useful when a sub-class
6258
+	 * might have added a field or something and these caches might be invalidated
6259
+	 */
6260
+	protected function _invalidate_field_caches()
6261
+	{
6262
+		$this->_cache_foreign_key_to_fields = array();
6263
+		$this->_cached_fields = null;
6264
+		$this->_cached_fields_non_db_only = null;
6265
+	}
6266
+
6267
+
6268
+
6269
+	/**
6270
+	 * Gets the list of all the where query param keys that relate to logic instead of field names
6271
+	 * (eg "and", "or", "not").
6272
+	 *
6273
+	 * @return array
6274
+	 */
6275
+	public function logic_query_param_keys()
6276
+	{
6277
+		return $this->_logic_query_param_keys;
6278
+	}
6279
+
6280
+
6281
+
6282
+	/**
6283
+	 * Determines whether or not the where query param array key is for a logic query param.
6284
+	 * Eg 'OR', 'not*', and 'and*because-i-say-so' should all return true, whereas
6285
+	 * 'ATT_fname', 'EVT_name*not-you-or-me', and 'ORG_name' should return false
6286
+	 *
6287
+	 * @param $query_param_key
6288
+	 * @return bool
6289
+	 */
6290
+	public function is_logic_query_param_key($query_param_key)
6291
+	{
6292
+		foreach ($this->logic_query_param_keys() as $logic_query_param_key) {
6293
+			if ($query_param_key === $logic_query_param_key
6294
+				|| strpos($query_param_key, $logic_query_param_key . '*') === 0
6295
+			) {
6296
+				return true;
6297
+			}
6298
+		}
6299
+		return false;
6300
+	}
6301
+
6302
+	/**
6303
+	 * Returns true if this model has a password field on it (regardless of whether that password field has any content)
6304
+	 * @since $VID:$
6305
+	 * @return boolean
6306
+	 */
6307
+	public function hasPassword()
6308
+	{
6309
+		// if we don't yet know if there's a password field, find out and remember it for next time.
6310
+		if ($this->has_password_field === null) {
6311
+			$password_field = $this->getPasswordField();
6312
+			$this->has_password_field = $password_field instanceof EE_Password_Field ? true : false;
6313
+		}
6314
+		return $this->has_password_field;
6315
+	}
6316
+
6317
+	/**
6318
+	 * Returns the password field on this model, if there is one
6319
+	 * @since $VID:$
6320
+	 * @return EE_Password_Field|null
6321
+	 */
6322
+	public function getPasswordField()
6323
+	{
6324
+		// if we definetely already know there is a password field or not (because has_password_field is true or false)
6325
+		// there's no need to search for it. If we don't know yet, then find out
6326
+		if ($this->has_password_field === null && $this->password_field === null) {
6327
+			$this->password_field = $this->get_a_field_of_type('EE_Password_Field');
6328
+		}
6329
+		// don't bother setting has_password_field because that's hasPassword()'s job.
6330
+		return $this->password_field;
6331
+	}
6332
+
6333
+
6334
+	/**
6335
+	 * Returns the list of field (as EE_Model_Field_Bases) that are protected by the password
6336
+	 * @since $VID:$
6337
+	 * @return EE_Model_Field_Base[]
6338
+	 * @throws EE_Error
6339
+	 */
6340
+	public function getPasswordProtectedFields()
6341
+	{
6342
+		$password_field = $this->getPasswordField();
6343
+		$fields = array();
6344
+		if ($password_field instanceof EE_Password_Field) {
6345
+			$field_names = $password_field->protectedFields();
6346
+			foreach ($field_names as $field_name) {
6347
+				$fields[ $field_name ] = $this->field_settings_for($field_name);
6348
+			}
6349
+		}
6350
+		return $fields;
6351
+	}
6352
+
6353
+
6354
+	/**
6355
+	 * Checks if the current user can perform the requested action on this model
6356
+	 * @since $VID:$
6357
+	 * @param string $cap_to_check one of the array keys from _cap_contexts_to_cap_action_map
6358
+	 * @param EE_Base_Class|array $model_obj_or_fields_n_values
6359
+	 * @return bool
6360
+	 * @throws EE_Error
6361
+	 * @throws InvalidArgumentException
6362
+	 * @throws InvalidDataTypeException
6363
+	 * @throws InvalidInterfaceException
6364
+	 * @throws ReflectionException
6365
+	 * @throws UnexpectedEntityException
6366
+	 */
6367
+	public function currentUserCan($cap_to_check, $model_obj_or_fields_n_values)
6368
+	{
6369
+		if ($model_obj_or_fields_n_values instanceof EE_Base_Class) {
6370
+			$model_obj_or_fields_n_values = $model_obj_or_fields_n_values->model_field_array();
6371
+		}
6372
+		if (!is_array($model_obj_or_fields_n_values)) {
6373
+			throw new UnexpectedEntityException(
6374
+				$model_obj_or_fields_n_values,
6375
+				'EE_Base_Class',
6376
+				sprintf(
6377
+					esc_html__('%1$s must be passed an `EE_Base_Class or an array of fields names with their values. You passed in something different.', 'event_espresso'),
6378
+					__FUNCTION__
6379
+				)
6380
+			);
6381
+		}
6382
+		return $this->exists(
6383
+			$this->alter_query_params_to_restrict_by_ID(
6384
+				$this->get_index_primary_key_string($model_obj_or_fields_n_values),
6385
+				array(
6386
+					'default_where_conditions' => 'none',
6387
+					'caps'                     => $cap_to_check,
6388
+				)
6389
+			)
6390
+		);
6391
+	}
6392
+
6393
+	/**
6394
+	 * Returns the query param where conditions key to the password affecting this model.
6395
+	 * Eg on EEM_Event this would just be "password", on EEM_Datetime this would be "Event.password", etc.
6396
+	 * @since $VID:$
6397
+	 * @return null|string
6398
+	 * @throws EE_Error
6399
+	 * @throws InvalidArgumentException
6400
+	 * @throws InvalidDataTypeException
6401
+	 * @throws InvalidInterfaceException
6402
+	 * @throws ModelConfigurationException
6403
+	 * @throws ReflectionException
6404
+	 */
6405
+	public function modelChainAndPassword()
6406
+	{
6407
+		if ($this->model_chain_to_password === null) {
6408
+			throw new ModelConfigurationException(
6409
+				$this,
6410
+				esc_html_x(
6411
+				// @codingStandardsIgnoreStart
6412
+					'Cannot exclude protected data because the model has not specified which model has the password.',
6413
+					// @codingStandardsIgnoreEnd
6414
+					'1: model name',
6415
+					'event_espresso'
6416
+				)
6417
+			);
6418
+		}
6419
+		if ($this->model_chain_to_password === '') {
6420
+			$model_with_password = $this;
6421
+		} else {
6422
+			if ($pos_of_period = strrpos($this->model_chain_to_password, '.')) {
6423
+				$last_model_in_chain = substr($this->model_chain_to_password, $pos_of_period + 1);
6424
+			} else {
6425
+				$last_model_in_chain = $this->model_chain_to_password;
6426
+			}
6427
+			$model_with_password = EE_Registry::instance()->load_model($last_model_in_chain);
6428
+		}
6429
+
6430
+		$password_field = $model_with_password->getPasswordField();
6431
+		if ($password_field instanceof EE_Password_Field) {
6432
+			$password_field_name = $password_field->get_name();
6433
+		} else {
6434
+			throw new ModelConfigurationException(
6435
+				$this,
6436
+				sprintf(
6437
+					esc_html_x(
6438
+						'This model claims related model "%1$s" should have a password field on it, but none was found. The model relation chain is "%2$s"',
6439
+						'1: model name, 2: special string',
6440
+						'event_espresso'
6441
+					),
6442
+					$model_with_password->get_this_model_name(),
6443
+					$this->model_chain_to_password
6444
+				)
6445
+			);
6446
+		}
6447
+		return ($this->model_chain_to_password ? $this->model_chain_to_password . '.' : '') . $password_field_name;
6448
+	}
6449
+
6450
+	/**
6451
+	 * Returns true if there is a password on a related model which restricts access to some of this model's rows,
6452
+	 * or if this model itself has a password affecting access to some of its other fields.
6453
+	 * @since $VID:$
6454
+	 * @return boolean
6455
+	 */
6456
+	public function restrictedByRelatedModelPassword()
6457
+	{
6458
+		return $this->model_chain_to_password !== null;
6459
+	}
6460 6460
 }
Please login to merge, or discard this patch.
Spacing   +227 added lines, -227 removed lines patch added patch discarded remove patch
@@ -544,7 +544,7 @@  discard block
 block discarded – undo
544 544
     protected function __construct($timezone = null)
545 545
     {
546 546
         // check that the model has not been loaded too soon
547
-        if (! did_action('AHEE__EE_System__load_espresso_addons')) {
547
+        if ( ! did_action('AHEE__EE_System__load_espresso_addons')) {
548 548
             throw new EE_Error(
549 549
                 sprintf(
550 550
                     __(
@@ -567,7 +567,7 @@  discard block
 block discarded – undo
567 567
          *
568 568
          * @var EE_Table_Base[] $_tables
569 569
          */
570
-        $this->_tables = (array) apply_filters('FHEE__' . get_class($this) . '__construct__tables', $this->_tables);
570
+        $this->_tables = (array) apply_filters('FHEE__'.get_class($this).'__construct__tables', $this->_tables);
571 571
         foreach ($this->_tables as $table_alias => $table_obj) {
572 572
             /** @var $table_obj EE_Table_Base */
573 573
             $table_obj->_construct_finalize_with_alias($table_alias);
@@ -582,10 +582,10 @@  discard block
 block discarded – undo
582 582
          *
583 583
          * @param EE_Model_Field_Base[] $_fields
584 584
          */
585
-        $this->_fields = (array) apply_filters('FHEE__' . get_class($this) . '__construct__fields', $this->_fields);
585
+        $this->_fields = (array) apply_filters('FHEE__'.get_class($this).'__construct__fields', $this->_fields);
586 586
         $this->_invalidate_field_caches();
587 587
         foreach ($this->_fields as $table_alias => $fields_for_table) {
588
-            if (! array_key_exists($table_alias, $this->_tables)) {
588
+            if ( ! array_key_exists($table_alias, $this->_tables)) {
589 589
                 throw new EE_Error(sprintf(__(
590 590
                     "Table alias %s does not exist in EEM_Base child's _tables array. Only tables defined are %s",
591 591
                     'event_espresso'
@@ -616,7 +616,7 @@  discard block
 block discarded – undo
616 616
          * @param EE_Model_Relation_Base[] $_model_relations
617 617
          */
618 618
         $this->_model_relations = (array) apply_filters(
619
-            'FHEE__' . get_class($this) . '__construct__model_relations',
619
+            'FHEE__'.get_class($this).'__construct__model_relations',
620 620
             $this->_model_relations
621 621
         );
622 622
         foreach ($this->_model_relations as $model_name => $relation_obj) {
@@ -629,12 +629,12 @@  discard block
 block discarded – undo
629 629
         }
630 630
         $this->set_timezone($timezone);
631 631
         // finalize default where condition strategy, or set default
632
-        if (! $this->_default_where_conditions_strategy) {
632
+        if ( ! $this->_default_where_conditions_strategy) {
633 633
             // nothing was set during child constructor, so set default
634 634
             $this->_default_where_conditions_strategy = new EE_Default_Where_Conditions();
635 635
         }
636 636
         $this->_default_where_conditions_strategy->_finalize_construct($this);
637
-        if (! $this->_minimum_where_conditions_strategy) {
637
+        if ( ! $this->_minimum_where_conditions_strategy) {
638 638
             // nothing was set during child constructor, so set default
639 639
             $this->_minimum_where_conditions_strategy = new EE_Default_Where_Conditions();
640 640
         }
@@ -647,8 +647,8 @@  discard block
 block discarded – undo
647 647
         // initialize the standard cap restriction generators if none were specified by the child constructor
648 648
         if ($this->_cap_restriction_generators !== false) {
649 649
             foreach ($this->cap_contexts_to_cap_action_map() as $cap_context => $action) {
650
-                if (! isset($this->_cap_restriction_generators[ $cap_context ])) {
651
-                    $this->_cap_restriction_generators[ $cap_context ] = apply_filters(
650
+                if ( ! isset($this->_cap_restriction_generators[$cap_context])) {
651
+                    $this->_cap_restriction_generators[$cap_context] = apply_filters(
652 652
                         'FHEE__EEM_Base___construct__standard_cap_restriction_generator',
653 653
                         new EE_Restriction_Generator_Protected(),
654 654
                         $cap_context,
@@ -660,10 +660,10 @@  discard block
 block discarded – undo
660 660
         // if there are cap restriction generators, use them to make the default cap restrictions
661 661
         if ($this->_cap_restriction_generators !== false) {
662 662
             foreach ($this->_cap_restriction_generators as $context => $generator_object) {
663
-                if (! $generator_object) {
663
+                if ( ! $generator_object) {
664 664
                     continue;
665 665
                 }
666
-                if (! $generator_object instanceof EE_Restriction_Generator_Base) {
666
+                if ( ! $generator_object instanceof EE_Restriction_Generator_Base) {
667 667
                     throw new EE_Error(
668 668
                         sprintf(
669 669
                             __(
@@ -676,12 +676,12 @@  discard block
 block discarded – undo
676 676
                     );
677 677
                 }
678 678
                 $action = $this->cap_action_for_context($context);
679
-                if (! $generator_object->construction_finalized()) {
679
+                if ( ! $generator_object->construction_finalized()) {
680 680
                     $generator_object->_construct_finalize($this, $action);
681 681
                 }
682 682
             }
683 683
         }
684
-        do_action('AHEE__' . get_class($this) . '__construct__end');
684
+        do_action('AHEE__'.get_class($this).'__construct__end');
685 685
     }
686 686
 
687 687
 
@@ -728,7 +728,7 @@  discard block
 block discarded – undo
728 728
     public static function instance($timezone = null)
729 729
     {
730 730
         // check if instance of Espresso_model already exists
731
-        if (! static::$_instance instanceof static) {
731
+        if ( ! static::$_instance instanceof static) {
732 732
             // instantiate Espresso_model
733 733
             static::$_instance = new static(
734 734
                 $timezone,
@@ -767,7 +767,7 @@  discard block
 block discarded – undo
767 767
             foreach ($r->getDefaultProperties() as $property => $value) {
768 768
                 // don't set instance to null like it was originally,
769 769
                 // but it's static anyways, and we're ignoring static properties (for now at least)
770
-                if (! isset($static_properties[ $property ])) {
770
+                if ( ! isset($static_properties[$property])) {
771 771
                     static::$_instance->{$property} = $value;
772 772
                 }
773 773
             }
@@ -791,7 +791,7 @@  discard block
 block discarded – undo
791 791
      */
792 792
     private static function getLoader()
793 793
     {
794
-        if (! EEM_Base::$loader instanceof LoaderInterface) {
794
+        if ( ! EEM_Base::$loader instanceof LoaderInterface) {
795 795
             EEM_Base::$loader = LoaderFactory::getLoader();
796 796
         }
797 797
         return EEM_Base::$loader;
@@ -811,7 +811,7 @@  discard block
 block discarded – undo
811 811
      */
812 812
     public function status_array($translated = false)
813 813
     {
814
-        if (! array_key_exists('Status', $this->_model_relations)) {
814
+        if ( ! array_key_exists('Status', $this->_model_relations)) {
815 815
             return array();
816 816
         }
817 817
         $model_name = $this->get_this_model_name();
@@ -819,7 +819,7 @@  discard block
 block discarded – undo
819 819
         $stati = EEM_Status::instance()->get_all(array(array('STS_type' => $status_type)));
820 820
         $status_array = array();
821 821
         foreach ($stati as $status) {
822
-            $status_array[ $status->ID() ] = $status->get('STS_code');
822
+            $status_array[$status->ID()] = $status->get('STS_code');
823 823
         }
824 824
         return $translated
825 825
             ? EEM_Status::instance()->localized_status($status_array, false, 'sentence')
@@ -879,7 +879,7 @@  discard block
 block discarded – undo
879 879
     {
880 880
         $wp_user_field_name = $this->wp_user_field_name();
881 881
         if ($wp_user_field_name) {
882
-            $query_params[0][ $wp_user_field_name ] = get_current_user_id();
882
+            $query_params[0][$wp_user_field_name] = get_current_user_id();
883 883
         }
884 884
         return $query_params;
885 885
     }
@@ -897,17 +897,17 @@  discard block
 block discarded – undo
897 897
     public function wp_user_field_name()
898 898
     {
899 899
         try {
900
-            if (! empty($this->_model_chain_to_wp_user)) {
900
+            if ( ! empty($this->_model_chain_to_wp_user)) {
901 901
                 $models_to_follow_to_wp_users = explode('.', $this->_model_chain_to_wp_user);
902 902
                 $last_model_name = end($models_to_follow_to_wp_users);
903 903
                 $model_with_fk_to_wp_users = EE_Registry::instance()->load_model($last_model_name);
904
-                $model_chain_to_wp_user = $this->_model_chain_to_wp_user . '.';
904
+                $model_chain_to_wp_user = $this->_model_chain_to_wp_user.'.';
905 905
             } else {
906 906
                 $model_with_fk_to_wp_users = $this;
907 907
                 $model_chain_to_wp_user = '';
908 908
             }
909 909
             $wp_user_field = $model_with_fk_to_wp_users->get_foreign_key_to('WP_User');
910
-            return $model_chain_to_wp_user . $wp_user_field->get_name();
910
+            return $model_chain_to_wp_user.$wp_user_field->get_name();
911 911
         } catch (EE_Error $e) {
912 912
             return false;
913 913
         }
@@ -984,11 +984,11 @@  discard block
 block discarded – undo
984 984
         if ($this->_custom_selections instanceof CustomSelects) {
985 985
             $custom_expressions = $this->_custom_selections->columnsToSelectExpression();
986 986
             $select_expressions .= $select_expressions
987
-                ? ', ' . $custom_expressions
987
+                ? ', '.$custom_expressions
988 988
                 : $custom_expressions;
989 989
         }
990 990
 
991
-        $SQL = "SELECT $select_expressions " . $this->_construct_2nd_half_of_select_query($model_query_info);
991
+        $SQL = "SELECT $select_expressions ".$this->_construct_2nd_half_of_select_query($model_query_info);
992 992
         return $this->_do_wpdb_query('get_results', array($SQL, $output));
993 993
     }
994 994
 
@@ -1005,7 +1005,7 @@  discard block
 block discarded – undo
1005 1005
      */
1006 1006
     protected function getCustomSelection(array $query_params, $columns_to_select = null)
1007 1007
     {
1008
-        if (! isset($query_params['extra_selects']) && $columns_to_select === null) {
1008
+        if ( ! isset($query_params['extra_selects']) && $columns_to_select === null) {
1009 1009
             return null;
1010 1010
         }
1011 1011
         $selects = isset($query_params['extra_selects']) ? $query_params['extra_selects'] : $columns_to_select;
@@ -1054,7 +1054,7 @@  discard block
 block discarded – undo
1054 1054
         if (is_array($columns_to_select)) {
1055 1055
             $select_sql_array = array();
1056 1056
             foreach ($columns_to_select as $alias => $selection_and_datatype) {
1057
-                if (! is_array($selection_and_datatype) || ! isset($selection_and_datatype[1])) {
1057
+                if ( ! is_array($selection_and_datatype) || ! isset($selection_and_datatype[1])) {
1058 1058
                     throw new EE_Error(
1059 1059
                         sprintf(
1060 1060
                             __(
@@ -1066,7 +1066,7 @@  discard block
 block discarded – undo
1066 1066
                         )
1067 1067
                     );
1068 1068
                 }
1069
-                if (! in_array($selection_and_datatype[1], $this->_valid_wpdb_data_types, true)) {
1069
+                if ( ! in_array($selection_and_datatype[1], $this->_valid_wpdb_data_types, true)) {
1070 1070
                     throw new EE_Error(
1071 1071
                         sprintf(
1072 1072
                             esc_html__(
@@ -1138,12 +1138,12 @@  discard block
 block discarded – undo
1138 1138
      */
1139 1139
     public function alter_query_params_to_restrict_by_ID($id, $query_params = array())
1140 1140
     {
1141
-        if (! isset($query_params[0])) {
1141
+        if ( ! isset($query_params[0])) {
1142 1142
             $query_params[0] = array();
1143 1143
         }
1144 1144
         $conditions_from_id = $this->parse_index_primary_key_string($id);
1145 1145
         if ($conditions_from_id === null) {
1146
-            $query_params[0][ $this->primary_key_name() ] = $id;
1146
+            $query_params[0][$this->primary_key_name()] = $id;
1147 1147
         } else {
1148 1148
             // no primary key, so the $id must be from the get_index_primary_key_string()
1149 1149
             $query_params[0] = array_replace_recursive($query_params[0], $this->parse_index_primary_key_string($id));
@@ -1163,7 +1163,7 @@  discard block
 block discarded – undo
1163 1163
      */
1164 1164
     public function get_one($query_params = array())
1165 1165
     {
1166
-        if (! is_array($query_params)) {
1166
+        if ( ! is_array($query_params)) {
1167 1167
             EE_Error::doing_it_wrong(
1168 1168
                 'EEM_Base::get_one',
1169 1169
                 sprintf(
@@ -1361,7 +1361,7 @@  discard block
 block discarded – undo
1361 1361
                 return array();
1362 1362
             }
1363 1363
         }
1364
-        if (! is_array($query_params)) {
1364
+        if ( ! is_array($query_params)) {
1365 1365
             EE_Error::doing_it_wrong(
1366 1366
                 'EEM_Base::_get_consecutive',
1367 1367
                 sprintf(
@@ -1373,7 +1373,7 @@  discard block
 block discarded – undo
1373 1373
             $query_params = array();
1374 1374
         }
1375 1375
         // let's add the where query param for consecutive look up.
1376
-        $query_params[0][ $field_to_order_by ] = array($operand, $current_field_value);
1376
+        $query_params[0][$field_to_order_by] = array($operand, $current_field_value);
1377 1377
         $query_params['limit'] = $limit;
1378 1378
         // set direction
1379 1379
         $incoming_orderby = isset($query_params['order_by']) ? (array) $query_params['order_by'] : array();
@@ -1454,7 +1454,7 @@  discard block
 block discarded – undo
1454 1454
     {
1455 1455
         $field_settings = $this->field_settings_for($field_name);
1456 1456
         // if not a valid EE_Datetime_Field then throw error
1457
-        if (! $field_settings instanceof EE_Datetime_Field) {
1457
+        if ( ! $field_settings instanceof EE_Datetime_Field) {
1458 1458
             throw new EE_Error(sprintf(__(
1459 1459
                 'The field sent into EEM_Base::get_formats_for (%s) is not registered as a EE_Datetime_Field. Please check the spelling and make sure you are submitting the right field name to retrieve date_formats for.',
1460 1460
                 'event_espresso'
@@ -1603,7 +1603,7 @@  discard block
 block discarded – undo
1603 1603
      */
1604 1604
     public function update($fields_n_values, $query_params, $keep_model_objs_in_sync = true)
1605 1605
     {
1606
-        if (! is_array($query_params)) {
1606
+        if ( ! is_array($query_params)) {
1607 1607
             EE_Error::doing_it_wrong(
1608 1608
                 'EEM_Base::update',
1609 1609
                 sprintf(
@@ -1651,7 +1651,7 @@  discard block
 block discarded – undo
1651 1651
             $wpdb_result = (array) $wpdb_result;
1652 1652
             // get the model object's PK, as we'll want this if we need to insert a row into secondary tables
1653 1653
             if ($this->has_primary_key_field()) {
1654
-                $main_table_pk_value = $wpdb_result[ $this->get_primary_key_field()->get_qualified_column() ];
1654
+                $main_table_pk_value = $wpdb_result[$this->get_primary_key_field()->get_qualified_column()];
1655 1655
             } else {
1656 1656
                 // if there's no primary key, we basically can't support having a 2nd table on the model (we could but it would be lots of work)
1657 1657
                 $main_table_pk_value = null;
@@ -1665,8 +1665,8 @@  discard block
 block discarded – undo
1665 1665
                     $this_table_pk_column = $table_obj->get_fully_qualified_pk_column();
1666 1666
                     // if there is no private key for this table on the results, it means there's no entry
1667 1667
                     // in this table, right? so insert a row in the current table, using any fields available
1668
-                    if (! (array_key_exists($this_table_pk_column, $wpdb_result)
1669
-                           && $wpdb_result[ $this_table_pk_column ])
1668
+                    if ( ! (array_key_exists($this_table_pk_column, $wpdb_result)
1669
+                           && $wpdb_result[$this_table_pk_column])
1670 1670
                     ) {
1671 1671
                         $success = $this->_insert_into_specific_table(
1672 1672
                             $table_obj,
@@ -1674,7 +1674,7 @@  discard block
 block discarded – undo
1674 1674
                             $main_table_pk_value
1675 1675
                         );
1676 1676
                         // if we died here, report the error
1677
-                        if (! $success) {
1677
+                        if ( ! $success) {
1678 1678
                             return false;
1679 1679
                         }
1680 1680
                     }
@@ -1702,10 +1702,10 @@  discard block
 block discarded – undo
1702 1702
                 $model_objs_affected_ids = array();
1703 1703
                 foreach ($models_affected_key_columns as $row) {
1704 1704
                     $combined_index_key = $this->get_index_primary_key_string($row);
1705
-                    $model_objs_affected_ids[ $combined_index_key ] = $combined_index_key;
1705
+                    $model_objs_affected_ids[$combined_index_key] = $combined_index_key;
1706 1706
                 }
1707 1707
             }
1708
-            if (! $model_objs_affected_ids) {
1708
+            if ( ! $model_objs_affected_ids) {
1709 1709
                 // wait wait wait- if nothing was affected let's stop here
1710 1710
                 return 0;
1711 1711
             }
@@ -1732,7 +1732,7 @@  discard block
 block discarded – undo
1732 1732
                . $model_query_info->get_full_join_sql()
1733 1733
                . " SET "
1734 1734
                . $this->_construct_update_sql($fields_n_values)
1735
-               . $model_query_info->get_where_sql();// note: doesn't use _construct_2nd_half_of_select_query() because doesn't accept LIMIT, ORDER BY, etc.
1735
+               . $model_query_info->get_where_sql(); // note: doesn't use _construct_2nd_half_of_select_query() because doesn't accept LIMIT, ORDER BY, etc.
1736 1736
         $rows_affected = $this->_do_wpdb_query('query', array($SQL));
1737 1737
         /**
1738 1738
          * Action called after a model update call has been made.
@@ -1743,7 +1743,7 @@  discard block
 block discarded – undo
1743 1743
          * @param int      $rows_affected
1744 1744
          */
1745 1745
         do_action('AHEE__EEM_Base__update__end', $this, $fields_n_values, $query_params, $rows_affected);
1746
-        return $rows_affected;// how many supposedly got updated
1746
+        return $rows_affected; // how many supposedly got updated
1747 1747
     }
1748 1748
 
1749 1749
 
@@ -1771,7 +1771,7 @@  discard block
 block discarded – undo
1771 1771
         }
1772 1772
         $model_query_info = $this->_create_model_query_info_carrier($query_params);
1773 1773
         $select_expressions = $field->get_qualified_column();
1774
-        $SQL = "SELECT $select_expressions " . $this->_construct_2nd_half_of_select_query($model_query_info);
1774
+        $SQL = "SELECT $select_expressions ".$this->_construct_2nd_half_of_select_query($model_query_info);
1775 1775
         return $this->_do_wpdb_query('get_col', array($SQL));
1776 1776
     }
1777 1777
 
@@ -1789,7 +1789,7 @@  discard block
 block discarded – undo
1789 1789
     {
1790 1790
         $query_params['limit'] = 1;
1791 1791
         $col = $this->get_col($query_params, $field_to_select);
1792
-        if (! empty($col)) {
1792
+        if ( ! empty($col)) {
1793 1793
             return reset($col);
1794 1794
         }
1795 1795
         return null;
@@ -1820,7 +1820,7 @@  discard block
 block discarded – undo
1820 1820
             $prepared_value = $this->_prepare_value_or_use_default($field_obj, $fields_n_values);
1821 1821
             $value_sql = $prepared_value === null ? 'NULL'
1822 1822
                 : $wpdb->prepare($field_obj->get_wpdb_data_type(), $prepared_value);
1823
-            $cols_n_values[] = $field_obj->get_qualified_column() . "=" . $value_sql;
1823
+            $cols_n_values[] = $field_obj->get_qualified_column()."=".$value_sql;
1824 1824
         }
1825 1825
         return implode(",", $cols_n_values);
1826 1826
     }
@@ -1963,12 +1963,12 @@  discard block
 block discarded – undo
1963 1963
         // there was no error with the delete query.
1964 1964
         if ($this->has_primary_key_field()
1965 1965
             && $rows_deleted !== false
1966
-            && isset($columns_and_ids_for_deleting[ $this->get_primary_key_field()->get_qualified_column() ])
1966
+            && isset($columns_and_ids_for_deleting[$this->get_primary_key_field()->get_qualified_column()])
1967 1967
         ) {
1968
-            $ids_for_removal = $columns_and_ids_for_deleting[ $this->get_primary_key_field()->get_qualified_column() ];
1968
+            $ids_for_removal = $columns_and_ids_for_deleting[$this->get_primary_key_field()->get_qualified_column()];
1969 1969
             foreach ($ids_for_removal as $id) {
1970
-                if (isset($this->_entity_map[ EEM_Base::$_model_query_blog_id ][ $id ])) {
1971
-                    unset($this->_entity_map[ EEM_Base::$_model_query_blog_id ][ $id ]);
1970
+                if (isset($this->_entity_map[EEM_Base::$_model_query_blog_id][$id])) {
1971
+                    unset($this->_entity_map[EEM_Base::$_model_query_blog_id][$id]);
1972 1972
                 }
1973 1973
             }
1974 1974
 
@@ -2003,7 +2003,7 @@  discard block
 block discarded – undo
2003 2003
          * @param int      $rows_deleted
2004 2004
          */
2005 2005
         do_action('AHEE__EEM_Base__delete__end', $this, $query_params, $rows_deleted, $columns_and_ids_for_deleting);
2006
-        return $rows_deleted;// how many supposedly got deleted
2006
+        return $rows_deleted; // how many supposedly got deleted
2007 2007
     }
2008 2008
 
2009 2009
 
@@ -2096,15 +2096,15 @@  discard block
 block discarded – undo
2096 2096
                 // make sure there's no related entities blocking its deletion (if we're checking)
2097 2097
                 if ($allow_blocking
2098 2098
                     && $this->delete_is_blocked_by_related_models(
2099
-                        $item_to_delete[ $primary_table->get_fully_qualified_pk_column() ]
2099
+                        $item_to_delete[$primary_table->get_fully_qualified_pk_column()]
2100 2100
                     )
2101 2101
                 ) {
2102 2102
                     continue;
2103 2103
                 }
2104 2104
                 // primary table deletes
2105
-                if (isset($item_to_delete[ $primary_table->get_fully_qualified_pk_column() ])) {
2106
-                    $ids_to_delete_indexed_by_column[ $primary_table->get_fully_qualified_pk_column() ][] =
2107
-                        $item_to_delete[ $primary_table->get_fully_qualified_pk_column() ];
2105
+                if (isset($item_to_delete[$primary_table->get_fully_qualified_pk_column()])) {
2106
+                    $ids_to_delete_indexed_by_column[$primary_table->get_fully_qualified_pk_column()][] =
2107
+                        $item_to_delete[$primary_table->get_fully_qualified_pk_column()];
2108 2108
                 }
2109 2109
             }
2110 2110
         } elseif (count($this->get_combined_primary_key_fields()) > 1) {
@@ -2113,8 +2113,8 @@  discard block
 block discarded – undo
2113 2113
                 $ids_to_delete_indexed_by_column_for_row = array();
2114 2114
                 foreach ($fields as $cpk_field) {
2115 2115
                     if ($cpk_field instanceof EE_Model_Field_Base) {
2116
-                        $ids_to_delete_indexed_by_column_for_row[ $cpk_field->get_qualified_column() ] =
2117
-                            $item_to_delete[ $cpk_field->get_qualified_column() ];
2116
+                        $ids_to_delete_indexed_by_column_for_row[$cpk_field->get_qualified_column()] =
2117
+                            $item_to_delete[$cpk_field->get_qualified_column()];
2118 2118
                     }
2119 2119
                 }
2120 2120
                 $ids_to_delete_indexed_by_column[] = $ids_to_delete_indexed_by_column_for_row;
@@ -2154,7 +2154,7 @@  discard block
 block discarded – undo
2154 2154
             foreach ($ids_to_delete_indexed_by_column as $column => $ids) {
2155 2155
                 // make sure we have unique $ids
2156 2156
                 $ids = array_unique($ids);
2157
-                $query[] = $column . ' IN(' . implode(',', $ids) . ')';
2157
+                $query[] = $column.' IN('.implode(',', $ids).')';
2158 2158
             }
2159 2159
             $query_part = ! empty($query) ? implode(' AND ', $query) : $query_part;
2160 2160
         } elseif (count($this->get_combined_primary_key_fields()) > 1) {
@@ -2162,7 +2162,7 @@  discard block
 block discarded – undo
2162 2162
             foreach ($ids_to_delete_indexed_by_column as $ids_to_delete_indexed_by_column_for_each_row) {
2163 2163
                 $values_for_each_combined_primary_key_for_a_row = array();
2164 2164
                 foreach ($ids_to_delete_indexed_by_column_for_each_row as $column => $id) {
2165
-                    $values_for_each_combined_primary_key_for_a_row[] = $column . '=' . $id;
2165
+                    $values_for_each_combined_primary_key_for_a_row[] = $column.'='.$id;
2166 2166
                 }
2167 2167
                 $ways_to_identify_a_row[] = '('
2168 2168
                                             . implode(' AND ', $values_for_each_combined_primary_key_for_a_row)
@@ -2234,8 +2234,8 @@  discard block
 block discarded – undo
2234 2234
                 $column_to_count = '*';
2235 2235
             }
2236 2236
         }
2237
-        $column_to_count = $distinct ? "DISTINCT " . $column_to_count : $column_to_count;
2238
-        $SQL = "SELECT COUNT(" . $column_to_count . ")" . $this->_construct_2nd_half_of_select_query($model_query_info);
2237
+        $column_to_count = $distinct ? "DISTINCT ".$column_to_count : $column_to_count;
2238
+        $SQL = "SELECT COUNT(".$column_to_count.")".$this->_construct_2nd_half_of_select_query($model_query_info);
2239 2239
         return (int) $this->_do_wpdb_query('get_var', array($SQL));
2240 2240
     }
2241 2241
 
@@ -2258,7 +2258,7 @@  discard block
 block discarded – undo
2258 2258
             $field_obj = $this->get_primary_key_field();
2259 2259
         }
2260 2260
         $column_to_count = $field_obj->get_qualified_column();
2261
-        $SQL = "SELECT SUM(" . $column_to_count . ")" . $this->_construct_2nd_half_of_select_query($model_query_info);
2261
+        $SQL = "SELECT SUM(".$column_to_count.")".$this->_construct_2nd_half_of_select_query($model_query_info);
2262 2262
         $return_value = $this->_do_wpdb_query('get_var', array($SQL));
2263 2263
         $data_type = $field_obj->get_wpdb_data_type();
2264 2264
         if ($data_type === '%d' || $data_type === '%s') {
@@ -2285,7 +2285,7 @@  discard block
 block discarded – undo
2285 2285
         // if we're in maintenance mode level 2, DON'T run any queries
2286 2286
         // because level 2 indicates the database needs updating and
2287 2287
         // is probably out of sync with the code
2288
-        if (! EE_Maintenance_Mode::instance()->models_can_query()) {
2288
+        if ( ! EE_Maintenance_Mode::instance()->models_can_query()) {
2289 2289
             throw new EE_Error(sprintf(__(
2290 2290
                 "Event Espresso Level 2 Maintenance mode is active. That means EE can not run ANY database queries until the necessary migration scripts have run which will take EE out of maintenance mode level 2. Please inform support of this error.",
2291 2291
                 "event_espresso"
@@ -2293,7 +2293,7 @@  discard block
 block discarded – undo
2293 2293
         }
2294 2294
         /** @type WPDB $wpdb */
2295 2295
         global $wpdb;
2296
-        if (! method_exists($wpdb, $wpdb_method)) {
2296
+        if ( ! method_exists($wpdb, $wpdb_method)) {
2297 2297
             throw new EE_Error(sprintf(__(
2298 2298
                 'There is no method named "%s" on Wordpress\' $wpdb object',
2299 2299
                 'event_espresso'
@@ -2307,7 +2307,7 @@  discard block
 block discarded – undo
2307 2307
         $this->show_db_query_if_previously_requested($wpdb->last_query);
2308 2308
         if (WP_DEBUG) {
2309 2309
             $wpdb->show_errors($old_show_errors_value);
2310
-            if (! empty($wpdb->last_error)) {
2310
+            if ( ! empty($wpdb->last_error)) {
2311 2311
                 throw new EE_Error(sprintf(__('WPDB Error: "%s"', 'event_espresso'), $wpdb->last_error));
2312 2312
             }
2313 2313
             if ($result === false) {
@@ -2372,7 +2372,7 @@  discard block
 block discarded – undo
2372 2372
                     return $result;
2373 2373
                     break;
2374 2374
             }
2375
-            if (! empty($error_message)) {
2375
+            if ( ! empty($error_message)) {
2376 2376
                 EE_Log::instance()->log(__FILE__, __FUNCTION__, $error_message, 'error');
2377 2377
                 trigger_error($error_message);
2378 2378
             }
@@ -2452,11 +2452,11 @@  discard block
 block discarded – undo
2452 2452
      */
2453 2453
     private function _construct_2nd_half_of_select_query(EE_Model_Query_Info_Carrier $model_query_info)
2454 2454
     {
2455
-        return " FROM " . $model_query_info->get_full_join_sql() .
2456
-               $model_query_info->get_where_sql() .
2457
-               $model_query_info->get_group_by_sql() .
2458
-               $model_query_info->get_having_sql() .
2459
-               $model_query_info->get_order_by_sql() .
2455
+        return " FROM ".$model_query_info->get_full_join_sql().
2456
+               $model_query_info->get_where_sql().
2457
+               $model_query_info->get_group_by_sql().
2458
+               $model_query_info->get_having_sql().
2459
+               $model_query_info->get_order_by_sql().
2460 2460
                $model_query_info->get_limit_sql();
2461 2461
     }
2462 2462
 
@@ -2652,12 +2652,12 @@  discard block
 block discarded – undo
2652 2652
         $related_model = $this->get_related_model_obj($model_name);
2653 2653
         // we're just going to use the query params on the related model's normal get_all query,
2654 2654
         // except add a condition to say to match the current mod
2655
-        if (! isset($query_params['default_where_conditions'])) {
2655
+        if ( ! isset($query_params['default_where_conditions'])) {
2656 2656
             $query_params['default_where_conditions'] = EEM_Base::default_where_conditions_none;
2657 2657
         }
2658 2658
         $this_model_name = $this->get_this_model_name();
2659 2659
         $this_pk_field_name = $this->get_primary_key_field()->get_name();
2660
-        $query_params[0][ $this_model_name . "." . $this_pk_field_name ] = $id_or_obj;
2660
+        $query_params[0][$this_model_name.".".$this_pk_field_name] = $id_or_obj;
2661 2661
         return $related_model->count($query_params, $field_to_count, $distinct);
2662 2662
     }
2663 2663
 
@@ -2677,7 +2677,7 @@  discard block
 block discarded – undo
2677 2677
     public function sum_related($id_or_obj, $model_name, $query_params, $field_to_sum = null)
2678 2678
     {
2679 2679
         $related_model = $this->get_related_model_obj($model_name);
2680
-        if (! is_array($query_params)) {
2680
+        if ( ! is_array($query_params)) {
2681 2681
             EE_Error::doing_it_wrong(
2682 2682
                 'EEM_Base::sum_related',
2683 2683
                 sprintf(
@@ -2690,12 +2690,12 @@  discard block
 block discarded – undo
2690 2690
         }
2691 2691
         // we're just going to use the query params on the related model's normal get_all query,
2692 2692
         // except add a condition to say to match the current mod
2693
-        if (! isset($query_params['default_where_conditions'])) {
2693
+        if ( ! isset($query_params['default_where_conditions'])) {
2694 2694
             $query_params['default_where_conditions'] = EEM_Base::default_where_conditions_none;
2695 2695
         }
2696 2696
         $this_model_name = $this->get_this_model_name();
2697 2697
         $this_pk_field_name = $this->get_primary_key_field()->get_name();
2698
-        $query_params[0][ $this_model_name . "." . $this_pk_field_name ] = $id_or_obj;
2698
+        $query_params[0][$this_model_name.".".$this_pk_field_name] = $id_or_obj;
2699 2699
         return $related_model->sum($query_params, $field_to_sum);
2700 2700
     }
2701 2701
 
@@ -2748,7 +2748,7 @@  discard block
 block discarded – undo
2748 2748
                 $field_with_model_name = $field;
2749 2749
             }
2750 2750
         }
2751
-        if (! isset($field_with_model_name) || ! $field_with_model_name) {
2751
+        if ( ! isset($field_with_model_name) || ! $field_with_model_name) {
2752 2752
             throw new EE_Error(sprintf(
2753 2753
                 __("There is no EE_Any_Foreign_Model_Name field on model %s", "event_espresso"),
2754 2754
                 $this->get_this_model_name()
@@ -2884,13 +2884,13 @@  discard block
 block discarded – undo
2884 2884
                 || $this->get_primary_key_field()
2885 2885
                    instanceof
2886 2886
                    EE_Primary_Key_String_Field)
2887
-            && isset($fields_n_values[ $this->primary_key_name() ])
2887
+            && isset($fields_n_values[$this->primary_key_name()])
2888 2888
         ) {
2889
-            $query_params[0]['OR'][ $this->primary_key_name() ] = $fields_n_values[ $this->primary_key_name() ];
2889
+            $query_params[0]['OR'][$this->primary_key_name()] = $fields_n_values[$this->primary_key_name()];
2890 2890
         }
2891 2891
         foreach ($this->unique_indexes() as $unique_index_name => $unique_index) {
2892 2892
             $uniqueness_where_params = array_intersect_key($fields_n_values, $unique_index->fields());
2893
-            $query_params[0]['OR'][ 'AND*' . $unique_index_name ] = $uniqueness_where_params;
2893
+            $query_params[0]['OR']['AND*'.$unique_index_name] = $uniqueness_where_params;
2894 2894
         }
2895 2895
         // if there is nothing to base this search on, then we shouldn't find anything
2896 2896
         if (empty($query_params)) {
@@ -2968,15 +2968,15 @@  discard block
 block discarded – undo
2968 2968
             $prepared_value = $this->_prepare_value_or_use_default($field_obj, $fields_n_values);
2969 2969
             // if the value we want to assign it to is NULL, just don't mention it for the insertion
2970 2970
             if ($prepared_value !== null) {
2971
-                $insertion_col_n_values[ $field_obj->get_table_column() ] = $prepared_value;
2971
+                $insertion_col_n_values[$field_obj->get_table_column()] = $prepared_value;
2972 2972
                 $format_for_insertion[] = $field_obj->get_wpdb_data_type();
2973 2973
             }
2974 2974
         }
2975 2975
         if ($table instanceof EE_Secondary_Table && $new_id) {
2976 2976
             // its not the main table, so we should have already saved the main table's PK which we just inserted
2977 2977
             // so add the fk to the main table as a column
2978
-            $insertion_col_n_values[ $table->get_fk_on_table() ] = $new_id;
2979
-            $format_for_insertion[] = '%d';// yes right now we're only allowing these foreign keys to be INTs
2978
+            $insertion_col_n_values[$table->get_fk_on_table()] = $new_id;
2979
+            $format_for_insertion[] = '%d'; // yes right now we're only allowing these foreign keys to be INTs
2980 2980
         }
2981 2981
         // insert the new entry
2982 2982
         $result = $this->_do_wpdb_query(
@@ -2993,7 +2993,7 @@  discard block
 block discarded – undo
2993 2993
             }
2994 2994
             // it's not an auto-increment primary key, so
2995 2995
             // it must have been supplied
2996
-            return $fields_n_values[ $this->get_primary_key_field()->get_name() ];
2996
+            return $fields_n_values[$this->get_primary_key_field()->get_name()];
2997 2997
         }
2998 2998
         // we can't return a  primary key because there is none. instead return
2999 2999
         // a unique string indicating this model
@@ -3015,16 +3015,16 @@  discard block
 block discarded – undo
3015 3015
     protected function _prepare_value_or_use_default($field_obj, $fields_n_values)
3016 3016
     {
3017 3017
         // if this field doesn't allow nullable, don't allow it
3018
-        if (! $field_obj->is_nullable()
3018
+        if ( ! $field_obj->is_nullable()
3019 3019
             && (
3020
-                ! isset($fields_n_values[ $field_obj->get_name() ])
3021
-                || $fields_n_values[ $field_obj->get_name() ] === null
3020
+                ! isset($fields_n_values[$field_obj->get_name()])
3021
+                || $fields_n_values[$field_obj->get_name()] === null
3022 3022
             )
3023 3023
         ) {
3024
-            $fields_n_values[ $field_obj->get_name() ] = $field_obj->get_default_value();
3024
+            $fields_n_values[$field_obj->get_name()] = $field_obj->get_default_value();
3025 3025
         }
3026
-        $unprepared_value = isset($fields_n_values[ $field_obj->get_name() ])
3027
-            ? $fields_n_values[ $field_obj->get_name() ]
3026
+        $unprepared_value = isset($fields_n_values[$field_obj->get_name()])
3027
+            ? $fields_n_values[$field_obj->get_name()]
3028 3028
             : null;
3029 3029
         return $this->_prepare_value_for_use_in_db($unprepared_value, $field_obj);
3030 3030
     }
@@ -3125,7 +3125,7 @@  discard block
 block discarded – undo
3125 3125
      */
3126 3126
     public function get_table_obj_by_alias($table_alias = '')
3127 3127
     {
3128
-        return isset($this->_tables[ $table_alias ]) ? $this->_tables[ $table_alias ] : null;
3128
+        return isset($this->_tables[$table_alias]) ? $this->_tables[$table_alias] : null;
3129 3129
     }
3130 3130
 
3131 3131
 
@@ -3140,7 +3140,7 @@  discard block
 block discarded – undo
3140 3140
         $other_tables = array();
3141 3141
         foreach ($this->_tables as $table_alias => $table) {
3142 3142
             if ($table instanceof EE_Secondary_Table) {
3143
-                $other_tables[ $table_alias ] = $table;
3143
+                $other_tables[$table_alias] = $table;
3144 3144
             }
3145 3145
         }
3146 3146
         return $other_tables;
@@ -3156,7 +3156,7 @@  discard block
 block discarded – undo
3156 3156
      */
3157 3157
     public function _get_fields_for_table($table_alias)
3158 3158
     {
3159
-        return $this->_fields[ $table_alias ];
3159
+        return $this->_fields[$table_alias];
3160 3160
     }
3161 3161
 
3162 3162
 
@@ -3185,7 +3185,7 @@  discard block
 block discarded – undo
3185 3185
                     $query_info_carrier,
3186 3186
                     'group_by'
3187 3187
                 );
3188
-            } elseif (! empty($query_params['group_by'])) {
3188
+            } elseif ( ! empty($query_params['group_by'])) {
3189 3189
                 $this->_extract_related_model_info_from_query_param(
3190 3190
                     $query_params['group_by'],
3191 3191
                     $query_info_carrier,
@@ -3207,7 +3207,7 @@  discard block
 block discarded – undo
3207 3207
                     $query_info_carrier,
3208 3208
                     'order_by'
3209 3209
                 );
3210
-            } elseif (! empty($query_params['order_by'])) {
3210
+            } elseif ( ! empty($query_params['order_by'])) {
3211 3211
                 $this->_extract_related_model_info_from_query_param(
3212 3212
                     $query_params['order_by'],
3213 3213
                     $query_info_carrier,
@@ -3242,7 +3242,7 @@  discard block
 block discarded – undo
3242 3242
         EE_Model_Query_Info_Carrier $model_query_info_carrier,
3243 3243
         $query_param_type
3244 3244
     ) {
3245
-        if (! empty($sub_query_params)) {
3245
+        if ( ! empty($sub_query_params)) {
3246 3246
             $sub_query_params = (array) $sub_query_params;
3247 3247
             foreach ($sub_query_params as $param => $possibly_array_of_params) {
3248 3248
                 // $param could be simply 'EVT_ID', or it could be 'Registrations.REG_ID', or even 'Registrations.Transactions.Payments.PAY_amount'
@@ -3257,7 +3257,7 @@  discard block
 block discarded – undo
3257 3257
                 // of array('Registration.TXN_ID'=>23)
3258 3258
                 $query_param_sans_stars = $this->_remove_stars_and_anything_after_from_condition_query_param_key($param);
3259 3259
                 if (in_array($query_param_sans_stars, $this->_logic_query_param_keys, true)) {
3260
-                    if (! is_array($possibly_array_of_params)) {
3260
+                    if ( ! is_array($possibly_array_of_params)) {
3261 3261
                         throw new EE_Error(sprintf(
3262 3262
                             __(
3263 3263
                                 "You used a special where query param %s, but the value isn't an array of where query params, it's just %s'. It should be an array, eg array('EVT_ID'=>23,'OR'=>array('Venue.VNU_ID'=>32,'Venue.VNU_name'=>'monkey_land'))",
@@ -3280,7 +3280,7 @@  discard block
 block discarded – undo
3280 3280
                     // then $possible_array_of_params looks something like array('<','DTT_sold',true)
3281 3281
                     // indicating that $possible_array_of_params[1] is actually a field name,
3282 3282
                     // from which we should extract query parameters!
3283
-                    if (! isset($possibly_array_of_params[0], $possibly_array_of_params[1])) {
3283
+                    if ( ! isset($possibly_array_of_params[0], $possibly_array_of_params[1])) {
3284 3284
                         throw new EE_Error(sprintf(__(
3285 3285
                             "Improperly formed query parameter %s. It should be numerically indexed like array('<','DTT_sold',true); but you provided %s",
3286 3286
                             "event_espresso"
@@ -3314,8 +3314,8 @@  discard block
 block discarded – undo
3314 3314
         EE_Model_Query_Info_Carrier $model_query_info_carrier,
3315 3315
         $query_param_type
3316 3316
     ) {
3317
-        if (! empty($sub_query_params)) {
3318
-            if (! is_array($sub_query_params)) {
3317
+        if ( ! empty($sub_query_params)) {
3318
+            if ( ! is_array($sub_query_params)) {
3319 3319
                 throw new EE_Error(sprintf(
3320 3320
                     __("Query parameter %s should be an array, but it isn't.", "event_espresso"),
3321 3321
                     $sub_query_params
@@ -3349,7 +3349,7 @@  discard block
 block discarded – undo
3349 3349
      */
3350 3350
     public function _create_model_query_info_carrier($query_params)
3351 3351
     {
3352
-        if (! is_array($query_params)) {
3352
+        if ( ! is_array($query_params)) {
3353 3353
             EE_Error::doing_it_wrong(
3354 3354
                 'EEM_Base::_create_model_query_info_carrier',
3355 3355
                 sprintf(
@@ -3382,7 +3382,7 @@  discard block
 block discarded – undo
3382 3382
             // only include if related to a cpt where no password has been set
3383 3383
             $query_params[0]['OR*nopassword'] = array(
3384 3384
                 $where_param_key_for_password => '',
3385
-                $where_param_key_for_password . '*' => array('IS_NULL')
3385
+                $where_param_key_for_password.'*' => array('IS_NULL')
3386 3386
             );
3387 3387
         }
3388 3388
         $query_object = $this->_extract_related_models_from_query($query_params);
@@ -3435,7 +3435,7 @@  discard block
 block discarded – undo
3435 3435
         // set limit
3436 3436
         if (array_key_exists('limit', $query_params)) {
3437 3437
             if (is_array($query_params['limit'])) {
3438
-                if (! isset($query_params['limit'][0], $query_params['limit'][1])) {
3438
+                if ( ! isset($query_params['limit'][0], $query_params['limit'][1])) {
3439 3439
                     $e = sprintf(
3440 3440
                         __(
3441 3441
                             "Invalid DB query. You passed '%s' for the LIMIT, but only the following are valid: an integer, string representing an integer, a string like 'int,int', or an array like array(int,int)",
@@ -3443,12 +3443,12 @@  discard block
 block discarded – undo
3443 3443
                         ),
3444 3444
                         http_build_query($query_params['limit'])
3445 3445
                     );
3446
-                    throw new EE_Error($e . "|" . $e);
3446
+                    throw new EE_Error($e."|".$e);
3447 3447
                 }
3448 3448
                 // they passed us an array for the limit. Assume it's like array(50,25), meaning offset by 50, and get 25
3449
-                $query_object->set_limit_sql(" LIMIT " . $query_params['limit'][0] . "," . $query_params['limit'][1]);
3450
-            } elseif (! empty($query_params['limit'])) {
3451
-                $query_object->set_limit_sql(" LIMIT " . $query_params['limit']);
3449
+                $query_object->set_limit_sql(" LIMIT ".$query_params['limit'][0].",".$query_params['limit'][1]);
3450
+            } elseif ( ! empty($query_params['limit'])) {
3451
+                $query_object->set_limit_sql(" LIMIT ".$query_params['limit']);
3452 3452
             }
3453 3453
         }
3454 3454
         // set order by
@@ -3480,10 +3480,10 @@  discard block
 block discarded – undo
3480 3480
                 $order_array = array();
3481 3481
                 foreach ($query_params['order_by'] as $field_name_to_order_by => $order) {
3482 3482
                     $order = $this->_extract_order($order);
3483
-                    $order_array[] = $this->_deduce_column_name_from_query_param($field_name_to_order_by) . SP . $order;
3483
+                    $order_array[] = $this->_deduce_column_name_from_query_param($field_name_to_order_by).SP.$order;
3484 3484
                 }
3485
-                $query_object->set_order_by_sql(" ORDER BY " . implode(",", $order_array));
3486
-            } elseif (! empty($query_params['order_by'])) {
3485
+                $query_object->set_order_by_sql(" ORDER BY ".implode(",", $order_array));
3486
+            } elseif ( ! empty($query_params['order_by'])) {
3487 3487
                 $this->_extract_related_model_info_from_query_param(
3488 3488
                     $query_params['order_by'],
3489 3489
                     $query_object,
@@ -3494,18 +3494,18 @@  discard block
 block discarded – undo
3494 3494
                     ? $this->_extract_order($query_params['order'])
3495 3495
                     : 'DESC';
3496 3496
                 $query_object->set_order_by_sql(
3497
-                    " ORDER BY " . $this->_deduce_column_name_from_query_param($query_params['order_by']) . SP . $order
3497
+                    " ORDER BY ".$this->_deduce_column_name_from_query_param($query_params['order_by']).SP.$order
3498 3498
                 );
3499 3499
             }
3500 3500
         }
3501 3501
         // if 'order_by' wasn't set, maybe they are just using 'order' on its own?
3502
-        if (! array_key_exists('order_by', $query_params)
3502
+        if ( ! array_key_exists('order_by', $query_params)
3503 3503
             && array_key_exists('order', $query_params)
3504 3504
             && ! empty($query_params['order'])
3505 3505
         ) {
3506 3506
             $pk_field = $this->get_primary_key_field();
3507 3507
             $order = $this->_extract_order($query_params['order']);
3508
-            $query_object->set_order_by_sql(" ORDER BY " . $pk_field->get_qualified_column() . SP . $order);
3508
+            $query_object->set_order_by_sql(" ORDER BY ".$pk_field->get_qualified_column().SP.$order);
3509 3509
         }
3510 3510
         // set group by
3511 3511
         if (array_key_exists('group_by', $query_params)) {
@@ -3515,10 +3515,10 @@  discard block
 block discarded – undo
3515 3515
                 foreach ($query_params['group_by'] as $field_name_to_group_by) {
3516 3516
                     $group_by_array[] = $this->_deduce_column_name_from_query_param($field_name_to_group_by);
3517 3517
                 }
3518
-                $query_object->set_group_by_sql(" GROUP BY " . implode(", ", $group_by_array));
3519
-            } elseif (! empty($query_params['group_by'])) {
3518
+                $query_object->set_group_by_sql(" GROUP BY ".implode(", ", $group_by_array));
3519
+            } elseif ( ! empty($query_params['group_by'])) {
3520 3520
                 $query_object->set_group_by_sql(
3521
-                    " GROUP BY " . $this->_deduce_column_name_from_query_param($query_params['group_by'])
3521
+                    " GROUP BY ".$this->_deduce_column_name_from_query_param($query_params['group_by'])
3522 3522
                 );
3523 3523
             }
3524 3524
         }
@@ -3528,7 +3528,7 @@  discard block
 block discarded – undo
3528 3528
         }
3529 3529
         // now, just verify they didn't pass anything wack
3530 3530
         foreach ($query_params as $query_key => $query_value) {
3531
-            if (! in_array($query_key, $this->_allowed_query_params, true)) {
3531
+            if ( ! in_array($query_key, $this->_allowed_query_params, true)) {
3532 3532
                 throw new EE_Error(
3533 3533
                     sprintf(
3534 3534
                         __(
@@ -3636,7 +3636,7 @@  discard block
 block discarded – undo
3636 3636
         $where_query_params = array()
3637 3637
     ) {
3638 3638
         $allowed_used_default_where_conditions_values = EEM_Base::valid_default_where_conditions();
3639
-        if (! in_array($use_default_where_conditions, $allowed_used_default_where_conditions_values)) {
3639
+        if ( ! in_array($use_default_where_conditions, $allowed_used_default_where_conditions_values)) {
3640 3640
             throw new EE_Error(sprintf(
3641 3641
                 __(
3642 3642
                     "You passed an invalid value to the query parameter 'default_where_conditions' of '%s'. Allowed values are %s",
@@ -3768,19 +3768,19 @@  discard block
 block discarded – undo
3768 3768
     ) {
3769 3769
         $null_friendly_where_conditions = array();
3770 3770
         $none_overridden = true;
3771
-        $or_condition_key_for_defaults = 'OR*' . get_class($model);
3771
+        $or_condition_key_for_defaults = 'OR*'.get_class($model);
3772 3772
         foreach ($default_where_conditions as $key => $val) {
3773
-            if (isset($provided_where_conditions[ $key ])) {
3773
+            if (isset($provided_where_conditions[$key])) {
3774 3774
                 $none_overridden = false;
3775 3775
             } else {
3776
-                $null_friendly_where_conditions[ $or_condition_key_for_defaults ]['AND'][ $key ] = $val;
3776
+                $null_friendly_where_conditions[$or_condition_key_for_defaults]['AND'][$key] = $val;
3777 3777
             }
3778 3778
         }
3779 3779
         if ($none_overridden && $default_where_conditions) {
3780 3780
             if ($model->has_primary_key_field()) {
3781
-                $null_friendly_where_conditions[ $or_condition_key_for_defaults ][ $model_relation_path
3781
+                $null_friendly_where_conditions[$or_condition_key_for_defaults][$model_relation_path
3782 3782
                                                                                 . "."
3783
-                                                                                . $model->primary_key_name() ] = array('IS NULL');
3783
+                                                                                . $model->primary_key_name()] = array('IS NULL');
3784 3784
             }/*else{
3785 3785
                 //@todo NO PK, use other defaults
3786 3786
             }*/
@@ -3886,7 +3886,7 @@  discard block
 block discarded – undo
3886 3886
             foreach ($tables as $table_obj) {
3887 3887
                 $qualified_pk_column = $table_alias_with_model_relation_chain_prefix
3888 3888
                                        . $table_obj->get_fully_qualified_pk_column();
3889
-                if (! in_array($qualified_pk_column, $selects)) {
3889
+                if ( ! in_array($qualified_pk_column, $selects)) {
3890 3890
                     $selects[] = "$qualified_pk_column AS '$qualified_pk_column'";
3891 3891
                 }
3892 3892
             }
@@ -4035,9 +4035,9 @@  discard block
 block discarded – undo
4035 4035
         $query_parameter_type
4036 4036
     ) {
4037 4037
         foreach ($this->_model_relations as $valid_related_model_name => $relation_obj) {
4038
-            if (strpos($possible_join_string, $valid_related_model_name . ".") === 0) {
4038
+            if (strpos($possible_join_string, $valid_related_model_name.".") === 0) {
4039 4039
                 $this->_add_join_to_model($valid_related_model_name, $query_info_carrier, $original_query_param);
4040
-                $possible_join_string = substr($possible_join_string, strlen($valid_related_model_name . "."));
4040
+                $possible_join_string = substr($possible_join_string, strlen($valid_related_model_name."."));
4041 4041
                 if ($possible_join_string === '') {
4042 4042
                     // nothing left to $query_param
4043 4043
                     // we should actually end in a field name, not a model like this!
@@ -4167,7 +4167,7 @@  discard block
 block discarded – undo
4167 4167
     {
4168 4168
         $SQL = $this->_construct_condition_clause_recursive($where_params, ' AND ');
4169 4169
         if ($SQL) {
4170
-            return " WHERE " . $SQL;
4170
+            return " WHERE ".$SQL;
4171 4171
         }
4172 4172
         return '';
4173 4173
     }
@@ -4186,7 +4186,7 @@  discard block
 block discarded – undo
4186 4186
     {
4187 4187
         $SQL = $this->_construct_condition_clause_recursive($having_params, ' AND ');
4188 4188
         if ($SQL) {
4189
-            return " HAVING " . $SQL;
4189
+            return " HAVING ".$SQL;
4190 4190
         }
4191 4191
         return '';
4192 4192
     }
@@ -4205,7 +4205,7 @@  discard block
 block discarded – undo
4205 4205
     {
4206 4206
         $where_clauses = array();
4207 4207
         foreach ($where_params as $query_param => $op_and_value_or_sub_condition) {
4208
-            $query_param = $this->_remove_stars_and_anything_after_from_condition_query_param_key($query_param);// str_replace("*",'',$query_param);
4208
+            $query_param = $this->_remove_stars_and_anything_after_from_condition_query_param_key($query_param); // str_replace("*",'',$query_param);
4209 4209
             if (in_array($query_param, $this->_logic_query_param_keys)) {
4210 4210
                 switch ($query_param) {
4211 4211
                     case 'not':
@@ -4239,7 +4239,7 @@  discard block
 block discarded – undo
4239 4239
             } else {
4240 4240
                 $field_obj = $this->_deduce_field_from_query_param($query_param);
4241 4241
                 // if it's not a normal field, maybe it's a custom selection?
4242
-                if (! $field_obj) {
4242
+                if ( ! $field_obj) {
4243 4243
                     if ($this->_custom_selections instanceof CustomSelects) {
4244 4244
                         $field_obj = $this->_custom_selections->getDataTypeForAlias($query_param);
4245 4245
                     } else {
@@ -4250,7 +4250,7 @@  discard block
 block discarded – undo
4250 4250
                     }
4251 4251
                 }
4252 4252
                 $op_and_value_sql = $this->_construct_op_and_value($op_and_value_or_sub_condition, $field_obj);
4253
-                $where_clauses[] = $this->_deduce_column_name_from_query_param($query_param) . SP . $op_and_value_sql;
4253
+                $where_clauses[] = $this->_deduce_column_name_from_query_param($query_param).SP.$op_and_value_sql;
4254 4254
             }
4255 4255
         }
4256 4256
         return $where_clauses ? implode($glue, $where_clauses) : '';
@@ -4273,7 +4273,7 @@  discard block
 block discarded – undo
4273 4273
                 $field->get_model_name(),
4274 4274
                 $query_param
4275 4275
             );
4276
-            return $table_alias_prefix . $field->get_qualified_column();
4276
+            return $table_alias_prefix.$field->get_qualified_column();
4277 4277
         }
4278 4278
         if ($this->_custom_selections instanceof CustomSelects
4279 4279
             && in_array($query_param, $this->_custom_selections->columnAliases(), true)
@@ -4332,7 +4332,7 @@  discard block
 block discarded – undo
4332 4332
     {
4333 4333
         if (is_array($op_and_value)) {
4334 4334
             $operator = isset($op_and_value[0]) ? $this->_prepare_operator_for_sql($op_and_value[0]) : null;
4335
-            if (! $operator) {
4335
+            if ( ! $operator) {
4336 4336
                 $php_array_like_string = array();
4337 4337
                 foreach ($op_and_value as $key => $value) {
4338 4338
                     $php_array_like_string[] = "$key=>$value";
@@ -4354,14 +4354,14 @@  discard block
 block discarded – undo
4354 4354
         }
4355 4355
         // check to see if the value is actually another field
4356 4356
         if (is_array($op_and_value) && isset($op_and_value[2]) && $op_and_value[2] == true) {
4357
-            return $operator . SP . $this->_deduce_column_name_from_query_param($value);
4357
+            return $operator.SP.$this->_deduce_column_name_from_query_param($value);
4358 4358
         }
4359 4359
         if (in_array($operator, $this->valid_in_style_operators()) && is_array($value)) {
4360 4360
             // in this case, the value should be an array, or at least a comma-separated list
4361 4361
             // it will need to handle a little differently
4362 4362
             $cleaned_value = $this->_construct_in_value($value, $field_obj);
4363 4363
             // note: $cleaned_value has already been run through $wpdb->prepare()
4364
-            return $operator . SP . $cleaned_value;
4364
+            return $operator.SP.$cleaned_value;
4365 4365
         }
4366 4366
         if (in_array($operator, $this->valid_between_style_operators()) && is_array($value)) {
4367 4367
             // the value should be an array with count of two.
@@ -4377,7 +4377,7 @@  discard block
 block discarded – undo
4377 4377
                 );
4378 4378
             }
4379 4379
             $cleaned_value = $this->_construct_between_value($value, $field_obj);
4380
-            return $operator . SP . $cleaned_value;
4380
+            return $operator.SP.$cleaned_value;
4381 4381
         }
4382 4382
         if (in_array($operator, $this->valid_null_style_operators())) {
4383 4383
             if ($value !== null) {
@@ -4397,10 +4397,10 @@  discard block
 block discarded – undo
4397 4397
         if (in_array($operator, $this->valid_like_style_operators()) && ! is_array($value)) {
4398 4398
             // if the operator is 'LIKE', we want to allow percent signs (%) and not
4399 4399
             // remove other junk. So just treat it as a string.
4400
-            return $operator . SP . $this->_wpdb_prepare_using_field($value, '%s');
4400
+            return $operator.SP.$this->_wpdb_prepare_using_field($value, '%s');
4401 4401
         }
4402
-        if (! in_array($operator, $this->valid_in_style_operators()) && ! is_array($value)) {
4403
-            return $operator . SP . $this->_wpdb_prepare_using_field($value, $field_obj);
4402
+        if ( ! in_array($operator, $this->valid_in_style_operators()) && ! is_array($value)) {
4403
+            return $operator.SP.$this->_wpdb_prepare_using_field($value, $field_obj);
4404 4404
         }
4405 4405
         if (in_array($operator, $this->valid_in_style_operators()) && ! is_array($value)) {
4406 4406
             throw new EE_Error(
@@ -4414,7 +4414,7 @@  discard block
 block discarded – undo
4414 4414
                 )
4415 4415
             );
4416 4416
         }
4417
-        if (! in_array($operator, $this->valid_in_style_operators()) && is_array($value)) {
4417
+        if ( ! in_array($operator, $this->valid_in_style_operators()) && is_array($value)) {
4418 4418
             throw new EE_Error(
4419 4419
                 sprintf(
4420 4420
                     __(
@@ -4454,7 +4454,7 @@  discard block
 block discarded – undo
4454 4454
         foreach ($values as $value) {
4455 4455
             $cleaned_values[] = $this->_wpdb_prepare_using_field($value, $field_obj);
4456 4456
         }
4457
-        return $cleaned_values[0] . " AND " . $cleaned_values[1];
4457
+        return $cleaned_values[0]." AND ".$cleaned_values[1];
4458 4458
     }
4459 4459
 
4460 4460
 
@@ -4495,7 +4495,7 @@  discard block
 block discarded – undo
4495 4495
                                 . $main_table->get_table_name()
4496 4496
                                 . " WHERE FALSE";
4497 4497
         }
4498
-        return "(" . implode(",", $cleaned_values) . ")";
4498
+        return "(".implode(",", $cleaned_values).")";
4499 4499
     }
4500 4500
 
4501 4501
 
@@ -4516,7 +4516,7 @@  discard block
 block discarded – undo
4516 4516
                 $this->_prepare_value_for_use_in_db($value, $field_obj)
4517 4517
             );
4518 4518
         } //$field_obj should really just be a data type
4519
-        if (! in_array($field_obj, $this->_valid_wpdb_data_types)) {
4519
+        if ( ! in_array($field_obj, $this->_valid_wpdb_data_types)) {
4520 4520
             throw new EE_Error(
4521 4521
                 sprintf(
4522 4522
                     __("%s is not a valid wpdb datatype. Valid ones are %s", "event_espresso"),
@@ -4549,14 +4549,14 @@  discard block
 block discarded – undo
4549 4549
             ), $query_param_name));
4550 4550
         }
4551 4551
         $number_of_parts = count($query_param_parts);
4552
-        $last_query_param_part = $query_param_parts[ count($query_param_parts) - 1 ];
4552
+        $last_query_param_part = $query_param_parts[count($query_param_parts) - 1];
4553 4553
         if ($number_of_parts === 1) {
4554 4554
             $field_name = $last_query_param_part;
4555 4555
             $model_obj = $this;
4556 4556
         } else {// $number_of_parts >= 2
4557 4557
             // the last part is the column name, and there are only 2parts. therefore...
4558 4558
             $field_name = $last_query_param_part;
4559
-            $model_obj = $this->get_related_model_obj($query_param_parts[ $number_of_parts - 2 ]);
4559
+            $model_obj = $this->get_related_model_obj($query_param_parts[$number_of_parts - 2]);
4560 4560
         }
4561 4561
         try {
4562 4562
             return $model_obj->field_settings_for($field_name);
@@ -4578,7 +4578,7 @@  discard block
 block discarded – undo
4578 4578
     public function _get_qualified_column_for_field($field_name)
4579 4579
     {
4580 4580
         $all_fields = $this->field_settings();
4581
-        $field = isset($all_fields[ $field_name ]) ? $all_fields[ $field_name ] : false;
4581
+        $field = isset($all_fields[$field_name]) ? $all_fields[$field_name] : false;
4582 4582
         if ($field) {
4583 4583
             return $field->get_qualified_column();
4584 4584
         }
@@ -4649,10 +4649,10 @@  discard block
 block discarded – undo
4649 4649
      */
4650 4650
     public function get_qualified_columns_for_all_fields($model_relation_chain = '', $return_string = true)
4651 4651
     {
4652
-        $table_prefix = str_replace('.', '__', $model_relation_chain) . (empty($model_relation_chain) ? '' : '__');
4652
+        $table_prefix = str_replace('.', '__', $model_relation_chain).(empty($model_relation_chain) ? '' : '__');
4653 4653
         $qualified_columns = array();
4654 4654
         foreach ($this->field_settings() as $field_name => $field) {
4655
-            $qualified_columns[] = $table_prefix . $field->get_qualified_column();
4655
+            $qualified_columns[] = $table_prefix.$field->get_qualified_column();
4656 4656
         }
4657 4657
         return $return_string ? implode(', ', $qualified_columns) : $qualified_columns;
4658 4658
     }
@@ -4676,11 +4676,11 @@  discard block
 block discarded – undo
4676 4676
             if ($table_obj instanceof EE_Primary_Table) {
4677 4677
                 $SQL .= $table_alias === $table_obj->get_table_alias()
4678 4678
                     ? $table_obj->get_select_join_limit($limit)
4679
-                    : SP . $table_obj->get_table_name() . " AS " . $table_obj->get_table_alias() . SP;
4679
+                    : SP.$table_obj->get_table_name()." AS ".$table_obj->get_table_alias().SP;
4680 4680
             } elseif ($table_obj instanceof EE_Secondary_Table) {
4681 4681
                 $SQL .= $table_alias === $table_obj->get_table_alias()
4682 4682
                     ? $table_obj->get_select_join_limit_join($limit)
4683
-                    : SP . $table_obj->get_join_sql($table_alias) . SP;
4683
+                    : SP.$table_obj->get_join_sql($table_alias).SP;
4684 4684
             }
4685 4685
         }
4686 4686
         return $SQL;
@@ -4752,7 +4752,7 @@  discard block
 block discarded – undo
4752 4752
         foreach ($this->field_settings() as $field_obj) {
4753 4753
             // $data_types[$field_obj->get_table_column()] = $field_obj->get_wpdb_data_type();
4754 4754
             /** @var $field_obj EE_Model_Field_Base */
4755
-            $data_types[ $field_obj->get_qualified_column() ] = $field_obj->get_wpdb_data_type();
4755
+            $data_types[$field_obj->get_qualified_column()] = $field_obj->get_wpdb_data_type();
4756 4756
         }
4757 4757
         return $data_types;
4758 4758
     }
@@ -4768,14 +4768,14 @@  discard block
 block discarded – undo
4768 4768
      */
4769 4769
     public function get_related_model_obj($model_name)
4770 4770
     {
4771
-        $model_classname = "EEM_" . $model_name;
4772
-        if (! class_exists($model_classname)) {
4771
+        $model_classname = "EEM_".$model_name;
4772
+        if ( ! class_exists($model_classname)) {
4773 4773
             throw new EE_Error(sprintf(__(
4774 4774
                 "You specified a related model named %s in your query. No such model exists, if it did, it would have the classname %s",
4775 4775
                 'event_espresso'
4776 4776
             ), $model_name, $model_classname));
4777 4777
         }
4778
-        return call_user_func($model_classname . "::instance");
4778
+        return call_user_func($model_classname."::instance");
4779 4779
     }
4780 4780
 
4781 4781
 
@@ -4804,7 +4804,7 @@  discard block
 block discarded – undo
4804 4804
         $belongs_to_relations = array();
4805 4805
         foreach ($this->relation_settings() as $model_name => $relation_obj) {
4806 4806
             if ($relation_obj instanceof EE_Belongs_To_Relation) {
4807
-                $belongs_to_relations[ $model_name ] = $relation_obj;
4807
+                $belongs_to_relations[$model_name] = $relation_obj;
4808 4808
             }
4809 4809
         }
4810 4810
         return $belongs_to_relations;
@@ -4822,7 +4822,7 @@  discard block
 block discarded – undo
4822 4822
     public function related_settings_for($relation_name)
4823 4823
     {
4824 4824
         $relatedModels = $this->relation_settings();
4825
-        if (! array_key_exists($relation_name, $relatedModels)) {
4825
+        if ( ! array_key_exists($relation_name, $relatedModels)) {
4826 4826
             throw new EE_Error(
4827 4827
                 sprintf(
4828 4828
                     __(
@@ -4835,7 +4835,7 @@  discard block
 block discarded – undo
4835 4835
                 )
4836 4836
             );
4837 4837
         }
4838
-        return $relatedModels[ $relation_name ];
4838
+        return $relatedModels[$relation_name];
4839 4839
     }
4840 4840
 
4841 4841
 
@@ -4852,14 +4852,14 @@  discard block
 block discarded – undo
4852 4852
     public function field_settings_for($fieldName, $include_db_only_fields = true)
4853 4853
     {
4854 4854
         $fieldSettings = $this->field_settings($include_db_only_fields);
4855
-        if (! array_key_exists($fieldName, $fieldSettings)) {
4855
+        if ( ! array_key_exists($fieldName, $fieldSettings)) {
4856 4856
             throw new EE_Error(sprintf(
4857 4857
                 __("There is no field/column '%s' on '%s'", 'event_espresso'),
4858 4858
                 $fieldName,
4859 4859
                 get_class($this)
4860 4860
             ));
4861 4861
         }
4862
-        return $fieldSettings[ $fieldName ];
4862
+        return $fieldSettings[$fieldName];
4863 4863
     }
4864 4864
 
4865 4865
 
@@ -4873,7 +4873,7 @@  discard block
 block discarded – undo
4873 4873
     public function has_field($fieldName)
4874 4874
     {
4875 4875
         $fieldSettings = $this->field_settings(true);
4876
-        if (isset($fieldSettings[ $fieldName ])) {
4876
+        if (isset($fieldSettings[$fieldName])) {
4877 4877
             return true;
4878 4878
         }
4879 4879
         return false;
@@ -4890,7 +4890,7 @@  discard block
 block discarded – undo
4890 4890
     public function has_relation($relation_name)
4891 4891
     {
4892 4892
         $relations = $this->relation_settings();
4893
-        if (isset($relations[ $relation_name ])) {
4893
+        if (isset($relations[$relation_name])) {
4894 4894
             return true;
4895 4895
         }
4896 4896
         return false;
@@ -4928,7 +4928,7 @@  discard block
 block discarded – undo
4928 4928
                     break;
4929 4929
                 }
4930 4930
             }
4931
-            if (! $this->_primary_key_field instanceof EE_Primary_Key_Field_Base) {
4931
+            if ( ! $this->_primary_key_field instanceof EE_Primary_Key_Field_Base) {
4932 4932
                 throw new EE_Error(sprintf(
4933 4933
                     __("There is no Primary Key defined on model %s", 'event_espresso'),
4934 4934
                     get_class($this)
@@ -4989,23 +4989,23 @@  discard block
 block discarded – undo
4989 4989
      */
4990 4990
     public function get_foreign_key_to($model_name)
4991 4991
     {
4992
-        if (! isset($this->_cache_foreign_key_to_fields[ $model_name ])) {
4992
+        if ( ! isset($this->_cache_foreign_key_to_fields[$model_name])) {
4993 4993
             foreach ($this->field_settings() as $field) {
4994 4994
                 if ($field instanceof EE_Foreign_Key_Field_Base
4995 4995
                     && in_array($model_name, $field->get_model_names_pointed_to())
4996 4996
                 ) {
4997
-                    $this->_cache_foreign_key_to_fields[ $model_name ] = $field;
4997
+                    $this->_cache_foreign_key_to_fields[$model_name] = $field;
4998 4998
                     break;
4999 4999
                 }
5000 5000
             }
5001
-            if (! isset($this->_cache_foreign_key_to_fields[ $model_name ])) {
5001
+            if ( ! isset($this->_cache_foreign_key_to_fields[$model_name])) {
5002 5002
                 throw new EE_Error(sprintf(__(
5003 5003
                     "There is no foreign key field pointing to model %s on model %s",
5004 5004
                     'event_espresso'
5005 5005
                 ), $model_name, get_class($this)));
5006 5006
             }
5007 5007
         }
5008
-        return $this->_cache_foreign_key_to_fields[ $model_name ];
5008
+        return $this->_cache_foreign_key_to_fields[$model_name];
5009 5009
     }
5010 5010
 
5011 5011
 
@@ -5021,7 +5021,7 @@  discard block
 block discarded – undo
5021 5021
     public function get_table_for_alias($table_alias)
5022 5022
     {
5023 5023
         $table_alias_sans_model_relation_chain_prefix = EE_Model_Parser::remove_table_alias_model_relation_chain_prefix($table_alias);
5024
-        return $this->_tables[ $table_alias_sans_model_relation_chain_prefix ]->get_table_name();
5024
+        return $this->_tables[$table_alias_sans_model_relation_chain_prefix]->get_table_name();
5025 5025
     }
5026 5026
 
5027 5027
 
@@ -5040,7 +5040,7 @@  discard block
 block discarded – undo
5040 5040
                 $this->_cached_fields = array();
5041 5041
                 foreach ($this->_fields as $fields_corresponding_to_table) {
5042 5042
                     foreach ($fields_corresponding_to_table as $field_name => $field_obj) {
5043
-                        $this->_cached_fields[ $field_name ] = $field_obj;
5043
+                        $this->_cached_fields[$field_name] = $field_obj;
5044 5044
                     }
5045 5045
                 }
5046 5046
             }
@@ -5051,8 +5051,8 @@  discard block
 block discarded – undo
5051 5051
             foreach ($this->_fields as $fields_corresponding_to_table) {
5052 5052
                 foreach ($fields_corresponding_to_table as $field_name => $field_obj) {
5053 5053
                     /** @var $field_obj EE_Model_Field_Base */
5054
-                    if (! $field_obj->is_db_only_field()) {
5055
-                        $this->_cached_fields_non_db_only[ $field_name ] = $field_obj;
5054
+                    if ( ! $field_obj->is_db_only_field()) {
5055
+                        $this->_cached_fields_non_db_only[$field_name] = $field_obj;
5056 5056
                     }
5057 5057
                 }
5058 5058
             }
@@ -5093,12 +5093,12 @@  discard block
 block discarded – undo
5093 5093
                     $primary_key_field->get_qualified_column(),
5094 5094
                     $primary_key_field->get_table_column()
5095 5095
                 );
5096
-                if ($table_pk_value && isset($array_of_objects[ $table_pk_value ])) {
5096
+                if ($table_pk_value && isset($array_of_objects[$table_pk_value])) {
5097 5097
                     continue;
5098 5098
                 }
5099 5099
             }
5100 5100
             $classInstance = $this->instantiate_class_from_array_or_object($row);
5101
-            if (! $classInstance) {
5101
+            if ( ! $classInstance) {
5102 5102
                 throw new EE_Error(
5103 5103
                     sprintf(
5104 5104
                         __('Could not create instance of class %s from row %s', 'event_espresso'),
@@ -5111,7 +5111,7 @@  discard block
 block discarded – undo
5111 5111
             $classInstance->set_timezone($this->_timezone);
5112 5112
             // make sure if there is any timezone setting present that we set the timezone for the object
5113 5113
             $key = $has_primary_key ? $classInstance->ID() : $count_if_model_has_no_primary_key++;
5114
-            $array_of_objects[ $key ] = $classInstance;
5114
+            $array_of_objects[$key] = $classInstance;
5115 5115
             // also, for all the relations of type BelongsTo, see if we can cache
5116 5116
             // those related models
5117 5117
             // (we could do this for other relations too, but if there are conditions
@@ -5155,9 +5155,9 @@  discard block
 block discarded – undo
5155 5155
         $results = array();
5156 5156
         if ($this->_custom_selections instanceof CustomSelects) {
5157 5157
             foreach ($this->_custom_selections->columnAliases() as $alias) {
5158
-                if (isset($db_results_row[ $alias ])) {
5159
-                    $results[ $alias ] = $this->convertValueToDataType(
5160
-                        $db_results_row[ $alias ],
5158
+                if (isset($db_results_row[$alias])) {
5159
+                    $results[$alias] = $this->convertValueToDataType(
5160
+                        $db_results_row[$alias],
5161 5161
                         $this->_custom_selections->getDataTypeForAlias($alias)
5162 5162
                     );
5163 5163
                 }
@@ -5199,7 +5199,7 @@  discard block
 block discarded – undo
5199 5199
         $this_model_fields_and_values = array();
5200 5200
         // setup the row using default values;
5201 5201
         foreach ($this->field_settings() as $field_name => $field_obj) {
5202
-            $this_model_fields_and_values[ $field_name ] = $field_obj->get_default_value();
5202
+            $this_model_fields_and_values[$field_name] = $field_obj->get_default_value();
5203 5203
         }
5204 5204
         $className = $this->_get_class_name();
5205 5205
         $classInstance = EE_Registry::instance()
@@ -5217,20 +5217,20 @@  discard block
 block discarded – undo
5217 5217
      */
5218 5218
     public function instantiate_class_from_array_or_object($cols_n_values)
5219 5219
     {
5220
-        if (! is_array($cols_n_values) && is_object($cols_n_values)) {
5220
+        if ( ! is_array($cols_n_values) && is_object($cols_n_values)) {
5221 5221
             $cols_n_values = get_object_vars($cols_n_values);
5222 5222
         }
5223 5223
         $primary_key = null;
5224 5224
         // make sure the array only has keys that are fields/columns on this model
5225 5225
         $this_model_fields_n_values = $this->_deduce_fields_n_values_from_cols_n_values($cols_n_values);
5226
-        if ($this->has_primary_key_field() && isset($this_model_fields_n_values[ $this->primary_key_name() ])) {
5227
-            $primary_key = $this_model_fields_n_values[ $this->primary_key_name() ];
5226
+        if ($this->has_primary_key_field() && isset($this_model_fields_n_values[$this->primary_key_name()])) {
5227
+            $primary_key = $this_model_fields_n_values[$this->primary_key_name()];
5228 5228
         }
5229 5229
         $className = $this->_get_class_name();
5230 5230
         // check we actually found results that we can use to build our model object
5231 5231
         // if not, return null
5232 5232
         if ($this->has_primary_key_field()) {
5233
-            if (empty($this_model_fields_n_values[ $this->primary_key_name() ])) {
5233
+            if (empty($this_model_fields_n_values[$this->primary_key_name()])) {
5234 5234
                 return null;
5235 5235
             }
5236 5236
         } elseif ($this->unique_indexes()) {
@@ -5242,7 +5242,7 @@  discard block
 block discarded – undo
5242 5242
         // if there is no primary key or the object doesn't already exist in the entity map, then create a new instance
5243 5243
         if ($primary_key) {
5244 5244
             $classInstance = $this->get_from_entity_map($primary_key);
5245
-            if (! $classInstance) {
5245
+            if ( ! $classInstance) {
5246 5246
                 $classInstance = EE_Registry::instance()
5247 5247
                                             ->load_class(
5248 5248
                                                 $className,
@@ -5275,8 +5275,8 @@  discard block
 block discarded – undo
5275 5275
      */
5276 5276
     public function get_from_entity_map($id)
5277 5277
     {
5278
-        return isset($this->_entity_map[ EEM_Base::$_model_query_blog_id ][ $id ])
5279
-            ? $this->_entity_map[ EEM_Base::$_model_query_blog_id ][ $id ] : null;
5278
+        return isset($this->_entity_map[EEM_Base::$_model_query_blog_id][$id])
5279
+            ? $this->_entity_map[EEM_Base::$_model_query_blog_id][$id] : null;
5280 5280
     }
5281 5281
 
5282 5282
 
@@ -5299,7 +5299,7 @@  discard block
 block discarded – undo
5299 5299
     public function add_to_entity_map(EE_Base_Class $object)
5300 5300
     {
5301 5301
         $className = $this->_get_class_name();
5302
-        if (! $object instanceof $className) {
5302
+        if ( ! $object instanceof $className) {
5303 5303
             throw new EE_Error(sprintf(
5304 5304
                 __("You tried adding a %s to a mapping of %ss", "event_espresso"),
5305 5305
                 is_object($object) ? get_class($object) : $object,
@@ -5307,7 +5307,7 @@  discard block
 block discarded – undo
5307 5307
             ));
5308 5308
         }
5309 5309
         /** @var $object EE_Base_Class */
5310
-        if (! $object->ID()) {
5310
+        if ( ! $object->ID()) {
5311 5311
             throw new EE_Error(sprintf(__(
5312 5312
                 "You tried storing a model object with NO ID in the %s entity mapper.",
5313 5313
                 "event_espresso"
@@ -5318,7 +5318,7 @@  discard block
 block discarded – undo
5318 5318
         if ($classInstance) {
5319 5319
             return $classInstance;
5320 5320
         }
5321
-        $this->_entity_map[ EEM_Base::$_model_query_blog_id ][ $object->ID() ] = $object;
5321
+        $this->_entity_map[EEM_Base::$_model_query_blog_id][$object->ID()] = $object;
5322 5322
         return $object;
5323 5323
     }
5324 5324
 
@@ -5334,11 +5334,11 @@  discard block
 block discarded – undo
5334 5334
     public function clear_entity_map($id = null)
5335 5335
     {
5336 5336
         if (empty($id)) {
5337
-            $this->_entity_map[ EEM_Base::$_model_query_blog_id ] = array();
5337
+            $this->_entity_map[EEM_Base::$_model_query_blog_id] = array();
5338 5338
             return true;
5339 5339
         }
5340
-        if (isset($this->_entity_map[ EEM_Base::$_model_query_blog_id ][ $id ])) {
5341
-            unset($this->_entity_map[ EEM_Base::$_model_query_blog_id ][ $id ]);
5340
+        if (isset($this->_entity_map[EEM_Base::$_model_query_blog_id][$id])) {
5341
+            unset($this->_entity_map[EEM_Base::$_model_query_blog_id][$id]);
5342 5342
             return true;
5343 5343
         }
5344 5344
         return false;
@@ -5381,17 +5381,17 @@  discard block
 block discarded – undo
5381 5381
             // there is a primary key on this table and its not set. Use defaults for all its columns
5382 5382
             if ($table_pk_value === null && $table_obj->get_pk_column()) {
5383 5383
                 foreach ($this->_get_fields_for_table($table_alias) as $field_name => $field_obj) {
5384
-                    if (! $field_obj->is_db_only_field()) {
5384
+                    if ( ! $field_obj->is_db_only_field()) {
5385 5385
                         // prepare field as if its coming from db
5386 5386
                         $prepared_value = $field_obj->prepare_for_set($field_obj->get_default_value());
5387
-                        $this_model_fields_n_values[ $field_name ] = $field_obj->prepare_for_use_in_db($prepared_value);
5387
+                        $this_model_fields_n_values[$field_name] = $field_obj->prepare_for_use_in_db($prepared_value);
5388 5388
                     }
5389 5389
                 }
5390 5390
             } else {
5391 5391
                 // the table's rows existed. Use their values
5392 5392
                 foreach ($this->_get_fields_for_table($table_alias) as $field_name => $field_obj) {
5393
-                    if (! $field_obj->is_db_only_field()) {
5394
-                        $this_model_fields_n_values[ $field_name ] = $this->_get_column_value_with_table_alias_or_not(
5393
+                    if ( ! $field_obj->is_db_only_field()) {
5394
+                        $this_model_fields_n_values[$field_name] = $this->_get_column_value_with_table_alias_or_not(
5395 5395
                             $cols_n_values,
5396 5396
                             $field_obj->get_qualified_column(),
5397 5397
                             $field_obj->get_table_column()
@@ -5417,10 +5417,10 @@  discard block
 block discarded – undo
5417 5417
         // ask the field what it think it's table_name.column_name should be, and call it the "qualified column"
5418 5418
         // does the field on the model relate to this column retrieved from the db?
5419 5419
         // or is it a db-only field? (not relating to the model)
5420
-        if (isset($cols_n_values[ $qualified_column ])) {
5421
-            $value = $cols_n_values[ $qualified_column ];
5422
-        } elseif (isset($cols_n_values[ $regular_column ])) {
5423
-            $value = $cols_n_values[ $regular_column ];
5420
+        if (isset($cols_n_values[$qualified_column])) {
5421
+            $value = $cols_n_values[$qualified_column];
5422
+        } elseif (isset($cols_n_values[$regular_column])) {
5423
+            $value = $cols_n_values[$regular_column];
5424 5424
         }
5425 5425
         return $value;
5426 5426
     }
@@ -5453,7 +5453,7 @@  discard block
 block discarded – undo
5453 5453
                     $obj_in_map->clear_cache($relation_name, null, true);
5454 5454
                 }
5455 5455
             }
5456
-            $this->_entity_map[ EEM_Base::$_model_query_blog_id ][ $id ] = $obj_in_map;
5456
+            $this->_entity_map[EEM_Base::$_model_query_blog_id][$id] = $obj_in_map;
5457 5457
             return $obj_in_map;
5458 5458
         }
5459 5459
         return $this->get_one_by_ID($id);
@@ -5506,7 +5506,7 @@  discard block
 block discarded – undo
5506 5506
      */
5507 5507
     private function _get_class_name()
5508 5508
     {
5509
-        return "EE_" . $this->get_this_model_name();
5509
+        return "EE_".$this->get_this_model_name();
5510 5510
     }
5511 5511
 
5512 5512
 
@@ -5554,7 +5554,7 @@  discard block
 block discarded – undo
5554 5554
     {
5555 5555
         $className = get_class($this);
5556 5556
         $tagName = "FHEE__{$className}__{$methodName}";
5557
-        if (! has_filter($tagName)) {
5557
+        if ( ! has_filter($tagName)) {
5558 5558
             throw new EE_Error(
5559 5559
                 sprintf(
5560 5560
                     __(
@@ -5725,7 +5725,7 @@  discard block
 block discarded – undo
5725 5725
         $unique_indexes = array();
5726 5726
         foreach ($this->_indexes as $name => $index) {
5727 5727
             if ($index instanceof EE_Unique_Index) {
5728
-                $unique_indexes [ $name ] = $index;
5728
+                $unique_indexes [$name] = $index;
5729 5729
             }
5730 5730
         }
5731 5731
         return $unique_indexes;
@@ -5788,7 +5788,7 @@  discard block
 block discarded – undo
5788 5788
         $key_vals_in_combined_pk = array();
5789 5789
         parse_str($index_primary_key_string, $key_vals_in_combined_pk);
5790 5790
         foreach ($key_fields as $key_field_name => $field_obj) {
5791
-            if (! isset($key_vals_in_combined_pk[ $key_field_name ])) {
5791
+            if ( ! isset($key_vals_in_combined_pk[$key_field_name])) {
5792 5792
                 return null;
5793 5793
             }
5794 5794
         }
@@ -5809,7 +5809,7 @@  discard block
 block discarded – undo
5809 5809
     {
5810 5810
         $keys_it_should_have = array_keys($this->get_combined_primary_key_fields());
5811 5811
         foreach ($keys_it_should_have as $key) {
5812
-            if (! isset($key_vals[ $key ])) {
5812
+            if ( ! isset($key_vals[$key])) {
5813 5813
                 return false;
5814 5814
             }
5815 5815
         }
@@ -5842,8 +5842,8 @@  discard block
 block discarded – undo
5842 5842
         }
5843 5843
         // even copies obviously won't have the same ID, so remove the primary key
5844 5844
         // from the WHERE conditions for finding copies (if there is a primary key, of course)
5845
-        if ($this->has_primary_key_field() && isset($attributes_array[ $this->primary_key_name() ])) {
5846
-            unset($attributes_array[ $this->primary_key_name() ]);
5845
+        if ($this->has_primary_key_field() && isset($attributes_array[$this->primary_key_name()])) {
5846
+            unset($attributes_array[$this->primary_key_name()]);
5847 5847
         }
5848 5848
         if (isset($query_params[0])) {
5849 5849
             $query_params[0] = array_merge($attributes_array, $query_params);
@@ -5865,7 +5865,7 @@  discard block
 block discarded – undo
5865 5865
      */
5866 5866
     public function get_one_copy($model_object_or_attributes_array, $query_params = array())
5867 5867
     {
5868
-        if (! is_array($query_params)) {
5868
+        if ( ! is_array($query_params)) {
5869 5869
             EE_Error::doing_it_wrong(
5870 5870
                 'EEM_Base::get_one_copy',
5871 5871
                 sprintf(
@@ -5915,7 +5915,7 @@  discard block
 block discarded – undo
5915 5915
      */
5916 5916
     private function _prepare_operator_for_sql($operator_supplied)
5917 5917
     {
5918
-        $sql_operator = isset($this->_valid_operators[ $operator_supplied ]) ? $this->_valid_operators[ $operator_supplied ]
5918
+        $sql_operator = isset($this->_valid_operators[$operator_supplied]) ? $this->_valid_operators[$operator_supplied]
5919 5919
             : null;
5920 5920
         if ($sql_operator) {
5921 5921
             return $sql_operator;
@@ -6006,7 +6006,7 @@  discard block
 block discarded – undo
6006 6006
         $objs = $this->get_all($query_params);
6007 6007
         $names = array();
6008 6008
         foreach ($objs as $obj) {
6009
-            $names[ $obj->ID() ] = $obj->name();
6009
+            $names[$obj->ID()] = $obj->name();
6010 6010
         }
6011 6011
         return $names;
6012 6012
     }
@@ -6027,7 +6027,7 @@  discard block
 block discarded – undo
6027 6027
      */
6028 6028
     public function get_IDs($model_objects, $filter_out_empty_ids = false)
6029 6029
     {
6030
-        if (! $this->has_primary_key_field()) {
6030
+        if ( ! $this->has_primary_key_field()) {
6031 6031
             if (WP_DEBUG) {
6032 6032
                 EE_Error::add_error(
6033 6033
                     __('Trying to get IDs from a model than has no primary key', 'event_espresso'),
@@ -6040,7 +6040,7 @@  discard block
 block discarded – undo
6040 6040
         $IDs = array();
6041 6041
         foreach ($model_objects as $model_object) {
6042 6042
             $id = $model_object->ID();
6043
-            if (! $id) {
6043
+            if ( ! $id) {
6044 6044
                 if ($filter_out_empty_ids) {
6045 6045
                     continue;
6046 6046
                 }
@@ -6090,22 +6090,22 @@  discard block
 block discarded – undo
6090 6090
     {
6091 6091
         EEM_Base::verify_is_valid_cap_context($context);
6092 6092
         // check if we ought to run the restriction generator first
6093
-        if (isset($this->_cap_restriction_generators[ $context ])
6094
-            && $this->_cap_restriction_generators[ $context ] instanceof EE_Restriction_Generator_Base
6095
-            && ! $this->_cap_restriction_generators[ $context ]->has_generated_cap_restrictions()
6093
+        if (isset($this->_cap_restriction_generators[$context])
6094
+            && $this->_cap_restriction_generators[$context] instanceof EE_Restriction_Generator_Base
6095
+            && ! $this->_cap_restriction_generators[$context]->has_generated_cap_restrictions()
6096 6096
         ) {
6097
-            $this->_cap_restrictions[ $context ] = array_merge(
6098
-                $this->_cap_restrictions[ $context ],
6099
-                $this->_cap_restriction_generators[ $context ]->generate_restrictions()
6097
+            $this->_cap_restrictions[$context] = array_merge(
6098
+                $this->_cap_restrictions[$context],
6099
+                $this->_cap_restriction_generators[$context]->generate_restrictions()
6100 6100
             );
6101 6101
         }
6102 6102
         // and make sure we've finalized the construction of each restriction
6103
-        foreach ($this->_cap_restrictions[ $context ] as $where_conditions_obj) {
6103
+        foreach ($this->_cap_restrictions[$context] as $where_conditions_obj) {
6104 6104
             if ($where_conditions_obj instanceof EE_Default_Where_Conditions) {
6105 6105
                 $where_conditions_obj->_finalize_construct($this);
6106 6106
             }
6107 6107
         }
6108
-        return $this->_cap_restrictions[ $context ];
6108
+        return $this->_cap_restrictions[$context];
6109 6109
     }
6110 6110
 
6111 6111
 
@@ -6135,10 +6135,10 @@  discard block
 block discarded – undo
6135 6135
         $missing_caps = array();
6136 6136
         $cap_restrictions = $this->cap_restrictions($context);
6137 6137
         foreach ($cap_restrictions as $cap => $restriction_if_no_cap) {
6138
-            if (! EE_Capabilities::instance()
6139
-                                 ->current_user_can($cap, $this->get_this_model_name() . '_model_applying_caps')
6138
+            if ( ! EE_Capabilities::instance()
6139
+                                 ->current_user_can($cap, $this->get_this_model_name().'_model_applying_caps')
6140 6140
             ) {
6141
-                $missing_caps[ $cap ] = $restriction_if_no_cap;
6141
+                $missing_caps[$cap] = $restriction_if_no_cap;
6142 6142
             }
6143 6143
         }
6144 6144
         return $missing_caps;
@@ -6173,8 +6173,8 @@  discard block
 block discarded – undo
6173 6173
     public function cap_action_for_context($context)
6174 6174
     {
6175 6175
         $mapping = $this->cap_contexts_to_cap_action_map();
6176
-        if (isset($mapping[ $context ])) {
6177
-            return $mapping[ $context ];
6176
+        if (isset($mapping[$context])) {
6177
+            return $mapping[$context];
6178 6178
         }
6179 6179
         if ($action = apply_filters('FHEE__EEM_Base__cap_action_for_context', null, $this, $mapping, $context)) {
6180 6180
             return $action;
@@ -6291,7 +6291,7 @@  discard block
 block discarded – undo
6291 6291
     {
6292 6292
         foreach ($this->logic_query_param_keys() as $logic_query_param_key) {
6293 6293
             if ($query_param_key === $logic_query_param_key
6294
-                || strpos($query_param_key, $logic_query_param_key . '*') === 0
6294
+                || strpos($query_param_key, $logic_query_param_key.'*') === 0
6295 6295
             ) {
6296 6296
                 return true;
6297 6297
             }
@@ -6344,7 +6344,7 @@  discard block
 block discarded – undo
6344 6344
         if ($password_field instanceof EE_Password_Field) {
6345 6345
             $field_names = $password_field->protectedFields();
6346 6346
             foreach ($field_names as $field_name) {
6347
-                $fields[ $field_name ] = $this->field_settings_for($field_name);
6347
+                $fields[$field_name] = $this->field_settings_for($field_name);
6348 6348
             }
6349 6349
         }
6350 6350
         return $fields;
@@ -6369,7 +6369,7 @@  discard block
 block discarded – undo
6369 6369
         if ($model_obj_or_fields_n_values instanceof EE_Base_Class) {
6370 6370
             $model_obj_or_fields_n_values = $model_obj_or_fields_n_values->model_field_array();
6371 6371
         }
6372
-        if (!is_array($model_obj_or_fields_n_values)) {
6372
+        if ( ! is_array($model_obj_or_fields_n_values)) {
6373 6373
             throw new UnexpectedEntityException(
6374 6374
                 $model_obj_or_fields_n_values,
6375 6375
                 'EE_Base_Class',
@@ -6444,7 +6444,7 @@  discard block
 block discarded – undo
6444 6444
                 )
6445 6445
             );
6446 6446
         }
6447
-        return ($this->model_chain_to_password ? $this->model_chain_to_password . '.' : '') . $password_field_name;
6447
+        return ($this->model_chain_to_password ? $this->model_chain_to_password.'.' : '').$password_field_name;
6448 6448
     }
6449 6449
 
6450 6450
     /**
Please login to merge, or discard this patch.
core/db_models/fields/EE_Boolean_Field.php 3 patches
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -6,7 +6,7 @@
 block discarded – undo
6 6
      * @param string $table_column
7 7
      * @param string $nicename
8 8
      * @param bool   $nullable
9
-     * @param null   $default_value
9
+     * @param boolean   $default_value
10 10
      */
11 11
     public function __construct($table_column, $nicename, $nullable, $default_value = null)
12 12
     {
Please login to merge, or discard this patch.
Indentation   +58 added lines, -58 removed lines patch added patch discarded remove patch
@@ -2,66 +2,66 @@
 block discarded – undo
2 2
 
3 3
 class EE_Boolean_Field extends EE_Integer_Field
4 4
 {
5
-    /**
6
-     * @param string $table_column
7
-     * @param string $nicename
8
-     * @param bool   $nullable
9
-     * @param null   $default_value
10
-     */
11
-    public function __construct($table_column, $nicename, $nullable, $default_value = null)
12
-    {
13
-        parent::__construct($table_column, $nicename, $nullable, $default_value);
14
-        $this->setSchemaType('boolean');
15
-    }
5
+	/**
6
+	 * @param string $table_column
7
+	 * @param string $nicename
8
+	 * @param bool   $nullable
9
+	 * @param null   $default_value
10
+	 */
11
+	public function __construct($table_column, $nicename, $nullable, $default_value = null)
12
+	{
13
+		parent::__construct($table_column, $nicename, $nullable, $default_value);
14
+		$this->setSchemaType('boolean');
15
+	}
16 16
 
17
-    /**
18
-     * Double-checks the value being returned is an boolean.
19
-     * @since $VID:$
20
-     * @param mixed $value_of_field_on_model_object
21
-     * @return boolean
22
-     */
23
-    public function prepare_for_get($value_of_field_on_model_object)
24
-    {
25
-        return (boolean)parent::prepare_for_get($value_of_field_on_model_object);
26
-    }
17
+	/**
18
+	 * Double-checks the value being returned is an boolean.
19
+	 * @since $VID:$
20
+	 * @param mixed $value_of_field_on_model_object
21
+	 * @return boolean
22
+	 */
23
+	public function prepare_for_get($value_of_field_on_model_object)
24
+	{
25
+		return (boolean)parent::prepare_for_get($value_of_field_on_model_object);
26
+	}
27 27
 
28
-    /**
29
-     * @since $VID:$
30
-     * @param $value_inputted_for_field_on_model_object
31
-     * @return boolean
32
-     */
33
-    public function prepare_for_set($value_inputted_for_field_on_model_object)
34
-    {
35
-        if ($value_inputted_for_field_on_model_object) {
36
-            return true;
37
-        } else {
38
-            return false;
39
-        }
40
-    }
28
+	/**
29
+	 * @since $VID:$
30
+	 * @param $value_inputted_for_field_on_model_object
31
+	 * @return boolean
32
+	 */
33
+	public function prepare_for_set($value_inputted_for_field_on_model_object)
34
+	{
35
+		if ($value_inputted_for_field_on_model_object) {
36
+			return true;
37
+		} else {
38
+			return false;
39
+		}
40
+	}
41 41
 
42
-    /**
43
-     * Make sure we're returning booleans
44
-     *
45
-     * @param string $value_inputted_for_field_on_model_object
46
-     * @return boolean
47
-     */
48
-    public function prepare_for_set_from_db($value_inputted_for_field_on_model_object)
49
-    {
50
-        return intval($value_inputted_for_field_on_model_object) ? true : false;
51
-    }
42
+	/**
43
+	 * Make sure we're returning booleans
44
+	 *
45
+	 * @param string $value_inputted_for_field_on_model_object
46
+	 * @return boolean
47
+	 */
48
+	public function prepare_for_set_from_db($value_inputted_for_field_on_model_object)
49
+	{
50
+		return intval($value_inputted_for_field_on_model_object) ? true : false;
51
+	}
52 52
 
53
-    /**
54
-     * Gets a nice Yes/No value for this field
55
-     *
56
-     * @param boolean $value_on_field_to_be_outputted
57
-     * @return string Yes or No
58
-     */
59
-    public function prepare_for_pretty_echoing($value_on_field_to_be_outputted)
60
-    {
61
-        return apply_filters(
62
-            'FHEE__EE_Boolean_Field__prepare_for_pretty_echoing__return',
63
-            $value_on_field_to_be_outputted ? __('Yes', 'event_espresso') : __('No', 'event_espresso'),
64
-            $value_on_field_to_be_outputted
65
-        );
66
-    }
53
+	/**
54
+	 * Gets a nice Yes/No value for this field
55
+	 *
56
+	 * @param boolean $value_on_field_to_be_outputted
57
+	 * @return string Yes or No
58
+	 */
59
+	public function prepare_for_pretty_echoing($value_on_field_to_be_outputted)
60
+	{
61
+		return apply_filters(
62
+			'FHEE__EE_Boolean_Field__prepare_for_pretty_echoing__return',
63
+			$value_on_field_to_be_outputted ? __('Yes', 'event_espresso') : __('No', 'event_espresso'),
64
+			$value_on_field_to_be_outputted
65
+		);
66
+	}
67 67
 }
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -22,7 +22,7 @@
 block discarded – undo
22 22
      */
23 23
     public function prepare_for_get($value_of_field_on_model_object)
24 24
     {
25
-        return (boolean)parent::prepare_for_get($value_of_field_on_model_object);
25
+        return (boolean) parent::prepare_for_get($value_of_field_on_model_object);
26 26
     }
27 27
 
28 28
     /**
Please login to merge, or discard this patch.
core/libraries/rest_api/Capabilities.php 4 patches
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -58,7 +58,7 @@
 block discarded – undo
58 58
      *
59 59
      * @param EEM_Base $model
60 60
      * @param string   $request_type one of the constants on WP_JSON_Server
61
-     * @return array
61
+     * @return \EE_Default_Where_Conditions[]
62 62
      */
63 63
     public static function getMissingPermissions($model, $request_type = EEM_Base::caps_read)
64 64
     {
Please login to merge, or discard this patch.
Unused Use Statements   -2 removed lines patch added patch discarded remove patch
@@ -5,8 +5,6 @@
 block discarded – undo
5 5
 use EE_Error;
6 6
 use EEM_Base;
7 7
 use EEH_Inflector;
8
-use EEM_CPT_Base;
9
-use WP_REST_Request;
10 8
 
11 9
 /**
12 10
  * Capabilities
Please login to merge, or discard this patch.
Indentation   +170 added lines, -170 removed lines patch added patch discarded remove patch
@@ -18,183 +18,183 @@
 block discarded – undo
18 18
 class Capabilities
19 19
 {
20 20
 
21
-    /**
22
-     * The current user can see at least SOME of these entities.
23
-     *
24
-     * @param EEM_Base $model
25
-     * @param string   $model_context one of the return values from EEM_Base::valid_cap_contexts()
26
-     * @return boolean
27
-     */
28
-    public static function currentUserHasPartialAccessTo($model, $model_context = EEM_Base::caps_read)
29
-    {
30
-        if (apply_filters(
31
-            'FHEE__Capabilities__current_user_has_partial_access_to__override_begin',
32
-            false,
33
-            $model,
34
-            $model
35
-        )) {
36
-            return true;
37
-        }
38
-        foreach ($model->caps_missing($model_context) as $capability_name => $restriction_obj) {
39
-            if ($restriction_obj instanceof \EE_Return_None_Where_Conditions) {
40
-                return false;
41
-            }
42
-        }
43
-        if (apply_filters(
44
-            'FHEE__Capabilities__current_user_has_partial_access_to__override_end',
45
-            false,
46
-            $model,
47
-            $model
48
-        )) {
49
-            return false;
50
-        }
51
-        return true;
52
-    }
21
+	/**
22
+	 * The current user can see at least SOME of these entities.
23
+	 *
24
+	 * @param EEM_Base $model
25
+	 * @param string   $model_context one of the return values from EEM_Base::valid_cap_contexts()
26
+	 * @return boolean
27
+	 */
28
+	public static function currentUserHasPartialAccessTo($model, $model_context = EEM_Base::caps_read)
29
+	{
30
+		if (apply_filters(
31
+			'FHEE__Capabilities__current_user_has_partial_access_to__override_begin',
32
+			false,
33
+			$model,
34
+			$model
35
+		)) {
36
+			return true;
37
+		}
38
+		foreach ($model->caps_missing($model_context) as $capability_name => $restriction_obj) {
39
+			if ($restriction_obj instanceof \EE_Return_None_Where_Conditions) {
40
+				return false;
41
+			}
42
+		}
43
+		if (apply_filters(
44
+			'FHEE__Capabilities__current_user_has_partial_access_to__override_end',
45
+			false,
46
+			$model,
47
+			$model
48
+		)) {
49
+			return false;
50
+		}
51
+		return true;
52
+	}
53 53
 
54 54
 
55
-    /**
56
-     * Gets an array of all the capabilities the current user is missing that affected
57
-     * the query
58
-     *
59
-     * @param EEM_Base $model
60
-     * @param string   $request_type one of the constants on WP_JSON_Server
61
-     * @return array
62
-     */
63
-    public static function getMissingPermissions($model, $request_type = EEM_Base::caps_read)
64
-    {
65
-        return $model->caps_missing($request_type);
66
-    }
55
+	/**
56
+	 * Gets an array of all the capabilities the current user is missing that affected
57
+	 * the query
58
+	 *
59
+	 * @param EEM_Base $model
60
+	 * @param string   $request_type one of the constants on WP_JSON_Server
61
+	 * @return array
62
+	 */
63
+	public static function getMissingPermissions($model, $request_type = EEM_Base::caps_read)
64
+	{
65
+		return $model->caps_missing($request_type);
66
+	}
67 67
 
68 68
 
69
-    /**
70
-     * Gets a string of all the capabilities the current user is missing that affected
71
-     * the query
72
-     *
73
-     * @param EEM_Base $model
74
-     * @param string   $model_context one of the return values from EEM_Base::valid_cap_contexts()
75
-     * @return string
76
-     */
77
-    public static function getMissingPermissionsString($model, $model_context = EEM_Base::caps_read)
78
-    {
79
-        return implode(',', array_keys(self::getMissingPermissions($model, $model_context)));
80
-    }
69
+	/**
70
+	 * Gets a string of all the capabilities the current user is missing that affected
71
+	 * the query
72
+	 *
73
+	 * @param EEM_Base $model
74
+	 * @param string   $model_context one of the return values from EEM_Base::valid_cap_contexts()
75
+	 * @return string
76
+	 */
77
+	public static function getMissingPermissionsString($model, $model_context = EEM_Base::caps_read)
78
+	{
79
+		return implode(',', array_keys(self::getMissingPermissions($model, $model_context)));
80
+	}
81 81
 
82
-    /**
83
-     * "Removes" password-protected fields. Currently that means setting their values to their default.
84
-     * @since $VID:$
85
-     * @param array $entity
86
-     * @param EEM_Base $model
87
-     * @param ModelVersionInfo $model_version_info
88
-     * @return array
89
-     * @throws EE_Error
90
-     */
91
-    public static function filterOutPasswordProtectedFields(
92
-        $entity,
93
-        EEM_Base $model,
94
-        ModelVersionInfo $model_version_info
95
-    ) {
96
-        $has_password = $model->hasPassword();
97
-        if ($has_password) {
98
-            $entity[ $model->getPasswordField()->get_name() ] = ModelDataTranslator::prepareFieldValueForJson(
99
-                $model->getPasswordField(),
100
-                $model->getPasswordField()->get_default_value(),
101
-                $model_version_info->requestedVersion()
102
-            );
103
-        }
104
-        foreach ($model->field_settings() as $field_name => $field_obj) {
105
-            if ($has_password
106
-                && $model->getPasswordField()->fieldIsProtected($field_name)
107
-                && $entity[ $field_name ]) {
108
-                $replacement_value = ModelDataTranslator::prepareFieldValueForJson(
109
-                    $field_obj,
110
-                    $field_obj->get_default_value(),
111
-                    $model_version_info->requestedVersion()
112
-                );
113
-                if ($model_version_info->fieldHasRenderedFormat($field_obj)) {
114
-                    $entity[ $field_name ]['rendered'] = $replacement_value;
115
-                } elseif ($model_version_info->fieldHasPrettyFormat($field_obj)) {
116
-                    $entity[ $field_name ]['raw'] = $replacement_value;
117
-                    $entity[ $field_name ]['pretty'] = ModelDataTranslator::prepareFieldValueForJson(
118
-                        $field_obj,
119
-                        $field_obj->prepare_for_pretty_echoing($field_obj->get_default_value()),
120
-                        $model_version_info->requestedVersion()
121
-                    );
122
-                } else {
123
-                    // this is most likely an excerpt field. (These should have also had "rendered" and "raw"
124
-                    // versions, but we missed that, and can't change it without breaking backward compatibility)
125
-                    // so just remove it (or rather, set its default)
126
-                    // API clients will just need to look to fields with rendered formats to know if these have
127
-                    // been redacted. Sorry.
128
-                    $entity[ $field_name ] = $replacement_value;
129
-                }
130
-            }
131
-        }
132
-        return $entity;
133
-    }
82
+	/**
83
+	 * "Removes" password-protected fields. Currently that means setting their values to their default.
84
+	 * @since $VID:$
85
+	 * @param array $entity
86
+	 * @param EEM_Base $model
87
+	 * @param ModelVersionInfo $model_version_info
88
+	 * @return array
89
+	 * @throws EE_Error
90
+	 */
91
+	public static function filterOutPasswordProtectedFields(
92
+		$entity,
93
+		EEM_Base $model,
94
+		ModelVersionInfo $model_version_info
95
+	) {
96
+		$has_password = $model->hasPassword();
97
+		if ($has_password) {
98
+			$entity[ $model->getPasswordField()->get_name() ] = ModelDataTranslator::prepareFieldValueForJson(
99
+				$model->getPasswordField(),
100
+				$model->getPasswordField()->get_default_value(),
101
+				$model_version_info->requestedVersion()
102
+			);
103
+		}
104
+		foreach ($model->field_settings() as $field_name => $field_obj) {
105
+			if ($has_password
106
+				&& $model->getPasswordField()->fieldIsProtected($field_name)
107
+				&& $entity[ $field_name ]) {
108
+				$replacement_value = ModelDataTranslator::prepareFieldValueForJson(
109
+					$field_obj,
110
+					$field_obj->get_default_value(),
111
+					$model_version_info->requestedVersion()
112
+				);
113
+				if ($model_version_info->fieldHasRenderedFormat($field_obj)) {
114
+					$entity[ $field_name ]['rendered'] = $replacement_value;
115
+				} elseif ($model_version_info->fieldHasPrettyFormat($field_obj)) {
116
+					$entity[ $field_name ]['raw'] = $replacement_value;
117
+					$entity[ $field_name ]['pretty'] = ModelDataTranslator::prepareFieldValueForJson(
118
+						$field_obj,
119
+						$field_obj->prepare_for_pretty_echoing($field_obj->get_default_value()),
120
+						$model_version_info->requestedVersion()
121
+					);
122
+				} else {
123
+					// this is most likely an excerpt field. (These should have also had "rendered" and "raw"
124
+					// versions, but we missed that, and can't change it without breaking backward compatibility)
125
+					// so just remove it (or rather, set its default)
126
+					// API clients will just need to look to fields with rendered formats to know if these have
127
+					// been redacted. Sorry.
128
+					$entity[ $field_name ] = $replacement_value;
129
+				}
130
+			}
131
+		}
132
+		return $entity;
133
+	}
134 134
 
135 135
 
136
-    /**
137
-     * Takes a entity that's ready to be returned and removes fields which the user shouldn't be able to access.
138
-     *
139
-     * @param array $entity
140
-     * @param EEM_Base $model
141
-     * @param string $request_type one of the return values from EEM_Base::valid_cap_contexts()
142
-     * @param ModelVersionInfo $model_version_info
143
-     * @param string $primary_key_string result of EEM_Base::get_index_primary_key_string(), so that we can
144
-     *                                               use this with models that have no primary key
145
-     * @return array ready for converting into json
146
-     */
147
-    public static function filterOutInaccessibleEntityFields(
148
-        $entity,
149
-        $model,
150
-        $request_type,
151
-        $model_version_info,
152
-        $primary_key_string = null
153
-    ) {
154
-        foreach ($model->field_settings() as $field_name => $field_obj) {
155
-            if ($model_version_info->fieldHasRenderedFormat($field_obj)
156
-                && isset($entity[ $field_name ])
157
-                && is_array($entity[ $field_name ])
158
-                && isset($entity[ $field_name ]['raw'])
159
-            ) {
160
-                unset($entity[ $field_name ]['raw']);
161
-            }
162
-        }
163
-        // theoretically we may want to filter out specific fields for specific models
164
-        return apply_filters(
165
-            'FHEE__Capabilities__filter_out_inaccessible_entity_fields',
166
-            $entity,
167
-            $model,
168
-            $request_type
169
-        );
170
-    }
136
+	/**
137
+	 * Takes a entity that's ready to be returned and removes fields which the user shouldn't be able to access.
138
+	 *
139
+	 * @param array $entity
140
+	 * @param EEM_Base $model
141
+	 * @param string $request_type one of the return values from EEM_Base::valid_cap_contexts()
142
+	 * @param ModelVersionInfo $model_version_info
143
+	 * @param string $primary_key_string result of EEM_Base::get_index_primary_key_string(), so that we can
144
+	 *                                               use this with models that have no primary key
145
+	 * @return array ready for converting into json
146
+	 */
147
+	public static function filterOutInaccessibleEntityFields(
148
+		$entity,
149
+		$model,
150
+		$request_type,
151
+		$model_version_info,
152
+		$primary_key_string = null
153
+	) {
154
+		foreach ($model->field_settings() as $field_name => $field_obj) {
155
+			if ($model_version_info->fieldHasRenderedFormat($field_obj)
156
+				&& isset($entity[ $field_name ])
157
+				&& is_array($entity[ $field_name ])
158
+				&& isset($entity[ $field_name ]['raw'])
159
+			) {
160
+				unset($entity[ $field_name ]['raw']);
161
+			}
162
+		}
163
+		// theoretically we may want to filter out specific fields for specific models
164
+		return apply_filters(
165
+			'FHEE__Capabilities__filter_out_inaccessible_entity_fields',
166
+			$entity,
167
+			$model,
168
+			$request_type
169
+		);
170
+	}
171 171
 
172 172
 
173
-    /**
174
-     * Verifies the current user has at least partial access to do this action on this model.
175
-     * If not, throws an exception (so we can define the code that sets up this error object
176
-     * once)
177
-     *
178
-     * @param EEM_Base $model
179
-     * @param string   $model_action_context
180
-     * @param string   $action_name
181
-     * @return void
182
-     * @throws RestException
183
-     */
184
-    public static function verifyAtLeastPartialAccessTo($model, $model_action_context, $action_name = 'list')
185
-    {
186
-        if (! Capabilities::currentUserHasPartialAccessTo($model, $model_action_context)) {
187
-            $model_name_plural = EEH_Inflector::pluralize_and_lower($model->get_this_model_name());
188
-            throw new RestException(
189
-                sprintf('rest_cannot_%s_%s', strtolower($action_name), $model_name_plural),
190
-                sprintf(
191
-                    __('Sorry, you are not allowed to %1$s %2$s. Missing permissions: %3$s', 'event_espresso'),
192
-                    $action_name,
193
-                    $model_name_plural,
194
-                    Capabilities::getMissingPermissionsString($model, $model_action_context)
195
-                ),
196
-                array('status' => 403)
197
-            );
198
-        }
199
-    }
173
+	/**
174
+	 * Verifies the current user has at least partial access to do this action on this model.
175
+	 * If not, throws an exception (so we can define the code that sets up this error object
176
+	 * once)
177
+	 *
178
+	 * @param EEM_Base $model
179
+	 * @param string   $model_action_context
180
+	 * @param string   $action_name
181
+	 * @return void
182
+	 * @throws RestException
183
+	 */
184
+	public static function verifyAtLeastPartialAccessTo($model, $model_action_context, $action_name = 'list')
185
+	{
186
+		if (! Capabilities::currentUserHasPartialAccessTo($model, $model_action_context)) {
187
+			$model_name_plural = EEH_Inflector::pluralize_and_lower($model->get_this_model_name());
188
+			throw new RestException(
189
+				sprintf('rest_cannot_%s_%s', strtolower($action_name), $model_name_plural),
190
+				sprintf(
191
+					__('Sorry, you are not allowed to %1$s %2$s. Missing permissions: %3$s', 'event_espresso'),
192
+					$action_name,
193
+					$model_name_plural,
194
+					Capabilities::getMissingPermissionsString($model, $model_action_context)
195
+				),
196
+				array('status' => 403)
197
+			);
198
+		}
199
+	}
200 200
 }
Please login to merge, or discard this patch.
Spacing   +11 added lines, -11 removed lines patch added patch discarded remove patch
@@ -95,7 +95,7 @@  discard block
 block discarded – undo
95 95
     ) {
96 96
         $has_password = $model->hasPassword();
97 97
         if ($has_password) {
98
-            $entity[ $model->getPasswordField()->get_name() ] = ModelDataTranslator::prepareFieldValueForJson(
98
+            $entity[$model->getPasswordField()->get_name()] = ModelDataTranslator::prepareFieldValueForJson(
99 99
                 $model->getPasswordField(),
100 100
                 $model->getPasswordField()->get_default_value(),
101 101
                 $model_version_info->requestedVersion()
@@ -104,17 +104,17 @@  discard block
 block discarded – undo
104 104
         foreach ($model->field_settings() as $field_name => $field_obj) {
105 105
             if ($has_password
106 106
                 && $model->getPasswordField()->fieldIsProtected($field_name)
107
-                && $entity[ $field_name ]) {
107
+                && $entity[$field_name]) {
108 108
                 $replacement_value = ModelDataTranslator::prepareFieldValueForJson(
109 109
                     $field_obj,
110 110
                     $field_obj->get_default_value(),
111 111
                     $model_version_info->requestedVersion()
112 112
                 );
113 113
                 if ($model_version_info->fieldHasRenderedFormat($field_obj)) {
114
-                    $entity[ $field_name ]['rendered'] = $replacement_value;
114
+                    $entity[$field_name]['rendered'] = $replacement_value;
115 115
                 } elseif ($model_version_info->fieldHasPrettyFormat($field_obj)) {
116
-                    $entity[ $field_name ]['raw'] = $replacement_value;
117
-                    $entity[ $field_name ]['pretty'] = ModelDataTranslator::prepareFieldValueForJson(
116
+                    $entity[$field_name]['raw'] = $replacement_value;
117
+                    $entity[$field_name]['pretty'] = ModelDataTranslator::prepareFieldValueForJson(
118 118
                         $field_obj,
119 119
                         $field_obj->prepare_for_pretty_echoing($field_obj->get_default_value()),
120 120
                         $model_version_info->requestedVersion()
@@ -125,7 +125,7 @@  discard block
 block discarded – undo
125 125
                     // so just remove it (or rather, set its default)
126 126
                     // API clients will just need to look to fields with rendered formats to know if these have
127 127
                     // been redacted. Sorry.
128
-                    $entity[ $field_name ] = $replacement_value;
128
+                    $entity[$field_name] = $replacement_value;
129 129
                 }
130 130
             }
131 131
         }
@@ -153,11 +153,11 @@  discard block
 block discarded – undo
153 153
     ) {
154 154
         foreach ($model->field_settings() as $field_name => $field_obj) {
155 155
             if ($model_version_info->fieldHasRenderedFormat($field_obj)
156
-                && isset($entity[ $field_name ])
157
-                && is_array($entity[ $field_name ])
158
-                && isset($entity[ $field_name ]['raw'])
156
+                && isset($entity[$field_name])
157
+                && is_array($entity[$field_name])
158
+                && isset($entity[$field_name]['raw'])
159 159
             ) {
160
-                unset($entity[ $field_name ]['raw']);
160
+                unset($entity[$field_name]['raw']);
161 161
             }
162 162
         }
163 163
         // theoretically we may want to filter out specific fields for specific models
@@ -183,7 +183,7 @@  discard block
 block discarded – undo
183 183
      */
184 184
     public static function verifyAtLeastPartialAccessTo($model, $model_action_context, $action_name = 'list')
185 185
     {
186
-        if (! Capabilities::currentUserHasPartialAccessTo($model, $model_action_context)) {
186
+        if ( ! Capabilities::currentUserHasPartialAccessTo($model, $model_action_context)) {
187 187
             $model_name_plural = EEH_Inflector::pluralize_and_lower($model->get_this_model_name());
188 188
             throw new RestException(
189 189
                 sprintf('rest_cannot_%s_%s', strtolower($action_name), $model_name_plural),
Please login to merge, or discard this patch.
core/libraries/rest_api/controllers/model/Read.php 3 patches
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -723,7 +723,7 @@  discard block
 block discarded – undo
723 723
      * @since $VID:$
724 724
      * @param $model
725 725
      * @param $results_so_far
726
-     * @param $protected
726
+     * @param boolean $protected
727 727
      * @return array results
728 728
      */
729 729
     protected function addProtectedProperty(EEM_Base $model, $results_so_far, $protected)
@@ -1262,7 +1262,7 @@  discard block
 block discarded – undo
1262 1262
      * Also, this method's contents might be candidate for moving to Model_Data_Translator
1263 1263
      *
1264 1264
      * @param EEM_Base $model
1265
-     * @param array    $query_parameters  from $_GET parameter @see Read:handle_request_get_all
1265
+     * @param array    $query_params  from $_GET parameter @see Read:handle_request_get_all
1266 1266
      * @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)
1267 1267
      *                                    or FALSE to indicate that absolutely no results should be returned
1268 1268
      * @throws EE_Error
@@ -1519,7 +1519,7 @@  discard block
 block discarded – undo
1519 1519
      *
1520 1520
      * @param EEM_Base $model
1521 1521
      * @param WP_REST_Request $request
1522
-     * @param null $context
1522
+     * @param string $context
1523 1523
      * @return array
1524 1524
      * @throws EE_Error
1525 1525
      */
Please login to merge, or discard this patch.
Indentation   +1575 added lines, -1575 removed lines patch added patch discarded remove patch
@@ -45,1579 +45,1579 @@
 block discarded – undo
45 45
 {
46 46
 
47 47
 
48
-    /**
49
-     * @var CalculatedModelFields
50
-     */
51
-    protected $fields_calculator;
52
-
53
-
54
-    /**
55
-     * Read constructor.
56
-     * @param CalculatedModelFields $fields_calculator
57
-     */
58
-    public function __construct(CalculatedModelFields $fields_calculator)
59
-    {
60
-        parent::__construct();
61
-        $this->fields_calculator = $fields_calculator;
62
-    }
63
-
64
-
65
-    /**
66
-     * Handles requests to get all (or a filtered subset) of entities for a particular model
67
-     *
68
-     * @param WP_REST_Request $request
69
-     * @param string $version
70
-     * @param string $model_name
71
-     * @return WP_REST_Response|WP_Error
72
-     * @throws InvalidArgumentException
73
-     * @throws InvalidDataTypeException
74
-     * @throws InvalidInterfaceException
75
-     */
76
-    public static function handleRequestGetAll(WP_REST_Request $request, $version, $model_name)
77
-    {
78
-        $controller = LoaderFactory::getLoader()->getNew('EventEspresso\core\libraries\rest_api\controllers\model\Read');
79
-        try {
80
-            $controller->setRequestedVersion($version);
81
-            if (! $controller->getModelVersionInfo()->isModelNameInThisVersion($model_name)) {
82
-                return $controller->sendResponse(
83
-                    new WP_Error(
84
-                        'endpoint_parsing_error',
85
-                        sprintf(
86
-                            __(
87
-                                'There is no model for endpoint %s. Please contact event espresso support',
88
-                                'event_espresso'
89
-                            ),
90
-                            $model_name
91
-                        )
92
-                    )
93
-                );
94
-            }
95
-            return $controller->sendResponse(
96
-                $controller->getEntitiesFromModel(
97
-                    $controller->getModelVersionInfo()->loadModel($model_name),
98
-                    $request
99
-                )
100
-            );
101
-        } catch (Exception $e) {
102
-            return $controller->sendResponse($e);
103
-        }
104
-    }
105
-
106
-
107
-    /**
108
-     * Prepares and returns schema for any OPTIONS request.
109
-     *
110
-     * @param string $version The API endpoint version being used.
111
-     * @param string $model_name Something like `Event` or `Registration`
112
-     * @return array
113
-     * @throws InvalidArgumentException
114
-     * @throws InvalidDataTypeException
115
-     * @throws InvalidInterfaceException
116
-     */
117
-    public static function handleSchemaRequest($version, $model_name)
118
-    {
119
-        $controller = LoaderFactory::getLoader()->getNew('EventEspresso\core\libraries\rest_api\controllers\model\Read');
120
-        try {
121
-            $controller->setRequestedVersion($version);
122
-            if (! $controller->getModelVersionInfo()->isModelNameInThisVersion($model_name)) {
123
-                return array();
124
-            }
125
-            // get the model for this version
126
-            $model = $controller->getModelVersionInfo()->loadModel($model_name);
127
-            $model_schema = new JsonModelSchema($model, LoaderFactory::getLoader()->getShared('EventEspresso\core\libraries\rest_api\CalculatedModelFields'));
128
-            return $model_schema->getModelSchemaForRelations(
129
-                $controller->getModelVersionInfo()->relationSettings($model),
130
-                $controller->customizeSchemaForRestResponse(
131
-                    $model,
132
-                    $model_schema->getModelSchemaForFields(
133
-                        $controller->getModelVersionInfo()->fieldsOnModelInThisVersion($model),
134
-                        $model_schema->getInitialSchemaStructure()
135
-                    )
136
-                )
137
-            );
138
-        } catch (Exception $e) {
139
-            return array();
140
-        }
141
-    }
142
-
143
-
144
-    /**
145
-     * This loops through each field in the given schema for the model and does the following:
146
-     * - add any extra fields that are REST API specific and related to existing fields.
147
-     * - transform default values into the correct format for a REST API response.
148
-     *
149
-     * @param EEM_Base $model
150
-     * @param array    $schema
151
-     * @return array  The final schema.
152
-     */
153
-    protected function customizeSchemaForRestResponse(EEM_Base $model, array $schema)
154
-    {
155
-        foreach ($this->getModelVersionInfo()->fieldsOnModelInThisVersion($model) as $field_name => $field) {
156
-            $schema = $this->translateDefaultsForRestResponse(
157
-                $field_name,
158
-                $field,
159
-                $this->maybeAddExtraFieldsToSchema($field_name, $field, $schema)
160
-            );
161
-        }
162
-        return $schema;
163
-    }
164
-
165
-
166
-    /**
167
-     * This is used to ensure that the 'default' value set in the schema response is formatted correctly for the REST
168
-     * response.
169
-     *
170
-     * @param                      $field_name
171
-     * @param EE_Model_Field_Base  $field
172
-     * @param array                $schema
173
-     * @return array
174
-     * @throws ObjectDetectedException if a default value has a PHP object, which should never do (and if we
175
-     * did, let's know about it ASAP, so let the exception bubble up)
176
-     */
177
-    protected function translateDefaultsForRestResponse($field_name, EE_Model_Field_Base $field, array $schema)
178
-    {
179
-        if (isset($schema['properties'][ $field_name ]['default'])) {
180
-            if (is_array($schema['properties'][ $field_name ]['default'])) {
181
-                foreach ($schema['properties'][ $field_name ]['default'] as $default_key => $default_value) {
182
-                    if ($default_key === 'raw') {
183
-                        $schema['properties'][ $field_name ]['default'][ $default_key ] =
184
-                            ModelDataTranslator::prepareFieldValueForJson(
185
-                                $field,
186
-                                $default_value,
187
-                                $this->getModelVersionInfo()->requestedVersion()
188
-                            );
189
-                    }
190
-                }
191
-            } else {
192
-                $schema['properties'][ $field_name ]['default'] = ModelDataTranslator::prepareFieldValueForJson(
193
-                    $field,
194
-                    $schema['properties'][ $field_name ]['default'],
195
-                    $this->getModelVersionInfo()->requestedVersion()
196
-                );
197
-            }
198
-        }
199
-        return $schema;
200
-    }
201
-
202
-
203
-    /**
204
-     * Adds additional fields to the schema
205
-     * The REST API returns a GMT value field for each datetime field in the resource.  Thus the description about this
206
-     * needs to be added to the schema.
207
-     *
208
-     * @param                      $field_name
209
-     * @param EE_Model_Field_Base  $field
210
-     * @param array                $schema
211
-     * @return array
212
-     */
213
-    protected function maybeAddExtraFieldsToSchema($field_name, EE_Model_Field_Base $field, array $schema)
214
-    {
215
-        if ($field instanceof EE_Datetime_Field) {
216
-            $schema['properties'][ $field_name . '_gmt' ] = $field->getSchema();
217
-            // modify the description
218
-            $schema['properties'][ $field_name . '_gmt' ]['description'] = sprintf(
219
-                esc_html__('%s - the value for this field is in GMT.', 'event_espresso'),
220
-                wp_specialchars_decode($field->get_nicename(), ENT_QUOTES)
221
-            );
222
-        }
223
-        return $schema;
224
-    }
225
-
226
-
227
-    /**
228
-     * Used to figure out the route from the request when a `WP_REST_Request` object is not available
229
-     *
230
-     * @return string
231
-     */
232
-    protected function getRouteFromRequest()
233
-    {
234
-        if (isset($GLOBALS['wp'])
235
-            && $GLOBALS['wp'] instanceof \WP
236
-            && isset($GLOBALS['wp']->query_vars['rest_route'])
237
-        ) {
238
-            return $GLOBALS['wp']->query_vars['rest_route'];
239
-        } else {
240
-            return isset($_SERVER['PATH_INFO']) ? $_SERVER['PATH_INFO'] : '/';
241
-        }
242
-    }
243
-
244
-
245
-    /**
246
-     * Gets a single entity related to the model indicated in the path and its id
247
-     *
248
-     * @param WP_REST_Request $request
249
-     * @param string $version
250
-     * @param string $model_name
251
-     * @return WP_REST_Response|WP_Error
252
-     * @throws InvalidDataTypeException
253
-     * @throws InvalidInterfaceException
254
-     * @throws InvalidArgumentException
255
-     */
256
-    public static function handleRequestGetOne(WP_REST_Request $request, $version, $model_name)
257
-    {
258
-        $controller = LoaderFactory::getLoader()->getNew('EventEspresso\core\libraries\rest_api\controllers\model\Read');
259
-        try {
260
-            $controller->setRequestedVersion($version);
261
-            if (! $controller->getModelVersionInfo()->isModelNameInThisVersion($model_name)) {
262
-                return $controller->sendResponse(
263
-                    new WP_Error(
264
-                        'endpoint_parsing_error',
265
-                        sprintf(
266
-                            __(
267
-                                'There is no model for endpoint %s. Please contact event espresso support',
268
-                                'event_espresso'
269
-                            ),
270
-                            $model_name
271
-                        )
272
-                    )
273
-                );
274
-            }
275
-            return $controller->sendResponse(
276
-                $controller->getEntityFromModel(
277
-                    $controller->getModelVersionInfo()->loadModel($model_name),
278
-                    $request
279
-                )
280
-            );
281
-        } catch (Exception $e) {
282
-            return $controller->sendResponse($e);
283
-        }
284
-    }
285
-
286
-
287
-    /**
288
-     * Gets all the related entities (or if its a belongs-to relation just the one)
289
-     * to the item with the given id
290
-     *
291
-     * @param WP_REST_Request $request
292
-     * @param string $version
293
-     * @param string $model_name
294
-     * @param string $related_model_name
295
-     * @return WP_REST_Response|WP_Error
296
-     * @throws InvalidDataTypeException
297
-     * @throws InvalidInterfaceException
298
-     * @throws InvalidArgumentException
299
-     */
300
-    public static function handleRequestGetRelated(
301
-        WP_REST_Request $request,
302
-        $version,
303
-        $model_name,
304
-        $related_model_name
305
-    ) {
306
-        $controller = LoaderFactory::getLoader()->getNew('EventEspresso\core\libraries\rest_api\controllers\model\Read');
307
-        try {
308
-            $controller->setRequestedVersion($version);
309
-            if (! $controller->getModelVersionInfo()->isModelNameInThisVersion($model_name)) {
310
-                return $controller->sendResponse(
311
-                    new WP_Error(
312
-                        'endpoint_parsing_error',
313
-                        sprintf(
314
-                            __(
315
-                                'There is no model for endpoint %s. Please contact event espresso support',
316
-                                'event_espresso'
317
-                            ),
318
-                            $model_name
319
-                        )
320
-                    )
321
-                );
322
-            }
323
-            $main_model = $controller->getModelVersionInfo()->loadModel($model_name);
324
-            if (! $controller->getModelVersionInfo()->isModelNameInThisVersion($related_model_name)) {
325
-                return $controller->sendResponse(
326
-                    new WP_Error(
327
-                        'endpoint_parsing_error',
328
-                        sprintf(
329
-                            __(
330
-                                'There is no model for endpoint %s. Please contact event espresso support',
331
-                                'event_espresso'
332
-                            ),
333
-                            $related_model_name
334
-                        )
335
-                    )
336
-                );
337
-            }
338
-            return $controller->sendResponse(
339
-                $controller->getEntitiesFromRelation(
340
-                    $request->get_param('id'),
341
-                    $main_model->related_settings_for($related_model_name),
342
-                    $request
343
-                )
344
-            );
345
-        } catch (Exception $e) {
346
-            return $controller->sendResponse($e);
347
-        }
348
-    }
349
-
350
-
351
-    /**
352
-     * Gets a collection for the given model and filters
353
-     *
354
-     * @param EEM_Base $model
355
-     * @param WP_REST_Request $request
356
-     * @return array
357
-     * @throws EE_Error
358
-     * @throws InvalidArgumentException
359
-     * @throws InvalidDataTypeException
360
-     * @throws InvalidInterfaceException
361
-     * @throws ReflectionException
362
-     * @throws RestException
363
-     */
364
-    public function getEntitiesFromModel($model, $request)
365
-    {
366
-        $query_params = $this->createModelQueryParams($model, $request->get_params());
367
-        if (! Capabilities::currentUserHasPartialAccessTo($model, $query_params['caps'])) {
368
-            $model_name_plural = EEH_Inflector::pluralize_and_lower($model->get_this_model_name());
369
-            throw new RestException(
370
-                sprintf('rest_%s_cannot_list', $model_name_plural),
371
-                sprintf(
372
-                    __('Sorry, you are not allowed to list %1$s. Missing permissions: %2$s', 'event_espresso'),
373
-                    $model_name_plural,
374
-                    Capabilities::getMissingPermissionsString($model, $query_params['caps'])
375
-                ),
376
-                array('status' => 403)
377
-            );
378
-        }
379
-        if (! $request->get_header('no_rest_headers')) {
380
-            $this->setHeadersFromQueryParams($model, $query_params);
381
-        }
382
-        /** @type array $results */
383
-        $results = $model->get_all_wpdb_results($query_params);
384
-        $nice_results = array();
385
-        foreach ($results as $result) {
386
-            $nice_results[] =  $this->createEntityFromWpdbResult(
387
-                $model,
388
-                $result,
389
-                $request
390
-            );
391
-        }
392
-        return $nice_results;
393
-    }
394
-
395
-
396
-    /**
397
-     * Gets the collection for given relation object
398
-     * The same as Read::get_entities_from_model(), except if the relation
399
-     * is a HABTM relation, in which case it merges any non-foreign-key fields from
400
-     * the join-model-object into the results
401
-     *
402
-     * @param array $primary_model_query_params query params for finding the item from which
403
-     *                                                            relations will be based
404
-     * @param \EE_Model_Relation_Base $relation
405
-     * @param WP_REST_Request $request
406
-     * @return array
407
-     * @throws EE_Error
408
-     * @throws InvalidArgumentException
409
-     * @throws InvalidDataTypeException
410
-     * @throws InvalidInterfaceException
411
-     * @throws ReflectionException
412
-     * @throws RestException
413
-     * @throws \EventEspresso\core\exceptions\ModelConfigurationException
414
-     */
415
-    protected function getEntitiesFromRelationUsingModelQueryParams($primary_model_query_params, $relation, $request)
416
-    {
417
-        $context = $this->validateContext($request->get_param('caps'));
418
-        $model = $relation->get_this_model();
419
-        $related_model = $relation->get_other_model();
420
-        if (! isset($primary_model_query_params[0])) {
421
-            $primary_model_query_params[0] = array();
422
-        }
423
-        // check if they can access the 1st model object
424
-        $primary_model_query_params = array(
425
-            0       => $primary_model_query_params[0],
426
-            'limit' => 1,
427
-        );
428
-        if ($model instanceof EEM_Soft_Delete_Base) {
429
-            $primary_model_query_params = $model->alter_query_params_so_deleted_and_undeleted_items_included(
430
-                $primary_model_query_params
431
-            );
432
-        }
433
-        $restricted_query_params = $primary_model_query_params;
434
-        $restricted_query_params['caps'] = $context;
435
-        $restricted_query_params['limit'] = 1;
436
-        $this->setDebugInfo('main model query params', $restricted_query_params);
437
-        $this->setDebugInfo('missing caps', Capabilities::getMissingPermissionsString($related_model, $context));
438
-        $primary_model_rows = $model->get_all_wpdb_results($restricted_query_params);
439
-        $primary_model_row = null;
440
-        if (is_array($primary_model_rows)) {
441
-            $primary_model_row = reset($primary_model_rows);
442
-        }
443
-        if (! (
444
-            Capabilities::currentUserHasPartialAccessTo($related_model, $context)
445
-            && $primary_model_row
446
-        )
447
-        ) {
448
-            if ($relation instanceof EE_Belongs_To_Relation) {
449
-                $related_model_name_maybe_plural = strtolower($related_model->get_this_model_name());
450
-            } else {
451
-                $related_model_name_maybe_plural = EEH_Inflector::pluralize_and_lower(
452
-                    $related_model->get_this_model_name()
453
-                );
454
-            }
455
-            throw new RestException(
456
-                sprintf('rest_%s_cannot_list', $related_model_name_maybe_plural),
457
-                sprintf(
458
-                    __(
459
-                        'Sorry, you are not allowed to list %1$s related to %2$s. Missing permissions: %3$s',
460
-                        'event_espresso'
461
-                    ),
462
-                    $related_model_name_maybe_plural,
463
-                    $relation->get_this_model()->get_this_model_name(),
464
-                    implode(
465
-                        ',',
466
-                        array_keys(
467
-                            Capabilities::getMissingPermissions($related_model, $context)
468
-                        )
469
-                    )
470
-                ),
471
-                array('status' => 403)
472
-            );
473
-        }
474
-
475
-        $this->checkPassword(
476
-            $model,
477
-            $primary_model_row,
478
-            $restricted_query_params,
479
-            $request
480
-        );
481
-        $query_params = $this->createModelQueryParams($relation->get_other_model(), $request->get_params());
482
-        foreach ($primary_model_query_params[0] as $where_condition_key => $where_condition_value) {
483
-            $query_params[0][ $relation->get_this_model()->get_this_model_name()
484
-                              . '.'
485
-                              . $where_condition_key ] = $where_condition_value;
486
-        }
487
-        $query_params['default_where_conditions'] = 'none';
488
-        $query_params['caps'] = $context;
489
-        if (! $request->get_header('no_rest_headers')) {
490
-            $this->setHeadersFromQueryParams($relation->get_other_model(), $query_params);
491
-        }
492
-        /** @type array $results */
493
-        $results = $relation->get_other_model()->get_all_wpdb_results($query_params);
494
-        $nice_results = array();
495
-        foreach ($results as $result) {
496
-            $nice_result = $this->createEntityFromWpdbResult(
497
-                $relation->get_other_model(),
498
-                $result,
499
-                $request
500
-            );
501
-            if ($relation instanceof \EE_HABTM_Relation) {
502
-                // put the unusual stuff (properties from the HABTM relation) first, and make sure
503
-                // if there are conflicts we prefer the properties from the main model
504
-                $join_model_result = $this->createEntityFromWpdbResult(
505
-                    $relation->get_join_model(),
506
-                    $result,
507
-                    $request
508
-                );
509
-                $joined_result = array_merge($nice_result, $join_model_result);
510
-                // but keep the meta stuff from the main model
511
-                if (isset($nice_result['meta'])) {
512
-                    $joined_result['meta'] = $nice_result['meta'];
513
-                }
514
-                $nice_result = $joined_result;
515
-            }
516
-            $nice_results[] = $nice_result;
517
-        }
518
-        if ($relation instanceof EE_Belongs_To_Relation) {
519
-            return array_shift($nice_results);
520
-        } else {
521
-            return $nice_results;
522
-        }
523
-    }
524
-
525
-
526
-    /**
527
-     * Gets the collection for given relation object
528
-     * The same as Read::get_entities_from_model(), except if the relation
529
-     * is a HABTM relation, in which case it merges any non-foreign-key fields from
530
-     * the join-model-object into the results
531
-     *
532
-     * @param string                  $id the ID of the thing we are fetching related stuff from
533
-     * @param \EE_Model_Relation_Base $relation
534
-     * @param WP_REST_Request         $request
535
-     * @return array
536
-     * @throws EE_Error
537
-     */
538
-    public function getEntitiesFromRelation($id, $relation, $request)
539
-    {
540
-        if (! $relation->get_this_model()->has_primary_key_field()) {
541
-            throw new EE_Error(
542
-                sprintf(
543
-                    __(
544
-                    // @codingStandardsIgnoreStart
545
-                        'Read::get_entities_from_relation should only be called from a model with a primary key, it was called from %1$s',
546
-                        // @codingStandardsIgnoreEnd
547
-                        'event_espresso'
548
-                    ),
549
-                    $relation->get_this_model()->get_this_model_name()
550
-                )
551
-            );
552
-        }
553
-        // can we edit that main item?
554
-        // if not, show nothing but an error
555
-        // otherwise, please proceed
556
-        return $this->getEntitiesFromRelationUsingModelQueryParams(
557
-            array(
558
-                array(
559
-                    $relation->get_this_model()->primary_key_name() => $id,
560
-                ),
561
-            ),
562
-            $relation,
563
-            $request
564
-        );
565
-    }
566
-
567
-
568
-    /**
569
-     * Sets the headers that are based on the model and query params,
570
-     * like the total records. This should only be called on the original request
571
-     * from the client, not on subsequent internal
572
-     *
573
-     * @param EEM_Base $model
574
-     * @param array    $query_params
575
-     * @return void
576
-     */
577
-    protected function setHeadersFromQueryParams($model, $query_params)
578
-    {
579
-        $this->setDebugInfo('model query params', $query_params);
580
-        $this->setDebugInfo(
581
-            'missing caps',
582
-            Capabilities::getMissingPermissionsString($model, $query_params['caps'])
583
-        );
584
-        // normally the limit to a 2-part array, where the 2nd item is the limit
585
-        if (! isset($query_params['limit'])) {
586
-            $query_params['limit'] = EED_Core_Rest_Api::get_default_query_limit();
587
-        }
588
-        if (is_array($query_params['limit'])) {
589
-            $limit_parts = $query_params['limit'];
590
-        } else {
591
-            $limit_parts = explode(',', $query_params['limit']);
592
-            if (count($limit_parts) == 1) {
593
-                $limit_parts = array(0, $limit_parts[0]);
594
-            }
595
-        }
596
-        // remove the group by and having parts of the query, as those will
597
-        // make the sql query return an array of values, instead of just a single value
598
-        unset($query_params['group_by'], $query_params['having'], $query_params['limit']);
599
-        $count = $model->count($query_params, null, true);
600
-        $pages = $count / $limit_parts[1];
601
-        $this->setResponseHeader('Total', $count, false);
602
-        $this->setResponseHeader('PageSize', $limit_parts[1], false);
603
-        $this->setResponseHeader('TotalPages', ceil($pages), false);
604
-    }
605
-
606
-
607
-    /**
608
-     * Changes database results into REST API entities
609
-     *
610
-     * @param EEM_Base $model
611
-     * @param array $db_row like results from $wpdb->get_results()
612
-     * @param WP_REST_Request $rest_request
613
-     * @param string $deprecated no longer used
614
-     * @return array ready for being converted into json for sending to client
615
-     * @throws EE_Error
616
-     * @throws RestException
617
-     * @throws InvalidDataTypeException
618
-     * @throws InvalidInterfaceException
619
-     * @throws InvalidArgumentException
620
-     * @throws ReflectionException
621
-     */
622
-    public function createEntityFromWpdbResult($model, $db_row, $rest_request, $deprecated = null)
623
-    {
624
-        if (! $rest_request instanceof WP_REST_Request) {
625
-            // ok so this was called in the old style, where the 3rd arg was
626
-            // $include, and the 4th arg was $context
627
-            // now setup the request just to avoid fatal errors, although we won't be able
628
-            // to truly make use of it because it's kinda devoid of info
629
-            $rest_request = new WP_REST_Request();
630
-            $rest_request->set_param('include', $rest_request);
631
-            $rest_request->set_param('caps', $deprecated);
632
-        }
633
-        if ($rest_request->get_param('caps') == null) {
634
-            $rest_request->set_param('caps', EEM_Base::caps_read);
635
-        }
636
-        $current_user_full_access_to_entity = $model->currentUserCan(
637
-            EEM_Base::caps_read_admin,
638
-            $model->deduce_fields_n_values_from_cols_n_values($db_row)
639
-        );
640
-        $entity_array = $this->createBareEntityFromWpdbResults($model, $db_row);
641
-        $entity_array = $this->addExtraFields($model, $db_row, $entity_array);
642
-        $entity_array['_links'] = $this->getEntityLinks($model, $db_row, $entity_array);
643
-        // when it's a regular read request for a model with a password and the password wasn't provided
644
-        // remove the password protected fields
645
-        $has_protected_fields = false;
646
-        try {
647
-            $this->checkPassword(
648
-                $model,
649
-                $db_row,
650
-                array(
651
-                    0 => array(
652
-                        $model->primary_key_name() => $db_row[ $model->get_primary_key_field()->get_qualified_column() ]
653
-                    )
654
-                ),
655
-                $rest_request
656
-            );
657
-        } catch (RestPasswordRequiredException $e) {
658
-            if ($model->hasPassword()) {
659
-                // just remove protected fields
660
-                $has_protected_fields = true;
661
-                $entity_array = Capabilities::filterOutPasswordProtectedFields(
662
-                    $entity_array,
663
-                    $model,
664
-                    $this->getModelVersionInfo()
665
-                );
666
-            } else {
667
-                // that's a problem. None of this should be accessible if no password was provided
668
-                throw $e;
669
-            }
670
-        }
671
-
672
-        $entity_array['_calculated_fields'] = $this->getEntityCalculations($model, $db_row, $rest_request, $has_protected_fields);
673
-        $entity_array = apply_filters(
674
-            'FHEE__Read__create_entity_from_wpdb_results__entity_before_including_requested_models',
675
-            $entity_array,
676
-            $model,
677
-            $rest_request->get_param('caps'),
678
-            $rest_request,
679
-            $this
680
-        );
681
-        // add an empty protected property for now. If it's still around after we remove everything the request didn't
682
-        // want, we'll populate it then. k?
683
-        $entity_array['_protected'] = array();
684
-        // remove any properties the request didn't want. This way _protected won't bother mentioning them
685
-        $entity_array = $this->includeOnlyRequestedProperties($model, $rest_request, $entity_array);
686
-        $entity_array = $this->includeRequestedModels($model, $rest_request, $entity_array, $db_row, $has_protected_fields);
687
-        // if they still wanted the _protected property, add it.
688
-        if (isset($entity_array['_protected'])) {
689
-            $entity_array = $this->addProtectedProperty($model, $entity_array, $has_protected_fields);
690
-        }
691
-        $entity_array = apply_filters(
692
-            'FHEE__Read__create_entity_from_wpdb_results__entity_before_inaccessible_field_removal',
693
-            $entity_array,
694
-            $model,
695
-            $rest_request->get_param('caps'),
696
-            $rest_request,
697
-            $this
698
-        );
699
-        if (! $current_user_full_access_to_entity) {
700
-            $result_without_inaccessible_fields = Capabilities::filterOutInaccessibleEntityFields(
701
-                $entity_array,
702
-                $model,
703
-                $rest_request->get_param('caps'),
704
-                $this->getModelVersionInfo()
705
-            );
706
-        } else {
707
-            $result_without_inaccessible_fields = $entity_array;
708
-        }
709
-        $this->setDebugInfo(
710
-            'inaccessible fields',
711
-            array_keys(array_diff_key((array) $entity_array, (array) $result_without_inaccessible_fields))
712
-        );
713
-        return apply_filters(
714
-            'FHEE__Read__create_entity_from_wpdb_results__entity_return',
715
-            $result_without_inaccessible_fields,
716
-            $model,
717
-            $rest_request->get_param('caps')
718
-        );
719
-    }
720
-
721
-    /**
722
-     * Returns an array describing which fields can be protected, and which actually were removed this request
723
-     * @since $VID:$
724
-     * @param $model
725
-     * @param $results_so_far
726
-     * @param $protected
727
-     * @return array results
728
-     */
729
-    protected function addProtectedProperty(EEM_Base $model, $results_so_far, $protected)
730
-    {
731
-        if (! $model->hasPassword() || ! $protected) {
732
-            return $results_so_far;
733
-        }
734
-        $password_field = $model->getPasswordField();
735
-        $all_protected = array_merge(
736
-            array($password_field->get_name()),
737
-            $password_field->protectedFields()
738
-        );
739
-        $fields_included = array_keys($results_so_far);
740
-        $fields_included = array_intersect(
741
-            $all_protected,
742
-            $fields_included
743
-        );
744
-        foreach ($fields_included as $field_name) {
745
-            $results_so_far['_protected'][] = $field_name ;
746
-        }
747
-        return $results_so_far;
748
-    }
749
-
750
-    /**
751
-     * Creates a REST entity array (JSON object we're going to return in the response, but
752
-     * for now still a PHP array, but soon enough we'll call json_encode on it, don't worry),
753
-     * from $wpdb->get_row( $sql, ARRAY_A)
754
-     *
755
-     * @param EEM_Base $model
756
-     * @param array    $db_row
757
-     * @return array entity mostly ready for converting to JSON and sending in the response
758
-     */
759
-    protected function createBareEntityFromWpdbResults(EEM_Base $model, $db_row)
760
-    {
761
-        $result = $model->deduce_fields_n_values_from_cols_n_values($db_row);
762
-        $result = array_intersect_key(
763
-            $result,
764
-            $this->getModelVersionInfo()->fieldsOnModelInThisVersion($model)
765
-        );
766
-        // if this is a CPT, we need to set the global $post to it,
767
-        // otherwise shortcodes etc won't work properly while rendering it
768
-        if ($model instanceof \EEM_CPT_Base) {
769
-            $do_chevy_shuffle = true;
770
-        } else {
771
-            $do_chevy_shuffle = false;
772
-        }
773
-        if ($do_chevy_shuffle) {
774
-            global $post;
775
-            $old_post = $post;
776
-            $post = get_post($result[ $model->primary_key_name() ]);
777
-            if (! $post instanceof \WP_Post) {
778
-                // well that's weird, because $result is what we JUST fetched from the database
779
-                throw new RestException(
780
-                    'error_fetching_post_from_database_results',
781
-                    esc_html__(
782
-                        'An item was retrieved from the database but it\'s not a WP_Post like it should be.',
783
-                        'event_espresso'
784
-                    )
785
-                );
786
-            }
787
-            $model_object_classname = 'EE_' . $model->get_this_model_name();
788
-            $post->{$model_object_classname} = \EE_Registry::instance()->load_class(
789
-                $model_object_classname,
790
-                $result,
791
-                false,
792
-                false
793
-            );
794
-        }
795
-        foreach ($result as $field_name => $field_value) {
796
-            $field_obj = $model->field_settings_for($field_name);
797
-            if ($this->isSubclassOfOne($field_obj, $this->getModelVersionInfo()->fieldsIgnored())) {
798
-                unset($result[ $field_name ]);
799
-            } elseif ($this->isSubclassOfOne(
800
-                $field_obj,
801
-                $this->getModelVersionInfo()->fieldsThatHaveRenderedFormat()
802
-            )
803
-            ) {
804
-                $result[ $field_name ] = array(
805
-                    'raw'      => $this->prepareFieldObjValueForJson($field_obj, $field_value),
806
-                    'rendered' => $this->prepareFieldObjValueForJson($field_obj, $field_value, 'pretty'),
807
-                );
808
-            } elseif ($this->isSubclassOfOne(
809
-                $field_obj,
810
-                $this->getModelVersionInfo()->fieldsThatHavePrettyFormat()
811
-            )
812
-            ) {
813
-                $result[ $field_name ] = array(
814
-                    'raw'    => $this->prepareFieldObjValueForJson($field_obj, $field_value),
815
-                    'pretty' => $this->prepareFieldObjValueForJson($field_obj, $field_value, 'pretty'),
816
-                );
817
-            } elseif ($field_obj instanceof \EE_Datetime_Field) {
818
-                $field_value = $field_obj->prepare_for_set_from_db($field_value);
819
-                // if the value is null, but we're not supposed to permit null, then set to the field's default
820
-                if (is_null($field_value)) {
821
-                    $field_value = $field_obj->getDefaultDateTimeObj();
822
-                }
823
-                if (is_null($field_value)) {
824
-                    $gmt_date = $local_date = ModelDataTranslator::prepareFieldValuesForJson(
825
-                        $field_obj,
826
-                        $field_value,
827
-                        $this->getModelVersionInfo()->requestedVersion()
828
-                    );
829
-                } else {
830
-                    $timezone = $field_value->getTimezone();
831
-                    EEH_DTT_Helper::setTimezone($field_value, new DateTimeZone('UTC'));
832
-                    $gmt_date = ModelDataTranslator::prepareFieldValuesForJson(
833
-                        $field_obj,
834
-                        $field_value,
835
-                        $this->getModelVersionInfo()->requestedVersion()
836
-                    );
837
-                    EEH_DTT_Helper::setTimezone($field_value, $timezone);
838
-                    $local_date = ModelDataTranslator::prepareFieldValuesForJson(
839
-                        $field_obj,
840
-                        $field_value,
841
-                        $this->getModelVersionInfo()->requestedVersion()
842
-                    );
843
-                }
844
-                $result[ $field_name . '_gmt' ] = $gmt_date;
845
-                $result[ $field_name ] = $local_date;
846
-            } else {
847
-                $result[ $field_name ] = $this->prepareFieldObjValueForJson($field_obj, $field_value);
848
-            }
849
-        }
850
-        if ($do_chevy_shuffle) {
851
-            $post = $old_post;
852
-        }
853
-        return $result;
854
-    }
855
-
856
-
857
-    /**
858
-     * Takes a value all the way from the DB representation, to the model object's representation, to the
859
-     * user-facing PHP representation, to the REST API representation. (Assumes you've already taken from the DB
860
-     * representation using $field_obj->prepare_for_set_from_db())
861
-     *
862
-     * @param EE_Model_Field_Base $field_obj
863
-     * @param mixed               $value  as it's stored on a model object
864
-     * @param string              $format valid values are 'normal' (default), 'pretty', 'datetime_obj'
865
-     * @return mixed
866
-     * @throws ObjectDetectedException if $value contains a PHP object
867
-     */
868
-    protected function prepareFieldObjValueForJson(EE_Model_Field_Base $field_obj, $value, $format = 'normal')
869
-    {
870
-        $value = $field_obj->prepare_for_set_from_db($value);
871
-        switch ($format) {
872
-            case 'pretty':
873
-                $value = $field_obj->prepare_for_pretty_echoing($value);
874
-                break;
875
-            case 'normal':
876
-            default:
877
-                $value = $field_obj->prepare_for_get($value);
878
-                break;
879
-        }
880
-        return ModelDataTranslator::prepareFieldValuesForJson(
881
-            $field_obj,
882
-            $value,
883
-            $this->getModelVersionInfo()->requestedVersion()
884
-        );
885
-    }
886
-
887
-
888
-    /**
889
-     * Adds a few extra fields to the entity response
890
-     *
891
-     * @param EEM_Base $model
892
-     * @param array    $db_row
893
-     * @param array    $entity_array
894
-     * @return array modified entity
895
-     */
896
-    protected function addExtraFields(EEM_Base $model, $db_row, $entity_array)
897
-    {
898
-        if ($model instanceof EEM_CPT_Base) {
899
-            $entity_array['link'] = get_permalink($db_row[ $model->get_primary_key_field()->get_qualified_column() ]);
900
-        }
901
-        return $entity_array;
902
-    }
903
-
904
-
905
-    /**
906
-     * Gets links we want to add to the response
907
-     *
908
-     * @global \WP_REST_Server $wp_rest_server
909
-     * @param EEM_Base         $model
910
-     * @param array            $db_row
911
-     * @param array            $entity_array
912
-     * @return array the _links item in the entity
913
-     */
914
-    protected function getEntityLinks($model, $db_row, $entity_array)
915
-    {
916
-        // add basic links
917
-        $links = array();
918
-        if ($model->has_primary_key_field()) {
919
-            $links['self'] = array(
920
-                array(
921
-                    'href' => $this->getVersionedLinkTo(
922
-                        EEH_Inflector::pluralize_and_lower($model->get_this_model_name())
923
-                        . '/'
924
-                        . $entity_array[ $model->primary_key_name() ]
925
-                    ),
926
-                ),
927
-            );
928
-        }
929
-        $links['collection'] = array(
930
-            array(
931
-                'href' => $this->getVersionedLinkTo(
932
-                    EEH_Inflector::pluralize_and_lower($model->get_this_model_name())
933
-                ),
934
-            ),
935
-        );
936
-        // add links to related models
937
-        if ($model->has_primary_key_field()) {
938
-            foreach ($this->getModelVersionInfo()->relationSettings($model) as $relation_name => $relation_obj) {
939
-                $related_model_part = Read::getRelatedEntityName($relation_name, $relation_obj);
940
-                $links[ EED_Core_Rest_Api::ee_api_link_namespace . $related_model_part ] = array(
941
-                    array(
942
-                        'href'   => $this->getVersionedLinkTo(
943
-                            EEH_Inflector::pluralize_and_lower($model->get_this_model_name())
944
-                            . '/'
945
-                            . $entity_array[ $model->primary_key_name() ]
946
-                            . '/'
947
-                            . $related_model_part
948
-                        ),
949
-                        'single' => $relation_obj instanceof EE_Belongs_To_Relation ? true : false,
950
-                    ),
951
-                );
952
-            }
953
-        }
954
-        return $links;
955
-    }
956
-
957
-
958
-    /**
959
-     * Adds the included models indicated in the request to the entity provided
960
-     *
961
-     * @param EEM_Base $model
962
-     * @param WP_REST_Request $rest_request
963
-     * @param array $entity_array
964
-     * @param array $db_row
965
-     * @param boolean $included_items_protected if the original item is password protected, don't include any related models.
966
-     * @return array the modified entity
967
-     * @throws RestException
968
-     */
969
-    protected function includeRequestedModels(
970
-        EEM_Base $model,
971
-        WP_REST_Request $rest_request,
972
-        $entity_array,
973
-        $db_row = array(),
974
-        $included_items_protected = false
975
-    ) {
976
-        // if $db_row not included, hope the entity array has what we need
977
-        if (! $db_row) {
978
-            $db_row = $entity_array;
979
-        }
980
-        $relation_settings = $this->getModelVersionInfo()->relationSettings($model);
981
-        foreach ($relation_settings as $relation_name => $relation_obj) {
982
-            $related_fields_to_include = $this->explodeAndGetItemsPrefixedWith(
983
-                $rest_request->get_param('include'),
984
-                $relation_name
985
-            );
986
-            $related_fields_to_calculate = $this->explodeAndGetItemsPrefixedWith(
987
-                $rest_request->get_param('calculate'),
988
-                $relation_name
989
-            );
990
-            // did they specify they wanted to include a related model, or
991
-            // specific fields from a related model?
992
-            // or did they specify to calculate a field from a related model?
993
-            if ($related_fields_to_include || $related_fields_to_calculate) {
994
-                // if so, we should include at least some part of the related model
995
-                $pretend_related_request = new WP_REST_Request();
996
-                $pretend_related_request->set_query_params(
997
-                    array(
998
-                        'caps'      => $rest_request->get_param('caps'),
999
-                        'include'   => $related_fields_to_include,
1000
-                        'calculate' => $related_fields_to_calculate,
1001
-                        'password' => $rest_request->get_param('password')
1002
-                    )
1003
-                );
1004
-                $pretend_related_request->add_header('no_rest_headers', true);
1005
-                $primary_model_query_params = $model->alter_query_params_to_restrict_by_ID(
1006
-                    $model->get_index_primary_key_string(
1007
-                        $model->deduce_fields_n_values_from_cols_n_values($db_row)
1008
-                    )
1009
-                );
1010
-                if (! $included_items_protected) {
1011
-                    $related_results = $this->getEntitiesFromRelationUsingModelQueryParams(
1012
-                        $primary_model_query_params,
1013
-                        $relation_obj,
1014
-                        $pretend_related_request
1015
-                    );
1016
-                } else {
1017
-                    // they're protected, hide them.
1018
-                    $related_results = $relation_obj instanceof EE_Belongs_To_Relation ? null : array();
1019
-                    $entity_array['_protected'][] = Read::getRelatedEntityName($relation_name, $relation_obj);
1020
-                }
1021
-                if ($related_results instanceof WP_Error) {
1022
-                    $related_results = null;
1023
-                }
1024
-                $entity_array[ Read::getRelatedEntityName($relation_name, $relation_obj) ] = $related_results;
1025
-            }
1026
-        }
1027
-        return $entity_array;
1028
-    }
1029
-
1030
-    /**
1031
-     * If the user has requested only specific properties (including meta properties like _links or _protected)
1032
-     * remove everything else.
1033
-     * @since $VID:$
1034
-     * @param EEM_Base $model
1035
-     * @param WP_REST_Request $rest_request
1036
-     * @param $entity_array
1037
-     * @return array
1038
-     * @throws EE_Error
1039
-     */
1040
-    protected function includeOnlyRequestedProperties(
1041
-        EEM_Base $model,
1042
-        WP_REST_Request $rest_request,
1043
-        $entity_array
1044
-    ) {
1045
-
1046
-        $includes_for_this_model = $this->explodeAndGetItemsPrefixedWith($rest_request->get_param('include'), '');
1047
-        $includes_for_this_model = $this->removeModelNamesFromArray($includes_for_this_model);
1048
-        // if they passed in * or didn't specify any includes, return everything
1049
-        if (! in_array('*', $includes_for_this_model)
1050
-            && ! empty($includes_for_this_model)
1051
-        ) {
1052
-            if ($model->has_primary_key_field()) {
1053
-                // always include the primary key. ya just gotta know that at least
1054
-                $includes_for_this_model[] = $model->primary_key_name();
1055
-            }
1056
-            if ($this->explodeAndGetItemsPrefixedWith($rest_request->get_param('calculate'), '')) {
1057
-                $includes_for_this_model[] = '_calculated_fields';
1058
-            }
1059
-            $entity_array = array_intersect_key($entity_array, array_flip($includes_for_this_model));
1060
-        }
1061
-        return $entity_array;
1062
-    }
1063
-
1064
-
1065
-    /**
1066
-     * Returns a new array with all the names of models removed. Eg
1067
-     * array( 'Event', 'Datetime.*', 'foobar' ) would become array( 'Datetime.*', 'foobar' )
1068
-     *
1069
-     * @param array $arr
1070
-     * @return array
1071
-     */
1072
-    private function removeModelNamesFromArray($arr)
1073
-    {
1074
-        return array_diff($arr, array_keys(EE_Registry::instance()->non_abstract_db_models));
1075
-    }
1076
-
1077
-
1078
-    /**
1079
-     * Gets the calculated fields for the response
1080
-     *
1081
-     * @param EEM_Base        $model
1082
-     * @param array           $wpdb_row
1083
-     * @param WP_REST_Request $rest_request
1084
-     * @param boolean $row_is_protected whether this row is password protected or not
1085
-     * @return \stdClass the _calculations item in the entity
1086
-     * @throws ObjectDetectedException if a default value has a PHP object, which should never do (and if we
1087
-     * did, let's know about it ASAP, so let the exception bubble up)
1088
-     */
1089
-    protected function getEntityCalculations($model, $wpdb_row, $rest_request, $row_is_protected = false)
1090
-    {
1091
-        $calculated_fields = $this->explodeAndGetItemsPrefixedWith(
1092
-            $rest_request->get_param('calculate'),
1093
-            ''
1094
-        );
1095
-        // note: setting calculate=* doesn't do anything
1096
-        $calculated_fields_to_return = new \stdClass();
1097
-        $protected_fields = array();
1098
-        foreach ($calculated_fields as $field_to_calculate) {
1099
-            try {
1100
-                // it's password protected, so they shouldn't be able to read this. Remove the value
1101
-                $schema = $this->fields_calculator->getJsonSchemaForModel($model);
1102
-                if ($row_is_protected
1103
-                    && isset($schema['properties'][ $field_to_calculate ]['protected'])
1104
-                    && $schema['properties'][ $field_to_calculate ]['protected']) {
1105
-                    $calculated_value = null;
1106
-                    $protected_fields[] = $field_to_calculate;
1107
-                    if ($schema['properties'][ $field_to_calculate ]['type']) {
1108
-                        switch ($schema['properties'][ $field_to_calculate ]['type']) {
1109
-                            case 'boolean':
1110
-                                $calculated_value = false;
1111
-                                break;
1112
-                            case 'integer':
1113
-                                $calculated_value = 0;
1114
-                                break;
1115
-                            case 'string':
1116
-                                $calculated_value = '';
1117
-                                break;
1118
-                            case 'array':
1119
-                                $calculated_value = array();
1120
-                                break;
1121
-                            case 'object':
1122
-                                $calculated_value = new stdClass();
1123
-                                break;
1124
-                        }
1125
-                    }
1126
-                } else {
1127
-                    $calculated_value = ModelDataTranslator::prepareFieldValueForJson(
1128
-                        null,
1129
-                        $this->fields_calculator->retrieveCalculatedFieldValue(
1130
-                            $model,
1131
-                            $field_to_calculate,
1132
-                            $wpdb_row,
1133
-                            $rest_request,
1134
-                            $this
1135
-                        ),
1136
-                        $this->getModelVersionInfo()->requestedVersion()
1137
-                    );
1138
-                }
1139
-                $calculated_fields_to_return->{$field_to_calculate} = $calculated_value;
1140
-            } catch (RestException $e) {
1141
-                // if we don't have permission to read it, just leave it out. but let devs know about the problem
1142
-                $this->setResponseHeader(
1143
-                    'Notices-Field-Calculation-Errors['
1144
-                    . $e->getStringCode()
1145
-                    . ']['
1146
-                    . $model->get_this_model_name()
1147
-                    . ']['
1148
-                    . $field_to_calculate
1149
-                    . ']',
1150
-                    $e->getMessage(),
1151
-                    true
1152
-                );
1153
-            }
1154
-        }
1155
-        $calculated_fields_to_return->_protected = $protected_fields;
1156
-        return $calculated_fields_to_return;
1157
-    }
1158
-
1159
-
1160
-    /**
1161
-     * Gets the full URL to the resource, taking the requested version into account
1162
-     *
1163
-     * @param string $link_part_after_version_and_slash eg "events/10/datetimes"
1164
-     * @return string url eg "http://mysite.com/wp-json/ee/v4.6/events/10/datetimes"
1165
-     */
1166
-    public function getVersionedLinkTo($link_part_after_version_and_slash)
1167
-    {
1168
-        return rest_url(
1169
-            EED_Core_Rest_Api::get_versioned_route_to(
1170
-                $link_part_after_version_and_slash,
1171
-                $this->getModelVersionInfo()->requestedVersion()
1172
-            )
1173
-        );
1174
-    }
1175
-
1176
-
1177
-    /**
1178
-     * Gets the correct lowercase name for the relation in the API according
1179
-     * to the relation's type
1180
-     *
1181
-     * @param string                  $relation_name
1182
-     * @param \EE_Model_Relation_Base $relation_obj
1183
-     * @return string
1184
-     */
1185
-    public static function getRelatedEntityName($relation_name, $relation_obj)
1186
-    {
1187
-        if ($relation_obj instanceof EE_Belongs_To_Relation) {
1188
-            return strtolower($relation_name);
1189
-        } else {
1190
-            return EEH_Inflector::pluralize_and_lower($relation_name);
1191
-        }
1192
-    }
1193
-
1194
-
1195
-    /**
1196
-     * Gets the one model object with the specified id for the specified model
1197
-     *
1198
-     * @param EEM_Base        $model
1199
-     * @param WP_REST_Request $request
1200
-     * @return array
1201
-     */
1202
-    public function getEntityFromModel($model, $request)
1203
-    {
1204
-        $context = $this->validateContext($request->get_param('caps'));
1205
-        return $this->getOneOrReportPermissionError($model, $request, $context);
1206
-    }
1207
-
1208
-
1209
-    /**
1210
-     * If a context is provided which isn't valid, maybe it was added in a future
1211
-     * version so just treat it as a default read
1212
-     *
1213
-     * @param string $context
1214
-     * @return string array key of EEM_Base::cap_contexts_to_cap_action_map()
1215
-     */
1216
-    public function validateContext($context)
1217
-    {
1218
-        if (! $context) {
1219
-            $context = EEM_Base::caps_read;
1220
-        }
1221
-        $valid_contexts = EEM_Base::valid_cap_contexts();
1222
-        if (in_array($context, $valid_contexts)) {
1223
-            return $context;
1224
-        } else {
1225
-            return EEM_Base::caps_read;
1226
-        }
1227
-    }
1228
-
1229
-
1230
-    /**
1231
-     * Verifies the passed in value is an allowable default where conditions value.
1232
-     *
1233
-     * @param $default_query_params
1234
-     * @return string
1235
-     */
1236
-    public function validateDefaultQueryParams($default_query_params)
1237
-    {
1238
-        $valid_default_where_conditions_for_api_calls = array(
1239
-            EEM_Base::default_where_conditions_all,
1240
-            EEM_Base::default_where_conditions_minimum_all,
1241
-            EEM_Base::default_where_conditions_minimum_others,
1242
-        );
1243
-        if (! $default_query_params) {
1244
-            $default_query_params = EEM_Base::default_where_conditions_all;
1245
-        }
1246
-        if (in_array(
1247
-            $default_query_params,
1248
-            $valid_default_where_conditions_for_api_calls,
1249
-            true
1250
-        )) {
1251
-            return $default_query_params;
1252
-        } else {
1253
-            return EEM_Base::default_where_conditions_all;
1254
-        }
1255
-    }
1256
-
1257
-
1258
-    /**
1259
-     * 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.
1260
-     * Note: right now the query parameter keys for fields (and related fields)
1261
-     * can be left as-is, but it's quite possible this will change someday.
1262
-     * Also, this method's contents might be candidate for moving to Model_Data_Translator
1263
-     *
1264
-     * @param EEM_Base $model
1265
-     * @param array    $query_parameters  from $_GET parameter @see Read:handle_request_get_all
1266
-     * @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)
1267
-     *                                    or FALSE to indicate that absolutely no results should be returned
1268
-     * @throws EE_Error
1269
-     * @throws RestException
1270
-     */
1271
-    public function createModelQueryParams($model, $query_params)
1272
-    {
1273
-        $model_query_params = array();
1274
-        if (isset($query_params['where'])) {
1275
-            $model_query_params[0] = ModelDataTranslator::prepareConditionsQueryParamsForModels(
1276
-                $query_params['where'],
1277
-                $model,
1278
-                $this->getModelVersionInfo()->requestedVersion()
1279
-            );
1280
-        }
1281
-        if (isset($query_params['order_by'])) {
1282
-            $order_by = $query_params['order_by'];
1283
-        } elseif (isset($query_params['orderby'])) {
1284
-            $order_by = $query_params['orderby'];
1285
-        } else {
1286
-            $order_by = null;
1287
-        }
1288
-        if ($order_by !== null) {
1289
-            if (is_array($order_by)) {
1290
-                $order_by = ModelDataTranslator::prepareFieldNamesInArrayKeysFromJson($order_by);
1291
-            } else {
1292
-                // it's a single item
1293
-                $order_by = ModelDataTranslator::prepareFieldNameFromJson($order_by);
1294
-            }
1295
-            $model_query_params['order_by'] = $order_by;
1296
-        }
1297
-        if (isset($query_params['group_by'])) {
1298
-            $group_by = $query_params['group_by'];
1299
-        } elseif (isset($query_params['groupby'])) {
1300
-            $group_by = $query_params['groupby'];
1301
-        } else {
1302
-            $group_by = array_keys($model->get_combined_primary_key_fields());
1303
-        }
1304
-        // make sure they're all real names
1305
-        if (is_array($group_by)) {
1306
-            $group_by = ModelDataTranslator::prepareFieldNamesFromJson($group_by);
1307
-        }
1308
-        if ($group_by !== null) {
1309
-            $model_query_params['group_by'] = $group_by;
1310
-        }
1311
-        if (isset($query_params['having'])) {
1312
-            $model_query_params['having'] = ModelDataTranslator::prepareConditionsQueryParamsForModels(
1313
-                $query_params['having'],
1314
-                $model,
1315
-                $this->getModelVersionInfo()->requestedVersion()
1316
-            );
1317
-        }
1318
-        if (isset($query_params['order'])) {
1319
-            $model_query_params['order'] = $query_params['order'];
1320
-        }
1321
-        if (isset($query_params['mine'])) {
1322
-            $model_query_params = $model->alter_query_params_to_only_include_mine($model_query_params);
1323
-        }
1324
-        if (isset($query_params['limit'])) {
1325
-            // limit should be either a string like '23' or '23,43', or an array with two items in it
1326
-            if (! is_array($query_params['limit'])) {
1327
-                $limit_array = explode(',', (string) $query_params['limit']);
1328
-            } else {
1329
-                $limit_array = $query_params['limit'];
1330
-            }
1331
-            $sanitized_limit = array();
1332
-            foreach ($limit_array as $key => $limit_part) {
1333
-                if ($this->debug_mode && (! is_numeric($limit_part) || count($sanitized_limit) > 2)) {
1334
-                    throw new EE_Error(
1335
-                        sprintf(
1336
-                            __(
1337
-                            // @codingStandardsIgnoreStart
1338
-                                '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.',
1339
-                                // @codingStandardsIgnoreEnd
1340
-                                'event_espresso'
1341
-                            ),
1342
-                            wp_json_encode($query_params['limit'])
1343
-                        )
1344
-                    );
1345
-                }
1346
-                $sanitized_limit[] = (int) $limit_part;
1347
-            }
1348
-            $model_query_params['limit'] = implode(',', $sanitized_limit);
1349
-        } else {
1350
-            $model_query_params['limit'] = EED_Core_Rest_Api::get_default_query_limit();
1351
-        }
1352
-        if (isset($query_params['caps'])) {
1353
-            $model_query_params['caps'] = $this->validateContext($query_params['caps']);
1354
-        } else {
1355
-            $model_query_params['caps'] = EEM_Base::caps_read;
1356
-        }
1357
-        if (isset($query_params['default_where_conditions'])) {
1358
-            $model_query_params['default_where_conditions'] = $this->validateDefaultQueryParams(
1359
-                $query_params['default_where_conditions']
1360
-            );
1361
-        }
1362
-        // if this is a model protected by a password on another model, exclude the password protected
1363
-        // entities by default. But if they passed in a password, try to show them all. If the password is wrong,
1364
-        // though, they'll get an error (see Read::createEntityFromWpdbResult() which calls Read::checkPassword)
1365
-        if (! $model->hasPassword()
1366
-            && $model->restrictedByRelatedModelPassword()
1367
-            && $model_query_params['caps'] === EEM_Base::caps_read) {
1368
-            if (empty($query_params['password'])) {
1369
-                $model_query_params['exclude_protected'] = true;
1370
-            }
1371
-        }
1372
-
1373
-        return apply_filters('FHEE__Read__create_model_query_params', $model_query_params, $query_params, $model);
1374
-    }
1375
-
1376
-
1377
-    /**
1378
-     * Changes the REST-style query params for use in the models
1379
-     *
1380
-     * @deprecated
1381
-     * @param EEM_Base $model
1382
-     * @param array    $query_params sub-array from @see EEM_Base::get_all()
1383
-     * @return array
1384
-     */
1385
-    public function prepareRestQueryParamsKeyForModels($model, $query_params)
1386
-    {
1387
-        $model_ready_query_params = array();
1388
-        foreach ($query_params as $key => $value) {
1389
-            if (is_array($value)) {
1390
-                $model_ready_query_params[ $key ] = $this->prepareRestQueryParamsKeyForModels($model, $value);
1391
-            } else {
1392
-                $model_ready_query_params[ $key ] = $value;
1393
-            }
1394
-        }
1395
-        return $model_ready_query_params;
1396
-    }
1397
-
1398
-
1399
-    /**
1400
-     * @deprecated instead use ModelDataTranslator::prepareFieldValuesFromJson()
1401
-     * @param $model
1402
-     * @param $query_params
1403
-     * @return array
1404
-     */
1405
-    public function prepareRestQueryParamsValuesForModels($model, $query_params)
1406
-    {
1407
-        $model_ready_query_params = array();
1408
-        foreach ($query_params as $key => $value) {
1409
-            if (is_array($value)) {
1410
-                $model_ready_query_params[ $key ] = $this->prepareRestQueryParamsValuesForModels($model, $value);
1411
-            } else {
1412
-                $model_ready_query_params[ $key ] = $value;
1413
-            }
1414
-        }
1415
-        return $model_ready_query_params;
1416
-    }
1417
-
1418
-
1419
-    /**
1420
-     * Explodes the string on commas, and only returns items with $prefix followed by a period.
1421
-     * If no prefix is specified, returns items with no period.
1422
-     *
1423
-     * @param string|array $string_to_explode eg "jibba,jabba, blah, blah, blah" or array('jibba', 'jabba' )
1424
-     * @param string       $prefix            "Event" or "foobar"
1425
-     * @return array $string_to_exploded exploded on COMMAS, and if a prefix was specified
1426
-     *                                        we only return strings starting with that and a period; if no prefix was
1427
-     *                                        specified we return all items containing NO periods
1428
-     */
1429
-    public function explodeAndGetItemsPrefixedWith($string_to_explode, $prefix)
1430
-    {
1431
-        if (is_string($string_to_explode)) {
1432
-            $exploded_contents = explode(',', $string_to_explode);
1433
-        } elseif (is_array($string_to_explode)) {
1434
-            $exploded_contents = $string_to_explode;
1435
-        } else {
1436
-            $exploded_contents = array();
1437
-        }
1438
-        // if the string was empty, we want an empty array
1439
-        $exploded_contents = array_filter($exploded_contents);
1440
-        $contents_with_prefix = array();
1441
-        foreach ($exploded_contents as $item) {
1442
-            $item = trim($item);
1443
-            // if no prefix was provided, so we look for items with no "." in them
1444
-            if (! $prefix) {
1445
-                // does this item have a period?
1446
-                if (strpos($item, '.') === false) {
1447
-                    // if not, then its what we're looking for
1448
-                    $contents_with_prefix[] = $item;
1449
-                }
1450
-            } elseif (strpos($item, $prefix . '.') === 0) {
1451
-                // this item has the prefix and a period, grab it
1452
-                $contents_with_prefix[] = substr(
1453
-                    $item,
1454
-                    strpos($item, $prefix . '.') + strlen($prefix . '.')
1455
-                );
1456
-            } elseif ($item === $prefix) {
1457
-                // this item is JUST the prefix
1458
-                // so let's grab everything after, which is a blank string
1459
-                $contents_with_prefix[] = '';
1460
-            }
1461
-        }
1462
-        return $contents_with_prefix;
1463
-    }
1464
-
1465
-
1466
-    /**
1467
-     * @deprecated since 4.8.36.rc.001 You should instead use Read::explode_and_get_items_prefixed_with.
1468
-     * Deprecated because its return values were really quite confusing- sometimes it returned
1469
-     * an empty array (when the include string was blank or '*') or sometimes it returned
1470
-     * array('*') (when you provided a model and a model of that kind was found).
1471
-     * Parses the $include_string so we fetch all the field names relating to THIS model
1472
-     * (ie have NO period in them), or for the provided model (ie start with the model
1473
-     * name and then a period).
1474
-     * @param string $include_string @see Read:handle_request_get_all
1475
-     * @param string $model_name
1476
-     * @return array of fields for this model. If $model_name is provided, then
1477
-     *                               the fields for that model, with the model's name removed from each.
1478
-     *                               If $include_string was blank or '*' returns an empty array
1479
-     */
1480
-    public function extractIncludesForThisModel($include_string, $model_name = null)
1481
-    {
1482
-        if (is_array($include_string)) {
1483
-            $include_string = implode(',', $include_string);
1484
-        }
1485
-        if ($include_string === '*' || $include_string === '') {
1486
-            return array();
1487
-        }
1488
-        $includes = explode(',', $include_string);
1489
-        $extracted_fields_to_include = array();
1490
-        if ($model_name) {
1491
-            foreach ($includes as $field_to_include) {
1492
-                $field_to_include = trim($field_to_include);
1493
-                if (strpos($field_to_include, $model_name . '.') === 0) {
1494
-                    // found the model name at the exact start
1495
-                    $field_sans_model_name = str_replace($model_name . '.', '', $field_to_include);
1496
-                    $extracted_fields_to_include[] = $field_sans_model_name;
1497
-                } elseif ($field_to_include == $model_name) {
1498
-                    $extracted_fields_to_include[] = '*';
1499
-                }
1500
-            }
1501
-        } else {
1502
-            // look for ones with no period
1503
-            foreach ($includes as $field_to_include) {
1504
-                $field_to_include = trim($field_to_include);
1505
-                if (strpos($field_to_include, '.') === false
1506
-                    && ! $this->getModelVersionInfo()->isModelNameInThisVersion($field_to_include)
1507
-                ) {
1508
-                    $extracted_fields_to_include[] = $field_to_include;
1509
-                }
1510
-            }
1511
-        }
1512
-        return $extracted_fields_to_include;
1513
-    }
1514
-
1515
-
1516
-    /**
1517
-     * Gets the single item using the model according to the request in the context given, otherwise
1518
-     * returns that it's inaccessible to the current user
1519
-     *
1520
-     * @param EEM_Base $model
1521
-     * @param WP_REST_Request $request
1522
-     * @param null $context
1523
-     * @return array
1524
-     * @throws EE_Error
1525
-     */
1526
-    public function getOneOrReportPermissionError(EEM_Base $model, WP_REST_Request $request, $context = null)
1527
-    {
1528
-        $query_params = array(array($model->primary_key_name() => $request->get_param('id')), 'limit' => 1);
1529
-        if ($model instanceof EEM_Soft_Delete_Base) {
1530
-            $query_params = $model->alter_query_params_so_deleted_and_undeleted_items_included($query_params);
1531
-        }
1532
-        $restricted_query_params = $query_params;
1533
-        $restricted_query_params['caps'] = $context;
1534
-        $this->setDebugInfo('model query params', $restricted_query_params);
1535
-        $model_rows = $model->get_all_wpdb_results($restricted_query_params);
1536
-        if (! empty($model_rows)) {
1537
-            return $this->createEntityFromWpdbResult(
1538
-                $model,
1539
-                reset($model_rows),
1540
-                $request
1541
-            );
1542
-        } else {
1543
-            // ok let's test to see if we WOULD have found it, had we not had restrictions from missing capabilities
1544
-            $lowercase_model_name = strtolower($model->get_this_model_name());
1545
-            if ($model->exists($query_params)) {
1546
-                // you got shafted- it existed but we didn't want to tell you!
1547
-                throw new RestException(
1548
-                    'rest_user_cannot_' . $context,
1549
-                    sprintf(
1550
-                        __('Sorry, you cannot %1$s this %2$s. Missing permissions are: %3$s', 'event_espresso'),
1551
-                        $context,
1552
-                        $lowercase_model_name,
1553
-                        Capabilities::getMissingPermissionsString(
1554
-                            $model,
1555
-                            $context
1556
-                        )
1557
-                    ),
1558
-                    array('status' => 403)
1559
-                );
1560
-            } else {
1561
-                // it's not you. It just doesn't exist
1562
-                throw new RestException(
1563
-                    sprintf('rest_%s_invalid_id', $lowercase_model_name),
1564
-                    sprintf(__('Invalid %s ID.', 'event_espresso'), $lowercase_model_name),
1565
-                    array('status' => 404)
1566
-                );
1567
-            }
1568
-        }
1569
-    }
1570
-
1571
-    /**
1572
-     * Checks that if this content requires a password to be read, that it's been provided and is correct.
1573
-     * @since $VID:$
1574
-     * @param EEM_Base $model
1575
-     * @param $model_row
1576
-     * @param $query_params
1577
-     * @param WP_REST_Request $request
1578
-     * @throws EE_Error
1579
-     * @throws InvalidArgumentException
1580
-     * @throws InvalidDataTypeException
1581
-     * @throws InvalidInterfaceException
1582
-     * @throws RestPasswordRequiredException
1583
-     * @throws RestPasswordIncorrectException
1584
-     * @throws \EventEspresso\core\exceptions\ModelConfigurationException
1585
-     * @throws ReflectionException
1586
-     */
1587
-    protected function checkPassword(EEM_Base $model, $model_row, $query_params, WP_REST_Request $request)
1588
-    {
1589
-        // stuff is only "protected" for front-end requests. Elsewhere, you either get full permission to access the object
1590
-        // or you don't.
1591
-        $request_caps = $request->get_param('caps');
1592
-        if (isset($request_caps) && $request_caps !== EEM_Base::caps_read) {
1593
-            return;
1594
-        }
1595
-        // if this entity requires a password, they better give it and it better be right!
1596
-        if ($model->hasPassword()
1597
-            && $model_row[ $model->getPasswordField()->get_qualified_column() ] !== '') {
1598
-            if (empty($request['password'])) {
1599
-                throw new RestPasswordRequiredException();
1600
-            } elseif (!hash_equals(
1601
-                $model_row[ $model->getPasswordField()->get_qualified_column() ],
1602
-                $request['password']
1603
-            )) {
1604
-                throw new RestPasswordIncorrectException();
1605
-            }
1606
-        } // wait! maybe this content is password protected
1607
-        elseif ($model->restrictedByRelatedModelPassword()
1608
-            && $request->get_param('caps') === EEM_Base::caps_read) {
1609
-            $password_supplied = $request->get_param('password');
1610
-            if (empty($password_supplied)) {
1611
-                $query_params['exclude_protected'] = true;
1612
-                if (!$model->exists($query_params)) {
1613
-                    throw new RestPasswordRequiredException();
1614
-                }
1615
-            } else {
1616
-                $query_params[0][ $model->modelChainAndPassword() ] = $password_supplied;
1617
-                if (!$model->exists($query_params)) {
1618
-                    throw new RestPasswordIncorrectException();
1619
-                }
1620
-            }
1621
-        }
1622
-    }
48
+	/**
49
+	 * @var CalculatedModelFields
50
+	 */
51
+	protected $fields_calculator;
52
+
53
+
54
+	/**
55
+	 * Read constructor.
56
+	 * @param CalculatedModelFields $fields_calculator
57
+	 */
58
+	public function __construct(CalculatedModelFields $fields_calculator)
59
+	{
60
+		parent::__construct();
61
+		$this->fields_calculator = $fields_calculator;
62
+	}
63
+
64
+
65
+	/**
66
+	 * Handles requests to get all (or a filtered subset) of entities for a particular model
67
+	 *
68
+	 * @param WP_REST_Request $request
69
+	 * @param string $version
70
+	 * @param string $model_name
71
+	 * @return WP_REST_Response|WP_Error
72
+	 * @throws InvalidArgumentException
73
+	 * @throws InvalidDataTypeException
74
+	 * @throws InvalidInterfaceException
75
+	 */
76
+	public static function handleRequestGetAll(WP_REST_Request $request, $version, $model_name)
77
+	{
78
+		$controller = LoaderFactory::getLoader()->getNew('EventEspresso\core\libraries\rest_api\controllers\model\Read');
79
+		try {
80
+			$controller->setRequestedVersion($version);
81
+			if (! $controller->getModelVersionInfo()->isModelNameInThisVersion($model_name)) {
82
+				return $controller->sendResponse(
83
+					new WP_Error(
84
+						'endpoint_parsing_error',
85
+						sprintf(
86
+							__(
87
+								'There is no model for endpoint %s. Please contact event espresso support',
88
+								'event_espresso'
89
+							),
90
+							$model_name
91
+						)
92
+					)
93
+				);
94
+			}
95
+			return $controller->sendResponse(
96
+				$controller->getEntitiesFromModel(
97
+					$controller->getModelVersionInfo()->loadModel($model_name),
98
+					$request
99
+				)
100
+			);
101
+		} catch (Exception $e) {
102
+			return $controller->sendResponse($e);
103
+		}
104
+	}
105
+
106
+
107
+	/**
108
+	 * Prepares and returns schema for any OPTIONS request.
109
+	 *
110
+	 * @param string $version The API endpoint version being used.
111
+	 * @param string $model_name Something like `Event` or `Registration`
112
+	 * @return array
113
+	 * @throws InvalidArgumentException
114
+	 * @throws InvalidDataTypeException
115
+	 * @throws InvalidInterfaceException
116
+	 */
117
+	public static function handleSchemaRequest($version, $model_name)
118
+	{
119
+		$controller = LoaderFactory::getLoader()->getNew('EventEspresso\core\libraries\rest_api\controllers\model\Read');
120
+		try {
121
+			$controller->setRequestedVersion($version);
122
+			if (! $controller->getModelVersionInfo()->isModelNameInThisVersion($model_name)) {
123
+				return array();
124
+			}
125
+			// get the model for this version
126
+			$model = $controller->getModelVersionInfo()->loadModel($model_name);
127
+			$model_schema = new JsonModelSchema($model, LoaderFactory::getLoader()->getShared('EventEspresso\core\libraries\rest_api\CalculatedModelFields'));
128
+			return $model_schema->getModelSchemaForRelations(
129
+				$controller->getModelVersionInfo()->relationSettings($model),
130
+				$controller->customizeSchemaForRestResponse(
131
+					$model,
132
+					$model_schema->getModelSchemaForFields(
133
+						$controller->getModelVersionInfo()->fieldsOnModelInThisVersion($model),
134
+						$model_schema->getInitialSchemaStructure()
135
+					)
136
+				)
137
+			);
138
+		} catch (Exception $e) {
139
+			return array();
140
+		}
141
+	}
142
+
143
+
144
+	/**
145
+	 * This loops through each field in the given schema for the model and does the following:
146
+	 * - add any extra fields that are REST API specific and related to existing fields.
147
+	 * - transform default values into the correct format for a REST API response.
148
+	 *
149
+	 * @param EEM_Base $model
150
+	 * @param array    $schema
151
+	 * @return array  The final schema.
152
+	 */
153
+	protected function customizeSchemaForRestResponse(EEM_Base $model, array $schema)
154
+	{
155
+		foreach ($this->getModelVersionInfo()->fieldsOnModelInThisVersion($model) as $field_name => $field) {
156
+			$schema = $this->translateDefaultsForRestResponse(
157
+				$field_name,
158
+				$field,
159
+				$this->maybeAddExtraFieldsToSchema($field_name, $field, $schema)
160
+			);
161
+		}
162
+		return $schema;
163
+	}
164
+
165
+
166
+	/**
167
+	 * This is used to ensure that the 'default' value set in the schema response is formatted correctly for the REST
168
+	 * response.
169
+	 *
170
+	 * @param                      $field_name
171
+	 * @param EE_Model_Field_Base  $field
172
+	 * @param array                $schema
173
+	 * @return array
174
+	 * @throws ObjectDetectedException if a default value has a PHP object, which should never do (and if we
175
+	 * did, let's know about it ASAP, so let the exception bubble up)
176
+	 */
177
+	protected function translateDefaultsForRestResponse($field_name, EE_Model_Field_Base $field, array $schema)
178
+	{
179
+		if (isset($schema['properties'][ $field_name ]['default'])) {
180
+			if (is_array($schema['properties'][ $field_name ]['default'])) {
181
+				foreach ($schema['properties'][ $field_name ]['default'] as $default_key => $default_value) {
182
+					if ($default_key === 'raw') {
183
+						$schema['properties'][ $field_name ]['default'][ $default_key ] =
184
+							ModelDataTranslator::prepareFieldValueForJson(
185
+								$field,
186
+								$default_value,
187
+								$this->getModelVersionInfo()->requestedVersion()
188
+							);
189
+					}
190
+				}
191
+			} else {
192
+				$schema['properties'][ $field_name ]['default'] = ModelDataTranslator::prepareFieldValueForJson(
193
+					$field,
194
+					$schema['properties'][ $field_name ]['default'],
195
+					$this->getModelVersionInfo()->requestedVersion()
196
+				);
197
+			}
198
+		}
199
+		return $schema;
200
+	}
201
+
202
+
203
+	/**
204
+	 * Adds additional fields to the schema
205
+	 * The REST API returns a GMT value field for each datetime field in the resource.  Thus the description about this
206
+	 * needs to be added to the schema.
207
+	 *
208
+	 * @param                      $field_name
209
+	 * @param EE_Model_Field_Base  $field
210
+	 * @param array                $schema
211
+	 * @return array
212
+	 */
213
+	protected function maybeAddExtraFieldsToSchema($field_name, EE_Model_Field_Base $field, array $schema)
214
+	{
215
+		if ($field instanceof EE_Datetime_Field) {
216
+			$schema['properties'][ $field_name . '_gmt' ] = $field->getSchema();
217
+			// modify the description
218
+			$schema['properties'][ $field_name . '_gmt' ]['description'] = sprintf(
219
+				esc_html__('%s - the value for this field is in GMT.', 'event_espresso'),
220
+				wp_specialchars_decode($field->get_nicename(), ENT_QUOTES)
221
+			);
222
+		}
223
+		return $schema;
224
+	}
225
+
226
+
227
+	/**
228
+	 * Used to figure out the route from the request when a `WP_REST_Request` object is not available
229
+	 *
230
+	 * @return string
231
+	 */
232
+	protected function getRouteFromRequest()
233
+	{
234
+		if (isset($GLOBALS['wp'])
235
+			&& $GLOBALS['wp'] instanceof \WP
236
+			&& isset($GLOBALS['wp']->query_vars['rest_route'])
237
+		) {
238
+			return $GLOBALS['wp']->query_vars['rest_route'];
239
+		} else {
240
+			return isset($_SERVER['PATH_INFO']) ? $_SERVER['PATH_INFO'] : '/';
241
+		}
242
+	}
243
+
244
+
245
+	/**
246
+	 * Gets a single entity related to the model indicated in the path and its id
247
+	 *
248
+	 * @param WP_REST_Request $request
249
+	 * @param string $version
250
+	 * @param string $model_name
251
+	 * @return WP_REST_Response|WP_Error
252
+	 * @throws InvalidDataTypeException
253
+	 * @throws InvalidInterfaceException
254
+	 * @throws InvalidArgumentException
255
+	 */
256
+	public static function handleRequestGetOne(WP_REST_Request $request, $version, $model_name)
257
+	{
258
+		$controller = LoaderFactory::getLoader()->getNew('EventEspresso\core\libraries\rest_api\controllers\model\Read');
259
+		try {
260
+			$controller->setRequestedVersion($version);
261
+			if (! $controller->getModelVersionInfo()->isModelNameInThisVersion($model_name)) {
262
+				return $controller->sendResponse(
263
+					new WP_Error(
264
+						'endpoint_parsing_error',
265
+						sprintf(
266
+							__(
267
+								'There is no model for endpoint %s. Please contact event espresso support',
268
+								'event_espresso'
269
+							),
270
+							$model_name
271
+						)
272
+					)
273
+				);
274
+			}
275
+			return $controller->sendResponse(
276
+				$controller->getEntityFromModel(
277
+					$controller->getModelVersionInfo()->loadModel($model_name),
278
+					$request
279
+				)
280
+			);
281
+		} catch (Exception $e) {
282
+			return $controller->sendResponse($e);
283
+		}
284
+	}
285
+
286
+
287
+	/**
288
+	 * Gets all the related entities (or if its a belongs-to relation just the one)
289
+	 * to the item with the given id
290
+	 *
291
+	 * @param WP_REST_Request $request
292
+	 * @param string $version
293
+	 * @param string $model_name
294
+	 * @param string $related_model_name
295
+	 * @return WP_REST_Response|WP_Error
296
+	 * @throws InvalidDataTypeException
297
+	 * @throws InvalidInterfaceException
298
+	 * @throws InvalidArgumentException
299
+	 */
300
+	public static function handleRequestGetRelated(
301
+		WP_REST_Request $request,
302
+		$version,
303
+		$model_name,
304
+		$related_model_name
305
+	) {
306
+		$controller = LoaderFactory::getLoader()->getNew('EventEspresso\core\libraries\rest_api\controllers\model\Read');
307
+		try {
308
+			$controller->setRequestedVersion($version);
309
+			if (! $controller->getModelVersionInfo()->isModelNameInThisVersion($model_name)) {
310
+				return $controller->sendResponse(
311
+					new WP_Error(
312
+						'endpoint_parsing_error',
313
+						sprintf(
314
+							__(
315
+								'There is no model for endpoint %s. Please contact event espresso support',
316
+								'event_espresso'
317
+							),
318
+							$model_name
319
+						)
320
+					)
321
+				);
322
+			}
323
+			$main_model = $controller->getModelVersionInfo()->loadModel($model_name);
324
+			if (! $controller->getModelVersionInfo()->isModelNameInThisVersion($related_model_name)) {
325
+				return $controller->sendResponse(
326
+					new WP_Error(
327
+						'endpoint_parsing_error',
328
+						sprintf(
329
+							__(
330
+								'There is no model for endpoint %s. Please contact event espresso support',
331
+								'event_espresso'
332
+							),
333
+							$related_model_name
334
+						)
335
+					)
336
+				);
337
+			}
338
+			return $controller->sendResponse(
339
+				$controller->getEntitiesFromRelation(
340
+					$request->get_param('id'),
341
+					$main_model->related_settings_for($related_model_name),
342
+					$request
343
+				)
344
+			);
345
+		} catch (Exception $e) {
346
+			return $controller->sendResponse($e);
347
+		}
348
+	}
349
+
350
+
351
+	/**
352
+	 * Gets a collection for the given model and filters
353
+	 *
354
+	 * @param EEM_Base $model
355
+	 * @param WP_REST_Request $request
356
+	 * @return array
357
+	 * @throws EE_Error
358
+	 * @throws InvalidArgumentException
359
+	 * @throws InvalidDataTypeException
360
+	 * @throws InvalidInterfaceException
361
+	 * @throws ReflectionException
362
+	 * @throws RestException
363
+	 */
364
+	public function getEntitiesFromModel($model, $request)
365
+	{
366
+		$query_params = $this->createModelQueryParams($model, $request->get_params());
367
+		if (! Capabilities::currentUserHasPartialAccessTo($model, $query_params['caps'])) {
368
+			$model_name_plural = EEH_Inflector::pluralize_and_lower($model->get_this_model_name());
369
+			throw new RestException(
370
+				sprintf('rest_%s_cannot_list', $model_name_plural),
371
+				sprintf(
372
+					__('Sorry, you are not allowed to list %1$s. Missing permissions: %2$s', 'event_espresso'),
373
+					$model_name_plural,
374
+					Capabilities::getMissingPermissionsString($model, $query_params['caps'])
375
+				),
376
+				array('status' => 403)
377
+			);
378
+		}
379
+		if (! $request->get_header('no_rest_headers')) {
380
+			$this->setHeadersFromQueryParams($model, $query_params);
381
+		}
382
+		/** @type array $results */
383
+		$results = $model->get_all_wpdb_results($query_params);
384
+		$nice_results = array();
385
+		foreach ($results as $result) {
386
+			$nice_results[] =  $this->createEntityFromWpdbResult(
387
+				$model,
388
+				$result,
389
+				$request
390
+			);
391
+		}
392
+		return $nice_results;
393
+	}
394
+
395
+
396
+	/**
397
+	 * Gets the collection for given relation object
398
+	 * The same as Read::get_entities_from_model(), except if the relation
399
+	 * is a HABTM relation, in which case it merges any non-foreign-key fields from
400
+	 * the join-model-object into the results
401
+	 *
402
+	 * @param array $primary_model_query_params query params for finding the item from which
403
+	 *                                                            relations will be based
404
+	 * @param \EE_Model_Relation_Base $relation
405
+	 * @param WP_REST_Request $request
406
+	 * @return array
407
+	 * @throws EE_Error
408
+	 * @throws InvalidArgumentException
409
+	 * @throws InvalidDataTypeException
410
+	 * @throws InvalidInterfaceException
411
+	 * @throws ReflectionException
412
+	 * @throws RestException
413
+	 * @throws \EventEspresso\core\exceptions\ModelConfigurationException
414
+	 */
415
+	protected function getEntitiesFromRelationUsingModelQueryParams($primary_model_query_params, $relation, $request)
416
+	{
417
+		$context = $this->validateContext($request->get_param('caps'));
418
+		$model = $relation->get_this_model();
419
+		$related_model = $relation->get_other_model();
420
+		if (! isset($primary_model_query_params[0])) {
421
+			$primary_model_query_params[0] = array();
422
+		}
423
+		// check if they can access the 1st model object
424
+		$primary_model_query_params = array(
425
+			0       => $primary_model_query_params[0],
426
+			'limit' => 1,
427
+		);
428
+		if ($model instanceof EEM_Soft_Delete_Base) {
429
+			$primary_model_query_params = $model->alter_query_params_so_deleted_and_undeleted_items_included(
430
+				$primary_model_query_params
431
+			);
432
+		}
433
+		$restricted_query_params = $primary_model_query_params;
434
+		$restricted_query_params['caps'] = $context;
435
+		$restricted_query_params['limit'] = 1;
436
+		$this->setDebugInfo('main model query params', $restricted_query_params);
437
+		$this->setDebugInfo('missing caps', Capabilities::getMissingPermissionsString($related_model, $context));
438
+		$primary_model_rows = $model->get_all_wpdb_results($restricted_query_params);
439
+		$primary_model_row = null;
440
+		if (is_array($primary_model_rows)) {
441
+			$primary_model_row = reset($primary_model_rows);
442
+		}
443
+		if (! (
444
+			Capabilities::currentUserHasPartialAccessTo($related_model, $context)
445
+			&& $primary_model_row
446
+		)
447
+		) {
448
+			if ($relation instanceof EE_Belongs_To_Relation) {
449
+				$related_model_name_maybe_plural = strtolower($related_model->get_this_model_name());
450
+			} else {
451
+				$related_model_name_maybe_plural = EEH_Inflector::pluralize_and_lower(
452
+					$related_model->get_this_model_name()
453
+				);
454
+			}
455
+			throw new RestException(
456
+				sprintf('rest_%s_cannot_list', $related_model_name_maybe_plural),
457
+				sprintf(
458
+					__(
459
+						'Sorry, you are not allowed to list %1$s related to %2$s. Missing permissions: %3$s',
460
+						'event_espresso'
461
+					),
462
+					$related_model_name_maybe_plural,
463
+					$relation->get_this_model()->get_this_model_name(),
464
+					implode(
465
+						',',
466
+						array_keys(
467
+							Capabilities::getMissingPermissions($related_model, $context)
468
+						)
469
+					)
470
+				),
471
+				array('status' => 403)
472
+			);
473
+		}
474
+
475
+		$this->checkPassword(
476
+			$model,
477
+			$primary_model_row,
478
+			$restricted_query_params,
479
+			$request
480
+		);
481
+		$query_params = $this->createModelQueryParams($relation->get_other_model(), $request->get_params());
482
+		foreach ($primary_model_query_params[0] as $where_condition_key => $where_condition_value) {
483
+			$query_params[0][ $relation->get_this_model()->get_this_model_name()
484
+							  . '.'
485
+							  . $where_condition_key ] = $where_condition_value;
486
+		}
487
+		$query_params['default_where_conditions'] = 'none';
488
+		$query_params['caps'] = $context;
489
+		if (! $request->get_header('no_rest_headers')) {
490
+			$this->setHeadersFromQueryParams($relation->get_other_model(), $query_params);
491
+		}
492
+		/** @type array $results */
493
+		$results = $relation->get_other_model()->get_all_wpdb_results($query_params);
494
+		$nice_results = array();
495
+		foreach ($results as $result) {
496
+			$nice_result = $this->createEntityFromWpdbResult(
497
+				$relation->get_other_model(),
498
+				$result,
499
+				$request
500
+			);
501
+			if ($relation instanceof \EE_HABTM_Relation) {
502
+				// put the unusual stuff (properties from the HABTM relation) first, and make sure
503
+				// if there are conflicts we prefer the properties from the main model
504
+				$join_model_result = $this->createEntityFromWpdbResult(
505
+					$relation->get_join_model(),
506
+					$result,
507
+					$request
508
+				);
509
+				$joined_result = array_merge($nice_result, $join_model_result);
510
+				// but keep the meta stuff from the main model
511
+				if (isset($nice_result['meta'])) {
512
+					$joined_result['meta'] = $nice_result['meta'];
513
+				}
514
+				$nice_result = $joined_result;
515
+			}
516
+			$nice_results[] = $nice_result;
517
+		}
518
+		if ($relation instanceof EE_Belongs_To_Relation) {
519
+			return array_shift($nice_results);
520
+		} else {
521
+			return $nice_results;
522
+		}
523
+	}
524
+
525
+
526
+	/**
527
+	 * Gets the collection for given relation object
528
+	 * The same as Read::get_entities_from_model(), except if the relation
529
+	 * is a HABTM relation, in which case it merges any non-foreign-key fields from
530
+	 * the join-model-object into the results
531
+	 *
532
+	 * @param string                  $id the ID of the thing we are fetching related stuff from
533
+	 * @param \EE_Model_Relation_Base $relation
534
+	 * @param WP_REST_Request         $request
535
+	 * @return array
536
+	 * @throws EE_Error
537
+	 */
538
+	public function getEntitiesFromRelation($id, $relation, $request)
539
+	{
540
+		if (! $relation->get_this_model()->has_primary_key_field()) {
541
+			throw new EE_Error(
542
+				sprintf(
543
+					__(
544
+					// @codingStandardsIgnoreStart
545
+						'Read::get_entities_from_relation should only be called from a model with a primary key, it was called from %1$s',
546
+						// @codingStandardsIgnoreEnd
547
+						'event_espresso'
548
+					),
549
+					$relation->get_this_model()->get_this_model_name()
550
+				)
551
+			);
552
+		}
553
+		// can we edit that main item?
554
+		// if not, show nothing but an error
555
+		// otherwise, please proceed
556
+		return $this->getEntitiesFromRelationUsingModelQueryParams(
557
+			array(
558
+				array(
559
+					$relation->get_this_model()->primary_key_name() => $id,
560
+				),
561
+			),
562
+			$relation,
563
+			$request
564
+		);
565
+	}
566
+
567
+
568
+	/**
569
+	 * Sets the headers that are based on the model and query params,
570
+	 * like the total records. This should only be called on the original request
571
+	 * from the client, not on subsequent internal
572
+	 *
573
+	 * @param EEM_Base $model
574
+	 * @param array    $query_params
575
+	 * @return void
576
+	 */
577
+	protected function setHeadersFromQueryParams($model, $query_params)
578
+	{
579
+		$this->setDebugInfo('model query params', $query_params);
580
+		$this->setDebugInfo(
581
+			'missing caps',
582
+			Capabilities::getMissingPermissionsString($model, $query_params['caps'])
583
+		);
584
+		// normally the limit to a 2-part array, where the 2nd item is the limit
585
+		if (! isset($query_params['limit'])) {
586
+			$query_params['limit'] = EED_Core_Rest_Api::get_default_query_limit();
587
+		}
588
+		if (is_array($query_params['limit'])) {
589
+			$limit_parts = $query_params['limit'];
590
+		} else {
591
+			$limit_parts = explode(',', $query_params['limit']);
592
+			if (count($limit_parts) == 1) {
593
+				$limit_parts = array(0, $limit_parts[0]);
594
+			}
595
+		}
596
+		// remove the group by and having parts of the query, as those will
597
+		// make the sql query return an array of values, instead of just a single value
598
+		unset($query_params['group_by'], $query_params['having'], $query_params['limit']);
599
+		$count = $model->count($query_params, null, true);
600
+		$pages = $count / $limit_parts[1];
601
+		$this->setResponseHeader('Total', $count, false);
602
+		$this->setResponseHeader('PageSize', $limit_parts[1], false);
603
+		$this->setResponseHeader('TotalPages', ceil($pages), false);
604
+	}
605
+
606
+
607
+	/**
608
+	 * Changes database results into REST API entities
609
+	 *
610
+	 * @param EEM_Base $model
611
+	 * @param array $db_row like results from $wpdb->get_results()
612
+	 * @param WP_REST_Request $rest_request
613
+	 * @param string $deprecated no longer used
614
+	 * @return array ready for being converted into json for sending to client
615
+	 * @throws EE_Error
616
+	 * @throws RestException
617
+	 * @throws InvalidDataTypeException
618
+	 * @throws InvalidInterfaceException
619
+	 * @throws InvalidArgumentException
620
+	 * @throws ReflectionException
621
+	 */
622
+	public function createEntityFromWpdbResult($model, $db_row, $rest_request, $deprecated = null)
623
+	{
624
+		if (! $rest_request instanceof WP_REST_Request) {
625
+			// ok so this was called in the old style, where the 3rd arg was
626
+			// $include, and the 4th arg was $context
627
+			// now setup the request just to avoid fatal errors, although we won't be able
628
+			// to truly make use of it because it's kinda devoid of info
629
+			$rest_request = new WP_REST_Request();
630
+			$rest_request->set_param('include', $rest_request);
631
+			$rest_request->set_param('caps', $deprecated);
632
+		}
633
+		if ($rest_request->get_param('caps') == null) {
634
+			$rest_request->set_param('caps', EEM_Base::caps_read);
635
+		}
636
+		$current_user_full_access_to_entity = $model->currentUserCan(
637
+			EEM_Base::caps_read_admin,
638
+			$model->deduce_fields_n_values_from_cols_n_values($db_row)
639
+		);
640
+		$entity_array = $this->createBareEntityFromWpdbResults($model, $db_row);
641
+		$entity_array = $this->addExtraFields($model, $db_row, $entity_array);
642
+		$entity_array['_links'] = $this->getEntityLinks($model, $db_row, $entity_array);
643
+		// when it's a regular read request for a model with a password and the password wasn't provided
644
+		// remove the password protected fields
645
+		$has_protected_fields = false;
646
+		try {
647
+			$this->checkPassword(
648
+				$model,
649
+				$db_row,
650
+				array(
651
+					0 => array(
652
+						$model->primary_key_name() => $db_row[ $model->get_primary_key_field()->get_qualified_column() ]
653
+					)
654
+				),
655
+				$rest_request
656
+			);
657
+		} catch (RestPasswordRequiredException $e) {
658
+			if ($model->hasPassword()) {
659
+				// just remove protected fields
660
+				$has_protected_fields = true;
661
+				$entity_array = Capabilities::filterOutPasswordProtectedFields(
662
+					$entity_array,
663
+					$model,
664
+					$this->getModelVersionInfo()
665
+				);
666
+			} else {
667
+				// that's a problem. None of this should be accessible if no password was provided
668
+				throw $e;
669
+			}
670
+		}
671
+
672
+		$entity_array['_calculated_fields'] = $this->getEntityCalculations($model, $db_row, $rest_request, $has_protected_fields);
673
+		$entity_array = apply_filters(
674
+			'FHEE__Read__create_entity_from_wpdb_results__entity_before_including_requested_models',
675
+			$entity_array,
676
+			$model,
677
+			$rest_request->get_param('caps'),
678
+			$rest_request,
679
+			$this
680
+		);
681
+		// add an empty protected property for now. If it's still around after we remove everything the request didn't
682
+		// want, we'll populate it then. k?
683
+		$entity_array['_protected'] = array();
684
+		// remove any properties the request didn't want. This way _protected won't bother mentioning them
685
+		$entity_array = $this->includeOnlyRequestedProperties($model, $rest_request, $entity_array);
686
+		$entity_array = $this->includeRequestedModels($model, $rest_request, $entity_array, $db_row, $has_protected_fields);
687
+		// if they still wanted the _protected property, add it.
688
+		if (isset($entity_array['_protected'])) {
689
+			$entity_array = $this->addProtectedProperty($model, $entity_array, $has_protected_fields);
690
+		}
691
+		$entity_array = apply_filters(
692
+			'FHEE__Read__create_entity_from_wpdb_results__entity_before_inaccessible_field_removal',
693
+			$entity_array,
694
+			$model,
695
+			$rest_request->get_param('caps'),
696
+			$rest_request,
697
+			$this
698
+		);
699
+		if (! $current_user_full_access_to_entity) {
700
+			$result_without_inaccessible_fields = Capabilities::filterOutInaccessibleEntityFields(
701
+				$entity_array,
702
+				$model,
703
+				$rest_request->get_param('caps'),
704
+				$this->getModelVersionInfo()
705
+			);
706
+		} else {
707
+			$result_without_inaccessible_fields = $entity_array;
708
+		}
709
+		$this->setDebugInfo(
710
+			'inaccessible fields',
711
+			array_keys(array_diff_key((array) $entity_array, (array) $result_without_inaccessible_fields))
712
+		);
713
+		return apply_filters(
714
+			'FHEE__Read__create_entity_from_wpdb_results__entity_return',
715
+			$result_without_inaccessible_fields,
716
+			$model,
717
+			$rest_request->get_param('caps')
718
+		);
719
+	}
720
+
721
+	/**
722
+	 * Returns an array describing which fields can be protected, and which actually were removed this request
723
+	 * @since $VID:$
724
+	 * @param $model
725
+	 * @param $results_so_far
726
+	 * @param $protected
727
+	 * @return array results
728
+	 */
729
+	protected function addProtectedProperty(EEM_Base $model, $results_so_far, $protected)
730
+	{
731
+		if (! $model->hasPassword() || ! $protected) {
732
+			return $results_so_far;
733
+		}
734
+		$password_field = $model->getPasswordField();
735
+		$all_protected = array_merge(
736
+			array($password_field->get_name()),
737
+			$password_field->protectedFields()
738
+		);
739
+		$fields_included = array_keys($results_so_far);
740
+		$fields_included = array_intersect(
741
+			$all_protected,
742
+			$fields_included
743
+		);
744
+		foreach ($fields_included as $field_name) {
745
+			$results_so_far['_protected'][] = $field_name ;
746
+		}
747
+		return $results_so_far;
748
+	}
749
+
750
+	/**
751
+	 * Creates a REST entity array (JSON object we're going to return in the response, but
752
+	 * for now still a PHP array, but soon enough we'll call json_encode on it, don't worry),
753
+	 * from $wpdb->get_row( $sql, ARRAY_A)
754
+	 *
755
+	 * @param EEM_Base $model
756
+	 * @param array    $db_row
757
+	 * @return array entity mostly ready for converting to JSON and sending in the response
758
+	 */
759
+	protected function createBareEntityFromWpdbResults(EEM_Base $model, $db_row)
760
+	{
761
+		$result = $model->deduce_fields_n_values_from_cols_n_values($db_row);
762
+		$result = array_intersect_key(
763
+			$result,
764
+			$this->getModelVersionInfo()->fieldsOnModelInThisVersion($model)
765
+		);
766
+		// if this is a CPT, we need to set the global $post to it,
767
+		// otherwise shortcodes etc won't work properly while rendering it
768
+		if ($model instanceof \EEM_CPT_Base) {
769
+			$do_chevy_shuffle = true;
770
+		} else {
771
+			$do_chevy_shuffle = false;
772
+		}
773
+		if ($do_chevy_shuffle) {
774
+			global $post;
775
+			$old_post = $post;
776
+			$post = get_post($result[ $model->primary_key_name() ]);
777
+			if (! $post instanceof \WP_Post) {
778
+				// well that's weird, because $result is what we JUST fetched from the database
779
+				throw new RestException(
780
+					'error_fetching_post_from_database_results',
781
+					esc_html__(
782
+						'An item was retrieved from the database but it\'s not a WP_Post like it should be.',
783
+						'event_espresso'
784
+					)
785
+				);
786
+			}
787
+			$model_object_classname = 'EE_' . $model->get_this_model_name();
788
+			$post->{$model_object_classname} = \EE_Registry::instance()->load_class(
789
+				$model_object_classname,
790
+				$result,
791
+				false,
792
+				false
793
+			);
794
+		}
795
+		foreach ($result as $field_name => $field_value) {
796
+			$field_obj = $model->field_settings_for($field_name);
797
+			if ($this->isSubclassOfOne($field_obj, $this->getModelVersionInfo()->fieldsIgnored())) {
798
+				unset($result[ $field_name ]);
799
+			} elseif ($this->isSubclassOfOne(
800
+				$field_obj,
801
+				$this->getModelVersionInfo()->fieldsThatHaveRenderedFormat()
802
+			)
803
+			) {
804
+				$result[ $field_name ] = array(
805
+					'raw'      => $this->prepareFieldObjValueForJson($field_obj, $field_value),
806
+					'rendered' => $this->prepareFieldObjValueForJson($field_obj, $field_value, 'pretty'),
807
+				);
808
+			} elseif ($this->isSubclassOfOne(
809
+				$field_obj,
810
+				$this->getModelVersionInfo()->fieldsThatHavePrettyFormat()
811
+			)
812
+			) {
813
+				$result[ $field_name ] = array(
814
+					'raw'    => $this->prepareFieldObjValueForJson($field_obj, $field_value),
815
+					'pretty' => $this->prepareFieldObjValueForJson($field_obj, $field_value, 'pretty'),
816
+				);
817
+			} elseif ($field_obj instanceof \EE_Datetime_Field) {
818
+				$field_value = $field_obj->prepare_for_set_from_db($field_value);
819
+				// if the value is null, but we're not supposed to permit null, then set to the field's default
820
+				if (is_null($field_value)) {
821
+					$field_value = $field_obj->getDefaultDateTimeObj();
822
+				}
823
+				if (is_null($field_value)) {
824
+					$gmt_date = $local_date = ModelDataTranslator::prepareFieldValuesForJson(
825
+						$field_obj,
826
+						$field_value,
827
+						$this->getModelVersionInfo()->requestedVersion()
828
+					);
829
+				} else {
830
+					$timezone = $field_value->getTimezone();
831
+					EEH_DTT_Helper::setTimezone($field_value, new DateTimeZone('UTC'));
832
+					$gmt_date = ModelDataTranslator::prepareFieldValuesForJson(
833
+						$field_obj,
834
+						$field_value,
835
+						$this->getModelVersionInfo()->requestedVersion()
836
+					);
837
+					EEH_DTT_Helper::setTimezone($field_value, $timezone);
838
+					$local_date = ModelDataTranslator::prepareFieldValuesForJson(
839
+						$field_obj,
840
+						$field_value,
841
+						$this->getModelVersionInfo()->requestedVersion()
842
+					);
843
+				}
844
+				$result[ $field_name . '_gmt' ] = $gmt_date;
845
+				$result[ $field_name ] = $local_date;
846
+			} else {
847
+				$result[ $field_name ] = $this->prepareFieldObjValueForJson($field_obj, $field_value);
848
+			}
849
+		}
850
+		if ($do_chevy_shuffle) {
851
+			$post = $old_post;
852
+		}
853
+		return $result;
854
+	}
855
+
856
+
857
+	/**
858
+	 * Takes a value all the way from the DB representation, to the model object's representation, to the
859
+	 * user-facing PHP representation, to the REST API representation. (Assumes you've already taken from the DB
860
+	 * representation using $field_obj->prepare_for_set_from_db())
861
+	 *
862
+	 * @param EE_Model_Field_Base $field_obj
863
+	 * @param mixed               $value  as it's stored on a model object
864
+	 * @param string              $format valid values are 'normal' (default), 'pretty', 'datetime_obj'
865
+	 * @return mixed
866
+	 * @throws ObjectDetectedException if $value contains a PHP object
867
+	 */
868
+	protected function prepareFieldObjValueForJson(EE_Model_Field_Base $field_obj, $value, $format = 'normal')
869
+	{
870
+		$value = $field_obj->prepare_for_set_from_db($value);
871
+		switch ($format) {
872
+			case 'pretty':
873
+				$value = $field_obj->prepare_for_pretty_echoing($value);
874
+				break;
875
+			case 'normal':
876
+			default:
877
+				$value = $field_obj->prepare_for_get($value);
878
+				break;
879
+		}
880
+		return ModelDataTranslator::prepareFieldValuesForJson(
881
+			$field_obj,
882
+			$value,
883
+			$this->getModelVersionInfo()->requestedVersion()
884
+		);
885
+	}
886
+
887
+
888
+	/**
889
+	 * Adds a few extra fields to the entity response
890
+	 *
891
+	 * @param EEM_Base $model
892
+	 * @param array    $db_row
893
+	 * @param array    $entity_array
894
+	 * @return array modified entity
895
+	 */
896
+	protected function addExtraFields(EEM_Base $model, $db_row, $entity_array)
897
+	{
898
+		if ($model instanceof EEM_CPT_Base) {
899
+			$entity_array['link'] = get_permalink($db_row[ $model->get_primary_key_field()->get_qualified_column() ]);
900
+		}
901
+		return $entity_array;
902
+	}
903
+
904
+
905
+	/**
906
+	 * Gets links we want to add to the response
907
+	 *
908
+	 * @global \WP_REST_Server $wp_rest_server
909
+	 * @param EEM_Base         $model
910
+	 * @param array            $db_row
911
+	 * @param array            $entity_array
912
+	 * @return array the _links item in the entity
913
+	 */
914
+	protected function getEntityLinks($model, $db_row, $entity_array)
915
+	{
916
+		// add basic links
917
+		$links = array();
918
+		if ($model->has_primary_key_field()) {
919
+			$links['self'] = array(
920
+				array(
921
+					'href' => $this->getVersionedLinkTo(
922
+						EEH_Inflector::pluralize_and_lower($model->get_this_model_name())
923
+						. '/'
924
+						. $entity_array[ $model->primary_key_name() ]
925
+					),
926
+				),
927
+			);
928
+		}
929
+		$links['collection'] = array(
930
+			array(
931
+				'href' => $this->getVersionedLinkTo(
932
+					EEH_Inflector::pluralize_and_lower($model->get_this_model_name())
933
+				),
934
+			),
935
+		);
936
+		// add links to related models
937
+		if ($model->has_primary_key_field()) {
938
+			foreach ($this->getModelVersionInfo()->relationSettings($model) as $relation_name => $relation_obj) {
939
+				$related_model_part = Read::getRelatedEntityName($relation_name, $relation_obj);
940
+				$links[ EED_Core_Rest_Api::ee_api_link_namespace . $related_model_part ] = array(
941
+					array(
942
+						'href'   => $this->getVersionedLinkTo(
943
+							EEH_Inflector::pluralize_and_lower($model->get_this_model_name())
944
+							. '/'
945
+							. $entity_array[ $model->primary_key_name() ]
946
+							. '/'
947
+							. $related_model_part
948
+						),
949
+						'single' => $relation_obj instanceof EE_Belongs_To_Relation ? true : false,
950
+					),
951
+				);
952
+			}
953
+		}
954
+		return $links;
955
+	}
956
+
957
+
958
+	/**
959
+	 * Adds the included models indicated in the request to the entity provided
960
+	 *
961
+	 * @param EEM_Base $model
962
+	 * @param WP_REST_Request $rest_request
963
+	 * @param array $entity_array
964
+	 * @param array $db_row
965
+	 * @param boolean $included_items_protected if the original item is password protected, don't include any related models.
966
+	 * @return array the modified entity
967
+	 * @throws RestException
968
+	 */
969
+	protected function includeRequestedModels(
970
+		EEM_Base $model,
971
+		WP_REST_Request $rest_request,
972
+		$entity_array,
973
+		$db_row = array(),
974
+		$included_items_protected = false
975
+	) {
976
+		// if $db_row not included, hope the entity array has what we need
977
+		if (! $db_row) {
978
+			$db_row = $entity_array;
979
+		}
980
+		$relation_settings = $this->getModelVersionInfo()->relationSettings($model);
981
+		foreach ($relation_settings as $relation_name => $relation_obj) {
982
+			$related_fields_to_include = $this->explodeAndGetItemsPrefixedWith(
983
+				$rest_request->get_param('include'),
984
+				$relation_name
985
+			);
986
+			$related_fields_to_calculate = $this->explodeAndGetItemsPrefixedWith(
987
+				$rest_request->get_param('calculate'),
988
+				$relation_name
989
+			);
990
+			// did they specify they wanted to include a related model, or
991
+			// specific fields from a related model?
992
+			// or did they specify to calculate a field from a related model?
993
+			if ($related_fields_to_include || $related_fields_to_calculate) {
994
+				// if so, we should include at least some part of the related model
995
+				$pretend_related_request = new WP_REST_Request();
996
+				$pretend_related_request->set_query_params(
997
+					array(
998
+						'caps'      => $rest_request->get_param('caps'),
999
+						'include'   => $related_fields_to_include,
1000
+						'calculate' => $related_fields_to_calculate,
1001
+						'password' => $rest_request->get_param('password')
1002
+					)
1003
+				);
1004
+				$pretend_related_request->add_header('no_rest_headers', true);
1005
+				$primary_model_query_params = $model->alter_query_params_to_restrict_by_ID(
1006
+					$model->get_index_primary_key_string(
1007
+						$model->deduce_fields_n_values_from_cols_n_values($db_row)
1008
+					)
1009
+				);
1010
+				if (! $included_items_protected) {
1011
+					$related_results = $this->getEntitiesFromRelationUsingModelQueryParams(
1012
+						$primary_model_query_params,
1013
+						$relation_obj,
1014
+						$pretend_related_request
1015
+					);
1016
+				} else {
1017
+					// they're protected, hide them.
1018
+					$related_results = $relation_obj instanceof EE_Belongs_To_Relation ? null : array();
1019
+					$entity_array['_protected'][] = Read::getRelatedEntityName($relation_name, $relation_obj);
1020
+				}
1021
+				if ($related_results instanceof WP_Error) {
1022
+					$related_results = null;
1023
+				}
1024
+				$entity_array[ Read::getRelatedEntityName($relation_name, $relation_obj) ] = $related_results;
1025
+			}
1026
+		}
1027
+		return $entity_array;
1028
+	}
1029
+
1030
+	/**
1031
+	 * If the user has requested only specific properties (including meta properties like _links or _protected)
1032
+	 * remove everything else.
1033
+	 * @since $VID:$
1034
+	 * @param EEM_Base $model
1035
+	 * @param WP_REST_Request $rest_request
1036
+	 * @param $entity_array
1037
+	 * @return array
1038
+	 * @throws EE_Error
1039
+	 */
1040
+	protected function includeOnlyRequestedProperties(
1041
+		EEM_Base $model,
1042
+		WP_REST_Request $rest_request,
1043
+		$entity_array
1044
+	) {
1045
+
1046
+		$includes_for_this_model = $this->explodeAndGetItemsPrefixedWith($rest_request->get_param('include'), '');
1047
+		$includes_for_this_model = $this->removeModelNamesFromArray($includes_for_this_model);
1048
+		// if they passed in * or didn't specify any includes, return everything
1049
+		if (! in_array('*', $includes_for_this_model)
1050
+			&& ! empty($includes_for_this_model)
1051
+		) {
1052
+			if ($model->has_primary_key_field()) {
1053
+				// always include the primary key. ya just gotta know that at least
1054
+				$includes_for_this_model[] = $model->primary_key_name();
1055
+			}
1056
+			if ($this->explodeAndGetItemsPrefixedWith($rest_request->get_param('calculate'), '')) {
1057
+				$includes_for_this_model[] = '_calculated_fields';
1058
+			}
1059
+			$entity_array = array_intersect_key($entity_array, array_flip($includes_for_this_model));
1060
+		}
1061
+		return $entity_array;
1062
+	}
1063
+
1064
+
1065
+	/**
1066
+	 * Returns a new array with all the names of models removed. Eg
1067
+	 * array( 'Event', 'Datetime.*', 'foobar' ) would become array( 'Datetime.*', 'foobar' )
1068
+	 *
1069
+	 * @param array $arr
1070
+	 * @return array
1071
+	 */
1072
+	private function removeModelNamesFromArray($arr)
1073
+	{
1074
+		return array_diff($arr, array_keys(EE_Registry::instance()->non_abstract_db_models));
1075
+	}
1076
+
1077
+
1078
+	/**
1079
+	 * Gets the calculated fields for the response
1080
+	 *
1081
+	 * @param EEM_Base        $model
1082
+	 * @param array           $wpdb_row
1083
+	 * @param WP_REST_Request $rest_request
1084
+	 * @param boolean $row_is_protected whether this row is password protected or not
1085
+	 * @return \stdClass the _calculations item in the entity
1086
+	 * @throws ObjectDetectedException if a default value has a PHP object, which should never do (and if we
1087
+	 * did, let's know about it ASAP, so let the exception bubble up)
1088
+	 */
1089
+	protected function getEntityCalculations($model, $wpdb_row, $rest_request, $row_is_protected = false)
1090
+	{
1091
+		$calculated_fields = $this->explodeAndGetItemsPrefixedWith(
1092
+			$rest_request->get_param('calculate'),
1093
+			''
1094
+		);
1095
+		// note: setting calculate=* doesn't do anything
1096
+		$calculated_fields_to_return = new \stdClass();
1097
+		$protected_fields = array();
1098
+		foreach ($calculated_fields as $field_to_calculate) {
1099
+			try {
1100
+				// it's password protected, so they shouldn't be able to read this. Remove the value
1101
+				$schema = $this->fields_calculator->getJsonSchemaForModel($model);
1102
+				if ($row_is_protected
1103
+					&& isset($schema['properties'][ $field_to_calculate ]['protected'])
1104
+					&& $schema['properties'][ $field_to_calculate ]['protected']) {
1105
+					$calculated_value = null;
1106
+					$protected_fields[] = $field_to_calculate;
1107
+					if ($schema['properties'][ $field_to_calculate ]['type']) {
1108
+						switch ($schema['properties'][ $field_to_calculate ]['type']) {
1109
+							case 'boolean':
1110
+								$calculated_value = false;
1111
+								break;
1112
+							case 'integer':
1113
+								$calculated_value = 0;
1114
+								break;
1115
+							case 'string':
1116
+								$calculated_value = '';
1117
+								break;
1118
+							case 'array':
1119
+								$calculated_value = array();
1120
+								break;
1121
+							case 'object':
1122
+								$calculated_value = new stdClass();
1123
+								break;
1124
+						}
1125
+					}
1126
+				} else {
1127
+					$calculated_value = ModelDataTranslator::prepareFieldValueForJson(
1128
+						null,
1129
+						$this->fields_calculator->retrieveCalculatedFieldValue(
1130
+							$model,
1131
+							$field_to_calculate,
1132
+							$wpdb_row,
1133
+							$rest_request,
1134
+							$this
1135
+						),
1136
+						$this->getModelVersionInfo()->requestedVersion()
1137
+					);
1138
+				}
1139
+				$calculated_fields_to_return->{$field_to_calculate} = $calculated_value;
1140
+			} catch (RestException $e) {
1141
+				// if we don't have permission to read it, just leave it out. but let devs know about the problem
1142
+				$this->setResponseHeader(
1143
+					'Notices-Field-Calculation-Errors['
1144
+					. $e->getStringCode()
1145
+					. ']['
1146
+					. $model->get_this_model_name()
1147
+					. ']['
1148
+					. $field_to_calculate
1149
+					. ']',
1150
+					$e->getMessage(),
1151
+					true
1152
+				);
1153
+			}
1154
+		}
1155
+		$calculated_fields_to_return->_protected = $protected_fields;
1156
+		return $calculated_fields_to_return;
1157
+	}
1158
+
1159
+
1160
+	/**
1161
+	 * Gets the full URL to the resource, taking the requested version into account
1162
+	 *
1163
+	 * @param string $link_part_after_version_and_slash eg "events/10/datetimes"
1164
+	 * @return string url eg "http://mysite.com/wp-json/ee/v4.6/events/10/datetimes"
1165
+	 */
1166
+	public function getVersionedLinkTo($link_part_after_version_and_slash)
1167
+	{
1168
+		return rest_url(
1169
+			EED_Core_Rest_Api::get_versioned_route_to(
1170
+				$link_part_after_version_and_slash,
1171
+				$this->getModelVersionInfo()->requestedVersion()
1172
+			)
1173
+		);
1174
+	}
1175
+
1176
+
1177
+	/**
1178
+	 * Gets the correct lowercase name for the relation in the API according
1179
+	 * to the relation's type
1180
+	 *
1181
+	 * @param string                  $relation_name
1182
+	 * @param \EE_Model_Relation_Base $relation_obj
1183
+	 * @return string
1184
+	 */
1185
+	public static function getRelatedEntityName($relation_name, $relation_obj)
1186
+	{
1187
+		if ($relation_obj instanceof EE_Belongs_To_Relation) {
1188
+			return strtolower($relation_name);
1189
+		} else {
1190
+			return EEH_Inflector::pluralize_and_lower($relation_name);
1191
+		}
1192
+	}
1193
+
1194
+
1195
+	/**
1196
+	 * Gets the one model object with the specified id for the specified model
1197
+	 *
1198
+	 * @param EEM_Base        $model
1199
+	 * @param WP_REST_Request $request
1200
+	 * @return array
1201
+	 */
1202
+	public function getEntityFromModel($model, $request)
1203
+	{
1204
+		$context = $this->validateContext($request->get_param('caps'));
1205
+		return $this->getOneOrReportPermissionError($model, $request, $context);
1206
+	}
1207
+
1208
+
1209
+	/**
1210
+	 * If a context is provided which isn't valid, maybe it was added in a future
1211
+	 * version so just treat it as a default read
1212
+	 *
1213
+	 * @param string $context
1214
+	 * @return string array key of EEM_Base::cap_contexts_to_cap_action_map()
1215
+	 */
1216
+	public function validateContext($context)
1217
+	{
1218
+		if (! $context) {
1219
+			$context = EEM_Base::caps_read;
1220
+		}
1221
+		$valid_contexts = EEM_Base::valid_cap_contexts();
1222
+		if (in_array($context, $valid_contexts)) {
1223
+			return $context;
1224
+		} else {
1225
+			return EEM_Base::caps_read;
1226
+		}
1227
+	}
1228
+
1229
+
1230
+	/**
1231
+	 * Verifies the passed in value is an allowable default where conditions value.
1232
+	 *
1233
+	 * @param $default_query_params
1234
+	 * @return string
1235
+	 */
1236
+	public function validateDefaultQueryParams($default_query_params)
1237
+	{
1238
+		$valid_default_where_conditions_for_api_calls = array(
1239
+			EEM_Base::default_where_conditions_all,
1240
+			EEM_Base::default_where_conditions_minimum_all,
1241
+			EEM_Base::default_where_conditions_minimum_others,
1242
+		);
1243
+		if (! $default_query_params) {
1244
+			$default_query_params = EEM_Base::default_where_conditions_all;
1245
+		}
1246
+		if (in_array(
1247
+			$default_query_params,
1248
+			$valid_default_where_conditions_for_api_calls,
1249
+			true
1250
+		)) {
1251
+			return $default_query_params;
1252
+		} else {
1253
+			return EEM_Base::default_where_conditions_all;
1254
+		}
1255
+	}
1256
+
1257
+
1258
+	/**
1259
+	 * 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.
1260
+	 * Note: right now the query parameter keys for fields (and related fields)
1261
+	 * can be left as-is, but it's quite possible this will change someday.
1262
+	 * Also, this method's contents might be candidate for moving to Model_Data_Translator
1263
+	 *
1264
+	 * @param EEM_Base $model
1265
+	 * @param array    $query_parameters  from $_GET parameter @see Read:handle_request_get_all
1266
+	 * @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)
1267
+	 *                                    or FALSE to indicate that absolutely no results should be returned
1268
+	 * @throws EE_Error
1269
+	 * @throws RestException
1270
+	 */
1271
+	public function createModelQueryParams($model, $query_params)
1272
+	{
1273
+		$model_query_params = array();
1274
+		if (isset($query_params['where'])) {
1275
+			$model_query_params[0] = ModelDataTranslator::prepareConditionsQueryParamsForModels(
1276
+				$query_params['where'],
1277
+				$model,
1278
+				$this->getModelVersionInfo()->requestedVersion()
1279
+			);
1280
+		}
1281
+		if (isset($query_params['order_by'])) {
1282
+			$order_by = $query_params['order_by'];
1283
+		} elseif (isset($query_params['orderby'])) {
1284
+			$order_by = $query_params['orderby'];
1285
+		} else {
1286
+			$order_by = null;
1287
+		}
1288
+		if ($order_by !== null) {
1289
+			if (is_array($order_by)) {
1290
+				$order_by = ModelDataTranslator::prepareFieldNamesInArrayKeysFromJson($order_by);
1291
+			} else {
1292
+				// it's a single item
1293
+				$order_by = ModelDataTranslator::prepareFieldNameFromJson($order_by);
1294
+			}
1295
+			$model_query_params['order_by'] = $order_by;
1296
+		}
1297
+		if (isset($query_params['group_by'])) {
1298
+			$group_by = $query_params['group_by'];
1299
+		} elseif (isset($query_params['groupby'])) {
1300
+			$group_by = $query_params['groupby'];
1301
+		} else {
1302
+			$group_by = array_keys($model->get_combined_primary_key_fields());
1303
+		}
1304
+		// make sure they're all real names
1305
+		if (is_array($group_by)) {
1306
+			$group_by = ModelDataTranslator::prepareFieldNamesFromJson($group_by);
1307
+		}
1308
+		if ($group_by !== null) {
1309
+			$model_query_params['group_by'] = $group_by;
1310
+		}
1311
+		if (isset($query_params['having'])) {
1312
+			$model_query_params['having'] = ModelDataTranslator::prepareConditionsQueryParamsForModels(
1313
+				$query_params['having'],
1314
+				$model,
1315
+				$this->getModelVersionInfo()->requestedVersion()
1316
+			);
1317
+		}
1318
+		if (isset($query_params['order'])) {
1319
+			$model_query_params['order'] = $query_params['order'];
1320
+		}
1321
+		if (isset($query_params['mine'])) {
1322
+			$model_query_params = $model->alter_query_params_to_only_include_mine($model_query_params);
1323
+		}
1324
+		if (isset($query_params['limit'])) {
1325
+			// limit should be either a string like '23' or '23,43', or an array with two items in it
1326
+			if (! is_array($query_params['limit'])) {
1327
+				$limit_array = explode(',', (string) $query_params['limit']);
1328
+			} else {
1329
+				$limit_array = $query_params['limit'];
1330
+			}
1331
+			$sanitized_limit = array();
1332
+			foreach ($limit_array as $key => $limit_part) {
1333
+				if ($this->debug_mode && (! is_numeric($limit_part) || count($sanitized_limit) > 2)) {
1334
+					throw new EE_Error(
1335
+						sprintf(
1336
+							__(
1337
+							// @codingStandardsIgnoreStart
1338
+								'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.',
1339
+								// @codingStandardsIgnoreEnd
1340
+								'event_espresso'
1341
+							),
1342
+							wp_json_encode($query_params['limit'])
1343
+						)
1344
+					);
1345
+				}
1346
+				$sanitized_limit[] = (int) $limit_part;
1347
+			}
1348
+			$model_query_params['limit'] = implode(',', $sanitized_limit);
1349
+		} else {
1350
+			$model_query_params['limit'] = EED_Core_Rest_Api::get_default_query_limit();
1351
+		}
1352
+		if (isset($query_params['caps'])) {
1353
+			$model_query_params['caps'] = $this->validateContext($query_params['caps']);
1354
+		} else {
1355
+			$model_query_params['caps'] = EEM_Base::caps_read;
1356
+		}
1357
+		if (isset($query_params['default_where_conditions'])) {
1358
+			$model_query_params['default_where_conditions'] = $this->validateDefaultQueryParams(
1359
+				$query_params['default_where_conditions']
1360
+			);
1361
+		}
1362
+		// if this is a model protected by a password on another model, exclude the password protected
1363
+		// entities by default. But if they passed in a password, try to show them all. If the password is wrong,
1364
+		// though, they'll get an error (see Read::createEntityFromWpdbResult() which calls Read::checkPassword)
1365
+		if (! $model->hasPassword()
1366
+			&& $model->restrictedByRelatedModelPassword()
1367
+			&& $model_query_params['caps'] === EEM_Base::caps_read) {
1368
+			if (empty($query_params['password'])) {
1369
+				$model_query_params['exclude_protected'] = true;
1370
+			}
1371
+		}
1372
+
1373
+		return apply_filters('FHEE__Read__create_model_query_params', $model_query_params, $query_params, $model);
1374
+	}
1375
+
1376
+
1377
+	/**
1378
+	 * Changes the REST-style query params for use in the models
1379
+	 *
1380
+	 * @deprecated
1381
+	 * @param EEM_Base $model
1382
+	 * @param array    $query_params sub-array from @see EEM_Base::get_all()
1383
+	 * @return array
1384
+	 */
1385
+	public function prepareRestQueryParamsKeyForModels($model, $query_params)
1386
+	{
1387
+		$model_ready_query_params = array();
1388
+		foreach ($query_params as $key => $value) {
1389
+			if (is_array($value)) {
1390
+				$model_ready_query_params[ $key ] = $this->prepareRestQueryParamsKeyForModels($model, $value);
1391
+			} else {
1392
+				$model_ready_query_params[ $key ] = $value;
1393
+			}
1394
+		}
1395
+		return $model_ready_query_params;
1396
+	}
1397
+
1398
+
1399
+	/**
1400
+	 * @deprecated instead use ModelDataTranslator::prepareFieldValuesFromJson()
1401
+	 * @param $model
1402
+	 * @param $query_params
1403
+	 * @return array
1404
+	 */
1405
+	public function prepareRestQueryParamsValuesForModels($model, $query_params)
1406
+	{
1407
+		$model_ready_query_params = array();
1408
+		foreach ($query_params as $key => $value) {
1409
+			if (is_array($value)) {
1410
+				$model_ready_query_params[ $key ] = $this->prepareRestQueryParamsValuesForModels($model, $value);
1411
+			} else {
1412
+				$model_ready_query_params[ $key ] = $value;
1413
+			}
1414
+		}
1415
+		return $model_ready_query_params;
1416
+	}
1417
+
1418
+
1419
+	/**
1420
+	 * Explodes the string on commas, and only returns items with $prefix followed by a period.
1421
+	 * If no prefix is specified, returns items with no period.
1422
+	 *
1423
+	 * @param string|array $string_to_explode eg "jibba,jabba, blah, blah, blah" or array('jibba', 'jabba' )
1424
+	 * @param string       $prefix            "Event" or "foobar"
1425
+	 * @return array $string_to_exploded exploded on COMMAS, and if a prefix was specified
1426
+	 *                                        we only return strings starting with that and a period; if no prefix was
1427
+	 *                                        specified we return all items containing NO periods
1428
+	 */
1429
+	public function explodeAndGetItemsPrefixedWith($string_to_explode, $prefix)
1430
+	{
1431
+		if (is_string($string_to_explode)) {
1432
+			$exploded_contents = explode(',', $string_to_explode);
1433
+		} elseif (is_array($string_to_explode)) {
1434
+			$exploded_contents = $string_to_explode;
1435
+		} else {
1436
+			$exploded_contents = array();
1437
+		}
1438
+		// if the string was empty, we want an empty array
1439
+		$exploded_contents = array_filter($exploded_contents);
1440
+		$contents_with_prefix = array();
1441
+		foreach ($exploded_contents as $item) {
1442
+			$item = trim($item);
1443
+			// if no prefix was provided, so we look for items with no "." in them
1444
+			if (! $prefix) {
1445
+				// does this item have a period?
1446
+				if (strpos($item, '.') === false) {
1447
+					// if not, then its what we're looking for
1448
+					$contents_with_prefix[] = $item;
1449
+				}
1450
+			} elseif (strpos($item, $prefix . '.') === 0) {
1451
+				// this item has the prefix and a period, grab it
1452
+				$contents_with_prefix[] = substr(
1453
+					$item,
1454
+					strpos($item, $prefix . '.') + strlen($prefix . '.')
1455
+				);
1456
+			} elseif ($item === $prefix) {
1457
+				// this item is JUST the prefix
1458
+				// so let's grab everything after, which is a blank string
1459
+				$contents_with_prefix[] = '';
1460
+			}
1461
+		}
1462
+		return $contents_with_prefix;
1463
+	}
1464
+
1465
+
1466
+	/**
1467
+	 * @deprecated since 4.8.36.rc.001 You should instead use Read::explode_and_get_items_prefixed_with.
1468
+	 * Deprecated because its return values were really quite confusing- sometimes it returned
1469
+	 * an empty array (when the include string was blank or '*') or sometimes it returned
1470
+	 * array('*') (when you provided a model and a model of that kind was found).
1471
+	 * Parses the $include_string so we fetch all the field names relating to THIS model
1472
+	 * (ie have NO period in them), or for the provided model (ie start with the model
1473
+	 * name and then a period).
1474
+	 * @param string $include_string @see Read:handle_request_get_all
1475
+	 * @param string $model_name
1476
+	 * @return array of fields for this model. If $model_name is provided, then
1477
+	 *                               the fields for that model, with the model's name removed from each.
1478
+	 *                               If $include_string was blank or '*' returns an empty array
1479
+	 */
1480
+	public function extractIncludesForThisModel($include_string, $model_name = null)
1481
+	{
1482
+		if (is_array($include_string)) {
1483
+			$include_string = implode(',', $include_string);
1484
+		}
1485
+		if ($include_string === '*' || $include_string === '') {
1486
+			return array();
1487
+		}
1488
+		$includes = explode(',', $include_string);
1489
+		$extracted_fields_to_include = array();
1490
+		if ($model_name) {
1491
+			foreach ($includes as $field_to_include) {
1492
+				$field_to_include = trim($field_to_include);
1493
+				if (strpos($field_to_include, $model_name . '.') === 0) {
1494
+					// found the model name at the exact start
1495
+					$field_sans_model_name = str_replace($model_name . '.', '', $field_to_include);
1496
+					$extracted_fields_to_include[] = $field_sans_model_name;
1497
+				} elseif ($field_to_include == $model_name) {
1498
+					$extracted_fields_to_include[] = '*';
1499
+				}
1500
+			}
1501
+		} else {
1502
+			// look for ones with no period
1503
+			foreach ($includes as $field_to_include) {
1504
+				$field_to_include = trim($field_to_include);
1505
+				if (strpos($field_to_include, '.') === false
1506
+					&& ! $this->getModelVersionInfo()->isModelNameInThisVersion($field_to_include)
1507
+				) {
1508
+					$extracted_fields_to_include[] = $field_to_include;
1509
+				}
1510
+			}
1511
+		}
1512
+		return $extracted_fields_to_include;
1513
+	}
1514
+
1515
+
1516
+	/**
1517
+	 * Gets the single item using the model according to the request in the context given, otherwise
1518
+	 * returns that it's inaccessible to the current user
1519
+	 *
1520
+	 * @param EEM_Base $model
1521
+	 * @param WP_REST_Request $request
1522
+	 * @param null $context
1523
+	 * @return array
1524
+	 * @throws EE_Error
1525
+	 */
1526
+	public function getOneOrReportPermissionError(EEM_Base $model, WP_REST_Request $request, $context = null)
1527
+	{
1528
+		$query_params = array(array($model->primary_key_name() => $request->get_param('id')), 'limit' => 1);
1529
+		if ($model instanceof EEM_Soft_Delete_Base) {
1530
+			$query_params = $model->alter_query_params_so_deleted_and_undeleted_items_included($query_params);
1531
+		}
1532
+		$restricted_query_params = $query_params;
1533
+		$restricted_query_params['caps'] = $context;
1534
+		$this->setDebugInfo('model query params', $restricted_query_params);
1535
+		$model_rows = $model->get_all_wpdb_results($restricted_query_params);
1536
+		if (! empty($model_rows)) {
1537
+			return $this->createEntityFromWpdbResult(
1538
+				$model,
1539
+				reset($model_rows),
1540
+				$request
1541
+			);
1542
+		} else {
1543
+			// ok let's test to see if we WOULD have found it, had we not had restrictions from missing capabilities
1544
+			$lowercase_model_name = strtolower($model->get_this_model_name());
1545
+			if ($model->exists($query_params)) {
1546
+				// you got shafted- it existed but we didn't want to tell you!
1547
+				throw new RestException(
1548
+					'rest_user_cannot_' . $context,
1549
+					sprintf(
1550
+						__('Sorry, you cannot %1$s this %2$s. Missing permissions are: %3$s', 'event_espresso'),
1551
+						$context,
1552
+						$lowercase_model_name,
1553
+						Capabilities::getMissingPermissionsString(
1554
+							$model,
1555
+							$context
1556
+						)
1557
+					),
1558
+					array('status' => 403)
1559
+				);
1560
+			} else {
1561
+				// it's not you. It just doesn't exist
1562
+				throw new RestException(
1563
+					sprintf('rest_%s_invalid_id', $lowercase_model_name),
1564
+					sprintf(__('Invalid %s ID.', 'event_espresso'), $lowercase_model_name),
1565
+					array('status' => 404)
1566
+				);
1567
+			}
1568
+		}
1569
+	}
1570
+
1571
+	/**
1572
+	 * Checks that if this content requires a password to be read, that it's been provided and is correct.
1573
+	 * @since $VID:$
1574
+	 * @param EEM_Base $model
1575
+	 * @param $model_row
1576
+	 * @param $query_params
1577
+	 * @param WP_REST_Request $request
1578
+	 * @throws EE_Error
1579
+	 * @throws InvalidArgumentException
1580
+	 * @throws InvalidDataTypeException
1581
+	 * @throws InvalidInterfaceException
1582
+	 * @throws RestPasswordRequiredException
1583
+	 * @throws RestPasswordIncorrectException
1584
+	 * @throws \EventEspresso\core\exceptions\ModelConfigurationException
1585
+	 * @throws ReflectionException
1586
+	 */
1587
+	protected function checkPassword(EEM_Base $model, $model_row, $query_params, WP_REST_Request $request)
1588
+	{
1589
+		// stuff is only "protected" for front-end requests. Elsewhere, you either get full permission to access the object
1590
+		// or you don't.
1591
+		$request_caps = $request->get_param('caps');
1592
+		if (isset($request_caps) && $request_caps !== EEM_Base::caps_read) {
1593
+			return;
1594
+		}
1595
+		// if this entity requires a password, they better give it and it better be right!
1596
+		if ($model->hasPassword()
1597
+			&& $model_row[ $model->getPasswordField()->get_qualified_column() ] !== '') {
1598
+			if (empty($request['password'])) {
1599
+				throw new RestPasswordRequiredException();
1600
+			} elseif (!hash_equals(
1601
+				$model_row[ $model->getPasswordField()->get_qualified_column() ],
1602
+				$request['password']
1603
+			)) {
1604
+				throw new RestPasswordIncorrectException();
1605
+			}
1606
+		} // wait! maybe this content is password protected
1607
+		elseif ($model->restrictedByRelatedModelPassword()
1608
+			&& $request->get_param('caps') === EEM_Base::caps_read) {
1609
+			$password_supplied = $request->get_param('password');
1610
+			if (empty($password_supplied)) {
1611
+				$query_params['exclude_protected'] = true;
1612
+				if (!$model->exists($query_params)) {
1613
+					throw new RestPasswordRequiredException();
1614
+				}
1615
+			} else {
1616
+				$query_params[0][ $model->modelChainAndPassword() ] = $password_supplied;
1617
+				if (!$model->exists($query_params)) {
1618
+					throw new RestPasswordIncorrectException();
1619
+				}
1620
+			}
1621
+		}
1622
+	}
1623 1623
 }
Please login to merge, or discard this patch.
Spacing   +71 added lines, -71 removed lines patch added patch discarded remove patch
@@ -78,7 +78,7 @@  discard block
 block discarded – undo
78 78
         $controller = LoaderFactory::getLoader()->getNew('EventEspresso\core\libraries\rest_api\controllers\model\Read');
79 79
         try {
80 80
             $controller->setRequestedVersion($version);
81
-            if (! $controller->getModelVersionInfo()->isModelNameInThisVersion($model_name)) {
81
+            if ( ! $controller->getModelVersionInfo()->isModelNameInThisVersion($model_name)) {
82 82
                 return $controller->sendResponse(
83 83
                     new WP_Error(
84 84
                         'endpoint_parsing_error',
@@ -119,7 +119,7 @@  discard block
 block discarded – undo
119 119
         $controller = LoaderFactory::getLoader()->getNew('EventEspresso\core\libraries\rest_api\controllers\model\Read');
120 120
         try {
121 121
             $controller->setRequestedVersion($version);
122
-            if (! $controller->getModelVersionInfo()->isModelNameInThisVersion($model_name)) {
122
+            if ( ! $controller->getModelVersionInfo()->isModelNameInThisVersion($model_name)) {
123 123
                 return array();
124 124
             }
125 125
             // get the model for this version
@@ -176,11 +176,11 @@  discard block
 block discarded – undo
176 176
      */
177 177
     protected function translateDefaultsForRestResponse($field_name, EE_Model_Field_Base $field, array $schema)
178 178
     {
179
-        if (isset($schema['properties'][ $field_name ]['default'])) {
180
-            if (is_array($schema['properties'][ $field_name ]['default'])) {
181
-                foreach ($schema['properties'][ $field_name ]['default'] as $default_key => $default_value) {
179
+        if (isset($schema['properties'][$field_name]['default'])) {
180
+            if (is_array($schema['properties'][$field_name]['default'])) {
181
+                foreach ($schema['properties'][$field_name]['default'] as $default_key => $default_value) {
182 182
                     if ($default_key === 'raw') {
183
-                        $schema['properties'][ $field_name ]['default'][ $default_key ] =
183
+                        $schema['properties'][$field_name]['default'][$default_key] =
184 184
                             ModelDataTranslator::prepareFieldValueForJson(
185 185
                                 $field,
186 186
                                 $default_value,
@@ -189,9 +189,9 @@  discard block
 block discarded – undo
189 189
                     }
190 190
                 }
191 191
             } else {
192
-                $schema['properties'][ $field_name ]['default'] = ModelDataTranslator::prepareFieldValueForJson(
192
+                $schema['properties'][$field_name]['default'] = ModelDataTranslator::prepareFieldValueForJson(
193 193
                     $field,
194
-                    $schema['properties'][ $field_name ]['default'],
194
+                    $schema['properties'][$field_name]['default'],
195 195
                     $this->getModelVersionInfo()->requestedVersion()
196 196
                 );
197 197
             }
@@ -213,9 +213,9 @@  discard block
 block discarded – undo
213 213
     protected function maybeAddExtraFieldsToSchema($field_name, EE_Model_Field_Base $field, array $schema)
214 214
     {
215 215
         if ($field instanceof EE_Datetime_Field) {
216
-            $schema['properties'][ $field_name . '_gmt' ] = $field->getSchema();
216
+            $schema['properties'][$field_name.'_gmt'] = $field->getSchema();
217 217
             // modify the description
218
-            $schema['properties'][ $field_name . '_gmt' ]['description'] = sprintf(
218
+            $schema['properties'][$field_name.'_gmt']['description'] = sprintf(
219 219
                 esc_html__('%s - the value for this field is in GMT.', 'event_espresso'),
220 220
                 wp_specialchars_decode($field->get_nicename(), ENT_QUOTES)
221 221
             );
@@ -258,7 +258,7 @@  discard block
 block discarded – undo
258 258
         $controller = LoaderFactory::getLoader()->getNew('EventEspresso\core\libraries\rest_api\controllers\model\Read');
259 259
         try {
260 260
             $controller->setRequestedVersion($version);
261
-            if (! $controller->getModelVersionInfo()->isModelNameInThisVersion($model_name)) {
261
+            if ( ! $controller->getModelVersionInfo()->isModelNameInThisVersion($model_name)) {
262 262
                 return $controller->sendResponse(
263 263
                     new WP_Error(
264 264
                         'endpoint_parsing_error',
@@ -306,7 +306,7 @@  discard block
 block discarded – undo
306 306
         $controller = LoaderFactory::getLoader()->getNew('EventEspresso\core\libraries\rest_api\controllers\model\Read');
307 307
         try {
308 308
             $controller->setRequestedVersion($version);
309
-            if (! $controller->getModelVersionInfo()->isModelNameInThisVersion($model_name)) {
309
+            if ( ! $controller->getModelVersionInfo()->isModelNameInThisVersion($model_name)) {
310 310
                 return $controller->sendResponse(
311 311
                     new WP_Error(
312 312
                         'endpoint_parsing_error',
@@ -321,7 +321,7 @@  discard block
 block discarded – undo
321 321
                 );
322 322
             }
323 323
             $main_model = $controller->getModelVersionInfo()->loadModel($model_name);
324
-            if (! $controller->getModelVersionInfo()->isModelNameInThisVersion($related_model_name)) {
324
+            if ( ! $controller->getModelVersionInfo()->isModelNameInThisVersion($related_model_name)) {
325 325
                 return $controller->sendResponse(
326 326
                     new WP_Error(
327 327
                         'endpoint_parsing_error',
@@ -364,7 +364,7 @@  discard block
 block discarded – undo
364 364
     public function getEntitiesFromModel($model, $request)
365 365
     {
366 366
         $query_params = $this->createModelQueryParams($model, $request->get_params());
367
-        if (! Capabilities::currentUserHasPartialAccessTo($model, $query_params['caps'])) {
367
+        if ( ! Capabilities::currentUserHasPartialAccessTo($model, $query_params['caps'])) {
368 368
             $model_name_plural = EEH_Inflector::pluralize_and_lower($model->get_this_model_name());
369 369
             throw new RestException(
370 370
                 sprintf('rest_%s_cannot_list', $model_name_plural),
@@ -376,14 +376,14 @@  discard block
 block discarded – undo
376 376
                 array('status' => 403)
377 377
             );
378 378
         }
379
-        if (! $request->get_header('no_rest_headers')) {
379
+        if ( ! $request->get_header('no_rest_headers')) {
380 380
             $this->setHeadersFromQueryParams($model, $query_params);
381 381
         }
382 382
         /** @type array $results */
383 383
         $results = $model->get_all_wpdb_results($query_params);
384 384
         $nice_results = array();
385 385
         foreach ($results as $result) {
386
-            $nice_results[] =  $this->createEntityFromWpdbResult(
386
+            $nice_results[] = $this->createEntityFromWpdbResult(
387 387
                 $model,
388 388
                 $result,
389 389
                 $request
@@ -417,7 +417,7 @@  discard block
 block discarded – undo
417 417
         $context = $this->validateContext($request->get_param('caps'));
418 418
         $model = $relation->get_this_model();
419 419
         $related_model = $relation->get_other_model();
420
-        if (! isset($primary_model_query_params[0])) {
420
+        if ( ! isset($primary_model_query_params[0])) {
421 421
             $primary_model_query_params[0] = array();
422 422
         }
423 423
         // check if they can access the 1st model object
@@ -440,7 +440,7 @@  discard block
 block discarded – undo
440 440
         if (is_array($primary_model_rows)) {
441 441
             $primary_model_row = reset($primary_model_rows);
442 442
         }
443
-        if (! (
443
+        if ( ! (
444 444
             Capabilities::currentUserHasPartialAccessTo($related_model, $context)
445 445
             && $primary_model_row
446 446
         )
@@ -480,13 +480,13 @@  discard block
 block discarded – undo
480 480
         );
481 481
         $query_params = $this->createModelQueryParams($relation->get_other_model(), $request->get_params());
482 482
         foreach ($primary_model_query_params[0] as $where_condition_key => $where_condition_value) {
483
-            $query_params[0][ $relation->get_this_model()->get_this_model_name()
483
+            $query_params[0][$relation->get_this_model()->get_this_model_name()
484 484
                               . '.'
485
-                              . $where_condition_key ] = $where_condition_value;
485
+                              . $where_condition_key] = $where_condition_value;
486 486
         }
487 487
         $query_params['default_where_conditions'] = 'none';
488 488
         $query_params['caps'] = $context;
489
-        if (! $request->get_header('no_rest_headers')) {
489
+        if ( ! $request->get_header('no_rest_headers')) {
490 490
             $this->setHeadersFromQueryParams($relation->get_other_model(), $query_params);
491 491
         }
492 492
         /** @type array $results */
@@ -537,7 +537,7 @@  discard block
 block discarded – undo
537 537
      */
538 538
     public function getEntitiesFromRelation($id, $relation, $request)
539 539
     {
540
-        if (! $relation->get_this_model()->has_primary_key_field()) {
540
+        if ( ! $relation->get_this_model()->has_primary_key_field()) {
541 541
             throw new EE_Error(
542 542
                 sprintf(
543 543
                     __(
@@ -582,7 +582,7 @@  discard block
 block discarded – undo
582 582
             Capabilities::getMissingPermissionsString($model, $query_params['caps'])
583 583
         );
584 584
         // normally the limit to a 2-part array, where the 2nd item is the limit
585
-        if (! isset($query_params['limit'])) {
585
+        if ( ! isset($query_params['limit'])) {
586 586
             $query_params['limit'] = EED_Core_Rest_Api::get_default_query_limit();
587 587
         }
588 588
         if (is_array($query_params['limit'])) {
@@ -621,7 +621,7 @@  discard block
 block discarded – undo
621 621
      */
622 622
     public function createEntityFromWpdbResult($model, $db_row, $rest_request, $deprecated = null)
623 623
     {
624
-        if (! $rest_request instanceof WP_REST_Request) {
624
+        if ( ! $rest_request instanceof WP_REST_Request) {
625 625
             // ok so this was called in the old style, where the 3rd arg was
626 626
             // $include, and the 4th arg was $context
627 627
             // now setup the request just to avoid fatal errors, although we won't be able
@@ -649,7 +649,7 @@  discard block
 block discarded – undo
649 649
                 $db_row,
650 650
                 array(
651 651
                     0 => array(
652
-                        $model->primary_key_name() => $db_row[ $model->get_primary_key_field()->get_qualified_column() ]
652
+                        $model->primary_key_name() => $db_row[$model->get_primary_key_field()->get_qualified_column()]
653 653
                     )
654 654
                 ),
655 655
                 $rest_request
@@ -696,7 +696,7 @@  discard block
 block discarded – undo
696 696
             $rest_request,
697 697
             $this
698 698
         );
699
-        if (! $current_user_full_access_to_entity) {
699
+        if ( ! $current_user_full_access_to_entity) {
700 700
             $result_without_inaccessible_fields = Capabilities::filterOutInaccessibleEntityFields(
701 701
                 $entity_array,
702 702
                 $model,
@@ -728,7 +728,7 @@  discard block
 block discarded – undo
728 728
      */
729 729
     protected function addProtectedProperty(EEM_Base $model, $results_so_far, $protected)
730 730
     {
731
-        if (! $model->hasPassword() || ! $protected) {
731
+        if ( ! $model->hasPassword() || ! $protected) {
732 732
             return $results_so_far;
733 733
         }
734 734
         $password_field = $model->getPasswordField();
@@ -742,7 +742,7 @@  discard block
 block discarded – undo
742 742
             $fields_included
743 743
         );
744 744
         foreach ($fields_included as $field_name) {
745
-            $results_so_far['_protected'][] = $field_name ;
745
+            $results_so_far['_protected'][] = $field_name;
746 746
         }
747 747
         return $results_so_far;
748 748
     }
@@ -773,8 +773,8 @@  discard block
 block discarded – undo
773 773
         if ($do_chevy_shuffle) {
774 774
             global $post;
775 775
             $old_post = $post;
776
-            $post = get_post($result[ $model->primary_key_name() ]);
777
-            if (! $post instanceof \WP_Post) {
776
+            $post = get_post($result[$model->primary_key_name()]);
777
+            if ( ! $post instanceof \WP_Post) {
778 778
                 // well that's weird, because $result is what we JUST fetched from the database
779 779
                 throw new RestException(
780 780
                     'error_fetching_post_from_database_results',
@@ -784,7 +784,7 @@  discard block
 block discarded – undo
784 784
                     )
785 785
                 );
786 786
             }
787
-            $model_object_classname = 'EE_' . $model->get_this_model_name();
787
+            $model_object_classname = 'EE_'.$model->get_this_model_name();
788 788
             $post->{$model_object_classname} = \EE_Registry::instance()->load_class(
789 789
                 $model_object_classname,
790 790
                 $result,
@@ -795,13 +795,13 @@  discard block
 block discarded – undo
795 795
         foreach ($result as $field_name => $field_value) {
796 796
             $field_obj = $model->field_settings_for($field_name);
797 797
             if ($this->isSubclassOfOne($field_obj, $this->getModelVersionInfo()->fieldsIgnored())) {
798
-                unset($result[ $field_name ]);
798
+                unset($result[$field_name]);
799 799
             } elseif ($this->isSubclassOfOne(
800 800
                 $field_obj,
801 801
                 $this->getModelVersionInfo()->fieldsThatHaveRenderedFormat()
802 802
             )
803 803
             ) {
804
-                $result[ $field_name ] = array(
804
+                $result[$field_name] = array(
805 805
                     'raw'      => $this->prepareFieldObjValueForJson($field_obj, $field_value),
806 806
                     'rendered' => $this->prepareFieldObjValueForJson($field_obj, $field_value, 'pretty'),
807 807
                 );
@@ -810,7 +810,7 @@  discard block
 block discarded – undo
810 810
                 $this->getModelVersionInfo()->fieldsThatHavePrettyFormat()
811 811
             )
812 812
             ) {
813
-                $result[ $field_name ] = array(
813
+                $result[$field_name] = array(
814 814
                     'raw'    => $this->prepareFieldObjValueForJson($field_obj, $field_value),
815 815
                     'pretty' => $this->prepareFieldObjValueForJson($field_obj, $field_value, 'pretty'),
816 816
                 );
@@ -841,10 +841,10 @@  discard block
 block discarded – undo
841 841
                         $this->getModelVersionInfo()->requestedVersion()
842 842
                     );
843 843
                 }
844
-                $result[ $field_name . '_gmt' ] = $gmt_date;
845
-                $result[ $field_name ] = $local_date;
844
+                $result[$field_name.'_gmt'] = $gmt_date;
845
+                $result[$field_name] = $local_date;
846 846
             } else {
847
-                $result[ $field_name ] = $this->prepareFieldObjValueForJson($field_obj, $field_value);
847
+                $result[$field_name] = $this->prepareFieldObjValueForJson($field_obj, $field_value);
848 848
             }
849 849
         }
850 850
         if ($do_chevy_shuffle) {
@@ -896,7 +896,7 @@  discard block
 block discarded – undo
896 896
     protected function addExtraFields(EEM_Base $model, $db_row, $entity_array)
897 897
     {
898 898
         if ($model instanceof EEM_CPT_Base) {
899
-            $entity_array['link'] = get_permalink($db_row[ $model->get_primary_key_field()->get_qualified_column() ]);
899
+            $entity_array['link'] = get_permalink($db_row[$model->get_primary_key_field()->get_qualified_column()]);
900 900
         }
901 901
         return $entity_array;
902 902
     }
@@ -921,7 +921,7 @@  discard block
 block discarded – undo
921 921
                     'href' => $this->getVersionedLinkTo(
922 922
                         EEH_Inflector::pluralize_and_lower($model->get_this_model_name())
923 923
                         . '/'
924
-                        . $entity_array[ $model->primary_key_name() ]
924
+                        . $entity_array[$model->primary_key_name()]
925 925
                     ),
926 926
                 ),
927 927
             );
@@ -937,12 +937,12 @@  discard block
 block discarded – undo
937 937
         if ($model->has_primary_key_field()) {
938 938
             foreach ($this->getModelVersionInfo()->relationSettings($model) as $relation_name => $relation_obj) {
939 939
                 $related_model_part = Read::getRelatedEntityName($relation_name, $relation_obj);
940
-                $links[ EED_Core_Rest_Api::ee_api_link_namespace . $related_model_part ] = array(
940
+                $links[EED_Core_Rest_Api::ee_api_link_namespace.$related_model_part] = array(
941 941
                     array(
942 942
                         'href'   => $this->getVersionedLinkTo(
943 943
                             EEH_Inflector::pluralize_and_lower($model->get_this_model_name())
944 944
                             . '/'
945
-                            . $entity_array[ $model->primary_key_name() ]
945
+                            . $entity_array[$model->primary_key_name()]
946 946
                             . '/'
947 947
                             . $related_model_part
948 948
                         ),
@@ -974,7 +974,7 @@  discard block
 block discarded – undo
974 974
         $included_items_protected = false
975 975
     ) {
976 976
         // if $db_row not included, hope the entity array has what we need
977
-        if (! $db_row) {
977
+        if ( ! $db_row) {
978 978
             $db_row = $entity_array;
979 979
         }
980 980
         $relation_settings = $this->getModelVersionInfo()->relationSettings($model);
@@ -1007,7 +1007,7 @@  discard block
 block discarded – undo
1007 1007
                         $model->deduce_fields_n_values_from_cols_n_values($db_row)
1008 1008
                     )
1009 1009
                 );
1010
-                if (! $included_items_protected) {
1010
+                if ( ! $included_items_protected) {
1011 1011
                     $related_results = $this->getEntitiesFromRelationUsingModelQueryParams(
1012 1012
                         $primary_model_query_params,
1013 1013
                         $relation_obj,
@@ -1021,7 +1021,7 @@  discard block
 block discarded – undo
1021 1021
                 if ($related_results instanceof WP_Error) {
1022 1022
                     $related_results = null;
1023 1023
                 }
1024
-                $entity_array[ Read::getRelatedEntityName($relation_name, $relation_obj) ] = $related_results;
1024
+                $entity_array[Read::getRelatedEntityName($relation_name, $relation_obj)] = $related_results;
1025 1025
             }
1026 1026
         }
1027 1027
         return $entity_array;
@@ -1046,7 +1046,7 @@  discard block
 block discarded – undo
1046 1046
         $includes_for_this_model = $this->explodeAndGetItemsPrefixedWith($rest_request->get_param('include'), '');
1047 1047
         $includes_for_this_model = $this->removeModelNamesFromArray($includes_for_this_model);
1048 1048
         // if they passed in * or didn't specify any includes, return everything
1049
-        if (! in_array('*', $includes_for_this_model)
1049
+        if ( ! in_array('*', $includes_for_this_model)
1050 1050
             && ! empty($includes_for_this_model)
1051 1051
         ) {
1052 1052
             if ($model->has_primary_key_field()) {
@@ -1100,12 +1100,12 @@  discard block
 block discarded – undo
1100 1100
                 // it's password protected, so they shouldn't be able to read this. Remove the value
1101 1101
                 $schema = $this->fields_calculator->getJsonSchemaForModel($model);
1102 1102
                 if ($row_is_protected
1103
-                    && isset($schema['properties'][ $field_to_calculate ]['protected'])
1104
-                    && $schema['properties'][ $field_to_calculate ]['protected']) {
1103
+                    && isset($schema['properties'][$field_to_calculate]['protected'])
1104
+                    && $schema['properties'][$field_to_calculate]['protected']) {
1105 1105
                     $calculated_value = null;
1106 1106
                     $protected_fields[] = $field_to_calculate;
1107
-                    if ($schema['properties'][ $field_to_calculate ]['type']) {
1108
-                        switch ($schema['properties'][ $field_to_calculate ]['type']) {
1107
+                    if ($schema['properties'][$field_to_calculate]['type']) {
1108
+                        switch ($schema['properties'][$field_to_calculate]['type']) {
1109 1109
                             case 'boolean':
1110 1110
                                 $calculated_value = false;
1111 1111
                                 break;
@@ -1215,7 +1215,7 @@  discard block
 block discarded – undo
1215 1215
      */
1216 1216
     public function validateContext($context)
1217 1217
     {
1218
-        if (! $context) {
1218
+        if ( ! $context) {
1219 1219
             $context = EEM_Base::caps_read;
1220 1220
         }
1221 1221
         $valid_contexts = EEM_Base::valid_cap_contexts();
@@ -1240,7 +1240,7 @@  discard block
 block discarded – undo
1240 1240
             EEM_Base::default_where_conditions_minimum_all,
1241 1241
             EEM_Base::default_where_conditions_minimum_others,
1242 1242
         );
1243
-        if (! $default_query_params) {
1243
+        if ( ! $default_query_params) {
1244 1244
             $default_query_params = EEM_Base::default_where_conditions_all;
1245 1245
         }
1246 1246
         if (in_array(
@@ -1323,14 +1323,14 @@  discard block
 block discarded – undo
1323 1323
         }
1324 1324
         if (isset($query_params['limit'])) {
1325 1325
             // limit should be either a string like '23' or '23,43', or an array with two items in it
1326
-            if (! is_array($query_params['limit'])) {
1326
+            if ( ! is_array($query_params['limit'])) {
1327 1327
                 $limit_array = explode(',', (string) $query_params['limit']);
1328 1328
             } else {
1329 1329
                 $limit_array = $query_params['limit'];
1330 1330
             }
1331 1331
             $sanitized_limit = array();
1332 1332
             foreach ($limit_array as $key => $limit_part) {
1333
-                if ($this->debug_mode && (! is_numeric($limit_part) || count($sanitized_limit) > 2)) {
1333
+                if ($this->debug_mode && ( ! is_numeric($limit_part) || count($sanitized_limit) > 2)) {
1334 1334
                     throw new EE_Error(
1335 1335
                         sprintf(
1336 1336
                             __(
@@ -1362,7 +1362,7 @@  discard block
 block discarded – undo
1362 1362
         // if this is a model protected by a password on another model, exclude the password protected
1363 1363
         // entities by default. But if they passed in a password, try to show them all. If the password is wrong,
1364 1364
         // though, they'll get an error (see Read::createEntityFromWpdbResult() which calls Read::checkPassword)
1365
-        if (! $model->hasPassword()
1365
+        if ( ! $model->hasPassword()
1366 1366
             && $model->restrictedByRelatedModelPassword()
1367 1367
             && $model_query_params['caps'] === EEM_Base::caps_read) {
1368 1368
             if (empty($query_params['password'])) {
@@ -1387,9 +1387,9 @@  discard block
 block discarded – undo
1387 1387
         $model_ready_query_params = array();
1388 1388
         foreach ($query_params as $key => $value) {
1389 1389
             if (is_array($value)) {
1390
-                $model_ready_query_params[ $key ] = $this->prepareRestQueryParamsKeyForModels($model, $value);
1390
+                $model_ready_query_params[$key] = $this->prepareRestQueryParamsKeyForModels($model, $value);
1391 1391
             } else {
1392
-                $model_ready_query_params[ $key ] = $value;
1392
+                $model_ready_query_params[$key] = $value;
1393 1393
             }
1394 1394
         }
1395 1395
         return $model_ready_query_params;
@@ -1407,9 +1407,9 @@  discard block
 block discarded – undo
1407 1407
         $model_ready_query_params = array();
1408 1408
         foreach ($query_params as $key => $value) {
1409 1409
             if (is_array($value)) {
1410
-                $model_ready_query_params[ $key ] = $this->prepareRestQueryParamsValuesForModels($model, $value);
1410
+                $model_ready_query_params[$key] = $this->prepareRestQueryParamsValuesForModels($model, $value);
1411 1411
             } else {
1412
-                $model_ready_query_params[ $key ] = $value;
1412
+                $model_ready_query_params[$key] = $value;
1413 1413
             }
1414 1414
         }
1415 1415
         return $model_ready_query_params;
@@ -1441,17 +1441,17 @@  discard block
 block discarded – undo
1441 1441
         foreach ($exploded_contents as $item) {
1442 1442
             $item = trim($item);
1443 1443
             // if no prefix was provided, so we look for items with no "." in them
1444
-            if (! $prefix) {
1444
+            if ( ! $prefix) {
1445 1445
                 // does this item have a period?
1446 1446
                 if (strpos($item, '.') === false) {
1447 1447
                     // if not, then its what we're looking for
1448 1448
                     $contents_with_prefix[] = $item;
1449 1449
                 }
1450
-            } elseif (strpos($item, $prefix . '.') === 0) {
1450
+            } elseif (strpos($item, $prefix.'.') === 0) {
1451 1451
                 // this item has the prefix and a period, grab it
1452 1452
                 $contents_with_prefix[] = substr(
1453 1453
                     $item,
1454
-                    strpos($item, $prefix . '.') + strlen($prefix . '.')
1454
+                    strpos($item, $prefix.'.') + strlen($prefix.'.')
1455 1455
                 );
1456 1456
             } elseif ($item === $prefix) {
1457 1457
                 // this item is JUST the prefix
@@ -1490,9 +1490,9 @@  discard block
 block discarded – undo
1490 1490
         if ($model_name) {
1491 1491
             foreach ($includes as $field_to_include) {
1492 1492
                 $field_to_include = trim($field_to_include);
1493
-                if (strpos($field_to_include, $model_name . '.') === 0) {
1493
+                if (strpos($field_to_include, $model_name.'.') === 0) {
1494 1494
                     // found the model name at the exact start
1495
-                    $field_sans_model_name = str_replace($model_name . '.', '', $field_to_include);
1495
+                    $field_sans_model_name = str_replace($model_name.'.', '', $field_to_include);
1496 1496
                     $extracted_fields_to_include[] = $field_sans_model_name;
1497 1497
                 } elseif ($field_to_include == $model_name) {
1498 1498
                     $extracted_fields_to_include[] = '*';
@@ -1533,7 +1533,7 @@  discard block
 block discarded – undo
1533 1533
         $restricted_query_params['caps'] = $context;
1534 1534
         $this->setDebugInfo('model query params', $restricted_query_params);
1535 1535
         $model_rows = $model->get_all_wpdb_results($restricted_query_params);
1536
-        if (! empty($model_rows)) {
1536
+        if ( ! empty($model_rows)) {
1537 1537
             return $this->createEntityFromWpdbResult(
1538 1538
                 $model,
1539 1539
                 reset($model_rows),
@@ -1545,7 +1545,7 @@  discard block
 block discarded – undo
1545 1545
             if ($model->exists($query_params)) {
1546 1546
                 // you got shafted- it existed but we didn't want to tell you!
1547 1547
                 throw new RestException(
1548
-                    'rest_user_cannot_' . $context,
1548
+                    'rest_user_cannot_'.$context,
1549 1549
                     sprintf(
1550 1550
                         __('Sorry, you cannot %1$s this %2$s. Missing permissions are: %3$s', 'event_espresso'),
1551 1551
                         $context,
@@ -1594,11 +1594,11 @@  discard block
 block discarded – undo
1594 1594
         }
1595 1595
         // if this entity requires a password, they better give it and it better be right!
1596 1596
         if ($model->hasPassword()
1597
-            && $model_row[ $model->getPasswordField()->get_qualified_column() ] !== '') {
1597
+            && $model_row[$model->getPasswordField()->get_qualified_column()] !== '') {
1598 1598
             if (empty($request['password'])) {
1599 1599
                 throw new RestPasswordRequiredException();
1600
-            } elseif (!hash_equals(
1601
-                $model_row[ $model->getPasswordField()->get_qualified_column() ],
1600
+            } elseif ( ! hash_equals(
1601
+                $model_row[$model->getPasswordField()->get_qualified_column()],
1602 1602
                 $request['password']
1603 1603
             )) {
1604 1604
                 throw new RestPasswordIncorrectException();
@@ -1609,12 +1609,12 @@  discard block
 block discarded – undo
1609 1609
             $password_supplied = $request->get_param('password');
1610 1610
             if (empty($password_supplied)) {
1611 1611
                 $query_params['exclude_protected'] = true;
1612
-                if (!$model->exists($query_params)) {
1612
+                if ( ! $model->exists($query_params)) {
1613 1613
                     throw new RestPasswordRequiredException();
1614 1614
                 }
1615 1615
             } else {
1616
-                $query_params[0][ $model->modelChainAndPassword() ] = $password_supplied;
1617
-                if (!$model->exists($query_params)) {
1616
+                $query_params[0][$model->modelChainAndPassword()] = $password_supplied;
1617
+                if ( ! $model->exists($query_params)) {
1618 1618
                     throw new RestPasswordIncorrectException();
1619 1619
                 }
1620 1620
             }
Please login to merge, or discard this patch.
core/libraries/rest_api/ModelDataTranslator.php 1 patch
Unused Use Statements   -4 removed lines patch added patch discarded remove patch
@@ -3,14 +3,10 @@
 block discarded – undo
3 3
 namespace EventEspresso\core\libraries\rest_api;
4 4
 
5 5
 use DomainException;
6
-use EE_Capabilities;
7 6
 use EE_Datetime_Field;
8 7
 use EE_Error;
9 8
 use EE_Infinite_Integer_Field;
10
-use EE_Maybe_Serialized_Simple_HTML_Field;
11 9
 use EE_Model_Field_Base;
12
-use EE_Password_Field;
13
-use EE_Restriction_Generator_Base;
14 10
 use EE_Serialized_Text_Field;
15 11
 use EED_Core_Rest_Api;
16 12
 use EEM_Base;
Please login to merge, or discard this patch.
modules/core_rest_api/EED_Core_Rest_Api.module.php 1 patch
Indentation   +1284 added lines, -1284 removed lines patch added patch discarded remove patch
@@ -23,1288 +23,1288 @@
 block discarded – undo
23 23
 class EED_Core_Rest_Api extends \EED_Module
24 24
 {
25 25
 
26
-    const ee_api_namespace = Domain::API_NAMESPACE;
27
-
28
-    const ee_api_namespace_for_regex = 'ee\/v([^/]*)\/';
29
-
30
-    const saved_routes_option_names = 'ee_core_routes';
31
-
32
-    /**
33
-     * string used in _links response bodies to make them globally unique.
34
-     *
35
-     * @see http://v2.wp-api.org/extending/linking/
36
-     */
37
-    const ee_api_link_namespace = 'https://api.eventespresso.com/';
38
-
39
-    /**
40
-     * @var CalculatedModelFields
41
-     */
42
-    protected static $_field_calculator;
43
-
44
-
45
-    /**
46
-     * @return EED_Core_Rest_Api|EED_Module
47
-     */
48
-    public static function instance()
49
-    {
50
-        self::$_field_calculator = LoaderFactory::getLoader()->load('EventEspresso\core\libraries\rest_api\CalculatedModelFields');
51
-        return parent::get_instance(__CLASS__);
52
-    }
53
-
54
-
55
-    /**
56
-     *    set_hooks - for hooking into EE Core, other modules, etc
57
-     *
58
-     * @access    public
59
-     * @return    void
60
-     */
61
-    public static function set_hooks()
62
-    {
63
-        self::set_hooks_both();
64
-    }
65
-
66
-
67
-    /**
68
-     *    set_hooks_admin - for hooking into EE Admin Core, other modules, etc
69
-     *
70
-     * @access    public
71
-     * @return    void
72
-     */
73
-    public static function set_hooks_admin()
74
-    {
75
-        self::set_hooks_both();
76
-    }
77
-
78
-
79
-    public static function set_hooks_both()
80
-    {
81
-        add_action('rest_api_init', array('EED_Core_Rest_Api', 'register_routes'), 10);
82
-        add_action('rest_api_init', array('EED_Core_Rest_Api', 'set_hooks_rest_api'), 5);
83
-        add_filter('rest_route_data', array('EED_Core_Rest_Api', 'hide_old_endpoints'), 10, 2);
84
-        add_filter(
85
-            'rest_index',
86
-            array('EventEspresso\core\libraries\rest_api\controllers\model\Meta', 'filterEeMetadataIntoIndex')
87
-        );
88
-        EED_Core_Rest_Api::invalidate_cached_route_data_on_version_change();
89
-    }
90
-
91
-
92
-    /**
93
-     * sets up hooks which only need to be included as part of REST API requests;
94
-     * other requests like to the frontend or admin etc don't need them
95
-     *
96
-     * @throws \EE_Error
97
-     */
98
-    public static function set_hooks_rest_api()
99
-    {
100
-        // set hooks which account for changes made to the API
101
-        EED_Core_Rest_Api::_set_hooks_for_changes();
102
-    }
103
-
104
-
105
-    /**
106
-     * public wrapper of _set_hooks_for_changes.
107
-     * Loads all the hooks which make requests to old versions of the API
108
-     * appear the same as they always did
109
-     *
110
-     * @throws EE_Error
111
-     */
112
-    public static function set_hooks_for_changes()
113
-    {
114
-        self::_set_hooks_for_changes();
115
-    }
116
-
117
-
118
-    /**
119
-     * Loads all the hooks which make requests to old versions of the API
120
-     * appear the same as they always did
121
-     *
122
-     * @throws EE_Error
123
-     */
124
-    protected static function _set_hooks_for_changes()
125
-    {
126
-        $folder_contents = EEH_File::get_contents_of_folders(array(EE_LIBRARIES . 'rest_api' . DS . 'changes'), false);
127
-        foreach ($folder_contents as $classname_in_namespace => $filepath) {
128
-            // ignore the base parent class
129
-            // and legacy named classes
130
-            if ($classname_in_namespace === 'ChangesInBase'
131
-                || strpos($classname_in_namespace, 'Changes_In_') === 0
132
-            ) {
133
-                continue;
134
-            }
135
-            $full_classname = 'EventEspresso\core\libraries\rest_api\changes\\' . $classname_in_namespace;
136
-            if (class_exists($full_classname)) {
137
-                $instance_of_class = new $full_classname;
138
-                if ($instance_of_class instanceof ChangesInBase) {
139
-                    $instance_of_class->setHooks();
140
-                }
141
-            }
142
-        }
143
-    }
144
-
145
-
146
-    /**
147
-     * Filters the WP routes to add our EE-related ones. This takes a bit of time
148
-     * so we actually prefer to only do it when an EE plugin is activated or upgraded
149
-     *
150
-     * @throws \EE_Error
151
-     */
152
-    public static function register_routes()
153
-    {
154
-        foreach (EED_Core_Rest_Api::get_ee_route_data() as $namespace => $relative_routes) {
155
-            foreach ($relative_routes as $relative_route => $data_for_multiple_endpoints) {
156
-                /**
157
-                 * @var array     $data_for_multiple_endpoints numerically indexed array
158
-                 *                                         but can also contain route options like {
159
-                 * @type array    $schema                      {
160
-                 * @type callable $schema_callback
161
-                 * @type array    $callback_args               arguments that will be passed to the callback, after the
162
-                 * WP_REST_Request of course
163
-                 * }
164
-                 * }
165
-                 */
166
-                // when registering routes, register all the endpoints' data at the same time
167
-                $multiple_endpoint_args = array();
168
-                foreach ($data_for_multiple_endpoints as $endpoint_key => $data_for_single_endpoint) {
169
-                    /**
170
-                     * @var array     $data_for_single_endpoint {
171
-                     * @type callable $callback
172
-                     * @type string methods
173
-                     * @type array args
174
-                     * @type array _links
175
-                     * @type array    $callback_args            arguments that will be passed to the callback, after the
176
-                     * WP_REST_Request of course
177
-                     * }
178
-                     */
179
-                    // skip route options
180
-                    if (! is_numeric($endpoint_key)) {
181
-                        continue;
182
-                    }
183
-                    if (! isset($data_for_single_endpoint['callback'], $data_for_single_endpoint['methods'])) {
184
-                        throw new EE_Error(
185
-                            esc_html__(
186
-                            // @codingStandardsIgnoreStart
187
-                                'Endpoint configuration data needs to have entries "callback" (callable) and "methods" (comma-separated list of accepts HTTP methods).',
188
-                                // @codingStandardsIgnoreEnd
189
-                                'event_espresso'
190
-                            )
191
-                        );
192
-                    }
193
-                    $callback = $data_for_single_endpoint['callback'];
194
-                    $single_endpoint_args = array(
195
-                        'methods' => $data_for_single_endpoint['methods'],
196
-                        'args'    => isset($data_for_single_endpoint['args']) ? $data_for_single_endpoint['args']
197
-                            : array(),
198
-                    );
199
-                    if (isset($data_for_single_endpoint['_links'])) {
200
-                        $single_endpoint_args['_links'] = $data_for_single_endpoint['_links'];
201
-                    }
202
-                    if (isset($data_for_single_endpoint['callback_args'])) {
203
-                        $callback_args = $data_for_single_endpoint['callback_args'];
204
-                        $single_endpoint_args['callback'] = function (\WP_REST_Request $request) use (
205
-                            $callback,
206
-                            $callback_args
207
-                        ) {
208
-                            array_unshift($callback_args, $request);
209
-                            return call_user_func_array(
210
-                                $callback,
211
-                                $callback_args
212
-                            );
213
-                        };
214
-                    } else {
215
-                        $single_endpoint_args['callback'] = $data_for_single_endpoint['callback'];
216
-                    }
217
-                    $multiple_endpoint_args[] = $single_endpoint_args;
218
-                }
219
-                if (isset($data_for_multiple_endpoints['schema'])) {
220
-                    $schema_route_data = $data_for_multiple_endpoints['schema'];
221
-                    $schema_callback = $schema_route_data['schema_callback'];
222
-                    $callback_args = $schema_route_data['callback_args'];
223
-                    $multiple_endpoint_args['schema'] = function () use ($schema_callback, $callback_args) {
224
-                        return call_user_func_array(
225
-                            $schema_callback,
226
-                            $callback_args
227
-                        );
228
-                    };
229
-                }
230
-                register_rest_route(
231
-                    $namespace,
232
-                    $relative_route,
233
-                    $multiple_endpoint_args
234
-                );
235
-            }
236
-        }
237
-    }
238
-
239
-
240
-    /**
241
-     * Checks if there was a version change or something that merits invalidating the cached
242
-     * route data. If so, invalidates the cached route data so that it gets refreshed
243
-     * next time the WP API is used
244
-     */
245
-    public static function invalidate_cached_route_data_on_version_change()
246
-    {
247
-        if (EE_System::instance()->detect_req_type() !== EE_System::req_type_normal) {
248
-            EED_Core_Rest_Api::invalidate_cached_route_data();
249
-        }
250
-        foreach (EE_Registry::instance()->addons as $addon) {
251
-            if ($addon instanceof EE_Addon && $addon->detect_req_type() !== EE_System::req_type_normal) {
252
-                EED_Core_Rest_Api::invalidate_cached_route_data();
253
-            }
254
-        }
255
-    }
256
-
257
-
258
-    /**
259
-     * Removes the cached route data so it will get refreshed next time the WP API is used
260
-     */
261
-    public static function invalidate_cached_route_data()
262
-    {
263
-        // delete the saved EE REST API routes
264
-        foreach (EED_Core_Rest_Api::versions_served() as $version => $hidden) {
265
-            delete_option(EED_Core_Rest_Api::saved_routes_option_names . $version);
266
-        }
267
-    }
268
-
269
-
270
-    /**
271
-     * Gets the EE route data
272
-     *
273
-     * @return array top-level key is the namespace, next-level key is the route and its value is array{
274
-     * @throws \EE_Error
275
-     * @type string|array $callback
276
-     * @type string       $methods
277
-     * @type boolean      $hidden_endpoint
278
-     * }
279
-     */
280
-    public static function get_ee_route_data()
281
-    {
282
-        $ee_routes = array();
283
-        foreach (self::versions_served() as $version => $hidden_endpoints) {
284
-            $ee_routes[ self::ee_api_namespace . $version ] = self::_get_ee_route_data_for_version(
285
-                $version,
286
-                $hidden_endpoints
287
-            );
288
-        }
289
-        return $ee_routes;
290
-    }
291
-
292
-
293
-    /**
294
-     * Gets the EE route data from the wp options if it exists already,
295
-     * otherwise re-generates it and saves it to the option
296
-     *
297
-     * @param string  $version
298
-     * @param boolean $hidden_endpoints
299
-     * @return array
300
-     * @throws \EE_Error
301
-     */
302
-    protected static function _get_ee_route_data_for_version($version, $hidden_endpoints = false)
303
-    {
304
-        $ee_routes = get_option(self::saved_routes_option_names . $version, null);
305
-        if (! $ee_routes || EED_Core_Rest_Api::debugMode()) {
306
-            $ee_routes = self::_save_ee_route_data_for_version($version, $hidden_endpoints);
307
-        }
308
-        return $ee_routes;
309
-    }
310
-
311
-
312
-    /**
313
-     * Saves the EE REST API route data to a wp option and returns it
314
-     *
315
-     * @param string  $version
316
-     * @param boolean $hidden_endpoints
317
-     * @return mixed|null
318
-     * @throws \EE_Error
319
-     */
320
-    protected static function _save_ee_route_data_for_version($version, $hidden_endpoints = false)
321
-    {
322
-        $instance = self::instance();
323
-        $routes = apply_filters(
324
-            'EED_Core_Rest_Api__save_ee_route_data_for_version__routes',
325
-            array_replace_recursive(
326
-                $instance->_get_config_route_data_for_version($version, $hidden_endpoints),
327
-                $instance->_get_meta_route_data_for_version($version, $hidden_endpoints),
328
-                $instance->_get_model_route_data_for_version($version, $hidden_endpoints),
329
-                $instance->_get_rpc_route_data_for_version($version, $hidden_endpoints)
330
-            )
331
-        );
332
-        $option_name = self::saved_routes_option_names . $version;
333
-        if (get_option($option_name)) {
334
-            update_option($option_name, $routes, true);
335
-        } else {
336
-            add_option($option_name, $routes, null, 'no');
337
-        }
338
-        return $routes;
339
-    }
340
-
341
-
342
-    /**
343
-     * Calculates all the EE routes and saves it to a WordPress option so we don't
344
-     * need to calculate it on every request
345
-     *
346
-     * @deprecated since version 4.9.1
347
-     * @return void
348
-     */
349
-    public static function save_ee_routes()
350
-    {
351
-        if (EE_Maintenance_Mode::instance()->models_can_query()) {
352
-            $instance = self::instance();
353
-            $routes = apply_filters(
354
-                'EED_Core_Rest_Api__save_ee_routes__routes',
355
-                array_replace_recursive(
356
-                    $instance->_register_config_routes(),
357
-                    $instance->_register_meta_routes(),
358
-                    $instance->_register_model_routes(),
359
-                    $instance->_register_rpc_routes()
360
-                )
361
-            );
362
-            update_option(self::saved_routes_option_names, $routes, true);
363
-        }
364
-    }
365
-
366
-
367
-    /**
368
-     * Gets all the route information relating to EE models
369
-     *
370
-     * @return array @see get_ee_route_data
371
-     * @deprecated since version 4.9.1
372
-     */
373
-    protected function _register_model_routes()
374
-    {
375
-        $model_routes = array();
376
-        foreach (self::versions_served() as $version => $hidden_endpoint) {
377
-            $model_routes[ EED_Core_Rest_Api::ee_api_namespace
378
-                           . $version ] = $this->_get_config_route_data_for_version($version, $hidden_endpoint);
379
-        }
380
-        return $model_routes;
381
-    }
382
-
383
-
384
-    /**
385
-     * Decides whether or not to add write endpoints for this model.
386
-     *
387
-     * Currently, this defaults to exclude all global tables and models
388
-     * which would allow inserting WP core data (we don't want to duplicate
389
-     * what WP API does, as it's unnecessary, extra work, and potentially extra bugs)
390
-     *
391
-     * @param EEM_Base $model
392
-     * @return bool
393
-     */
394
-    public static function should_have_write_endpoints(EEM_Base $model)
395
-    {
396
-        if ($model->is_wp_core_model()) {
397
-            return false;
398
-        }
399
-        foreach ($model->get_tables() as $table) {
400
-            if ($table->is_global()) {
401
-                return false;
402
-            }
403
-        }
404
-        return true;
405
-    }
406
-
407
-
408
-    /**
409
-     * Gets the names of all models which should have plural routes (eg `ee/v4.8.36/events`)
410
-     * in this versioned namespace of EE4
411
-     *
412
-     * @param $version
413
-     * @return array keys are model names (eg 'Event') and values ar either classnames (eg 'EEM_Event')
414
-     */
415
-    public static function model_names_with_plural_routes($version)
416
-    {
417
-        $model_version_info = new ModelVersionInfo($version);
418
-        $models_to_register = $model_version_info->modelsForRequestedVersion();
419
-        // let's not bother having endpoints for extra metas
420
-        unset(
421
-            $models_to_register['Extra_Meta'],
422
-            $models_to_register['Extra_Join'],
423
-            $models_to_register['Post_Meta']
424
-        );
425
-        return apply_filters(
426
-            'FHEE__EED_Core_REST_API___register_model_routes',
427
-            $models_to_register
428
-        );
429
-    }
430
-
431
-
432
-    /**
433
-     * Gets the route data for EE models in the specified version
434
-     *
435
-     * @param string  $version
436
-     * @param boolean $hidden_endpoint
437
-     * @return array
438
-     * @throws EE_Error
439
-     */
440
-    protected function _get_model_route_data_for_version($version, $hidden_endpoint = false)
441
-    {
442
-        $model_routes = array();
443
-        $model_version_info = new ModelVersionInfo($version);
444
-        foreach (EED_Core_Rest_Api::model_names_with_plural_routes($version) as $model_name => $model_classname) {
445
-            $model = \EE_Registry::instance()->load_model($model_name);
446
-            // if this isn't a valid model then let's skip iterate to the next item in the loop.
447
-            if (! $model instanceof EEM_Base) {
448
-                continue;
449
-            }
450
-            // yes we could just register one route for ALL models, but then they wouldn't show up in the index
451
-            $plural_model_route = EED_Core_Rest_Api::get_collection_route($model);
452
-            $singular_model_route = EED_Core_Rest_Api::get_entity_route($model, '(?P<id>[^\/]+)');
453
-            $model_routes[ $plural_model_route ] = array(
454
-                array(
455
-                    'callback'        => array(
456
-                        'EventEspresso\core\libraries\rest_api\controllers\model\Read',
457
-                        'handleRequestGetAll',
458
-                    ),
459
-                    'callback_args'   => array($version, $model_name),
460
-                    'methods'         => WP_REST_Server::READABLE,
461
-                    'hidden_endpoint' => $hidden_endpoint,
462
-                    'args'            => $this->_get_read_query_params($model, $version),
463
-                    '_links'          => array(
464
-                        'self' => rest_url(EED_Core_Rest_Api::ee_api_namespace . $version . $singular_model_route),
465
-                    ),
466
-                ),
467
-                'schema' => array(
468
-                    'schema_callback' => array(
469
-                        'EventEspresso\core\libraries\rest_api\controllers\model\Read',
470
-                        'handleSchemaRequest',
471
-                    ),
472
-                    'callback_args'   => array($version, $model_name),
473
-                ),
474
-            );
475
-            $model_routes[ $singular_model_route ] = array(
476
-                array(
477
-                    'callback'        => array(
478
-                        'EventEspresso\core\libraries\rest_api\controllers\model\Read',
479
-                        'handleRequestGetOne',
480
-                    ),
481
-                    'callback_args'   => array($version, $model_name),
482
-                    'methods'         => WP_REST_Server::READABLE,
483
-                    'hidden_endpoint' => $hidden_endpoint,
484
-                    'args'            => $this->_get_response_selection_query_params($model, $version, true),
485
-                ),
486
-            );
487
-            if (apply_filters(
488
-                'FHEE__EED_Core_Rest_Api___get_model_route_data_for_version__add_write_endpoints',
489
-                EED_Core_Rest_Api::should_have_write_endpoints($model),
490
-                $model
491
-            )) {
492
-                $model_routes[ $plural_model_route ][] = array(
493
-                    'callback'        => array(
494
-                        'EventEspresso\core\libraries\rest_api\controllers\model\Write',
495
-                        'handleRequestInsert',
496
-                    ),
497
-                    'callback_args'   => array($version, $model_name),
498
-                    'methods'         => WP_REST_Server::CREATABLE,
499
-                    'hidden_endpoint' => $hidden_endpoint,
500
-                    'args'            => $this->_get_write_params($model_name, $model_version_info, true),
501
-                );
502
-                $model_routes[ $singular_model_route ] = array_merge(
503
-                    $model_routes[ $singular_model_route ],
504
-                    array(
505
-                        array(
506
-                            'callback'        => array(
507
-                                'EventEspresso\core\libraries\rest_api\controllers\model\Write',
508
-                                'handleRequestUpdate',
509
-                            ),
510
-                            'callback_args'   => array($version, $model_name),
511
-                            'methods'         => WP_REST_Server::EDITABLE,
512
-                            'hidden_endpoint' => $hidden_endpoint,
513
-                            'args'            => $this->_get_write_params($model_name, $model_version_info),
514
-                        ),
515
-                        array(
516
-                            'callback'        => array(
517
-                                'EventEspresso\core\libraries\rest_api\controllers\model\Write',
518
-                                'handleRequestDelete',
519
-                            ),
520
-                            'callback_args'   => array($version, $model_name),
521
-                            'methods'         => WP_REST_Server::DELETABLE,
522
-                            'hidden_endpoint' => $hidden_endpoint,
523
-                            'args'            => $this->_get_delete_query_params($model, $version),
524
-                        ),
525
-                    )
526
-                );
527
-            }
528
-            foreach ($model->relation_settings() as $relation_name => $relation_obj) {
529
-                $related_route = EED_Core_Rest_Api::get_relation_route_via(
530
-                    $model,
531
-                    '(?P<id>[^\/]+)',
532
-                    $relation_obj
533
-                );
534
-                $endpoints = array(
535
-                    array(
536
-                        'callback'        => array(
537
-                            'EventEspresso\core\libraries\rest_api\controllers\model\Read',
538
-                            'handleRequestGetRelated',
539
-                        ),
540
-                        'callback_args'   => array($version, $model_name, $relation_name),
541
-                        'methods'         => WP_REST_Server::READABLE,
542
-                        'hidden_endpoint' => $hidden_endpoint,
543
-                        'args'            => $this->_get_read_query_params($relation_obj->get_other_model(), $version),
544
-                    ),
545
-                );
546
-                $model_routes[ $related_route ] = $endpoints;
547
-            }
548
-        }
549
-        return $model_routes;
550
-    }
551
-
552
-
553
-    /**
554
-     * Gets the relative URI to a model's REST API plural route, after the EE4 versioned namespace,
555
-     * excluding the preceding slash.
556
-     * Eg you pass get_plural_route_to('Event') = 'events'
557
-     *
558
-     * @param EEM_Base $model
559
-     * @return string
560
-     */
561
-    public static function get_collection_route(EEM_Base $model)
562
-    {
563
-        return EEH_Inflector::pluralize_and_lower($model->get_this_model_name());
564
-    }
565
-
566
-
567
-    /**
568
-     * Gets the relative URI to a model's REST API singular route, after the EE4 versioned namespace,
569
-     * excluding the preceding slash.
570
-     * Eg you pass get_plural_route_to('Event', 12) = 'events/12'
571
-     *
572
-     * @param EEM_Base $model eg Event or Venue
573
-     * @param string   $id
574
-     * @return string
575
-     */
576
-    public static function get_entity_route($model, $id)
577
-    {
578
-        return EED_Core_Rest_Api::get_collection_route($model) . '/' . $id;
579
-    }
580
-
581
-
582
-    /**
583
-     * Gets the relative URI to a model's REST API singular route, after the EE4 versioned namespace,
584
-     * excluding the preceding slash.
585
-     * Eg you pass get_plural_route_to('Event', 12) = 'events/12'
586
-     *
587
-     * @param EEM_Base               $model eg Event or Venue
588
-     * @param string                 $id
589
-     * @param EE_Model_Relation_Base $relation_obj
590
-     * @return string
591
-     */
592
-    public static function get_relation_route_via(EEM_Base $model, $id, EE_Model_Relation_Base $relation_obj)
593
-    {
594
-        $related_model_name_endpoint_part = ModelRead::getRelatedEntityName(
595
-            $relation_obj->get_other_model()->get_this_model_name(),
596
-            $relation_obj
597
-        );
598
-        return EED_Core_Rest_Api::get_entity_route($model, $id) . '/' . $related_model_name_endpoint_part;
599
-    }
600
-
601
-
602
-    /**
603
-     * Adds onto the $relative_route the EE4 REST API versioned namespace.
604
-     * Eg if given '4.8.36' and 'events', will return 'ee/v4.8.36/events'
605
-     *
606
-     * @param string $relative_route
607
-     * @param string $version
608
-     * @return string
609
-     */
610
-    public static function get_versioned_route_to($relative_route, $version = '4.8.36')
611
-    {
612
-        return '/' . EED_Core_Rest_Api::ee_api_namespace . $version . '/' . $relative_route;
613
-    }
614
-
615
-
616
-    /**
617
-     * Adds all the RPC-style routes (remote procedure call-like routes, ie
618
-     * routes that don't conform to the traditional REST CRUD-style).
619
-     *
620
-     * @deprecated since 4.9.1
621
-     */
622
-    protected function _register_rpc_routes()
623
-    {
624
-        $routes = array();
625
-        foreach (self::versions_served() as $version => $hidden_endpoint) {
626
-            $routes[ self::ee_api_namespace . $version ] = $this->_get_rpc_route_data_for_version(
627
-                $version,
628
-                $hidden_endpoint
629
-            );
630
-        }
631
-        return $routes;
632
-    }
633
-
634
-
635
-    /**
636
-     * @param string  $version
637
-     * @param boolean $hidden_endpoint
638
-     * @return array
639
-     */
640
-    protected function _get_rpc_route_data_for_version($version, $hidden_endpoint = false)
641
-    {
642
-        $this_versions_routes = array();
643
-        // checkin endpoint
644
-        $this_versions_routes['registrations/(?P<REG_ID>\d+)/toggle_checkin_for_datetime/(?P<DTT_ID>\d+)'] = array(
645
-            array(
646
-                'callback'        => array(
647
-                    'EventEspresso\core\libraries\rest_api\controllers\rpc\Checkin',
648
-                    'handleRequestToggleCheckin',
649
-                ),
650
-                'methods'         => WP_REST_Server::CREATABLE,
651
-                'hidden_endpoint' => $hidden_endpoint,
652
-                'args'            => array(
653
-                    'force' => array(
654
-                        'required'    => false,
655
-                        'default'     => false,
656
-                        'description' => __(
657
-                        // @codingStandardsIgnoreStart
658
-                            'Whether to force toggle checkin, or to verify the registration status and allowed ticket uses',
659
-                            // @codingStandardsIgnoreEnd
660
-                            'event_espresso'
661
-                        ),
662
-                    ),
663
-                ),
664
-                'callback_args'   => array($version),
665
-            ),
666
-        );
667
-        return apply_filters(
668
-            'FHEE__EED_Core_Rest_Api___register_rpc_routes__this_versions_routes',
669
-            $this_versions_routes,
670
-            $version,
671
-            $hidden_endpoint
672
-        );
673
-    }
674
-
675
-
676
-    /**
677
-     * Gets the query params that can be used when request one or many
678
-     *
679
-     * @param EEM_Base $model
680
-     * @param string   $version
681
-     * @return array
682
-     */
683
-    protected function _get_response_selection_query_params(\EEM_Base $model, $version, $single_only = false)
684
-    {
685
-        $query_params = array(
686
-            'include'   => array(
687
-                'required' => false,
688
-                'default'  => '*',
689
-                'type'     => 'string',
690
-            ),
691
-            'calculate' => array(
692
-                'required'          => false,
693
-                'default'           => '',
694
-                'enum'              => self::$_field_calculator->retrieveCalculatedFieldsForModel($model),
695
-                'type'              => 'string',
696
-                // because we accept a CSV'd list of the enumerated strings, WP core validation and sanitization
697
-                // freaks out. We'll just validate this argument while handling the request
698
-                'validate_callback' => null,
699
-                'sanitize_callback' => null,
700
-            ),
701
-            'password' => array(
702
-                'required' => false,
703
-                'default' => '',
704
-                'type' => 'string'
705
-            )
706
-        );
707
-        return apply_filters(
708
-            'FHEE__EED_Core_Rest_Api___get_response_selection_query_params',
709
-            $query_params,
710
-            $model,
711
-            $version
712
-        );
713
-    }
714
-
715
-
716
-    /**
717
-     * Gets the parameters acceptable for delete requests
718
-     *
719
-     * @param \EEM_Base $model
720
-     * @param string    $version
721
-     * @return array
722
-     */
723
-    protected function _get_delete_query_params(\EEM_Base $model, $version)
724
-    {
725
-        $params_for_delete = array(
726
-            'allow_blocking' => array(
727
-                'required' => false,
728
-                'default'  => true,
729
-                'type'     => 'boolean',
730
-            ),
731
-        );
732
-        $params_for_delete['force'] = array(
733
-            'required' => false,
734
-            'default'  => false,
735
-            'type'     => 'boolean',
736
-        );
737
-        return apply_filters(
738
-            'FHEE__EED_Core_Rest_Api___get_delete_query_params',
739
-            $params_for_delete,
740
-            $model,
741
-            $version
742
-        );
743
-    }
744
-
745
-
746
-    /**
747
-     * Gets info about reading query params that are acceptable
748
-     *
749
-     * @param \EEM_Base $model eg 'Event' or 'Venue'
750
-     * @param  string   $version
751
-     * @return array    describing the args acceptable when querying this model
752
-     * @throws EE_Error
753
-     */
754
-    protected function _get_read_query_params(\EEM_Base $model, $version)
755
-    {
756
-        $default_orderby = array();
757
-        foreach ($model->get_combined_primary_key_fields() as $key_field) {
758
-            $default_orderby[ $key_field->get_name() ] = 'ASC';
759
-        }
760
-        return array_merge(
761
-            $this->_get_response_selection_query_params($model, $version),
762
-            array(
763
-                'where'    => array(
764
-                    'required'          => false,
765
-                    'default'           => array(),
766
-                    'type'              => 'object',
767
-                    // because we accept an almost infinite list of possible where conditions, WP
768
-                    // core validation and sanitization freaks out. We'll just validate this argument
769
-                    // while handling the request
770
-                    'validate_callback' => null,
771
-                    'sanitize_callback' => null,
772
-                ),
773
-                'limit'    => array(
774
-                    'required'          => false,
775
-                    'default'           => EED_Core_Rest_Api::get_default_query_limit(),
776
-                    'type'              => array(
777
-                        'array',
778
-                        'string',
779
-                        'integer',
780
-                    ),
781
-                    // because we accept a variety of types, WP core validation and sanitization
782
-                    // freaks out. We'll just validate this argument while handling the request
783
-                    'validate_callback' => null,
784
-                    'sanitize_callback' => null,
785
-                ),
786
-                'order_by' => array(
787
-                    'required'          => false,
788
-                    'default'           => $default_orderby,
789
-                    'type'              => array(
790
-                        'object',
791
-                        'string',
792
-                    ),// because we accept a variety of types, WP core validation and sanitization
793
-                    // freaks out. We'll just validate this argument while handling the request
794
-                    'validate_callback' => null,
795
-                    'sanitize_callback' => null,
796
-                ),
797
-                'group_by' => array(
798
-                    'required'          => false,
799
-                    'default'           => null,
800
-                    'type'              => array(
801
-                        'object',
802
-                        'string',
803
-                    ),
804
-                    // because we accept  an almost infinite list of possible groupings,
805
-                    // WP core validation and sanitization
806
-                    // freaks out. We'll just validate this argument while handling the request
807
-                    'validate_callback' => null,
808
-                    'sanitize_callback' => null,
809
-                ),
810
-                'having'   => array(
811
-                    'required'          => false,
812
-                    'default'           => null,
813
-                    'type'              => 'object',
814
-                    // because we accept an almost infinite list of possible where conditions, WP
815
-                    // core validation and sanitization freaks out. We'll just validate this argument
816
-                    // while handling the request
817
-                    'validate_callback' => null,
818
-                    'sanitize_callback' => null,
819
-                ),
820
-                'caps'     => array(
821
-                    'required' => false,
822
-                    'default'  => EEM_Base::caps_read,
823
-                    'type'     => 'string',
824
-                    'enum'     => array(
825
-                        EEM_Base::caps_read,
826
-                        EEM_Base::caps_read_admin,
827
-                        EEM_Base::caps_edit,
828
-                        EEM_Base::caps_delete,
829
-                    ),
830
-                ),
831
-            )
832
-        );
833
-    }
834
-
835
-
836
-    /**
837
-     * Gets parameter information for a model regarding writing data
838
-     *
839
-     * @param string           $model_name
840
-     * @param ModelVersionInfo $model_version_info
841
-     * @param boolean          $create                                       whether this is for request to create (in
842
-     *                                                                       which case we need all required params) or
843
-     *                                                                       just to update (in which case we don't
844
-     *                                                                       need those on every request)
845
-     * @return array
846
-     */
847
-    protected function _get_write_params(
848
-        $model_name,
849
-        ModelVersionInfo $model_version_info,
850
-        $create = false
851
-    ) {
852
-        $model = EE_Registry::instance()->load_model($model_name);
853
-        $fields = $model_version_info->fieldsOnModelInThisVersion($model);
854
-        $args_info = array();
855
-        foreach ($fields as $field_name => $field_obj) {
856
-            if ($field_obj->is_auto_increment()) {
857
-                // totally ignore auto increment IDs
858
-                continue;
859
-            }
860
-            $arg_info = $field_obj->getSchema();
861
-            $required = $create && ! $field_obj->is_nullable() && $field_obj->get_default_value() === null;
862
-            $arg_info['required'] = $required;
863
-            // remove the read-only flag. If it were read-only we wouldn't list it as an argument while writing, right?
864
-            unset($arg_info['readonly']);
865
-            $schema_properties = $field_obj->getSchemaProperties();
866
-            if (isset($schema_properties['raw'])
867
-                && $field_obj->getSchemaType() === 'object'
868
-            ) {
869
-                // if there's a "raw" form of this argument, use those properties instead
870
-                $arg_info = array_replace(
871
-                    $arg_info,
872
-                    $schema_properties['raw']
873
-                );
874
-            }
875
-            $arg_info['default'] = ModelDataTranslator::prepareFieldValueForJson(
876
-                $field_obj,
877
-                $field_obj->get_default_value(),
878
-                $model_version_info->requestedVersion()
879
-            );
880
-            // we do our own validation and sanitization within the controller
881
-            if (function_exists('rest_validate_value_from_schema')) {
882
-                $sanitize_callback = array(
883
-                    'EED_Core_Rest_Api',
884
-                    'default_sanitize_callback',
885
-                );
886
-            } else {
887
-                $sanitize_callback = null;
888
-            }
889
-            $arg_info['sanitize_callback'] = $sanitize_callback;
890
-            $args_info[ $field_name ] = $arg_info;
891
-            if ($field_obj instanceof EE_Datetime_Field) {
892
-                $gmt_arg_info = $arg_info;
893
-                $gmt_arg_info['description'] = sprintf(
894
-                    esc_html__(
895
-                        '%1$s - the value for this field in UTC. Ignored if %2$s is provided.',
896
-                        'event_espresso'
897
-                    ),
898
-                    $field_obj->get_nicename(),
899
-                    $field_name
900
-                );
901
-                $args_info[ $field_name . '_gmt' ] = $gmt_arg_info;
902
-            }
903
-        }
904
-        return $args_info;
905
-    }
906
-
907
-
908
-    /**
909
-     * Replacement for WP API's 'rest_parse_request_arg'.
910
-     * If the value is blank but not required, don't bother validating it.
911
-     * Also, it uses our email validation instead of WP API's default.
912
-     *
913
-     * @param                 $value
914
-     * @param WP_REST_Request $request
915
-     * @param                 $param
916
-     * @return bool|true|WP_Error
917
-     * @throws InvalidArgumentException
918
-     * @throws InvalidInterfaceException
919
-     * @throws InvalidDataTypeException
920
-     */
921
-    public static function default_sanitize_callback($value, WP_REST_Request $request, $param)
922
-    {
923
-        $attributes = $request->get_attributes();
924
-        if (! isset($attributes['args'][ $param ])
925
-            || ! is_array($attributes['args'][ $param ])) {
926
-            $validation_result = true;
927
-        } else {
928
-            $args = $attributes['args'][ $param ];
929
-            if ((
930
-                    $value === ''
931
-                    || $value === null
932
-                )
933
-                && (! isset($args['required'])
934
-                    || $args['required'] === false
935
-                )
936
-            ) {
937
-                // not required and not provided? that's cool
938
-                $validation_result = true;
939
-            } elseif (isset($args['format'])
940
-                      && $args['format'] === 'email'
941
-            ) {
942
-                $validation_result = true;
943
-                if (! self::_validate_email($value)) {
944
-                    $validation_result = new WP_Error(
945
-                        'rest_invalid_param',
946
-                        esc_html__(
947
-                            'The email address is not valid or does not exist.',
948
-                            'event_espresso'
949
-                        )
950
-                    );
951
-                }
952
-            } else {
953
-                $validation_result = rest_validate_value_from_schema($value, $args, $param);
954
-            }
955
-        }
956
-        if (is_wp_error($validation_result)) {
957
-            return $validation_result;
958
-        }
959
-        return rest_sanitize_request_arg($value, $request, $param);
960
-    }
961
-
962
-
963
-    /**
964
-     * Returns whether or not this email address is valid. Copied from EE_Email_Validation_Strategy::_validate_email()
965
-     *
966
-     * @param $email
967
-     * @return bool
968
-     * @throws InvalidArgumentException
969
-     * @throws InvalidInterfaceException
970
-     * @throws InvalidDataTypeException
971
-     */
972
-    protected static function _validate_email($email)
973
-    {
974
-        try {
975
-            EmailAddressFactory::create($email);
976
-            return true;
977
-        } catch (EmailValidationException $e) {
978
-            return false;
979
-        }
980
-    }
981
-
982
-
983
-    /**
984
-     * Gets routes for the config
985
-     *
986
-     * @return array @see _register_model_routes
987
-     * @deprecated since version 4.9.1
988
-     */
989
-    protected function _register_config_routes()
990
-    {
991
-        $config_routes = array();
992
-        foreach (self::versions_served() as $version => $hidden_endpoint) {
993
-            $config_routes[ self::ee_api_namespace . $version ] = $this->_get_config_route_data_for_version(
994
-                $version,
995
-                $hidden_endpoint
996
-            );
997
-        }
998
-        return $config_routes;
999
-    }
1000
-
1001
-
1002
-    /**
1003
-     * Gets routes for the config for the specified version
1004
-     *
1005
-     * @param string  $version
1006
-     * @param boolean $hidden_endpoint
1007
-     * @return array
1008
-     */
1009
-    protected function _get_config_route_data_for_version($version, $hidden_endpoint)
1010
-    {
1011
-        return array(
1012
-            'config'    => array(
1013
-                array(
1014
-                    'callback'        => array(
1015
-                        'EventEspresso\core\libraries\rest_api\controllers\config\Read',
1016
-                        'handleRequest',
1017
-                    ),
1018
-                    'methods'         => WP_REST_Server::READABLE,
1019
-                    'hidden_endpoint' => $hidden_endpoint,
1020
-                    'callback_args'   => array($version),
1021
-                ),
1022
-            ),
1023
-            'site_info' => array(
1024
-                array(
1025
-                    'callback'        => array(
1026
-                        'EventEspresso\core\libraries\rest_api\controllers\config\Read',
1027
-                        'handleRequestSiteInfo',
1028
-                    ),
1029
-                    'methods'         => WP_REST_Server::READABLE,
1030
-                    'hidden_endpoint' => $hidden_endpoint,
1031
-                    'callback_args'   => array($version),
1032
-                ),
1033
-            ),
1034
-        );
1035
-    }
1036
-
1037
-
1038
-    /**
1039
-     * Gets the meta info routes
1040
-     *
1041
-     * @return array @see _register_model_routes
1042
-     * @deprecated since version 4.9.1
1043
-     */
1044
-    protected function _register_meta_routes()
1045
-    {
1046
-        $meta_routes = array();
1047
-        foreach (self::versions_served() as $version => $hidden_endpoint) {
1048
-            $meta_routes[ self::ee_api_namespace . $version ] = $this->_get_meta_route_data_for_version(
1049
-                $version,
1050
-                $hidden_endpoint
1051
-            );
1052
-        }
1053
-        return $meta_routes;
1054
-    }
1055
-
1056
-
1057
-    /**
1058
-     * @param string  $version
1059
-     * @param boolean $hidden_endpoint
1060
-     * @return array
1061
-     */
1062
-    protected function _get_meta_route_data_for_version($version, $hidden_endpoint = false)
1063
-    {
1064
-        return array(
1065
-            'resources' => array(
1066
-                array(
1067
-                    'callback'        => array(
1068
-                        'EventEspresso\core\libraries\rest_api\controllers\model\Meta',
1069
-                        'handleRequestModelsMeta',
1070
-                    ),
1071
-                    'methods'         => WP_REST_Server::READABLE,
1072
-                    'hidden_endpoint' => $hidden_endpoint,
1073
-                    'callback_args'   => array($version),
1074
-                ),
1075
-            ),
1076
-        );
1077
-    }
1078
-
1079
-
1080
-    /**
1081
-     * Tries to hide old 4.6 endpoints from the
1082
-     *
1083
-     * @param array $route_data
1084
-     * @return array
1085
-     * @throws \EE_Error
1086
-     */
1087
-    public static function hide_old_endpoints($route_data)
1088
-    {
1089
-        // allow API clients to override which endpoints get hidden, in case
1090
-        // they want to discover particular endpoints
1091
-        // also, we don't have access to the request so we have to just grab it from the superglobal
1092
-        $force_show_ee_namespace = ltrim(
1093
-            EEH_Array::is_set($_REQUEST, 'force_show_ee_namespace', ''),
1094
-            '/'
1095
-        );
1096
-        foreach (EED_Core_Rest_Api::get_ee_route_data() as $namespace => $relative_urls) {
1097
-            foreach ($relative_urls as $resource_name => $endpoints) {
1098
-                foreach ($endpoints as $key => $endpoint) {
1099
-                    // skip schema and other route options
1100
-                    if (! is_numeric($key)) {
1101
-                        continue;
1102
-                    }
1103
-                    // by default, hide "hidden_endpoint"s, unless the request indicates
1104
-                    // to $force_show_ee_namespace, in which case only show that one
1105
-                    // namespace's endpoints (and hide all others)
1106
-                    if (($force_show_ee_namespace !== '' && $force_show_ee_namespace !== $namespace)
1107
-                        || ($endpoint['hidden_endpoint'] && $force_show_ee_namespace === '')
1108
-                    ) {
1109
-                        $full_route = '/' . ltrim($namespace, '/');
1110
-                        $full_route .= '/' . ltrim($resource_name, '/');
1111
-                        unset($route_data[ $full_route ]);
1112
-                    }
1113
-                }
1114
-            }
1115
-        }
1116
-        return $route_data;
1117
-    }
1118
-
1119
-
1120
-    /**
1121
-     * Returns an array describing which versions of core support serving requests for.
1122
-     * Keys are core versions' major and minor version, and values are the
1123
-     * LOWEST requested version they can serve. Eg, 4.7 can serve requests for 4.6-like
1124
-     * data by just removing a few models and fields from the responses. However, 4.15 might remove
1125
-     * the answers table entirely, in which case it would be very difficult for
1126
-     * it to serve 4.6-style responses.
1127
-     * Versions of core that are missing from this array are unknowns.
1128
-     * previous ver
1129
-     *
1130
-     * @return array
1131
-     */
1132
-    public static function version_compatibilities()
1133
-    {
1134
-        return apply_filters(
1135
-            'FHEE__EED_Core_REST_API__version_compatibilities',
1136
-            array(
1137
-                '4.8.29' => '4.8.29',
1138
-                '4.8.33' => '4.8.29',
1139
-                '4.8.34' => '4.8.29',
1140
-                '4.8.36' => '4.8.29',
1141
-            )
1142
-        );
1143
-    }
1144
-
1145
-
1146
-    /**
1147
-     * Gets the latest API version served. Eg if there
1148
-     * are two versions served of the API, 4.8.29 and 4.8.32, and
1149
-     * we are on core version 4.8.34, it will return the string "4.8.32"
1150
-     *
1151
-     * @return string
1152
-     */
1153
-    public static function latest_rest_api_version()
1154
-    {
1155
-        $versions_served = \EED_Core_Rest_Api::versions_served();
1156
-        $versions_served_keys = array_keys($versions_served);
1157
-        return end($versions_served_keys);
1158
-    }
1159
-
1160
-
1161
-    /**
1162
-     * Using EED_Core_Rest_Api::version_compatibilities(), determines what version of
1163
-     * EE the API can serve requests for. Eg, if we are on 4.15 of core, and
1164
-     * we can serve requests from 4.12 or later, this will return array( '4.12', '4.13', '4.14', '4.15' ).
1165
-     * We also indicate whether or not this version should be put in the index or not
1166
-     *
1167
-     * @return array keys are API version numbers (just major and minor numbers), and values
1168
-     * are whether or not they should be hidden
1169
-     */
1170
-    public static function versions_served()
1171
-    {
1172
-        $versions_served = array();
1173
-        $possibly_served_versions = EED_Core_Rest_Api::version_compatibilities();
1174
-        $lowest_compatible_version = end($possibly_served_versions);
1175
-        reset($possibly_served_versions);
1176
-        $versions_served_historically = array_keys($possibly_served_versions);
1177
-        $latest_version = end($versions_served_historically);
1178
-        reset($versions_served_historically);
1179
-        // for each version of core we have ever served:
1180
-        foreach ($versions_served_historically as $key_versioned_endpoint) {
1181
-            // if it's not above the current core version, and it's compatible with the current version of core
1182
-            if ($key_versioned_endpoint === $latest_version) {
1183
-                // don't hide the latest version in the index
1184
-                $versions_served[ $key_versioned_endpoint ] = false;
1185
-            } elseif ($key_versioned_endpoint >= $lowest_compatible_version
1186
-                && $key_versioned_endpoint < EED_Core_Rest_Api::core_version()
1187
-            ) {
1188
-                // include, but hide, previous versions which are still supported
1189
-                $versions_served[ $key_versioned_endpoint ] = true;
1190
-            } elseif (apply_filters(
1191
-                'FHEE__EED_Core_Rest_Api__versions_served__include_incompatible_versions',
1192
-                false,
1193
-                $possibly_served_versions
1194
-            )) {
1195
-                // if a version is no longer supported, don't include it in index or list of versions served
1196
-                $versions_served[ $key_versioned_endpoint ] = true;
1197
-            }
1198
-        }
1199
-        return $versions_served;
1200
-    }
1201
-
1202
-
1203
-    /**
1204
-     * Gets the major and minor version of EE core's version string
1205
-     *
1206
-     * @return string
1207
-     */
1208
-    public static function core_version()
1209
-    {
1210
-        return apply_filters(
1211
-            'FHEE__EED_Core_REST_API__core_version',
1212
-            implode(
1213
-                '.',
1214
-                array_slice(
1215
-                    explode(
1216
-                        '.',
1217
-                        espresso_version()
1218
-                    ),
1219
-                    0,
1220
-                    3
1221
-                )
1222
-            )
1223
-        );
1224
-    }
1225
-
1226
-
1227
-    /**
1228
-     * Gets the default limit that should be used when querying for resources
1229
-     *
1230
-     * @return int
1231
-     */
1232
-    public static function get_default_query_limit()
1233
-    {
1234
-        // we actually don't use a const because we want folks to always use
1235
-        // this method, not the const directly
1236
-        return apply_filters(
1237
-            'FHEE__EED_Core_Rest_Api__get_default_query_limit',
1238
-            50
1239
-        );
1240
-    }
1241
-
1242
-
1243
-    /**
1244
-     *
1245
-     * @param string $version api version string (i.e. '4.8.36')
1246
-     * @return array
1247
-     */
1248
-    public static function getCollectionRoutesIndexedByModelName($version = '')
1249
-    {
1250
-        $version = empty($version) ? self::latest_rest_api_version() : $version;
1251
-        $model_names = self::model_names_with_plural_routes($version);
1252
-        $collection_routes = array();
1253
-        foreach ($model_names as $model_name => $model_class_name) {
1254
-            $collection_routes[ strtolower($model_name) ] = '/' . self::ee_api_namespace . $version . '/'
1255
-                                                            . EEH_Inflector::pluralize_and_lower($model_name);
1256
-        }
1257
-        return $collection_routes;
1258
-    }
1259
-
1260
-
1261
-    /**
1262
-     * Returns an array of primary key names indexed by model names.
1263
-     * @param string $version
1264
-     * @return array
1265
-     */
1266
-    public static function getPrimaryKeyNamesIndexedByModelName($version = '')
1267
-    {
1268
-        $version = empty($version) ? self::latest_rest_api_version() : $version;
1269
-        $model_names = self::model_names_with_plural_routes($version);
1270
-        $primary_key_items = array();
1271
-        foreach ($model_names as $model_name => $model_class_name) {
1272
-            $primary_keys = $model_class_name::instance()->get_combined_primary_key_fields();
1273
-            foreach ($primary_keys as $primary_key_name => $primary_key_field) {
1274
-                if (count($primary_keys) > 1) {
1275
-                    $primary_key_items[ strtolower($model_name) ][] = $primary_key_name;
1276
-                } else {
1277
-                    $primary_key_items[ strtolower($model_name) ] = $primary_key_name;
1278
-                }
1279
-            }
1280
-        }
1281
-        return $primary_key_items;
1282
-    }
1283
-
1284
-    /**
1285
-     * Determines the EE REST API debug mode is activated, or not.
1286
-     * @since 4.9.72.p
1287
-     * @return bool
1288
-     */
1289
-    public static function debugMode()
1290
-    {
1291
-        static $debug_mode = null; // could be class prop
1292
-        if ($debug_mode === null) {
1293
-            $debug_mode = defined('EE_REST_API_DEBUG_MODE') && EE_REST_API_DEBUG_MODE;
1294
-        }
1295
-        return $debug_mode;
1296
-    }
1297
-
1298
-
1299
-
1300
-    /**
1301
-     *    run - initial module setup
1302
-     *
1303
-     * @access    public
1304
-     * @param  WP $WP
1305
-     * @return    void
1306
-     */
1307
-    public function run($WP)
1308
-    {
1309
-    }
26
+	const ee_api_namespace = Domain::API_NAMESPACE;
27
+
28
+	const ee_api_namespace_for_regex = 'ee\/v([^/]*)\/';
29
+
30
+	const saved_routes_option_names = 'ee_core_routes';
31
+
32
+	/**
33
+	 * string used in _links response bodies to make them globally unique.
34
+	 *
35
+	 * @see http://v2.wp-api.org/extending/linking/
36
+	 */
37
+	const ee_api_link_namespace = 'https://api.eventespresso.com/';
38
+
39
+	/**
40
+	 * @var CalculatedModelFields
41
+	 */
42
+	protected static $_field_calculator;
43
+
44
+
45
+	/**
46
+	 * @return EED_Core_Rest_Api|EED_Module
47
+	 */
48
+	public static function instance()
49
+	{
50
+		self::$_field_calculator = LoaderFactory::getLoader()->load('EventEspresso\core\libraries\rest_api\CalculatedModelFields');
51
+		return parent::get_instance(__CLASS__);
52
+	}
53
+
54
+
55
+	/**
56
+	 *    set_hooks - for hooking into EE Core, other modules, etc
57
+	 *
58
+	 * @access    public
59
+	 * @return    void
60
+	 */
61
+	public static function set_hooks()
62
+	{
63
+		self::set_hooks_both();
64
+	}
65
+
66
+
67
+	/**
68
+	 *    set_hooks_admin - for hooking into EE Admin Core, other modules, etc
69
+	 *
70
+	 * @access    public
71
+	 * @return    void
72
+	 */
73
+	public static function set_hooks_admin()
74
+	{
75
+		self::set_hooks_both();
76
+	}
77
+
78
+
79
+	public static function set_hooks_both()
80
+	{
81
+		add_action('rest_api_init', array('EED_Core_Rest_Api', 'register_routes'), 10);
82
+		add_action('rest_api_init', array('EED_Core_Rest_Api', 'set_hooks_rest_api'), 5);
83
+		add_filter('rest_route_data', array('EED_Core_Rest_Api', 'hide_old_endpoints'), 10, 2);
84
+		add_filter(
85
+			'rest_index',
86
+			array('EventEspresso\core\libraries\rest_api\controllers\model\Meta', 'filterEeMetadataIntoIndex')
87
+		);
88
+		EED_Core_Rest_Api::invalidate_cached_route_data_on_version_change();
89
+	}
90
+
91
+
92
+	/**
93
+	 * sets up hooks which only need to be included as part of REST API requests;
94
+	 * other requests like to the frontend or admin etc don't need them
95
+	 *
96
+	 * @throws \EE_Error
97
+	 */
98
+	public static function set_hooks_rest_api()
99
+	{
100
+		// set hooks which account for changes made to the API
101
+		EED_Core_Rest_Api::_set_hooks_for_changes();
102
+	}
103
+
104
+
105
+	/**
106
+	 * public wrapper of _set_hooks_for_changes.
107
+	 * Loads all the hooks which make requests to old versions of the API
108
+	 * appear the same as they always did
109
+	 *
110
+	 * @throws EE_Error
111
+	 */
112
+	public static function set_hooks_for_changes()
113
+	{
114
+		self::_set_hooks_for_changes();
115
+	}
116
+
117
+
118
+	/**
119
+	 * Loads all the hooks which make requests to old versions of the API
120
+	 * appear the same as they always did
121
+	 *
122
+	 * @throws EE_Error
123
+	 */
124
+	protected static function _set_hooks_for_changes()
125
+	{
126
+		$folder_contents = EEH_File::get_contents_of_folders(array(EE_LIBRARIES . 'rest_api' . DS . 'changes'), false);
127
+		foreach ($folder_contents as $classname_in_namespace => $filepath) {
128
+			// ignore the base parent class
129
+			// and legacy named classes
130
+			if ($classname_in_namespace === 'ChangesInBase'
131
+				|| strpos($classname_in_namespace, 'Changes_In_') === 0
132
+			) {
133
+				continue;
134
+			}
135
+			$full_classname = 'EventEspresso\core\libraries\rest_api\changes\\' . $classname_in_namespace;
136
+			if (class_exists($full_classname)) {
137
+				$instance_of_class = new $full_classname;
138
+				if ($instance_of_class instanceof ChangesInBase) {
139
+					$instance_of_class->setHooks();
140
+				}
141
+			}
142
+		}
143
+	}
144
+
145
+
146
+	/**
147
+	 * Filters the WP routes to add our EE-related ones. This takes a bit of time
148
+	 * so we actually prefer to only do it when an EE plugin is activated or upgraded
149
+	 *
150
+	 * @throws \EE_Error
151
+	 */
152
+	public static function register_routes()
153
+	{
154
+		foreach (EED_Core_Rest_Api::get_ee_route_data() as $namespace => $relative_routes) {
155
+			foreach ($relative_routes as $relative_route => $data_for_multiple_endpoints) {
156
+				/**
157
+				 * @var array     $data_for_multiple_endpoints numerically indexed array
158
+				 *                                         but can also contain route options like {
159
+				 * @type array    $schema                      {
160
+				 * @type callable $schema_callback
161
+				 * @type array    $callback_args               arguments that will be passed to the callback, after the
162
+				 * WP_REST_Request of course
163
+				 * }
164
+				 * }
165
+				 */
166
+				// when registering routes, register all the endpoints' data at the same time
167
+				$multiple_endpoint_args = array();
168
+				foreach ($data_for_multiple_endpoints as $endpoint_key => $data_for_single_endpoint) {
169
+					/**
170
+					 * @var array     $data_for_single_endpoint {
171
+					 * @type callable $callback
172
+					 * @type string methods
173
+					 * @type array args
174
+					 * @type array _links
175
+					 * @type array    $callback_args            arguments that will be passed to the callback, after the
176
+					 * WP_REST_Request of course
177
+					 * }
178
+					 */
179
+					// skip route options
180
+					if (! is_numeric($endpoint_key)) {
181
+						continue;
182
+					}
183
+					if (! isset($data_for_single_endpoint['callback'], $data_for_single_endpoint['methods'])) {
184
+						throw new EE_Error(
185
+							esc_html__(
186
+							// @codingStandardsIgnoreStart
187
+								'Endpoint configuration data needs to have entries "callback" (callable) and "methods" (comma-separated list of accepts HTTP methods).',
188
+								// @codingStandardsIgnoreEnd
189
+								'event_espresso'
190
+							)
191
+						);
192
+					}
193
+					$callback = $data_for_single_endpoint['callback'];
194
+					$single_endpoint_args = array(
195
+						'methods' => $data_for_single_endpoint['methods'],
196
+						'args'    => isset($data_for_single_endpoint['args']) ? $data_for_single_endpoint['args']
197
+							: array(),
198
+					);
199
+					if (isset($data_for_single_endpoint['_links'])) {
200
+						$single_endpoint_args['_links'] = $data_for_single_endpoint['_links'];
201
+					}
202
+					if (isset($data_for_single_endpoint['callback_args'])) {
203
+						$callback_args = $data_for_single_endpoint['callback_args'];
204
+						$single_endpoint_args['callback'] = function (\WP_REST_Request $request) use (
205
+							$callback,
206
+							$callback_args
207
+						) {
208
+							array_unshift($callback_args, $request);
209
+							return call_user_func_array(
210
+								$callback,
211
+								$callback_args
212
+							);
213
+						};
214
+					} else {
215
+						$single_endpoint_args['callback'] = $data_for_single_endpoint['callback'];
216
+					}
217
+					$multiple_endpoint_args[] = $single_endpoint_args;
218
+				}
219
+				if (isset($data_for_multiple_endpoints['schema'])) {
220
+					$schema_route_data = $data_for_multiple_endpoints['schema'];
221
+					$schema_callback = $schema_route_data['schema_callback'];
222
+					$callback_args = $schema_route_data['callback_args'];
223
+					$multiple_endpoint_args['schema'] = function () use ($schema_callback, $callback_args) {
224
+						return call_user_func_array(
225
+							$schema_callback,
226
+							$callback_args
227
+						);
228
+					};
229
+				}
230
+				register_rest_route(
231
+					$namespace,
232
+					$relative_route,
233
+					$multiple_endpoint_args
234
+				);
235
+			}
236
+		}
237
+	}
238
+
239
+
240
+	/**
241
+	 * Checks if there was a version change or something that merits invalidating the cached
242
+	 * route data. If so, invalidates the cached route data so that it gets refreshed
243
+	 * next time the WP API is used
244
+	 */
245
+	public static function invalidate_cached_route_data_on_version_change()
246
+	{
247
+		if (EE_System::instance()->detect_req_type() !== EE_System::req_type_normal) {
248
+			EED_Core_Rest_Api::invalidate_cached_route_data();
249
+		}
250
+		foreach (EE_Registry::instance()->addons as $addon) {
251
+			if ($addon instanceof EE_Addon && $addon->detect_req_type() !== EE_System::req_type_normal) {
252
+				EED_Core_Rest_Api::invalidate_cached_route_data();
253
+			}
254
+		}
255
+	}
256
+
257
+
258
+	/**
259
+	 * Removes the cached route data so it will get refreshed next time the WP API is used
260
+	 */
261
+	public static function invalidate_cached_route_data()
262
+	{
263
+		// delete the saved EE REST API routes
264
+		foreach (EED_Core_Rest_Api::versions_served() as $version => $hidden) {
265
+			delete_option(EED_Core_Rest_Api::saved_routes_option_names . $version);
266
+		}
267
+	}
268
+
269
+
270
+	/**
271
+	 * Gets the EE route data
272
+	 *
273
+	 * @return array top-level key is the namespace, next-level key is the route and its value is array{
274
+	 * @throws \EE_Error
275
+	 * @type string|array $callback
276
+	 * @type string       $methods
277
+	 * @type boolean      $hidden_endpoint
278
+	 * }
279
+	 */
280
+	public static function get_ee_route_data()
281
+	{
282
+		$ee_routes = array();
283
+		foreach (self::versions_served() as $version => $hidden_endpoints) {
284
+			$ee_routes[ self::ee_api_namespace . $version ] = self::_get_ee_route_data_for_version(
285
+				$version,
286
+				$hidden_endpoints
287
+			);
288
+		}
289
+		return $ee_routes;
290
+	}
291
+
292
+
293
+	/**
294
+	 * Gets the EE route data from the wp options if it exists already,
295
+	 * otherwise re-generates it and saves it to the option
296
+	 *
297
+	 * @param string  $version
298
+	 * @param boolean $hidden_endpoints
299
+	 * @return array
300
+	 * @throws \EE_Error
301
+	 */
302
+	protected static function _get_ee_route_data_for_version($version, $hidden_endpoints = false)
303
+	{
304
+		$ee_routes = get_option(self::saved_routes_option_names . $version, null);
305
+		if (! $ee_routes || EED_Core_Rest_Api::debugMode()) {
306
+			$ee_routes = self::_save_ee_route_data_for_version($version, $hidden_endpoints);
307
+		}
308
+		return $ee_routes;
309
+	}
310
+
311
+
312
+	/**
313
+	 * Saves the EE REST API route data to a wp option and returns it
314
+	 *
315
+	 * @param string  $version
316
+	 * @param boolean $hidden_endpoints
317
+	 * @return mixed|null
318
+	 * @throws \EE_Error
319
+	 */
320
+	protected static function _save_ee_route_data_for_version($version, $hidden_endpoints = false)
321
+	{
322
+		$instance = self::instance();
323
+		$routes = apply_filters(
324
+			'EED_Core_Rest_Api__save_ee_route_data_for_version__routes',
325
+			array_replace_recursive(
326
+				$instance->_get_config_route_data_for_version($version, $hidden_endpoints),
327
+				$instance->_get_meta_route_data_for_version($version, $hidden_endpoints),
328
+				$instance->_get_model_route_data_for_version($version, $hidden_endpoints),
329
+				$instance->_get_rpc_route_data_for_version($version, $hidden_endpoints)
330
+			)
331
+		);
332
+		$option_name = self::saved_routes_option_names . $version;
333
+		if (get_option($option_name)) {
334
+			update_option($option_name, $routes, true);
335
+		} else {
336
+			add_option($option_name, $routes, null, 'no');
337
+		}
338
+		return $routes;
339
+	}
340
+
341
+
342
+	/**
343
+	 * Calculates all the EE routes and saves it to a WordPress option so we don't
344
+	 * need to calculate it on every request
345
+	 *
346
+	 * @deprecated since version 4.9.1
347
+	 * @return void
348
+	 */
349
+	public static function save_ee_routes()
350
+	{
351
+		if (EE_Maintenance_Mode::instance()->models_can_query()) {
352
+			$instance = self::instance();
353
+			$routes = apply_filters(
354
+				'EED_Core_Rest_Api__save_ee_routes__routes',
355
+				array_replace_recursive(
356
+					$instance->_register_config_routes(),
357
+					$instance->_register_meta_routes(),
358
+					$instance->_register_model_routes(),
359
+					$instance->_register_rpc_routes()
360
+				)
361
+			);
362
+			update_option(self::saved_routes_option_names, $routes, true);
363
+		}
364
+	}
365
+
366
+
367
+	/**
368
+	 * Gets all the route information relating to EE models
369
+	 *
370
+	 * @return array @see get_ee_route_data
371
+	 * @deprecated since version 4.9.1
372
+	 */
373
+	protected function _register_model_routes()
374
+	{
375
+		$model_routes = array();
376
+		foreach (self::versions_served() as $version => $hidden_endpoint) {
377
+			$model_routes[ EED_Core_Rest_Api::ee_api_namespace
378
+						   . $version ] = $this->_get_config_route_data_for_version($version, $hidden_endpoint);
379
+		}
380
+		return $model_routes;
381
+	}
382
+
383
+
384
+	/**
385
+	 * Decides whether or not to add write endpoints for this model.
386
+	 *
387
+	 * Currently, this defaults to exclude all global tables and models
388
+	 * which would allow inserting WP core data (we don't want to duplicate
389
+	 * what WP API does, as it's unnecessary, extra work, and potentially extra bugs)
390
+	 *
391
+	 * @param EEM_Base $model
392
+	 * @return bool
393
+	 */
394
+	public static function should_have_write_endpoints(EEM_Base $model)
395
+	{
396
+		if ($model->is_wp_core_model()) {
397
+			return false;
398
+		}
399
+		foreach ($model->get_tables() as $table) {
400
+			if ($table->is_global()) {
401
+				return false;
402
+			}
403
+		}
404
+		return true;
405
+	}
406
+
407
+
408
+	/**
409
+	 * Gets the names of all models which should have plural routes (eg `ee/v4.8.36/events`)
410
+	 * in this versioned namespace of EE4
411
+	 *
412
+	 * @param $version
413
+	 * @return array keys are model names (eg 'Event') and values ar either classnames (eg 'EEM_Event')
414
+	 */
415
+	public static function model_names_with_plural_routes($version)
416
+	{
417
+		$model_version_info = new ModelVersionInfo($version);
418
+		$models_to_register = $model_version_info->modelsForRequestedVersion();
419
+		// let's not bother having endpoints for extra metas
420
+		unset(
421
+			$models_to_register['Extra_Meta'],
422
+			$models_to_register['Extra_Join'],
423
+			$models_to_register['Post_Meta']
424
+		);
425
+		return apply_filters(
426
+			'FHEE__EED_Core_REST_API___register_model_routes',
427
+			$models_to_register
428
+		);
429
+	}
430
+
431
+
432
+	/**
433
+	 * Gets the route data for EE models in the specified version
434
+	 *
435
+	 * @param string  $version
436
+	 * @param boolean $hidden_endpoint
437
+	 * @return array
438
+	 * @throws EE_Error
439
+	 */
440
+	protected function _get_model_route_data_for_version($version, $hidden_endpoint = false)
441
+	{
442
+		$model_routes = array();
443
+		$model_version_info = new ModelVersionInfo($version);
444
+		foreach (EED_Core_Rest_Api::model_names_with_plural_routes($version) as $model_name => $model_classname) {
445
+			$model = \EE_Registry::instance()->load_model($model_name);
446
+			// if this isn't a valid model then let's skip iterate to the next item in the loop.
447
+			if (! $model instanceof EEM_Base) {
448
+				continue;
449
+			}
450
+			// yes we could just register one route for ALL models, but then they wouldn't show up in the index
451
+			$plural_model_route = EED_Core_Rest_Api::get_collection_route($model);
452
+			$singular_model_route = EED_Core_Rest_Api::get_entity_route($model, '(?P<id>[^\/]+)');
453
+			$model_routes[ $plural_model_route ] = array(
454
+				array(
455
+					'callback'        => array(
456
+						'EventEspresso\core\libraries\rest_api\controllers\model\Read',
457
+						'handleRequestGetAll',
458
+					),
459
+					'callback_args'   => array($version, $model_name),
460
+					'methods'         => WP_REST_Server::READABLE,
461
+					'hidden_endpoint' => $hidden_endpoint,
462
+					'args'            => $this->_get_read_query_params($model, $version),
463
+					'_links'          => array(
464
+						'self' => rest_url(EED_Core_Rest_Api::ee_api_namespace . $version . $singular_model_route),
465
+					),
466
+				),
467
+				'schema' => array(
468
+					'schema_callback' => array(
469
+						'EventEspresso\core\libraries\rest_api\controllers\model\Read',
470
+						'handleSchemaRequest',
471
+					),
472
+					'callback_args'   => array($version, $model_name),
473
+				),
474
+			);
475
+			$model_routes[ $singular_model_route ] = array(
476
+				array(
477
+					'callback'        => array(
478
+						'EventEspresso\core\libraries\rest_api\controllers\model\Read',
479
+						'handleRequestGetOne',
480
+					),
481
+					'callback_args'   => array($version, $model_name),
482
+					'methods'         => WP_REST_Server::READABLE,
483
+					'hidden_endpoint' => $hidden_endpoint,
484
+					'args'            => $this->_get_response_selection_query_params($model, $version, true),
485
+				),
486
+			);
487
+			if (apply_filters(
488
+				'FHEE__EED_Core_Rest_Api___get_model_route_data_for_version__add_write_endpoints',
489
+				EED_Core_Rest_Api::should_have_write_endpoints($model),
490
+				$model
491
+			)) {
492
+				$model_routes[ $plural_model_route ][] = array(
493
+					'callback'        => array(
494
+						'EventEspresso\core\libraries\rest_api\controllers\model\Write',
495
+						'handleRequestInsert',
496
+					),
497
+					'callback_args'   => array($version, $model_name),
498
+					'methods'         => WP_REST_Server::CREATABLE,
499
+					'hidden_endpoint' => $hidden_endpoint,
500
+					'args'            => $this->_get_write_params($model_name, $model_version_info, true),
501
+				);
502
+				$model_routes[ $singular_model_route ] = array_merge(
503
+					$model_routes[ $singular_model_route ],
504
+					array(
505
+						array(
506
+							'callback'        => array(
507
+								'EventEspresso\core\libraries\rest_api\controllers\model\Write',
508
+								'handleRequestUpdate',
509
+							),
510
+							'callback_args'   => array($version, $model_name),
511
+							'methods'         => WP_REST_Server::EDITABLE,
512
+							'hidden_endpoint' => $hidden_endpoint,
513
+							'args'            => $this->_get_write_params($model_name, $model_version_info),
514
+						),
515
+						array(
516
+							'callback'        => array(
517
+								'EventEspresso\core\libraries\rest_api\controllers\model\Write',
518
+								'handleRequestDelete',
519
+							),
520
+							'callback_args'   => array($version, $model_name),
521
+							'methods'         => WP_REST_Server::DELETABLE,
522
+							'hidden_endpoint' => $hidden_endpoint,
523
+							'args'            => $this->_get_delete_query_params($model, $version),
524
+						),
525
+					)
526
+				);
527
+			}
528
+			foreach ($model->relation_settings() as $relation_name => $relation_obj) {
529
+				$related_route = EED_Core_Rest_Api::get_relation_route_via(
530
+					$model,
531
+					'(?P<id>[^\/]+)',
532
+					$relation_obj
533
+				);
534
+				$endpoints = array(
535
+					array(
536
+						'callback'        => array(
537
+							'EventEspresso\core\libraries\rest_api\controllers\model\Read',
538
+							'handleRequestGetRelated',
539
+						),
540
+						'callback_args'   => array($version, $model_name, $relation_name),
541
+						'methods'         => WP_REST_Server::READABLE,
542
+						'hidden_endpoint' => $hidden_endpoint,
543
+						'args'            => $this->_get_read_query_params($relation_obj->get_other_model(), $version),
544
+					),
545
+				);
546
+				$model_routes[ $related_route ] = $endpoints;
547
+			}
548
+		}
549
+		return $model_routes;
550
+	}
551
+
552
+
553
+	/**
554
+	 * Gets the relative URI to a model's REST API plural route, after the EE4 versioned namespace,
555
+	 * excluding the preceding slash.
556
+	 * Eg you pass get_plural_route_to('Event') = 'events'
557
+	 *
558
+	 * @param EEM_Base $model
559
+	 * @return string
560
+	 */
561
+	public static function get_collection_route(EEM_Base $model)
562
+	{
563
+		return EEH_Inflector::pluralize_and_lower($model->get_this_model_name());
564
+	}
565
+
566
+
567
+	/**
568
+	 * Gets the relative URI to a model's REST API singular route, after the EE4 versioned namespace,
569
+	 * excluding the preceding slash.
570
+	 * Eg you pass get_plural_route_to('Event', 12) = 'events/12'
571
+	 *
572
+	 * @param EEM_Base $model eg Event or Venue
573
+	 * @param string   $id
574
+	 * @return string
575
+	 */
576
+	public static function get_entity_route($model, $id)
577
+	{
578
+		return EED_Core_Rest_Api::get_collection_route($model) . '/' . $id;
579
+	}
580
+
581
+
582
+	/**
583
+	 * Gets the relative URI to a model's REST API singular route, after the EE4 versioned namespace,
584
+	 * excluding the preceding slash.
585
+	 * Eg you pass get_plural_route_to('Event', 12) = 'events/12'
586
+	 *
587
+	 * @param EEM_Base               $model eg Event or Venue
588
+	 * @param string                 $id
589
+	 * @param EE_Model_Relation_Base $relation_obj
590
+	 * @return string
591
+	 */
592
+	public static function get_relation_route_via(EEM_Base $model, $id, EE_Model_Relation_Base $relation_obj)
593
+	{
594
+		$related_model_name_endpoint_part = ModelRead::getRelatedEntityName(
595
+			$relation_obj->get_other_model()->get_this_model_name(),
596
+			$relation_obj
597
+		);
598
+		return EED_Core_Rest_Api::get_entity_route($model, $id) . '/' . $related_model_name_endpoint_part;
599
+	}
600
+
601
+
602
+	/**
603
+	 * Adds onto the $relative_route the EE4 REST API versioned namespace.
604
+	 * Eg if given '4.8.36' and 'events', will return 'ee/v4.8.36/events'
605
+	 *
606
+	 * @param string $relative_route
607
+	 * @param string $version
608
+	 * @return string
609
+	 */
610
+	public static function get_versioned_route_to($relative_route, $version = '4.8.36')
611
+	{
612
+		return '/' . EED_Core_Rest_Api::ee_api_namespace . $version . '/' . $relative_route;
613
+	}
614
+
615
+
616
+	/**
617
+	 * Adds all the RPC-style routes (remote procedure call-like routes, ie
618
+	 * routes that don't conform to the traditional REST CRUD-style).
619
+	 *
620
+	 * @deprecated since 4.9.1
621
+	 */
622
+	protected function _register_rpc_routes()
623
+	{
624
+		$routes = array();
625
+		foreach (self::versions_served() as $version => $hidden_endpoint) {
626
+			$routes[ self::ee_api_namespace . $version ] = $this->_get_rpc_route_data_for_version(
627
+				$version,
628
+				$hidden_endpoint
629
+			);
630
+		}
631
+		return $routes;
632
+	}
633
+
634
+
635
+	/**
636
+	 * @param string  $version
637
+	 * @param boolean $hidden_endpoint
638
+	 * @return array
639
+	 */
640
+	protected function _get_rpc_route_data_for_version($version, $hidden_endpoint = false)
641
+	{
642
+		$this_versions_routes = array();
643
+		// checkin endpoint
644
+		$this_versions_routes['registrations/(?P<REG_ID>\d+)/toggle_checkin_for_datetime/(?P<DTT_ID>\d+)'] = array(
645
+			array(
646
+				'callback'        => array(
647
+					'EventEspresso\core\libraries\rest_api\controllers\rpc\Checkin',
648
+					'handleRequestToggleCheckin',
649
+				),
650
+				'methods'         => WP_REST_Server::CREATABLE,
651
+				'hidden_endpoint' => $hidden_endpoint,
652
+				'args'            => array(
653
+					'force' => array(
654
+						'required'    => false,
655
+						'default'     => false,
656
+						'description' => __(
657
+						// @codingStandardsIgnoreStart
658
+							'Whether to force toggle checkin, or to verify the registration status and allowed ticket uses',
659
+							// @codingStandardsIgnoreEnd
660
+							'event_espresso'
661
+						),
662
+					),
663
+				),
664
+				'callback_args'   => array($version),
665
+			),
666
+		);
667
+		return apply_filters(
668
+			'FHEE__EED_Core_Rest_Api___register_rpc_routes__this_versions_routes',
669
+			$this_versions_routes,
670
+			$version,
671
+			$hidden_endpoint
672
+		);
673
+	}
674
+
675
+
676
+	/**
677
+	 * Gets the query params that can be used when request one or many
678
+	 *
679
+	 * @param EEM_Base $model
680
+	 * @param string   $version
681
+	 * @return array
682
+	 */
683
+	protected function _get_response_selection_query_params(\EEM_Base $model, $version, $single_only = false)
684
+	{
685
+		$query_params = array(
686
+			'include'   => array(
687
+				'required' => false,
688
+				'default'  => '*',
689
+				'type'     => 'string',
690
+			),
691
+			'calculate' => array(
692
+				'required'          => false,
693
+				'default'           => '',
694
+				'enum'              => self::$_field_calculator->retrieveCalculatedFieldsForModel($model),
695
+				'type'              => 'string',
696
+				// because we accept a CSV'd list of the enumerated strings, WP core validation and sanitization
697
+				// freaks out. We'll just validate this argument while handling the request
698
+				'validate_callback' => null,
699
+				'sanitize_callback' => null,
700
+			),
701
+			'password' => array(
702
+				'required' => false,
703
+				'default' => '',
704
+				'type' => 'string'
705
+			)
706
+		);
707
+		return apply_filters(
708
+			'FHEE__EED_Core_Rest_Api___get_response_selection_query_params',
709
+			$query_params,
710
+			$model,
711
+			$version
712
+		);
713
+	}
714
+
715
+
716
+	/**
717
+	 * Gets the parameters acceptable for delete requests
718
+	 *
719
+	 * @param \EEM_Base $model
720
+	 * @param string    $version
721
+	 * @return array
722
+	 */
723
+	protected function _get_delete_query_params(\EEM_Base $model, $version)
724
+	{
725
+		$params_for_delete = array(
726
+			'allow_blocking' => array(
727
+				'required' => false,
728
+				'default'  => true,
729
+				'type'     => 'boolean',
730
+			),
731
+		);
732
+		$params_for_delete['force'] = array(
733
+			'required' => false,
734
+			'default'  => false,
735
+			'type'     => 'boolean',
736
+		);
737
+		return apply_filters(
738
+			'FHEE__EED_Core_Rest_Api___get_delete_query_params',
739
+			$params_for_delete,
740
+			$model,
741
+			$version
742
+		);
743
+	}
744
+
745
+
746
+	/**
747
+	 * Gets info about reading query params that are acceptable
748
+	 *
749
+	 * @param \EEM_Base $model eg 'Event' or 'Venue'
750
+	 * @param  string   $version
751
+	 * @return array    describing the args acceptable when querying this model
752
+	 * @throws EE_Error
753
+	 */
754
+	protected function _get_read_query_params(\EEM_Base $model, $version)
755
+	{
756
+		$default_orderby = array();
757
+		foreach ($model->get_combined_primary_key_fields() as $key_field) {
758
+			$default_orderby[ $key_field->get_name() ] = 'ASC';
759
+		}
760
+		return array_merge(
761
+			$this->_get_response_selection_query_params($model, $version),
762
+			array(
763
+				'where'    => array(
764
+					'required'          => false,
765
+					'default'           => array(),
766
+					'type'              => 'object',
767
+					// because we accept an almost infinite list of possible where conditions, WP
768
+					// core validation and sanitization freaks out. We'll just validate this argument
769
+					// while handling the request
770
+					'validate_callback' => null,
771
+					'sanitize_callback' => null,
772
+				),
773
+				'limit'    => array(
774
+					'required'          => false,
775
+					'default'           => EED_Core_Rest_Api::get_default_query_limit(),
776
+					'type'              => array(
777
+						'array',
778
+						'string',
779
+						'integer',
780
+					),
781
+					// because we accept a variety of types, WP core validation and sanitization
782
+					// freaks out. We'll just validate this argument while handling the request
783
+					'validate_callback' => null,
784
+					'sanitize_callback' => null,
785
+				),
786
+				'order_by' => array(
787
+					'required'          => false,
788
+					'default'           => $default_orderby,
789
+					'type'              => array(
790
+						'object',
791
+						'string',
792
+					),// because we accept a variety of types, WP core validation and sanitization
793
+					// freaks out. We'll just validate this argument while handling the request
794
+					'validate_callback' => null,
795
+					'sanitize_callback' => null,
796
+				),
797
+				'group_by' => array(
798
+					'required'          => false,
799
+					'default'           => null,
800
+					'type'              => array(
801
+						'object',
802
+						'string',
803
+					),
804
+					// because we accept  an almost infinite list of possible groupings,
805
+					// WP core validation and sanitization
806
+					// freaks out. We'll just validate this argument while handling the request
807
+					'validate_callback' => null,
808
+					'sanitize_callback' => null,
809
+				),
810
+				'having'   => array(
811
+					'required'          => false,
812
+					'default'           => null,
813
+					'type'              => 'object',
814
+					// because we accept an almost infinite list of possible where conditions, WP
815
+					// core validation and sanitization freaks out. We'll just validate this argument
816
+					// while handling the request
817
+					'validate_callback' => null,
818
+					'sanitize_callback' => null,
819
+				),
820
+				'caps'     => array(
821
+					'required' => false,
822
+					'default'  => EEM_Base::caps_read,
823
+					'type'     => 'string',
824
+					'enum'     => array(
825
+						EEM_Base::caps_read,
826
+						EEM_Base::caps_read_admin,
827
+						EEM_Base::caps_edit,
828
+						EEM_Base::caps_delete,
829
+					),
830
+				),
831
+			)
832
+		);
833
+	}
834
+
835
+
836
+	/**
837
+	 * Gets parameter information for a model regarding writing data
838
+	 *
839
+	 * @param string           $model_name
840
+	 * @param ModelVersionInfo $model_version_info
841
+	 * @param boolean          $create                                       whether this is for request to create (in
842
+	 *                                                                       which case we need all required params) or
843
+	 *                                                                       just to update (in which case we don't
844
+	 *                                                                       need those on every request)
845
+	 * @return array
846
+	 */
847
+	protected function _get_write_params(
848
+		$model_name,
849
+		ModelVersionInfo $model_version_info,
850
+		$create = false
851
+	) {
852
+		$model = EE_Registry::instance()->load_model($model_name);
853
+		$fields = $model_version_info->fieldsOnModelInThisVersion($model);
854
+		$args_info = array();
855
+		foreach ($fields as $field_name => $field_obj) {
856
+			if ($field_obj->is_auto_increment()) {
857
+				// totally ignore auto increment IDs
858
+				continue;
859
+			}
860
+			$arg_info = $field_obj->getSchema();
861
+			$required = $create && ! $field_obj->is_nullable() && $field_obj->get_default_value() === null;
862
+			$arg_info['required'] = $required;
863
+			// remove the read-only flag. If it were read-only we wouldn't list it as an argument while writing, right?
864
+			unset($arg_info['readonly']);
865
+			$schema_properties = $field_obj->getSchemaProperties();
866
+			if (isset($schema_properties['raw'])
867
+				&& $field_obj->getSchemaType() === 'object'
868
+			) {
869
+				// if there's a "raw" form of this argument, use those properties instead
870
+				$arg_info = array_replace(
871
+					$arg_info,
872
+					$schema_properties['raw']
873
+				);
874
+			}
875
+			$arg_info['default'] = ModelDataTranslator::prepareFieldValueForJson(
876
+				$field_obj,
877
+				$field_obj->get_default_value(),
878
+				$model_version_info->requestedVersion()
879
+			);
880
+			// we do our own validation and sanitization within the controller
881
+			if (function_exists('rest_validate_value_from_schema')) {
882
+				$sanitize_callback = array(
883
+					'EED_Core_Rest_Api',
884
+					'default_sanitize_callback',
885
+				);
886
+			} else {
887
+				$sanitize_callback = null;
888
+			}
889
+			$arg_info['sanitize_callback'] = $sanitize_callback;
890
+			$args_info[ $field_name ] = $arg_info;
891
+			if ($field_obj instanceof EE_Datetime_Field) {
892
+				$gmt_arg_info = $arg_info;
893
+				$gmt_arg_info['description'] = sprintf(
894
+					esc_html__(
895
+						'%1$s - the value for this field in UTC. Ignored if %2$s is provided.',
896
+						'event_espresso'
897
+					),
898
+					$field_obj->get_nicename(),
899
+					$field_name
900
+				);
901
+				$args_info[ $field_name . '_gmt' ] = $gmt_arg_info;
902
+			}
903
+		}
904
+		return $args_info;
905
+	}
906
+
907
+
908
+	/**
909
+	 * Replacement for WP API's 'rest_parse_request_arg'.
910
+	 * If the value is blank but not required, don't bother validating it.
911
+	 * Also, it uses our email validation instead of WP API's default.
912
+	 *
913
+	 * @param                 $value
914
+	 * @param WP_REST_Request $request
915
+	 * @param                 $param
916
+	 * @return bool|true|WP_Error
917
+	 * @throws InvalidArgumentException
918
+	 * @throws InvalidInterfaceException
919
+	 * @throws InvalidDataTypeException
920
+	 */
921
+	public static function default_sanitize_callback($value, WP_REST_Request $request, $param)
922
+	{
923
+		$attributes = $request->get_attributes();
924
+		if (! isset($attributes['args'][ $param ])
925
+			|| ! is_array($attributes['args'][ $param ])) {
926
+			$validation_result = true;
927
+		} else {
928
+			$args = $attributes['args'][ $param ];
929
+			if ((
930
+					$value === ''
931
+					|| $value === null
932
+				)
933
+				&& (! isset($args['required'])
934
+					|| $args['required'] === false
935
+				)
936
+			) {
937
+				// not required and not provided? that's cool
938
+				$validation_result = true;
939
+			} elseif (isset($args['format'])
940
+					  && $args['format'] === 'email'
941
+			) {
942
+				$validation_result = true;
943
+				if (! self::_validate_email($value)) {
944
+					$validation_result = new WP_Error(
945
+						'rest_invalid_param',
946
+						esc_html__(
947
+							'The email address is not valid or does not exist.',
948
+							'event_espresso'
949
+						)
950
+					);
951
+				}
952
+			} else {
953
+				$validation_result = rest_validate_value_from_schema($value, $args, $param);
954
+			}
955
+		}
956
+		if (is_wp_error($validation_result)) {
957
+			return $validation_result;
958
+		}
959
+		return rest_sanitize_request_arg($value, $request, $param);
960
+	}
961
+
962
+
963
+	/**
964
+	 * Returns whether or not this email address is valid. Copied from EE_Email_Validation_Strategy::_validate_email()
965
+	 *
966
+	 * @param $email
967
+	 * @return bool
968
+	 * @throws InvalidArgumentException
969
+	 * @throws InvalidInterfaceException
970
+	 * @throws InvalidDataTypeException
971
+	 */
972
+	protected static function _validate_email($email)
973
+	{
974
+		try {
975
+			EmailAddressFactory::create($email);
976
+			return true;
977
+		} catch (EmailValidationException $e) {
978
+			return false;
979
+		}
980
+	}
981
+
982
+
983
+	/**
984
+	 * Gets routes for the config
985
+	 *
986
+	 * @return array @see _register_model_routes
987
+	 * @deprecated since version 4.9.1
988
+	 */
989
+	protected function _register_config_routes()
990
+	{
991
+		$config_routes = array();
992
+		foreach (self::versions_served() as $version => $hidden_endpoint) {
993
+			$config_routes[ self::ee_api_namespace . $version ] = $this->_get_config_route_data_for_version(
994
+				$version,
995
+				$hidden_endpoint
996
+			);
997
+		}
998
+		return $config_routes;
999
+	}
1000
+
1001
+
1002
+	/**
1003
+	 * Gets routes for the config for the specified version
1004
+	 *
1005
+	 * @param string  $version
1006
+	 * @param boolean $hidden_endpoint
1007
+	 * @return array
1008
+	 */
1009
+	protected function _get_config_route_data_for_version($version, $hidden_endpoint)
1010
+	{
1011
+		return array(
1012
+			'config'    => array(
1013
+				array(
1014
+					'callback'        => array(
1015
+						'EventEspresso\core\libraries\rest_api\controllers\config\Read',
1016
+						'handleRequest',
1017
+					),
1018
+					'methods'         => WP_REST_Server::READABLE,
1019
+					'hidden_endpoint' => $hidden_endpoint,
1020
+					'callback_args'   => array($version),
1021
+				),
1022
+			),
1023
+			'site_info' => array(
1024
+				array(
1025
+					'callback'        => array(
1026
+						'EventEspresso\core\libraries\rest_api\controllers\config\Read',
1027
+						'handleRequestSiteInfo',
1028
+					),
1029
+					'methods'         => WP_REST_Server::READABLE,
1030
+					'hidden_endpoint' => $hidden_endpoint,
1031
+					'callback_args'   => array($version),
1032
+				),
1033
+			),
1034
+		);
1035
+	}
1036
+
1037
+
1038
+	/**
1039
+	 * Gets the meta info routes
1040
+	 *
1041
+	 * @return array @see _register_model_routes
1042
+	 * @deprecated since version 4.9.1
1043
+	 */
1044
+	protected function _register_meta_routes()
1045
+	{
1046
+		$meta_routes = array();
1047
+		foreach (self::versions_served() as $version => $hidden_endpoint) {
1048
+			$meta_routes[ self::ee_api_namespace . $version ] = $this->_get_meta_route_data_for_version(
1049
+				$version,
1050
+				$hidden_endpoint
1051
+			);
1052
+		}
1053
+		return $meta_routes;
1054
+	}
1055
+
1056
+
1057
+	/**
1058
+	 * @param string  $version
1059
+	 * @param boolean $hidden_endpoint
1060
+	 * @return array
1061
+	 */
1062
+	protected function _get_meta_route_data_for_version($version, $hidden_endpoint = false)
1063
+	{
1064
+		return array(
1065
+			'resources' => array(
1066
+				array(
1067
+					'callback'        => array(
1068
+						'EventEspresso\core\libraries\rest_api\controllers\model\Meta',
1069
+						'handleRequestModelsMeta',
1070
+					),
1071
+					'methods'         => WP_REST_Server::READABLE,
1072
+					'hidden_endpoint' => $hidden_endpoint,
1073
+					'callback_args'   => array($version),
1074
+				),
1075
+			),
1076
+		);
1077
+	}
1078
+
1079
+
1080
+	/**
1081
+	 * Tries to hide old 4.6 endpoints from the
1082
+	 *
1083
+	 * @param array $route_data
1084
+	 * @return array
1085
+	 * @throws \EE_Error
1086
+	 */
1087
+	public static function hide_old_endpoints($route_data)
1088
+	{
1089
+		// allow API clients to override which endpoints get hidden, in case
1090
+		// they want to discover particular endpoints
1091
+		// also, we don't have access to the request so we have to just grab it from the superglobal
1092
+		$force_show_ee_namespace = ltrim(
1093
+			EEH_Array::is_set($_REQUEST, 'force_show_ee_namespace', ''),
1094
+			'/'
1095
+		);
1096
+		foreach (EED_Core_Rest_Api::get_ee_route_data() as $namespace => $relative_urls) {
1097
+			foreach ($relative_urls as $resource_name => $endpoints) {
1098
+				foreach ($endpoints as $key => $endpoint) {
1099
+					// skip schema and other route options
1100
+					if (! is_numeric($key)) {
1101
+						continue;
1102
+					}
1103
+					// by default, hide "hidden_endpoint"s, unless the request indicates
1104
+					// to $force_show_ee_namespace, in which case only show that one
1105
+					// namespace's endpoints (and hide all others)
1106
+					if (($force_show_ee_namespace !== '' && $force_show_ee_namespace !== $namespace)
1107
+						|| ($endpoint['hidden_endpoint'] && $force_show_ee_namespace === '')
1108
+					) {
1109
+						$full_route = '/' . ltrim($namespace, '/');
1110
+						$full_route .= '/' . ltrim($resource_name, '/');
1111
+						unset($route_data[ $full_route ]);
1112
+					}
1113
+				}
1114
+			}
1115
+		}
1116
+		return $route_data;
1117
+	}
1118
+
1119
+
1120
+	/**
1121
+	 * Returns an array describing which versions of core support serving requests for.
1122
+	 * Keys are core versions' major and minor version, and values are the
1123
+	 * LOWEST requested version they can serve. Eg, 4.7 can serve requests for 4.6-like
1124
+	 * data by just removing a few models and fields from the responses. However, 4.15 might remove
1125
+	 * the answers table entirely, in which case it would be very difficult for
1126
+	 * it to serve 4.6-style responses.
1127
+	 * Versions of core that are missing from this array are unknowns.
1128
+	 * previous ver
1129
+	 *
1130
+	 * @return array
1131
+	 */
1132
+	public static function version_compatibilities()
1133
+	{
1134
+		return apply_filters(
1135
+			'FHEE__EED_Core_REST_API__version_compatibilities',
1136
+			array(
1137
+				'4.8.29' => '4.8.29',
1138
+				'4.8.33' => '4.8.29',
1139
+				'4.8.34' => '4.8.29',
1140
+				'4.8.36' => '4.8.29',
1141
+			)
1142
+		);
1143
+	}
1144
+
1145
+
1146
+	/**
1147
+	 * Gets the latest API version served. Eg if there
1148
+	 * are two versions served of the API, 4.8.29 and 4.8.32, and
1149
+	 * we are on core version 4.8.34, it will return the string "4.8.32"
1150
+	 *
1151
+	 * @return string
1152
+	 */
1153
+	public static function latest_rest_api_version()
1154
+	{
1155
+		$versions_served = \EED_Core_Rest_Api::versions_served();
1156
+		$versions_served_keys = array_keys($versions_served);
1157
+		return end($versions_served_keys);
1158
+	}
1159
+
1160
+
1161
+	/**
1162
+	 * Using EED_Core_Rest_Api::version_compatibilities(), determines what version of
1163
+	 * EE the API can serve requests for. Eg, if we are on 4.15 of core, and
1164
+	 * we can serve requests from 4.12 or later, this will return array( '4.12', '4.13', '4.14', '4.15' ).
1165
+	 * We also indicate whether or not this version should be put in the index or not
1166
+	 *
1167
+	 * @return array keys are API version numbers (just major and minor numbers), and values
1168
+	 * are whether or not they should be hidden
1169
+	 */
1170
+	public static function versions_served()
1171
+	{
1172
+		$versions_served = array();
1173
+		$possibly_served_versions = EED_Core_Rest_Api::version_compatibilities();
1174
+		$lowest_compatible_version = end($possibly_served_versions);
1175
+		reset($possibly_served_versions);
1176
+		$versions_served_historically = array_keys($possibly_served_versions);
1177
+		$latest_version = end($versions_served_historically);
1178
+		reset($versions_served_historically);
1179
+		// for each version of core we have ever served:
1180
+		foreach ($versions_served_historically as $key_versioned_endpoint) {
1181
+			// if it's not above the current core version, and it's compatible with the current version of core
1182
+			if ($key_versioned_endpoint === $latest_version) {
1183
+				// don't hide the latest version in the index
1184
+				$versions_served[ $key_versioned_endpoint ] = false;
1185
+			} elseif ($key_versioned_endpoint >= $lowest_compatible_version
1186
+				&& $key_versioned_endpoint < EED_Core_Rest_Api::core_version()
1187
+			) {
1188
+				// include, but hide, previous versions which are still supported
1189
+				$versions_served[ $key_versioned_endpoint ] = true;
1190
+			} elseif (apply_filters(
1191
+				'FHEE__EED_Core_Rest_Api__versions_served__include_incompatible_versions',
1192
+				false,
1193
+				$possibly_served_versions
1194
+			)) {
1195
+				// if a version is no longer supported, don't include it in index or list of versions served
1196
+				$versions_served[ $key_versioned_endpoint ] = true;
1197
+			}
1198
+		}
1199
+		return $versions_served;
1200
+	}
1201
+
1202
+
1203
+	/**
1204
+	 * Gets the major and minor version of EE core's version string
1205
+	 *
1206
+	 * @return string
1207
+	 */
1208
+	public static function core_version()
1209
+	{
1210
+		return apply_filters(
1211
+			'FHEE__EED_Core_REST_API__core_version',
1212
+			implode(
1213
+				'.',
1214
+				array_slice(
1215
+					explode(
1216
+						'.',
1217
+						espresso_version()
1218
+					),
1219
+					0,
1220
+					3
1221
+				)
1222
+			)
1223
+		);
1224
+	}
1225
+
1226
+
1227
+	/**
1228
+	 * Gets the default limit that should be used when querying for resources
1229
+	 *
1230
+	 * @return int
1231
+	 */
1232
+	public static function get_default_query_limit()
1233
+	{
1234
+		// we actually don't use a const because we want folks to always use
1235
+		// this method, not the const directly
1236
+		return apply_filters(
1237
+			'FHEE__EED_Core_Rest_Api__get_default_query_limit',
1238
+			50
1239
+		);
1240
+	}
1241
+
1242
+
1243
+	/**
1244
+	 *
1245
+	 * @param string $version api version string (i.e. '4.8.36')
1246
+	 * @return array
1247
+	 */
1248
+	public static function getCollectionRoutesIndexedByModelName($version = '')
1249
+	{
1250
+		$version = empty($version) ? self::latest_rest_api_version() : $version;
1251
+		$model_names = self::model_names_with_plural_routes($version);
1252
+		$collection_routes = array();
1253
+		foreach ($model_names as $model_name => $model_class_name) {
1254
+			$collection_routes[ strtolower($model_name) ] = '/' . self::ee_api_namespace . $version . '/'
1255
+															. EEH_Inflector::pluralize_and_lower($model_name);
1256
+		}
1257
+		return $collection_routes;
1258
+	}
1259
+
1260
+
1261
+	/**
1262
+	 * Returns an array of primary key names indexed by model names.
1263
+	 * @param string $version
1264
+	 * @return array
1265
+	 */
1266
+	public static function getPrimaryKeyNamesIndexedByModelName($version = '')
1267
+	{
1268
+		$version = empty($version) ? self::latest_rest_api_version() : $version;
1269
+		$model_names = self::model_names_with_plural_routes($version);
1270
+		$primary_key_items = array();
1271
+		foreach ($model_names as $model_name => $model_class_name) {
1272
+			$primary_keys = $model_class_name::instance()->get_combined_primary_key_fields();
1273
+			foreach ($primary_keys as $primary_key_name => $primary_key_field) {
1274
+				if (count($primary_keys) > 1) {
1275
+					$primary_key_items[ strtolower($model_name) ][] = $primary_key_name;
1276
+				} else {
1277
+					$primary_key_items[ strtolower($model_name) ] = $primary_key_name;
1278
+				}
1279
+			}
1280
+		}
1281
+		return $primary_key_items;
1282
+	}
1283
+
1284
+	/**
1285
+	 * Determines the EE REST API debug mode is activated, or not.
1286
+	 * @since 4.9.72.p
1287
+	 * @return bool
1288
+	 */
1289
+	public static function debugMode()
1290
+	{
1291
+		static $debug_mode = null; // could be class prop
1292
+		if ($debug_mode === null) {
1293
+			$debug_mode = defined('EE_REST_API_DEBUG_MODE') && EE_REST_API_DEBUG_MODE;
1294
+		}
1295
+		return $debug_mode;
1296
+	}
1297
+
1298
+
1299
+
1300
+	/**
1301
+	 *    run - initial module setup
1302
+	 *
1303
+	 * @access    public
1304
+	 * @param  WP $WP
1305
+	 * @return    void
1306
+	 */
1307
+	public function run($WP)
1308
+	{
1309
+	}
1310 1310
 }
Please login to merge, or discard this patch.
core/exceptions/RestPasswordRequiredException.php 1 patch
Indentation   +11 added lines, -11 removed lines patch added patch discarded remove patch
@@ -18,17 +18,17 @@
 block discarded – undo
18 18
  */
19 19
 class RestPasswordRequiredException extends RestException
20 20
 {
21
-    public function __construct($previous = null)
22
-    {
23
-        parent::__construct(
24
-            'rest_post_password_required',
25
-            esc_html__('A password is required to access this content.', 'event_espresso'),
26
-            array(
27
-                'status' => 403,
28
-            ),
29
-            $previous
30
-        );
31
-    }
21
+	public function __construct($previous = null)
22
+	{
23
+		parent::__construct(
24
+			'rest_post_password_required',
25
+			esc_html__('A password is required to access this content.', 'event_espresso'),
26
+			array(
27
+				'status' => 403,
28
+			),
29
+			$previous
30
+		);
31
+	}
32 32
 }
33 33
 // End of file RestPasswordRequired.php
34 34
 // Location: EventEspresso\core\exceptions/RestPasswordRequired.php
Please login to merge, or discard this patch.
core/exceptions/ModelConfigurationException.php 2 patches
Indentation   +19 added lines, -19 removed lines patch added patch discarded remove patch
@@ -18,27 +18,27 @@
 block discarded – undo
18 18
  */
19 19
 class ModelConfigurationException extends DomainException
20 20
 {
21
-    /**
22
-     * ModelConfigurationException constructor.
23
-     *
24
-     * @param EEM_Base $model
25
-     * @param string $message Describe what's misconfigured about this model (don't bother mentioning which model,
26
-     * that will be automatically added to the message based on the $model provided in the previous parameter).
27
-     * @param int $code
28
-     * @param Exception $previous
29
-     */
30
-    public function __construct(EEM_Base $model, $message, $code = 0, Exception $previous = null)
31
-    {
32
-        $message_part_1 = sprintf(
33
-            /*
21
+	/**
22
+	 * ModelConfigurationException constructor.
23
+	 *
24
+	 * @param EEM_Base $model
25
+	 * @param string $message Describe what's misconfigured about this model (don't bother mentioning which model,
26
+	 * that will be automatically added to the message based on the $model provided in the previous parameter).
27
+	 * @param int $code
28
+	 * @param Exception $previous
29
+	 */
30
+	public function __construct(EEM_Base $model, $message, $code = 0, Exception $previous = null)
31
+	{
32
+		$message_part_1 = sprintf(
33
+			/*
34 34
              * translators: 1: the model name
35 35
              */
36
-            esc_html__('The model "%1$s" appears to be misconfigured.', 'event_espresso'),
37
-            $model->get_this_model_name()
38
-        );
39
-        $message = $message_part_1 . ' ' . $message;
40
-        parent::__construct($message, $code, $previous);
41
-    }
36
+			esc_html__('The model "%1$s" appears to be misconfigured.', 'event_espresso'),
37
+			$model->get_this_model_name()
38
+		);
39
+		$message = $message_part_1 . ' ' . $message;
40
+		parent::__construct($message, $code, $previous);
41
+	}
42 42
 }
43 43
 // End of file ModelConfigurationException.php
44 44
 // Location: EventEspresso\core\exceptions/ModelConfigurationException.php
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -36,7 +36,7 @@
 block discarded – undo
36 36
             esc_html__('The model "%1$s" appears to be misconfigured.', 'event_espresso'),
37 37
             $model->get_this_model_name()
38 38
         );
39
-        $message = $message_part_1 . ' ' . $message;
39
+        $message = $message_part_1.' '.$message;
40 40
         parent::__construct($message, $code, $previous);
41 41
     }
42 42
 }
Please login to merge, or discard this patch.
core/exceptions/RestPasswordIncorrectException.php 1 patch
Indentation   +11 added lines, -11 removed lines patch added patch discarded remove patch
@@ -16,17 +16,17 @@
 block discarded – undo
16 16
  */
17 17
 class RestPasswordIncorrectException extends RestException
18 18
 {
19
-    public function __construct($previous = null)
20
-    {
21
-        parent::__construct(
22
-            'rest_post_incorrect_password',
23
-            esc_html__('Incorrect password.', 'event_espresso'),
24
-            array(
25
-                'status' => 403,
26
-            ),
27
-            $previous
28
-        );
29
-    }
19
+	public function __construct($previous = null)
20
+	{
21
+		parent::__construct(
22
+			'rest_post_incorrect_password',
23
+			esc_html__('Incorrect password.', 'event_espresso'),
24
+			array(
25
+				'status' => 403,
26
+			),
27
+			$previous
28
+		);
29
+	}
30 30
 }
31 31
 // End of file RestPasswordIncorrectException.php
32 32
 // Location: EventEspresso\core\exceptions/RestPasswordIncorrectException.php
Please login to merge, or discard this patch.