Completed
Branch BUG-8784-add_meta_boxes_hook (f2e044)
by
unknown
121:28 queued 107:50
created

EEM_Base::get_all()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 2

Duplication

Lines 0
Ratio 0 %
Metric Value
dl 0
loc 3
rs 10
cc 1
eloc 2
nc 1
nop 1
1
<?php
2
/**
3
 *
4
 * Class EEM_Base
5
 *
6
 * Multi-table model. Especially handles joins when querying.
7
 * An important note about values dealt with in models and model objects:
8
 * values used by models exist in basically 3 different domains, which the EE_Model_Fields help convert between:
9
 * 1. Client-code values (eg, controller code may refer to a date as "March 21, 2013")
10
 * 2. Model object values (eg, after the model object has called set() on the value and saves it onto the model object, it may become a unix timestamp, eg 12312412412)
11
 * 3. Database values (eg, we may later decide to store dates as mysql dates, in which case they'd be stored as '2013-03-21 00:00:00')
12
 * Sometimes these values are the same, but often they are not. When your client code is using a model's functions, you need to be aware
13
 * which domain your data exists in. If it is client-code values (ie, it hasn't had a EE_Model_Field call prepare_for_set on it) then use the
14
 * model functions as normal. However, if you are calling the model functions with values from the model object domain (ie, the code your writing is
15
 * probably within a model object, and all the values you're dealing with have had an EE_Model_Field call prepare_for_set on them), then you'll want
16
 * to set $values_already_prepared_by_model_object to FALSE within the argument-list of the functions you call (in order to avoid re-processing those values).
17
 * If your values are already in the database values domain, you'll either way to convert them into the model object domain by creating model objects
18
 * from those raw db values (ie,using EEM_Base::_create_objects), or just use $wpdb directly.
19
 *
20
 * @package 			Event Espresso
21
 * @subpackage 	core
22
 * @author 				Michael Nelson
23
 * @since 				EE4
24
 *
25
 */
26
abstract class EEM_Base extends EE_Base{
27
28
	//admin posty
29
	//basic -> grants access to mine -> if they don't have it, select none
30
	//*_others -> grants access to others that arent private, and all mine -> if they don't have it, select mine
31
	//*_private -> grants full access -> if dont have it, select all mine and others' non-private
32
	//*_published -> grants access to published -> if they dont have it, select non-published
33
	//*_global/default/system -> grants access to global items -> if they don't have it, select non-global
34
	//publish_{thing} -> can change status TO publish; SPECIAL CASE
35
36
37
	//frontend posty
38
	//by default has access to published
39
	//basic -> grants access to mine that arent published, and all published
40
	//*_others ->grants access to others that arent private, all mine
41
	//*_private -> grants full access
42
43
	//frontend non-posty
44
	//like admin posty
45
46
	//category-y
47
	//assign -> grants access to join-table
48
	//(delete, edit)
49
50
	//payment-method-y
51
	//for each registered payment method,
52
	//ee_payment_method_{pmttype} -> if they don't have it, select all where they aren't of that type
53
54
	/**
55
	 * Flag to indicate whether the values provided to EEM_Base have already been prepared
56
	 * by the model object or not (ie, the model object has used the field's _prepare_for_set function on the values).
57
	 * They almost always WILL NOT, but it's not necessarily a requirement.
58
	 * For example, if you want to run EEM_Event::instance()->get_all(array(array('EVT_ID'=>$_GET['event_id'])));
59
	 * @var boolean
60
	 */
61
	private $_values_already_prepared_by_model_object = 0;
62
63
	/**
64
	 * when $_values_already_prepared_by_model_object equals this, we assume
65
	 * the data is just like form input that needs to have the model fields'
66
	 * prepare_for_set and prepare_for_use_in_db called on it
67
	 */
68
	const not_prepared_by_model_object = 0;
69
	/**
70
	 * when $_values_already_prepared_by_model_object equals this, we
71
	 * assume this value is coming from a model object and doesn't need to have
72
	 * prepare_for_set called on it, just prepare_for_use_in_db is used
73
	 */
74
	const prepared_by_model_object = 1;
75
	/**
76
	 * when $_values_already_prepared_by_model_object equals this, we assume
77
	 * the values are already to be used in the database (ie no processing is done
78
	 * on them by the model's fields)
79
	 */
80
	const prepared_for_use_in_db = 2;
81
82
83
	protected $singular_item = 'Item';
84
	protected $plural_item = 'Items';
85
86
	/**
87
	 * @type \EE_Table_Base[] $_tables  array of EE_Table objects for defining which tables comprise this model.
88
	 */
89
	protected $_tables;
90
91
	/**
92
	 * with two levels: top-level has array keys which are database table aliases (ie, keys in _tables)
93
	 * and the value is an array. Each of those sub-arrays have keys of field names (eg 'ATT_ID', which should also be variable names
94
	 * on the model objects (eg, EE_Attendee), and the keys should be children of EE_Model_Field
95
	 *
96
	 * @var \EE_Model_Field_Base[] $_fields
97
	 */
98
	protected $_fields;
99
100
	/**
101
	 * array of different kinds of relations
102
	 *
103
	 * @var \EE_Model_Relation_Base[] $_model_relations
104
	 */
105
	protected $_model_relations;
106
107
	/**
108
	 *
109
	 * @var \EE_Index[] $_indexes
110
	 */
111
	protected $_indexes = array();
112
113
	/**
114
	 * Default strategy for getting where conditions on this model. This strategy is used to get default
115
	 * where conditions which are added to get_all, update, and delete queries. They can be overridden
116
	 * by setting the same columns as used in these queries in the query yourself.
117
	 *
118
	 * @var EE_Default_Where_Conditions
119
	 */
120
	protected $_default_where_conditions_strategy;
121
122
	/**
123
	 * String describing how to find the "owner" of this model's objects.
124
	 * When there is a foreign key on this model to the wp_users table, this isn't needed.
125
	 * But when there isn't, this indicates which related model, or transiently-related model,
126
	 * has the foreign key to the wp_users table.
127
	 * Eg, for EEM_Registration this would be 'Event' because registrations are directly
128
	 * related to events, and events have a foreign key to wp_users.
129
	 * On EEM_Transaction, this would be 'Transaction.Event'
130
	 * @var string
131
	 */
132
	protected $_model_chain_to_wp_user = '';
133
	/**
134
	 * This is a flag typically set by updates so that we don't load the where strategy on updates because updates don't need it (particularly CPT models)
135
	 * @var bool
136
	 */
137
	protected $_ignore_where_strategy = FALSE;
138
139
	/**
140
	 * String used in caps relating to this model. Eg, if the caps relating to this
141
	 * model are 'ee_edit_events', 'ee_read_events', etc, it would be 'events'.
142
	 * @var string. If null it hasn't been initialized yet. If false then we
143
	 * have indicated capabilities don't apply to this
144
	 */
145
	protected $_caps_slug = null;
146
147
	/**
148
	 * 2d array where top-level keys are one of EEM_Base::valid_cap_contexts(),
149
	 * and next-level keys are capability names, and each's value is a
150
	 * EE_Default_Where_Condition. If the requestor requests to apply caps to the query,
151
	 * they specify which context to use (ie, frontend, backend, edit or delete)
152
	 * and then each capability in the corresponding sub-array that they're missing
153
	 * adds the where conditions onto the query.
154
	 * @var array
155
	 */
156
	protected $_cap_restrictions = array(
157
		self::caps_read => array(),
158
		self::caps_read_admin => array(),
159
		self::caps_edit => array(),
160
		self::caps_delete => array() );
161
162
	/**
163
	 * Array defining which cap restriction generators to use to create default
164
	 * cap restrictions to put in EEM_Base::_cap_restrictions.
165
	 *
166
	 * Array-keys are one of EEM_Base::valid_cap_contexts(), and values are a child of
167
	 * EE_Restriction_Generator_Base. If you don't want any cap restrictions generated
168
	 * automatically set this to false (not just null).
169
	 * @var EE_Restriction_Generator_Base
170
	 */
171
	protected $_cap_restriction_generators = array();
172
173
	/**
174
	 * constants used to categorize capability restrictions on EEM_Base::_caps_restrictions
175
	 */
176
	const caps_read = 'read';
177
	const caps_read_admin = 'read_admin';
178
	const caps_edit = 'edit';
179
	const caps_delete = 'delete';
180
181
	/**
182
	 * Keys are all the cap contexts (ie constants EEM_Base::_caps_*) and values are their 'action'
183
	 * as how they'd be used in capability names. Eg EEM_Base::caps_read ('read_frontend')
184
	 * maps to 'read' because when looking for relevant permissions we're going to use
185
	 * 'read' in teh capabilities names like 'ee_read_events' etc.
186
	 * @var array
187
	 */
188
	protected $_cap_contexts_to_cap_action_map = array(
189
		self::caps_read => 'read',
190
		self::caps_read_admin => 'read',
191
		self::caps_edit => 'edit',
192
		self::caps_delete => 'delete' );
193
194
	/**
195
	 * Timezone
196
	 * This gets set via the constructor so that we know what timezone incoming strings|timestamps are in when there are EE_Datetime_Fields in use.  This can also be used before a get to set what timezone you want strings coming out of the created objects.  NOT all EEM_Base child classes use this property but any that use a EE_Datetime_Field data type will have access to it.
197
	 * @var string
198
	 */
199
	protected $_timezone;
200
201
	/**
202
	 * A copy of _fields, except the array keys are the model names pointed to by
203
	 * the field
204
	 * @var EE_Model_Field_Base[]
205
	 */
206
	private $_cache_foreign_key_to_fields = array();
207
208
	/**
209
	 * Cached list of all the fields on the model, indexed by their name
210
	 * @var EE_Model_Field_Base[]
211
	 */
212
	private $_cached_fields = NULL;
213
214
	/**
215
	 * Cached list of all the fields on the model, except those that are
216
	 * marked as only pertinent to the database
217
	 * @var EE_Model_Field_Base[]
218
	 */
219
	private $_cached_fields_non_db_only = NULL;
220
221
	/**
222
	 * A cached reference to the primary key for quick lookup
223
	 * @var EE_Model_Field_Base
224
	 */
225
	private $_primary_key_field = NULL;
226
227
	/**
228
	 * Flag indicating whether this model has a primary key or not
229
	 * @var boolean
230
	 */
231
	protected $_has_primary_key_field=null;
232
233
	/**
234
	 * Whether or not this model is based off a table in WP core only (CPTs should set
235
	 * this to FALSE, but if we were to make an EE_WP_Post model, it should set this to true).
236
	 * @var boolean
237
	 */
238
	protected $_wp_core_model = false;
239
240
	/**
241
	 *	List of valid operators that can be used for querying.
242
	 * The keys are all operators we'll accept, the values are the real SQL
243
	 * operators used
244
	 * @var array
245
	 */
246
	protected $_valid_operators = array(
247
		'='=>'=',
248
		'<='=>'<=',
249
		'<'=>'<',
250
		'>='=>'>=',
251
		'>'=>'>',
252
		'!='=>'!=',
253
		'LIKE'=>'LIKE',
254
		'like'=>'LIKE',
255
		'NOT_LIKE'=>'NOT LIKE',
256
		'not_like'=>'NOT LIKE',
257
		'NOT LIKE'=>'NOT LIKE',
258
		'not like'=>'NOT LIKE',
259
		'IN'=>'IN',
260
		'in'=>'IN',
261
		'NOT_IN'=>'NOT IN',
262
		'not_in'=>'NOT IN',
263
		'NOT IN'=>'NOT IN',
264
		'not in'=>'NOT IN',
265
		'between' => 'BETWEEN',
266
		'BETWEEN' => 'BETWEEN',
267
		'IS_NOT_NULL' => 'IS NOT NULL',
268
		'is_not_null' =>'IS NOT NULL',
269
		'IS NOT NULL' => 'IS NOT NULL',
270
		'is not null' => 'IS NOT NULL',
271
		'IS_NULL' => 'IS NULL',
272
		'is_null' => 'IS NULL',
273
		'IS NULL' => 'IS NULL',
274
		'is null' => 'IS NULL');
275
276
	/**
277
	 * operators that work like 'IN', accepting a comma-separated list of values inside brackets. Eg '(1,2,3)'
278
	 * @var array
279
	 */
280
	protected $_in_style_operators = array('IN', 'NOT IN');
281
282
	/**
283
	 * operators that work like 'BETWEEN'.  Typically used for datetime calculations, i.e. "BETWEEN '12-1-2011' AND '12-31-2012'"
284
	 * @var array
285
	 */
286
	protected $_between_style_operators = array( 'BETWEEN' );
287
288
	/**
289
	 * operators that are used for handling NUll and !NULL queries.  Typically used for when checking if a row exists on a join table.
290
	 * @var array
291
	 */
292
	protected $_null_style_operators = array( 'IS NOT NULL', 'IS NULL');
293
294
	/**
295
	 * Allowed values for $query_params['order'] for ordering in queries
296
	 * @var array
297
	 */
298
	protected $_allowed_order_values = array('asc','desc','ASC','DESC');
299
300
	/**
301
	 * When these are keys in a WHERE or HAVING clause, they are handled much differently
302
	 * than regular field names. It is assumed that their values are an array of WHERE conditions
303
	 * @var array
304
	 */
305
	private $_logic_query_param_keys = array('not', 'and', 'or', 'NOT', 'AND', 'OR');
306
307
	/**
308
	 * Allowed keys in $query_params arrays passed into queries. Note that 0 is meant to always be a
309
	 * 'where', but 'where' clauses are so common that we thought we'd omit it
310
	 * @var array
311
	 */
312
	private $_allowed_query_params = array(0, 'limit','order_by','group_by','having','force_join','order','on_join_limit','default_where_conditions', 'caps');
313
314
	/**
315
	 * All the data types that can be used in $wpdb->prepare statements.
316
	 * @var array
317
	 */
318
	private $_valid_wpdb_data_types = array('%d','%s','%f');
319
320
	/**
321
	 * 	EE_Registry Object
322
	 *	@var 	object
323
	 * 	@access 	protected
324
	 */
325
	protected $EE = NULL;
326
327
328
	/**
329
	 * Property which, when set, will have this model echo out the next X queries to the page for debugging.
330
	 * @var int
331
	 */
332
	protected $_show_next_x_db_queries = 0;
333
334
	/**
335
	 * When using _get_all_wpdb_results, you can specify a custom selection. If you do so,
336
	 * it gets saved on this property so those selections can be used in WHERE, GROUP_BY, etc.
337
	 * @var array
338
	 */
339
	protected $_custom_selections = array();
340
341
	/**
342
	 * key => value Entity Map using  ID => model object
343
	 * caches every model object we've fetched from the DB on this request
344
	 * @var EE_Base_Class[]
345
	 */
346
	protected $_entity_map;
347
348
	/**
349
	 * constant used to show EEM_Base has not yet verified the db on this http request
350
	 */
351
	const db_verified_none 		= 0;
352
	/**
353
	 * constant used to show EEM_Base has verified the EE core db on this http request,
354
	 * but not the addons' dbs
355
	 */
356
	const db_verified_core 		= 1;
357
	/**
358
	 * constant used to show EEM_Base has verified the addons' dbs (and implicitly
359
	 * the EE core db too)
360
	 */
361
	const db_verified_addons 	= 2;
362
363
	/**
364
	 * indicates whether an EEM_Base child has already re-verified the DB
365
	 * is ok (we don't want to do it repetitively). Should be set to one the constants
366
	 * looking like EEM_Base::db_verified_*
367
	 * @var int - 0 = none, 1 = core, 2 = addons
368
	 */
369
	protected static $_db_verification_level = EEM_Base::db_verified_none;
370
371
372
373
374
	/**
375
	 * About all child constructors:
376
	 * they should define the _tables, _fields and _model_relations arrays.
377
	 * Should ALWAYS be called after child constructor.
378
	 * In order to make the child constructors to be as simple as possible, this parent constructor
379
	 * finalizes constructing all the object's attributes.
380
	 * Generally, rather than requiring a child to code
381
	 * $this->_tables = array(
382
	 *        'Event_Post_Table' => new EE_Table('Event_Post_Table','wp_posts')
383
	 *        ...);
384
	 *  (thus repeating itself in the array key and in the constructor of the new EE_Table,)
385
	 * each EE_Table has a function to set the table's alias after the constructor, using
386
	 * the array key ('Event_Post_Table'), instead of repeating it. The model fields and model relations
387
	 * do something similar.
388
	 *
389
	 * @param null $timezone
390
	 * @throws \EE_Error
391
	 */
392
	protected function __construct( $timezone = NULL ){
393
		// check that the model has not been loaded too soon
394
		if ( ! did_action( 'AHEE__EE_System__load_espresso_addons' )) {
395
			throw new EE_Error (
396
				sprintf(
397
					__( '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.', 'event_espresso' ),
398
					get_class( $this )
399
				)
400
			);
401
		}
402
403
		/**
404
		 * Filters the list of tables on a model. It is best to NOT use this directly and instead
405
		 * just use EE_Register_Model_Extension
406
		 * @var EE_Table_Base[] $_tables
407
		 */
408
		$this->_tables = apply_filters( 'FHEE__'.get_class($this).'__construct__tables', $this->_tables );
409
		foreach($this->_tables as $table_alias => $table_obj){
410
			/** @var $table_obj EE_Table_Base */
411
			$table_obj->_construct_finalize_with_alias($table_alias);
412
			if( $table_obj instanceof EE_Secondary_Table ){
413
				/** @var $table_obj EE_Secondary_Table */
414
				$table_obj->_construct_finalize_set_table_to_join_with($this->_get_main_table());
415
			}
416
		}
417
		/**
418
		 * Filters the list of fields on a model. It is best to NOT use this directly and instead just use
419
		 * EE_Register_Model_Extension
420
		 * @param EE_Model_Field_Base[] $_fields
421
		 */
422
		$this->_fields = apply_filters('FHEE__'.get_class($this).'__construct__fields',$this->_fields);
423
		foreach($this->_fields as $table_alias => $fields_for_table){
424
			if ( ! array_key_exists( $table_alias, $this->_tables )){
425
				throw new EE_Error(sprintf(__("Table alias %s does not exist in EEM_Base child's _tables array. Only tables defined are %s",'event_espresso'),$table_alias,implode(",",$this->_fields)));
426
			}
427
			foreach($fields_for_table as $field_name => $field_obj){
428
				/** @var $field_obj EE_Model_Field_Base | EE_Primary_Key_Field_Base */
429
				//primary key field base has a slightly different _construct_finalize
430
				/** @var $field_obj EE_Model_Field_Base */
431
				$field_obj->_construct_finalize( $table_alias, $field_name, $this->get_this_model_name() );
432
			}
433
		}
434
435
		// everything is related to Extra_Meta
436
		if( get_class($this) != 'EEM_Extra_Meta'){
437
			//make extra meta related to everything, but don't block deleting things just
438
			//because they have related extra meta info. For now just orphan those extra meta
439
			//in the future we should automatically delete them
440
			$this->_model_relations['Extra_Meta'] = new EE_Has_Many_Any_Relation( FALSE );
441
		}
442
		//and change logs
443
		if( get_class( $this) !=  'EEM_Change_Log' ) {
444
			$this->_model_relations[ 'Change_Log' ] = new EE_Has_Many_Any_Relation( FALSE );
445
		}
446
		/**
447
		 * Filters the list of relations on a model. It is best to NOT use this directly and instead just use
448
		 * EE_Register_Model_Extension
449
		 * @param EE_Model_Relation_Base[] $_model_relations
450
		 */
451
		$this->_model_relations = apply_filters('FHEE__'.get_class($this).'__construct__model_relations',$this->_model_relations);
452
		foreach($this->_model_relations as $model_name => $relation_obj){
453
			/** @var $relation_obj EE_Model_Relation_Base */
454
			$relation_obj->_construct_finalize_set_models($this->get_this_model_name(), $model_name);
455
		}
456
		foreach($this->_indexes as $index_name => $index_obj){
457
			/** @var $index_obj EE_Index */
458
			$index_obj->_construct_finalize($index_name, $this->get_this_model_name());
459
		}
460
461
		$this->set_timezone($timezone);
462
		//finalize default where condition strategy, or set default
463
		if( ! $this->_default_where_conditions_strategy){
464
			//nothing was set during child constructor, so set default
465
			$this->_default_where_conditions_strategy = new EE_Default_Where_Conditions();
466
		}
467
		$this->_default_where_conditions_strategy->_finalize_construct($this);
468
469
		//if the cap slug hasn't been set, and we haven't set it to false on purpose
470
		//to indicate to NOT set it, set it to the logical default
471
		if( $this->_caps_slug === null ) {
472
			EE_Registry::instance()->load_helper( 'Inflector' );
473
			$this->_caps_slug = EEH_Inflector::pluralize_and_lower( $this->get_this_model_name() );
474
		}
475
		//initialize the standard cap restriction generators if none were specified by the child constructor
476
		if( $this->_cap_restriction_generators !== false ){
477
			foreach( $this->cap_contexts_to_cap_action_map() as $cap_context => $action ){
478
				if( ! isset( $this->_cap_restriction_generators[ $cap_context ] ) ) {
479
					$this->_cap_restriction_generators[ $cap_context ] = apply_filters(
480
						'FHEE__EEM_Base___construct__standard_cap_restriction_generator',
481
						new EE_Restriction_Generator_Protected(),
482
						$cap_context,
483
						$this
484
					);
485
				}
486
			}
487
		}
488
		//if there are cap restriction generators, use them to make the default cap restrictions
489
		if( $this->_cap_restriction_generators !== false ){
490
			foreach( $this->_cap_restriction_generators as $context => $generator_object ) {
0 ignored issues
show
Bug introduced by
The expression $this->_cap_restriction_generators of type object<EE_Restriction_Generator_Base> is not traversable.
Loading history...
491
				if( ! $generator_object ){
492
					continue;
493
				}
494 View Code Duplication
				if( ! $generator_object instanceof EE_Restriction_Generator_Base ){
0 ignored issues
show
Duplication introduced by
This code seems to be duplicated across your project.

Duplicated code is one of the most pungent code smells. If you need to duplicate the same code in three or more different places, we strongly encourage you to look into extracting the code into a single class or operation.

You can also find more detailed suggestions in the “Code” section of your repository.

Loading history...
495
					throw new EE_Error(
496
						sprintf(
497
							__( '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.', 'event_espresso' ),
498
							$context,
499
							$this->get_this_model_name()
500
						)
501
					);
502
				}
503
				$action = $this->cap_action_for_context( $context );
504
				if( ! $generator_object->construction_finalized() ){
505
					$generator_object->_construct_finalize( $this, $action );
506
				}
507
508
			}
509
		}
510
		do_action('AHEE__'.get_class($this).'__construct__end');
511
	}
512
513
	/**
514
	 * Generates the cap restrictions for the given context, or if they were
515
	 * already generated just gets what's cached
516
	 * @param string $context one of EEM_Base::valid_cap_contexts()
517
	 * @return EE_Default_Where_Conditions[]
518
	 */
519
	protected function _generate_cap_restrictions( $context ){
520
		if( isset( $this->_cap_restriction_generators[ $context ] ) &&
521
				$this->_cap_restriction_generators[ $context ] instanceof EE_Restriction_Generator_Base ) {
522
			return $this->_cap_restriction_generators[ $context ]->generate_restrictions();
523
		}else{
524
			return array();
525
		}
526
}
527
528
529
	/**
530
	 *		This function is a singleton method used to instantiate the Espresso_model object
531
	 *
532
	 *		@access public
533
	 *		@param string $timezone string representing the timezone we want to set for returned Date Time Strings (and any incoming timezone data that gets saved).  Note this just sends the timezone info to the date time model field objects.  Default is NULL (and will be assumed using the set timezone in the 'timezone_string' wp option)
534
	 *		@return static (as in the concrete child class)
535
	 */
536 View Code Duplication
	public static function instance( $timezone = NULL ){
0 ignored issues
show
Duplication introduced by
This method seems to be duplicated in your project.

Duplicated code is one of the most pungent code smells. If you need to duplicate the same code in three or more different places, we strongly encourage you to look into extracting the code into a single class or operation.

You can also find more detailed suggestions in the “Code” section of your repository.

Loading history...
537
538
		// check if instance of Espresso_model already exists
539
		if ( ! static::$_instance instanceof static) {
540
			// instantiate Espresso_model
541
			static::$_instance = new static( $timezone );
0 ignored issues
show
Bug introduced by
It seems like $timezone defined by parameter $timezone on line 536 can also be of type string; however, EEM_Base::__construct() does only seem to accept null, maybe add an additional type check?

This check looks at variables that have been passed in as parameters and are passed out again to other methods.

If the outgoing method call has stricter type requirements than the method itself, an issue is raised.

An additional type check may prevent trouble.

Loading history...
542
		}
543
544
		//we might have a timezone set, let set_timezone decide what to do with it
545
		static::$_instance->set_timezone( $timezone );
546
547
		// Espresso_model object
548
		return static::$_instance;
549
	}
550
551
552
553
	/**
554
	 * resets the model and returns it
555
	 * @param null | string $timezone
556
	 * @return static
557
	 */
558
	public static function reset(  $timezone = NULL ){
559
		if ( ! is_null( static::$_instance ) ) {
560
			static::$_instance = null;
561
562
			return self::instance( $timezone );
563
		}
564
		return null;
565
	}
566
567
	/**
568
	 * retrieve the status details from esp_status table as an array IF this model has the status table as a relation.
569
	 *
570
	 * @param  boolean $translated return localized strings or JUST the array.
571
	 * @return array
572
	 */
573
	 public function status_array( $translated = FALSE ) {
574
	 	if ( !array_key_exists('Status', $this->_model_relations ) )
575
	 		return array();
576
	 	$model_name = $this->get_this_model_name();
577
	 	$status_type = str_replace(' ', '_', strtolower( str_replace('_', ' ', $model_name) ) );
578
	 	$stati = EEM_Status::instance()->get_all(array(array('STS_type' => $status_type) ) );
579
	 	$status_array = array();
580
	 	foreach ( $stati as $status ) {
581
            $status_array[ $status->ID() ] = $status->get('STS_code');
582
        }
583
        return $translated ? EEM_Status::instance()->localized_status($status_array, FALSE, 'sentence') : $status_array;
584
    }
585
586
587
588
	/**
589
	 * Gets all the EE_Base_Class objects which match the $query_params, by querying the DB.
590
	 * @param array $query_params {
591
	 *
592
	 *	@var array $0 (where) array {
593
	 *		eg: array('QST_display_text'=>'Are you bob?','QST_admin_text'=>'Determine if user is bob')
594
			becomes
595
	 *		SQL >> "...WHERE QST_display_text = 'Are you bob?' AND QST_admin_text = 'Determine if user is bob'...")
596
	 *
597
	 *		To add WHERE conditions based on related models (and even models-related-to-related-models) prepend the model's name
598
	 *		onto the field name. Eg, EEM_Event::instance()->get_all(array(array('Venue.VNU_ID'=>12)));
599
	 *		becomes
600
	 *		SQL >> "SELECT * FROM wp_posts AS Event_CPT
601
	 *						LEFT JOIN wp_esp_event_meta AS Event_Meta ON Event_CPT.ID = Event_Meta.EVT_ID
602
	 *						LEFT JOIN wp_esp_event_venue AS Event_Venue ON Event_Venue.EVT_ID=Event_CPT.ID
603
	 *						LEFT JOIN wp_posts AS Venue_CPT ON Venue_CPT.ID=Event_Venue.VNU_ID
604
	 *						LEFT JOIN wp_esp_venue_meta AS Venue_Meta ON Venue_CPT.ID = Venue_Meta.VNU_ID
605
	 *						WHERE Venue_CPT.ID = 12
606
	 *		Notice that automatically took care of joining Events to Venues (even when each of those models actually consisted of two tables).
607
	 * 	 	Also, you may chain the model relations together. Eg instead of just having "Venue.VNU_ID", you could have
608
	 *		"Registration.Attendee.ATT_ID" as a field on a query for events (because events are related to Registrations, which are related to Attendees).
609
	 *		You can take it even further with "Registration.Transaction.Payment.PAY_amount" etc.
610
	 *		To change the operator (from the default of '='), change the value to an numerically-indexed array, where the
611
	 *		first item in the list is the operator.
612
	 *		eg: array( 'QST_display_text' => array('LIKE','%bob%'), 'QST_ID' => array('<',34), 'QST_wp_user' => array('in',array(1,2,7,23)))
613
	 *		becomes
614
	 *		SQL >> "...WHERE QST_display_text LIKE '%bob%' AND QST_ID < 34 AND QST_wp_user IN (1,2,7,23)...".
615
	 * 		Valid operators so far: =, !=, <, <=, >, >=, LIKE, NOT LIKE, IN (followed by numeric-indexed array), NOT IN (dido), BETWEEN (followed by an array with exactly 2 date strings), IS NULL, and IS NOT NULL
616
	 *
617
	 *		Values can be a string, int, or float. They can also be arrays IFF the operator is IN.
618
	 *		Also, values can actually be field names. To indicate the value is a field, simply provide a third array item (true) to the operator-value array like so:
619
	 *		eg: array( 'DTT_reg_limit' => array('>', 'DTT_sold', TRUE) )
620
	 *		becomes
621
	 *		SQL >> "...WHERE DTT_reg_limit > DTT_sold"
622
	 *		Note: you can also use related model field names like you would any other field name.
623
	 *		eg: array('Datetime.DTT_reg_limit'=>array('=','Datetime.DTT_sold',TRUE)
624
	 *		could be used if you were querying EEM_Tickets (because Datetime is directly related to tickets)
625
	 *
626
	 *		Also, by default all the where conditions are AND'd together.
627
	 *		To override this, add an array key 'OR' (or 'AND') and the array to be OR'd together
628
	 *		eg: array('OR'=>array('TXN_ID' => 23 , 'TXN_timestamp__>' => 345678912))
629
	 *		becomes
630
	 *		SQL >> "...WHERE TXN_ID = 23 OR TXN_timestamp = 345678912...".
631
	 * 		Also, to negate an entire set of conditions, use 'NOT' as an array key.
632
	 *		eg: array('NOT'=>array('TXN_total' => 50, 'TXN_paid'=>23)
633
	 *		becomes
634
	 *		SQL >> "...where ! (TXN_total =50 AND TXN_paid =23)
635
	 *		Note: the 'glue' used to join each condition will continue to be what you last specified. IE, "AND"s by default,
636
	 *		but if you had previously specified to use ORs to join, ORs will continue to be used. So, if you specify to use an "OR"
637
	 *		to join conditions, it will continue to "stick" until you specify an AND.
638
	 *		eg array('OR'=>array('NOT'=>array('TXN_total' => 50, 'TXN_paid'=>23)),AND=>array('TXN_ID'=>1,'STS_ID'=>'TIN')
639
	 *		becomes
640
	 *		SQL >> "...where ! (TXN_total =50 OR TXN_paid =23) AND TXN_ID=1 AND STS_ID='TIN'"
641
	 *
642
	 *		They can be nested indefinitely.
643
	 *		eg: array('OR'=>array('TXN_total' => 23, 'NOT'=> array( 'TXN_timestamp'=> 345678912, 'AND'=>array('TXN_paid' => 53, 'STS_ID' => 'TIN'))))
644
	 *		becomes
645
	 *		SQL >> "...WHERE TXN_total = 23 OR ! (TXN_timestamp = 345678912 OR (TXN_paid = 53 AND STS_ID = 'TIN'))..."
646
	 *
647
	 *
648
	 *		GOTCHA:
649
	 *		because this is an array, array keys must be unique, making it impossible to place two or more where conditions applying to the same field.
650
	 *		eg: array('PAY_timestamp'=>array('>',$start_date),'PAY_timestamp'=>array('<',$end_date),'PAY_timestamp'=>array('!=',$special_date)),
651
	 *		as PHP enforces that the array keys must be unique, thus removing the first two array entries with key 'PAY_timestamp'.
652
	 *		becomes
653
	 *		SQL >> "PAY_timestamp !=  4234232", ignoring the first two PAY_timestamp conditions).
654
	 *
655
	 *		To overcome this, you can add a '*' character to the end of the field's name, followed by anything.
656
	 *		These will be removed when generating the SQL string, but allow for the array keys to be unique.
657
	 *		eg: you could rewrite the previous query as:
658
	 *		array('PAY_timestamp'=>array('>',$start_date),'PAY_timestamp*1st'=>array('<',$end_date),'PAY_timestamp*2nd'=>array('!=',$special_date))
659
	 *		which correctly becomes
660
	 *		SQL >> "PAY_timestamp > 123412341 AND PAY_timestamp < 2354235235234 AND PAY_timestamp != 1241234123"
661
	 *		This can be applied to condition operators too,
662
	 *		eg: array('OR'=>array('REG_ID'=>3,'Transaction.TXN_ID'=>23),'OR*whatever'=>array('Attendee.ATT_fname'=>'bob','Attendee.ATT_lname'=>'wilson')));
663
	 *	@var mixed $limit int|array	adds a limit to the query just like the SQL limit clause, so limits of "23", "25,50", and array(23,42) are all valid would become
664
	 *		SQL "...LIMIT 23", "...LIMIT 25,50", and "...LIMIT 23,42" respectively
665
	 *
666
	 *	@var array $on_join_limit allows the setting of a special select join with a internal limit so you can do paging on one-to-many multi-table-joins.
667
	 *		Send an array in the following format array('on_join_limit' => array( 'table_alias', array(1,2) ) ).
668
	 *	@var mixed $order_by name of a column to order by, or an array where keys are field names and values are either 'ASC' or 'DESC'. 'limit'=>array('STS_ID'=>'ASC','REG_date'=>'DESC'),
669
	 *		which would becomes SQL "...ORDER BY TXN_timestamp..." and "...ORDER BY STS_ID ASC, REG_date DESC..." respectively.
670
	 *		Like the 'where' conditions, these fields can be on related models.
671
	 *		Eg 'order_by'=>array('Registration.Transaction.TXN_amount'=>'ASC') is perfectly valid from any model related to 'Registration' (like Event, Attendee, Price, Datetime, etc.)
672
	 *	@var string $order	If 'order_by' is used and its value is a string (NOT an array), then 'order' specifies whether to order the field specified in 'order_by' in ascending or
673
	 *		descending order. Acceptable values are 'ASC' or 'DESC'. If, 'order_by' isn't used, but 'order' is, then it is assumed you want to order by the primary key.
674
	 *		Eg, EEM_Event::instance()->get_all(array('order_by'=>'Datetime.DTT_EVT_start','order'=>'ASC'); //(will join with the Datetime model's table(s) and order by its field DTT_EVT_start)
675
	 *		or EEM_Registration::instance()->get_all(array('order'=>'ASC'));//will make SQL "SELECT * FROM wp_esp_registration ORDER BY REG_ID ASC"
676
	 *
677
	 *	@var mixed $group_by name of field to order by, or an array of fields. Eg either 'group_by'=>'VNU_ID', or 'group_by'=>array('EVT_name','Registration.Transaction.TXN_total')
678
	 *
679
	 *	@var array $having	exactly like WHERE parameters array, except these conditions apply to the grouped results (whereas WHERE conditions apply to the pre-grouped results)
680
	 *
681
	 *	@var array $force_join forces a join with the models named. Should be an numerically-indexed array where values are models to be joined in the query.Eg
682
	 *		array('Attendee','Payment','Datetime'). You may join with transient models using period, eg "Registration.Transaction.Payment".
683
	 *		You will probably only want to do this in hopes of increasing efficiency, as related models which belongs to the current model
684
	 *		(ie, the current model has a foreign key to them, like how Registration belongs to Attendee) can be cached in order
685
	 *		to avoid future queries
686
	 *
687
	 *	@var string $default_where_conditions can be set to 'none', 'this_model_only', 'other_models_only', or 'all'. set this to 'none' to disable all default where conditions. Eg, usually soft-deleted objects are filtered-out
688
	 *		if you want to include them, set this query param to 'none'. If you want to ONLY disable THIS model's default where conditions
689
	 *		set it to 'other_models_only'. If you only want this model's default where conditions added to the query, use 'this_model_only'.
690
	 *		If you want to use all default where conditions (default), set to 'all'.
691
	 *	@var string $caps controls what capability requirements to apply to the query; ie, should we just NOT
692
	 *		apply cany capabilities/permissions/restrictions and return everything? Or should we only show the
693
	 *		current user items they should be able to view on the frontend, backend, edit, or delete?
694
	 *		can be set to 'none' (default), 'read_frontend', 'read_backend', 'edit' or 'delete'
695
	 * }
696
	 * @return EE_Base_Class[]  *note that there is NO option to pass the output type. If you want results different from EE_Base_Class[], use _get_all_wpdb_results()and make it public again. Array keys are object IDs (if there is a primary key on the model. if not, numerically indexed)
697
	 * Some full examples:
698
	 *
699
	 * 		get 10 transactions which have Scottish attendees:
700
	 *
701
	 * 		EEM_Transaction::instance()->get_all( array(
702
	 *			array(
703
	 *				'OR'=>array(
704
	 *					'Registration.Attendee.ATT_fname'=>array('like','Mc%'),
705
	 *					'Registration.Attendee.ATT_fname*other'=>array('like','Mac%')
706
	 *				)
707
	 * 			),
708
	 *			'limit'=>10,
709
	 *			'group_by'=>'TXN_ID'
710
	 * 		));
711
	 *
712
	 * 		get all the answers to the question titled "shirt size" for event with id 12, ordered by their answer
713
	 *
714
	 * 		EEM_Answer::instance()->get_all(array(
715
	 *			array(
716
	 *				'Question.QST_display_text'=>'shirt size',
717
	 *				'Registration.Event.EVT_ID'=>12
718
	 * 			),
719
	 *			'order_by'=>array('ANS_value'=>'ASC')
720
	 *		));
721
	 */
722
	function get_all($query_params = array()){
723
		return $this->_create_objects($this->_get_all_wpdb_results($query_params, ARRAY_A, NULL));
724
	}
725
726
	/**
727
	 * Modifies the query parameters so we only get back model objects
728
	 * that "belong" to the current user
729
	 * @param array $query_params @see EEM_Base::get_all()
730
	 * @return array like EEM_Base::get_all
731
	 */
732
	function alter_query_params_to_only_include_mine( $query_params = array() ) {
733
		$wp_user_field_name = $this->wp_user_field_name();
734
		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...
735
			$query_params[0][ $wp_user_field_name ] = get_current_user_id();
736
		}
737
		return $query_params;
738
	}
739
740
	/**
741
	 * Returns the name of the field's name that points to the WP_User table
742
	 *  on this model (or follows the _model_chain_to_wp_user and uses that model's
743
	 * foreign key to the WP_User table)
744
	 * @return string|boolean string on success, boolean false when there is no
745
	 * foreign key to the WP_User table
746
	 */
747
	function wp_user_field_name() {
748
		try{
749
			if( ! empty( $this->_model_chain_to_wp_user ) ) {
750
				$models_to_follow_to_wp_users = explode( '.', $this->_model_chain_to_wp_user );
751
				$last_model_name = end( $models_to_follow_to_wp_users );
752
				$model_with_fk_to_wp_users = EE_Registry::instance()->load_model( $last_model_name );
753
				$model_chain_to_wp_user = $this->_model_chain_to_wp_user . '.';
754
			}else{
755
				$model_with_fk_to_wp_users = $this;
756
				$model_chain_to_wp_user = '';
757
			}
758
			$wp_user_field = $model_with_fk_to_wp_users->get_foreign_key_to( 'WP_User' );
759
			return $model_chain_to_wp_user . $wp_user_field->get_name();
760
		}catch( EE_Error $e ) {
761
			return false;
762
		}
763
	}
764
765
	/**
766
	 * Returns the _model_chain_to_wp_user string, which indicates which related model
767
	 * (or transiently-related model) has a foreign key to the wp_users table;
768
	 * useful for finding if model objects of this type are 'owned' by the current user.
769
	 * This is an empty string when the foreign key is on this model and when it isn't,
770
	 * but is only non-empty when this model's ownership is indicated by a RELATED model
771
	 * (or transietly-related model)
772
	 * @return string
773
	 */
774
	public function model_chain_to_wp_user(){
775
		return $this->_model_chain_to_wp_user;
776
	}
777
778
	/**
779
	 * Whether this model is 'owned' by a specific wordpress user (even indirectly,
780
	 * like how registrations don't have a foreign key to wp_users, but the
781
	 * events they are for are), or is unrelated to wp users.
782
	 * generally available
783
	 * @return boolean
784
	 */
785
	public function is_owned() {
786
		if( $this->model_chain_to_wp_user() ){
787
			return true;
788
		}else{
789
			try{
790
				$this->get_foreign_key_to( 'WP_User' );
791
				return true;
792
			}catch( EE_Error $e ){
793
				return false;
794
			}
795
		}
796
	}
797
798
799
	/**
800
	 * Used internally to get WPDB results, because other functions, besides get_all, may want to do some queries, but may want to
801
	 * preserve the WPDB results (eg, update, which first queries to make sure we have all the tables on the model)
802
	 * @param array $query_params like EEM_Base::get_all's $query_params
803
	 * @param string $output ARRAY_A, OBJECT_K, etc. Just like
804
	 * @param mixed $columns_to_select, What columns to select. By default, we select all columns specified by the fields on the model,
0 ignored issues
show
Documentation introduced by
There is no parameter named $columns_to_select,. Did you maybe mean $columns_to_select?

This check looks for PHPDoc comments describing methods or function parameters that do not exist on the corresponding method or function. It has, however, found a similar but not annotated parameter which might be a good fit.

Consider the following example. The parameter $ireland is not defined by the method finale(...).

/**
 * @param array $germany
 * @param array $ireland
 */
function finale($germany, $island) {
    return "2:1";
}

The most likely cause is that the parameter was changed, but the annotation was not.

Loading history...
805
	 * and the models we joined to in the query. However, you can override this and set the select to "*", or a specific column name, like "ATT_ID", etc.
806
	 * If you would like to use these custom selections in WHERE, GROUP_BY, or HAVING clauses, you must instead provide an array.
807
	 * Array keys are the aliases used to refer to this selection, and values are to be numerically-indexed arrays, where 0 is the selection
808
	 * and 1 is the data type. Eg, array('count'=>array('COUNT(REG_ID)','%d'))
809
	 * @return array|stdClass[] like results of $wpdb->get_results($sql,OBJECT), (ie, output type is OBJECT)
810
	 */
811
	protected function  _get_all_wpdb_results($query_params = array(), $output = ARRAY_A, $columns_to_select = null){
812
		//remember the custom selections, if any
813
		if(is_array($columns_to_select)){
814
			$this->_custom_selections = $columns_to_select;
815
		}elseif(is_string($columns_to_select)){
816
			$this->_custom_selections = array($this->_custom_selections);
817
		}else{
818
			$this->_custom_selections = array();
819
		}
820
821
		$model_query_info = $this->_create_model_query_info_carrier($query_params);
822
		$select_expressions = $columns_to_select ? $this->_construct_select_from_input($columns_to_select) : $this->_construct_default_select_sql($model_query_info);
823
		$SQL ="SELECT $select_expressions ".$this->_construct_2nd_half_of_select_query($model_query_info);
824
//		echo "sql:$SQL";
825
		$results =  $this->_do_wpdb_query( 'get_results', array($SQL, $output ) );// $wpdb->get_results($SQL, $output);
826
		return $results;
827
	}
828
829
	/**
830
	 * Gets an array of rows from the database just like $wpdb->get_results would,
831
	 * but you can use the $query_params like on EEM_Base::get_all() to more easily
832
	 * take care of joins, field preparation etc.
833
	 * @param array $query_params like EEM_Base::get_all's $query_params
834
	 * @param string $output ARRAY_A, OBJECT_K, etc. Just like
835
	 * @param mixed $columns_to_select, What columns to select. By default, we select all columns specified by the fields on the model,
0 ignored issues
show
Documentation introduced by
There is no parameter named $columns_to_select,. Did you maybe mean $columns_to_select?

This check looks for PHPDoc comments describing methods or function parameters that do not exist on the corresponding method or function. It has, however, found a similar but not annotated parameter which might be a good fit.

Consider the following example. The parameter $ireland is not defined by the method finale(...).

/**
 * @param array $germany
 * @param array $ireland
 */
function finale($germany, $island) {
    return "2:1";
}

The most likely cause is that the parameter was changed, but the annotation was not.

Loading history...
836
	 * and the models we joined to in the query. However, you can override this and set the select to "*", or a specific column name, like "ATT_ID", etc.
837
	 * If you would like to use these custom selections in WHERE, GROUP_BY, or HAVING clauses, you must instead provide an array.
838
	 * Array keys are the aliases used to refer to this selection, and values are to be numerically-indexed arrays, where 0 is the selection
839
	 * and 1 is the data type. Eg, array('count'=>array('COUNT(REG_ID)','%d'))
840
	 * @return stdClass[] like results of $wpdb->get_results($sql,OBJECT), (ie, output type is OBJECT)
841
	 */
842
	public function  get_all_wpdb_results($query_params = array(), $output = ARRAY_A, $columns_to_select = null){
843
		return $this->_get_all_wpdb_results($query_params, $output, $columns_to_select);
844
	}
845
846
847
	/**
848
	 * For creating a custom select statement
849
	 * @param mixed $columns_to_select either a string to be inserted directly as the select statement,
850
	 * or an array where keys are aliases, and values are arrays where 0=>the selection SQL, and 1=>is the datatype
851
	 * @throws EE_Error
852
	 * @return string
853
	 */
854
	private function _construct_select_from_input($columns_to_select){
855
		if(is_array($columns_to_select)){
856
			$select_sql_array = array();
857
858
			foreach($columns_to_select as $alias => $selection_and_datatype){
859
				if( ! is_array($selection_and_datatype) || ! isset($selection_and_datatype[1])){
860
					throw new EE_Error(sprintf(__("Custom selection %s (alias %s) needs to be an array like array('COUNT(REG_ID)','%%d')", "event_espresso"),$selection_and_datatype,$alias));
861
				}
862
				if( ! in_array( $selection_and_datatype[1],$this->_valid_wpdb_data_types)){
863
					throw new EE_Error(sprintf(__("Datatype %s (for selection '%s' and alias '%s') is not a valid wpdb datatype (eg %%s)", "event_espresso"),$selection_and_datatype[1],$selection_and_datatype[0],$alias,implode(",",$this->_valid_wpdb_data_types)));
864
				}
865
				$select_sql_array[] = "{$selection_and_datatype[0]} AS $alias";
866
			}
867
			$columns_to_select_string = implode(", ",$select_sql_array);
868
		}else{
869
			$columns_to_select_string = $columns_to_select;
870
		}
871
		return $columns_to_select_string;
872
873
	}
874
875
876
877
	/**
878
	 * Convenient wrapper for getting the primary key field's name. Eg, on Registration, this would be 'REG_ID'
879
	 * @return string
880
	 */
881
	function primary_key_name(){
882
		return $this->get_primary_key_field()->get_name();
883
	}
884
885
886
887
	/**
888
	 * Gets a single item for this model from the DB, given only its ID (or null if none is found).
889
	 * If there is no primary key on this model, $id is treated as primary key string
890
	 * @param mixed $id int or string, depending on the type of the model's primary key
891
	 * @return EE_Base_Class
892
	 */
893
	function get_one_by_ID($id){
894
		if( $this->get_from_entity_map( $id ) ){
895
			return $this->get_from_entity_map( $id );
896
		}elseif( $this->has_primary_key_field ( ) ) {
897
			$primary_key_name = $this->get_primary_key_field()->get_name();
898
			return $this->get_one(array(array($primary_key_name => $id)));
899
		}else{
900
			//no primary key, so the $id must be from the get_index_primary_key_string()
901
			return $this->get_one( array( $this->parse_index_primary_key_string( $id ) ) );
902
		}
903
	}
904
905
906
	/**
907
	 * Gets a single item for this model from the DB, given the $query_params. Only returns a single class, not an array. If no item is found,
908
	 * null is returned.
909
	 * @param array $query_params like EEM_Base's $query_params variable.
910
	 * @return EE_Base_Class | NULL
911
	 */
912 View Code Duplication
	function get_one($query_params = array()){
0 ignored issues
show
Duplication introduced by
This method seems to be duplicated in your project.

Duplicated code is one of the most pungent code smells. If you need to duplicate the same code in three or more different places, we strongly encourage you to look into extracting the code into a single class or operation.

You can also find more detailed suggestions in the “Code” section of your repository.

Loading history...
913
		if( ! is_array( $query_params ) ){
914
			EE_Error::doing_it_wrong('EEM_Base::get_one', sprintf( __( '$query_params should be an array, you passed a variable of type %s', 'event_espresso' ), gettype( $query_params ) ), '4.6.0' );
915
			$query_params = array();
916
		}
917
		$query_params['limit'] = 1;
918
		$items = $this->get_all($query_params);
919
		if(empty($items)){
920
			return null;
921
		}else{
922
			return array_shift($items);
923
		}
924
	}
925
926
927
928
929
	/**
930
	 * Returns the next x number of items in sequence from the given value as
931
	 * found in the database matching the given query conditions.
932
	 *
933
	 * @param mixed $current_field_value    Value used for the reference point.
934
	 * @param null $field_to_order_by       What field is used for the
935
	 *                                      reference point.
936
	 * @param int $limit                    How many to return.
937
	 * @param array $query_params           Extra conditions on the query.
938
	 * @param null $columns_to_select       If left null, then an array of
939
	 *                                      EE_Base_Class objects is returned,
940
	 *                                      otherwise you can indicate just the
941
	 *                                      columns you want returned.
942
	 *
943
	 * @return EE_Base_Class[]|array
944
	 */
945
	public function next_x( $current_field_value, $field_to_order_by = null, $limit = 1, $query_params = array(), $columns_to_select = null ) {
946
		return $this->_get_consecutive( $current_field_value, '>', $field_to_order_by, $limit, $query_params, $columns_to_select );
947
	}
948
949
950
951
952
953
	/**
954
	 * Returns the previous x number of items in sequence from the given value
955
	 * as found in the database matching the given query conditions.
956
	 *
957
	 * @param mixed $current_field_value    Value used for the reference point.
958
	 * @param null $field_to_order_by       What field is used for the
959
	 *                                      reference point.
960
	 * @param int $limit                    How many to return.
961
	 * @param array $query_params           Extra conditions on the query.
962
	 * @param null $columns_to_select       If left null, then an array of
963
	 *                                      EE_Base_Class objects is returned,
964
	 *                                      otherwise you can indicate just the
965
	 *                                      columns you want returned.
966
	 *
967
	 * @return EE_Base_Class[]|array
968
	 */
969
	public function previous_x( $current_field_value, $field_to_order_by = null, $limit = 1, $query_params = array(), $columns_to_select = null ) {
970
		return $this->_get_consecutive( $current_field_value, '<', $field_to_order_by, $limit, $query_params, $columns_to_select );
971
	}
972
973
974
975
976
	/**
977
	 * Returns the next item in sequence from the given value as found in the
978
	 * database matching the given query conditions.
979
	 *
980
	 * @param mixed $current_field_value    Value used for the reference point.
981
	 * @param null $field_to_order_by       What field is used for the
982
	 *                                      reference point.
983
	 * @param array $query_params           Extra conditions on the query.
984
	 * @param null $columns_to_select       If left null, then an EE_Base_Class
985
	 *                                      object is returned, otherwise you
986
	 *                                      can indicate just the columns you
987
	 *                                      want and a single array indexed by
988
	 *                                      the columns will be returned.
989
	 *
990
	 * @return EE_Base_Class|null|array()
0 ignored issues
show
Documentation introduced by
The doc-type EE_Base_Class|null|array() could not be parsed: Expected "|" or "end of type", but got "(" at position 24. (view supported doc-types)

This check marks PHPDoc comments that could not be parsed by our parser. To see which comment annotations we can parse, please refer to our documentation on supported doc-types.

Loading history...
991
	 */
992
	public function next( $current_field_value, $field_to_order_by = null, $query_params = array(), $columns_to_select = null ) {
993
		$results = $this->_get_consecutive( $current_field_value, '>', $field_to_order_by, 1, $query_params, $columns_to_select );
994
		return empty( $results ) ? null : reset( $results );
995
	}
996
997
998
999
1000
	/**
1001
	 * Returns the previous item in sequence from the given value as found in
1002
	 * the database matching the given query conditions.
1003
	 *
1004
	 * @param mixed $current_field_value    Value used for the reference point.
1005
	 * @param null $field_to_order_by       What field is used for the
1006
	 *                                      reference point.
1007
	 * @param array $query_params           Extra conditions on the query.
1008
	 * @param null $columns_to_select       If left null, then an EE_Base_Class
1009
	 *                                      object is returned, otherwise you
1010
	 *                                      can indicate just the columns you
1011
	 *                                      want and a single array indexed by
1012
	 *                                      the columns will be returned.
1013
	 *
1014
	 * @return EE_Base_Class|null|array()
0 ignored issues
show
Documentation introduced by
The doc-type EE_Base_Class|null|array() could not be parsed: Expected "|" or "end of type", but got "(" at position 24. (view supported doc-types)

This check marks PHPDoc comments that could not be parsed by our parser. To see which comment annotations we can parse, please refer to our documentation on supported doc-types.

Loading history...
1015
	 */
1016
	public function previous( $current_field_value, $field_to_order_by = null, $query_params = array(), $columns_to_select = null ) {
1017
		$results = $this->_get_consecutive( $current_field_value, '<', $field_to_order_by, 1, $query_params, $columns_to_select );
1018
		return empty( $results ) ? null : reset( $results );
1019
	}
1020
1021
1022
1023
1024
1025
	/**
1026
	 * Returns the a consecutive number of items in sequence from the given
1027
	 * value as found in the database matching the given query conditions.
1028
	 *
1029
	 * @param mixed $current_field_value    Value used for the reference point.
1030
	 * @param string $operand               What operand is used for the
1031
	 *                                      sequence.
1032
	 * @param null $field_to_order_by       What field is used for the
1033
	 *                                      reference point.
1034
	 * @param int $limit                    How many to return.
1035
	 * @param array $query_params           Extra conditions on the query.
1036
	 * @param null $columns_to_select       If left null, then an array of
1037
	 *                                      EE_Base_Class objects is returned,
1038
	 *                                      otherwise you can indicate just the
1039
	 *                                      columns you want returned.
1040
	 *
1041
	 * @return EE_Base_Class[]|array
1042
	 * @throws EE_Error
1043
	 */
1044
	protected function _get_consecutive( $current_field_value, $operand = '>', $field_to_order_by = null, $limit = 1, $query_params = array(), $columns_to_select = null ) {
1045
		//if $field_to_order_by is empty then let's assume we're ordering by the primary key.
1046
		if ( empty( $field_to_order_by ) ) {
1047
			if ( $this->has_primary_key_field() ) {
1048
				$field_to_order_by = $this->get_primary_key_field()->get_name();
1049
			} else {
1050
1051
				if ( WP_DEBUG ) {
1052
					throw new EE_Error( __( '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).', 'event_espresso' ) );
1053
				}
1054
				EE_Error::add_error( __('There was an error with the query.', 'event_espresso') );
1055
				return array();
1056
			}
1057
		}
1058
1059
		if( ! is_array( $query_params ) ){
1060
			EE_Error::doing_it_wrong('EEM_Base::_get_consecutive', sprintf( __( '$query_params should be an array, you passed a variable of type %s', 'event_espresso' ), gettype( $query_params ) ), '4.6.0' );
1061
			$query_params = array();
1062
		}
1063
1064
		//let's add the where query param for consecutive look up.
1065
		$query_params[0][ $field_to_order_by ] = array( $operand, $current_field_value );
1066
		$query_params['limit'] = $limit;
1067
1068
		//set direction
1069
		$incoming_orderby = isset( $query_params['order_by'] ) ? $query_params['order_by'] : array();
1070
		$query_params['order_by'] = $operand == '>' ? array( $field_to_order_by => 'ASC' ) + $incoming_orderby : array( $field_to_order_by => 'DESC') + $incoming_orderby;
1071
1072
		//if $columns_to_select is empty then that means we're returning EE_Base_Class objects
1073
		if ( empty( $columns_to_select ) ) {
1074
			return $this->get_all( $query_params );
1075
		} else {
1076
			//getting just the fields
1077
			return $this->_get_all_wpdb_results( $query_params, ARRAY_A, $columns_to_select );
1078
		}
1079
	}
1080
1081
1082
1083
1084
	/**
1085
	 * This sets the _timezone property after model object has been instantiated.
1086
	 * @param null | string $timezone valid PHP DateTimeZone timezone string
1087
	 */
1088
	public function set_timezone( $timezone ) {
1089
		if ( $timezone !== null ) {
1090
			$this->_timezone = $timezone;
1091
		}
1092
		//note we need to loop through relations and set the timezone on those objects as well.
1093
		foreach ( $this->_model_relations as $relation ) {
1094
			$relation->set_timezone( $timezone );
1095
		}
1096
		//and finally we do the same for any datetime fields
1097
		foreach ( $this->_fields as $field ) {
1098
			if ( $field instanceof EE_Datetime_Field ) {
1099
				$field->set_timezone( $timezone );
1100
			}
1101
		}
1102
	}
1103
1104
1105
1106
	/**
1107
	 * This just returns whatever is set for the current timezone.
1108
	 *
1109
	 * @access public
1110
	 * @return string
1111
	 */
1112
	public function get_timezone() {
1113
		//first validate if timezone is set.  If not, then let's set it be whatever is set on the model fields.
1114
		if ( empty( $this->_timezone ) ) {
1115
			foreach( $this->_fields as $field ) {
1116
				if ( $field instanceof EE_Datetime_Field ) {
1117
					$this->set_timezone($field->get_timezone());
1118
					break;
1119
				}
1120
			}
1121
		}
1122
1123
		//if timezone STILL empty then return the default timezone for the site.
1124
		if ( empty( $this->_timezone ) ) {
1125
			EE_Registry::instance()->load_helper( 'DTT_Helper' );
1126
			$this->set_timezone( EEH_DTT_Helper::get_timezone() );
1127
		}
1128
		return $this->_timezone;
1129
	}
1130
1131
1132
1133
	/**
1134
	 * This returns the date formats set for the given field name and also ensures that
1135
	 * $this->_timezone property is set correctly.
1136
	 *
1137
	 * @since 4.6.x
1138
	 * @param string $field_name The name of the field the formats are being retrieved for.
1139
	 * @param bool   $pretty          Whether to return the pretty formats (true) or not (false).
1140
	 * @throws EE_Error   If the given field_name is not of the EE_Datetime_Field type.
1141
	 *
1142
	 * @return array formats in an array with the date format first, and the time format last.
1143
	 */
1144
	public function get_formats_for( $field_name, $pretty = false ) {
1145
		$field_settings = $this->field_settings_for( $field_name );
1146
1147
		//if not a valid EE_Datetime_Field then throw error
1148
		if ( ! $field_settings instanceof EE_Datetime_Field ) {
1149
			throw new EE_Error( sprintf( __('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.', 'event_espresso' ), $field_name ) );
1150
		}
1151
1152
		//while we are here, let's make sure the timezone internally in EEM_Base matches what is stored on
1153
		//the field.
1154
		$this->_timezone = $field_settings->get_timezone();
1155
1156
		return array( $field_settings->get_date_format( $pretty ), $field_settings->get_time_format( $pretty ) );
1157
	}
1158
1159
1160
1161
	/**
1162
	 * This returns the current time in a format setup for a query on this model.
1163
	 * Usage of this method makes it easier to setup queries against EE_Datetime_Field columns because
1164
	 * it will return:
1165
	 *  - a formatted string in the timezone and format currently set on the EE_Datetime_Field for the given field for NOW
1166
	 *  - or a unixtimestamp (equivalent to time())
1167
	 *
1168
	 * @since 4.6.x
1169
	 * @param string $field_name The field the current time is needed for.
1170
	 * @param bool   $timestamp  True means to return a unix timestamp. Otherwise a
1171
	 *                           		 formatted string matching the set format for the field in the set timezone will
1172
	 *                           		 be returned.
1173
	 * @param string $what         Whether to return the string in just the time format, the date format, or both.
1174
	 *
1175
	 * @throws EE_Error   	If the given field_name is not of the EE_Datetime_Field type.
1176
	 *
1177
	 * @return int|string  If the given field_name is not of the EE_Datetime_Field type, then an EE_Error
1178
	 *                    	     exception is triggered.
1179
	 */
1180
	public function current_time_for_query( $field_name, $timestamp = false, $what = 'both' ) {
1181
		$formats = $this->get_formats_for( $field_name );
1182
1183
		$DateTime = new DateTime( "now", new DateTimeZone( $this->_timezone ) );
1184
1185
		if ( $timestamp ) {
1186
			return $DateTime->format( 'U' );
1187
		}
1188
1189
		//not returning timestamp, so return formatted string in timezone.
1190
		switch( $what ) {
1191
			case 'time' :
1192
				return $DateTime->format( $formats[1] );
1193
				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...
1194
			case 'date' :
1195
				return $DateTime->format( $formats[0] );
1196
				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...
1197
			default :
1198
				return $DateTime->format( implode( ' ', $formats ) );
1199
				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...
1200
		}
1201
	}
1202
1203
1204
1205
1206
1207
	/**
1208
	 * This receives a timestring for a given field and ensures that it is setup to match what the internal settings
1209
	 * for the model are.  Returns a DateTime object.
1210
	 *
1211
	 * Note: a gotcha for when you send in unixtimestamp.  Remember a unixtimestamp is already timezone agnostic,
1212
	 * (functionally the equivalent of UTC+0).  So when you send it in, whatever timezone string you include is ignored.
1213
	 *
1214
	 * @param string $field_name The field being setup.
1215
	 * @param string $timestring   The date timestring being used.
1216
	 * @param string $incoming_format        The format for the time string.
1217
	 * @param string $timezone   By default, it is assumed the incoming timestring is in timezone for
1218
	 *                           		the blog.  If this is not the case, then it can be specified here.  If incoming format is
1219
	 *                           		'U', this is ignored.
1220
	 * @return DateTime
1221
	 */
1222
	public function convert_datetime_for_query( $field_name, $timestring, $incoming_format, $timezone = '' ) {
1223
1224
		//just using this to ensure the timezone is set correctly internally
1225
		$this->get_formats_for( $field_name );
1226
1227
		//load EEH_DTT_Helper
1228
		EE_Registry::instance()->load_helper( 'DTT_Helper' );
1229
		$set_timezone = empty( $timezone ) ? EEH_DTT_Helper::get_timezone() : $timezone;
1230
1231
		$incomingDateTime = date_create_from_format( $incoming_format, $timestring, new DateTimeZone( $set_timezone ) );
1232
1233
		return $incomingDateTime->setTimeZone( new DateTimeZone( $this->_timezone ) );
1234
	}
1235
1236
1237
1238
1239
	/**
1240
	 * Gets all the tables comprising this model. Array keys are the table aliases, and values are EE_Table objects
1241
	 * @return EE_Table_Base[]
1242
	 */
1243
	function get_tables(){
1244
		return $this->_tables;
1245
	}
1246
1247
1248
1249
	/**
1250
	 * Updates all the database entries (in each table for this model) according to $fields_n_values and optionally
1251
	 * also updates all the model objects, where the criteria expressed in $query_params are met..
1252
	 * Also note: if this model has multiple tables, this update verifies all the secondary tables have an entry for each row (in the primary table) we're trying to update; if not,
1253
	 * it inserts an entry in the secondary table.
1254
	 * Eg: if our model has 2 tables: wp_posts (primary), and wp_esp_event (secondary). Let's say we are trying to update a model object with EVT_ID = 1
1255
	 * (which means where wp_posts has ID = 1, because wp_posts.ID is the primary key's column), which exists, but there is no entry in wp_esp_event for this entry in wp_posts.
1256
	 * So, this update script will insert a row into wp_esp_event, using any available parameters from $fields_n_values (eg, if "EVT_limit" => 40 is in $fields_n_values,
1257
	 * the new entry in wp_esp_event will set EVT_limit = 40, and use default for other columns which are not specified)
1258
	 * @param array $fields_n_values keys are model fields (exactly like keys in EEM_Base::_fields, NOT db columns!), values are strings, ints, floats, and maybe arrays if they are to be serialized.
1259
	 * Basically, the values are what you'd expect to be values on the model, NOT necessarily what's in the DB. For example, if we wanted to update only the TXN_details on any Transactions where its ID=34,
1260
	 * we'd use this method as follows:
1261
	 * EEM_Transaction::instance()->update(
1262
	 *		array('TXN_details'=>array('detail1'=>'monkey','detail2'=>'banana'),
1263
	 *		array(array('TXN_ID'=>34)));
1264
	 * @param array $query_params very much like EEM_Base::get_all's $query_params
1265
	 * in client code into what's expected to be stored on each field. Eg, consider updating Question's QST_admin_label field is of type Simple_HTML. If you use this function to update
1266
	 * that field to $new_value = (note replace 8's with appropriate opening and closing tags in the following example)"8script8alert('I hack all');8/script88b8boom baby8/b8", then if you set $values_already_prepared_by_model_object to TRUE,
1267
	 * it is assumed that you've already called EE_Simple_HTML_Field->prepare_for_set($new_value), which removes the malicious javascript. However, if $values_already_prepared_by_model_object
1268
	 * is left as FALSE, then EE_Simple_HTML_Field->prepare_for_set($new_value) will be called on it, and every other field, before insertion. We provide this parameter because
1269
	 * model objects perform their prepare_for_set function on all their values, and so don't need to be called again (and in many cases, shouldn't be called again. Eg: if we
1270
	 * escape HTML characters in the prepare_for_set method...)
1271
	 * @param boolean $keep_model_objs_in_sync if TRUE, makes sure we ALSO update model objects
1272
	 * in this model's entity map according to $fields_n_values that match $query_params. This
1273
	 * obviously has some overhead, so you can disable it by setting this to FALSE, but
1274
	 * be aware that model objects being used could get out-of-sync with the database
1275
	 * @return int how many rows got updated or FALSE if something went wrong with the query (wp returns FALSE or num rows affected which *could* include 0 which DOES NOT mean the query was bad)
1276
	 */
1277
	function update($fields_n_values, $query_params, $keep_model_objs_in_sync = TRUE){
1278
		if( ! is_array( $query_params ) ){
1279
			EE_Error::doing_it_wrong('EEM_Base::update', sprintf( __( '$query_params should be an array, you passed a variable of type %s', 'event_espresso' ), gettype( $query_params ) ), '4.6.0' );
1280
			$query_params = array();
1281
		}
1282
		/**
1283
		 * Action called before a model update call has been made.
1284
		 *
1285
		 * @param EEM_Base $model
1286
		 * @param array $fields_n_values the updated fields and their new values
1287
		 * @param array $query_params @see EEM_Base::get_all()
1288
		 */
1289
		do_action( 'AHEE__EEM_Base__update__begin',$this, $fields_n_values, $query_params );
1290
		/**
1291
		 * Filters the fields about to be updated given the query parameters. You can provide the
1292
		 * $query_params to $this->get_all() to find exactly which records will be updated
1293
		 * @param array $fields_n_values fields and their new values
1294
		 * @param EEM_Base $model the model being queried
1295
		 * @param array $query_params see EEM_Base::get_all()
1296
		 */
1297
		$fields_n_values = apply_filters( 'FHEE__EEM_Base__update__fields_n_values', $fields_n_values, $this, $query_params );
1298
		//need to verify that, for any entry we want to update, there are entries in each secondary table.
1299
		//to do that, for each table, verify that it's PK isn't null.
1300
		$tables= $this->get_tables();
1301
1302
		//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
1303
		//NOTE: we should make this code more efficient by NOT querying twice
1304
		//before the real update, but that needs to first go through ALPHA testing
1305
		//as it's dangerous. says Mike August 8 2014
1306
1307
			//we want to make sure the default_where strategy is ignored
1308
			$this->_ignore_where_strategy = TRUE;
1309
			$wpdb_select_results = $this->_get_all_wpdb_results($query_params);
1310
			foreach( $wpdb_select_results as $wpdb_result ){
1311
				// type cast stdClass as array
1312
				$wpdb_result = (array)$wpdb_result;
1313
				//get the model object's PK, as we'll want this if we need to insert a row into secondary tables
1314
				if( $this->has_primary_key_field() ){
1315
					$main_table_pk_value = $wpdb_result[ $this->get_primary_key_field()->get_qualified_column() ];
1316
				}else{
1317
					//if there's no primary key, we basically can't support having a 2nd table on the model (we could but it woudl be lots of work)
1318
					$main_table_pk_value = null;
1319
				}
1320
				//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
1321
				//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
1322
				if(count($tables) > 1){
1323
					//foreach matching row in the DB, ensure that each table's PK isn't null. If so, there must not be an entry
1324
					//in that table, and so we'll want to insert one
1325
					foreach($tables as $table_obj){
1326
						$this_table_pk_column = $table_obj->get_fully_qualified_pk_column();
1327
						//if there is no private key for this table on the results, it means there's no entry
1328
						//in this table, right? so insert a row in the current table, using any fields available
1329
						if( ! ( array_key_exists( $this_table_pk_column, $wpdb_result) && $wpdb_result[ $this_table_pk_column ] )){
1330
							$success = $this->_insert_into_specific_table($table_obj, $fields_n_values, $main_table_pk_value);
1331
							//if we died here, report the error
1332
							if( ! $success ) {
1333
								return false;
0 ignored issues
show
Bug Best Practice introduced by
The return type of return false; (false) is incompatible with the return type documented by EEM_Base::update of type integer.

If you return a value from a function or method, it should be a sub-type of the type that is given by the parent type f.e. an interface, or abstract method. This is more formally defined by the Lizkov substitution principle, and guarantees that classes that depend on the parent type can use any instance of a child type interchangably. This principle also belongs to the SOLID principles for object oriented design.

Let’s take a look at an example:

class Author {
    private $name;

    public function __construct($name) {
        $this->name = $name;
    }

    public function getName() {
        return $this->name;
    }
}

abstract class Post {
    public function getAuthor() {
        return 'Johannes';
    }
}

class BlogPost extends Post {
    public function getAuthor() {
        return new Author('Johannes');
    }
}

class ForumPost extends Post { /* ... */ }

function my_function(Post $post) {
    echo strtoupper($post->getAuthor());
}

Our function my_function expects a Post object, and outputs the author of the post. The base class Post returns a simple string and outputting a simple string will work just fine. However, the child class BlogPost which is a sub-type of Post instead decided to return an object, and is therefore violating the SOLID principles. If a BlogPost were passed to my_function, PHP would not complain, but ultimately fail when executing the strtoupper call in its body.

Loading history...
1334
							}
1335
						}
1336
					}
1337
				}
1338
1339
//				//and now check that if we have cached any models by that ID on the model, that
1340
//				//they also get updated properly
1341
//				$model_object = $this->get_from_entity_map( $main_table_pk_value );
1342
//				if( $model_object ){
1343
//					foreach( $fields_n_values as $field => $value ){
1344
//						$model_object->set($field, $value);
1345
			//let's make sure default_where strategy is followed now
1346
			$this->_ignore_where_strategy = FALSE;
1347
		}
1348
		//if we want to keep model objects in sync, AND
1349
		//if this wasn't called from a model object (to update itself)
1350
		//then we want to make sure we keep all the existing
1351
		//model objects in sync with the db
1352
		if( $keep_model_objs_in_sync && ! $this->_values_already_prepared_by_model_object ){
1353
			if( $this->has_primary_key_field() ){
1354
				$model_objs_affected_ids = $this->get_col( $query_params );
1355
			}else{
1356
				//we need to select a bunch of columns and then combine them into the the "index primary key string"s
1357
				$models_affected_key_columns = $this->_get_all_wpdb_results($query_params, ARRAY_A );
1358
				$model_objs_affected_ids = array();
1359
				foreach( $models_affected_key_columns as $row ){
1360
					$combined_index_key = $this->get_index_primary_key_string( $row );
1361
					$model_objs_affected_ids[ $combined_index_key ] = $combined_index_key;
1362
				}
1363
1364
			}
1365
1366
			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...
1367
				//wait wait wait- if nothing was affected let's stop here
1368
				return 0;
1369
			}
1370
			foreach( $model_objs_affected_ids as $id ){
1371
				$model_obj_in_entity_map = $this->get_from_entity_map( $id );
0 ignored issues
show
Bug introduced by
Are you sure the assignment to $model_obj_in_entity_map is correct as $this->get_from_entity_map($id) (which targets EEM_Base::get_from_entity_map()) 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...
1372
				if( $model_obj_in_entity_map ){
1373
					foreach( $fields_n_values as $field => $new_value ){
1374
						$model_obj_in_entity_map->set( $field, $new_value );
1375
					}
1376
				}
1377
			}
1378
			//if there is a primary key on this model, we can now do a slight optimization
1379
			if( $this->has_primary_key_field() ){
1380
				//we already know what we want to update. So let's make the query simpler so it's a little more efficient
1381
				$query_params = array(
1382
					array( $this->primary_key_name() => array( 'IN', $model_objs_affected_ids ) ),
1383
					'limit' => count( $model_objs_affected_ids ), 'default_where_conditions' => 'none' );
1384
			}
1385
		}
1386
1387
		$model_query_info = $this->_create_model_query_info_carrier( $query_params );
1388
		$SQL = "UPDATE ".$model_query_info->get_full_join_sql()." SET ".$this->_construct_update_sql($fields_n_values).$model_query_info->get_where_sql();//note: doesn't use _construct_2nd_half_of_select_query() because doesn't accept LIMIT, ORDER BY, etc.
1389
		$rows_affected = $this->_do_wpdb_query('query', array( $SQL ) );
1390
		/**
1391
		 * Action called after a model update call has been made.
1392
		 *
1393
		 * @param EEM_Base $model
1394
		 * @param array $fields_n_values the updated fields and their new values
1395
		 * @param array $query_params @see EEM_Base::get_all()
1396
		 * @param int $rows_affected
1397
		 */
1398
		do_action( 'AHEE__EEM_Base__update__end',$this, $fields_n_values, $query_params, $rows_affected );
1399
		return $rows_affected;//how many supposedly got updated
1400
	}
1401
1402
	/**
1403
	 * Analogous to $wpdb->get_col, returns a 1-dimensional array where teh values
1404
	 * are teh values of the field specified (or by default the primary key field)
1405
	 * that matched the query params. Note that you should pass the name of the
1406
	 * model FIELD, not the database table's column name.
1407
	 * @param array $query_params @see EEM_Base::get_all()
1408
	 * @param string $field_to_select
1409
	 * @return array just like $wpdb->get_col()
1410
	 */
1411
	public function get_col( $query_params  = array(), $field_to_select = NULL ){
1412
1413
		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...
1414
			$field = $this->field_settings_for( $field_to_select );
1415
		}elseif( $this->has_primary_key_field ( ) ){
1416
			$field = $this->get_primary_key_field();
1417
		}else{
1418
			//no primary key, just grab the first column
1419
			$field = reset( $this->field_settings());
0 ignored issues
show
Bug introduced by
$this->field_settings() cannot be passed to reset() as the parameter $array expects a reference.
Loading history...
1420
		}
1421
1422
1423
		$model_query_info = $this->_create_model_query_info_carrier($query_params);
1424
		$select_expressions = $field->get_qualified_column();
1425
		$SQL ="SELECT $select_expressions ".$this->_construct_2nd_half_of_select_query($model_query_info);
1426
		$results =  $this->_do_wpdb_query('get_col', array( $SQL ) );
1427
		return $results;
1428
	}
1429
1430
	/**
1431
	 * Returns a single column value for a single row from the database
1432
	 * @param array $query_params @see EEM_Base::get_all()
1433
	 * @param string $field_to_select @see EEM_Base::get_col()
1434
	 * @return string
1435
	 */
1436
	public function get_var( $query_params = array(), $field_to_select = NULL ) {
1437
		$query_params[ 'limit' ] = 1;
1438
		$col = $this->get_col( $query_params, $field_to_select );
1439
		if( ! empty( $col ) ) {
1440
			return reset( $col );
1441
		}else{
1442
			return NULL;
1443
		}
1444
	}
1445
1446
1447
1448
	/**
1449
	 * Makes the SQL for after "UPDATE table_X inner join table_Y..." and before "...WHERE". Eg "Question.name='party time?', Question.desc='what do you think?',..."
1450
	 * Values are filtered through wpdb->prepare to avoid against SQL injection, but currently no further filtering is done
1451
	 * @global $wpdb
1452
	 * @param array $fields_n_values array keys are field names on this model, and values are what those fields should be updated to in the DB
1453
	 * @return string of SQL
1454
	 */
1455
	function _construct_update_sql($fields_n_values){
1456
		/** @type WPDB $wpdb */
1457
		global $wpdb;
1458
		$cols_n_values = array();
1459
		foreach($fields_n_values as $field_name => $value){
1460
			$field_obj = $this->field_settings_for($field_name);
1461
			//if the value is NULL, we want to assign the value to that.
1462
			//wpdb->prepare doesn't really handle that properly
1463
			$prepared_value = $this->_prepare_value_or_use_default( $field_obj, $fields_n_values );
1464
			$value_sql = $prepared_value===NULL ? 'NULL' : $wpdb->prepare( $field_obj->get_wpdb_data_type(), $prepared_value );
1465
			$cols_n_values[] = $field_obj->get_qualified_column()."=".$value_sql;
1466
		}
1467
		return implode(",",$cols_n_values);
1468
1469
	}
1470
1471
1472
1473
	/**
1474
	 * Deletes a single row from the DB given the model object's primary key value. (eg, EE_Attendee->ID()'s value).
1475
	 * Wrapper for EEM_Base::delete()
1476
	 * @param mixed $id
1477
	 * @return boolean whether the row got deleted or not
1478
	 */
1479
	public function delete_by_ID( $id ){
1480
		return $this->delete( array(
1481
			array( $this->get_primary_key_field()->get_name() => $id ),
1482
			'limit' 	=> 1
1483
		) );
1484
	}
1485
1486
1487
1488
	/**
1489
	 * Deletes the model objects that meet the query params. Note: this method is overridden
1490
	 * in EEM_Soft_Delete_Base so that soft-deleted model objects are instead only flagged
1491
	 * as archived, not actually deleted
1492
	 * @param array $query_params very much like EEM_Base::get_all's $query_params
1493
	 * @param boolean $allow_blocking if TRUE, matched objects will only be deleted if there is no related model info
1494
	 * that blocks it (ie, there' sno other data that depends on this data); if false, deletes regardless of other objects
1495
	 * which may depend on it. Its generally advisable to always leave this as TRUE, otherwise you could easily corrupt your DB
1496
	 * @return int how many rows got deleted
1497
	 */
1498
	function delete($query_params,$allow_blocking = true){
1499
		/**
1500
		 * Action called just before performing a real deletion query. You can use the
1501
		 * model and its $query_params to find exactly which items will be deleted
1502
		 * @param EEM_Base $model
1503
		 * @param array $query_params @see EEM_Base::get_all()
1504
		 * @param boolean $allow_blocking whether or not to allow related model objects
1505
		 * to block (prevent) this deletion
1506
		 */
1507
		do_action( 'AHEE__EEM_Base__delete__begin', $this, $query_params, $allow_blocking );
1508
		//some MySQL databases may be running safe mode, which may restrict
1509
		//deletion if there is no KEY column used in the WHERE statement of a deletion.
1510
		//to get around this, we first do a SELECT, get all the IDs, and then run another query
1511
		//to delete them
1512
		$items_for_deletion = $this->_get_all_wpdb_results($query_params);
1513
		$deletion_where = $this->_setup_ids_for_delete( $items_for_deletion, $allow_blocking);
1514
		if($deletion_where){
1515
			//echo "objects for deletion:";var_dump($objects_for_deletion);
1516
			$model_query_info = $this->_create_model_query_info_carrier($query_params);
1517
			$table_aliases = array();
1518
			foreach(array_keys($this->_tables) as $table_alias){
1519
				$table_aliases[] = $table_alias;
1520
			}
1521
			$SQL = "DELETE ".implode(", ",$table_aliases)." FROM ".$model_query_info->get_full_join_sql()." WHERE ".$deletion_where;
1522
1523
			//		/echo "delete sql:$SQL";
1524
			$rows_deleted = $this->_do_wpdb_query( 'query', array( $SQL ) );
1525
		}else{
1526
			$rows_deleted = 0;
1527
		}
1528
1529
		//and lastly make sure those items are removed from the entity map; if they could be put into it at all
1530
		if( $this->has_primary_key_field() ){
1531
			foreach($items_for_deletion as $item_for_deletion_row ){
1532
				$pk_value = $item_for_deletion_row[ $this->get_primary_key_field()->get_qualified_column() ];
1533
				if( isset( $this->_entity_map[ $pk_value ] ) ){
1534
					unset( $this->_entity_map[ $pk_value ] );
1535
				}
1536
			}
1537
		}
1538
1539
		/**
1540
		 * Action called just after performing a real deletion query. Although at this point the
1541
		 * items should have been deleted
1542
		 * @param EEM_Base $model
1543
		 * @param array $query_params @see EEM_Base::get_all()
1544
		 * @param int $rows_deleted
1545
		 */
1546
		do_action( 'AHEE__EEM_Base__delete__end', $this, $query_params, $rows_deleted );
1547
		return $rows_deleted;//how many supposedly got deleted
1548
	}
1549
1550
1551
1552
	/**
1553
	 * Checks all the relations that throw error messages when there are blocking related objects
1554
	 * for related model objects. If there are any related model objects on those relations,
1555
	 * adds an EE_Error, and return true
1556
	 * @param EE_Base_Class|int $this_model_obj_or_id
1557
	 * @param EE_Base_Class $ignore_this_model_obj a model object like 'EE_Event', or 'EE_Term_Taxonomy', which should be ignored when
1558
	 * determining whether there are related model objects which block this model object's deletion. Useful
1559
	 * if you know A is related to B and are considering deleting A, but want to see if A has any other objects
1560
	 * blocking its deletion before removing the relation between A and B
1561
	 * @return boolean
1562
	 */
1563
	public function delete_is_blocked_by_related_models($this_model_obj_or_id, $ignore_this_model_obj = null){
1564
		//first, if $ignore_this_model_obj was supplied, get its model
1565
		if($ignore_this_model_obj && $ignore_this_model_obj instanceof EE_Base_Class){
1566
			$ignored_model = $ignore_this_model_obj->get_model();
1567
		}else{
1568
			$ignored_model = null;
1569
		}
1570
		//now check all the relations of $this_model_obj_or_id and see if there
1571
		//are any related model objects blocking it?
1572
		$is_blocked = false;
1573
		foreach($this->_model_relations as $relation_name => $relation_obj){
1574
			if( $relation_obj->block_delete_if_related_models_exist()){
1575
				//if $ignore_this_model_obj was supplied, then for the query
1576
				//on that model needs to be told to ignore $ignore_this_model_obj
1577
				if($ignored_model && $relation_name == $ignored_model->get_this_model_name()){
0 ignored issues
show
Bug introduced by
The method get_this_model_name cannot be called on $ignored_model (of type boolean).

Methods can only be called on objects. This check looks for methods being called on variables that have been inferred to never be objects.

Loading history...
1578
					$related_model_objects = $relation_obj->get_all_related($this_model_obj_or_id,array(
1579
					array($ignored_model->get_primary_key_field()->get_name() => array('!=',$ignore_this_model_obj->ID()))));
0 ignored issues
show
Bug introduced by
The method get_primary_key_field cannot be called on $ignored_model (of type boolean).

Methods can only be called on objects. This check looks for methods being called on variables that have been inferred to never be objects.

Loading history...
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...
1580
				}else{
1581
					$related_model_objects = $relation_obj->get_all_related($this_model_obj_or_id);
1582
				}
1583
1584
				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...
1585
					EE_Error::add_error($relation_obj->get_deletion_error_message(), __FILE__, __FUNCTION__, __LINE__);
1586
					$is_blocked = true;
1587
				}
1588
			}
1589
		}
1590
		return $is_blocked;
1591
	}
1592
1593
1594
1595
	/**
1596
	 * This sets up our delete where sql and accounts for if we have secondary tables that will have rows deleted as well.
1597
	 * @param  array  $objects_for_deletion This should be the values returned by $this->_get_all_wpdb_results()
1598
	 * @param boolean $allow_blocking       if TRUE, matched objects will only be deleted if there is no related model info
1599
	 * that blocks it (ie, there' sno other data that depends on this data); if false, deletes regardless of other objects
1600
	 * which may depend on it. Its generally advisable to always leave this as TRUE, otherwise you could easily corrupt your DB
1601
	 * @throws EE_Error
1602
	 * @return string    everything that comes after the WHERE statement.
1603
	 */
1604
	protected function _setup_ids_for_delete( $objects_for_deletion, $allow_blocking = true) {
1605
		if($this->has_primary_key_field()){
1606
			$primary_table = $this->_get_main_table();
1607
			$other_tables = $this->_get_other_tables();
1608
			$deletes = $query = array();
1609
			foreach ( $objects_for_deletion as $delete_object ) {
1610
				//before we mark this object for deletion,
1611
				//make sure there's no related objects blocking its deletion (if we're checking)
1612
				if( $allow_blocking && $this->delete_is_blocked_by_related_models($delete_object[$primary_table->get_fully_qualified_pk_column()]) ){
1613
					continue;
1614
				}
1615
1616
				//primary table deletes
1617
				if ( isset( $delete_object[$primary_table->get_fully_qualified_pk_column()] ) )
1618
					$deletes[$primary_table->get_fully_qualified_pk_column()][] = $delete_object[$primary_table->get_fully_qualified_pk_column()];
1619
1620
				//other tables
1621
				if ( !empty( $other_tables ) ) {
1622
					foreach ( $other_tables as $ot ) {
1623
1624
						//first check if we've got the foreign key column here.
1625 View Code Duplication
						if ( isset( $delete_object[$ot->get_fully_qualified_fk_column()] ) )
0 ignored issues
show
Duplication introduced by
This code seems to be duplicated across your project.

Duplicated code is one of the most pungent code smells. If you need to duplicate the same code in three or more different places, we strongly encourage you to look into extracting the code into a single class or operation.

You can also find more detailed suggestions in the “Code” section of your repository.

Loading history...
1626
							$deletes[$ot->get_fully_qualified_pk_column()][] = $delete_object[$ot->get_fully_qualified_fk_column()];
1627
1628
						//wait! it's entirely possible that we'll have a the primary key for this table in here if it's a foreign key for one of the other secondary tables
1629 View Code Duplication
						if ( isset( $delete_object[$ot->get_fully_qualified_pk_column()] ) )
0 ignored issues
show
Duplication introduced by
This code seems to be duplicated across your project.

Duplicated code is one of the most pungent code smells. If you need to duplicate the same code in three or more different places, we strongly encourage you to look into extracting the code into a single class or operation.

You can also find more detailed suggestions in the “Code” section of your repository.

Loading history...
1630
							$deletes[$ot->get_fully_qualified_pk_column()][] = $delete_object[$ot->get_fully_qualified_pk_column()];
1631
1632
						//finally, it is possible that the fk for this table is found in the fully qualified pk column for the fk table, so let's see if that's there!
1633 View Code Duplication
						if ( isset( $delete_object[$ot->get_fully_qualified_pk_on_fk_table()]) )
0 ignored issues
show
Duplication introduced by
This code seems to be duplicated across your project.

Duplicated code is one of the most pungent code smells. If you need to duplicate the same code in three or more different places, we strongly encourage you to look into extracting the code into a single class or operation.

You can also find more detailed suggestions in the “Code” section of your repository.

Loading history...
1634
							$deletes[$ot->get_fully_qualified_pk_column()][] = $delete_object[$ot->get_fully_qualified_pk_column()];
1635
					}
1636
				}
1637
			}
1638
1639
			//we should have deletes now, so let's just go through and setup the where statement
1640
			foreach ( $deletes as $column => $values ) {
1641
				//make sure we have unique $values;
1642
				$values = array_unique($values);
1643
				$query[] = $column . ' IN(' . implode(",",$values) . ')';
1644
			}
1645
1646
			return !empty($query) ? implode(' AND ', $query ) : '';
1647
		}elseif(count($this->get_combined_primary_key_fields()) > 1){
1648
			$ways_to_identify_a_row = array();
1649
			$fields = $this->get_combined_primary_key_fields();
1650
			//note: because there' sno primary key, that means nothing else  can be pointing to this model, right?
1651
			foreach($objects_for_deletion as  $delete_object){
1652
				$values_for_each_cpk_for_a_row = array();
1653
				foreach($fields as $cpk_field){
1654
					$values_for_each_cpk_for_a_row[] = $cpk_field->get_qualified_column()."=".$delete_object[$cpk_field->get_qualified_column()];
1655
				}
1656
				$ways_to_identify_a_row[] = "(".implode(" AND ",$values_for_each_cpk_for_a_row).")";
1657
			}
1658
			return implode(" OR ",$ways_to_identify_a_row);
1659
		}else{
1660
			//so there's no primary key and no combined key...
1661
			//sorry, can't help you
1662
			throw new EE_Error(sprintf(__("Cannot delete objects of type %s because there is no primary key NOR combined key", "event_espresso"),get_class($this)));
1663
		}
1664
	}
1665
1666
1667
1668
	/**
1669
	 * Count all the rows that match criteria expressed in $query_params (an array just like arg to EEM_Base::get_all).
1670
	 * If $field_to_count isn't provided, the model's primary key is used. Otherwise, we count by field_to_count's column
1671
	 * @param array $query_params like EEM_Base::get_all's
1672
	 * @param string $field_to_count field on model to count by (not column name)
1673
	 * @param bool 	 $distinct if we want to only count the distinct values for the column then you can trigger that by the setting $distinct to TRUE;
1674
	 * @return int
1675
	 */
1676
	function count($query_params =array(),$field_to_count = NULL, $distinct = FALSE){
1677
		$model_query_info = $this->_create_model_query_info_carrier($query_params);
1678
		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...
1679
			$field_obj = $this->field_settings_for($field_to_count);
1680
			$column_to_count = $field_obj->get_qualified_column();
1681
		}elseif($this->has_primary_key_field ()){
1682
			$pk_field_obj = $this->get_primary_key_field();
1683
			$column_to_count = $pk_field_obj->get_qualified_column();
1684
		}else{//there's no primary key
1685
			$column_to_count = '*';
1686
		}
1687
1688
		$column_to_count = $distinct ? "DISTINCT (" . $column_to_count . " )" : $column_to_count;
1689
		$SQL ="SELECT COUNT(".$column_to_count.")" . $this->_construct_2nd_half_of_select_query($model_query_info);
1690
		return (int)$this->_do_wpdb_query( 'get_var', array( $SQL) );
1691
	}
1692
1693
	/**
1694
	 * Sums up the value of the $field_to_sum (defaults to the primary key, which isn't terribly useful)
1695
	 *
1696
	 * @param array $query_params like EEM_Base::get_all
1697
	 * @param string $field_to_sum name of field (array key in $_fields array)
1698
	 * @return float
1699
	 */
1700
	function sum($query_params, $field_to_sum = NULL){
1701
		$model_query_info = $this->_create_model_query_info_carrier($query_params);
1702
1703
		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...
1704
			$field_obj = $this->field_settings_for($field_to_sum);
1705
1706
		}else{
1707
			$field_obj = $this->get_primary_key_field();
1708
		}
1709
		$column_to_count = $field_obj->get_qualified_column();
1710
1711
		$SQL ="SELECT SUM(".$column_to_count.")" . $this->_construct_2nd_half_of_select_query($model_query_info);
1712
		$return_value = $this->_do_wpdb_query('get_var',array( $SQL ) );
1713
		if($field_obj->get_wpdb_data_type() == '%d' || $field_obj->get_wpdb_data_type() == '%s' ){
1714
			return (float)$return_value;
1715
		}else{//must be %f
1716
			return (float)$return_value;
1717
		}
1718
	}
1719
1720
1721
1722
	/**
1723
	 * Just calls the specified method on $wpdb with the given arguments
1724
	 * Consolidates a little extra error handling code
1725
	 * @param string $wpdb_method
1726
	 * @param array  $arguments_to_provide
1727
	 * @throws EE_Error
1728
	 * @global wpdb $wpdb
1729
	 * @return mixed
1730
	 */
1731
	protected function _do_wpdb_query( $wpdb_method, $arguments_to_provide ){
1732
		//if we're in maintenance mode level 2, DON'T run any queries
1733
		//because level 2 indicates the database needs updating and
1734
		//is probably out of sync with the code
1735
		if( ! EE_Maintenance_Mode::instance()->models_can_query()){
1736
			throw new EE_Error(sprintf(__("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.", "event_espresso")));
1737
		}
1738
		/** @type WPDB $wpdb */
1739
		global $wpdb;
1740 View Code Duplication
		if( ! method_exists( $wpdb, $wpdb_method ) ){
0 ignored issues
show
Duplication introduced by
This code seems to be duplicated across your project.

Duplicated code is one of the most pungent code smells. If you need to duplicate the same code in three or more different places, we strongly encourage you to look into extracting the code into a single class or operation.

You can also find more detailed suggestions in the “Code” section of your repository.

Loading history...
1741
			throw new EE_Error( sprintf( __( 'There is no method named "%s" on Wordpress\' $wpdb object','event_espresso' ), $wpdb_method ) );
1742
		}
1743
		if( WP_DEBUG ){
1744
			$old_show_errors_value = $wpdb->show_errors;
1745
			$wpdb->show_errors( FALSE );
1746
		}
1747
		$result = $this->_process_wpdb_query( $wpdb_method, $arguments_to_provide );
1748
		$this->show_db_query_if_previously_requested( $wpdb->last_query );
1749
		if( WP_DEBUG ){
1750
			$wpdb->show_errors( $old_show_errors_value );
0 ignored issues
show
Bug introduced by
The variable $old_show_errors_value does not seem to be defined for all execution paths leading up to this point.

If you define a variable conditionally, it can happen that it is not defined for all execution paths.

Let’s take a look at an example:

function myFunction($a) {
    switch ($a) {
        case 'foo':
            $x = 1;
            break;

        case 'bar':
            $x = 2;
            break;
    }

    // $x is potentially undefined here.
    echo $x;
}

In the above example, the variable $x is defined if you pass “foo” or “bar” as argument for $a. However, since the switch statement has no default case statement, if you pass any other value, the variable $x would be undefined.

Available Fixes

  1. Check for existence of the variable explicitly:

    function myFunction($a) {
        switch ($a) {
            case 'foo':
                $x = 1;
                break;
    
            case 'bar':
                $x = 2;
                break;
        }
    
        if (isset($x)) { // Make sure it's always set.
            echo $x;
        }
    }
    
  2. Define a default value for the variable:

    function myFunction($a) {
        $x = ''; // Set a default which gets overridden for certain paths.
        switch ($a) {
            case 'foo':
                $x = 1;
                break;
    
            case 'bar':
                $x = 2;
                break;
        }
    
        echo $x;
    }
    
  3. Add a value for the missing path:

    function myFunction($a) {
        switch ($a) {
            case 'foo':
                $x = 1;
                break;
    
            case 'bar':
                $x = 2;
                break;
    
            // We add support for the missing case.
            default:
                $x = '';
                break;
        }
    
        echo $x;
    }
    
Loading history...
1751
			if( ! empty( $wpdb->last_error ) ){
1752
				throw new EE_Error( sprintf( __( 'WPDB Error: "%s"', 'event_espresso' ), $wpdb->last_error ) );
1753
			}elseif( $result === false ){
1754
				throw new EE_Error( sprintf( __( 'WPDB Error occurred, but no error message was logged by wpdb! The wpdb method called was "%1$s" and the arguments were "%2$s"', 'event_espresso' ), $wpdb_method, var_export( $arguments_to_provide, true ) ) );
1755
			}
1756
		}elseif( $result === false ) {
1757
			EE_Error::add_error( sprintf( __( 'A database error has occurred. Turn on WP_DEBUG for more information.', 'event_espresso' )), __FILE__, __FUNCTION__, __LINE__);
1758
		}
1759
		return $result;
1760
	}
1761
1762
1763
1764
	/**
1765
	 * Attempts to run the indicated WPDB method with the provided arguments,
1766
	 * and if there's an error tries to verify the DB is correct. Uses
1767
	 * the static property EEM_Base::$_db_verification_level to determine whether
1768
	 * we should try to fix the EE core db, the addons, or just give up
1769
	 * @param string $wpdb_method
1770
	 * @param array $arguments_to_provide
1771
	 * @return mixed
1772
	 */
1773
	private function _process_wpdb_query( $wpdb_method, $arguments_to_provide ) {
1774
		/** @type WPDB $wpdb */
1775
		global $wpdb;
1776
		$wpdb->last_error = null;
1777
		$result = call_user_func_array( array( $wpdb, $wpdb_method ), $arguments_to_provide );
1778
		// was there an error running the query?
1779
		if ( ( $result === false || ! empty( $wpdb->last_error ) ) ) {
1780
			switch ( EEM_Base::$_db_verification_level ) {
1781
1782
				case EEM_Base::db_verified_none :
1783
					// let's double-check core's DB
1784
					$error_message = $this->_verify_core_db( $wpdb_method, $arguments_to_provide );
1785
					break;
1786
1787
				case EEM_Base::db_verified_core :
1788
					// STILL NO LOVE?? verify all the addons too. Maybe they need to be fixed
1789
					$error_message = $this->_verify_addons_db( $wpdb_method, $arguments_to_provide );
1790
					break;
1791
1792
				case EEM_Base::db_verified_addons :
1793
					// ummmm... you in trouble
1794
					return $result;
1795
					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...
1796
			}
1797
			if ( ! empty( $error_message ) ) {
1798
				EE_Log::instance()->log( __FILE__, __FUNCTION__, $error_message, 'error' );
1799
				trigger_error( $error_message );
1800
			}
1801
			return $this->_process_wpdb_query( $wpdb_method, $arguments_to_provide );
1802
1803
		}
1804
1805
		return $result;
1806
	}
1807
1808
1809
1810
	/**
1811
	 * Verifies the EE core database is up-to-date and records that we've done it on
1812
	 * EEM_Base::$_db_verification_level
1813
	 * @param string $wpdb_method
1814
	 * @param array $arguments_to_provide
1815
	 * @return string
1816
	 */
1817 View Code Duplication
	private function _verify_core_db( $wpdb_method, $arguments_to_provide ){
0 ignored issues
show
Duplication introduced by
This method seems to be duplicated in your project.

Duplicated code is one of the most pungent code smells. If you need to duplicate the same code in three or more different places, we strongly encourage you to look into extracting the code into a single class or operation.

You can also find more detailed suggestions in the “Code” section of your repository.

Loading history...
1818
		/** @type WPDB $wpdb */
1819
		global $wpdb;
1820
		//ok remember that we've already attempted fixing the core db, in case the problem persists
1821
		EEM_Base::$_db_verification_level = EEM_Base::db_verified_core;
1822
		$error_message = sprintf(
1823
			__( 'WPDB Error "%1$s" while running wpdb method "%2$s" with arguments %3$s. Automatically attempting to fix EE Core DB', 'event_espresso' ),
1824
			$wpdb->last_error,
1825
			$wpdb_method,
1826
			json_encode( $arguments_to_provide )
1827
		);
1828
		EE_System::instance()->initialize_db_if_no_migrations_required( false, true );
1829
		return $error_message;
1830
	}
1831
1832
1833
1834
	/**
1835
	 * Verifies the EE addons' database is up-to-date and records that we've done it on
1836
	 * EEM_Base::$_db_verification_level
1837
	 * @param $wpdb_method
1838
	 * @param $arguments_to_provide
1839
	 * @return string
1840
	 */
1841 View Code Duplication
	private function _verify_addons_db( $wpdb_method, $arguments_to_provide ) {
0 ignored issues
show
Duplication introduced by
This method seems to be duplicated in your project.

Duplicated code is one of the most pungent code smells. If you need to duplicate the same code in three or more different places, we strongly encourage you to look into extracting the code into a single class or operation.

You can also find more detailed suggestions in the “Code” section of your repository.

Loading history...
1842
		/** @type WPDB $wpdb */
1843
		global $wpdb;
1844
		//ok remember that we've already attempted fixing the addons dbs, in case the problem persists
1845
		EEM_Base::$_db_verification_level = EEM_Base::db_verified_addons;
1846
		$error_message = sprintf(
1847
			__( 'WPDB AGAIN: Error "%1$s" while running the same method and arguments as before. Automatically attempting to fix EE Addons DB', 'event_espresso' ),
1848
			$wpdb->last_error,
1849
			$wpdb_method,
1850
			json_encode( $arguments_to_provide )
1851
		);
1852
		EE_System::instance()->initialize_addons();
1853
		return $error_message;
1854
	}
1855
1856
1857
1858
	/**
1859
	 * In order to avoid repeating this code for the get_all, sum, and count functions, put the code parts
1860
	 * that are identical in here. Returns a string of SQL of everything in a SELECT query except the beginning
1861
	 * SELECT clause, eg " FROM wp_posts AS Event INNER JOIN ... WHERE ... ORDER BY ... LIMIT ... GROUP BY ... HAVING ..."
1862
	 * @param EE_Model_Query_Info_Carrier $model_query_info
1863
	 * @return string
1864
	 */
1865
	private function _construct_2nd_half_of_select_query(EE_Model_Query_Info_Carrier $model_query_info){
1866
		return " FROM ".$model_query_info->get_full_join_sql().
1867
				$model_query_info->get_where_sql().
1868
				$model_query_info->get_group_by_sql().
1869
				$model_query_info->get_having_sql().
1870
				$model_query_info->get_order_by_sql().
1871
				$model_query_info->get_limit_sql();
1872
	}
1873
1874
	/**
1875
	 * Set to easily debug the next X queries ran from this model.
1876
	 * @param int $count
1877
	 */
1878
	function show_next_x_db_queries($count = 1){
1879
		$this->_show_next_x_db_queries = $count;
1880
	}
1881
1882
1883
1884
	/**
1885
	 * @param $sql_query
1886
	 */
1887
	function show_db_query_if_previously_requested($sql_query){
1888
		if($this->_show_next_x_db_queries > 0){
1889
			echo $sql_query;
1890
			$this->_show_next_x_db_queries--;
1891
		}
1892
	}
1893
1894
	/**
1895
	 * Adds a relationship of the correct type between $modelObject and $otherModelObject.
1896
	 * There are the 3 cases:
1897
	 *
1898
	 * 'belongsTo' relationship: sets $id_or_obj's foreign_key to be $other_model_id_or_obj's primary_key. If $otherModelObject has no ID, it is first saved.
1899
	 *
1900
	 * 'hasMany' relationship: sets $other_model_id_or_obj's foreign_key to be $id_or_obj's primary_key. If $id_or_obj has no ID, it is first saved.
1901
	 *
1902
	 * 'hasAndBelongsToMany' relationships: checks that there isn't already an entry in the join table, and adds one.
1903
	 * If one of the model Objects has not yet been saved to the database, it is saved before adding the entry in the join table
1904
	 *
1905
	 * @param EE_Base_Class/int $thisModelObject
0 ignored issues
show
Documentation introduced by
The doc-type EE_Base_Class/int could not be parsed: Unknown type name "EE_Base_Class/int" at position 0. (view supported doc-types)

This check marks PHPDoc comments that could not be parsed by our parser. To see which comment annotations we can parse, please refer to our documentation on supported doc-types.

Loading history...
Bug introduced by
There is no parameter named $thisModelObject. Was it maybe removed?

This check looks for PHPDoc comments describing methods or function parameters that do not exist on the corresponding method or function.

Consider the following example. The parameter $italy is not defined by the method finale(...).

/**
 * @param array $germany
 * @param array $island
 * @param array $italy
 */
function finale($germany, $island) {
    return "2:1";
}

The most likely cause is that the parameter was removed, but the annotation was not.

Loading history...
1906
	 * @param EE_Base_Class/int $id_or_obj EE_base_Class or ID of other Model Object
0 ignored issues
show
Documentation introduced by
The doc-type EE_Base_Class/int could not be parsed: Unknown type name "EE_Base_Class/int" at position 0. (view supported doc-types)

This check marks PHPDoc comments that could not be parsed by our parser. To see which comment annotations we can parse, please refer to our documentation on supported doc-types.

Loading history...
1907
	 * @param string $relationName, key in EEM_Base::_relations
0 ignored issues
show
Documentation introduced by
There is no parameter named $relationName,. Did you maybe mean $relationName?

This check looks for PHPDoc comments describing methods or function parameters that do not exist on the corresponding method or function. It has, however, found a similar but not annotated parameter which might be a good fit.

Consider the following example. The parameter $ireland is not defined by the method finale(...).

/**
 * @param array $germany
 * @param array $ireland
 */
function finale($germany, $island) {
    return "2:1";
}

The most likely cause is that the parameter was changed, but the annotation was not.

Loading history...
1908
	 * an attendee to a group, you also want to specify which role they will have in that group. So you would use this parameter to specify array('role-column-name'=>'role-id')
1909
	 * @param array   $extra_join_model_fields_n_values This allows you to enter further query params for the relation to for relation to methods that allow you to further specify extra columns to join by (such as HABTM).  Keep in mind that the only acceptable query_params is strict "col" => "value" pairs because these will be inserted in any new rows created as well.
1910
	 * @return EE_Base_Class which was added as a relation. Object referred to by $other_model_id_or_obj
1911
	 */
1912
	public function add_relationship_to($id_or_obj,$other_model_id_or_obj, $relationName, $extra_join_model_fields_n_values = array()){
1913
		$relation_obj = $this->related_settings_for($relationName);
1914
		return $relation_obj->add_relation_to($id_or_obj, $other_model_id_or_obj, $extra_join_model_fields_n_values);
0 ignored issues
show
Unused Code introduced by
The call to EE_Model_Relation_Base::add_relation_to() has too many arguments starting with $extra_join_model_fields_n_values.

This check compares calls to functions or methods with their respective definitions. If the call has more arguments than are defined, it raises an issue.

If a function is defined several times with a different number of parameters, the check may pick up the wrong definition and report false positives. One codebase where this has been known to happen is Wordpress.

In this case you can add the @ignore PhpDoc annotation to the duplicate definition and it will be ignored.

Loading history...
1915
	}
1916
1917
	/**
1918
	 * Removes a relationship of the correct type between $modelObject and $otherModelObject.
1919
	 * There are the 3 cases:
1920
	 *
1921
	 * 'belongsTo' relationship: sets $modelObject's foreign_key to null, if that field is nullable.Otherwise throws an error
1922
	 *
1923
	 * 'hasMany' relationship: sets $otherModelObject's foreign_key to null,if that field is nullable.Otherwise throws an error
1924
	 *
1925
	 * 'hasAndBelongsToMany' relationships:removes any existing entry in the join table between the two models.
1926
	 *
1927
	 * @param EE_Base_Class/int $id_or_obj
0 ignored issues
show
Documentation introduced by
The doc-type EE_Base_Class/int could not be parsed: Unknown type name "EE_Base_Class/int" at position 0. (view supported doc-types)

This check marks PHPDoc comments that could not be parsed by our parser. To see which comment annotations we can parse, please refer to our documentation on supported doc-types.

Loading history...
1928
	 * @param EE_Base_Class/int $other_model_id_or_obj EE_Base_Class or ID of other Model Object
0 ignored issues
show
Documentation introduced by
The doc-type EE_Base_Class/int could not be parsed: Unknown type name "EE_Base_Class/int" at position 0. (view supported doc-types)

This check marks PHPDoc comments that could not be parsed by our parser. To see which comment annotations we can parse, please refer to our documentation on supported doc-types.

Loading history...
1929
	 * @param string $relationName key in EEM_Base::_relations
1930
	 * @return boolean of success
1931
	 * @param array   $where_query This allows you to enter further query params for the relation to for relation to methods that allow you to further specify extra columns to join by (such as HABTM).  Keep in mind that the only acceptable query_params is strict "col" => "value" pairs because these will be inserted in any new rows created as well.
1932
	 */
1933
	public function remove_relationship_to($id_or_obj,  $other_model_id_or_obj, $relationName, $where_query= array() ){
1934
		$relation_obj = $this->related_settings_for($relationName);
1935
		return $relation_obj->remove_relation_to($id_or_obj, $other_model_id_or_obj, $where_query );
0 ignored issues
show
Unused Code introduced by
The call to EE_Model_Relation_Base::remove_relation_to() has too many arguments starting with $where_query.

This check compares calls to functions or methods with their respective definitions. If the call has more arguments than are defined, it raises an issue.

If a function is defined several times with a different number of parameters, the check may pick up the wrong definition and report false positives. One codebase where this has been known to happen is Wordpress.

In this case you can add the @ignore PhpDoc annotation to the duplicate definition and it will be ignored.

Loading history...
1936
	}
1937
1938
1939
1940
	/**
1941
	 *
1942
	 * @param mixed  $id_or_obj
1943
	 * @param string $relationName
1944
	 * @param array  $where_query_params
1945
	 * @param EE_Base_Class[] objects to which relations were removed
1946
	 * @return \EE_Base_Class[]
1947
	 */
1948
	public function remove_relations($id_or_obj,$relationName,$where_query_params = array()){
1949
		$relation_obj = $this->related_settings_for($relationName);
1950
		return $relation_obj->remove_relations($id_or_obj, $where_query_params );
1951
	}
1952
1953
1954
	/**
1955
	 * Gets all the related items of the specified $model_name, using $query_params.
1956
	 * Note: by default, we remove the "default query params"
1957
	 * because we want to get even deleted items etc.
1958
	 * @param mixed $id_or_obj EE_Base_Class child or its ID
1959
	 * @param string $model_name like 'Event', 'Registration', etc. always singular
1960
	 * @param array $query_params like EEM_Base::get_all
1961
	 * @return EE_Base_Class[]
1962
	 */
1963
	function get_all_related($id_or_obj, $model_name, $query_params = null){
1964
		$model_obj = $this->ensure_is_obj($id_or_obj);
1965
		$relation_settings = $this->related_settings_for($model_name);
1966
		return $relation_settings->get_all_related($model_obj,$query_params);
0 ignored issues
show
Bug introduced by
It seems like $query_params defined by parameter $query_params on line 1963 can also be of type null; however, EE_Model_Relation_Base::get_all_related() does only seem to accept array, maybe add an additional type check?

This check looks at variables that have been passed in as parameters and are passed out again to other methods.

If the outgoing method call has stricter type requirements than the method itself, an issue is raised.

An additional type check may prevent trouble.

Loading history...
1967
	}
1968
1969
	/**
1970
	 * Deletes all the model objects across the relation indicated by $model_name
1971
	 * which are related to $id_or_obj which meet the criteria set in $query_params.
1972
	 * However, if the model objects can't be deleted because of blocking related model objects, then
1973
	 * they aren't deleted. (Unless the thing that would have been deleted can be soft-deleted, that still happens).
1974
	 * @param EE_Base_Class|int|string $id_or_obj
1975
	 * @param string $model_name
1976
	 * @param array $query_params
1977
	 * @return int how many deleted
1978
	 */
1979
	public function delete_related($id_or_obj,$model_name, $query_params = array()){
1980
		$model_obj = $this->ensure_is_obj($id_or_obj);
1981
		$relation_settings = $this->related_settings_for($model_name);
1982
		return $relation_settings->delete_all_related($model_obj,$query_params);
1983
	}
1984
1985
	/**
1986
	 * Hard deletes all the model objects across the relation indicated by $model_name
1987
	 * which are related to $id_or_obj which meet the criteria set in $query_params. If
1988
	 * the model objects can't be hard deleted because of blocking related model objects,
1989
	 * just does a soft-delete on them instead.
1990
	 * @param EE_Base_Class|int|string $id_or_obj
1991
	 * @param string $model_name
1992
	 * @param array $query_params
1993
	 * @return int how many deleted
1994
	 */
1995
	public function delete_related_permanently($id_or_obj,$model_name, $query_params = array()){
1996
		$model_obj = $this->ensure_is_obj($id_or_obj);
1997
		$relation_settings = $this->related_settings_for($model_name);
1998
		return $relation_settings->delete_related_permanently($model_obj,$query_params);
1999
	}
2000
2001
	/**
2002
	 * Instead of getting the related model objects, simply counts them. Ignores default_where_conditions by default,
2003
	 * unless otherwise specified in the $query_params
2004
	 * @param int/EE_Base_Class $id_or_obj
0 ignored issues
show
Documentation introduced by
The doc-type int/EE_Base_Class could not be parsed: Unknown type name "int/EE_Base_Class" at position 0. (view supported doc-types)

This check marks PHPDoc comments that could not be parsed by our parser. To see which comment annotations we can parse, please refer to our documentation on supported doc-types.

Loading history...
2005
	 * @param string $model_name like 'Event', or 'Registration'
2006
	 * @param array $query_params like EEM_Base::get_all's
2007
	 * @param string $field_to_count name of field to count by. By default, uses primary key
2008
	 * @param bool 	 $distinct if we want to only count the distinct values for the column then you can trigger that by the setting $distinct to TRUE;
2009
	 * @return int
2010
	 */
2011
	function count_related($id_or_obj,$model_name,$query_params = array(),$field_to_count = null, $distinct = FALSE){
2012
		$related_model = $this->get_related_model_obj($model_name);
2013
		//we're just going to use the query params on the related model's normal get_all query,
2014
		//except add a condition to say to match the current mod
2015
		if( ! isset($query_params['default_where_conditions'])){
2016
			$query_params['default_where_conditions']='none';
2017
		}
2018
		$this_model_name = $this->get_this_model_name();
2019
		$this_pk_field_name = $this->get_primary_key_field()->get_name();
2020
		$query_params[0][$this_model_name.".".$this_pk_field_name]=$id_or_obj;
2021
		return $related_model->count($query_params,$field_to_count,$distinct);
2022
	}
2023
2024
2025
2026
	/**
2027
	 * Instead of getting the related model objects, simply sums up the values of the specified field.
2028
	 * Note: ignores default_where_conditions by default, unless otherwise specified in the $query_params
2029
	 * @param int/EE_Base_Class $id_or_obj
0 ignored issues
show
Documentation introduced by
The doc-type int/EE_Base_Class could not be parsed: Unknown type name "int/EE_Base_Class" at position 0. (view supported doc-types)

This check marks PHPDoc comments that could not be parsed by our parser. To see which comment annotations we can parse, please refer to our documentation on supported doc-types.

Loading history...
2030
	 * @param string $model_name like 'Event', or 'Registration'
2031
	 * @param array $query_params like EEM_Base::get_all's
2032
	 * @param string $field_to_sum name of field to count by. By default, uses primary key
2033
	 * @return float
2034
	 */
2035
	function sum_related($id_or_obj,$model_name,$query_params,$field_to_sum = null){
2036
		$related_model = $this->get_related_model_obj($model_name);
2037
		if( ! is_array( $query_params ) ){
2038
			EE_Error::doing_it_wrong('EEM_Base::sum_related', sprintf( __( '$query_params should be an array, you passed a variable of type %s', 'event_espresso' ), gettype( $query_params ) ), '4.6.0' );
2039
			$query_params = array();
2040
		}
2041
		//we're just going to use the query params on the related model's normal get_all query,
2042
		//except add a condition to say to match the current mod
2043
		if( ! isset($query_params['default_where_conditions'])){
2044
			$query_params['default_where_conditions']='none';
2045
		}
2046
		$this_model_name = $this->get_this_model_name();
2047
		$this_pk_field_name = $this->get_primary_key_field()->get_name();
2048
		$query_params[0][$this_model_name.".".$this_pk_field_name]=$id_or_obj;
2049
		return $related_model->sum($query_params,$field_to_sum);
2050
	}
2051
2052
2053
2054
	/**
2055
	 * Uses $this->_relatedModels info to find the first related model object of relation $relationName to the given $modelObject
2056
	 * @param int | EE_Base_Class  $id_or_obj EE_Base_Class child or its ID
2057
	 * @param string $other_model_name , key in $this->_relatedModels, eg 'Registration', or 'Events'
2058
	 * @param array $query_params like EEM_Base::get_all's
2059
	 * @return EE_Base_Class
2060
	 */
2061
	public function get_first_related( EE_Base_Class $id_or_obj, $other_model_name, $query_params ){
2062
		$query_params['limit']=1;
2063
		$results = $this->get_all_related($id_or_obj,$other_model_name,$query_params);
2064
		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...
2065
			return array_shift($results);
2066
		}else{
2067
			return null;
2068
		}
2069
2070
	}
2071
2072
	/**
2073
	 * Gets the model's name as it's expected in queries. For example, if this is EEM_Event model, that would be Event
2074
	 * @return string
2075
	 */
2076
	function get_this_model_name(){
2077
		return str_replace("EEM_","",get_class($this));
2078
	}
2079
2080
	/**
2081
	 * Gets the model field on this model which is of type EE_Any_Foreign_Model_Name_Field
2082
	 * @return EE_Any_Foreign_Model_Name_Field
2083
	 * @throws EE_Error
2084
	 */
2085
	public function get_field_containing_related_model_name(){
2086
		foreach($this->field_settings(true) as $field){
2087
			if($field instanceof EE_Any_Foreign_Model_Name_Field){
2088
				$field_with_model_name = $field;
2089
			}
2090
		}
2091 View Code Duplication
		if( !isset($field_with_model_name) || !$field_with_model_name ){
0 ignored issues
show
Duplication introduced by
This code seems to be duplicated across your project.

Duplicated code is one of the most pungent code smells. If you need to duplicate the same code in three or more different places, we strongly encourage you to look into extracting the code into a single class or operation.

You can also find more detailed suggestions in the “Code” section of your repository.

Loading history...
2092
			throw new EE_Error(sprintf(__("There is no EE_Any_Foreign_Model_Name field on model %s", "event_espresso"), $this->get_this_model_name() ));
2093
		}
2094
		return $field_with_model_name;
2095
	}
2096
2097
2098
2099
	/**
2100
	 * Inserts a new entry into the database, for each table.
2101
	 *
2102
	 * Note: does not add the item to the entity map because that is done by EE_Base_Class::save() right after this.
2103
	 * If client code uses EEM_Base::insert() directly, then although the item isn't in the entity map,
2104
	 * we also know there is no model object with the newly inserted item's ID at the moment (because
2105
	 * if there were, then they would already be in the DB and this would fail); and in the future if someone
2106
	 * creates a model object with this ID (or grabs it from the DB) then it will be added to the
2107
	 * entity map at that time anyways. SO, no need for EEM_Base::insert ot add to the entity map
2108
	 * @param array $field_n_values keys are field names, values are their values (in the client code's domain if $values_already_prepared_by_model_object is false,
2109
	 * in the model object's domain if $values_already_prepared_by_model_object is true. See comment about this at the top of EEM_Base)
2110
	 * @return int new primary key on main table that got inserted
2111
	 * @throws EE_Error
2112
	 */
2113
	function insert($field_n_values){
2114
		/**
2115
		 * Filters the fields and their values before inserting an item using the models
2116
		 * @param array $fields_n_values keys are the fields and values are their new values
2117
		 * @param EEM_Base $model the model used
2118
		 */
2119
		$field_n_values = apply_filters( 'FHEE__EEM_Base__insert__fields_n_values', $field_n_values, $this );
2120
		if($this->_satisfies_unique_indexes($field_n_values)){
2121
			$main_table = $this->_get_main_table();
2122
			$new_id = $this->_insert_into_specific_table($main_table, $field_n_values, false);
0 ignored issues
show
Documentation introduced by
false is of type boolean, but the function expects a integer.

It seems like the type of the argument is not accepted by the function/method which you are calling.

In some cases, in particular if PHP’s automatic type-juggling kicks in this might be fine. In other cases, however this might be a bug.

We suggest to add an explicit type cast like in the following example:

function acceptsInteger($int) { }

$x = '123'; // string "123"

// Instead of
acceptsInteger($x);

// we recommend to use
acceptsInteger((integer) $x);
Loading history...
2123
			if( $new_id !== false ) {
2124
				foreach($this->_get_other_tables() as $other_table){
2125
					$this->_insert_into_specific_table($other_table, $field_n_values,$new_id);
2126
				}
2127
			}
2128
			/**
2129
			 * Done just after attempting to insert a new model object
2130
			 *
2131
			 * @param EEM_Base $model used
2132
			 * @param array $fields_n_values fields and their values
2133
			 * @param int|string the ID of the newly-inserted model object
2134
			 */
2135
			do_action( 'AHEE__EEM_Base__insert__end', $this, $field_n_values, $new_id );
2136
			return $new_id;
2137
		}else{
2138
			return FALSE;
2139
		}
2140
	}
2141
2142
2143
2144
	/**
2145
	 * Checks that the result would satisfy the unique indexes on this model
2146
	 * @param array   $field_n_values
2147
	 * @param string $action
2148
	 * @return boolean
2149
	 */
2150
	protected function _satisfies_unique_indexes($field_n_values,$action = 'insert'){
2151
		foreach($this->unique_indexes() as $index_name => $index){
2152
			$uniqueness_where_params = array_intersect_key($field_n_values, $index->fields());
2153
			if($this->exists(array($uniqueness_where_params))){
2154
				EE_Error::add_error(sprintf(__("Could not %s %s. %s uniqueness index failed. Fields %s must form a unique set, but an entry already exists with values %s.", "event_espresso"),$action,$this->_get_class_name(),$index_name,implode(",",$index->field_names()),http_build_query($uniqueness_where_params)), __FILE__, __FUNCTION__, __LINE__ );
2155
				return false;
2156
			}
2157
		}
2158
		return true;
2159
	}
2160
2161
2162
2163
	/**
2164
	 * Checks the database for an item that conflicts (ie, if this item were
2165
	 * saved to the DB would break some uniqueness requirement, like a primary key
2166
	 * or an index primary key set) with the item specified. $id_obj_or_fields_array
2167
	 * can be either an EE_Base_Class or an array of fields n values
2168
	 * @param EE_Base_Class|array|int|string $obj_or_fields_array
2169
	 * @param boolean $include_primary_key whether to use the model object's primary key when looking for conflicts
2170
	 * (ie, if false, we ignore the model object's primary key when finding "conflicts".
2171
	 * If true, it's also considered). Only works for INT primary key- STRING primary keys cannot be ignored
2172
	 * @throws EE_Error
2173
	 * @return EE_Base_Class
2174
	 */
2175
	public function get_one_conflicting($obj_or_fields_array, $include_primary_key = true ){
2176 View Code Duplication
		if($obj_or_fields_array instanceof EE_Base_Class){
0 ignored issues
show
Duplication introduced by
This code seems to be duplicated across your project.

Duplicated code is one of the most pungent code smells. If you need to duplicate the same code in three or more different places, we strongly encourage you to look into extracting the code into a single class or operation.

You can also find more detailed suggestions in the “Code” section of your repository.

Loading history...
2177
			$fields_n_values = $obj_or_fields_array->model_field_array();
2178
		}elseif( is_array($obj_or_fields_array)){
2179
			$fields_n_values = $obj_or_fields_array;
2180
		}else{
2181
			throw new EE_Error(sprintf(__("%s get_all_conflicting should be called with a model object or an array of field names and values, you provided %d", "event_espresso"),get_class($this),$obj_or_fields_array));
2182
		}
2183
		$query_params = array();
2184
		if( $this->has_primary_key_field() &&
2185
				( $include_primary_key || $this->get_primary_key_field() instanceof EE_Primary_Key_String_Field) &&
2186
				isset($fields_n_values[$this->primary_key_name()])){
2187
			$query_params[0]['OR'][$this->primary_key_name()] = $fields_n_values[$this->primary_key_name()];
2188
		}
2189
		foreach($this->unique_indexes() as $unique_index_name=>$unique_index){
2190
			$uniqueness_where_params = array_intersect_key($fields_n_values, $unique_index->fields());
2191
			$query_params[0]['OR']['AND*'.$unique_index_name] = $uniqueness_where_params;
2192
		}
2193
		//if there is nothing to base this search on, then we shouldn't find anything
2194
		if( empty( $query_params ) ){
2195
			return array();
0 ignored issues
show
Bug Best Practice introduced by
The return type of return array(); (array) is incompatible with the return type documented by EEM_Base::get_one_conflicting of type EE_Base_Class|null.

If you return a value from a function or method, it should be a sub-type of the type that is given by the parent type f.e. an interface, or abstract method. This is more formally defined by the Lizkov substitution principle, and guarantees that classes that depend on the parent type can use any instance of a child type interchangably. This principle also belongs to the SOLID principles for object oriented design.

Let’s take a look at an example:

class Author {
    private $name;

    public function __construct($name) {
        $this->name = $name;
    }

    public function getName() {
        return $this->name;
    }
}

abstract class Post {
    public function getAuthor() {
        return 'Johannes';
    }
}

class BlogPost extends Post {
    public function getAuthor() {
        return new Author('Johannes');
    }
}

class ForumPost extends Post { /* ... */ }

function my_function(Post $post) {
    echo strtoupper($post->getAuthor());
}

Our function my_function expects a Post object, and outputs the author of the post. The base class Post returns a simple string and outputting a simple string will work just fine. However, the child class BlogPost which is a sub-type of Post instead decided to return an object, and is therefore violating the SOLID principles. If a BlogPost were passed to my_function, PHP would not complain, but ultimately fail when executing the strtoupper call in its body.

Loading history...
2196
		}else{
2197
			return $this->get_one($query_params);
2198
		}
2199
	}
2200
2201
	/**
2202
	 * Like count, but is optimized and returns a boolean instead of an int
2203
	 * @param array $query_params
2204
	 * @return boolean
2205
	 */
2206
	function exists($query_params){
2207
		$query_params['limit'] = 1;
2208
		return $this->count($query_params) > 0;
2209
	}
2210
2211
	/**
2212
	 * Wrapper for exists, except ignores default query parameters so we're only considering ID
2213
	 * @param int|string $id
2214
	 * @return boolean
2215
	 */
2216
	function exists_by_ID($id){
2217
		return $this->exists(array('default_where_conditions'=>'none', array($this->primary_key_name() => $id)));
2218
	}
2219
2220
2221
2222
	/**
2223
	 * Inserts a new row in $table, using the $cols_n_values which apply to that table.
2224
	 * If a $new_id is supplied and if $table is an EE_Other_Table, we assume
2225
	 * we need to add a foreign key column to point to $new_id (which should be the primary key's value
2226
	 * on the main table)
2227
	 * This is protected rather than private because private is not accessible to any child methods and there MAY be cases where we want to call it directly rather than via insert().
2228
	 * @access   protected
2229
	 * @param EE_Table_Base $table
2230
	 * @param array         $fields_n_values each key should be in field's keys, and value should be an int, string or float
2231
	 * @param int  $new_id 	for now we assume only int keys
2232
	 * @throws EE_Error
2233
	 * @global WPDB $wpdb only used to get the $wpdb->insert_id after performing an insert
2234
	 * @return int ID of new row inserted, or FALSE on failure
2235
	 */
2236
	protected function _insert_into_specific_table(EE_Table_Base $table, $fields_n_values, $new_id = 0 ){
2237
		global $wpdb;
2238
		$insertion_col_n_values = array();
2239
		$format_for_insertion = array();
2240
		$fields_on_table = $this->_get_fields_for_table($table->get_table_alias());
2241
		foreach($fields_on_table as $field_name => $field_obj){
0 ignored issues
show
Bug introduced by
The expression $fields_on_table of type object<EE_Model_Field_Base> is not traversable.
Loading history...
2242
			//check if its an auto-incrementing column, in which case we should just leave it to do its autoincrement thing
2243
			if($field_obj->is_auto_increment()){
2244
				continue;
2245
			}
2246
			$prepared_value = $this->_prepare_value_or_use_default($field_obj, $fields_n_values);
2247
			//if the value we want to assign it to is NULL, just don't mention it for the insertion
2248
			if( $prepared_value !== NULL ){
2249
				$insertion_col_n_values[ $field_obj->get_table_column() ] = $prepared_value;
2250
				$format_for_insertion[] = $field_obj->get_wpdb_data_type();
2251
			}
2252
		}
2253
2254
		if($table instanceof EE_Secondary_Table && $new_id){
2255
			//its not the main table, so we should have already saved the main table's PK which we just inserted
2256
			//so add the fk to the main table as a column
2257
			$insertion_col_n_values[$table->get_fk_on_table()] = $new_id;
2258
			$format_for_insertion[]='%d';//yes right now we're only allowing these foreign keys to be INTs
2259
		}
2260
		//insert the new entry
2261
		$result = $this->_do_wpdb_query( 'insert', array( $table->get_table_name(), $insertion_col_n_values, $format_for_insertion ) );
2262
		if( $result === false ) {
2263
			return false;
0 ignored issues
show
Bug Best Practice introduced by
The return type of return false; (false) is incompatible with the return type documented by EEM_Base::_insert_into_specific_table of type integer.

If you return a value from a function or method, it should be a sub-type of the type that is given by the parent type f.e. an interface, or abstract method. This is more formally defined by the Lizkov substitution principle, and guarantees that classes that depend on the parent type can use any instance of a child type interchangably. This principle also belongs to the SOLID principles for object oriented design.

Let’s take a look at an example:

class Author {
    private $name;

    public function __construct($name) {
        $this->name = $name;
    }

    public function getName() {
        return $this->name;
    }
}

abstract class Post {
    public function getAuthor() {
        return 'Johannes';
    }
}

class BlogPost extends Post {
    public function getAuthor() {
        return new Author('Johannes');
    }
}

class ForumPost extends Post { /* ... */ }

function my_function(Post $post) {
    echo strtoupper($post->getAuthor());
}

Our function my_function expects a Post object, and outputs the author of the post. The base class Post returns a simple string and outputting a simple string will work just fine. However, the child class BlogPost which is a sub-type of Post instead decided to return an object, and is therefore violating the SOLID principles. If a BlogPost were passed to my_function, PHP would not complain, but ultimately fail when executing the strtoupper call in its body.

Loading history...
2264
		}
2265
		//ok, now what do we return for the ID of the newly-inserted thing?
2266
		if($this->has_primary_key_field()){
2267
			if($this->get_primary_key_field()->is_auto_increment()){
2268
				return $wpdb->insert_id;
2269
			}else{
2270
				//it's not an auto-increment primary key, so
2271
				//it must have been supplied
2272
				return $fields_n_values[$this->get_primary_key_field()->get_name()];
2273
			}
2274
		}else{
2275
			//we can't return a  primary key because there is none. instead return
2276
			//a unique string indicating this model
2277
			return $this->get_index_primary_key_string($fields_n_values);
2278
		}
2279
	}
2280
2281
	/**
2282
	 * Prepare the $field_obj 's value in $fields_n_values for use in the database.
2283
	 * If the field doesn't allow NULL, try to use its default. (If it doesn't allow NULL,
2284
	 * and there is no default, we pass it along. WPDB will take care of it)
2285
	 * @param EE_Model_Field_Base $field_obj
2286
	 * @param array $fields_n_values
2287
	 * @return mixed string|int|float depending on what the table column will be expecting
2288
	 */
2289
	protected function _prepare_value_or_use_default( $field_obj, $fields_n_values ){
2290
		//if this field doesn't allow nullable, don't allow it
2291
		if( ! $field_obj->is_nullable() && (
2292
				! isset( $fields_n_values[ $field_obj->get_name() ] ) ||
2293
				$fields_n_values[ $field_obj->get_name() ] === NULL ) ){
2294
			$fields_n_values[ $field_obj->get_name() ] = $field_obj->get_default_value();
2295
		}
2296
		$unprepared_value = isset( $fields_n_values[ $field_obj->get_name() ] ) ? $fields_n_values[ $field_obj->get_name() ] : NULL;
2297
		return $this->_prepare_value_for_use_in_db( $unprepared_value, $field_obj);
2298
	}
2299
2300
2301
	/**
2302
	 * Consolidates code for preparing  a value supplied to the model for use int eh db. Calls the field's prepare_for_use_in_db method on the value,
2303
	 * and depending on $value_already_prepare_by_model_obj, may also call the field's prepare_for_set() method.
2304
	 * @param mixed $value value in the client code domain if $value_already_prepared_by_model_object is false, otherwise a value
2305
	 * in the model object's domain (see lengthy comment at top of file)
2306
	 * @param EE_Model_Field_Base $field field which will be doing the preparing of the value. If null, we assume $value is a custom selection
2307
	 * @return mixed a value ready for use in the database for insertions, updating, or in a where clause
2308
	 */
2309
	private function _prepare_value_for_use_in_db($value, $field){
2310
		if($field && $field instanceof EE_Model_Field_Base){
2311
			switch( $this->_values_already_prepared_by_model_object ){
2312
				/** @noinspection PhpMissingBreakStatementInspection */
2313
				case self::not_prepared_by_model_object:
2314
					$value = $field->prepare_for_set($value);
2315
					//purposefully left out "return"
2316
				case self::prepared_by_model_object:
2317
					$value = $field->prepare_for_use_in_db($value);
2318
				case self::prepared_for_use_in_db:
2319
					//leave the value alone
2320
			}
2321
			return $value;
2322
		}else{
2323
			return $value;
2324
		}
2325
	}
2326
2327
	/**
2328
	 * Returns the main table on this model
2329
	 * @return EE_Primary_Table
2330
	 * @throws EE_Error
2331
	 */
2332
	protected function _get_main_table(){
2333
		foreach($this->_tables as $table){
2334
			if($table instanceof EE_Primary_Table){
2335
				return $table;
2336
			}
2337
		}
2338
		throw new EE_Error(sprintf(__('There are no main tables on %s. They should be added to _tables array in the constructor','event_espresso'),get_class($this)));
2339
	}
2340
2341
	/**
2342
	 * table
2343
	 * returns EE_Primary_Table table name
2344
	 * @return string
2345
	 */
2346
	public function table() {
2347
		return $this->_get_main_table()->get_table_name();
2348
	}
2349
2350
	/**
2351
	 * table
2352
	 * returns first EE_Secondary_Table table name
2353
	 * @return string
2354
	 */
2355
	public function second_table() {
2356
		// grab second table from tables array
2357
		$second_table = end( $this->_tables );
2358
		return $second_table instanceof EE_Secondary_Table ? $second_table->get_table_name() : NULL;
2359
	}
2360
2361
2362
2363
	/**
2364
	 * get_table_obj_by_alias
2365
	 * returns table name given it's alias
2366
	 *
2367
	 * @param string $table_alias
2368
	 * @return EE_Primary_Table | EE_Secondary_Table
2369
	 */
2370
	public function get_table_obj_by_alias( $table_alias = '' ) {
2371
		return isset( $this->_tables[ $table_alias ] ) ? $this->_tables[ $table_alias ] : NULL;
2372
	}
2373
2374
2375
2376
	/**
2377
	 * Gets all the tables of type EE_Other_Table from EEM_CPT_Basel_Model::_tables
2378
	 * @return EE_Secondary_Table[]
2379
	 */
2380
	protected function _get_other_tables(){
2381
		$other_tables =array();
2382
		foreach($this->_tables as $table_alias => $table){
2383
			if($table instanceof EE_Secondary_Table){
2384
				$other_tables[$table_alias] = $table;
2385
			}
2386
		}
2387
		return $other_tables;
2388
	}
2389
2390
	/**
2391
	 * Finds all the fields that correspond to the given table
2392
	 * @param string $table_alias, array key in EEM_Base::_tables
0 ignored issues
show
Documentation introduced by
There is no parameter named $table_alias,. Did you maybe mean $table_alias?

This check looks for PHPDoc comments describing methods or function parameters that do not exist on the corresponding method or function. It has, however, found a similar but not annotated parameter which might be a good fit.

Consider the following example. The parameter $ireland is not defined by the method finale(...).

/**
 * @param array $germany
 * @param array $ireland
 */
function finale($germany, $island) {
    return "2:1";
}

The most likely cause is that the parameter was changed, but the annotation was not.

Loading history...
2393
	 * @return EE_Model_Field_Base[]
2394
	 */
2395
	function _get_fields_for_table($table_alias){
2396
		return $this->_fields[$table_alias];
2397
	}
2398
2399
	/**
2400
	 * Recurses through all the where parameters, and finds all the related models we'll need
2401
	 * to complete this query. Eg, given where parameters like array('EVT_ID'=>3) from within Event model, we won't need any
2402
	 * related models. But if the array were array('Registrations.REG_ID'=>3), we'd need the related Registration model.
2403
	 * If it were array('Registrations.Transactions.Payments.PAY_ID'=>3), then we'd need the related Registration, Transaction, and Payment models.
2404
	 * @param array $query_params like EEM_Base::get_all's $query_parameters['where']
2405
	 * @return EE_Model_Query_Info_Carrier
2406
	 */
2407
	function _extract_related_models_from_query($query_params){
2408
		$query_info_carrier = new EE_Model_Query_Info_Carrier();
2409
		if(array_key_exists(0,$query_params)){
2410
			$this->_extract_related_models_from_sub_params_array_keys($query_params[0], $query_info_carrier,0);
2411
		}
2412 View Code Duplication
		if(array_key_exists('group_by', $query_params)){
0 ignored issues
show
Duplication introduced by
This code seems to be duplicated across your project.

Duplicated code is one of the most pungent code smells. If you need to duplicate the same code in three or more different places, we strongly encourage you to look into extracting the code into a single class or operation.

You can also find more detailed suggestions in the “Code” section of your repository.

Loading history...
2413
			if(is_array($query_params['group_by'])){
2414
				$this->_extract_related_models_from_sub_params_array_values($query_params['group_by'],$query_info_carrier,'group_by');
2415
			}elseif( ! empty ( $query_params['group_by'] )){
2416
				$this->_extract_related_model_info_from_query_param( $query_params['group_by'],$query_info_carrier,'group_by');
2417
			}
2418
		}
2419
		if(array_key_exists('having',$query_params)){
2420
			$this->_extract_related_models_from_sub_params_array_keys($query_params[0], $query_info_carrier,'having');
2421
		}
2422 View Code Duplication
		if(array_key_exists('order_by', $query_params)){
0 ignored issues
show
Duplication introduced by
This code seems to be duplicated across your project.

Duplicated code is one of the most pungent code smells. If you need to duplicate the same code in three or more different places, we strongly encourage you to look into extracting the code into a single class or operation.

You can also find more detailed suggestions in the “Code” section of your repository.

Loading history...
2423
			if ( is_array( $query_params['order_by'] ) )
2424
				$this->_extract_related_models_from_sub_params_array_keys($query_params['order_by'],$query_info_carrier,'order_by');
2425
			elseif( ! empty( $query_params['order_by'] ))
2426
				$this->_extract_related_model_info_from_query_param( $query_params['order_by'], $query_info_carrier,'order_by');
2427
		}
2428
		if(array_key_exists('force_join', $query_params)){
2429
			$this->_extract_related_models_from_sub_params_array_values($query_params['force_join'],$query_info_carrier,'force_join');
2430
		}
2431
		return $query_info_carrier;
2432
	}
2433
2434
	/**
2435
	 * For extracting related models from WHERE (0), HAVING (having), ORDER BY (order_by) or forced joins (force_join)
2436
	 * @param array $sub_query_params like EEM_Base::get_all's $query_params[0] or $query_params['having']
2437
	 * @param EE_Model_Query_Info_Carrier $model_query_info_carrier
2438
	 * @param string                      $query_param_type one of $this->_allowed_query_params
2439
	 * @throws EE_Error
2440
	 * @return \EE_Model_Query_Info_Carrier
2441
	 */
2442
	private function _extract_related_models_from_sub_params_array_keys($sub_query_params, EE_Model_Query_Info_Carrier $model_query_info_carrier,$query_param_type){
2443
		if (!empty($sub_query_params)){
2444
			$sub_query_params = (array) $sub_query_params;
2445
			foreach($sub_query_params as $param => $possibly_array_of_params){
2446
				//$param could be simply 'EVT_ID', or it could be 'Registrations.REG_ID', or even 'Registrations.Transactions.Payments.PAY_amount'
2447
				$this->_extract_related_model_info_from_query_param( $param, $model_query_info_carrier,$query_param_type);
2448
2449
				//if $possibly_array_of_params is an array, try recursing into it, searching for keys which
2450
				//indicate needed joins. Eg, array('NOT'=>array('Registration.TXN_ID'=>23)). In this case, we tried
2451
				//extracting models out of the 'NOT', which obviously wasn't successful, and then we recurse into the value
2452
				//of array('Registration.TXN_ID'=>23)
2453
				$query_param_sans_stars = $this->_remove_stars_and_anything_after_from_condition_query_param_key($param);
2454
				if(in_array($query_param_sans_stars, $this->_logic_query_param_keys,true)){
2455
					if (! is_array($possibly_array_of_params)){
2456
						throw new EE_Error(sprintf(__("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'))", "event_espresso"),
2457
							$param,$possibly_array_of_params));
2458
					}else{
2459
						$this->_extract_related_models_from_sub_params_array_keys($possibly_array_of_params, $model_query_info_carrier,$query_param_type);
2460
					}
2461
				}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...
2462
						&& is_array($possibly_array_of_params)
2463
						&& isset($possibly_array_of_params[2])
2464
						&& $possibly_array_of_params[2] == true){
2465
					//then $possible_array_of_params looks something like array('<','DTT_sold',true)
2466
					//indicating that $possible_array_of_params[1] is actually a field name,
2467
					//from which we should extract query parameters!
2468 View Code Duplication
					if(! isset($possibly_array_of_params[0]) || ! isset($possibly_array_of_params[1])){
0 ignored issues
show
Duplication introduced by
This code seems to be duplicated across your project.

Duplicated code is one of the most pungent code smells. If you need to duplicate the same code in three or more different places, we strongly encourage you to look into extracting the code into a single class or operation.

You can also find more detailed suggestions in the “Code” section of your repository.

Loading history...
2469
						throw new EE_Error(sprintf(__("Improperly formed query parameter %s. It should be numerically indexed like array('<','DTT_sold',true); but you provided %s", "event_espresso"),$query_param_type,implode(",",$possibly_array_of_params)));
2470
					}
2471
					$this->_extract_related_model_info_from_query_param($possibly_array_of_params[1], $model_query_info_carrier, $query_param_type);
2472
				}
2473
			}
2474
		}
2475
		return $model_query_info_carrier;
2476
	}
2477
2478
2479
	/**
2480
	 * For extracting related models from forced_joins, where the array values contain the info about what
2481
	 * models to join with. Eg an array like array('Attendee','Price.Price_Type');
2482
	 * @param array $sub_query_params like EEM_Base::get_all's $query_params[0] or $query_params['having']
2483
	 * @param EE_Model_Query_Info_Carrier $model_query_info_carrier
2484
	 * @param string                      $query_param_type one of $this->_allowed_query_params
2485
	 * @throws EE_Error
2486
	 * @return \EE_Model_Query_Info_Carrier
2487
	 */
2488
	private function _extract_related_models_from_sub_params_array_values($sub_query_params, EE_Model_Query_Info_Carrier $model_query_info_carrier,$query_param_type){
2489
		if (!empty($sub_query_params)){
2490
			if(!is_array($sub_query_params)){
2491
				throw new EE_Error(sprintf(__("Query parameter %s should be an array, but it isn't.", "event_espresso"),$sub_query_params));
2492
			}
2493
			foreach($sub_query_params as $param){
2494
				//$param could be simply 'EVT_ID', or it could be 'Registrations.REG_ID', or even 'Registrations.Transactions.Payments.PAY_amount'
2495
				$this->_extract_related_model_info_from_query_param( $param, $model_query_info_carrier, $query_param_type);
2496
			}
2497
		}
2498
		return $model_query_info_carrier;
2499
	}
2500
2501
2502
2503
	/**
2504
	 * Extract all the query parts from $query_params (an array like whats passed to EEM_Base::get_all)
2505
	 * and put into a EEM_Related_Model_Info_Carrier for easy extraction into a query. We create this object
2506
	 * instead of directly constructing the SQL because often we need to extract info from the $query_params
2507
	 * but use them in a different order. Eg, we need to know what models we are querying
2508
	 * before we know what joins to perform. However, we need to know what data types correspond to which fields on other
2509
	 * models before we can finalize the where clause SQL.
2510
	 * @param array $query_params
2511
	 * @throws EE_Error
2512
	 * @return EE_Model_Query_Info_Carrier
2513
	 */
2514
	function _create_model_query_info_carrier($query_params){
2515
		if( ! is_array( $query_params ) ){
2516
			EE_Error::doing_it_wrong('EEM_Base::_create_model_query_info_carrier', sprintf( __( '$query_params should be an array, you passed a variable of type %s', 'event_espresso' ), gettype( $query_params ) ), '4.6.0' );
2517
			$query_params = array();
2518
		}
2519
		if( isset( $query_params[0] ) ) {
2520
			$where_query_params = $query_params[0];
2521
		}else{
2522
			$where_query_params = array();
2523
		}
2524
		//first check if we should alter the query to account for caps or not
2525
		//because the caps might require us to do extra joins
2526
		if( isset( $query_params[ 'caps' ] ) && $query_params[ 'caps' ] != 'none' ) {
2527
			$query_params[0] = $where_query_params = array_replace_recursive( $where_query_params, $this->caps_where_conditions( $query_params[ 'caps' ] ) );
2528
		}
2529
		$query_object = $this->_extract_related_models_from_query($query_params);
2530
2531
		//verify where_query_params has NO numeric indexes.... that's simply not how you use it!
2532
		foreach($where_query_params as $key => $value){
2533
			if(is_int($key)){
2534
				throw new EE_Error(sprintf(__("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.", "event_espresso"),$key, var_export( $value, true ), var_export( $query_params, true ), get_class($this)));
2535
			}
2536
		}
2537
		if( array_key_exists( 'default_where_conditions',$query_params) && ! empty( $query_params['default_where_conditions'] )){
2538
			$use_default_where_conditions = $query_params['default_where_conditions'];
2539
		}else{
2540
			$use_default_where_conditions = 'all';
2541
		}
2542
		$where_query_params = array_merge($this->_get_default_where_conditions_for_models_in_query($query_object,$use_default_where_conditions,$where_query_params), $where_query_params );
2543
		$query_object->set_where_sql( $this->_construct_where_clause($where_query_params));
2544
2545
2546
		//if this is a "on_join_limit" then we are limiting on on a specific table in a multi_table join.  So we need to setup a subquery and use that for the main join.  Note for now this only works on the primary table for the model.  So for instance, you could set the limit array like this:
2547
		//array( 'on_join_limit' => array('Primary_Table_Alias', array(1,10) ) )
2548
		if ( array_key_exists('on_join_limit', $query_params ) && ! empty( $query_params['on_join_limit'] )) {
2549
			$query_object->set_main_model_join_sql( $this->_construct_limit_join_select( $query_params['on_join_limit'][0], $query_params['on_join_limit'][1] ) );
2550
		}
2551
2552
2553
		//set limit
2554
		if(array_key_exists('limit',$query_params)){
2555
			if(is_array($query_params['limit'])){
2556
				if( ! isset($query_params['limit'][0]) || ! isset($query_params['limit'][1])){
2557
					$e = sprintf(__("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)", "event_espresso"),  http_build_query($query_params['limit']));
2558
					throw new EE_Error($e."|".$e);
2559
				}
2560
				//they passed us an array for the limit. Assume it's like array(50,25), meaning offset by 50, and get 25
2561
				$query_object->set_limit_sql(" LIMIT ".$query_params['limit'][0].",".$query_params['limit'][1]);
2562
			}elseif( ! empty ( $query_params['limit'] )){
2563
				$query_object->set_limit_sql((" LIMIT ".$query_params['limit']));
2564
			}
2565
		}
2566
		//set order by
2567
		if(array_key_exists('order_by',$query_params)){
2568
			if(is_array($query_params['order_by'])){
2569
				//if they're using 'order_by' as an array, they can't use 'order' (because 'order_by' must
2570
				//specify whether to ascend or descend on each field. Eg 'order_by'=>array('EVT_ID'=>'ASC'). So
2571
				//including 'order' wouldn't make any sense if 'order_by' has already specified which way to order!
2572
				if(array_key_exists('order', $query_params)){
2573
					throw new EE_Error(sprintf(__("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 ", "event_espresso"),
2574
							get_class($this),implode(", ",array_keys($query_params['order_by'])),implode(", ",$query_params['order_by']),$query_params['order']));
2575
				}
2576
				 $this->_extract_related_models_from_sub_params_array_keys($query_params['order_by'],$query_object,'order_by');
2577
				//assume it's an array of fields to order by
2578
				$order_array = array();
2579
				foreach($query_params['order_by'] as $field_name_to_order_by => $order){
2580
					$order = $this->_extract_order($order);
2581
					$order_array[] = $this->_deduce_column_name_from_query_param($field_name_to_order_by).SP.$order;
0 ignored issues
show
Documentation introduced by
$field_name_to_order_by is of type integer|string, but the function expects a array.

It seems like the type of the argument is not accepted by the function/method which you are calling.

In some cases, in particular if PHP’s automatic type-juggling kicks in this might be fine. In other cases, however this might be a bug.

We suggest to add an explicit type cast like in the following example:

function acceptsInteger($int) { }

$x = '123'; // string "123"

// Instead of
acceptsInteger($x);

// we recommend to use
acceptsInteger((integer) $x);
Loading history...
2582
				}
2583
				$query_object->set_order_by_sql(" ORDER BY ".implode(",",$order_array));
2584
			}elseif( ! empty ( $query_params['order_by'] )){
2585
				$this->_extract_related_model_info_from_query_param($query_params['order_by'],$query_object,'order',$query_params['order_by']);
2586
				if(isset($query_params['order'])){
2587
					$order = $this->_extract_order($query_params['order']);
2588
				}else{
2589
					$order = 'DESC';
2590
				}
2591
				$query_object->set_order_by_sql(" ORDER BY ".$this->_deduce_column_name_from_query_param($query_params['order_by']).SP.$order);
2592
			}
2593
		}
2594
2595
		//if 'order_by' wasn't set, maybe they are just using 'order' on its own?
2596
		if( ! array_key_exists('order_by',$query_params) && array_key_exists('order',$query_params) && ! empty( $query_params['order'] )){
2597
			$pk_field = $this->get_primary_key_field();
2598
			$order = $this->_extract_order($query_params['order']);
2599
			$query_object->set_order_by_sql(" ORDER BY ".$pk_field->get_qualified_column().SP.$order);
2600
		}
2601
2602
		//set group by
2603
		if(array_key_exists('group_by',$query_params)){
2604
			if(is_array($query_params['group_by'])){
2605
				//it's an array, so assume we'll be grouping by a bunch of stuff
2606
				$group_by_array = array();
2607
				foreach($query_params['group_by'] as $field_name_to_group_by){
2608
					$group_by_array[] = $this->_deduce_column_name_from_query_param($field_name_to_group_by);
2609
				}
2610
				$query_object->set_group_by_sql(" GROUP BY ".implode(", ",$group_by_array));
2611
			}elseif( ! empty ( $query_params['group_by'] )){
2612
				$query_object->set_group_by_sql(" GROUP BY ".$this->_deduce_column_name_from_query_param($query_params['group_by']));
2613
			}
2614
		}
2615
		//set having
2616
		if(array_key_exists('having',$query_params) && $query_params['having']){
2617
			$query_object->set_having_sql( $this->_construct_having_clause($query_params['having']));
2618
		}
2619
2620
		//now, just verify they didn't pass anything wack
2621
		foreach($query_params as $query_key => $query_value){
2622 View Code Duplication
			if( ! in_array($query_key,$this->_allowed_query_params,true)){
0 ignored issues
show
Duplication introduced by
This code seems to be duplicated across your project.

Duplicated code is one of the most pungent code smells. If you need to duplicate the same code in three or more different places, we strongly encourage you to look into extracting the code into a single class or operation.

You can also find more detailed suggestions in the “Code” section of your repository.

Loading history...
2623
				throw new EE_Error(
2624
					sprintf(
2625
						__("You passed %s as a query parameter to %s, which is illegal! The allowed query parameters are %s",'event_espresso'),
2626
						$query_key,
2627
						get_class($this),
2628
//						print_r( $this->_allowed_query_params, TRUE )
2629
						implode( ',', $this->_allowed_query_params )
2630
					)
2631
				);
2632
			}
2633
		}
2634
		$main_model_join_sql = $query_object->get_main_model_join_sql();
2635
		if ( empty( $main_model_join_sql ) )
2636
			$query_object->set_main_model_join_sql($this->_construct_internal_join());
2637
		return $query_object;
2638
	}
2639
2640
	/**
2641
	 * Gets the where conditions that should be imposed on the query based on the
2642
	 * context (eg reading frontend, backend, edit or delete).
2643
	 * @param string $context one of EEM_Base::valid_cap_contexts()
2644
	 * @return array like EEM_Base::get_all() 's $query_params[0]
2645
	 */
2646
	public function caps_where_conditions( $context = self::caps_read ) {
2647
		EEM_Base::verify_is_valid_cap_context( $context );
2648
		$cap_where_conditions = array();
2649
		$cap_restrictions = $this->caps_missing( $context );
2650
		/**
2651
		 * @var $cap_restrictions EE_Default_Where_Conditions[]
2652
		 */
2653
		foreach( $cap_restrictions as $cap => $restriction_if_no_cap ) {
2654
				$cap_where_conditions = array_replace_recursive( $cap_where_conditions, $restriction_if_no_cap->get_default_where_conditions() );
2655
		}
2656
		return apply_filters( 'FHEE__EEM_Base__caps_where_conditions__return', $cap_where_conditions, $this, $context, $cap_restrictions );
2657
	}
2658
2659
	/**
2660
	 * Verifies that $should_be_order_string is in $this->_allowed_order_values,
2661
	 * otherwise throws an exception
2662
	 * @param string $should_be_order_string
2663
	 * @return string either ASC, asc, DESC or desc
2664
	 * @throws EE_Error
2665
	 */
2666 View Code Duplication
	private function _extract_order($should_be_order_string){
0 ignored issues
show
Duplication introduced by
This method seems to be duplicated in your project.

Duplicated code is one of the most pungent code smells. If you need to duplicate the same code in three or more different places, we strongly encourage you to look into extracting the code into a single class or operation.

You can also find more detailed suggestions in the “Code” section of your repository.

Loading history...
2667
		if(in_array($should_be_order_string, $this->_allowed_order_values)){
2668
			return $should_be_order_string;
2669
		}else{
2670
			throw new EE_Error(sprintf(__("While performing a query on '%s', tried to use '%s' as an order parameter. ", "event_espresso"),get_class($this),$should_be_order_string));
2671
		}
2672
	}
2673
2674
2675
2676
	/**
2677
	 * Looks at all the models which are included in this query, and asks each
2678
	 * for their universal_where_params, and returns them in the same format as $query_params[0] (where),
2679
	 * so they can be merged
2680
	 * @param EE_Model_Query_Info_Carrier $query_info_carrier
2681
	 * @param string                      $use_default_where_conditions can be 'none','other_models_only', or 'all'.  'none' means NO default where conditions will be used AT ALL during this query.
2682
	 * 'other_models_only' means default where conditions from other models will be used, but not for this primary model. 'all', the default, means
2683
	 * default where conditions will apply as normal
2684
	 * @param array                       $where_query_params           like EEM_Base::get_all's $query_params[0]
2685
	 * @throws EE_Error
2686
	 * @return array like $query_params[0], see EEM_Base::get_all for documentation
2687
	 */
2688
	private function _get_default_where_conditions_for_models_in_query(EE_Model_Query_Info_Carrier $query_info_carrier,$use_default_where_conditions = 'all',$where_query_params = array()){
2689
		$allowed_used_default_where_conditions_values = array('all','this_model_only', 'other_models_only','none');
2690 View Code Duplication
		if( ! in_array($use_default_where_conditions,$allowed_used_default_where_conditions_values)){
0 ignored issues
show
Duplication introduced by
This code seems to be duplicated across your project.

Duplicated code is one of the most pungent code smells. If you need to duplicate the same code in three or more different places, we strongly encourage you to look into extracting the code into a single class or operation.

You can also find more detailed suggestions in the “Code” section of your repository.

Loading history...
2691
			throw new EE_Error(sprintf(__("You passed an invalid value to the query parameter 'default_where_conditions' of '%s'. Allowed values are %s", "event_espresso"),$use_default_where_conditions,implode(", ",$allowed_used_default_where_conditions_values)));
2692
		}
2693
		if( in_array($use_default_where_conditions, array('all','this_model_only')) ){
2694
			$universal_query_params = $this->_get_default_where_conditions();
2695
		}else{
2696
			$universal_query_params = array();
2697
		}
2698
2699
		if(in_array($use_default_where_conditions,array('all','other_models_only'))){
2700
			foreach($query_info_carrier->get_model_names_included() as $model_relation_path => $model_name){
2701
				$related_model = $this->get_related_model_obj($model_name);
2702
				$related_model_universal_where_params = $related_model->_get_default_where_conditions($model_relation_path);
2703
2704
				$universal_query_params = array_merge($universal_query_params,
2705
						$this->_override_defaults_or_make_null_friendly(
2706
								$related_model_universal_where_params,
2707
								$where_query_params,
2708
								$related_model,
2709
								$model_relation_path)
2710
						);
2711
			}
2712
		}
2713
		return $universal_query_params;
2714
	}
2715
2716
	/**
2717
	 * Checks if any of the defaults have been overridden. If there are any that AREN'T overridden,
2718
	 * then we also add a special where condition which allows for that model's primary key
2719
	 * to be null (which is important for JOINs. Eg, if you want to see all Events ordered by Venue's name,
2720
	 * then Event's with NO Venue won't appear unless you allow VNU_ID to be NULL)
2721
	 * @param array $default_where_conditions
2722
	 * @param array $provided_where_conditions
2723
	 * @param EEM_Base $model
2724
	 * @param string $model_relation_path like 'Transaction.Payment.'
2725
	 * @return array like EEM_Base::get_all's $query_params[0]
2726
	 */
2727
	private function _override_defaults_or_make_null_friendly($default_where_conditions,$provided_where_conditions,$model,$model_relation_path){
2728
		$null_friendly_where_conditions = array();
2729
		$none_overridden = true;
2730
		$or_condition_key_for_defaults = 'OR*'.get_class($model);
2731
2732
		foreach($default_where_conditions as $key => $val){
2733
			if( isset($provided_where_conditions[$key])){
2734
				$none_overridden = false;
2735
			}else{
2736
				$null_friendly_where_conditions[$or_condition_key_for_defaults]['AND'][$key] = $val;
2737
			}
2738
		}
2739
		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...
2740
			if($model->has_primary_key_field()){
2741
				$null_friendly_where_conditions[$or_condition_key_for_defaults][$model_relation_path.".".$model->primary_key_name()] = array('IS NULL');
2742
			}else{
0 ignored issues
show
Unused Code introduced by
This else statement is empty and can be removed.

This check looks for the else branches of if statements that have no statements or where all statements have been commented out. This may be the result of changes for debugging or the code may simply be obsolete.

These else branches can be removed.

if (rand(1, 6) > 3) {
print "Check failed";
} else {
    //print "Check succeeded";
}

could be turned into

if (rand(1, 6) > 3) {
    print "Check failed";
}

This is much more concise to read.

Loading history...
2743
				//@todo NO PK, use other defaults
2744
			}
2745
		}
2746
		return $null_friendly_where_conditions;
2747
	}
2748
2749
	/**
2750
	 * Uses the _default_where_conditions_strategy set during __construct() to get
2751
	 * default where conditions on all get_all, update, and delete queries done by this model.
2752
	 * Use the same syntax as client code. Eg on the Event model, use array('Event.EVT_post_type'=>'esp_event'),
2753
	 * NOT array('Event_CPT.post_type'=>'esp_event').
2754
	 * @param string $model_relation_path eg, path from Event to Payment is "Registration.Transaction.Payment."
2755
	 * @return array like EEM_Base::get_all's $query_params[0] (where conditions)
2756
	 */
2757
	private function _get_default_where_conditions($model_relation_path = null){
2758
		if ( $this->_ignore_where_strategy )
2759
			return array();
2760
2761
		return $this->_default_where_conditions_strategy->get_default_where_conditions($model_relation_path);
2762
	}
2763
	/**
2764
	 * Creates the string of SQL for the select part of a select query, everything behind SELECT and before FROM.
2765
	 * Eg, "Event.post_id, Event.post_name,Event_Detail.EVT_ID..."
2766
	 * @param EE_Model_Query_Info_Carrier $model_query_info
2767
	 * @return string
2768
	 */
2769
	private function _construct_default_select_sql(EE_Model_Query_Info_Carrier $model_query_info){
2770
		$selects = $this->_get_columns_to_select_for_this_model();
2771
		foreach($model_query_info->get_model_names_included() as $model_relation_chain => $name_of_other_model_included){
2772
			$other_model_included = $this->get_related_model_obj($name_of_other_model_included);
2773
			$selects = array_merge($selects, $other_model_included->_get_columns_to_select_for_this_model($model_relation_chain));
2774
		}
2775
		return implode(", ",$selects);
2776
	}
2777
2778
	/**
2779
	 * Gets an array of columns to select for this model, which are necessary for it to create its objects.
2780
	 * So that's going to be the columns for all the fields on the model
2781
	 * @param string $model_relation_chain like 'Question.Question_Group.Event'
2782
	 * @return array numerically indexed, values are columns to select and rename, eg "Event.ID AS 'Event.ID'"
2783
	 */
2784
	public function _get_columns_to_select_for_this_model($model_relation_chain = ''){
2785
		$fields = $this->field_settings();
2786
		$selects = array();
2787
		$table_alias_with_model_relation_chain_prefix = EE_Model_Parser::extract_table_alias_model_relation_chain_prefix($model_relation_chain, $this->get_this_model_name());
2788
		foreach($fields as $field_obj){
2789
			$selects[] = $table_alias_with_model_relation_chain_prefix . $field_obj->get_table_alias().".".$field_obj->get_table_column()." AS '".$table_alias_with_model_relation_chain_prefix.$field_obj->get_table_alias().".".$field_obj->get_table_column()."'";
2790
		}
2791
		//make sure we are also getting the PKs of each table
2792
		$tables = $this->get_tables();
2793
		if(count($tables) > 1){
2794
			foreach($tables as $table_obj){
2795
				$qualified_pk_column = $table_alias_with_model_relation_chain_prefix . $table_obj->get_fully_qualified_pk_column();
2796
				if( ! in_array($qualified_pk_column,$selects)){
2797
					$selects[] = "$qualified_pk_column AS '$qualified_pk_column'";
2798
				}
2799
			}
2800
		}
2801
		return $selects;
2802
	}
2803
2804
2805
2806
	/**
2807
	 * Given a $query_param like 'Registration.Transaction.TXN_ID', pops off 'Registration.',
2808
	 * gets the join statement for it; gets the data types for it; and passes the remaining 'Transaction.TXN_ID'
2809
	 * onto its related Transaction object to do the same. Returns an EE_Join_And_Data_Types object which contains the SQL
2810
	 * for joining, and the data types
2811
	 * @param null|string 	$original_query_param
2812
	 * @param string $query_param like Registration.Transaction.TXN_ID
2813
	 * @param EE_Model_Query_Info_Carrier $passed_in_query_info
2814
	 * @param 	string $query_param_type like Registration.Transaction.TXN_ID
2815
	 * or 'PAY_ID'. Otherwise, we don't expect there to be a column name. We only want model names, eg 'Event.Venue' or 'Registration's
2816
	 * @param string $original_query_param what it originally was (eg Registration.Transaction.TXN_ID). If null, we assume it matches $query_param
2817
	 * @throws EE_Error
2818
	 * @return void only modifies the EEM_Related_Model_Info_Carrier passed into it
2819
	 */
2820
	private function _extract_related_model_info_from_query_param( $query_param, EE_Model_Query_Info_Carrier $passed_in_query_info, $query_param_type, $original_query_param = NULL ){
2821
		if($original_query_param == NULL){
0 ignored issues
show
Bug introduced by
It seems like you are loosely comparing $original_query_param of type null|string against null; this is ambiguous if the string can be empty. Consider using a strict comparison === instead.
Loading history...
2822
			$original_query_param = $query_param;
2823
		}
2824
		$query_param = $this->_remove_stars_and_anything_after_from_condition_query_param_key($query_param);
2825
		/** @var $allow_logic_query_params bool whether or not to allow logic_query_params like 'NOT','OR', or 'AND' */
2826
		$allow_logic_query_params = in_array($query_param_type,array('where','having'));
2827
		$allow_fields = in_array($query_param_type,array('where','having','order_by','group_by','order'));
2828
		//check to see if we have a field on this model
2829
		$this_model_fields = $this->field_settings(true);
2830
		if(array_key_exists($query_param,$this_model_fields)){
2831
			if($allow_fields){
2832
				return;
2833
			}else{
2834
				throw new EE_Error(sprintf(__("Using a field name (%s) on model %s is not allowed on this query param type '%s'. Original query param was %s", "event_espresso"),
2835
						$query_param,get_class($this),$query_param_type,$original_query_param));
2836
			}
2837
		}
2838
		//check if this is a special logic query param
2839
		elseif(in_array($query_param, $this->_logic_query_param_keys, TRUE)){
2840
			if($allow_logic_query_params){
2841
				return;
2842
			}else{
2843
				throw new EE_Error(
2844
					sprintf(
2845
						__( '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', 'event_espresso' ),
2846
						implode( '", "', $this->_logic_query_param_keys ),
2847
						$query_param ,
2848
						get_class( $this ),
2849
						'<br />',
2850
						"\t" . ' $passed_in_query_info = <pre>' . print_r( $passed_in_query_info, TRUE ) . '</pre>' . "\n\t" . ' $query_param_type = ' . $query_param_type . "\n\t" . ' $original_query_param = ' . $original_query_param
2851
					)
2852
				);
2853
			}
2854
		}
2855
2856
		//check if it's a custom selection
2857
		elseif(array_key_exists($query_param,$this->_custom_selections)){
2858
			return;
2859
		}
2860
2861
		//check if has a model name at the beginning
2862
		//and
2863
		//check if it's a field on a related model
2864
		foreach($this->_model_relations as $valid_related_model_name=>$relation_obj){
2865
			if(strpos($query_param, $valid_related_model_name.".") === 0){
2866
				$this->_add_join_to_model($valid_related_model_name, $passed_in_query_info,$original_query_param);
2867
				$query_param = substr($query_param, strlen($valid_related_model_name."."));
2868
				if($query_param == ''){
2869
					//nothing left to $query_param
2870
					//we should actually end in a field name, not a model like this!
2871
					throw new EE_Error(sprintf(__("Query param '%s' (of type %s on model %s) shouldn't end on a period (.) ", "event_espresso"),
2872
					$query_param,$query_param_type,get_class($this),$valid_related_model_name));
2873
				}else{
2874
					$related_model_obj = $this->get_related_model_obj($valid_related_model_name);
2875
					$related_model_obj->_extract_related_model_info_from_query_param($query_param, $passed_in_query_info, $query_param_type, $original_query_param);
2876
					return;
2877
				}
2878
			}elseif($query_param == $valid_related_model_name){
2879
				$this->_add_join_to_model($valid_related_model_name, $passed_in_query_info,$original_query_param);
2880
				return;
2881
			}
2882
		}
2883
2884
2885
		//ok so $query_param didn't start with a model name
2886
		//and we previously confirmed it wasn't a logic query param or field on the current model
2887
		//it's wack, that's what it is
2888
		throw new EE_Error(sprintf(__("There is no model named '%s' related to %s. Query param type is %s and original query param is %s", "event_espresso"),
2889
				$query_param,get_class($this),$query_param_type,$original_query_param));
2890
2891
	}
2892
2893
2894
2895
	/**
2896
	 * Privately used by _extract_related_model_info_from_query_param to add a join to $model_name
2897
	 * and store it on $passed_in_query_info
2898
	 * @param string $model_name
2899
	 * @param EE_Model_Query_Info_Carrier $passed_in_query_info
2900
	 * @param string $original_query_param used to extract the relation chain between the queried model and $model_name.
2901
	 * Eg, if we are querying Event, and are adding a join to 'Payment' with the original query param key 'Registration.Transaction.Payment.PAY_amount',
2902
	 * we want to extract 'Registration.Transaction.Payment', in case Payment wants to add default query params so that it will know
2903
	 * what models to prepend onto its default query params or in case it wants to rename tables (in case there are multiple joins to the same table)
2904
	 * @return void
2905
	 */
2906
	private function _add_join_to_model($model_name, EE_Model_Query_Info_Carrier $passed_in_query_info,$original_query_param){
2907
		$relation_obj = $this->related_settings_for($model_name);
2908
2909
		$model_relation_chain = EE_Model_Parser::extract_model_relation_chain($model_name, $original_query_param);
2910
		//check if the relation is HABTM, because then we're essentially doing two joins
2911
		//If so, join first to the JOIN table, and add its data types, and then continue as normal
2912
		if($relation_obj instanceof EE_HABTM_Relation){
2913
			$join_model_obj = $relation_obj->get_join_model();
2914
			//replace the model specified with the join model for this relation chain, whi
2915
			$relation_chain_to_join_model = EE_Model_Parser::replace_model_name_with_join_model_name_in_model_relation_chain($model_name, $join_model_obj->get_this_model_name(), $model_relation_chain);
0 ignored issues
show
Bug introduced by
The method get_this_model_name cannot be called on $join_model_obj (of type boolean).

Methods can only be called on objects. This check looks for methods being called on variables that have been inferred to never be objects.

Loading history...
2916
			$new_query_info = new EE_Model_Query_Info_Carrier(
2917
					array($relation_chain_to_join_model => $join_model_obj->get_this_model_name()),
0 ignored issues
show
Bug introduced by
The method get_this_model_name cannot be called on $join_model_obj (of type boolean).

Methods can only be called on objects. This check looks for methods being called on variables that have been inferred to never be objects.

Loading history...
2918
					$relation_obj->get_join_to_intermediate_model_statement($relation_chain_to_join_model));
2919
			$passed_in_query_info->merge( $new_query_info  );
2920
		}
2921
		//now just join to the other table pointed to by the relation object, and add its data types
2922
		$new_query_info = new EE_Model_Query_Info_Carrier(
2923
				array($model_relation_chain=>$model_name),
2924
				$relation_obj->get_join_statement($model_relation_chain));
2925
		$passed_in_query_info->merge( $new_query_info  );
2926
	}
2927
2928
2929
	/**
2930
	 * Constructs SQL for where clause, like "WHERE Event.ID = 23 AND Transaction.amount > 100" etc.
2931
	 * @param array $where_params like EEM_Base::get_all
2932
	 * @return string of SQL
2933
	 */
2934
	private function _construct_where_clause($where_params){
2935
		$SQL = $this->_construct_condition_clause_recursive($where_params, ' AND ');
2936
		if($SQL){
2937
			return " WHERE ". $SQL;
2938
		}else{
2939
			return '';
2940
		}
2941
	}
2942
2943
	/**
2944
	 * Just like the _construct_where_clause, except prepends 'HAVING' instead of 'WHERE',
2945
	 * and should be passed HAVING parameters, not WHERE parameters
2946
	 * @param array $having_params
2947
	 * @return string
2948
	 */
2949
	private function _construct_having_clause($having_params){
2950
		$SQL = $this->_construct_condition_clause_recursive($having_params, ' AND ');
2951
		if($SQL){
2952
			return " HAVING ". $SQL;
2953
		}else{
2954
			return '';
2955
		}
2956
2957
	}
2958
2959
	/**
2960
	 * Gets the EE_Model_Field on the model indicated by $model_name and the $field_name.
2961
	 * Eg, if called with _get_field_on_model('ATT_ID','Attendee'), it will return the EE_Primary_Key_Field on EEM_Attendee.
2962
	 * @param string $field_name
2963
	 * @param string $model_name
2964
	 * @return EE_Model_Field_Base
2965
	 * @throws EE_Error
2966
	 */
2967
	protected function _get_field_on_model($field_name,$model_name){
2968
		$model_class = 'EEM_'.$model_name;
2969
		$model_filepath = $model_class.".model.php";
2970
		EE_Registry::instance()->load_helper( 'File' );
2971
		if ( is_readable($model_filepath)){
2972
			require_once($model_filepath);
2973
			$model_instance=call_user_func($model_name."::instance");
2974
			/* @var $model_instance EEM_Base */
2975
			return $model_instance->field_settings_for($field_name);
2976
		}else{
2977
			throw new EE_Error(sprintf(__('No model named %s exists, with classname %s and filepath %s','event_espresso'),$model_name,$model_class,$model_filepath));
2978
		}
2979
	}
2980
2981
2982
2983
	/**
2984
	 * Used for creating nested WHERE conditions. Eg "WHERE ! (Event.ID = 3 OR ( Event_Meta.meta_key = 'bob' AND Event_Meta.meta_value = 'foo'))"
2985
	 * @param array  $where_params see EEM_Base::get_all for documentation
2986
	 * @param string $glue         joins each subclause together. Should really only be " AND " or " OR "...
2987
	 * @throws EE_Error
2988
	 * @return string of SQL
2989
	 */
2990
	private function _construct_condition_clause_recursive($where_params, $glue = ' AND'){
2991
		$where_clauses=array();
2992
		foreach($where_params as $query_param => $op_and_value_or_sub_condition){
2993
			$query_param = $this->_remove_stars_and_anything_after_from_condition_query_param_key($query_param);//str_replace("*",'',$query_param);
2994
			if(in_array($query_param,$this->_logic_query_param_keys)){
2995
				switch($query_param){
2996
					case 'not':
2997
					case 'NOT':
2998
						$where_clauses[] = "! (". $this->_construct_condition_clause_recursive($op_and_value_or_sub_condition, $glue).")";
2999
						break;
3000
					case 'and':
3001
					case 'AND':
3002
						$where_clauses[] = " (". $this->_construct_condition_clause_recursive($op_and_value_or_sub_condition, ' AND ') .")";
3003
						break;
3004
					case 'or':
3005
					case 'OR':
3006
						$where_clauses[] = " (". $this->_construct_condition_clause_recursive($op_and_value_or_sub_condition, ' OR ') .")";
3007
						break;
3008
				}
3009
			}else{
3010
				$field_obj = $this->_deduce_field_from_query_param($query_param);
3011
3012
				//if it's not a normal field, maybe it's a custom selection?
3013
				if( ! $field_obj){
3014
					if(isset( $this->_custom_selections[$query_param][1])){
3015
						$field_obj = $this->_custom_selections[$query_param][1];
3016
					}else{
3017
						throw new EE_Error(sprintf(__("%s is neither a valid model field name, nor a custom selection", "event_espresso"),$query_param));
3018
					}
3019
				}
3020
				$op_and_value_sql = $this->_construct_op_and_value($op_and_value_or_sub_condition, $field_obj);
3021
				$where_clauses[]=$this->_deduce_column_name_from_query_param($query_param).SP.$op_and_value_sql;
0 ignored issues
show
Documentation introduced by
$query_param is of type string, but the function expects a array.

It seems like the type of the argument is not accepted by the function/method which you are calling.

In some cases, in particular if PHP’s automatic type-juggling kicks in this might be fine. In other cases, however this might be a bug.

We suggest to add an explicit type cast like in the following example:

function acceptsInteger($int) { }

$x = '123'; // string "123"

// Instead of
acceptsInteger($x);

// we recommend to use
acceptsInteger((integer) $x);
Loading history...
3022
			}
3023
		}
3024
		if($where_clauses){
0 ignored issues
show
Bug Best Practice introduced by
The expression $where_clauses 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...
3025
			$SQL = implode($glue,$where_clauses);
3026
		}else{
3027
			$SQL = '';
3028
		}
3029
		return $SQL;
3030
	}
3031
3032
3033
3034
	/**
3035
	 * Takes the input parameter and extract the table name (alias) and column name
3036
	 * @param array $query_param  like Registration.Transaction.TXN_ID, Event.Datetime.start_time, or REG_ID
3037
	 * @throws EE_Error
3038
	 * @return string table alias and column name for SQL, eg "Transaction.TXN_ID"
3039
	 */
3040
	private function _deduce_column_name_from_query_param($query_param){
3041
		$field = $this->_deduce_field_from_query_param($query_param);
0 ignored issues
show
Documentation introduced by
$query_param is of type array, but the function expects a string.

It seems like the type of the argument is not accepted by the function/method which you are calling.

In some cases, in particular if PHP’s automatic type-juggling kicks in this might be fine. In other cases, however this might be a bug.

We suggest to add an explicit type cast like in the following example:

function acceptsInteger($int) { }

$x = '123'; // string "123"

// Instead of
acceptsInteger($x);

// we recommend to use
acceptsInteger((integer) $x);
Loading history...
3042
3043
		if( $field ){
3044
			$table_alias_prefix = EE_Model_Parser::extract_table_alias_model_relation_chain_from_query_param( $field->get_model_name(), $query_param );
0 ignored issues
show
Documentation introduced by
$query_param is of type array, but the function expects a string.

It seems like the type of the argument is not accepted by the function/method which you are calling.

In some cases, in particular if PHP’s automatic type-juggling kicks in this might be fine. In other cases, however this might be a bug.

We suggest to add an explicit type cast like in the following example:

function acceptsInteger($int) { }

$x = '123'; // string "123"

// Instead of
acceptsInteger($x);

// we recommend to use
acceptsInteger((integer) $x);
Loading history...
3045
			return $table_alias_prefix . $field->get_qualified_column();
3046
		}elseif(array_key_exists($query_param,$this->_custom_selections)){
3047
			//maybe it's custom selection item?
3048
			//if so, just use it as the "column name"
3049
			return $query_param;
3050
		}else{
3051
			throw new EE_Error(sprintf(__("%s is not a valid field on this model, nor a custom selection (%s)", "event_espresso"),$query_param,implode(",",$this->_custom_selections)));
3052
		}
3053
	}
3054
3055
	/**
3056
	 * Removes the * and anything after it from the condition query param key. It is useful to add the * to condition query
3057
	 * param keys (eg, 'OR*', 'EVT_ID') in order for the array keys to still be unique, so that they don't get overwritten
3058
	 * Takes a string like 'Event.EVT_ID*', 'TXN_total**', 'OR*1st', and 'DTT_reg_start*foobar' to
3059
	 * 'Event.EVT_ID', 'TXN_total', 'OR', and 'DTT_reg_start', respectively.
3060
	 * @param string $condition_query_param_key
3061
	 * @return string
3062
	 */
3063
	private function _remove_stars_and_anything_after_from_condition_query_param_key($condition_query_param_key){
3064
		$pos_of_star = strpos($condition_query_param_key, '*');
3065
		if($pos_of_star === FALSE){
3066
			return $condition_query_param_key;
3067
		}else{
3068
			$condition_query_param_sans_star = substr($condition_query_param_key, 0, $pos_of_star);
3069
			return $condition_query_param_sans_star;
3070
		}
3071
	}
3072
3073
3074
3075
	/**
3076
	 * creates the SQL for the operator and the value in a WHERE clause, eg "< 23" or "LIKE '%monkey%'"
3077
	 * @param mixed array | string 	$op_and_value
3078
	 * @param EE_Model_Field_Base|string $field_obj . If string, should be one of EEM_Base::_valid_wpdb_data_types
3079
	 * @throws EE_Error
3080
	 * @return string
3081
	 */
3082
	private function _construct_op_and_value($op_and_value, $field_obj){
3083
		if(is_array( $op_and_value )){
3084
			$operator = isset($op_and_value[0]) ? $this->_prepare_operator_for_sql($op_and_value[0]) : null;
3085
			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...
3086
				$php_array_like_string = array();
3087
				foreach($op_and_value as $key => $value){
3088
					$php_array_like_string[] = "$key=>$value";
3089
				}
3090
				throw new EE_Error(sprintf(__("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))", "event_espresso"), implode(",",$php_array_like_string)));
3091
			}
3092
			$value = isset($op_and_value[1]) ? $op_and_value[1] : null;
3093
		}else{
3094
			$operator = '=';
3095
			$value = $op_and_value;
3096
		}
3097
3098
		//check to see if the value is actually another field
3099
		if(is_array($op_and_value) && isset($op_and_value[2]) && $op_and_value[2] == true){
3100
			return $operator.SP.$this->_deduce_column_name_from_query_param($value);
3101
		}elseif(in_array($operator, $this->_in_style_operators) && is_array($value)){
3102
			//in this case, the value should be an array, or at least a comma-separated list
3103
			//it will need to handle a little differently
3104
			$cleaned_value = $this->_construct_in_value($value, $field_obj);
3105
			//note: $cleaned_value has already been run through $wpdb->prepare()
3106
			return $operator.SP.$cleaned_value;
3107
		} elseif( in_array( $operator, $this->_between_style_operators ) && is_array( $value ) ) {
3108
			//the value should be an array with count of two.
3109
			if ( count($value) !== 2 )
3110
				throw new EE_Error( sprintf( __("The '%s' operator must be used with an array of values and there must be exactly TWO values in that array.", 'event_espresso'), "BETWEEN" ) );
3111
			$cleaned_value = $this->_construct_between_value( $value, $field_obj );
3112
			return $operator.SP.$cleaned_value;
3113 View Code Duplication
		} elseif( in_array( $operator, $this->_null_style_operators ) ) {
0 ignored issues
show
Duplication introduced by
This code seems to be duplicated across your project.

Duplicated code is one of the most pungent code smells. If you need to duplicate the same code in three or more different places, we strongly encourage you to look into extracting the code into a single class or operation.

You can also find more detailed suggestions in the “Code” section of your repository.

Loading history...
3114
			if($value != NULL){
3115
				throw new EE_Error(sprintf(__("You attempted to give a value  (%s) while using a NULL-style operator (%s). That isn't valid", "event_espresso"),$value,$operator));
3116
			}
3117
			return $operator;
3118
		}elseif( $operator == 'LIKE' && ! is_array($value)){
3119
			//if the operator is 'LIKE', we want to allow percent signs (%) and not
3120
			//remove other junk. So just treat it as a string.
3121
			return $operator.SP.$this->_wpdb_prepare_using_field($value, '%s');
3122
		}elseif( ! in_array($operator, $this->_in_style_operators) && ! is_array($value)){
3123
			return $operator.SP.$this->_wpdb_prepare_using_field($value,$field_obj);
3124 View Code Duplication
		}elseif(in_array($operator, $this->_in_style_operators) && ! is_array($value)){
0 ignored issues
show
Duplication introduced by
This code seems to be duplicated across your project.

Duplicated code is one of the most pungent code smells. If you need to duplicate the same code in three or more different places, we strongly encourage you to look into extracting the code into a single class or operation.

You can also find more detailed suggestions in the “Code” section of your repository.

Loading history...
3125
			throw new EE_Error(sprintf(__("Operator '%s' must be used with an array of values, eg 'Registration.REG_ID' => array('%s',array(1,2,3))",'event_espresso'),$operator, $operator));
3126
		}elseif( ! in_array($operator, $this->_in_style_operators) && is_array($value)){
3127
			throw new EE_Error(sprintf(__("Operator '%s' must be used with a single value, not an array. Eg 'Registration.REG_ID => array('%s',23))",'event_espresso'),$operator,$operator));
3128
		}else{
3129
			throw new EE_Error(sprintf(__("It appears you've provided some totally invalid query parameters. Operator and value were:'%s', which isn't right at all", "event_espresso"),  http_build_query($op_and_value)));
3130
		}
3131
	}
3132
3133
3134
3135
	/**
3136
	 * Creates the operands to be used in a BETWEEN query, eg "'2014-12-31 20:23:33' AND '2015-01-23 12:32:54'"
3137
	 * @param array $values
3138
	 * @param EE_Model_Field_Base|string $field_obj if string, it should be the datatype to be used when querying, eg '%s'
3139
	 * @return string
3140
	 */
3141
	function _construct_between_value( $values, $field_obj ) {
3142
		$cleaned_values = array();
3143
		foreach ( $values as $value ) {
3144
			$cleaned_values[] = $this->_wpdb_prepare_using_field($value,$field_obj);
3145
		}
3146
		return  $cleaned_values[0] . " AND " . $cleaned_values[1];
3147
	}
3148
3149
3150
3151
3152
	/**
3153
	 * Takes an array or a comma-separated list of $values and cleans them
3154
	 * according to $data_type using $wpdb->prepare, and then makes the list a
3155
	 * string surrounded by ( and ). Eg, _construct_in_value(array(1,2,3),'%d') would
3156
	 * return '(1,2,3)'; _construct_in_value("1,2,hack",'%d') would return '(1,2,1)' (assuming
3157
	 * I'm right that a string, when interpreted as a digit, becomes a 1. It might become a 0)
3158
	 * @param mixed $values array or comma-separated string
3159
	 * @param EE_Model_Field_Base|string $field_obj if string, it should be a wpdb data type like '%s', or '%d'
3160
	 * @return string of SQL to follow an 'IN' or 'NOT IN' operator
3161
	 */
3162
	function _construct_in_value($values,  $field_obj){
3163
		//check if the value is a CSV list
3164
		if(is_string($values)){
3165
			//in which case, turn it into an array
3166
			$values = explode(",",$values);
3167
		}
3168
		$cleaned_values = array();
3169
		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...
3170
			$cleaned_values[] = $this->_wpdb_prepare_using_field($value,$field_obj);
3171
		}
3172
		//we would just LOVE to leave $cleaned_values as an empty array, and return the value as "()",
3173
		//but unfortunately that's invalid SQL. So instead we return a string which we KNOW will evaluate to be the empty set
3174
		//which is effectively equivalent to returning "()". We don't return "(0)" because that only works for auto-incrementing columns
3175
		if(empty($cleaned_values)){
3176
			$all_fields = $this->field_settings();
3177
			$a_field = array_shift($all_fields);
3178
			$main_table = $this->_get_main_table();
3179
			$cleaned_values[] = "SELECT ".$a_field->get_table_column()." FROM ".$main_table->get_table_name()." WHERE FALSE";
3180
		}
3181
		return "(".implode(",",$cleaned_values).")";
3182
	}
3183
3184
3185
3186
	/**
3187
	 *
3188
	 * @param mixed 	$value
3189
	 * @param EE_Model_Field_Base|string $field_obj if string it should be a wpdb data type like '%d'
3190
	 * @throws EE_Error
3191
	 * @return false|null|string
3192
	 */
3193
	private function _wpdb_prepare_using_field($value,$field_obj){
3194
		/** @type WPDB $wpdb */
3195
		global $wpdb;
3196
		if($field_obj instanceof EE_Model_Field_Base){
3197
			return $wpdb->prepare($field_obj->get_wpdb_data_type(),$this->_prepare_value_for_use_in_db($value, $field_obj));
3198
		}else{//$field_obj should really just be a data type
3199 View Code Duplication
			if( ! in_array($field_obj,$this->_valid_wpdb_data_types)){
0 ignored issues
show
Duplication introduced by
This code seems to be duplicated across your project.

Duplicated code is one of the most pungent code smells. If you need to duplicate the same code in three or more different places, we strongly encourage you to look into extracting the code into a single class or operation.

You can also find more detailed suggestions in the “Code” section of your repository.

Loading history...
3200
				throw new EE_Error(sprintf(__("%s is not a valid wpdb datatype. Valid ones are %s", "event_espresso"),$field_obj,implode(",",$this->_valid_wpdb_data_types)));
3201
			}
3202
			return $wpdb->prepare($field_obj,$value);
3203
		}
3204
	}
3205
3206
3207
3208
	/**
3209
	 * Takes the input parameter and finds the model field that it indicates.
3210
	 * @param string $query_param_name like Registration.Transaction.TXN_ID, Event.Datetime.start_time, or REG_ID
3211
	 * @throws EE_Error
3212
	 * @return EE_Model_Field_Base
3213
	 */
3214
	protected function _deduce_field_from_query_param($query_param_name){
3215
		//ok, now proceed with deducing which part is the model's name, and which is the field's name
3216
		//which will help us find the database table and column
3217
3218
		$query_param_parts = explode(".",$query_param_name);
3219
		if(empty($query_param_parts)){
3220
			throw new EE_Error(sprintf(__("_extract_column_name is empty when trying to extract column and table name from %s",'event_espresso'),$query_param_name));
3221
		}
3222
		$number_of_parts = count($query_param_parts);
3223
		$last_query_param_part = $query_param_parts[ count($query_param_parts) - 1 ];
3224
		if($number_of_parts == 1){
3225
			$field_name = $last_query_param_part;
3226
			$model_obj = $this;
3227
		}else{// $number_of_parts >= 2
3228
			//the last part is the column name, and there are only 2parts. therefore...
3229
			$field_name = $last_query_param_part;
3230
			$model_obj = $this->get_related_model_obj( $query_param_parts[ $number_of_parts - 2 ]);
3231
		}
3232
		try{
3233
			return $model_obj->field_settings_for($field_name);
3234
		}catch(EE_Error $e){
3235
			return null;
3236
		}
3237
	}
3238
3239
3240
3241
	/**
3242
	 * Given a field's name (ie, a key in $this->field_settings()), uses the EE_Model_Field object to get the table's alias and column
3243
	 * which corresponds to it
3244
	 * @param string $field_name
3245
	 * @throws EE_Error
3246
	 * @return string
3247
	 */
3248
	function _get_qualified_column_for_field($field_name){
3249
		$all_fields = $this->field_settings();
3250
		$field = isset($all_fields[$field_name]) ? $all_fields[$field_name] : FALSE;
3251
		if($field){
3252
			return $field->get_qualified_column();
3253
		}else{
3254
			throw new EE_Error(sprintf(__("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.",'event_espresso'),$field_name,get_class($this)));
3255
		}
3256
	}
3257
3258
3259
3260
3261
	/**
3262
	 * constructs the select use on special limit joins
3263
	 * NOTE: for now this has only been tested and will work when the  table alias is for the PRIMARY table. Although its setup so the select query will be setup on and just doing the special select join off of the primary table (as that is typically where the limits would be set).
3264
	 * @param  string $table_alias The table the select is being built for
3265
	 * @param  mixed|string $limit The limit for this select
3266
	 * @return string 				The final select join element for the query.
3267
	 */
3268
	function _construct_limit_join_select( $table_alias, $limit ) {
3269
		$SQL = '';
3270
3271
		foreach ( $this->_tables as $table_obj ) {
3272
			if ( $table_obj instanceof EE_Primary_Table ) {
3273
				$SQL .= $table_alias == $table_obj->get_table_alias() ? $table_obj->get_select_join_limit( $limit ) : SP.$table_obj->get_table_name()." AS ".$table_obj->get_table_alias().SP;
3274
			} elseif ( $table_obj instanceof EE_Secondary_Table ) {
3275
				$SQL .= $table_alias == $table_obj->get_table_alias() ? $table_obj->get_select_join_limit_join($limit) : SP . $table_obj->get_join_sql( $table_alias ).SP;
3276
			}
3277
		}
3278
		return $SQL;
3279
	}
3280
3281
3282
3283
	/**
3284
	 * Constructs the internal join if there are multiple tables, or simply the table's name and alias
3285
	 * Eg "wp_post AS Event" or "wp_post AS Event INNER JOIN wp_postmeta Event_Meta ON Event.ID = Event_Meta.post_id"
3286
	 * @return string SQL
3287
	 */
3288
	function _construct_internal_join(){
3289
		$SQL = $this->_get_main_table()->get_table_sql();
3290
		$SQL .= $this->_construct_internal_join_to_table_with_alias($this->_get_main_table()->get_table_alias());
3291
		return $SQL;
3292
	}
3293
3294
3295
3296
	/**
3297
	 * Constructs the SQL for joining all the tables on this model.
3298
	 * Normally $alias should be the primary table's alias, but in cases where
3299
	 * we have already joined to a secondary table (eg, the secondary table has a foreign key and is joined before the primary table)
3300
	 * then we should provide that secondary table's alias.
3301
	 * Eg, with $alias being the primary table's alias, this will construct SQL like:
3302
	 * " INNER JOIN wp_esp_secondary_table AS Secondary_Table ON Primary_Table.pk = Secondary_Table.fk".
3303
	 * With $alias being a secondary table's alias, this will construct SQL like:
3304
	 * " INNER JOIN wp_esp_primary_table AS Primary_Table ON Primary_Table.pk = Secondary_Table.fk".
3305
	 *
3306
	 * @param string $alias_prefixed table alias to join to (this table should already be in the FROM SQL clause)
3307
	 * @return string
3308
	 */
3309
	function _construct_internal_join_to_table_with_alias($alias_prefixed){
3310
		$SQL = '';
3311
		$alias_sans_prefix = EE_Model_Parser::remove_table_alias_model_relation_chain_prefix($alias_prefixed);
3312
		foreach($this->_tables as $table_obj){
3313
			if($table_obj instanceof EE_Secondary_Table){//table is secondary table
3314
				if($alias_sans_prefix == $table_obj->get_table_alias()){
3315
					//so we're joining to this table, meaning the table is already in
3316
					//the FROM statement, BUT the primary table isn't. So we want
3317
					//to add the inverse join sql
3318
					$SQL .= $table_obj->get_inverse_join_sql($alias_prefixed);
3319
				}else{
3320
					//just add a regular JOIN to this table from the primary table
3321
					$SQL .= $table_obj->get_join_sql($alias_prefixed);
3322
				}
3323
			}//if it's a primary table, dont add any SQL. it should already be in the FROM statement
3324
		}
3325
		return $SQL;
3326
	}
3327
3328
	/**
3329
	 * Gets an array for storing all the data types on the next-to-be-executed-query.
3330
	 * This should be a growing array of keys being table-columns (eg 'EVT_ID' and 'Event.EVT_ID'), and values being their data type (eg, '%s', '%d', etc)
3331
	 * @return array
3332
	 */
3333
	function _get_data_types(){
3334
		$data_types = array();
3335
		foreach(array_values($this->field_settings()) as $field_obj){
3336
			//$data_types[$field_obj->get_table_column()] = $field_obj->get_wpdb_data_type();
3337
			/** @var $field_obj EE_Model_Field_Base */
3338
			$data_types[$field_obj->get_qualified_column()] = $field_obj->get_wpdb_data_type();
3339
		}
3340
		return $data_types;
3341
	}
3342
3343
3344
3345
	/**
3346
	 * Gets the model object given the relation's name / model's name (eg, 'Event', 'Registration',etc. Always singular)
3347
	 * @param string $model_name
3348
	 * @throws EE_Error
3349
	 * @return EEM_Base
3350
	 */
3351
	function get_related_model_obj($model_name){
3352
3353
		$model_classname = "EEM_".$model_name;
3354
		if(!class_exists($model_classname)){
3355
			throw new EE_Error(sprintf(__("You specified a related model named %s in your query. No such model exists, if it did, it would have the classname %s",'event_espresso'),$model_name,$model_classname));
3356
		}
3357
		$model_obj = call_user_func($model_classname."::instance");
3358
		return $model_obj;
3359
	}
3360
3361
3362
	/**
3363
	 * Returns the array of EE_ModelRelations for this model.
3364
	 * @return EE_Model_Relation_Base[]
3365
	 */
3366
	public function relation_settings(){
3367
		return $this->_model_relations;
3368
	}
3369
3370
	/**
3371
	 * Gets all related models that this model BELONGS TO. Handy to know sometimes
3372
	 * because without THOSE models, this model probably doesn't have much purpose.
3373
	 * (Eg, without an event, datetimes have little purpose.)
3374
	 * @return EE_Belongs_To_Relation[]
3375
	 */
3376
	public function belongs_to_relations(){
3377
		$belongs_to_relations = array();
3378
		foreach($this->relation_settings() as $model_name => $relation_obj){
3379
			if($relation_obj instanceof EE_Belongs_To_Relation){
3380
				$belongs_to_relations[$model_name] = $relation_obj;
3381
			}
3382
		}
3383
		return $belongs_to_relations;
3384
	}
3385
3386
3387
3388
	/**
3389
	 * Returns the specified EE_Model_Relation, or throws an exception
3390
	 * @param string $relation_name name of relation, key in $this->_relatedModels
3391
	 * @throws EE_Error
3392
	 * @return EE_Model_Relation_Base
3393
	 */
3394
	public function related_settings_for($relation_name){
3395
		$relatedModels=$this->relation_settings();
3396 View Code Duplication
		if(!array_key_exists($relation_name,$relatedModels)){
0 ignored issues
show
Duplication introduced by
This code seems to be duplicated across your project.

Duplicated code is one of the most pungent code smells. If you need to duplicate the same code in three or more different places, we strongly encourage you to look into extracting the code into a single class or operation.

You can also find more detailed suggestions in the “Code” section of your repository.

Loading history...
3397
			throw new EE_Error(
3398
				sprintf(
3399
					__('Cannot get %s related to %s. There is no model relation of that type. There is, however, %s...','event_espresso'),
3400
					$relation_name,
3401
					$this->_get_class_name(),
3402
					implode( ', ', array_keys( $relatedModels ))
3403
				)
3404
			);
3405
		}
3406
		return $relatedModels[$relation_name];
3407
	}
3408
3409
3410
3411
	/**
3412
	 * A convenience method for getting a specific field's settings, instead of getting all field settings for all fields
3413
	 * @param string $fieldName
3414
	 * @throws EE_Error
3415
	 * @return EE_Model_Field_Base
3416
	 */
3417 View Code Duplication
	public function field_settings_for($fieldName){
0 ignored issues
show
Duplication introduced by
This method seems to be duplicated in your project.

Duplicated code is one of the most pungent code smells. If you need to duplicate the same code in three or more different places, we strongly encourage you to look into extracting the code into a single class or operation.

You can also find more detailed suggestions in the “Code” section of your repository.

Loading history...
3418
		$fieldSettings=$this->field_settings(true);
3419
		if( ! array_key_exists($fieldName,$fieldSettings)){
3420
			throw new EE_Error(sprintf(__("There is no field/column '%s' on '%s'",'event_espresso'),$fieldName,get_class($this)));
3421
		}
3422
		return $fieldSettings[$fieldName];
3423
	}
3424
3425
	/**
3426
	 * Checks if this field exists on this model
3427
	 * @param string $fieldName a key in the model's _field_settings array
3428
	 * @return boolean
3429
	 */
3430
	public function has_field($fieldName){
3431
		$fieldSettings = $this->field_settings(true);
3432
		if( isset($fieldSettings[$fieldName])){
3433
			return true;
3434
		}else{
3435
			return false;
3436
		}
3437
	}
3438
3439
	/**
3440
	 * Returns whether or not this model has a relation to the specified model
3441
	 * @param string $relation_name possibly one of the keys in the relation_settings array
3442
	 * @return boolean
3443
	 */
3444
	public function has_relation($relation_name){
3445
		$relations = $this->relation_settings();
3446
		if(isset($relations[$relation_name])){
3447
			return true;
3448
		}else{
3449
			return false;
3450
		}
3451
	}
3452
3453
3454
	/**
3455
	 * gets the field object of type 'primary_key' from the fieldsSettings attribute.
3456
	 * Eg, on EE_Answer that would be ANS_ID field object
3457
	 * @param $field_obj
3458
	 * @return EE_Model_Field_Base
3459
	 */
3460
	public function is_primary_key_field( $field_obj ){
3461
		return $field_obj instanceof EE_Primary_Key_Field_Base ? TRUE : FALSE;
3462
	}
3463
3464
3465
3466
	/**
3467
	 * gets the field object of type 'primary_key' from the fieldsSettings attribute.
3468
	 * Eg, on EE_Answer that would be ANS_ID field object
3469
	 * @return EE_Model_Field_Base
3470
	 * @throws EE_Error
3471
	 */
3472
	public function get_primary_key_field(){
3473
		if( $this->_primary_key_field === NULL ){
3474
			foreach( $this->field_settings( TRUE ) as $field_obj ){
3475
				if( $this->is_primary_key_field( $field_obj )){
3476
					$this->_primary_key_field = $field_obj;
3477
					break;
3478
				}
3479
			}
3480
			if( ! $this->_primary_key_field instanceof EE_Primary_Key_Field_Base ){
3481
				throw new EE_Error(sprintf(__("There is no Primary Key defined on model %s",'event_espresso'),get_class($this)));
3482
			}
3483
		}
3484
		return $this->_primary_key_field;
3485
	}
3486
3487
3488
3489
	/**
3490
	 * Returns whether or not not there is a primary key on this model.
3491
	 * Internally does some caching.
3492
	 * @return boolean
3493
	 */
3494
	public function has_primary_key_field(){
3495
		if($this->_has_primary_key_field === null){
3496
			try{
3497
				$this->get_primary_key_field();
3498
				$this->_has_primary_key_field = true;
3499
			}catch(EE_Error $e){
3500
				$this->_has_primary_key_field = false;
3501
			}
3502
		}
3503
		return $this->_has_primary_key_field;
3504
	}
3505
3506
3507
3508
	/**
3509
	 * Finds the first field of type $field_class_name.
3510
	 * @param string $field_class_name class name of field that you want to find. Eg, EE_Datetime_Field, EE_Foreign_Key_Field, etc
3511
	 * @return EE_Model_Field_Base or null if none is found
3512
	 */
3513
	public function get_a_field_of_type($field_class_name){
3514
		foreach($this->field_settings() as $field){
3515
			if( $field instanceof $field_class_name ){
3516
				return $field;
3517
			}
3518
		}
3519
		return null;
3520
	}
3521
3522
3523
	/**
3524
	 * Gets a foreign key field pointing to model.
3525
	 * @param string $model_name eg Event, Registration, not EEM_Event
3526
	 * @return EE_Foreign_Key_Field_Base
3527
	 * @throws EE_Error
3528
	 */
3529
	public function get_foreign_key_to($model_name){
3530
		if( ! isset( $this->_cache_foreign_key_to_fields[ $model_name ] ) ){
3531
			foreach($this->field_settings() as $field){
3532
//				if(is_subclass_of($field, 'EE_Foreign_Key_Field_Base')){
3533
				if( $field instanceof EE_Foreign_Key_Field_Base ){
3534
					if (in_array($model_name,$field->get_model_names_pointed_to() ) ) {
3535
						$this->_cache_foreign_key_to_fields[ $model_name ] = $field;
3536
					}
3537
				}
3538
			}
3539 View Code Duplication
			if( ! isset( $this->_cache_foreign_key_to_fields[ $model_name ] ) ){
0 ignored issues
show
Duplication introduced by
This code seems to be duplicated across your project.

Duplicated code is one of the most pungent code smells. If you need to duplicate the same code in three or more different places, we strongly encourage you to look into extracting the code into a single class or operation.

You can also find more detailed suggestions in the “Code” section of your repository.

Loading history...
3540
				throw new EE_Error(sprintf(__("There is no foreign key field pointing to model %s on model %s",'event_espresso'),$model_name,get_class($this)));
3541
			}
3542
		}
3543
		return $this->_cache_foreign_key_to_fields[ $model_name ];
3544
	}
3545
3546
3547
3548
	/**
3549
	 * Gets the actual table for the table alias
3550
	 * @param string $table_alias eg Event, Event_Meta, Registration, Transaction, but maybe
3551
	 * a table alias with a model chain prefix, like 'Venue__Event_Venue___Event_Meta'. Either one works
3552
	 * @return EE_Table_Base
3553
	 */
3554
	function get_table_for_alias($table_alias){
3555
		$table_alias_sans_model_relation_chain_prefix = EE_Model_Parser::remove_table_alias_model_relation_chain_prefix($table_alias);
3556
		return $this->_tables[$table_alias_sans_model_relation_chain_prefix]->get_table_name();
3557
	}
3558
3559
3560
3561
	/**
3562
	 * Returns a flat array of all field son this model, instead of organizing them
3563
	 * by table_alias as they are in the constructor.
3564
	 * @param bool $include_db_only_fields flag indicating whether or not to include the db-only fields
3565
	 * @return EE_Model_Field_Base[] where the keys are the field's name
3566
	 */
3567
	public function field_settings($include_db_only_fields = false){
3568
		if( $include_db_only_fields ){
3569 View Code Duplication
			if( $this->_cached_fields === NULL ){
0 ignored issues
show
Duplication introduced by
This code seems to be duplicated across your project.

Duplicated code is one of the most pungent code smells. If you need to duplicate the same code in three or more different places, we strongly encourage you to look into extracting the code into a single class or operation.

You can also find more detailed suggestions in the “Code” section of your repository.

Loading history...
3570
				$this->_cached_fields = array();
3571
				foreach($this->_fields as $fields_corresponding_to_table){
3572
					foreach($fields_corresponding_to_table as $field_name => $field_obj){
0 ignored issues
show
Bug introduced by
The expression $fields_corresponding_to_table of type object<EE_Model_Field_Base> is not traversable.
Loading history...
3573
						$this->_cached_fields[$field_name]=$field_obj;
3574
					}
3575
				}
3576
			}
3577
			return $this->_cached_fields;
3578 View Code Duplication
		}else{
0 ignored issues
show
Duplication introduced by
This code seems to be duplicated across your project.

Duplicated code is one of the most pungent code smells. If you need to duplicate the same code in three or more different places, we strongly encourage you to look into extracting the code into a single class or operation.

You can also find more detailed suggestions in the “Code” section of your repository.

Loading history...
3579
			if( $this->_cached_fields_non_db_only === NULL ){
3580
				$this->_cached_fields_non_db_only = array();
3581
				foreach($this->_fields as $fields_corresponding_to_table){
3582
					foreach($fields_corresponding_to_table as $field_name => $field_obj){
0 ignored issues
show
Bug introduced by
The expression $fields_corresponding_to_table of type object<EE_Model_Field_Base> is not traversable.
Loading history...
3583
						/** @var $field_obj EE_Model_Field_Base */
3584
						if( ! $field_obj->is_db_only_field() ){
3585
							$this->_cached_fields_non_db_only[$field_name]=$field_obj;
3586
						}
3587
					}
3588
				}
3589
			}
3590
			return $this->_cached_fields_non_db_only;
3591
		}
3592
	}
3593
3594
3595
3596
	/**
3597
	 *        cycle though array of attendees and create objects out of each item
3598
	 *
3599
	 * @access        private
3600
	 * @param        array $rows of results of $wpdb->get_results($query,ARRAY_A)
3601
	 * @return \EE_Base_Class[] array keys are primary keys (if there is a primary key on the model. if not, numerically indexed)
3602
	 * @throws \EE_Error
3603
	 */
3604
	protected function _create_objects( $rows = array() ) {
3605
		$array_of_objects=array();
3606
		if(empty($rows)){
3607
			return array();
3608
		}
3609
		$count_if_model_has_no_primary_key = 0;
3610
		$has_primary_key = $this->has_primary_key_field();
3611
		if( $has_primary_key ) {
3612
			$primary_key_field = $this->get_primary_key_field();
3613
		} else {
3614
			$primary_key_field = null;
3615
		}
3616
		foreach ( $rows as $row ) {
3617
			if(empty($row)){
3618
				//wp did its weird thing where it returns an array like array(0=>null), which is totally not helpful...
3619
				return array();
3620
			}
3621
			//check if we've already set this object in the results array,
3622
			//in which case there's no need to process it further (again)
3623
			if( $has_primary_key ) {
3624
				$table_pk_value = $this->_get_column_value_with_table_alias_or_not(
3625
					$row,
3626
					$primary_key_field->get_qualified_column(),
3627
					$primary_key_field->get_table_column()
3628
				);
3629
				if( $table_pk_value &&
3630
					isset( $array_of_objects[ $table_pk_value ] ) ) {
3631
					continue;
3632
				}
3633
			}
3634
			$classInstance=$this->instantiate_class_from_array_or_object($row);
3635 View Code Duplication
			if( ! $classInstance ) {
0 ignored issues
show
Duplication introduced by
This code seems to be duplicated across your project.

Duplicated code is one of the most pungent code smells. If you need to duplicate the same code in three or more different places, we strongly encourage you to look into extracting the code into a single class or operation.

You can also find more detailed suggestions in the “Code” section of your repository.

Loading history...
3636
				throw new EE_Error(
3637
					sprintf(
3638
						__( 'Could not create instance of class %s from row %s', 'event_espresso' ),
3639
						$this->get_this_model_name(),
3640
						http_build_query( $row )
3641
					)
3642
				);
3643
			}
3644
			//set the timezone on the instantiated objects
3645
			$classInstance->set_timezone( $this->_timezone );
3646
			//make sure if there is any timezone setting present that we set the timezone for the object
3647
			$key = $has_primary_key ? $classInstance->ID() : $count_if_model_has_no_primary_key++;
3648
			$array_of_objects[ $key ] = $classInstance;
3649
			//also, for all the relations of type BelongsTo, see if we can cache
3650
			//those related models
3651
			//(we could do this for other relations too, but if there are conditions
3652
			//that filtered out some fo the results, then we'd be caching an incomplete set
3653
			//so it requires a little more thought than just caching them immediately...)
3654
			foreach($this->_model_relations as $modelName => $relation_obj){
3655
				if( $relation_obj instanceof EE_Belongs_To_Relation){
3656
					//check if this model's INFO is present. If so, cache it on the model
3657
					$other_model = $relation_obj->get_other_model();
3658
3659
					$other_model_obj_maybe = $other_model->instantiate_class_from_array_or_object($row);
0 ignored issues
show
Bug introduced by
The method instantiate_class_from_array_or_object cannot be called on $other_model (of type boolean).

Methods can only be called on objects. This check looks for methods being called on variables that have been inferred to never be objects.

Loading history...
3660
3661
					//if we managed to make a model object from the results, cache it on the main model object
3662
					if( $other_model_obj_maybe ){
3663
						//set timezone on these other model objects if they are present
3664
						$other_model_obj_maybe->set_timezone( $this->_timezone );
3665
						$classInstance->cache($modelName, $other_model_obj_maybe);
3666
					}
3667
				}
3668
			}
3669
		}
3670
		return $array_of_objects;
3671
	}
3672
3673
3674
3675
	/**
3676
	 * The purpose of this method is to allow us to create a model object that is not in the db that holds default values.
3677
	 * A typical example of where this is used is when creating a new item and the initial load of a form.  We dont' necessarily want to test for if the object is present but just assume it is BUT load the defaults from the object (as set in the model_field!).
3678
	 *
3679
	 * @return EE_Base_Class single EE_Base_Class object with default values for the properties.
3680
	 */
3681
	public function create_default_object() {
3682
3683
		$this_model_fields_and_values = array();
3684
		//setup the row using default values;
3685
		foreach ( $this->field_settings() as $field_name => $field_obj ) {
3686
			$this_model_fields_and_values[$field_name] = $field_obj->get_default_value();
3687
		}
3688
3689
		$className = $this->_get_class_name();
3690
		$classInstance = EE_Registry::instance()->load_class( $className, array( $this_model_fields_and_values ), FALSE, FALSE );
3691
3692
		return $classInstance;
3693
	}
3694
3695
3696
3697
	/**
3698
	 *
3699
	 * @param mixed $cols_n_values either an array of where each key is the name of a field, and the value is its value
3700
	 * or an stdClass where each property is the name of a column,
3701
	 * @return EE_Base_Class
3702
	 */
3703
	public function instantiate_class_from_array_or_object($cols_n_values){
3704
		if( ! is_array( $cols_n_values ) && is_object( $cols_n_values )) {
3705
			$cols_n_values = get_object_vars( $cols_n_values );
3706
		}
3707
		$primary_key = NULL;
3708
		//make sure the array only has keys that are fields/columns on this model
3709
		$this_model_fields_n_values = $this->_deduce_fields_n_values_from_cols_n_values( $cols_n_values );
3710
		if( $this->has_primary_key_field() && isset( $this_model_fields_n_values[ $this->primary_key_name() ] ) ){
3711
			$primary_key = $this_model_fields_n_values[ $this->primary_key_name() ];
3712
		}
3713
		$className=$this->_get_class_name();
3714
3715
		//check we actually found results that we can use to build our model object
3716
		//if not, return null
3717
		if( $this->has_primary_key_field()){
3718
			if(empty( $this_model_fields_n_values[$this->primary_key_name()] )){
3719
				return NULL;
3720
			}
3721
		}else if($this->unique_indexes()){
3722
			$first_column = reset($this_model_fields_n_values);
3723
			if(empty($first_column)){
3724
				return NULL;
3725
			}
3726
		}
3727
3728
		// if there is no primary key or the object doesn't already exist in the entity map, then create a new instance
3729
		if ( $primary_key){
3730
			$classInstance = $this->get_from_entity_map( $primary_key );
3731
			if( ! $classInstance) {
3732
				$classInstance = EE_Registry::instance()->load_class( $className, array( $this_model_fields_n_values, $this->_timezone ), TRUE, FALSE );
3733
				// add this new object to the entity map
3734
				$classInstance = $this->add_to_entity_map( $classInstance );
0 ignored issues
show
Documentation introduced by
$classInstance is of type boolean, but the function expects a object<EE_Base_Class>.

It seems like the type of the argument is not accepted by the function/method which you are calling.

In some cases, in particular if PHP’s automatic type-juggling kicks in this might be fine. In other cases, however this might be a bug.

We suggest to add an explicit type cast like in the following example:

function acceptsInteger($int) { }

$x = '123'; // string "123"

// Instead of
acceptsInteger($x);

// we recommend to use
acceptsInteger((integer) $x);
Loading history...
3735
			}
3736
		}else{
3737
			$classInstance = EE_Registry::instance()->load_class( $className, array( $this_model_fields_n_values, $this->_timezone ), TRUE, FALSE );
0 ignored issues
show
Bug Compatibility introduced by
The expression \EE_Registry::instance()...imezone), TRUE, FALSE); of type boolean adds the type boolean to the return on line 3742 which is incompatible with the return type documented by EEM_Base::instantiate_class_from_array_or_object of type EE_Base_Class|null.
Loading history...
3738
		}
3739
3740
			//it is entirely possible that the instantiated class object has a set timezone_string db field and has set it's internal _timezone property accordingly (see new_instance_from_db in model objects particularly EE_Event for example).  In this case, we want to make sure the model object doesn't have its timezone string overwritten by any timezone property currently set here on the model so, we intentionally override the model _timezone property with the model_object timezone property.
3741
		$this->set_timezone( $classInstance->get_timezone() );
3742
		return $classInstance;
3743
	}
3744
	/**
3745
	 * Gets the model object from the  entity map if it exists
3746
	 * @param int|string $id the ID of the model object
3747
	 * @return EE_Base_Class
3748
	 */
3749
	public function get_from_entity_map( $id ){
3750
		return isset( $this->_entity_map[ $id ] ) ? $this->_entity_map[ $id ] : NULL;
3751
	}
3752
3753
3754
3755
	/**
3756
	 * add_to_entity_map
3757
	 *
3758
	 * Adds the object to the model's entity mappings
3759
	 * 		Effectively tells the models "Hey, this model object is the most up-to-date representation of the data,
3760
	 * 		and for the remainder of the request, it's even more up-to-date than what's in the database.
3761
	 * 		So, if the database doesn't agree with what's in the entity mapper, ignore the database"
3762
	 * 		If the database gets updated directly and you want the entity mapper to reflect that change,
3763
	 * 		then this method should be called immediately after the update query
3764
	 *
3765
	 * @param 	EE_Base_Class $object
3766
	 * @throws EE_Error
3767
	 * @return \EE_Base_Class
3768
	 */
3769
	public function add_to_entity_map( EE_Base_Class $object) {
3770
		$className = $this->_get_class_name();
3771
		if( ! $object instanceof $className ){
3772
			throw new EE_Error(sprintf(__("You tried adding a %s to a mapping of %ss", "event_espresso"),is_object( $object ) ? get_class( $object ) : $object, $className ) );
3773
		}
3774
		/** @var $object EE_Base_Class */
3775
		if ( ! $object->ID() ){
3776
			throw new EE_Error(sprintf(__("You tried storing a model object with NO ID in the %s entity mapper.", "event_espresso"),get_class($this)));
3777
		}
3778
		// double check it's not already there
3779
		$classInstance = $this->get_from_entity_map( $object->ID() );
3780
		if ( $classInstance ) {
3781
			return $classInstance;
3782
		} else {
3783
			$this->_entity_map[ $object->ID() ] = $object;
3784
			return $object;
3785
		}
3786
	}
3787
3788
	/**
3789
	 * Public wrapper for _deduce_fields_n_values_from_cols_n_values.
3790
	 *
3791
	 * Given an array where keys are column (or column alias) names and values,
3792
	 * returns an array of their corresponding field names and database values
3793
	 * @param array $cols_n_values
3794
	 * @return array
3795
	 */
3796
	public function deduce_fields_n_values_from_cols_n_values( $cols_n_values ) {
3797
		return $this->_deduce_fields_n_values_from_cols_n_values( $cols_n_values );
0 ignored issues
show
Documentation introduced by
$cols_n_values is of type array, but the function expects a string.

It seems like the type of the argument is not accepted by the function/method which you are calling.

In some cases, in particular if PHP’s automatic type-juggling kicks in this might be fine. In other cases, however this might be a bug.

We suggest to add an explicit type cast like in the following example:

function acceptsInteger($int) { }

$x = '123'; // string "123"

// Instead of
acceptsInteger($x);

// we recommend to use
acceptsInteger((integer) $x);
Loading history...
3798
	}
3799
3800
3801
	/**
3802
	 * _deduce_fields_n_values_from_cols_n_values
3803
	 *
3804
	 * Given an array where keys are column (or column alias) names and values,
3805
	 * returns an array of their corresponding field names and database values
3806
	 *
3807
	 * @param string $cols_n_values
3808
	 * @return array
3809
	 */
3810
	protected function _deduce_fields_n_values_from_cols_n_values( $cols_n_values ){
3811
		$this_model_fields_n_values = array();
3812
		foreach( $this->get_tables() as $table_alias => $table_obj ) {
3813
			$table_pk_value = $this->_get_column_value_with_table_alias_or_not($cols_n_values, $table_obj->get_fully_qualified_pk_column(), $table_obj->get_pk_column() );
3814
			//there is a primary key on this table and its not set. Use defaults for all its columns
3815
			if( $table_obj->get_pk_column() && $table_pk_value === NULL ){
3816
				foreach( $this->_get_fields_for_table( $table_alias ) as $field_name => $field_obj ) {
0 ignored issues
show
Bug introduced by
The expression $this->_get_fields_for_table($table_alias) of type object<EE_Model_Field_Base> is not traversable.
Loading history...
3817
					if( ! $field_obj->is_db_only_field() ){
3818
						//prepare field as if its coming from db
3819
						$prepared_value = $field_obj->prepare_for_set( $field_obj->get_default_value() );
3820
						$this_model_fields_n_values[$field_name] = $field_obj->prepare_for_use_in_db( $prepared_value );
3821
					}
3822
				}
3823
			}else{
3824
				//the table's rows existed. Use their values
3825
				foreach( $this->_get_fields_for_table( $table_alias ) as $field_name => $field_obj ) {
0 ignored issues
show
Bug introduced by
The expression $this->_get_fields_for_table($table_alias) of type object<EE_Model_Field_Base> is not traversable.
Loading history...
3826
					if( ! $field_obj->is_db_only_field() )
3827
					$this_model_fields_n_values[$field_name] = $this->_get_column_value_with_table_alias_or_not($cols_n_values, $field_obj->get_qualified_column(), $field_obj->get_table_column() );
3828
				}
3829
			}
3830
		}
3831
		return $this_model_fields_n_values;
3832
	}
3833
3834
	protected function _get_column_value_with_table_alias_or_not( $cols_n_values, $qualified_column, $regular_column ){
3835
		//ask the field what it think it's table_name.column_name should be, and call it the "qualified column"
3836
		//does the field on the model relate to this column retrieved from the db?
3837
		//or is it a db-only field? (not relating to the model)
3838
		if( isset( $cols_n_values[ $qualified_column ] ) ){
3839
			$value = $cols_n_values[ $qualified_column ];
3840
3841
		}elseif( isset( $cols_n_values[ $regular_column ] ) ){
3842
			$value = $cols_n_values[ $regular_column ];
3843
		}else{
3844
			$value = NULL;
3845
		}
3846
3847
		return $value;
3848
	}
3849
3850
3851
3852
	/**
3853
	 * refresh_entity_map_from_db
3854
	 *
3855
	 * Makes sure the model object in the entity map at $id assumes the values
3856
	 * of the database (opposite of EE_base_Class::save())
3857
	 *
3858
	 * @param int|string $id
3859
	 * @return EE_Base_Class
3860
	 */
3861
	public function refresh_entity_map_from_db( $id ){
3862
		$obj_in_map = $this->get_from_entity_map( $id );
3863
		if( $obj_in_map ){
3864
			$wpdb_results = $this->_get_all_wpdb_results( array( array ( $this->get_primary_key_field()->get_name() => $id ), 'limit' => 1 ) );
3865
			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...
3866
				$one_row = reset( $wpdb_results );
3867
				foreach( $this->_deduce_fields_n_values_from_cols_n_values($one_row ) as $field_name => $db_value ) {
3868
					$obj_in_map->set_from_db( $field_name, $db_value );
3869
				}
3870
				//clear the cache of related model objects
3871
				foreach ( $this->relation_settings() as $relation_name => $relation_obj ){
3872
					$obj_in_map->clear_cache($relation_name, NULL, TRUE );
3873
				}
3874
			}
3875
			return $obj_in_map;
3876
		}else{
3877
			return $this->get_one_by_ID( $id );
3878
		}
3879
	}
3880
3881
3882
3883
	/**
3884
	 * refresh_entity_map_with
3885
	 *
3886
	 * Leaves the entry in the entity map alone, but updates it to match the provided
3887
	 * $replacing_model_obj (which we assume to be its equivalent but somehow NOT in the entity map).
3888
	 * This is useful if you have a model object you want to make authoritative over what's in the entity map currently.
3889
	 * Note: The old $replacing_model_obj should now be destroyed as it's now un-authoritative
3890
	 *
3891
	 * @param int|string    $id
3892
	 * @param EE_Base_Class $replacing_model_obj
3893
	 * @return \EE_Base_Class
3894
	 */
3895
	public function refresh_entity_map_with( $id, $replacing_model_obj ) {
3896
		$obj_in_map = $this->get_from_entity_map( $id );
3897
		if( $obj_in_map ){
3898
			if( $replacing_model_obj instanceof EE_Base_Class ){
3899
				foreach( $replacing_model_obj->model_field_array() as $field_name => $value ) {
3900
					$obj_in_map->set( $field_name, $value );
3901
				}
3902
				//make the model object in the entity map's cache match the $replacing_model_obj
3903
				foreach ( $this->relation_settings() as $relation_name => $relation_obj ){
3904
					$obj_in_map->clear_cache($relation_name, NULL, TRUE );
3905
					foreach( $replacing_model_obj->get_all_from_cache( $relation_name ) as $cache_id => $cached_obj ) {
3906
						$obj_in_map->cache( $relation_name, $cached_obj, $cache_id );
3907
					}
3908
				}
3909
			}
3910
			return $obj_in_map;
3911
		}else{
3912
			$this->add_to_entity_map( $replacing_model_obj );
3913
			return $replacing_model_obj;
3914
		}
3915
	}
3916
3917
3918
3919
	/**
3920
	 * Gets the EE class that corresponds to this model. Eg, for EEM_Answer that
3921
	 * would be EE_Answer.To import that class, you'd just add ".class.php" to the name, like so
3922
	 * require_once($this->_getClassName().".class.php");
3923
	 * @return string
3924
	 */
3925
	private function _get_class_name(){
3926
		return "EE_".$this->get_this_model_name();
3927
	}
3928
3929
3930
3931
	/**
3932
	 * Get the name of the items this model represents, for the quantity specified. Eg,
3933
	 * if $quantity==1, on EEM_Event, it would 'Event' (internationalized), otherwise
3934
	 * it would be 'Events'.
3935
	 * @param int $quantity
3936
	 * @return string
3937
	 */
3938
	public function item_name($quantity = 1){
3939
		if($quantity == 1){
3940
			return $this->singular_item;
3941
		}else{
3942
			return $this->plural_item;
3943
		}
3944
	}
3945
3946
3947
3948
	/**
3949
	 * Very handy general function to allow for plugins to extend any child of EE_TempBase.
3950
	 * If a method is called on a child of EE_TempBase that doesn't exist, this function is called (http://www.garfieldtech.com/blog/php-magic-call)
3951
	 * and passed the method's name and arguments.
3952
	 * Instead of requiring a plugin to extend the EE_TempBase (which works fine is there's only 1 plugin, but when will that happen?)
3953
	 * they can add a hook onto 'filters_hook_espresso__{className}__{methodName}' (eg, filters_hook_espresso__EE_Answer__my_great_function)
3954
	 * and accepts 2 arguments: the object on which the function was called, and an array of the original arguments passed to the function. Whatever their callback function returns will be returned by this function.
3955
	 * Example: in functions.php (or in a plugin):
3956
	 * add_filter('FHEE__EE_Answer__my_callback','my_callback',10,3);
3957
	 * function my_callback($previousReturnValue,EE_TempBase $object,$argsArray){
3958
	 * $returnString= "you called my_callback! and passed args:".implode(",",$argsArray);
3959
	 *        return $previousReturnValue.$returnString;
3960
	 * }
3961
	 * require('EEM_Answer.model.php');
3962
	 * $answer=EEM_Answer::instance();
3963
	 * echo $answer->my_callback('monkeys',100);
3964
	 * //will output "you called my_callback! and passed args:monkeys,100"
3965
	 * @param string $methodName name of method which was called on a child of EE_TempBase, but which
3966
	 * @param array  $args       array of original arguments passed to the function
3967
	 * @throws EE_Error
3968
	 * @return mixed whatever the plugin which calls add_filter decides
3969
	 */
3970 View Code Duplication
	public function __call($methodName,$args){
0 ignored issues
show
Duplication introduced by
This method seems to be duplicated in your project.

Duplicated code is one of the most pungent code smells. If you need to duplicate the same code in three or more different places, we strongly encourage you to look into extracting the code into a single class or operation.

You can also find more detailed suggestions in the “Code” section of your repository.

Loading history...
3971
		$className=get_class($this);
3972
		$tagName="FHEE__{$className}__{$methodName}";
3973
		if(!has_filter($tagName)){
3974
			throw new EE_Error(
3975
				sprintf(
3976
					__( '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 );', 'event_espresso' ),
3977
					$methodName,
3978
					$className,
3979
					$tagName,
3980
					'<br />'
3981
				)
3982
			);
3983
		}
3984
3985
		return apply_filters($tagName,null,$this,$args);
3986
	}
3987
3988
3989
3990
	/**
3991
	 * Ensures $base_class_obj_or_id is of the EE_Base_Class child that corresponds ot this model.
3992
	 * If not, assumes its an ID, and uses $this->get_one_by_ID() to get the EE_Base_Class.
3993
	 * @param EE_Base_Class | int $base_class_obj_or_id  	either the EE_Base_Class that corresponds to this Model, or its ID
3994
	 * @param boolean $ensure_is_in_db if set, we will also verify this model object exists in the database. If it does not, we add it
3995
	 * @throws EE_Error
3996
	 * @return EE_Base_Class
3997
	 */
3998
	public function ensure_is_obj( $base_class_obj_or_id, $ensure_is_in_db = FALSE ){
3999
		$className = $this->_get_class_name();
4000
		$primary_key_field = $this->get_primary_key_field();
4001
		if( $base_class_obj_or_id instanceof $className ){
4002
			$model_object = $base_class_obj_or_id;
4003
		}elseif( $primary_key_field instanceof EE_Primary_Key_Int_Field && (
4004
				is_int( $base_class_obj_or_id ) ||
4005
				is_string( $base_class_obj_or_id ) )){//assume it's an ID. either a proper integer or a string representing an integer (eg "101" instead of 101)
4006
			$model_object = $this->get_one_by_ID($base_class_obj_or_id);
4007
		}elseif( $primary_key_field instanceof EE_Primary_Key_String_Field && is_string($base_class_obj_or_id) ){
4008
			//assume its a string representation of the object
4009
			$model_object = $this->get_one_by_ID($base_class_obj_or_id);
4010 View Code Duplication
		}else{
0 ignored issues
show
Duplication introduced by
This code seems to be duplicated across your project.

Duplicated code is one of the most pungent code smells. If you need to duplicate the same code in three or more different places, we strongly encourage you to look into extracting the code into a single class or operation.

You can also find more detailed suggestions in the “Code” section of your repository.

Loading history...
4011
			throw new EE_Error(sprintf(__("'%s' is neither an object of type %s, nor an ID! Its full value is '%s'",'event_espresso'),$base_class_obj_or_id,$this->_get_class_name(),print_r($base_class_obj_or_id,true)));
4012
		}
4013
		if( $model_object->ID() == NULL && $ensure_is_in_db){
4014
			$model_object->save();
4015
		}
4016
		return $model_object;
4017
	}
4018
4019
4020
4021
	/**
4022
	 * Similar to ensure_is_obj(), this method makes sure $base_class_obj_or_id
4023
	 * is a value of the this model's primary key. If it's an EE_Base_Class child,
4024
	 * returns it ID.
4025
	 * @param EE_Base_Class|int|string $base_class_obj_or_id
4026
	 * @return int|string depending on the type of this model object's ID
4027
	 * @throws EE_Error
4028
	 */
4029
	public function ensure_is_ID($base_class_obj_or_id){
4030
		$className = $this->_get_class_name();
4031
		if( $base_class_obj_or_id instanceof $className ){
4032
			/** @var $base_class_obj_or_id EE_Base_Class */
4033
			$id = $base_class_obj_or_id->ID();
4034
		}elseif(is_int($base_class_obj_or_id)){
4035
			//assume it's an ID
4036
			$id = $base_class_obj_or_id;
4037
		}elseif(is_string($base_class_obj_or_id)){
4038
			//assume its a string representation of the object
4039
			$id = $base_class_obj_or_id;
4040 View Code Duplication
		}else{
0 ignored issues
show
Duplication introduced by
This code seems to be duplicated across your project.

Duplicated code is one of the most pungent code smells. If you need to duplicate the same code in three or more different places, we strongly encourage you to look into extracting the code into a single class or operation.

You can also find more detailed suggestions in the “Code” section of your repository.

Loading history...
4041
			throw new EE_Error(sprintf(__("'%s' is neither an object of type %s, nor an ID! Its full value is '%s'",'event_espresso'),$base_class_obj_or_id,$this->_get_class_name(),print_r($base_class_obj_or_id,true)));
4042
		}
4043
		return $id;
4044
	}
4045
4046
4047
4048
	/**
4049
	 * Sets whether the values passed to the model (eg, values in WHERE, values in INSERT, UPDATE, etc)
4050
	 * have already been ran through the appropriate model field's prepare_for_use_in_db method. IE, they have
4051
	 * been sanitized and converted into the appropriate domain.
4052
	 * Usually the only place you'll want to change the default (which is to assume values have NOT been sanitized by the model
4053
	 * object/model field) is when making a method call from WITHIN a model object, which has direct access to its sanitized
4054
	 * values.
4055
	 * Note: after changing this setting, you should set it back to its previous value (using get_assumption_concerning_values_already_prepared_by_model_object())
4056
	 * eg.
4057
	 * $EVT = EEM_Event::instance(); $old_setting = $EVT->get_assumption_concerning_values_already_prepared_by_model_object();
4058
	 * $EVT->assume_values_already_prepared_by_model_object(true);
4059
	 * $EVT->update(array('foo'=>'bar'),array(array('foo'=>'monkey')));
4060
	 * $EVT->assume_values_already_prepared_by_model_object($old_setting);
4061
	 * @param int $values_already_prepared like one of the constants on EEM_Base
4062
	 * @return void
4063
	 */
4064
	public function assume_values_already_prepared_by_model_object($values_already_prepared = self::not_prepared_by_model_object){
4065
		$this->_values_already_prepared_by_model_object = $values_already_prepared;
0 ignored issues
show
Documentation Bug introduced by
The property $_values_already_prepared_by_model_object was declared of type boolean, but $values_already_prepared is of type integer. Maybe add a type cast?

This check looks for assignments to scalar types that may be of the wrong type.

To ensure the code behaves as expected, it may be a good idea to add an explicit type cast.

$answer = 42;

$correct = false;

$correct = (bool) $answer;
Loading history...
4066
	}
4067
	/**
4068
	 * Read comments for assume_values_already_prepared_by_model_object()
4069
	 * @return int
4070
	 */
4071
	public function get_assumption_concerning_values_already_prepared_by_model_object(){
4072
		return $this->_values_already_prepared_by_model_object;
4073
	}
4074
4075
	/**
4076
	 * Gets all the indexes on this model
4077
	 * @return EE_Index[]
4078
	 */
4079
	public function indexes(){
4080
		return $this->_indexes;
4081
	}
4082
	/**
4083
	 * Gets all the Unique Indexes on this model
4084
	 * @return EE_Unique_Index[]
4085
	 */
4086
	public function unique_indexes(){
4087
		$unique_indexes = array();
4088
		foreach($this->_indexes as $name => $index){
4089
			if($index instanceof EE_Unique_Index){
4090
				$unique_indexes [$name] = $index;
4091
			}
4092
		}
4093
		return $unique_indexes;
4094
	}
4095
	/**
4096
	 * Gets all the fields which, when combined, make the primary key.
4097
	 * This is usually just an array with 1 element (the primary key), but in cases
4098
	 * where there is no primary key, it's a combination of fields as defined
4099
	 * on a primary index
4100
	 * @return EE_Model_Field_Base[]
4101
	 */
4102
	public function get_combined_primary_key_fields(){
4103
		foreach($this->indexes() as $index){
4104
			if($index instanceof EE_Primary_Key_Index){
4105
				return $index->fields();
4106
			}
4107
		}
4108
		return array($this->get_primary_key_field());
4109
	}
4110
4111
	/**
4112
	 * Used to build a primary key string (when the model has no primary key),
4113
	 * which can be used a unique string to identify this model object.
4114
	 * @param array $cols_n_values keys are field names, values are their values
4115
	 * @return string
4116
	 */
4117
	public function get_index_primary_key_string($cols_n_values){
4118
		$cols_n_values_for_primary_key_index = array_intersect_key($cols_n_values, $this->get_combined_primary_key_fields());
4119
		return http_build_query($cols_n_values_for_primary_key_index);
4120
	}
4121
4122
4123
	/**
4124
	 * Gets the field values from the primary key string
4125
	 * @see EEM_Base::get_combined_primary_key_fields() and EEM_Base::get_index_primary_key_string()
4126
	 * @param string $index_primary_key_string
4127
	 * @return null|array
4128
	 */
4129
	function parse_index_primary_key_string( $index_primary_key_string) {
4130
		$key_fields = $this->get_combined_primary_key_fields();
4131
		//check all of them are in the $id
4132
		$key_vals_in_combined_pk = array();
4133
		parse_str( $index_primary_key_string, $key_vals_in_combined_pk );
4134
		foreach( $key_fields as $key_field_name => $field_obj ) {
4135
			if( ! isset( $key_vals_in_combined_pk[ $key_field_name ] ) ){
4136
				return NULL;
4137
			}
4138
		}
4139
		return $key_vals_in_combined_pk;
4140
	}
4141
4142
	/**
4143
	 * verifies that an array of key-value pairs for model fields has a key
4144
	 * for each field comprising the primary key index
4145
	 * @param array $key_vals
4146
	 * @return boolean
4147
	 */
4148
	function has_all_combined_primary_key_fields( $key_vals ) {
4149
		$keys_it_should_have = array_keys( $this->get_combined_primary_key_fields() );
4150
		foreach( $keys_it_should_have as $key ){
4151
			if( ! isset( $key_vals[ $key ] ) ){
4152
				return false;
4153
			}
4154
		}
4155
		return true;
4156
	}
4157
4158
4159
	/**
4160
	 * Finds all model objects in the DB that appear to be a copy of $model_object_or_attributes_array.
4161
	 * We consider something to be a copy if all the attributes match (except the ID, of course).
4162
	 * @param array|EE_Base_Class $model_object_or_attributes_array 	If its an array, it's field-value pairs
4163
	 * @param array                $query_params like EEM_Base::get_all's query_params.
4164
	 * @throws EE_Error
4165
	 * @return \EE_Base_Class[] Array keys are object IDs (if there is a primary key on the model. if not, numerically indexed)
4166
	 */
4167
	public function get_all_copies($model_object_or_attributes_array, $query_params = array()){
4168
4169 View Code Duplication
		if($model_object_or_attributes_array instanceof EE_Base_Class){
0 ignored issues
show
Duplication introduced by
This code seems to be duplicated across your project.

Duplicated code is one of the most pungent code smells. If you need to duplicate the same code in three or more different places, we strongly encourage you to look into extracting the code into a single class or operation.

You can also find more detailed suggestions in the “Code” section of your repository.

Loading history...
4170
			$attributes_array = $model_object_or_attributes_array->model_field_array();
4171
		}elseif(is_array($model_object_or_attributes_array)){
4172
			$attributes_array = $model_object_or_attributes_array;
4173
		}else{
4174
			throw new EE_Error(sprintf(__("get_all_copies should be provided with either a model object or an array of field-value-pairs, but was given %s", "event_espresso"),$model_object_or_attributes_array));
4175
		}
4176
		//even copies obviously won't have the same ID, so remove the primary key
4177
		//from the WHERE conditions for finding copies (if there is a primary key, of course)
4178
		if($this->has_primary_key_field() && isset($attributes_array[$this->primary_key_name()])){
4179
			unset($attributes_array[$this->primary_key_name()]);
4180
		}
4181
		if(isset($query_params[0])){
4182
			$query_params[0] = array_merge($attributes_array,$query_params);
4183
		}else{
4184
			$query_params[0] = $attributes_array;
4185
		}
4186
		return $this->get_all($query_params);
4187
	}
4188
4189
4190
4191
	/**
4192
	 * Gets the first copy we find. See get_all_copies for more details
4193
	 * @param mixed EE_Base_Class | array        $model_object_or_attributes_array
4194
	 * @param array $query_params
4195
	 * @return EE_Base_Class
4196
	 */
4197 View Code Duplication
	function get_one_copy($model_object_or_attributes_array,$query_params = array()){
0 ignored issues
show
Duplication introduced by
This method seems to be duplicated in your project.

Duplicated code is one of the most pungent code smells. If you need to duplicate the same code in three or more different places, we strongly encourage you to look into extracting the code into a single class or operation.

You can also find more detailed suggestions in the “Code” section of your repository.

Loading history...
4198
		if( ! is_array( $query_params ) ){
4199
			EE_Error::doing_it_wrong('EEM_Base::get_one_copy', sprintf( __( '$query_params should be an array, you passed a variable of type %s', 'event_espresso' ), gettype( $query_params ) ), '4.6.0' );
4200
			$query_params = array();
4201
		}
4202
		$query_params['limit'] = 1;
4203
		$copies = $this->get_all_copies($model_object_or_attributes_array,$query_params);
4204
		if(is_array($copies)){
4205
			return array_shift($copies);
4206
		}else{
4207
			return null;
4208
		}
4209
	}
4210
4211
4212
4213
	/**
4214
	 * Updates the item with the specified id. Ignores default query parameters because
4215
	 * we have specified the ID, and its assumed we KNOW what we're doing
4216
	 * @param array $fields_n_values keys are field names, values are their new values
4217
	 * @param int|string $id the value of the primary key to update
4218
	 * @return int number of rows updated
4219
	 */
4220
	public function update_by_ID($fields_n_values,$id){
4221
		$query_params = array(0=>array($this->get_primary_key_field()->get_name() => $id),
4222
			'default_where_conditions'=>'other_models_only',);
4223
		return $this->update($fields_n_values,$query_params);
4224
	}
4225
4226
4227
4228
	/**
4229
	 * Changes an operator which was supplied to the models into one usable in SQL
4230
	 * @param string $operator_supplied
4231
	 * @return string an operator which can be used in SQL
4232
	 * @throws EE_Error
4233
	 */
4234
	private function _prepare_operator_for_sql($operator_supplied){
4235
		$sql_operator = isset($this->_valid_operators[$operator_supplied]) ? $this->_valid_operators[$operator_supplied] : null;
4236 View Code Duplication
		if($sql_operator){
0 ignored issues
show
Duplication introduced by
This code seems to be duplicated across your project.

Duplicated code is one of the most pungent code smells. If you need to duplicate the same code in three or more different places, we strongly encourage you to look into extracting the code into a single class or operation.

You can also find more detailed suggestions in the “Code” section of your repository.

Loading history...
4237
			return $sql_operator;
4238
		}else{
4239
			throw new EE_Error(sprintf(__("The operator '%s' is not in the list of valid operators: %s", "event_espresso"),$operator_supplied,implode(",",array_keys($this->_valid_operators))));
4240
		}
4241
	}
4242
4243
	/**
4244
	 * Gets an array where keys are the primary keys and values are their 'names'
4245
	 * (as determined by the model object's name() function, which is often overridden)
4246
	 * @param array $query_params like get_all's
4247
	 * @return string[]
4248
	 */
4249
	public function get_all_names($query_params = array()){
4250
		$objs = $this->get_all($query_params);
4251
		$names = array();
4252
		foreach($objs as $obj){
4253
			$names[$obj->ID()] = $obj->name();
4254
		}
4255
		return $names;
4256
	}
4257
4258
	/**
4259
	 * Gets an array of primary keys from the model objects. If you acquired the model objects
4260
	 * using EEM_Base::get_all() you don't need to call this (and probably shouldn't because
4261
	 * this is duplicated effort and reduces efficiency) you would be better to use
4262
	 * array_keys() on $model_objects.
4263
	 * @param /EE_Base_Class[] $model_objects
0 ignored issues
show
Documentation introduced by
The doc-type /EE_Base_Class[] could not be parsed: Unknown type name "/EE_Base_Class" at position 0. (view supported doc-types)

This check marks PHPDoc comments that could not be parsed by our parser. To see which comment annotations we can parse, please refer to our documentation on supported doc-types.

Loading history...
4264
	 * @param boolean $filter_out_empty_ids if a model object has an ID of '' or 0, don't bother including it in the returned array
4265
	 * @return array
4266
	 */
4267
	public function get_IDs( $model_objects, $filter_out_empty_ids = false) {
4268
		if( ! $this->has_primary_key_field() ) {
4269
			if( WP_DEBUG ) {
4270
				EE_Error::add_error( __( 'Trying to get IDs from a model than has no primary key', 'event_espresso' ), __FILE__, __FUNCTION__, __LINE__ );
4271
				return array();
4272
			}
4273
		}
4274
		$IDs = array();
4275
		foreach( $model_objects as $model_object ) {
4276
			$id = $model_object->ID();
4277
			if( ! $id ) {
4278
				if( $filter_out_empty_ids ) {
4279
					continue;
4280
				}
4281
				if( WP_DEBUG ) {
4282
					EE_Error::add_error(__( 'Called %1$s on a model object that has no ID and so probably hasn\'t been saved to the database', 'event_espresso' ), __FILE__, __FUNCTION__, __LINE__ );
4283
				}
4284
			}
4285
			$IDs[] = $id;
4286
		}
4287
		return $IDs;
4288
	}
4289
4290
	/**
4291
	 * Returns the string used in capabilities relating to this model. If there
4292
	 * are no capabilities that relate to this model returns false
4293
	 * @return string|false
4294
	 */
4295
	public function cap_slug(){
4296
		return apply_filters( 'FHEE__EEM_Base__cap_slug', $this->_caps_slug, $this);
4297
	}
4298
4299
	/**
4300
	 * Returns the capability-restrictions array (@see EEM_Base::_cap_restrictions).
4301
	 *
4302
	 * If $context is provided (which should be set to one of EEM_Base::valid_cap_contexts())
4303
	 * only returns the cap restrictions array in that context (ie, the array
4304
	 * at that key)
4305
	 * @param string $context
4306
	 * @return EE_Default_Where_Conditions[] indexed by associated capability
4307
	 */
4308
	public function cap_restrictions( $context = EEM_Base::caps_read ) {
4309
		EEM_Base::verify_is_valid_cap_context( $context );
4310
		//check if we ought to run the restriction generator first
4311
		if( isset( $this->_cap_restriction_generators[ $context ] ) &&
4312
				$this->_cap_restriction_generators[ $context ] instanceof EE_Restriction_Generator_Base &&
4313
				! $this->_cap_restriction_generators[ $context ]->has_generated_cap_restrictions() ) {
4314
			$this->_cap_restrictions[ $context ] = array_merge( $this->_cap_restrictions[ $context ],  $this->_cap_restriction_generators[ $context ]->generate_restrictions() );
4315
		}
4316
		//and make sure we've finalized the construction of each restriction
4317
		foreach( $this->_cap_restrictions[ $context ] as $where_conditions_obj ) {
4318
			$where_conditions_obj->_finalize_construct( $this );
4319
		}
4320
4321
		return $this->_cap_restrictions[ $context ];
4322
	}
4323
4324
	/**
4325
	 * Indicating whether or not this model thinks its a wp core model
4326
	 * @return boolean
4327
	 */
4328
	public function is_wp_core_model(){
4329
		return $this->_wp_core_model;
4330
	}
4331
4332
	/**
4333
	 * Gets all the caps that are missing which impose a restriction on
4334
	 * queries made in this context
4335
	 * @param string $context one of EEM_Base::caps_ constants
4336
	 * @return EE_Default_Where_Conditions[] indexed by capability name
4337
	 */
4338
	public function caps_missing( $context = EEM_Base::caps_read ) {
4339
		$missing_caps = array();
4340
		$cap_restrictions = $this->cap_restrictions( $context );
4341
		foreach( $cap_restrictions as $cap => $restriction_if_no_cap ) {
4342
			if( ! EE_Capabilities::instance()->current_user_can( $cap, $this->get_this_model_name() . '_model_applying_caps') ) {
4343
				$missing_caps[ $cap ] = $restriction_if_no_cap;
4344
			}
4345
		}
4346
		return $missing_caps;
4347
	}
4348
4349
	/**
4350
	 * Gets the mapping from capability contexts to action strings used in capability names
4351
	 * @return array keys are one of EEM_Base::valid_cap_contexts(), and values are usually
4352
	 * one of 'read', 'edit', or 'delete'
4353
	 */
4354
	public function cap_contexts_to_cap_action_map() {
4355
		return apply_filters( 'FHEE__EEM_Base__cap_contexts_to_cap_action_map', $this->_cap_contexts_to_cap_action_map, $this );
4356
	}
4357
4358
4359
4360
	/**
4361
	 * Gets the action string for the specified capability context
4362
	 * @param string $context
4363
	 * @return string one of EEM_Base::cap_contexts_to_cap_action_map() values
4364
	 * @throws \EE_Error
4365
	 */
4366
	public function cap_action_for_context( $context ) {
4367
		$mapping = $this->cap_contexts_to_cap_action_map();
4368
		if( isset( $mapping[ $context ] ) ) {
4369
			return $mapping[ $context ];
4370
		}
4371
		if( $action = apply_filters( 'FHEE__EEM_Base__cap_action_for_context', null, $this, $mapping, $context ) ) {
4372
			return $action;
4373
		}
4374
		throw new EE_Error(
4375
			sprintf(
4376
				__( 'Cannot find capability restrictions for context "%1$s", allowed values are:%2$s', 'event_espresso' ),
4377
				$context,
4378
				implode(',', array_keys( $this->cap_contexts_to_cap_action_map() ) )
4379
			)
4380
		);
4381
4382
	}
4383
4384
	/**
4385
	 * Returns all the capability contexts which are valid when querying models
4386
	 * @return array
4387
	 */
4388
	static public function valid_cap_contexts() {
4389
		return apply_filters( 'FHEE__EEM_Base__valid_cap_contexts', array(
4390
			self::caps_read,
4391
			self::caps_read_admin,
4392
			self::caps_edit,
4393
			self::caps_delete
4394
		));
4395
	}
4396
4397
4398
4399
	/**
4400
	 * Verifies $context is one of EEM_Base::valid_cap_contexts(), if not it throws an exception
4401
	 * @param string $context
4402
	 * @return bool
4403
	 * @throws \EE_Error
4404
	 */
4405
	static public function verify_is_valid_cap_context( $context ) {
4406
		$valid_cap_contexts = EEM_Base::valid_cap_contexts();
4407 View Code Duplication
		if( in_array( $context, $valid_cap_contexts ) ) {
0 ignored issues
show
Duplication introduced by
This code seems to be duplicated across your project.

Duplicated code is one of the most pungent code smells. If you need to duplicate the same code in three or more different places, we strongly encourage you to look into extracting the code into a single class or operation.

You can also find more detailed suggestions in the “Code” section of your repository.

Loading history...
4408
			return true;
4409
		}else{
4410
			throw new EE_Error(
4411
				sprintf(
4412
					__( 'Context "%1$s" passed into model "%2$s" is not a valid context. They are: %3$s', 'event_espresso' ),
4413
					$context,
4414
					'EEM_Base' ,
4415
					implode(',', $valid_cap_contexts )
4416
				)
4417
			);
4418
		}
4419
	}
4420
4421
4422
4423
4424
}
4425