Completed
Branch FET/rest-relation-endpoints (02db8d)
by
unknown
27:05 queued 18:22
created

EEM_Base::restrictedByRelatedModelPassword()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 1
nc 1
nop 0
dl 0
loc 4
rs 10
c 0
b 0
f 0
1
<?php
2
3
use EventEspresso\core\domain\values\model\CustomSelects;
4
use EventEspresso\core\exceptions\InvalidDataTypeException;
5
use EventEspresso\core\exceptions\InvalidInterfaceException;
6
use EventEspresso\core\exceptions\ModelConfigurationException;
7
use EventEspresso\core\exceptions\UnexpectedEntityException;
8
use EventEspresso\core\interfaces\ResettableInterface;
9
use EventEspresso\core\services\orm\ModelFieldFactory;
10
use EventEspresso\core\services\loaders\LoaderFactory;
11
12
/**
13
 * Class EEM_Base
14
 * Multi-table model. Especially handles joins when querying.
15
 * An important note about values dealt with in models and model objects:
16
 * values used by models exist in basically 3 different domains, which the EE_Model_Fields help convert between:
17
 * 1. Client-code values (eg, controller code may refer to a date as "March 21, 2013")
18
 * 2. Model object values (eg, after the model object has called set() on the value and saves it onto the model object,
19
 * it may become a unix timestamp, eg 12312412412)
20
 * 3. Database values (eg, we may later decide to store dates as mysql dates, in which case they'd be stored as
21
 * '2013-03-21 00:00:00') Sometimes these values are the same, but often they are not. When your client code is using a
22
 * model's functions, you need to be aware which domain your data exists in. If it is client-code values (ie, it hasn't
23
 * had a EE_Model_Field call prepare_for_set on it) then use the model functions as normal. However, if you are calling
24
 * the model functions with values from the model object domain (ie, the code your writing is probably within a model
25
 * object, and all the values you're dealing with have had an EE_Model_Field call prepare_for_set on them), then you'll
26
 * want to set $values_already_prepared_by_model_object to FALSE within the argument-list of the functions you call (in
27
 * order to avoid re-processing those values). If your values are already in the database values domain, you'll either
28
 * way to convert them into the model object domain by creating model objects from those raw db values (ie,using
29
 * EEM_Base::_create_objects), or just use $wpdb directly.
30
 *
31
 * @package               Event Espresso
32
 * @subpackage            core
33
 * @author                Michael Nelson
34
 * @since                 EE4
35
 */
36
abstract class EEM_Base extends EE_Base implements ResettableInterface
37
{
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;
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) {
0 ignored issues
show
Bug Best Practice introduced by
The expression $wp_user_field_name of type string|false is loosely compared to true; this is ambiguous if the string can be empty. You might want to explicitly use !== false instead.

In PHP, under loose comparison (like ==, or !=, or switch conditions), values of different types might be equal.

For string values, the empty string '' is a special case, in particular the following results might be unexpected:

''   == false // true
''   == null  // true
'ab' == false // false
'ab' == null  // false

// It is often better to use strict comparison
'' === false // false
'' === null  // false
Loading history...
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 View Code Duplication
    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 View Code Duplication
    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 View Code Duplication
    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;
0 ignored issues
show
Unused Code introduced by
break is not strictly necessary here and could be removed.

The break statement is not necessary if it is preceded for example by a return statement:

switch ($x) {
    case 1:
        return 'foo';
        break; // This break is not necessary and can be left off.
}

If you would like to keep this construct to be consistent with other case statements, you can safely mark this issue as a false-positive.

Loading history...
1503
            case 'date':
1504
                return $DateTime->format($formats[0]);
1505
                break;
0 ignored issues
show
Unused Code introduced by
break is not strictly necessary here and could be removed.

The break statement is not necessary if it is preceded for example by a return statement:

switch ($x) {
    case 1:
        return 'foo';
        break; // This break is not necessary and can be left off.
}

If you would like to keep this construct to be consistent with other case statements, you can safely mark this issue as a false-positive.

Loading history...
1506
            default:
1507
                return $DateTime->format(implode(' ', $formats));
1508
                break;
0 ignored issues
show
Unused Code introduced by
break is not strictly necessary here and could be removed.

The break statement is not necessary if it is preceded for example by a return statement:

switch ($x) {
    case 1:
        return 'foo';
        break; // This break is not necessary and can be left off.
}

If you would like to keep this construct to be consistent with other case statements, you can safely mark this issue as a false-positive.

Loading history...
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) {
0 ignored issues
show
Bug Best Practice introduced by
The expression $model_objs_affected_ids of type array is implicitly converted to a boolean; are you sure this is intended? If so, consider using empty($expr) instead to make it clear that you intend to check for an array without elements.

This check marks implicit conversions of arrays to boolean values in a comparison. While in PHP an empty array is considered to be equal (but not identical) to false, this is not always apparent.

Consider making the comparison explicit by using empty(..) or ! empty(...) instead.

Loading history...
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) {
0 ignored issues
show
Bug Best Practice introduced by
The expression $field_to_select of type string|null is loosely compared to true; this is ambiguous if the string can be empty. You might want to explicitly use !== null instead.

In PHP, under loose comparison (like ==, or !=, or switch conditions), values of different types might be equal.

For string values, the empty string '' is a special case, in particular the following results might be unexpected:

''   == false // true
''   == null  // true
'ab' == false // false
'ab' == null  // false

// It is often better to use strict comparison
'' === false // false
'' === null  // false
Loading history...
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 View Code Duplication
    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 View Code Duplication
    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 View Code Duplication
                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(),
0 ignored issues
show
Bug introduced by
It seems like $ignore_this_model_obj is not always an object, but can also be of type null. Maybe add an additional type check?

If a variable is not always an object, we recommend to add an additional type check to ensure your method call is safe:

function someFunction(A $objectMaybe = null)
{
    if ($objectMaybe instanceof A) {
        $objectMaybe->doSomething();
    }
}
Loading history...
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) {
0 ignored issues
show
Bug Best Practice introduced by
The expression $related_model_objects of type EE_Base_Class[] is implicitly converted to a boolean; are you sure this is intended? If so, consider using ! empty($expr) instead to make it clear that you intend to check for an array without elements.

This check marks implicit conversions of arrays to boolean values in a comparison. While in PHP an empty array is considered to be equal (but not identical) to false, this is not always apparent.

Consider making the comparison explicit by using empty(..) or ! empty(...) instead.

Loading history...
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());
0 ignored issues
show
Unused Code introduced by
$primary_table_pk_field is not used, you could remove the assignment.

This check looks for variable assignements that are either overwritten by other assignments or where the variable is not used subsequently.

$myVar = 'Value';
$higher = false;

if (rand(1, 6) > 3) {
    $higher = true;
} else {
    $higher = false;
}

Both the $myVar assignment in line 1 and the $higher assignment in line 2 are dead. The first because $myVar is never used and the second because $higher is always overwritten for every possible time line.

Loading history...
2092
            $other_tables = $this->_get_other_tables();
0 ignored issues
show
Unused Code introduced by
$other_tables is not used, you could remove the assignment.

This check looks for variable assignements that are either overwritten by other assignments or where the variable is not used subsequently.

$myVar = 'Value';
$higher = false;

if (rand(1, 6) > 3) {
    $higher = true;
} else {
    $higher = false;
}

Both the $myVar assignment in line 1 and the $higher assignment in line 2 are dead. The first because $myVar is never used and the second because $higher is always overwritten for every possible time line.

Loading history...
2093
            $ids_to_delete_indexed_by_column = $query = array();
0 ignored issues
show
Unused Code introduced by
$query is not used, you could remove the assignment.

This check looks for variable assignements that are either overwritten by other assignments or where the variable is not used subsequently.

$myVar = 'Value';
$higher = false;

if (rand(1, 6) > 3) {
    $higher = true;
} else {
    $higher = false;
}

Both the $myVar assignment in line 1 and the $higher assignment in line 2 are dead. The first because $myVar is never used and the second because $higher is always overwritten for every possible time line.

Loading history...
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) {
0 ignored issues
show
Bug Best Practice introduced by
The expression $field_to_count of type string|null is loosely compared to true; this is ambiguous if the string can be empty. You might want to explicitly use !== null instead.

In PHP, under loose comparison (like ==, or !=, or switch conditions), values of different types might be equal.

For string values, the empty string '' is a special case, in particular the following results might be unexpected:

''   == false // true
''   == null  // true
'ab' == false // false
'ab' == null  // false

// It is often better to use strict comparison
'' === false // false
'' === null  // false
Loading history...
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) {
0 ignored issues
show
Bug Best Practice introduced by
The expression $field_to_sum of type string|null is loosely compared to true; this is ambiguous if the string can be empty. You might want to explicitly use !== null instead.

In PHP, under loose comparison (like ==, or !=, or switch conditions), values of different types might be equal.

For string values, the empty string '' is a special case, in particular the following results might be unexpected:

''   == false // true
''   == null  // true
'ab' == false // false
'ab' == null  // false

// It is often better to use strict comparison
'' === false // false
'' === null  // false
Loading history...
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 View Code Duplication
        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;
0 ignored issues
show
Unused Code introduced by
break is not strictly necessary here and could be removed.

The break statement is not necessary if it is preceded for example by a return statement:

switch ($x) {
    case 1:
        return 'foo';
        break; // This break is not necessary and can be left off.
}

If you would like to keep this construct to be consistent with other case statements, you can safely mark this issue as a false-positive.

Loading history...
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 View Code Duplication
    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 View Code Duplication
    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) {
0 ignored issues
show
Bug Best Practice introduced by
The expression $results of type EE_Base_Class[] is implicitly converted to a boolean; are you sure this is intended? If so, consider using ! empty($expr) instead to make it clear that you intend to check for an array without elements.

This check marks implicit conversions of arrays to boolean values in a comparison. While in PHP an empty array is considered to be equal (but not identical) to false, this is not always apparent.

Consider making the comparison explicit by using empty(..) or ! empty(...) instead.

Loading history...
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 View Code Duplication
        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 View Code Duplication
        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 View Code Duplication
        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 View Code Duplication
        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
0 ignored issues
show
Unused Code Bug introduced by
The strict comparison === seems to always evaluate to false as the types of $query_param_type (string) and 0 (integer) can never be identical. Maybe you want to use a loose comparison == instead?
Loading history...
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 View Code Duplication
    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) {
0 ignored issues
show
Bug Best Practice introduced by
The expression $default_where_conditions of type array is implicitly converted to a boolean; are you sure this is intended? If so, consider using ! empty($expr) instead to make it clear that you intend to check for an array without elements.

This check marks implicit conversions of arrays to boolean values in a comparison. While in PHP an empty array is considered to be equal (but not identical) to false, this is not always apparent.

Consider making the comparison explicit by using empty(..) or ! empty(...) instead.

Loading history...
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
                //@todo NO PK, use other defaults
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) {
0 ignored issues
show
Unused Code Bug introduced by
The strict comparison === seems to always evaluate to false as the types of $possible_join_string (string) and $valid_related_model_name (integer) can never be identical. Maybe you want to use a loose comparison == instead?
Loading history...
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 View Code Duplication
    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) {
0 ignored issues
show
Bug Best Practice introduced by
The expression $operator of type string|null is loosely compared to false; this is ambiguous if the string can be empty. You might want to explicitly use === null instead.

In PHP, under loose comparison (like ==, or !=, or switch conditions), values of different types might be equal.

For string values, the empty string '' is a special case, in particular the following results might be unexpected:

''   == false // true
''   == null  // true
'ab' == false // false
'ab' == null  // false

// It is often better to use strict comparison
'' === false // false
'' === null  // false
Loading history...
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 View Code Duplication
        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 View Code Duplication
        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 View Code Duplication
        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 View Code Duplication
        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 View Code Duplication
        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) {
0 ignored issues
show
Bug introduced by
The expression $values of type object|integer|double|null|array|boolean is not guaranteed to be traversable. How about adding an additional type check?

There are different options of fixing this problem.

  1. If you want to be on the safe side, you can add an additional type-check:

    $collection = json_decode($data, true);
    if ( ! is_array($collection)) {
        throw new \RuntimeException('$collection must be an array.');
    }
    
    foreach ($collection as $item) { /** ... */ }
    
  2. If you are sure that the expression is traversable, you might want to add a doc comment cast to improve IDE auto-completion and static analysis:

    /** @var array $collection */
    $collection = json_decode($data, true);
    
    foreach ($collection as $item) { /** .. */ }
    
  3. Mark the issue as a false-positive: Just hover the remove button, in the top-right corner of this issue for more options.

Loading history...
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 View Code Duplication
            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 View Code Duplication
            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);
0 ignored issues
show
Bug introduced by
It seems like $classInstance can be null; however, add_to_entity_map() does not accept null, maybe add an additional type check?

Unless you are absolutely sure that the expression can never be null because of other conditions, we strongly recommend to add an additional type check to your code:

/** @return stdClass|null */
function mayReturnNull() { }

function doesNotAcceptNull(stdClass $x) { }

// With potential error.
function withoutCheck() {
    $x = mayReturnNull();
    doesNotAcceptNull($x); // Potential error here.
}

// Safe - Alternative 1
function withCheck1() {
    $x = mayReturnNull();
    if ( ! $x instanceof stdClass) {
        throw new \LogicException('$x must be defined.');
    }
    doesNotAcceptNull($x);
}

// Safe - Alternative 2
function withCheck2() {
    $x = mayReturnNull();
    if ($x instanceof stdClass) {
        doesNotAcceptNull($x);
    }
}
Loading history...
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 View Code Duplication
        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(
0 ignored issues
show
Bug introduced by
Are you sure the assignment to $table_pk_value is correct as $this->_get_column_value...e_obj->get_pk_column()) (which targets EEM_Base::_get_column_va...th_table_alias_or_not()) seems to always return null.

This check looks for function or method calls that always return null and whose return value is assigned to a variable.

class A
{
    function getObject()
    {
        return null;
    }

}

$a = new A();
$object = $a->getObject();

The method getObject() can return nothing but null, so it makes no sense to assign that value to a variable.

The reason is most likely that a function or method is imcomplete or has been reduced for debug purposes.

Loading history...
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(
0 ignored issues
show
Bug introduced by
Are you sure the assignment to $this_model_fields_n_values[$field_name] is correct as $this->_get_column_value...bj->get_table_column()) (which targets EEM_Base::_get_column_va...th_table_alias_or_not()) seems to always return null.

This check looks for function or method calls that always return null and whose return value is assigned to a variable.

class A
{
    function getObject()
    {
        return null;
    }

}

$a = new A();
$object = $a->getObject();

The method getObject() can return nothing but null, so it makes no sense to assign that value to a variable.

The reason is most likely that a function or method is imcomplete or has been reduced for debug purposes.

Loading history...
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)) {
0 ignored issues
show
Bug Best Practice introduced by
The expression $wpdb_results of type array is implicitly converted to a boolean; are you sure this is intended? If so, consider using ! empty($expr) instead to make it clear that you intend to check for an array without elements.

This check marks implicit conversions of arrays to boolean values in a comparison. While in PHP an empty array is considered to be equal (but not identical) to false, this is not always apparent.

Consider making the comparison explicit by using empty(..) or ! empty(...) instead.

Loading history...
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 View Code Duplication
    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 View Code Duplication
        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 View Code Duplication
    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 View Code Duplication
        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 View Code Duplication
            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 4.9.74.p
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 4.9.74.p
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 4.9.74.p
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 4.9.74.p
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 4.9.74.p
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 4.9.74.p
6454
     * @return boolean
6455
     */
6456
    public function restrictedByRelatedModelPassword()
6457
    {
6458
        return $this->model_chain_to_password !== null;
6459
    }
6460
}
6461