@@ -456,7 +456,7 @@ |
||
| 456 | 456 | * @param EEM_Base $model |
| 457 | 457 | * @param EE_Model_Relation_Base $relation |
| 458 | 458 | * @param WP_REST_Request $request |
| 459 | - * @return array { |
|
| 459 | + * @return EE_Base_Class[] { |
|
| 460 | 460 | * @type EE_Base_Class $model_obj |
| 461 | 461 | * @type EE_Base_Class|null $other_model_obj |
| 462 | 462 | * } |
@@ -11,7 +11,6 @@ |
||
| 11 | 11 | use EventEspresso\core\services\loaders\LoaderFactory; |
| 12 | 12 | use Exception; |
| 13 | 13 | use InvalidArgumentException; |
| 14 | -use ReflectionException; |
|
| 15 | 14 | use \WP_REST_Request; |
| 16 | 15 | use \WP_REST_Response; |
| 17 | 16 | use EventEspresso\core\libraries\rest_api\Capabilities; |
@@ -134,9 +134,9 @@ discard block |
||
| 134 | 134 | { |
| 135 | 135 | Capabilities::verifyAtLeastPartialAccessTo($model, EEM_Base::caps_edit, 'create'); |
| 136 | 136 | $default_cap_to_check_for = EE_Restriction_Generator_Base::get_default_restrictions_cap(); |
| 137 | - if (! current_user_can($default_cap_to_check_for)) { |
|
| 137 | + if ( ! current_user_can($default_cap_to_check_for)) { |
|
| 138 | 138 | throw new RestException( |
| 139 | - 'rest_cannot_create_' . EEH_Inflector::pluralize_and_lower(($model->get_this_model_name())), |
|
| 139 | + 'rest_cannot_create_'.EEH_Inflector::pluralize_and_lower(($model->get_this_model_name())), |
|
| 140 | 140 | sprintf( |
| 141 | 141 | esc_html__( |
| 142 | 142 | // @codingStandardsIgnoreStart |
@@ -164,7 +164,7 @@ discard block |
||
| 164 | 164 | ); |
| 165 | 165 | $model_obj->save(); |
| 166 | 166 | $new_id = $model_obj->ID(); |
| 167 | - if (! $new_id) { |
|
| 167 | + if ( ! $new_id) { |
|
| 168 | 168 | throw new RestException( |
| 169 | 169 | 'rest_insertion_failed', |
| 170 | 170 | sprintf(__('Could not insert new %1$s', 'event_espresso'), $model->get_this_model_name()) |
@@ -186,9 +186,9 @@ discard block |
||
| 186 | 186 | { |
| 187 | 187 | Capabilities::verifyAtLeastPartialAccessTo($model, EEM_Base::caps_edit, 'edit'); |
| 188 | 188 | $default_cap_to_check_for = EE_Restriction_Generator_Base::get_default_restrictions_cap(); |
| 189 | - if (! current_user_can($default_cap_to_check_for)) { |
|
| 189 | + if ( ! current_user_can($default_cap_to_check_for)) { |
|
| 190 | 190 | throw new RestException( |
| 191 | - 'rest_cannot_edit_' . EEH_Inflector::pluralize_and_lower(($model->get_this_model_name())), |
|
| 191 | + 'rest_cannot_edit_'.EEH_Inflector::pluralize_and_lower(($model->get_this_model_name())), |
|
| 192 | 192 | sprintf( |
| 193 | 193 | esc_html__( |
| 194 | 194 | // @codingStandardsIgnoreStart |
@@ -202,7 +202,7 @@ discard block |
||
| 202 | 202 | ); |
| 203 | 203 | } |
| 204 | 204 | $obj_id = $request->get_param('id'); |
| 205 | - if (! $obj_id) { |
|
| 205 | + if ( ! $obj_id) { |
|
| 206 | 206 | throw new RestException( |
| 207 | 207 | 'rest_edit_failed', |
| 208 | 208 | sprintf(__('Could not edit %1$s', 'event_espresso'), $model->get_this_model_name()) |
@@ -215,7 +215,7 @@ discard block |
||
| 215 | 215 | true |
| 216 | 216 | ); |
| 217 | 217 | $model_obj = $model->get_one_by_ID($obj_id); |
| 218 | - if (! $model_obj instanceof EE_Base_Class) { |
|
| 218 | + if ( ! $model_obj instanceof EE_Base_Class) { |
|
| 219 | 219 | $lowercase_model_name = strtolower($model->get_this_model_name()); |
| 220 | 220 | throw new RestException( |
| 221 | 221 | sprintf('rest_%s_invalid_id', $lowercase_model_name), |
@@ -240,9 +240,9 @@ discard block |
||
| 240 | 240 | { |
| 241 | 241 | Capabilities::verifyAtLeastPartialAccessTo($model, EEM_Base::caps_delete, 'delete'); |
| 242 | 242 | $default_cap_to_check_for = EE_Restriction_Generator_Base::get_default_restrictions_cap(); |
| 243 | - if (! current_user_can($default_cap_to_check_for)) { |
|
| 243 | + if ( ! current_user_can($default_cap_to_check_for)) { |
|
| 244 | 244 | throw new RestException( |
| 245 | - 'rest_cannot_delete_' . EEH_Inflector::pluralize_and_lower(($model->get_this_model_name())), |
|
| 245 | + 'rest_cannot_delete_'.EEH_Inflector::pluralize_and_lower(($model->get_this_model_name())), |
|
| 246 | 246 | sprintf( |
| 247 | 247 | esc_html__( |
| 248 | 248 | // @codingStandardsIgnoreStart |
@@ -258,7 +258,7 @@ discard block |
||
| 258 | 258 | $obj_id = $request->get_param('id'); |
| 259 | 259 | // this is where we would apply more fine-grained caps |
| 260 | 260 | $model_obj = $model->get_one_by_ID($obj_id); |
| 261 | - if (! $model_obj instanceof EE_Base_Class) { |
|
| 261 | + if ( ! $model_obj instanceof EE_Base_Class) { |
|
| 262 | 262 | $lowercase_model_name = strtolower($model->get_this_model_name()); |
| 263 | 263 | throw new RestException( |
| 264 | 264 | sprintf('rest_%s_invalid_id', $lowercase_model_name), |
@@ -316,7 +316,7 @@ discard block |
||
| 316 | 316 | } else { |
| 317 | 317 | $raw_value = $model_obj->get_raw($field_name); |
| 318 | 318 | } |
| 319 | - $simulated_db_row[ $field_obj->get_qualified_column() ] = $field_obj->prepare_for_use_in_db($raw_value); |
|
| 319 | + $simulated_db_row[$field_obj->get_qualified_column()] = $field_obj->prepare_for_use_in_db($raw_value); |
|
| 320 | 320 | } |
| 321 | 321 | $read_controller = LoaderFactory::getLoader()->getNew('EventEspresso\core\libraries\rest_api\controllers\model\Read'); |
| 322 | 322 | $read_controller->setRequestedVersion($this->getRequestedVersion()); |
@@ -434,7 +434,7 @@ discard block |
||
| 434 | 434 | ) |
| 435 | 435 | ) |
| 436 | 436 | ); |
| 437 | - $response['join'][ strtolower($relation->get_join_model()->get_this_model_name()) ] = $this->returnModelObjAsJsonResponse($join_model_obj, $request); |
|
| 437 | + $response['join'][strtolower($relation->get_join_model()->get_this_model_name())] = $this->returnModelObjAsJsonResponse($join_model_obj, $request); |
|
| 438 | 438 | } |
| 439 | 439 | return $response; |
| 440 | 440 | } |
@@ -482,7 +482,7 @@ discard block |
||
| 482 | 482 | { |
| 483 | 483 | // This endpoint doesn't accept body parameters (it's understandable to think it might, so let developers know |
| 484 | 484 | // up-front that it doesn't.) |
| 485 | - if (!empty($request->get_body_params())) { |
|
| 485 | + if ( ! empty($request->get_body_params())) { |
|
| 486 | 486 | $body_params = $request->get_body_params(); |
| 487 | 487 | throw new RestException( |
| 488 | 488 | 'invalid_field', |
@@ -524,9 +524,9 @@ discard block |
||
| 524 | 524 | ) |
| 525 | 525 | ); |
| 526 | 526 | if ($join_model_obj instanceof EE_Base_Class) { |
| 527 | - $response['join'][ strtolower($relation->get_join_model()->get_this_model_name()) ] = $this->returnModelObjAsJsonResponse($join_model_obj, $request); |
|
| 527 | + $response['join'][strtolower($relation->get_join_model()->get_this_model_name())] = $this->returnModelObjAsJsonResponse($join_model_obj, $request); |
|
| 528 | 528 | } else { |
| 529 | - $response['join'][ strtolower($relation->get_join_model()->get_this_model_name()) ] = null; |
|
| 529 | + $response['join'][strtolower($relation->get_join_model()->get_this_model_name())] = null; |
|
| 530 | 530 | } |
| 531 | 531 | } |
| 532 | 532 | return $response; |
@@ -551,9 +551,9 @@ discard block |
||
| 551 | 551 | // Check generic caps. For now, we're only allowing access to this endpoint to full admins. |
| 552 | 552 | Capabilities::verifyAtLeastPartialAccessTo($model, EEM_Base::caps_edit, 'edit'); |
| 553 | 553 | $default_cap_to_check_for = EE_Restriction_Generator_Base::get_default_restrictions_cap(); |
| 554 | - if (! current_user_can($default_cap_to_check_for)) { |
|
| 554 | + if ( ! current_user_can($default_cap_to_check_for)) { |
|
| 555 | 555 | throw new RestException( |
| 556 | - 'rest_cannot_edit_' . EEH_Inflector::pluralize_and_lower(($model->get_this_model_name())), |
|
| 556 | + 'rest_cannot_edit_'.EEH_Inflector::pluralize_and_lower(($model->get_this_model_name())), |
|
| 557 | 557 | sprintf( |
| 558 | 558 | esc_html__( |
| 559 | 559 | // @codingStandardsIgnoreStart |
@@ -570,7 +570,7 @@ discard block |
||
| 570 | 570 | $model_obj = $this->getOneOrThrowException($model, $request->get_param('id')); |
| 571 | 571 | // For now, we require the other model object to exist too. This might be relaxed later. |
| 572 | 572 | $other_obj = $this->getOneOrThrowException($relation->get_other_model(), $request->get_param('related_id')); |
| 573 | - return array($model_obj,$other_obj); |
|
| 573 | + return array($model_obj, $other_obj); |
|
| 574 | 574 | } |
| 575 | 575 | |
| 576 | 576 | /** |
@@ -39,573 +39,573 @@ |
||
| 39 | 39 | { |
| 40 | 40 | |
| 41 | 41 | |
| 42 | - public function __construct() |
|
| 43 | - { |
|
| 44 | - parent::__construct(); |
|
| 45 | - EE_Registry::instance()->load_helper('Inflector'); |
|
| 46 | - } |
|
| 42 | + public function __construct() |
|
| 43 | + { |
|
| 44 | + parent::__construct(); |
|
| 45 | + EE_Registry::instance()->load_helper('Inflector'); |
|
| 46 | + } |
|
| 47 | 47 | |
| 48 | 48 | |
| 49 | - /** |
|
| 50 | - * Handles requests to get all (or a filtered subset) of entities for a particular model |
|
| 51 | - * |
|
| 52 | - * @param WP_REST_Request $request |
|
| 53 | - * @param string $version |
|
| 54 | - * @param string $model_name |
|
| 55 | - * @return WP_REST_Response|\WP_Error |
|
| 56 | - */ |
|
| 57 | - public static function handleRequestInsert(WP_REST_Request $request, $version, $model_name) |
|
| 58 | - { |
|
| 59 | - $controller = new Write(); |
|
| 60 | - try { |
|
| 61 | - $controller->setRequestedVersion($version); |
|
| 62 | - return $controller->sendResponse( |
|
| 63 | - $controller->insert( |
|
| 64 | - $controller->getModelVersionInfo()->loadModel($model_name), |
|
| 65 | - $request |
|
| 66 | - ) |
|
| 67 | - ); |
|
| 68 | - } catch (Exception $e) { |
|
| 69 | - return $controller->sendResponse($e); |
|
| 70 | - } |
|
| 71 | - } |
|
| 49 | + /** |
|
| 50 | + * Handles requests to get all (or a filtered subset) of entities for a particular model |
|
| 51 | + * |
|
| 52 | + * @param WP_REST_Request $request |
|
| 53 | + * @param string $version |
|
| 54 | + * @param string $model_name |
|
| 55 | + * @return WP_REST_Response|\WP_Error |
|
| 56 | + */ |
|
| 57 | + public static function handleRequestInsert(WP_REST_Request $request, $version, $model_name) |
|
| 58 | + { |
|
| 59 | + $controller = new Write(); |
|
| 60 | + try { |
|
| 61 | + $controller->setRequestedVersion($version); |
|
| 62 | + return $controller->sendResponse( |
|
| 63 | + $controller->insert( |
|
| 64 | + $controller->getModelVersionInfo()->loadModel($model_name), |
|
| 65 | + $request |
|
| 66 | + ) |
|
| 67 | + ); |
|
| 68 | + } catch (Exception $e) { |
|
| 69 | + return $controller->sendResponse($e); |
|
| 70 | + } |
|
| 71 | + } |
|
| 72 | 72 | |
| 73 | 73 | |
| 74 | - /** |
|
| 75 | - * Handles a request from \WP_REST_Server to update an EE model |
|
| 76 | - * |
|
| 77 | - * @param WP_REST_Request $request |
|
| 78 | - * @param string $version |
|
| 79 | - * @param string $model_name |
|
| 80 | - * @return WP_REST_Response|\WP_Error |
|
| 81 | - */ |
|
| 82 | - public static function handleRequestUpdate(WP_REST_Request $request, $version, $model_name) |
|
| 83 | - { |
|
| 84 | - $controller = new Write(); |
|
| 85 | - try { |
|
| 86 | - $controller->setRequestedVersion($version); |
|
| 87 | - return $controller->sendResponse( |
|
| 88 | - $controller->update( |
|
| 89 | - $controller->getModelVersionInfo()->loadModel($model_name), |
|
| 90 | - $request |
|
| 91 | - ) |
|
| 92 | - ); |
|
| 93 | - } catch (Exception $e) { |
|
| 94 | - return $controller->sendResponse($e); |
|
| 95 | - } |
|
| 96 | - } |
|
| 74 | + /** |
|
| 75 | + * Handles a request from \WP_REST_Server to update an EE model |
|
| 76 | + * |
|
| 77 | + * @param WP_REST_Request $request |
|
| 78 | + * @param string $version |
|
| 79 | + * @param string $model_name |
|
| 80 | + * @return WP_REST_Response|\WP_Error |
|
| 81 | + */ |
|
| 82 | + public static function handleRequestUpdate(WP_REST_Request $request, $version, $model_name) |
|
| 83 | + { |
|
| 84 | + $controller = new Write(); |
|
| 85 | + try { |
|
| 86 | + $controller->setRequestedVersion($version); |
|
| 87 | + return $controller->sendResponse( |
|
| 88 | + $controller->update( |
|
| 89 | + $controller->getModelVersionInfo()->loadModel($model_name), |
|
| 90 | + $request |
|
| 91 | + ) |
|
| 92 | + ); |
|
| 93 | + } catch (Exception $e) { |
|
| 94 | + return $controller->sendResponse($e); |
|
| 95 | + } |
|
| 96 | + } |
|
| 97 | 97 | |
| 98 | 98 | |
| 99 | - /** |
|
| 100 | - * Deletes a single model object and returns it. Unless |
|
| 101 | - * |
|
| 102 | - * @param WP_REST_Request $request |
|
| 103 | - * @param string $version |
|
| 104 | - * @param string $model_name |
|
| 105 | - * @return WP_REST_Response|\WP_Error |
|
| 106 | - */ |
|
| 107 | - public static function handleRequestDelete(WP_REST_Request $request, $version, $model_name) |
|
| 108 | - { |
|
| 109 | - $controller = new Write(); |
|
| 110 | - try { |
|
| 111 | - $controller->setRequestedVersion($version); |
|
| 112 | - return $controller->sendResponse( |
|
| 113 | - $controller->delete( |
|
| 114 | - $controller->getModelVersionInfo()->loadModel($model_name), |
|
| 115 | - $request |
|
| 116 | - ) |
|
| 117 | - ); |
|
| 118 | - } catch (Exception $e) { |
|
| 119 | - return $controller->sendResponse($e); |
|
| 120 | - } |
|
| 121 | - } |
|
| 99 | + /** |
|
| 100 | + * Deletes a single model object and returns it. Unless |
|
| 101 | + * |
|
| 102 | + * @param WP_REST_Request $request |
|
| 103 | + * @param string $version |
|
| 104 | + * @param string $model_name |
|
| 105 | + * @return WP_REST_Response|\WP_Error |
|
| 106 | + */ |
|
| 107 | + public static function handleRequestDelete(WP_REST_Request $request, $version, $model_name) |
|
| 108 | + { |
|
| 109 | + $controller = new Write(); |
|
| 110 | + try { |
|
| 111 | + $controller->setRequestedVersion($version); |
|
| 112 | + return $controller->sendResponse( |
|
| 113 | + $controller->delete( |
|
| 114 | + $controller->getModelVersionInfo()->loadModel($model_name), |
|
| 115 | + $request |
|
| 116 | + ) |
|
| 117 | + ); |
|
| 118 | + } catch (Exception $e) { |
|
| 119 | + return $controller->sendResponse($e); |
|
| 120 | + } |
|
| 121 | + } |
|
| 122 | 122 | |
| 123 | 123 | |
| 124 | - /** |
|
| 125 | - * Inserts a new model object according to the $request |
|
| 126 | - * |
|
| 127 | - * @param EEM_Base $model |
|
| 128 | - * @param WP_REST_Request $request |
|
| 129 | - * @return array |
|
| 130 | - * @throws EE_Error |
|
| 131 | - * @throws RestException |
|
| 132 | - */ |
|
| 133 | - public function insert(EEM_Base $model, WP_REST_Request $request) |
|
| 134 | - { |
|
| 135 | - Capabilities::verifyAtLeastPartialAccessTo($model, EEM_Base::caps_edit, 'create'); |
|
| 136 | - $default_cap_to_check_for = EE_Restriction_Generator_Base::get_default_restrictions_cap(); |
|
| 137 | - if (! current_user_can($default_cap_to_check_for)) { |
|
| 138 | - throw new RestException( |
|
| 139 | - 'rest_cannot_create_' . EEH_Inflector::pluralize_and_lower(($model->get_this_model_name())), |
|
| 140 | - sprintf( |
|
| 141 | - esc_html__( |
|
| 142 | - // @codingStandardsIgnoreStart |
|
| 143 | - 'For now, only those with the admin capability to "%1$s" are allowed to use the REST API to insert data into Event Espresso.', |
|
| 144 | - // @codingStandardsIgnoreEnd |
|
| 145 | - 'event_espresso' |
|
| 146 | - ), |
|
| 147 | - $default_cap_to_check_for |
|
| 148 | - ), |
|
| 149 | - array('status' => 403) |
|
| 150 | - ); |
|
| 151 | - } |
|
| 152 | - $submitted_json_data = array_merge((array) $request->get_body_params(), (array) $request->get_json_params()); |
|
| 153 | - $model_data = ModelDataTranslator::prepareConditionsQueryParamsForModels( |
|
| 154 | - $submitted_json_data, |
|
| 155 | - $model, |
|
| 156 | - $this->getModelVersionInfo()->requestedVersion(), |
|
| 157 | - true |
|
| 158 | - ); |
|
| 159 | - $model_obj = EE_Registry::instance()->load_class( |
|
| 160 | - $model->get_this_model_name(), |
|
| 161 | - array($model_data, $model->get_timezone()), |
|
| 162 | - false, |
|
| 163 | - false |
|
| 164 | - ); |
|
| 165 | - $model_obj->save(); |
|
| 166 | - $new_id = $model_obj->ID(); |
|
| 167 | - if (! $new_id) { |
|
| 168 | - throw new RestException( |
|
| 169 | - 'rest_insertion_failed', |
|
| 170 | - sprintf(__('Could not insert new %1$s', 'event_espresso'), $model->get_this_model_name()) |
|
| 171 | - ); |
|
| 172 | - } |
|
| 173 | - return $this->returnModelObjAsJsonResponse($model_obj, $request); |
|
| 174 | - } |
|
| 124 | + /** |
|
| 125 | + * Inserts a new model object according to the $request |
|
| 126 | + * |
|
| 127 | + * @param EEM_Base $model |
|
| 128 | + * @param WP_REST_Request $request |
|
| 129 | + * @return array |
|
| 130 | + * @throws EE_Error |
|
| 131 | + * @throws RestException |
|
| 132 | + */ |
|
| 133 | + public function insert(EEM_Base $model, WP_REST_Request $request) |
|
| 134 | + { |
|
| 135 | + Capabilities::verifyAtLeastPartialAccessTo($model, EEM_Base::caps_edit, 'create'); |
|
| 136 | + $default_cap_to_check_for = EE_Restriction_Generator_Base::get_default_restrictions_cap(); |
|
| 137 | + if (! current_user_can($default_cap_to_check_for)) { |
|
| 138 | + throw new RestException( |
|
| 139 | + 'rest_cannot_create_' . EEH_Inflector::pluralize_and_lower(($model->get_this_model_name())), |
|
| 140 | + sprintf( |
|
| 141 | + esc_html__( |
|
| 142 | + // @codingStandardsIgnoreStart |
|
| 143 | + 'For now, only those with the admin capability to "%1$s" are allowed to use the REST API to insert data into Event Espresso.', |
|
| 144 | + // @codingStandardsIgnoreEnd |
|
| 145 | + 'event_espresso' |
|
| 146 | + ), |
|
| 147 | + $default_cap_to_check_for |
|
| 148 | + ), |
|
| 149 | + array('status' => 403) |
|
| 150 | + ); |
|
| 151 | + } |
|
| 152 | + $submitted_json_data = array_merge((array) $request->get_body_params(), (array) $request->get_json_params()); |
|
| 153 | + $model_data = ModelDataTranslator::prepareConditionsQueryParamsForModels( |
|
| 154 | + $submitted_json_data, |
|
| 155 | + $model, |
|
| 156 | + $this->getModelVersionInfo()->requestedVersion(), |
|
| 157 | + true |
|
| 158 | + ); |
|
| 159 | + $model_obj = EE_Registry::instance()->load_class( |
|
| 160 | + $model->get_this_model_name(), |
|
| 161 | + array($model_data, $model->get_timezone()), |
|
| 162 | + false, |
|
| 163 | + false |
|
| 164 | + ); |
|
| 165 | + $model_obj->save(); |
|
| 166 | + $new_id = $model_obj->ID(); |
|
| 167 | + if (! $new_id) { |
|
| 168 | + throw new RestException( |
|
| 169 | + 'rest_insertion_failed', |
|
| 170 | + sprintf(__('Could not insert new %1$s', 'event_espresso'), $model->get_this_model_name()) |
|
| 171 | + ); |
|
| 172 | + } |
|
| 173 | + return $this->returnModelObjAsJsonResponse($model_obj, $request); |
|
| 174 | + } |
|
| 175 | 175 | |
| 176 | 176 | |
| 177 | - /** |
|
| 178 | - * Updates an existing model object according to the $request |
|
| 179 | - * |
|
| 180 | - * @param EEM_Base $model |
|
| 181 | - * @param WP_REST_Request $request |
|
| 182 | - * @return array |
|
| 183 | - * @throws EE_Error |
|
| 184 | - */ |
|
| 185 | - public function update(EEM_Base $model, WP_REST_Request $request) |
|
| 186 | - { |
|
| 187 | - Capabilities::verifyAtLeastPartialAccessTo($model, EEM_Base::caps_edit, 'edit'); |
|
| 188 | - $default_cap_to_check_for = EE_Restriction_Generator_Base::get_default_restrictions_cap(); |
|
| 189 | - if (! current_user_can($default_cap_to_check_for)) { |
|
| 190 | - throw new RestException( |
|
| 191 | - 'rest_cannot_edit_' . EEH_Inflector::pluralize_and_lower(($model->get_this_model_name())), |
|
| 192 | - sprintf( |
|
| 193 | - esc_html__( |
|
| 194 | - // @codingStandardsIgnoreStart |
|
| 195 | - 'For now, only those with the admin capability to "%1$s" are allowed to use the REST API to update data into Event Espresso.', |
|
| 196 | - // @codingStandardsIgnoreEnd |
|
| 197 | - 'event_espresso' |
|
| 198 | - ), |
|
| 199 | - $default_cap_to_check_for |
|
| 200 | - ), |
|
| 201 | - array('status' => 403) |
|
| 202 | - ); |
|
| 203 | - } |
|
| 204 | - $obj_id = $request->get_param('id'); |
|
| 205 | - if (! $obj_id) { |
|
| 206 | - throw new RestException( |
|
| 207 | - 'rest_edit_failed', |
|
| 208 | - sprintf(__('Could not edit %1$s', 'event_espresso'), $model->get_this_model_name()) |
|
| 209 | - ); |
|
| 210 | - } |
|
| 211 | - $model_data = ModelDataTranslator::prepareConditionsQueryParamsForModels( |
|
| 212 | - $this->getBodyParams($request), |
|
| 213 | - $model, |
|
| 214 | - $this->getModelVersionInfo()->requestedVersion(), |
|
| 215 | - true |
|
| 216 | - ); |
|
| 217 | - $model_obj = $model->get_one_by_ID($obj_id); |
|
| 218 | - if (! $model_obj instanceof EE_Base_Class) { |
|
| 219 | - $lowercase_model_name = strtolower($model->get_this_model_name()); |
|
| 220 | - throw new RestException( |
|
| 221 | - sprintf('rest_%s_invalid_id', $lowercase_model_name), |
|
| 222 | - sprintf(__('Invalid %s ID.', 'event_espresso'), $lowercase_model_name), |
|
| 223 | - array('status' => 404) |
|
| 224 | - ); |
|
| 225 | - } |
|
| 226 | - $model_obj->save($model_data); |
|
| 227 | - return $this->returnModelObjAsJsonResponse($model_obj, $request); |
|
| 228 | - } |
|
| 177 | + /** |
|
| 178 | + * Updates an existing model object according to the $request |
|
| 179 | + * |
|
| 180 | + * @param EEM_Base $model |
|
| 181 | + * @param WP_REST_Request $request |
|
| 182 | + * @return array |
|
| 183 | + * @throws EE_Error |
|
| 184 | + */ |
|
| 185 | + public function update(EEM_Base $model, WP_REST_Request $request) |
|
| 186 | + { |
|
| 187 | + Capabilities::verifyAtLeastPartialAccessTo($model, EEM_Base::caps_edit, 'edit'); |
|
| 188 | + $default_cap_to_check_for = EE_Restriction_Generator_Base::get_default_restrictions_cap(); |
|
| 189 | + if (! current_user_can($default_cap_to_check_for)) { |
|
| 190 | + throw new RestException( |
|
| 191 | + 'rest_cannot_edit_' . EEH_Inflector::pluralize_and_lower(($model->get_this_model_name())), |
|
| 192 | + sprintf( |
|
| 193 | + esc_html__( |
|
| 194 | + // @codingStandardsIgnoreStart |
|
| 195 | + 'For now, only those with the admin capability to "%1$s" are allowed to use the REST API to update data into Event Espresso.', |
|
| 196 | + // @codingStandardsIgnoreEnd |
|
| 197 | + 'event_espresso' |
|
| 198 | + ), |
|
| 199 | + $default_cap_to_check_for |
|
| 200 | + ), |
|
| 201 | + array('status' => 403) |
|
| 202 | + ); |
|
| 203 | + } |
|
| 204 | + $obj_id = $request->get_param('id'); |
|
| 205 | + if (! $obj_id) { |
|
| 206 | + throw new RestException( |
|
| 207 | + 'rest_edit_failed', |
|
| 208 | + sprintf(__('Could not edit %1$s', 'event_espresso'), $model->get_this_model_name()) |
|
| 209 | + ); |
|
| 210 | + } |
|
| 211 | + $model_data = ModelDataTranslator::prepareConditionsQueryParamsForModels( |
|
| 212 | + $this->getBodyParams($request), |
|
| 213 | + $model, |
|
| 214 | + $this->getModelVersionInfo()->requestedVersion(), |
|
| 215 | + true |
|
| 216 | + ); |
|
| 217 | + $model_obj = $model->get_one_by_ID($obj_id); |
|
| 218 | + if (! $model_obj instanceof EE_Base_Class) { |
|
| 219 | + $lowercase_model_name = strtolower($model->get_this_model_name()); |
|
| 220 | + throw new RestException( |
|
| 221 | + sprintf('rest_%s_invalid_id', $lowercase_model_name), |
|
| 222 | + sprintf(__('Invalid %s ID.', 'event_espresso'), $lowercase_model_name), |
|
| 223 | + array('status' => 404) |
|
| 224 | + ); |
|
| 225 | + } |
|
| 226 | + $model_obj->save($model_data); |
|
| 227 | + return $this->returnModelObjAsJsonResponse($model_obj, $request); |
|
| 228 | + } |
|
| 229 | 229 | |
| 230 | 230 | |
| 231 | - /** |
|
| 232 | - * Updates an existing model object according to the $request |
|
| 233 | - * |
|
| 234 | - * @param EEM_Base $model |
|
| 235 | - * @param WP_REST_Request $request |
|
| 236 | - * @return array of either the soft-deleted item, or |
|
| 237 | - * @throws EE_Error |
|
| 238 | - */ |
|
| 239 | - public function delete(EEM_Base $model, WP_REST_Request $request) |
|
| 240 | - { |
|
| 241 | - Capabilities::verifyAtLeastPartialAccessTo($model, EEM_Base::caps_delete, 'delete'); |
|
| 242 | - $default_cap_to_check_for = EE_Restriction_Generator_Base::get_default_restrictions_cap(); |
|
| 243 | - if (! current_user_can($default_cap_to_check_for)) { |
|
| 244 | - throw new RestException( |
|
| 245 | - 'rest_cannot_delete_' . EEH_Inflector::pluralize_and_lower(($model->get_this_model_name())), |
|
| 246 | - sprintf( |
|
| 247 | - esc_html__( |
|
| 248 | - // @codingStandardsIgnoreStart |
|
| 249 | - 'For now, only those with the admin capability to "%1$s" are allowed to use the REST API to delete data into Event Espresso.', |
|
| 250 | - // @codingStandardsIgnoreEnd |
|
| 251 | - 'event_espresso' |
|
| 252 | - ), |
|
| 253 | - $default_cap_to_check_for |
|
| 254 | - ), |
|
| 255 | - array('status' => 403) |
|
| 256 | - ); |
|
| 257 | - } |
|
| 258 | - $obj_id = $request->get_param('id'); |
|
| 259 | - // this is where we would apply more fine-grained caps |
|
| 260 | - $model_obj = $model->get_one_by_ID($obj_id); |
|
| 261 | - if (! $model_obj instanceof EE_Base_Class) { |
|
| 262 | - $lowercase_model_name = strtolower($model->get_this_model_name()); |
|
| 263 | - throw new RestException( |
|
| 264 | - sprintf('rest_%s_invalid_id', $lowercase_model_name), |
|
| 265 | - sprintf(__('Invalid %s ID.', 'event_espresso'), $lowercase_model_name), |
|
| 266 | - array('status' => 404) |
|
| 267 | - ); |
|
| 268 | - } |
|
| 269 | - $requested_permanent_delete = filter_var($request->get_param('force'), FILTER_VALIDATE_BOOLEAN); |
|
| 270 | - $requested_allow_blocking = filter_var($request->get_param('allow_blocking'), FILTER_VALIDATE_BOOLEAN); |
|
| 271 | - if ($requested_permanent_delete) { |
|
| 272 | - $previous = $this->returnModelObjAsJsonResponse($model_obj, $request); |
|
| 273 | - $deleted = (bool) $model->delete_permanently_by_ID($obj_id, $requested_allow_blocking); |
|
| 274 | - return array( |
|
| 275 | - 'deleted' => $deleted, |
|
| 276 | - 'previous' => $previous, |
|
| 277 | - ); |
|
| 278 | - } else { |
|
| 279 | - if ($model instanceof EEM_Soft_Delete_Base) { |
|
| 280 | - $model->delete_by_ID($obj_id, $requested_allow_blocking); |
|
| 281 | - return $this->returnModelObjAsJsonResponse($model_obj, $request); |
|
| 282 | - } else { |
|
| 283 | - throw new RestException( |
|
| 284 | - 'rest_trash_not_supported', |
|
| 285 | - 501, |
|
| 286 | - sprintf( |
|
| 287 | - esc_html__('%1$s do not support trashing. Set force=1 to delete.', 'event_espresso'), |
|
| 288 | - EEH_Inflector::pluralize($model->get_this_model_name()) |
|
| 289 | - ) |
|
| 290 | - ); |
|
| 291 | - } |
|
| 292 | - } |
|
| 293 | - } |
|
| 231 | + /** |
|
| 232 | + * Updates an existing model object according to the $request |
|
| 233 | + * |
|
| 234 | + * @param EEM_Base $model |
|
| 235 | + * @param WP_REST_Request $request |
|
| 236 | + * @return array of either the soft-deleted item, or |
|
| 237 | + * @throws EE_Error |
|
| 238 | + */ |
|
| 239 | + public function delete(EEM_Base $model, WP_REST_Request $request) |
|
| 240 | + { |
|
| 241 | + Capabilities::verifyAtLeastPartialAccessTo($model, EEM_Base::caps_delete, 'delete'); |
|
| 242 | + $default_cap_to_check_for = EE_Restriction_Generator_Base::get_default_restrictions_cap(); |
|
| 243 | + if (! current_user_can($default_cap_to_check_for)) { |
|
| 244 | + throw new RestException( |
|
| 245 | + 'rest_cannot_delete_' . EEH_Inflector::pluralize_and_lower(($model->get_this_model_name())), |
|
| 246 | + sprintf( |
|
| 247 | + esc_html__( |
|
| 248 | + // @codingStandardsIgnoreStart |
|
| 249 | + 'For now, only those with the admin capability to "%1$s" are allowed to use the REST API to delete data into Event Espresso.', |
|
| 250 | + // @codingStandardsIgnoreEnd |
|
| 251 | + 'event_espresso' |
|
| 252 | + ), |
|
| 253 | + $default_cap_to_check_for |
|
| 254 | + ), |
|
| 255 | + array('status' => 403) |
|
| 256 | + ); |
|
| 257 | + } |
|
| 258 | + $obj_id = $request->get_param('id'); |
|
| 259 | + // this is where we would apply more fine-grained caps |
|
| 260 | + $model_obj = $model->get_one_by_ID($obj_id); |
|
| 261 | + if (! $model_obj instanceof EE_Base_Class) { |
|
| 262 | + $lowercase_model_name = strtolower($model->get_this_model_name()); |
|
| 263 | + throw new RestException( |
|
| 264 | + sprintf('rest_%s_invalid_id', $lowercase_model_name), |
|
| 265 | + sprintf(__('Invalid %s ID.', 'event_espresso'), $lowercase_model_name), |
|
| 266 | + array('status' => 404) |
|
| 267 | + ); |
|
| 268 | + } |
|
| 269 | + $requested_permanent_delete = filter_var($request->get_param('force'), FILTER_VALIDATE_BOOLEAN); |
|
| 270 | + $requested_allow_blocking = filter_var($request->get_param('allow_blocking'), FILTER_VALIDATE_BOOLEAN); |
|
| 271 | + if ($requested_permanent_delete) { |
|
| 272 | + $previous = $this->returnModelObjAsJsonResponse($model_obj, $request); |
|
| 273 | + $deleted = (bool) $model->delete_permanently_by_ID($obj_id, $requested_allow_blocking); |
|
| 274 | + return array( |
|
| 275 | + 'deleted' => $deleted, |
|
| 276 | + 'previous' => $previous, |
|
| 277 | + ); |
|
| 278 | + } else { |
|
| 279 | + if ($model instanceof EEM_Soft_Delete_Base) { |
|
| 280 | + $model->delete_by_ID($obj_id, $requested_allow_blocking); |
|
| 281 | + return $this->returnModelObjAsJsonResponse($model_obj, $request); |
|
| 282 | + } else { |
|
| 283 | + throw new RestException( |
|
| 284 | + 'rest_trash_not_supported', |
|
| 285 | + 501, |
|
| 286 | + sprintf( |
|
| 287 | + esc_html__('%1$s do not support trashing. Set force=1 to delete.', 'event_espresso'), |
|
| 288 | + EEH_Inflector::pluralize($model->get_this_model_name()) |
|
| 289 | + ) |
|
| 290 | + ); |
|
| 291 | + } |
|
| 292 | + } |
|
| 293 | + } |
|
| 294 | 294 | |
| 295 | 295 | |
| 296 | - /** |
|
| 297 | - * Returns an array ready to be converted into a JSON response, based solely on the model object |
|
| 298 | - * |
|
| 299 | - * @param EE_Base_Class $model_obj |
|
| 300 | - * @param WP_REST_Request $request |
|
| 301 | - * @return array ready for a response |
|
| 302 | - */ |
|
| 303 | - protected function returnModelObjAsJsonResponse(EE_Base_Class $model_obj, WP_REST_Request $request) |
|
| 304 | - { |
|
| 305 | - $model = $model_obj->get_model(); |
|
| 306 | - // create an array exactly like the wpdb results row, |
|
| 307 | - // so we can pass it to controllers/model/Read::create_entity_from_wpdb_result() |
|
| 308 | - $simulated_db_row = array(); |
|
| 309 | - foreach ($model->field_settings(true) as $field_name => $field_obj) { |
|
| 310 | - // we need to reconstruct the normal wpdb results, including the db-only fields |
|
| 311 | - // like a secondary table's primary key. The models expect those (but don't care what value they have) |
|
| 312 | - if ($field_obj instanceof EE_DB_Only_Field_Base) { |
|
| 313 | - $raw_value = true; |
|
| 314 | - } elseif ($field_obj instanceof EE_Datetime_Field) { |
|
| 315 | - $raw_value = $model_obj->get_DateTime_object($field_name); |
|
| 316 | - } else { |
|
| 317 | - $raw_value = $model_obj->get_raw($field_name); |
|
| 318 | - } |
|
| 319 | - $simulated_db_row[ $field_obj->get_qualified_column() ] = $field_obj->prepare_for_use_in_db($raw_value); |
|
| 320 | - } |
|
| 321 | - $read_controller = LoaderFactory::getLoader()->getNew('EventEspresso\core\libraries\rest_api\controllers\model\Read'); |
|
| 322 | - $read_controller->setRequestedVersion($this->getRequestedVersion()); |
|
| 323 | - // the simulates request really doesn't need any info downstream |
|
| 324 | - $simulated_request = new WP_REST_Request('GET'); |
|
| 325 | - // set the caps context on the simulated according to the original request. |
|
| 326 | - switch ($request->get_method()) { |
|
| 327 | - case 'POST': |
|
| 328 | - case 'PUT': |
|
| 329 | - $caps_context = EEM_Base::caps_edit; |
|
| 330 | - break; |
|
| 331 | - case 'DELETE': |
|
| 332 | - $caps_context = EEM_Base::caps_delete; |
|
| 333 | - break; |
|
| 334 | - default: |
|
| 335 | - $caps_context = EEM_Base::caps_read_admin; |
|
| 336 | - } |
|
| 337 | - $simulated_request->set_param('caps', $caps_context); |
|
| 338 | - return $read_controller->createEntityFromWpdbResult( |
|
| 339 | - $model_obj->get_model(), |
|
| 340 | - $simulated_db_row, |
|
| 341 | - $simulated_request |
|
| 342 | - ); |
|
| 343 | - } |
|
| 296 | + /** |
|
| 297 | + * Returns an array ready to be converted into a JSON response, based solely on the model object |
|
| 298 | + * |
|
| 299 | + * @param EE_Base_Class $model_obj |
|
| 300 | + * @param WP_REST_Request $request |
|
| 301 | + * @return array ready for a response |
|
| 302 | + */ |
|
| 303 | + protected function returnModelObjAsJsonResponse(EE_Base_Class $model_obj, WP_REST_Request $request) |
|
| 304 | + { |
|
| 305 | + $model = $model_obj->get_model(); |
|
| 306 | + // create an array exactly like the wpdb results row, |
|
| 307 | + // so we can pass it to controllers/model/Read::create_entity_from_wpdb_result() |
|
| 308 | + $simulated_db_row = array(); |
|
| 309 | + foreach ($model->field_settings(true) as $field_name => $field_obj) { |
|
| 310 | + // we need to reconstruct the normal wpdb results, including the db-only fields |
|
| 311 | + // like a secondary table's primary key. The models expect those (but don't care what value they have) |
|
| 312 | + if ($field_obj instanceof EE_DB_Only_Field_Base) { |
|
| 313 | + $raw_value = true; |
|
| 314 | + } elseif ($field_obj instanceof EE_Datetime_Field) { |
|
| 315 | + $raw_value = $model_obj->get_DateTime_object($field_name); |
|
| 316 | + } else { |
|
| 317 | + $raw_value = $model_obj->get_raw($field_name); |
|
| 318 | + } |
|
| 319 | + $simulated_db_row[ $field_obj->get_qualified_column() ] = $field_obj->prepare_for_use_in_db($raw_value); |
|
| 320 | + } |
|
| 321 | + $read_controller = LoaderFactory::getLoader()->getNew('EventEspresso\core\libraries\rest_api\controllers\model\Read'); |
|
| 322 | + $read_controller->setRequestedVersion($this->getRequestedVersion()); |
|
| 323 | + // the simulates request really doesn't need any info downstream |
|
| 324 | + $simulated_request = new WP_REST_Request('GET'); |
|
| 325 | + // set the caps context on the simulated according to the original request. |
|
| 326 | + switch ($request->get_method()) { |
|
| 327 | + case 'POST': |
|
| 328 | + case 'PUT': |
|
| 329 | + $caps_context = EEM_Base::caps_edit; |
|
| 330 | + break; |
|
| 331 | + case 'DELETE': |
|
| 332 | + $caps_context = EEM_Base::caps_delete; |
|
| 333 | + break; |
|
| 334 | + default: |
|
| 335 | + $caps_context = EEM_Base::caps_read_admin; |
|
| 336 | + } |
|
| 337 | + $simulated_request->set_param('caps', $caps_context); |
|
| 338 | + return $read_controller->createEntityFromWpdbResult( |
|
| 339 | + $model_obj->get_model(), |
|
| 340 | + $simulated_db_row, |
|
| 341 | + $simulated_request |
|
| 342 | + ); |
|
| 343 | + } |
|
| 344 | 344 | |
| 345 | 345 | |
| 346 | - /** |
|
| 347 | - * Gets the item affected by this request |
|
| 348 | - * |
|
| 349 | - * @param EEM_Base $model |
|
| 350 | - * @param WP_REST_Request $request |
|
| 351 | - * @param int|string $obj_id |
|
| 352 | - * @return \WP_Error|array |
|
| 353 | - */ |
|
| 354 | - protected function getOneBasedOnRequest(EEM_Base $model, WP_REST_Request $request, $obj_id) |
|
| 355 | - { |
|
| 356 | - $requested_version = $this->getRequestedVersion($request->get_route()); |
|
| 357 | - $get_request = new WP_REST_Request( |
|
| 358 | - 'GET', |
|
| 359 | - EED_Core_Rest_Api::ee_api_namespace |
|
| 360 | - . $requested_version |
|
| 361 | - . '/' |
|
| 362 | - . EEH_Inflector::pluralize_and_lower($model->get_this_model_name()) |
|
| 363 | - . '/' |
|
| 364 | - . $obj_id |
|
| 365 | - ); |
|
| 366 | - $get_request->set_url_params( |
|
| 367 | - array( |
|
| 368 | - 'id' => $obj_id, |
|
| 369 | - 'include' => $request->get_param('include'), |
|
| 370 | - ) |
|
| 371 | - ); |
|
| 372 | - $read_controller = new Read(); |
|
| 373 | - $read_controller->setRequestedVersion($this->getRequestedVersion()); |
|
| 374 | - return $read_controller->getEntityFromModel($model, $get_request); |
|
| 375 | - } |
|
| 346 | + /** |
|
| 347 | + * Gets the item affected by this request |
|
| 348 | + * |
|
| 349 | + * @param EEM_Base $model |
|
| 350 | + * @param WP_REST_Request $request |
|
| 351 | + * @param int|string $obj_id |
|
| 352 | + * @return \WP_Error|array |
|
| 353 | + */ |
|
| 354 | + protected function getOneBasedOnRequest(EEM_Base $model, WP_REST_Request $request, $obj_id) |
|
| 355 | + { |
|
| 356 | + $requested_version = $this->getRequestedVersion($request->get_route()); |
|
| 357 | + $get_request = new WP_REST_Request( |
|
| 358 | + 'GET', |
|
| 359 | + EED_Core_Rest_Api::ee_api_namespace |
|
| 360 | + . $requested_version |
|
| 361 | + . '/' |
|
| 362 | + . EEH_Inflector::pluralize_and_lower($model->get_this_model_name()) |
|
| 363 | + . '/' |
|
| 364 | + . $obj_id |
|
| 365 | + ); |
|
| 366 | + $get_request->set_url_params( |
|
| 367 | + array( |
|
| 368 | + 'id' => $obj_id, |
|
| 369 | + 'include' => $request->get_param('include'), |
|
| 370 | + ) |
|
| 371 | + ); |
|
| 372 | + $read_controller = new Read(); |
|
| 373 | + $read_controller->setRequestedVersion($this->getRequestedVersion()); |
|
| 374 | + return $read_controller->getEntityFromModel($model, $get_request); |
|
| 375 | + } |
|
| 376 | 376 | |
| 377 | - /** |
|
| 378 | - * Adds a relation between the specified models (if it doesn't already exist.) |
|
| 379 | - * @since 4.9.76.p |
|
| 380 | - * @param WP_REST_Request $request |
|
| 381 | - * @return WP_REST_Response |
|
| 382 | - */ |
|
| 383 | - public static function handleRequestAddRelation(WP_REST_Request $request, $version, $model_name, $related_model_name) |
|
| 384 | - { |
|
| 385 | - $controller = new Write(); |
|
| 386 | - try { |
|
| 387 | - $controller->setRequestedVersion($version); |
|
| 388 | - $main_model = $controller->validateModel($model_name); |
|
| 389 | - $controller->validateModel($related_model_name); |
|
| 390 | - return $controller->sendResponse( |
|
| 391 | - $controller->addRelation( |
|
| 392 | - $main_model, |
|
| 393 | - $main_model->related_settings_for($related_model_name), |
|
| 394 | - $request |
|
| 395 | - ) |
|
| 396 | - ); |
|
| 397 | - } catch (Exception $e) { |
|
| 398 | - return $controller->sendResponse($e); |
|
| 399 | - } |
|
| 400 | - } |
|
| 377 | + /** |
|
| 378 | + * Adds a relation between the specified models (if it doesn't already exist.) |
|
| 379 | + * @since 4.9.76.p |
|
| 380 | + * @param WP_REST_Request $request |
|
| 381 | + * @return WP_REST_Response |
|
| 382 | + */ |
|
| 383 | + public static function handleRequestAddRelation(WP_REST_Request $request, $version, $model_name, $related_model_name) |
|
| 384 | + { |
|
| 385 | + $controller = new Write(); |
|
| 386 | + try { |
|
| 387 | + $controller->setRequestedVersion($version); |
|
| 388 | + $main_model = $controller->validateModel($model_name); |
|
| 389 | + $controller->validateModel($related_model_name); |
|
| 390 | + return $controller->sendResponse( |
|
| 391 | + $controller->addRelation( |
|
| 392 | + $main_model, |
|
| 393 | + $main_model->related_settings_for($related_model_name), |
|
| 394 | + $request |
|
| 395 | + ) |
|
| 396 | + ); |
|
| 397 | + } catch (Exception $e) { |
|
| 398 | + return $controller->sendResponse($e); |
|
| 399 | + } |
|
| 400 | + } |
|
| 401 | 401 | |
| 402 | - /** |
|
| 403 | - * Adds a relation between the two model specified model objects. |
|
| 404 | - * @since 4.9.76.p |
|
| 405 | - * @param EEM_Base $model |
|
| 406 | - * @param EE_Model_Relation_Base $relation |
|
| 407 | - * @param WP_REST_Request $request |
|
| 408 | - * @return array |
|
| 409 | - * @throws EE_Error |
|
| 410 | - * @throws InvalidArgumentException |
|
| 411 | - * @throws InvalidDataTypeException |
|
| 412 | - * @throws InvalidInterfaceException |
|
| 413 | - * @throws RestException |
|
| 414 | - * @throws DomainException |
|
| 415 | - */ |
|
| 416 | - public function addRelation(EEM_Base $model, EE_Model_Relation_Base $relation, WP_REST_Request $request) |
|
| 417 | - { |
|
| 418 | - list($model_obj, $other_obj) = $this->getBothModelObjects($model, $relation, $request); |
|
| 419 | - $extra_params = array(); |
|
| 420 | - if ($relation instanceof EE_HABTM_Relation) { |
|
| 421 | - $extra_params = array_intersect_key( |
|
| 422 | - ModelDataTranslator::prepareConditionsQueryParamsForModels( |
|
| 423 | - $request->get_body_params(), |
|
| 424 | - $relation->get_join_model(), |
|
| 425 | - $this->getModelVersionInfo()->requestedVersion(), |
|
| 426 | - true |
|
| 427 | - ), |
|
| 428 | - $relation->getNonKeyFields() |
|
| 429 | - ); |
|
| 430 | - } |
|
| 431 | - // Add a relation. |
|
| 432 | - $related_obj = $model_obj->_add_relation_to( |
|
| 433 | - $other_obj, |
|
| 434 | - $relation->get_other_model()->get_this_model_name(), |
|
| 435 | - $extra_params |
|
| 436 | - ); |
|
| 437 | - $response = array( |
|
| 438 | - strtolower($model->get_this_model_name()) => $this->returnModelObjAsJsonResponse($model_obj, $request), |
|
| 439 | - strtolower($relation->get_other_model()->get_this_model_name()) => $this->returnModelObjAsJsonResponse($related_obj, $request), |
|
| 440 | - ); |
|
| 441 | - if ($relation instanceof EE_HABTM_Relation) { |
|
| 442 | - $join_model_obj = $relation->get_join_model()->get_one( |
|
| 443 | - array( |
|
| 444 | - array( |
|
| 445 | - $model->primary_key_name() => $model_obj->ID(), |
|
| 446 | - $relation->get_other_model()->primary_key_name() => $related_obj->ID() |
|
| 447 | - ) |
|
| 448 | - ) |
|
| 449 | - ); |
|
| 450 | - $response['join'][ strtolower($relation->get_join_model()->get_this_model_name()) ] = $this->returnModelObjAsJsonResponse($join_model_obj, $request); |
|
| 451 | - } |
|
| 452 | - return $response; |
|
| 453 | - } |
|
| 402 | + /** |
|
| 403 | + * Adds a relation between the two model specified model objects. |
|
| 404 | + * @since 4.9.76.p |
|
| 405 | + * @param EEM_Base $model |
|
| 406 | + * @param EE_Model_Relation_Base $relation |
|
| 407 | + * @param WP_REST_Request $request |
|
| 408 | + * @return array |
|
| 409 | + * @throws EE_Error |
|
| 410 | + * @throws InvalidArgumentException |
|
| 411 | + * @throws InvalidDataTypeException |
|
| 412 | + * @throws InvalidInterfaceException |
|
| 413 | + * @throws RestException |
|
| 414 | + * @throws DomainException |
|
| 415 | + */ |
|
| 416 | + public function addRelation(EEM_Base $model, EE_Model_Relation_Base $relation, WP_REST_Request $request) |
|
| 417 | + { |
|
| 418 | + list($model_obj, $other_obj) = $this->getBothModelObjects($model, $relation, $request); |
|
| 419 | + $extra_params = array(); |
|
| 420 | + if ($relation instanceof EE_HABTM_Relation) { |
|
| 421 | + $extra_params = array_intersect_key( |
|
| 422 | + ModelDataTranslator::prepareConditionsQueryParamsForModels( |
|
| 423 | + $request->get_body_params(), |
|
| 424 | + $relation->get_join_model(), |
|
| 425 | + $this->getModelVersionInfo()->requestedVersion(), |
|
| 426 | + true |
|
| 427 | + ), |
|
| 428 | + $relation->getNonKeyFields() |
|
| 429 | + ); |
|
| 430 | + } |
|
| 431 | + // Add a relation. |
|
| 432 | + $related_obj = $model_obj->_add_relation_to( |
|
| 433 | + $other_obj, |
|
| 434 | + $relation->get_other_model()->get_this_model_name(), |
|
| 435 | + $extra_params |
|
| 436 | + ); |
|
| 437 | + $response = array( |
|
| 438 | + strtolower($model->get_this_model_name()) => $this->returnModelObjAsJsonResponse($model_obj, $request), |
|
| 439 | + strtolower($relation->get_other_model()->get_this_model_name()) => $this->returnModelObjAsJsonResponse($related_obj, $request), |
|
| 440 | + ); |
|
| 441 | + if ($relation instanceof EE_HABTM_Relation) { |
|
| 442 | + $join_model_obj = $relation->get_join_model()->get_one( |
|
| 443 | + array( |
|
| 444 | + array( |
|
| 445 | + $model->primary_key_name() => $model_obj->ID(), |
|
| 446 | + $relation->get_other_model()->primary_key_name() => $related_obj->ID() |
|
| 447 | + ) |
|
| 448 | + ) |
|
| 449 | + ); |
|
| 450 | + $response['join'][ strtolower($relation->get_join_model()->get_this_model_name()) ] = $this->returnModelObjAsJsonResponse($join_model_obj, $request); |
|
| 451 | + } |
|
| 452 | + return $response; |
|
| 453 | + } |
|
| 454 | 454 | |
| 455 | 455 | |
| 456 | - /** |
|
| 457 | - * Removes the relation between the specified models (if it exists). |
|
| 458 | - * @since 4.9.76.p |
|
| 459 | - * @param WP_REST_Request $request |
|
| 460 | - * @return WP_REST_Response |
|
| 461 | - */ |
|
| 462 | - public static function handleRequestRemoveRelation(WP_REST_Request $request, $version, $model_name, $related_model_name) |
|
| 463 | - { |
|
| 464 | - $controller = new Write(); |
|
| 465 | - try { |
|
| 466 | - $controller->setRequestedVersion($version); |
|
| 467 | - $main_model = $controller->getModelVersionInfo()->loadModel($model_name); |
|
| 468 | - return $controller->sendResponse( |
|
| 469 | - $controller->removeRelation( |
|
| 470 | - $main_model, |
|
| 471 | - $main_model->related_settings_for($related_model_name), |
|
| 472 | - $request |
|
| 473 | - ) |
|
| 474 | - ); |
|
| 475 | - } catch (Exception $e) { |
|
| 476 | - return $controller->sendResponse($e); |
|
| 477 | - } |
|
| 478 | - } |
|
| 456 | + /** |
|
| 457 | + * Removes the relation between the specified models (if it exists). |
|
| 458 | + * @since 4.9.76.p |
|
| 459 | + * @param WP_REST_Request $request |
|
| 460 | + * @return WP_REST_Response |
|
| 461 | + */ |
|
| 462 | + public static function handleRequestRemoveRelation(WP_REST_Request $request, $version, $model_name, $related_model_name) |
|
| 463 | + { |
|
| 464 | + $controller = new Write(); |
|
| 465 | + try { |
|
| 466 | + $controller->setRequestedVersion($version); |
|
| 467 | + $main_model = $controller->getModelVersionInfo()->loadModel($model_name); |
|
| 468 | + return $controller->sendResponse( |
|
| 469 | + $controller->removeRelation( |
|
| 470 | + $main_model, |
|
| 471 | + $main_model->related_settings_for($related_model_name), |
|
| 472 | + $request |
|
| 473 | + ) |
|
| 474 | + ); |
|
| 475 | + } catch (Exception $e) { |
|
| 476 | + return $controller->sendResponse($e); |
|
| 477 | + } |
|
| 478 | + } |
|
| 479 | 479 | |
| 480 | - /** |
|
| 481 | - * Adds a relation between the two model specified model objects. |
|
| 482 | - * @since 4.9.76.p |
|
| 483 | - * @param EEM_Base $model |
|
| 484 | - * @param EE_Model_Relation_Base $relation |
|
| 485 | - * @param WP_REST_Request $request |
|
| 486 | - * @return array |
|
| 487 | - * @throws DomainException |
|
| 488 | - * @throws EE_Error |
|
| 489 | - * @throws InvalidArgumentException |
|
| 490 | - * @throws InvalidDataTypeException |
|
| 491 | - * @throws InvalidInterfaceException |
|
| 492 | - * @throws RestException |
|
| 493 | - */ |
|
| 494 | - public function removeRelation(EEM_Base $model, EE_Model_Relation_Base $relation, WP_REST_Request $request) |
|
| 495 | - { |
|
| 496 | - // This endpoint doesn't accept body parameters (it's understandable to think it might, so let developers know |
|
| 497 | - // up-front that it doesn't.) |
|
| 498 | - if (!empty($request->get_body_params())) { |
|
| 499 | - $body_params = $request->get_body_params(); |
|
| 500 | - throw new RestException( |
|
| 501 | - 'invalid_field', |
|
| 502 | - sprintf( |
|
| 503 | - esc_html__('This endpoint doesn\'t accept post body arguments, you sent in %1$s', 'event_espresso'), |
|
| 504 | - implode(array_keys($body_params)) |
|
| 505 | - ) |
|
| 506 | - ); |
|
| 507 | - } |
|
| 508 | - list($model_obj, $other_obj) = $this->getBothModelObjects($model, $relation, $request); |
|
| 509 | - // Remember the old relation, if it used a join entry. |
|
| 510 | - $join_model_obj = null; |
|
| 511 | - if ($relation instanceof EE_HABTM_Relation) { |
|
| 512 | - $join_model_obj = $relation->get_join_model()->get_one( |
|
| 513 | - array( |
|
| 514 | - array( |
|
| 515 | - $model->primary_key_name() => $model_obj->ID(), |
|
| 516 | - $relation->get_other_model()->primary_key_name() => $other_obj->ID() |
|
| 517 | - ) |
|
| 518 | - ) |
|
| 519 | - ); |
|
| 520 | - } |
|
| 521 | - // Remove the relation. |
|
| 522 | - $related_obj = $model_obj->_remove_relation_to( |
|
| 523 | - $other_obj, |
|
| 524 | - $relation->get_other_model()->get_this_model_name() |
|
| 525 | - ); |
|
| 526 | - $response = array( |
|
| 527 | - strtolower($model->get_this_model_name()) => $this->returnModelObjAsJsonResponse($model_obj, $request), |
|
| 528 | - strtolower($relation->get_other_model()->get_this_model_name()) => $this->returnModelObjAsJsonResponse($related_obj, $request), |
|
| 529 | - ); |
|
| 530 | - if ($relation instanceof EE_HABTM_Relation) { |
|
| 531 | - $join_model_obj_after_removal = $relation->get_join_model()->get_one( |
|
| 532 | - array( |
|
| 533 | - array( |
|
| 534 | - $model->primary_key_name() => $model_obj->ID(), |
|
| 535 | - $relation->get_other_model()->primary_key_name() => $other_obj->ID() |
|
| 536 | - ) |
|
| 537 | - ) |
|
| 538 | - ); |
|
| 539 | - if ($join_model_obj instanceof EE_Base_Class) { |
|
| 540 | - $response['join'][ strtolower($relation->get_join_model()->get_this_model_name()) ] = $this->returnModelObjAsJsonResponse($join_model_obj, $request); |
|
| 541 | - } else { |
|
| 542 | - $response['join'][ strtolower($relation->get_join_model()->get_this_model_name()) ] = null; |
|
| 543 | - } |
|
| 544 | - } |
|
| 545 | - return $response; |
|
| 546 | - } |
|
| 480 | + /** |
|
| 481 | + * Adds a relation between the two model specified model objects. |
|
| 482 | + * @since 4.9.76.p |
|
| 483 | + * @param EEM_Base $model |
|
| 484 | + * @param EE_Model_Relation_Base $relation |
|
| 485 | + * @param WP_REST_Request $request |
|
| 486 | + * @return array |
|
| 487 | + * @throws DomainException |
|
| 488 | + * @throws EE_Error |
|
| 489 | + * @throws InvalidArgumentException |
|
| 490 | + * @throws InvalidDataTypeException |
|
| 491 | + * @throws InvalidInterfaceException |
|
| 492 | + * @throws RestException |
|
| 493 | + */ |
|
| 494 | + public function removeRelation(EEM_Base $model, EE_Model_Relation_Base $relation, WP_REST_Request $request) |
|
| 495 | + { |
|
| 496 | + // This endpoint doesn't accept body parameters (it's understandable to think it might, so let developers know |
|
| 497 | + // up-front that it doesn't.) |
|
| 498 | + if (!empty($request->get_body_params())) { |
|
| 499 | + $body_params = $request->get_body_params(); |
|
| 500 | + throw new RestException( |
|
| 501 | + 'invalid_field', |
|
| 502 | + sprintf( |
|
| 503 | + esc_html__('This endpoint doesn\'t accept post body arguments, you sent in %1$s', 'event_espresso'), |
|
| 504 | + implode(array_keys($body_params)) |
|
| 505 | + ) |
|
| 506 | + ); |
|
| 507 | + } |
|
| 508 | + list($model_obj, $other_obj) = $this->getBothModelObjects($model, $relation, $request); |
|
| 509 | + // Remember the old relation, if it used a join entry. |
|
| 510 | + $join_model_obj = null; |
|
| 511 | + if ($relation instanceof EE_HABTM_Relation) { |
|
| 512 | + $join_model_obj = $relation->get_join_model()->get_one( |
|
| 513 | + array( |
|
| 514 | + array( |
|
| 515 | + $model->primary_key_name() => $model_obj->ID(), |
|
| 516 | + $relation->get_other_model()->primary_key_name() => $other_obj->ID() |
|
| 517 | + ) |
|
| 518 | + ) |
|
| 519 | + ); |
|
| 520 | + } |
|
| 521 | + // Remove the relation. |
|
| 522 | + $related_obj = $model_obj->_remove_relation_to( |
|
| 523 | + $other_obj, |
|
| 524 | + $relation->get_other_model()->get_this_model_name() |
|
| 525 | + ); |
|
| 526 | + $response = array( |
|
| 527 | + strtolower($model->get_this_model_name()) => $this->returnModelObjAsJsonResponse($model_obj, $request), |
|
| 528 | + strtolower($relation->get_other_model()->get_this_model_name()) => $this->returnModelObjAsJsonResponse($related_obj, $request), |
|
| 529 | + ); |
|
| 530 | + if ($relation instanceof EE_HABTM_Relation) { |
|
| 531 | + $join_model_obj_after_removal = $relation->get_join_model()->get_one( |
|
| 532 | + array( |
|
| 533 | + array( |
|
| 534 | + $model->primary_key_name() => $model_obj->ID(), |
|
| 535 | + $relation->get_other_model()->primary_key_name() => $other_obj->ID() |
|
| 536 | + ) |
|
| 537 | + ) |
|
| 538 | + ); |
|
| 539 | + if ($join_model_obj instanceof EE_Base_Class) { |
|
| 540 | + $response['join'][ strtolower($relation->get_join_model()->get_this_model_name()) ] = $this->returnModelObjAsJsonResponse($join_model_obj, $request); |
|
| 541 | + } else { |
|
| 542 | + $response['join'][ strtolower($relation->get_join_model()->get_this_model_name()) ] = null; |
|
| 543 | + } |
|
| 544 | + } |
|
| 545 | + return $response; |
|
| 546 | + } |
|
| 547 | 547 | |
| 548 | - /** |
|
| 549 | - * Gets the model objects indicated by the model, relation object, and request. |
|
| 550 | - * Throws an exception if the first object doesn't exist, and currently if the related object also doesn't exist. |
|
| 551 | - * However, this behaviour may change, as we may add support for simultaneously creating and relating data. |
|
| 552 | - * @since 4.9.76.p |
|
| 553 | - * @param EEM_Base $model |
|
| 554 | - * @param EE_Model_Relation_Base $relation |
|
| 555 | - * @param WP_REST_Request $request |
|
| 556 | - * @return array { |
|
| 557 | - * @type EE_Base_Class $model_obj |
|
| 558 | - * @type EE_Base_Class|null $other_model_obj |
|
| 559 | - * } |
|
| 560 | - * @throws RestException |
|
| 561 | - */ |
|
| 562 | - protected function getBothModelObjects(EEM_Base $model, EE_Model_Relation_Base $relation, WP_REST_Request $request) |
|
| 563 | - { |
|
| 564 | - // Check generic caps. For now, we're only allowing access to this endpoint to full admins. |
|
| 565 | - Capabilities::verifyAtLeastPartialAccessTo($model, EEM_Base::caps_edit, 'edit'); |
|
| 566 | - $default_cap_to_check_for = EE_Restriction_Generator_Base::get_default_restrictions_cap(); |
|
| 567 | - if (! current_user_can($default_cap_to_check_for)) { |
|
| 568 | - throw new RestException( |
|
| 569 | - 'rest_cannot_edit_' . EEH_Inflector::pluralize_and_lower(($model->get_this_model_name())), |
|
| 570 | - sprintf( |
|
| 571 | - esc_html__( |
|
| 572 | - // @codingStandardsIgnoreStart |
|
| 573 | - 'For now, only those with the admin capability to "%1$s" are allowed to use the REST API to add relations in Event Espresso.', |
|
| 574 | - // @codingStandardsIgnoreEnd |
|
| 575 | - 'event_espresso' |
|
| 576 | - ), |
|
| 577 | - $default_cap_to_check_for |
|
| 578 | - ), |
|
| 579 | - array('status' => 403) |
|
| 580 | - ); |
|
| 581 | - } |
|
| 582 | - // Get the main model object. |
|
| 583 | - $model_obj = $this->getOneOrThrowException($model, $request->get_param('id')); |
|
| 584 | - // For now, we require the other model object to exist too. This might be relaxed later. |
|
| 585 | - $other_obj = $this->getOneOrThrowException($relation->get_other_model(), $request->get_param('related_id')); |
|
| 586 | - return array($model_obj,$other_obj); |
|
| 587 | - } |
|
| 548 | + /** |
|
| 549 | + * Gets the model objects indicated by the model, relation object, and request. |
|
| 550 | + * Throws an exception if the first object doesn't exist, and currently if the related object also doesn't exist. |
|
| 551 | + * However, this behaviour may change, as we may add support for simultaneously creating and relating data. |
|
| 552 | + * @since 4.9.76.p |
|
| 553 | + * @param EEM_Base $model |
|
| 554 | + * @param EE_Model_Relation_Base $relation |
|
| 555 | + * @param WP_REST_Request $request |
|
| 556 | + * @return array { |
|
| 557 | + * @type EE_Base_Class $model_obj |
|
| 558 | + * @type EE_Base_Class|null $other_model_obj |
|
| 559 | + * } |
|
| 560 | + * @throws RestException |
|
| 561 | + */ |
|
| 562 | + protected function getBothModelObjects(EEM_Base $model, EE_Model_Relation_Base $relation, WP_REST_Request $request) |
|
| 563 | + { |
|
| 564 | + // Check generic caps. For now, we're only allowing access to this endpoint to full admins. |
|
| 565 | + Capabilities::verifyAtLeastPartialAccessTo($model, EEM_Base::caps_edit, 'edit'); |
|
| 566 | + $default_cap_to_check_for = EE_Restriction_Generator_Base::get_default_restrictions_cap(); |
|
| 567 | + if (! current_user_can($default_cap_to_check_for)) { |
|
| 568 | + throw new RestException( |
|
| 569 | + 'rest_cannot_edit_' . EEH_Inflector::pluralize_and_lower(($model->get_this_model_name())), |
|
| 570 | + sprintf( |
|
| 571 | + esc_html__( |
|
| 572 | + // @codingStandardsIgnoreStart |
|
| 573 | + 'For now, only those with the admin capability to "%1$s" are allowed to use the REST API to add relations in Event Espresso.', |
|
| 574 | + // @codingStandardsIgnoreEnd |
|
| 575 | + 'event_espresso' |
|
| 576 | + ), |
|
| 577 | + $default_cap_to_check_for |
|
| 578 | + ), |
|
| 579 | + array('status' => 403) |
|
| 580 | + ); |
|
| 581 | + } |
|
| 582 | + // Get the main model object. |
|
| 583 | + $model_obj = $this->getOneOrThrowException($model, $request->get_param('id')); |
|
| 584 | + // For now, we require the other model object to exist too. This might be relaxed later. |
|
| 585 | + $other_obj = $this->getOneOrThrowException($relation->get_other_model(), $request->get_param('related_id')); |
|
| 586 | + return array($model_obj,$other_obj); |
|
| 587 | + } |
|
| 588 | 588 | |
| 589 | - /** |
|
| 590 | - * Gets the model with that ID or throws a REST exception. |
|
| 591 | - * @since 4.9.76.p |
|
| 592 | - * @param EEM_Base $model |
|
| 593 | - * @param $id |
|
| 594 | - * @return EE_Base_Class |
|
| 595 | - * @throws RestException |
|
| 596 | - */ |
|
| 597 | - protected function getOneOrThrowException(EEM_Base $model, $id) |
|
| 598 | - { |
|
| 599 | - $model_obj = $model->get_one_by_ID($id); |
|
| 600 | - // @todo: check they can permission for it. For now unnecessary because only full admins can use this endpoint. |
|
| 601 | - if ($model_obj instanceof EE_Base_Class) { |
|
| 602 | - return $model_obj; |
|
| 603 | - } |
|
| 604 | - $lowercase_model_name = strtolower($model->get_this_model_name()); |
|
| 605 | - throw new RestException( |
|
| 606 | - sprintf('rest_%s_invalid_id', $lowercase_model_name), |
|
| 607 | - sprintf(__('Invalid %s ID.', 'event_espresso'), $lowercase_model_name), |
|
| 608 | - array('status' => 404) |
|
| 609 | - ); |
|
| 610 | - } |
|
| 589 | + /** |
|
| 590 | + * Gets the model with that ID or throws a REST exception. |
|
| 591 | + * @since 4.9.76.p |
|
| 592 | + * @param EEM_Base $model |
|
| 593 | + * @param $id |
|
| 594 | + * @return EE_Base_Class |
|
| 595 | + * @throws RestException |
|
| 596 | + */ |
|
| 597 | + protected function getOneOrThrowException(EEM_Base $model, $id) |
|
| 598 | + { |
|
| 599 | + $model_obj = $model->get_one_by_ID($id); |
|
| 600 | + // @todo: check they can permission for it. For now unnecessary because only full admins can use this endpoint. |
|
| 601 | + if ($model_obj instanceof EE_Base_Class) { |
|
| 602 | + return $model_obj; |
|
| 603 | + } |
|
| 604 | + $lowercase_model_name = strtolower($model->get_this_model_name()); |
|
| 605 | + throw new RestException( |
|
| 606 | + sprintf('rest_%s_invalid_id', $lowercase_model_name), |
|
| 607 | + sprintf(__('Invalid %s ID.', 'event_espresso'), $lowercase_model_name), |
|
| 608 | + array('status' => 404) |
|
| 609 | + ); |
|
| 610 | + } |
|
| 611 | 611 | } |
@@ -765,6 +765,9 @@ |
||
| 765 | 765 | ); |
| 766 | 766 | } |
| 767 | 767 | |
| 768 | + /** |
|
| 769 | + * @param string $version |
|
| 770 | + */ |
|
| 768 | 771 | protected function _get_add_relation_query_params(\EEM_Base $source_model, \EEM_Base $related_model, $version) |
| 769 | 772 | { |
| 770 | 773 | // if they're related through a HABTM relation, check for any non-FKs |
@@ -123,7 +123,7 @@ discard block |
||
| 123 | 123 | */ |
| 124 | 124 | protected static function _set_hooks_for_changes() |
| 125 | 125 | { |
| 126 | - $folder_contents = EEH_File::get_contents_of_folders(array(EE_LIBRARIES . 'rest_api' . DS . 'changes'), false); |
|
| 126 | + $folder_contents = EEH_File::get_contents_of_folders(array(EE_LIBRARIES.'rest_api'.DS.'changes'), false); |
|
| 127 | 127 | foreach ($folder_contents as $classname_in_namespace => $filepath) { |
| 128 | 128 | // ignore the base parent class |
| 129 | 129 | // and legacy named classes |
@@ -132,7 +132,7 @@ discard block |
||
| 132 | 132 | ) { |
| 133 | 133 | continue; |
| 134 | 134 | } |
| 135 | - $full_classname = 'EventEspresso\core\libraries\rest_api\changes\\' . $classname_in_namespace; |
|
| 135 | + $full_classname = 'EventEspresso\core\libraries\rest_api\changes\\'.$classname_in_namespace; |
|
| 136 | 136 | if (class_exists($full_classname)) { |
| 137 | 137 | $instance_of_class = new $full_classname; |
| 138 | 138 | if ($instance_of_class instanceof ChangesInBase) { |
@@ -177,10 +177,10 @@ discard block |
||
| 177 | 177 | * } |
| 178 | 178 | */ |
| 179 | 179 | // skip route options |
| 180 | - if (! is_numeric($endpoint_key)) { |
|
| 180 | + if ( ! is_numeric($endpoint_key)) { |
|
| 181 | 181 | continue; |
| 182 | 182 | } |
| 183 | - if (! isset($data_for_single_endpoint['callback'], $data_for_single_endpoint['methods'])) { |
|
| 183 | + if ( ! isset($data_for_single_endpoint['callback'], $data_for_single_endpoint['methods'])) { |
|
| 184 | 184 | throw new EE_Error( |
| 185 | 185 | esc_html__( |
| 186 | 186 | // @codingStandardsIgnoreStart |
@@ -201,7 +201,7 @@ discard block |
||
| 201 | 201 | } |
| 202 | 202 | if (isset($data_for_single_endpoint['callback_args'])) { |
| 203 | 203 | $callback_args = $data_for_single_endpoint['callback_args']; |
| 204 | - $single_endpoint_args['callback'] = function (\WP_REST_Request $request) use ( |
|
| 204 | + $single_endpoint_args['callback'] = function(\WP_REST_Request $request) use ( |
|
| 205 | 205 | $callback, |
| 206 | 206 | $callback_args |
| 207 | 207 | ) { |
@@ -220,7 +220,7 @@ discard block |
||
| 220 | 220 | $schema_route_data = $data_for_multiple_endpoints['schema']; |
| 221 | 221 | $schema_callback = $schema_route_data['schema_callback']; |
| 222 | 222 | $callback_args = $schema_route_data['callback_args']; |
| 223 | - $multiple_endpoint_args['schema'] = function () use ($schema_callback, $callback_args) { |
|
| 223 | + $multiple_endpoint_args['schema'] = function() use ($schema_callback, $callback_args) { |
|
| 224 | 224 | return call_user_func_array( |
| 225 | 225 | $schema_callback, |
| 226 | 226 | $callback_args |
@@ -262,7 +262,7 @@ discard block |
||
| 262 | 262 | { |
| 263 | 263 | // delete the saved EE REST API routes |
| 264 | 264 | foreach (EED_Core_Rest_Api::versions_served() as $version => $hidden) { |
| 265 | - delete_option(EED_Core_Rest_Api::saved_routes_option_names . $version); |
|
| 265 | + delete_option(EED_Core_Rest_Api::saved_routes_option_names.$version); |
|
| 266 | 266 | } |
| 267 | 267 | } |
| 268 | 268 | |
@@ -281,7 +281,7 @@ discard block |
||
| 281 | 281 | { |
| 282 | 282 | $ee_routes = array(); |
| 283 | 283 | foreach (self::versions_served() as $version => $hidden_endpoints) { |
| 284 | - $ee_routes[ self::ee_api_namespace . $version ] = self::_get_ee_route_data_for_version( |
|
| 284 | + $ee_routes[self::ee_api_namespace.$version] = self::_get_ee_route_data_for_version( |
|
| 285 | 285 | $version, |
| 286 | 286 | $hidden_endpoints |
| 287 | 287 | ); |
@@ -301,8 +301,8 @@ discard block |
||
| 301 | 301 | */ |
| 302 | 302 | protected static function _get_ee_route_data_for_version($version, $hidden_endpoints = false) |
| 303 | 303 | { |
| 304 | - $ee_routes = get_option(self::saved_routes_option_names . $version, null); |
|
| 305 | - if (! $ee_routes || EED_Core_Rest_Api::debugMode()) { |
|
| 304 | + $ee_routes = get_option(self::saved_routes_option_names.$version, null); |
|
| 305 | + if ( ! $ee_routes || EED_Core_Rest_Api::debugMode()) { |
|
| 306 | 306 | $ee_routes = self::_save_ee_route_data_for_version($version, $hidden_endpoints); |
| 307 | 307 | } |
| 308 | 308 | return $ee_routes; |
@@ -329,7 +329,7 @@ discard block |
||
| 329 | 329 | $instance->_get_rpc_route_data_for_version($version, $hidden_endpoints) |
| 330 | 330 | ) |
| 331 | 331 | ); |
| 332 | - $option_name = self::saved_routes_option_names . $version; |
|
| 332 | + $option_name = self::saved_routes_option_names.$version; |
|
| 333 | 333 | if (get_option($option_name)) { |
| 334 | 334 | update_option($option_name, $routes, true); |
| 335 | 335 | } else { |
@@ -374,8 +374,8 @@ discard block |
||
| 374 | 374 | { |
| 375 | 375 | $model_routes = array(); |
| 376 | 376 | foreach (self::versions_served() as $version => $hidden_endpoint) { |
| 377 | - $model_routes[ EED_Core_Rest_Api::ee_api_namespace |
|
| 378 | - . $version ] = $this->_get_config_route_data_for_version($version, $hidden_endpoint); |
|
| 377 | + $model_routes[EED_Core_Rest_Api::ee_api_namespace |
|
| 378 | + . $version] = $this->_get_config_route_data_for_version($version, $hidden_endpoint); |
|
| 379 | 379 | } |
| 380 | 380 | return $model_routes; |
| 381 | 381 | } |
@@ -444,13 +444,13 @@ discard block |
||
| 444 | 444 | foreach (EED_Core_Rest_Api::model_names_with_plural_routes($version) as $model_name => $model_classname) { |
| 445 | 445 | $model = \EE_Registry::instance()->load_model($model_name); |
| 446 | 446 | // if this isn't a valid model then let's skip iterate to the next item in the loop. |
| 447 | - if (! $model instanceof EEM_Base) { |
|
| 447 | + if ( ! $model instanceof EEM_Base) { |
|
| 448 | 448 | continue; |
| 449 | 449 | } |
| 450 | 450 | // yes we could just register one route for ALL models, but then they wouldn't show up in the index |
| 451 | 451 | $plural_model_route = EED_Core_Rest_Api::get_collection_route($model); |
| 452 | 452 | $singular_model_route = EED_Core_Rest_Api::get_entity_route($model, '(?P<id>[^\/]+)'); |
| 453 | - $model_routes[ $plural_model_route ] = array( |
|
| 453 | + $model_routes[$plural_model_route] = array( |
|
| 454 | 454 | array( |
| 455 | 455 | 'callback' => array( |
| 456 | 456 | 'EventEspresso\core\libraries\rest_api\controllers\model\Read', |
@@ -461,7 +461,7 @@ discard block |
||
| 461 | 461 | 'hidden_endpoint' => $hidden_endpoint, |
| 462 | 462 | 'args' => $this->_get_read_query_params($model, $version), |
| 463 | 463 | '_links' => array( |
| 464 | - 'self' => rest_url(EED_Core_Rest_Api::ee_api_namespace . $version . $singular_model_route), |
|
| 464 | + 'self' => rest_url(EED_Core_Rest_Api::ee_api_namespace.$version.$singular_model_route), |
|
| 465 | 465 | ), |
| 466 | 466 | ), |
| 467 | 467 | 'schema' => array( |
@@ -472,7 +472,7 @@ discard block |
||
| 472 | 472 | 'callback_args' => array($version, $model_name), |
| 473 | 473 | ), |
| 474 | 474 | ); |
| 475 | - $model_routes[ $singular_model_route ] = array( |
|
| 475 | + $model_routes[$singular_model_route] = array( |
|
| 476 | 476 | array( |
| 477 | 477 | 'callback' => array( |
| 478 | 478 | 'EventEspresso\core\libraries\rest_api\controllers\model\Read', |
@@ -489,7 +489,7 @@ discard block |
||
| 489 | 489 | EED_Core_Rest_Api::should_have_write_endpoints($model), |
| 490 | 490 | $model |
| 491 | 491 | )) { |
| 492 | - $model_routes[ $plural_model_route ][] = array( |
|
| 492 | + $model_routes[$plural_model_route][] = array( |
|
| 493 | 493 | 'callback' => array( |
| 494 | 494 | 'EventEspresso\core\libraries\rest_api\controllers\model\Write', |
| 495 | 495 | 'handleRequestInsert', |
@@ -499,8 +499,8 @@ discard block |
||
| 499 | 499 | 'hidden_endpoint' => $hidden_endpoint, |
| 500 | 500 | 'args' => $this->_get_write_params($model_name, $model_version_info, true), |
| 501 | 501 | ); |
| 502 | - $model_routes[ $singular_model_route ] = array_merge( |
|
| 503 | - $model_routes[ $singular_model_route ], |
|
| 502 | + $model_routes[$singular_model_route] = array_merge( |
|
| 503 | + $model_routes[$singular_model_route], |
|
| 504 | 504 | array( |
| 505 | 505 | array( |
| 506 | 506 | 'callback' => array( |
@@ -531,7 +531,7 @@ discard block |
||
| 531 | 531 | '(?P<id>[^\/]+)', |
| 532 | 532 | $relation_obj |
| 533 | 533 | ); |
| 534 | - $model_routes[ $related_route ] = array( |
|
| 534 | + $model_routes[$related_route] = array( |
|
| 535 | 535 | array( |
| 536 | 536 | 'callback' => array( |
| 537 | 537 | 'EventEspresso\core\libraries\rest_api\controllers\model\Read', |
@@ -544,8 +544,8 @@ discard block |
||
| 544 | 544 | ), |
| 545 | 545 | ); |
| 546 | 546 | |
| 547 | - $related_write_route = $related_route . '/' . '(?P<related_id>[^\/]+)'; |
|
| 548 | - $model_routes[ $related_write_route ] = array( |
|
| 547 | + $related_write_route = $related_route.'/'.'(?P<related_id>[^\/]+)'; |
|
| 548 | + $model_routes[$related_write_route] = array( |
|
| 549 | 549 | array( |
| 550 | 550 | 'callback' => array( |
| 551 | 551 | 'EventEspresso\core\libraries\rest_api\controllers\model\Write', |
@@ -598,7 +598,7 @@ discard block |
||
| 598 | 598 | */ |
| 599 | 599 | public static function get_entity_route($model, $id) |
| 600 | 600 | { |
| 601 | - return EED_Core_Rest_Api::get_collection_route($model) . '/' . $id; |
|
| 601 | + return EED_Core_Rest_Api::get_collection_route($model).'/'.$id; |
|
| 602 | 602 | } |
| 603 | 603 | |
| 604 | 604 | |
@@ -618,7 +618,7 @@ discard block |
||
| 618 | 618 | $relation_obj->get_other_model()->get_this_model_name(), |
| 619 | 619 | $relation_obj |
| 620 | 620 | ); |
| 621 | - return EED_Core_Rest_Api::get_entity_route($model, $id) . '/' . $related_model_name_endpoint_part; |
|
| 621 | + return EED_Core_Rest_Api::get_entity_route($model, $id).'/'.$related_model_name_endpoint_part; |
|
| 622 | 622 | } |
| 623 | 623 | |
| 624 | 624 | |
@@ -632,7 +632,7 @@ discard block |
||
| 632 | 632 | */ |
| 633 | 633 | public static function get_versioned_route_to($relative_route, $version = '4.8.36') |
| 634 | 634 | { |
| 635 | - return '/' . EED_Core_Rest_Api::ee_api_namespace . $version . '/' . $relative_route; |
|
| 635 | + return '/'.EED_Core_Rest_Api::ee_api_namespace.$version.'/'.$relative_route; |
|
| 636 | 636 | } |
| 637 | 637 | |
| 638 | 638 | |
@@ -646,7 +646,7 @@ discard block |
||
| 646 | 646 | { |
| 647 | 647 | $routes = array(); |
| 648 | 648 | foreach (self::versions_served() as $version => $hidden_endpoint) { |
| 649 | - $routes[ self::ee_api_namespace . $version ] = $this->_get_rpc_route_data_for_version( |
|
| 649 | + $routes[self::ee_api_namespace.$version] = $this->_get_rpc_route_data_for_version( |
|
| 650 | 650 | $version, |
| 651 | 651 | $hidden_endpoint |
| 652 | 652 | ); |
@@ -769,12 +769,12 @@ discard block |
||
| 769 | 769 | { |
| 770 | 770 | // if they're related through a HABTM relation, check for any non-FKs |
| 771 | 771 | $all_relation_settings = $source_model->relation_settings(); |
| 772 | - $relation_settings = $all_relation_settings[ $related_model->get_this_model_name() ]; |
|
| 772 | + $relation_settings = $all_relation_settings[$related_model->get_this_model_name()]; |
|
| 773 | 773 | $params = array(); |
| 774 | 774 | if ($relation_settings instanceof EE_HABTM_Relation && $relation_settings->hasNonKeyFields()) { |
| 775 | 775 | foreach ($relation_settings->getNonKeyFields() as $field) { |
| 776 | 776 | /* @var $field EE_Model_Field_Base */ |
| 777 | - $params[ $field->get_name() ] = array( |
|
| 777 | + $params[$field->get_name()] = array( |
|
| 778 | 778 | 'required' => ! $field->is_nullable(), |
| 779 | 779 | 'default' => ModelDataTranslator::prepareFieldValueForJson($field, $field->get_default_value(), $version), |
| 780 | 780 | 'type' => $field->getSchemaType(), |
@@ -799,7 +799,7 @@ discard block |
||
| 799 | 799 | { |
| 800 | 800 | $default_orderby = array(); |
| 801 | 801 | foreach ($model->get_combined_primary_key_fields() as $key_field) { |
| 802 | - $default_orderby[ $key_field->get_name() ] = 'ASC'; |
|
| 802 | + $default_orderby[$key_field->get_name()] = 'ASC'; |
|
| 803 | 803 | } |
| 804 | 804 | return array_merge( |
| 805 | 805 | $this->_get_response_selection_query_params($model, $version), |
@@ -833,7 +833,7 @@ discard block |
||
| 833 | 833 | 'type' => array( |
| 834 | 834 | 'object', |
| 835 | 835 | 'string', |
| 836 | - ),// because we accept a variety of types, WP core validation and sanitization |
|
| 836 | + ), // because we accept a variety of types, WP core validation and sanitization |
|
| 837 | 837 | // freaks out. We'll just validate this argument while handling the request |
| 838 | 838 | 'validate_callback' => null, |
| 839 | 839 | 'sanitize_callback' => null, |
@@ -931,7 +931,7 @@ discard block |
||
| 931 | 931 | $sanitize_callback = null; |
| 932 | 932 | } |
| 933 | 933 | $arg_info['sanitize_callback'] = $sanitize_callback; |
| 934 | - $args_info[ $field_name ] = $arg_info; |
|
| 934 | + $args_info[$field_name] = $arg_info; |
|
| 935 | 935 | if ($field_obj instanceof EE_Datetime_Field) { |
| 936 | 936 | $gmt_arg_info = $arg_info; |
| 937 | 937 | $gmt_arg_info['description'] = sprintf( |
@@ -942,7 +942,7 @@ discard block |
||
| 942 | 942 | $field_obj->get_nicename(), |
| 943 | 943 | $field_name |
| 944 | 944 | ); |
| 945 | - $args_info[ $field_name . '_gmt' ] = $gmt_arg_info; |
|
| 945 | + $args_info[$field_name.'_gmt'] = $gmt_arg_info; |
|
| 946 | 946 | } |
| 947 | 947 | } |
| 948 | 948 | return $args_info; |
@@ -965,16 +965,16 @@ discard block |
||
| 965 | 965 | public static function default_sanitize_callback($value, WP_REST_Request $request, $param) |
| 966 | 966 | { |
| 967 | 967 | $attributes = $request->get_attributes(); |
| 968 | - if (! isset($attributes['args'][ $param ]) |
|
| 969 | - || ! is_array($attributes['args'][ $param ])) { |
|
| 968 | + if ( ! isset($attributes['args'][$param]) |
|
| 969 | + || ! is_array($attributes['args'][$param])) { |
|
| 970 | 970 | $validation_result = true; |
| 971 | 971 | } else { |
| 972 | - $args = $attributes['args'][ $param ]; |
|
| 972 | + $args = $attributes['args'][$param]; |
|
| 973 | 973 | if (( |
| 974 | 974 | $value === '' |
| 975 | 975 | || $value === null |
| 976 | 976 | ) |
| 977 | - && (! isset($args['required']) |
|
| 977 | + && ( ! isset($args['required']) |
|
| 978 | 978 | || $args['required'] === false |
| 979 | 979 | ) |
| 980 | 980 | ) { |
@@ -984,7 +984,7 @@ discard block |
||
| 984 | 984 | && $args['format'] === 'email' |
| 985 | 985 | ) { |
| 986 | 986 | $validation_result = true; |
| 987 | - if (! self::_validate_email($value)) { |
|
| 987 | + if ( ! self::_validate_email($value)) { |
|
| 988 | 988 | $validation_result = new WP_Error( |
| 989 | 989 | 'rest_invalid_param', |
| 990 | 990 | esc_html__( |
@@ -1034,7 +1034,7 @@ discard block |
||
| 1034 | 1034 | { |
| 1035 | 1035 | $config_routes = array(); |
| 1036 | 1036 | foreach (self::versions_served() as $version => $hidden_endpoint) { |
| 1037 | - $config_routes[ self::ee_api_namespace . $version ] = $this->_get_config_route_data_for_version( |
|
| 1037 | + $config_routes[self::ee_api_namespace.$version] = $this->_get_config_route_data_for_version( |
|
| 1038 | 1038 | $version, |
| 1039 | 1039 | $hidden_endpoint |
| 1040 | 1040 | ); |
@@ -1089,7 +1089,7 @@ discard block |
||
| 1089 | 1089 | { |
| 1090 | 1090 | $meta_routes = array(); |
| 1091 | 1091 | foreach (self::versions_served() as $version => $hidden_endpoint) { |
| 1092 | - $meta_routes[ self::ee_api_namespace . $version ] = $this->_get_meta_route_data_for_version( |
|
| 1092 | + $meta_routes[self::ee_api_namespace.$version] = $this->_get_meta_route_data_for_version( |
|
| 1093 | 1093 | $version, |
| 1094 | 1094 | $hidden_endpoint |
| 1095 | 1095 | ); |
@@ -1141,7 +1141,7 @@ discard block |
||
| 1141 | 1141 | foreach ($relative_urls as $resource_name => $endpoints) { |
| 1142 | 1142 | foreach ($endpoints as $key => $endpoint) { |
| 1143 | 1143 | // skip schema and other route options |
| 1144 | - if (! is_numeric($key)) { |
|
| 1144 | + if ( ! is_numeric($key)) { |
|
| 1145 | 1145 | continue; |
| 1146 | 1146 | } |
| 1147 | 1147 | // by default, hide "hidden_endpoint"s, unless the request indicates |
@@ -1150,9 +1150,9 @@ discard block |
||
| 1150 | 1150 | if (($force_show_ee_namespace !== '' && $force_show_ee_namespace !== $namespace) |
| 1151 | 1151 | || ($endpoint['hidden_endpoint'] && $force_show_ee_namespace === '') |
| 1152 | 1152 | ) { |
| 1153 | - $full_route = '/' . ltrim($namespace, '/'); |
|
| 1154 | - $full_route .= '/' . ltrim($resource_name, '/'); |
|
| 1155 | - unset($route_data[ $full_route ]); |
|
| 1153 | + $full_route = '/'.ltrim($namespace, '/'); |
|
| 1154 | + $full_route .= '/'.ltrim($resource_name, '/'); |
|
| 1155 | + unset($route_data[$full_route]); |
|
| 1156 | 1156 | } |
| 1157 | 1157 | } |
| 1158 | 1158 | } |
@@ -1225,19 +1225,19 @@ discard block |
||
| 1225 | 1225 | // if it's not above the current core version, and it's compatible with the current version of core |
| 1226 | 1226 | if ($key_versioned_endpoint === $latest_version) { |
| 1227 | 1227 | // don't hide the latest version in the index |
| 1228 | - $versions_served[ $key_versioned_endpoint ] = false; |
|
| 1228 | + $versions_served[$key_versioned_endpoint] = false; |
|
| 1229 | 1229 | } elseif ($key_versioned_endpoint >= $lowest_compatible_version |
| 1230 | 1230 | && $key_versioned_endpoint < EED_Core_Rest_Api::core_version() |
| 1231 | 1231 | ) { |
| 1232 | 1232 | // include, but hide, previous versions which are still supported |
| 1233 | - $versions_served[ $key_versioned_endpoint ] = true; |
|
| 1233 | + $versions_served[$key_versioned_endpoint] = true; |
|
| 1234 | 1234 | } elseif (apply_filters( |
| 1235 | 1235 | 'FHEE__EED_Core_Rest_Api__versions_served__include_incompatible_versions', |
| 1236 | 1236 | false, |
| 1237 | 1237 | $possibly_served_versions |
| 1238 | 1238 | )) { |
| 1239 | 1239 | // if a version is no longer supported, don't include it in index or list of versions served |
| 1240 | - $versions_served[ $key_versioned_endpoint ] = true; |
|
| 1240 | + $versions_served[$key_versioned_endpoint] = true; |
|
| 1241 | 1241 | } |
| 1242 | 1242 | } |
| 1243 | 1243 | return $versions_served; |
@@ -1295,7 +1295,7 @@ discard block |
||
| 1295 | 1295 | $model_names = self::model_names_with_plural_routes($version); |
| 1296 | 1296 | $collection_routes = array(); |
| 1297 | 1297 | foreach ($model_names as $model_name => $model_class_name) { |
| 1298 | - $collection_routes[ strtolower($model_name) ] = '/' . self::ee_api_namespace . $version . '/' |
|
| 1298 | + $collection_routes[strtolower($model_name)] = '/'.self::ee_api_namespace.$version.'/' |
|
| 1299 | 1299 | . EEH_Inflector::pluralize_and_lower($model_name); |
| 1300 | 1300 | } |
| 1301 | 1301 | return $collection_routes; |
@@ -1316,9 +1316,9 @@ discard block |
||
| 1316 | 1316 | $primary_keys = $model_class_name::instance()->get_combined_primary_key_fields(); |
| 1317 | 1317 | foreach ($primary_keys as $primary_key_name => $primary_key_field) { |
| 1318 | 1318 | if (count($primary_keys) > 1) { |
| 1319 | - $primary_key_items[ strtolower($model_name) ][] = $primary_key_name; |
|
| 1319 | + $primary_key_items[strtolower($model_name)][] = $primary_key_name; |
|
| 1320 | 1320 | } else { |
| 1321 | - $primary_key_items[ strtolower($model_name) ] = $primary_key_name; |
|
| 1321 | + $primary_key_items[strtolower($model_name)] = $primary_key_name; |
|
| 1322 | 1322 | } |
| 1323 | 1323 | } |
| 1324 | 1324 | } |
@@ -23,1332 +23,1332 @@ |
||
| 23 | 23 | class EED_Core_Rest_Api extends \EED_Module |
| 24 | 24 | { |
| 25 | 25 | |
| 26 | - const ee_api_namespace = Domain::API_NAMESPACE; |
|
| 27 | - |
|
| 28 | - const ee_api_namespace_for_regex = 'ee\/v([^/]*)\/'; |
|
| 29 | - |
|
| 30 | - const saved_routes_option_names = 'ee_core_routes'; |
|
| 31 | - |
|
| 32 | - /** |
|
| 33 | - * string used in _links response bodies to make them globally unique. |
|
| 34 | - * |
|
| 35 | - * @see http://v2.wp-api.org/extending/linking/ |
|
| 36 | - */ |
|
| 37 | - const ee_api_link_namespace = 'https://api.eventespresso.com/'; |
|
| 38 | - |
|
| 39 | - /** |
|
| 40 | - * @var CalculatedModelFields |
|
| 41 | - */ |
|
| 42 | - protected static $_field_calculator; |
|
| 43 | - |
|
| 44 | - |
|
| 45 | - /** |
|
| 46 | - * @return EED_Core_Rest_Api|EED_Module |
|
| 47 | - */ |
|
| 48 | - public static function instance() |
|
| 49 | - { |
|
| 50 | - self::$_field_calculator = LoaderFactory::getLoader()->load('EventEspresso\core\libraries\rest_api\CalculatedModelFields'); |
|
| 51 | - return parent::get_instance(__CLASS__); |
|
| 52 | - } |
|
| 53 | - |
|
| 54 | - |
|
| 55 | - /** |
|
| 56 | - * set_hooks - for hooking into EE Core, other modules, etc |
|
| 57 | - * |
|
| 58 | - * @access public |
|
| 59 | - * @return void |
|
| 60 | - */ |
|
| 61 | - public static function set_hooks() |
|
| 62 | - { |
|
| 63 | - self::set_hooks_both(); |
|
| 64 | - } |
|
| 65 | - |
|
| 66 | - |
|
| 67 | - /** |
|
| 68 | - * set_hooks_admin - for hooking into EE Admin Core, other modules, etc |
|
| 69 | - * |
|
| 70 | - * @access public |
|
| 71 | - * @return void |
|
| 72 | - */ |
|
| 73 | - public static function set_hooks_admin() |
|
| 74 | - { |
|
| 75 | - self::set_hooks_both(); |
|
| 76 | - } |
|
| 77 | - |
|
| 78 | - |
|
| 79 | - public static function set_hooks_both() |
|
| 80 | - { |
|
| 81 | - add_action('rest_api_init', array('EED_Core_Rest_Api', 'register_routes'), 10); |
|
| 82 | - add_action('rest_api_init', array('EED_Core_Rest_Api', 'set_hooks_rest_api'), 5); |
|
| 83 | - add_filter('rest_route_data', array('EED_Core_Rest_Api', 'hide_old_endpoints'), 10, 2); |
|
| 84 | - add_filter( |
|
| 85 | - 'rest_index', |
|
| 86 | - array('EventEspresso\core\libraries\rest_api\controllers\model\Meta', 'filterEeMetadataIntoIndex') |
|
| 87 | - ); |
|
| 88 | - EED_Core_Rest_Api::invalidate_cached_route_data_on_version_change(); |
|
| 89 | - } |
|
| 90 | - |
|
| 91 | - |
|
| 92 | - /** |
|
| 93 | - * sets up hooks which only need to be included as part of REST API requests; |
|
| 94 | - * other requests like to the frontend or admin etc don't need them |
|
| 95 | - * |
|
| 96 | - * @throws \EE_Error |
|
| 97 | - */ |
|
| 98 | - public static function set_hooks_rest_api() |
|
| 99 | - { |
|
| 100 | - // set hooks which account for changes made to the API |
|
| 101 | - EED_Core_Rest_Api::_set_hooks_for_changes(); |
|
| 102 | - } |
|
| 103 | - |
|
| 104 | - |
|
| 105 | - /** |
|
| 106 | - * public wrapper of _set_hooks_for_changes. |
|
| 107 | - * Loads all the hooks which make requests to old versions of the API |
|
| 108 | - * appear the same as they always did |
|
| 109 | - * |
|
| 110 | - * @throws EE_Error |
|
| 111 | - */ |
|
| 112 | - public static function set_hooks_for_changes() |
|
| 113 | - { |
|
| 114 | - self::_set_hooks_for_changes(); |
|
| 115 | - } |
|
| 116 | - |
|
| 117 | - |
|
| 118 | - /** |
|
| 119 | - * Loads all the hooks which make requests to old versions of the API |
|
| 120 | - * appear the same as they always did |
|
| 121 | - * |
|
| 122 | - * @throws EE_Error |
|
| 123 | - */ |
|
| 124 | - protected static function _set_hooks_for_changes() |
|
| 125 | - { |
|
| 126 | - $folder_contents = EEH_File::get_contents_of_folders(array(EE_LIBRARIES . 'rest_api' . DS . 'changes'), false); |
|
| 127 | - foreach ($folder_contents as $classname_in_namespace => $filepath) { |
|
| 128 | - // ignore the base parent class |
|
| 129 | - // and legacy named classes |
|
| 130 | - if ($classname_in_namespace === 'ChangesInBase' |
|
| 131 | - || strpos($classname_in_namespace, 'Changes_In_') === 0 |
|
| 132 | - ) { |
|
| 133 | - continue; |
|
| 134 | - } |
|
| 135 | - $full_classname = 'EventEspresso\core\libraries\rest_api\changes\\' . $classname_in_namespace; |
|
| 136 | - if (class_exists($full_classname)) { |
|
| 137 | - $instance_of_class = new $full_classname; |
|
| 138 | - if ($instance_of_class instanceof ChangesInBase) { |
|
| 139 | - $instance_of_class->setHooks(); |
|
| 140 | - } |
|
| 141 | - } |
|
| 142 | - } |
|
| 143 | - } |
|
| 144 | - |
|
| 145 | - |
|
| 146 | - /** |
|
| 147 | - * Filters the WP routes to add our EE-related ones. This takes a bit of time |
|
| 148 | - * so we actually prefer to only do it when an EE plugin is activated or upgraded |
|
| 149 | - * |
|
| 150 | - * @throws \EE_Error |
|
| 151 | - */ |
|
| 152 | - public static function register_routes() |
|
| 153 | - { |
|
| 154 | - foreach (EED_Core_Rest_Api::get_ee_route_data() as $namespace => $relative_routes) { |
|
| 155 | - foreach ($relative_routes as $relative_route => $data_for_multiple_endpoints) { |
|
| 156 | - /** |
|
| 157 | - * @var array $data_for_multiple_endpoints numerically indexed array |
|
| 158 | - * but can also contain route options like { |
|
| 159 | - * @type array $schema { |
|
| 160 | - * @type callable $schema_callback |
|
| 161 | - * @type array $callback_args arguments that will be passed to the callback, after the |
|
| 162 | - * WP_REST_Request of course |
|
| 163 | - * } |
|
| 164 | - * } |
|
| 165 | - */ |
|
| 166 | - // when registering routes, register all the endpoints' data at the same time |
|
| 167 | - $multiple_endpoint_args = array(); |
|
| 168 | - foreach ($data_for_multiple_endpoints as $endpoint_key => $data_for_single_endpoint) { |
|
| 169 | - /** |
|
| 170 | - * @var array $data_for_single_endpoint { |
|
| 171 | - * @type callable $callback |
|
| 172 | - * @type string methods |
|
| 173 | - * @type array args |
|
| 174 | - * @type array _links |
|
| 175 | - * @type array $callback_args arguments that will be passed to the callback, after the |
|
| 176 | - * WP_REST_Request of course |
|
| 177 | - * } |
|
| 178 | - */ |
|
| 179 | - // skip route options |
|
| 180 | - if (! is_numeric($endpoint_key)) { |
|
| 181 | - continue; |
|
| 182 | - } |
|
| 183 | - if (! isset($data_for_single_endpoint['callback'], $data_for_single_endpoint['methods'])) { |
|
| 184 | - throw new EE_Error( |
|
| 185 | - esc_html__( |
|
| 186 | - // @codingStandardsIgnoreStart |
|
| 187 | - 'Endpoint configuration data needs to have entries "callback" (callable) and "methods" (comma-separated list of accepts HTTP methods).', |
|
| 188 | - // @codingStandardsIgnoreEnd |
|
| 189 | - 'event_espresso' |
|
| 190 | - ) |
|
| 191 | - ); |
|
| 192 | - } |
|
| 193 | - $callback = $data_for_single_endpoint['callback']; |
|
| 194 | - $single_endpoint_args = array( |
|
| 195 | - 'methods' => $data_for_single_endpoint['methods'], |
|
| 196 | - 'args' => isset($data_for_single_endpoint['args']) ? $data_for_single_endpoint['args'] |
|
| 197 | - : array(), |
|
| 198 | - ); |
|
| 199 | - if (isset($data_for_single_endpoint['_links'])) { |
|
| 200 | - $single_endpoint_args['_links'] = $data_for_single_endpoint['_links']; |
|
| 201 | - } |
|
| 202 | - if (isset($data_for_single_endpoint['callback_args'])) { |
|
| 203 | - $callback_args = $data_for_single_endpoint['callback_args']; |
|
| 204 | - $single_endpoint_args['callback'] = function (\WP_REST_Request $request) use ( |
|
| 205 | - $callback, |
|
| 206 | - $callback_args |
|
| 207 | - ) { |
|
| 208 | - array_unshift($callback_args, $request); |
|
| 209 | - return call_user_func_array( |
|
| 210 | - $callback, |
|
| 211 | - $callback_args |
|
| 212 | - ); |
|
| 213 | - }; |
|
| 214 | - } else { |
|
| 215 | - $single_endpoint_args['callback'] = $data_for_single_endpoint['callback']; |
|
| 216 | - } |
|
| 217 | - $multiple_endpoint_args[] = $single_endpoint_args; |
|
| 218 | - } |
|
| 219 | - if (isset($data_for_multiple_endpoints['schema'])) { |
|
| 220 | - $schema_route_data = $data_for_multiple_endpoints['schema']; |
|
| 221 | - $schema_callback = $schema_route_data['schema_callback']; |
|
| 222 | - $callback_args = $schema_route_data['callback_args']; |
|
| 223 | - $multiple_endpoint_args['schema'] = function () use ($schema_callback, $callback_args) { |
|
| 224 | - return call_user_func_array( |
|
| 225 | - $schema_callback, |
|
| 226 | - $callback_args |
|
| 227 | - ); |
|
| 228 | - }; |
|
| 229 | - } |
|
| 230 | - register_rest_route( |
|
| 231 | - $namespace, |
|
| 232 | - $relative_route, |
|
| 233 | - $multiple_endpoint_args |
|
| 234 | - ); |
|
| 235 | - } |
|
| 236 | - } |
|
| 237 | - } |
|
| 238 | - |
|
| 239 | - |
|
| 240 | - /** |
|
| 241 | - * Checks if there was a version change or something that merits invalidating the cached |
|
| 242 | - * route data. If so, invalidates the cached route data so that it gets refreshed |
|
| 243 | - * next time the WP API is used |
|
| 244 | - */ |
|
| 245 | - public static function invalidate_cached_route_data_on_version_change() |
|
| 246 | - { |
|
| 247 | - if (EE_System::instance()->detect_req_type() !== EE_System::req_type_normal) { |
|
| 248 | - EED_Core_Rest_Api::invalidate_cached_route_data(); |
|
| 249 | - } |
|
| 250 | - foreach (EE_Registry::instance()->addons as $addon) { |
|
| 251 | - if ($addon instanceof EE_Addon && $addon->detect_req_type() !== EE_System::req_type_normal) { |
|
| 252 | - EED_Core_Rest_Api::invalidate_cached_route_data(); |
|
| 253 | - } |
|
| 254 | - } |
|
| 255 | - } |
|
| 256 | - |
|
| 257 | - |
|
| 258 | - /** |
|
| 259 | - * Removes the cached route data so it will get refreshed next time the WP API is used |
|
| 260 | - */ |
|
| 261 | - public static function invalidate_cached_route_data() |
|
| 262 | - { |
|
| 263 | - // delete the saved EE REST API routes |
|
| 264 | - foreach (EED_Core_Rest_Api::versions_served() as $version => $hidden) { |
|
| 265 | - delete_option(EED_Core_Rest_Api::saved_routes_option_names . $version); |
|
| 266 | - } |
|
| 267 | - } |
|
| 268 | - |
|
| 269 | - |
|
| 270 | - /** |
|
| 271 | - * Gets the EE route data |
|
| 272 | - * |
|
| 273 | - * @return array top-level key is the namespace, next-level key is the route and its value is array{ |
|
| 274 | - * @throws \EE_Error |
|
| 275 | - * @type string|array $callback |
|
| 276 | - * @type string $methods |
|
| 277 | - * @type boolean $hidden_endpoint |
|
| 278 | - * } |
|
| 279 | - */ |
|
| 280 | - public static function get_ee_route_data() |
|
| 281 | - { |
|
| 282 | - $ee_routes = array(); |
|
| 283 | - foreach (self::versions_served() as $version => $hidden_endpoints) { |
|
| 284 | - $ee_routes[ self::ee_api_namespace . $version ] = self::_get_ee_route_data_for_version( |
|
| 285 | - $version, |
|
| 286 | - $hidden_endpoints |
|
| 287 | - ); |
|
| 288 | - } |
|
| 289 | - return $ee_routes; |
|
| 290 | - } |
|
| 291 | - |
|
| 292 | - |
|
| 293 | - /** |
|
| 294 | - * Gets the EE route data from the wp options if it exists already, |
|
| 295 | - * otherwise re-generates it and saves it to the option |
|
| 296 | - * |
|
| 297 | - * @param string $version |
|
| 298 | - * @param boolean $hidden_endpoints |
|
| 299 | - * @return array |
|
| 300 | - * @throws \EE_Error |
|
| 301 | - */ |
|
| 302 | - protected static function _get_ee_route_data_for_version($version, $hidden_endpoints = false) |
|
| 303 | - { |
|
| 304 | - $ee_routes = get_option(self::saved_routes_option_names . $version, null); |
|
| 305 | - if (! $ee_routes || EED_Core_Rest_Api::debugMode()) { |
|
| 306 | - $ee_routes = self::_save_ee_route_data_for_version($version, $hidden_endpoints); |
|
| 307 | - } |
|
| 308 | - return $ee_routes; |
|
| 309 | - } |
|
| 310 | - |
|
| 311 | - |
|
| 312 | - /** |
|
| 313 | - * Saves the EE REST API route data to a wp option and returns it |
|
| 314 | - * |
|
| 315 | - * @param string $version |
|
| 316 | - * @param boolean $hidden_endpoints |
|
| 317 | - * @return mixed|null |
|
| 318 | - * @throws \EE_Error |
|
| 319 | - */ |
|
| 320 | - protected static function _save_ee_route_data_for_version($version, $hidden_endpoints = false) |
|
| 321 | - { |
|
| 322 | - $instance = self::instance(); |
|
| 323 | - $routes = apply_filters( |
|
| 324 | - 'EED_Core_Rest_Api__save_ee_route_data_for_version__routes', |
|
| 325 | - array_replace_recursive( |
|
| 326 | - $instance->_get_config_route_data_for_version($version, $hidden_endpoints), |
|
| 327 | - $instance->_get_meta_route_data_for_version($version, $hidden_endpoints), |
|
| 328 | - $instance->_get_model_route_data_for_version($version, $hidden_endpoints), |
|
| 329 | - $instance->_get_rpc_route_data_for_version($version, $hidden_endpoints) |
|
| 330 | - ) |
|
| 331 | - ); |
|
| 332 | - $option_name = self::saved_routes_option_names . $version; |
|
| 333 | - if (get_option($option_name)) { |
|
| 334 | - update_option($option_name, $routes, true); |
|
| 335 | - } else { |
|
| 336 | - add_option($option_name, $routes, null, 'no'); |
|
| 337 | - } |
|
| 338 | - return $routes; |
|
| 339 | - } |
|
| 340 | - |
|
| 341 | - |
|
| 342 | - /** |
|
| 343 | - * Calculates all the EE routes and saves it to a WordPress option so we don't |
|
| 344 | - * need to calculate it on every request |
|
| 345 | - * |
|
| 346 | - * @deprecated since version 4.9.1 |
|
| 347 | - * @return void |
|
| 348 | - */ |
|
| 349 | - public static function save_ee_routes() |
|
| 350 | - { |
|
| 351 | - if (EE_Maintenance_Mode::instance()->models_can_query()) { |
|
| 352 | - $instance = self::instance(); |
|
| 353 | - $routes = apply_filters( |
|
| 354 | - 'EED_Core_Rest_Api__save_ee_routes__routes', |
|
| 355 | - array_replace_recursive( |
|
| 356 | - $instance->_register_config_routes(), |
|
| 357 | - $instance->_register_meta_routes(), |
|
| 358 | - $instance->_register_model_routes(), |
|
| 359 | - $instance->_register_rpc_routes() |
|
| 360 | - ) |
|
| 361 | - ); |
|
| 362 | - update_option(self::saved_routes_option_names, $routes, true); |
|
| 363 | - } |
|
| 364 | - } |
|
| 365 | - |
|
| 366 | - |
|
| 367 | - /** |
|
| 368 | - * Gets all the route information relating to EE models |
|
| 369 | - * |
|
| 370 | - * @return array @see get_ee_route_data |
|
| 371 | - * @deprecated since version 4.9.1 |
|
| 372 | - */ |
|
| 373 | - protected function _register_model_routes() |
|
| 374 | - { |
|
| 375 | - $model_routes = array(); |
|
| 376 | - foreach (self::versions_served() as $version => $hidden_endpoint) { |
|
| 377 | - $model_routes[ EED_Core_Rest_Api::ee_api_namespace |
|
| 378 | - . $version ] = $this->_get_config_route_data_for_version($version, $hidden_endpoint); |
|
| 379 | - } |
|
| 380 | - return $model_routes; |
|
| 381 | - } |
|
| 382 | - |
|
| 383 | - |
|
| 384 | - /** |
|
| 385 | - * Decides whether or not to add write endpoints for this model. |
|
| 386 | - * |
|
| 387 | - * Currently, this defaults to exclude all global tables and models |
|
| 388 | - * which would allow inserting WP core data (we don't want to duplicate |
|
| 389 | - * what WP API does, as it's unnecessary, extra work, and potentially extra bugs) |
|
| 390 | - * |
|
| 391 | - * @param EEM_Base $model |
|
| 392 | - * @return bool |
|
| 393 | - */ |
|
| 394 | - public static function should_have_write_endpoints(EEM_Base $model) |
|
| 395 | - { |
|
| 396 | - if ($model->is_wp_core_model()) { |
|
| 397 | - return false; |
|
| 398 | - } |
|
| 399 | - foreach ($model->get_tables() as $table) { |
|
| 400 | - if ($table->is_global()) { |
|
| 401 | - return false; |
|
| 402 | - } |
|
| 403 | - } |
|
| 404 | - return true; |
|
| 405 | - } |
|
| 406 | - |
|
| 407 | - |
|
| 408 | - /** |
|
| 409 | - * Gets the names of all models which should have plural routes (eg `ee/v4.8.36/events`) |
|
| 410 | - * in this versioned namespace of EE4 |
|
| 411 | - * |
|
| 412 | - * @param $version |
|
| 413 | - * @return array keys are model names (eg 'Event') and values ar either classnames (eg 'EEM_Event') |
|
| 414 | - */ |
|
| 415 | - public static function model_names_with_plural_routes($version) |
|
| 416 | - { |
|
| 417 | - $model_version_info = new ModelVersionInfo($version); |
|
| 418 | - $models_to_register = $model_version_info->modelsForRequestedVersion(); |
|
| 419 | - // let's not bother having endpoints for extra metas |
|
| 420 | - unset( |
|
| 421 | - $models_to_register['Extra_Meta'], |
|
| 422 | - $models_to_register['Extra_Join'], |
|
| 423 | - $models_to_register['Post_Meta'] |
|
| 424 | - ); |
|
| 425 | - return apply_filters( |
|
| 426 | - 'FHEE__EED_Core_REST_API___register_model_routes', |
|
| 427 | - $models_to_register |
|
| 428 | - ); |
|
| 429 | - } |
|
| 430 | - |
|
| 431 | - |
|
| 432 | - /** |
|
| 433 | - * Gets the route data for EE models in the specified version |
|
| 434 | - * |
|
| 435 | - * @param string $version |
|
| 436 | - * @param boolean $hidden_endpoint |
|
| 437 | - * @return array |
|
| 438 | - * @throws EE_Error |
|
| 439 | - */ |
|
| 440 | - protected function _get_model_route_data_for_version($version, $hidden_endpoint = false) |
|
| 441 | - { |
|
| 442 | - $model_routes = array(); |
|
| 443 | - $model_version_info = new ModelVersionInfo($version); |
|
| 444 | - foreach (EED_Core_Rest_Api::model_names_with_plural_routes($version) as $model_name => $model_classname) { |
|
| 445 | - $model = \EE_Registry::instance()->load_model($model_name); |
|
| 446 | - // if this isn't a valid model then let's skip iterate to the next item in the loop. |
|
| 447 | - if (! $model instanceof EEM_Base) { |
|
| 448 | - continue; |
|
| 449 | - } |
|
| 450 | - // yes we could just register one route for ALL models, but then they wouldn't show up in the index |
|
| 451 | - $plural_model_route = EED_Core_Rest_Api::get_collection_route($model); |
|
| 452 | - $singular_model_route = EED_Core_Rest_Api::get_entity_route($model, '(?P<id>[^\/]+)'); |
|
| 453 | - $model_routes[ $plural_model_route ] = array( |
|
| 454 | - array( |
|
| 455 | - 'callback' => array( |
|
| 456 | - 'EventEspresso\core\libraries\rest_api\controllers\model\Read', |
|
| 457 | - 'handleRequestGetAll', |
|
| 458 | - ), |
|
| 459 | - 'callback_args' => array($version, $model_name), |
|
| 460 | - 'methods' => WP_REST_Server::READABLE, |
|
| 461 | - 'hidden_endpoint' => $hidden_endpoint, |
|
| 462 | - 'args' => $this->_get_read_query_params($model, $version), |
|
| 463 | - '_links' => array( |
|
| 464 | - 'self' => rest_url(EED_Core_Rest_Api::ee_api_namespace . $version . $singular_model_route), |
|
| 465 | - ), |
|
| 466 | - ), |
|
| 467 | - 'schema' => array( |
|
| 468 | - 'schema_callback' => array( |
|
| 469 | - 'EventEspresso\core\libraries\rest_api\controllers\model\Read', |
|
| 470 | - 'handleSchemaRequest', |
|
| 471 | - ), |
|
| 472 | - 'callback_args' => array($version, $model_name), |
|
| 473 | - ), |
|
| 474 | - ); |
|
| 475 | - $model_routes[ $singular_model_route ] = array( |
|
| 476 | - array( |
|
| 477 | - 'callback' => array( |
|
| 478 | - 'EventEspresso\core\libraries\rest_api\controllers\model\Read', |
|
| 479 | - 'handleRequestGetOne', |
|
| 480 | - ), |
|
| 481 | - 'callback_args' => array($version, $model_name), |
|
| 482 | - 'methods' => WP_REST_Server::READABLE, |
|
| 483 | - 'hidden_endpoint' => $hidden_endpoint, |
|
| 484 | - 'args' => $this->_get_response_selection_query_params($model, $version, true), |
|
| 485 | - ), |
|
| 486 | - ); |
|
| 487 | - if (apply_filters( |
|
| 488 | - 'FHEE__EED_Core_Rest_Api___get_model_route_data_for_version__add_write_endpoints', |
|
| 489 | - EED_Core_Rest_Api::should_have_write_endpoints($model), |
|
| 490 | - $model |
|
| 491 | - )) { |
|
| 492 | - $model_routes[ $plural_model_route ][] = array( |
|
| 493 | - 'callback' => array( |
|
| 494 | - 'EventEspresso\core\libraries\rest_api\controllers\model\Write', |
|
| 495 | - 'handleRequestInsert', |
|
| 496 | - ), |
|
| 497 | - 'callback_args' => array($version, $model_name), |
|
| 498 | - 'methods' => WP_REST_Server::CREATABLE, |
|
| 499 | - 'hidden_endpoint' => $hidden_endpoint, |
|
| 500 | - 'args' => $this->_get_write_params($model_name, $model_version_info, true), |
|
| 501 | - ); |
|
| 502 | - $model_routes[ $singular_model_route ] = array_merge( |
|
| 503 | - $model_routes[ $singular_model_route ], |
|
| 504 | - array( |
|
| 505 | - array( |
|
| 506 | - 'callback' => array( |
|
| 507 | - 'EventEspresso\core\libraries\rest_api\controllers\model\Write', |
|
| 508 | - 'handleRequestUpdate', |
|
| 509 | - ), |
|
| 510 | - 'callback_args' => array($version, $model_name), |
|
| 511 | - 'methods' => WP_REST_Server::EDITABLE, |
|
| 512 | - 'hidden_endpoint' => $hidden_endpoint, |
|
| 513 | - 'args' => $this->_get_write_params($model_name, $model_version_info), |
|
| 514 | - ), |
|
| 515 | - array( |
|
| 516 | - 'callback' => array( |
|
| 517 | - 'EventEspresso\core\libraries\rest_api\controllers\model\Write', |
|
| 518 | - 'handleRequestDelete', |
|
| 519 | - ), |
|
| 520 | - 'callback_args' => array($version, $model_name), |
|
| 521 | - 'methods' => WP_REST_Server::DELETABLE, |
|
| 522 | - 'hidden_endpoint' => $hidden_endpoint, |
|
| 523 | - 'args' => $this->_get_delete_query_params($model, $version), |
|
| 524 | - ), |
|
| 525 | - ) |
|
| 526 | - ); |
|
| 527 | - } |
|
| 528 | - foreach ($model->relation_settings() as $relation_name => $relation_obj) { |
|
| 529 | - $related_route = EED_Core_Rest_Api::get_relation_route_via( |
|
| 530 | - $model, |
|
| 531 | - '(?P<id>[^\/]+)', |
|
| 532 | - $relation_obj |
|
| 533 | - ); |
|
| 534 | - $model_routes[ $related_route ] = array( |
|
| 535 | - array( |
|
| 536 | - 'callback' => array( |
|
| 537 | - 'EventEspresso\core\libraries\rest_api\controllers\model\Read', |
|
| 538 | - 'handleRequestGetRelated', |
|
| 539 | - ), |
|
| 540 | - 'callback_args' => array($version, $model_name, $relation_name), |
|
| 541 | - 'methods' => WP_REST_Server::READABLE, |
|
| 542 | - 'hidden_endpoint' => $hidden_endpoint, |
|
| 543 | - 'args' => $this->_get_read_query_params($relation_obj->get_other_model(), $version), |
|
| 544 | - ), |
|
| 545 | - ); |
|
| 546 | - |
|
| 547 | - $related_write_route = $related_route . '/' . '(?P<related_id>[^\/]+)'; |
|
| 548 | - $model_routes[ $related_write_route ] = array( |
|
| 549 | - array( |
|
| 550 | - 'callback' => array( |
|
| 551 | - 'EventEspresso\core\libraries\rest_api\controllers\model\Write', |
|
| 552 | - 'handleRequestAddRelation', |
|
| 553 | - ), |
|
| 554 | - 'callback_args' => array($version, $model_name, $relation_name), |
|
| 555 | - 'methods' => WP_REST_Server::EDITABLE, |
|
| 556 | - 'hidden_endpoint' => $hidden_endpoint, |
|
| 557 | - 'args' => $this->_get_add_relation_query_params($model, $relation_obj->get_other_model(), $version) |
|
| 558 | - ), |
|
| 559 | - array( |
|
| 560 | - 'callback' => array( |
|
| 561 | - 'EventEspresso\core\libraries\rest_api\controllers\model\Write', |
|
| 562 | - 'handleRequestRemoveRelation', |
|
| 563 | - ), |
|
| 564 | - 'callback_args' => array($version, $model_name, $relation_name), |
|
| 565 | - 'methods' => WP_REST_Server::DELETABLE, |
|
| 566 | - 'hidden_endpoint' => $hidden_endpoint, |
|
| 567 | - 'args' => array() |
|
| 568 | - ), |
|
| 569 | - ); |
|
| 570 | - } |
|
| 571 | - } |
|
| 572 | - return $model_routes; |
|
| 573 | - } |
|
| 574 | - |
|
| 575 | - |
|
| 576 | - /** |
|
| 577 | - * Gets the relative URI to a model's REST API plural route, after the EE4 versioned namespace, |
|
| 578 | - * excluding the preceding slash. |
|
| 579 | - * Eg you pass get_plural_route_to('Event') = 'events' |
|
| 580 | - * |
|
| 581 | - * @param EEM_Base $model |
|
| 582 | - * @return string |
|
| 583 | - */ |
|
| 584 | - public static function get_collection_route(EEM_Base $model) |
|
| 585 | - { |
|
| 586 | - return EEH_Inflector::pluralize_and_lower($model->get_this_model_name()); |
|
| 587 | - } |
|
| 588 | - |
|
| 589 | - |
|
| 590 | - /** |
|
| 591 | - * Gets the relative URI to a model's REST API singular route, after the EE4 versioned namespace, |
|
| 592 | - * excluding the preceding slash. |
|
| 593 | - * Eg you pass get_plural_route_to('Event', 12) = 'events/12' |
|
| 594 | - * |
|
| 595 | - * @param EEM_Base $model eg Event or Venue |
|
| 596 | - * @param string $id |
|
| 597 | - * @return string |
|
| 598 | - */ |
|
| 599 | - public static function get_entity_route($model, $id) |
|
| 600 | - { |
|
| 601 | - return EED_Core_Rest_Api::get_collection_route($model) . '/' . $id; |
|
| 602 | - } |
|
| 603 | - |
|
| 604 | - |
|
| 605 | - /** |
|
| 606 | - * Gets the relative URI to a model's REST API singular route, after the EE4 versioned namespace, |
|
| 607 | - * excluding the preceding slash. |
|
| 608 | - * Eg you pass get_plural_route_to('Event', 12) = 'events/12' |
|
| 609 | - * |
|
| 610 | - * @param EEM_Base $model eg Event or Venue |
|
| 611 | - * @param string $id |
|
| 612 | - * @param EE_Model_Relation_Base $relation_obj |
|
| 613 | - * @return string |
|
| 614 | - */ |
|
| 615 | - public static function get_relation_route_via(EEM_Base $model, $id, EE_Model_Relation_Base $relation_obj) |
|
| 616 | - { |
|
| 617 | - $related_model_name_endpoint_part = ModelRead::getRelatedEntityName( |
|
| 618 | - $relation_obj->get_other_model()->get_this_model_name(), |
|
| 619 | - $relation_obj |
|
| 620 | - ); |
|
| 621 | - return EED_Core_Rest_Api::get_entity_route($model, $id) . '/' . $related_model_name_endpoint_part; |
|
| 622 | - } |
|
| 623 | - |
|
| 624 | - |
|
| 625 | - /** |
|
| 626 | - * Adds onto the $relative_route the EE4 REST API versioned namespace. |
|
| 627 | - * Eg if given '4.8.36' and 'events', will return 'ee/v4.8.36/events' |
|
| 628 | - * |
|
| 629 | - * @param string $relative_route |
|
| 630 | - * @param string $version |
|
| 631 | - * @return string |
|
| 632 | - */ |
|
| 633 | - public static function get_versioned_route_to($relative_route, $version = '4.8.36') |
|
| 634 | - { |
|
| 635 | - return '/' . EED_Core_Rest_Api::ee_api_namespace . $version . '/' . $relative_route; |
|
| 636 | - } |
|
| 637 | - |
|
| 638 | - |
|
| 639 | - /** |
|
| 640 | - * Adds all the RPC-style routes (remote procedure call-like routes, ie |
|
| 641 | - * routes that don't conform to the traditional REST CRUD-style). |
|
| 642 | - * |
|
| 643 | - * @deprecated since 4.9.1 |
|
| 644 | - */ |
|
| 645 | - protected function _register_rpc_routes() |
|
| 646 | - { |
|
| 647 | - $routes = array(); |
|
| 648 | - foreach (self::versions_served() as $version => $hidden_endpoint) { |
|
| 649 | - $routes[ self::ee_api_namespace . $version ] = $this->_get_rpc_route_data_for_version( |
|
| 650 | - $version, |
|
| 651 | - $hidden_endpoint |
|
| 652 | - ); |
|
| 653 | - } |
|
| 654 | - return $routes; |
|
| 655 | - } |
|
| 656 | - |
|
| 657 | - |
|
| 658 | - /** |
|
| 659 | - * @param string $version |
|
| 660 | - * @param boolean $hidden_endpoint |
|
| 661 | - * @return array |
|
| 662 | - */ |
|
| 663 | - protected function _get_rpc_route_data_for_version($version, $hidden_endpoint = false) |
|
| 664 | - { |
|
| 665 | - $this_versions_routes = array(); |
|
| 666 | - // checkin endpoint |
|
| 667 | - $this_versions_routes['registrations/(?P<REG_ID>\d+)/toggle_checkin_for_datetime/(?P<DTT_ID>\d+)'] = array( |
|
| 668 | - array( |
|
| 669 | - 'callback' => array( |
|
| 670 | - 'EventEspresso\core\libraries\rest_api\controllers\rpc\Checkin', |
|
| 671 | - 'handleRequestToggleCheckin', |
|
| 672 | - ), |
|
| 673 | - 'methods' => WP_REST_Server::CREATABLE, |
|
| 674 | - 'hidden_endpoint' => $hidden_endpoint, |
|
| 675 | - 'args' => array( |
|
| 676 | - 'force' => array( |
|
| 677 | - 'required' => false, |
|
| 678 | - 'default' => false, |
|
| 679 | - 'description' => __( |
|
| 680 | - // @codingStandardsIgnoreStart |
|
| 681 | - 'Whether to force toggle checkin, or to verify the registration status and allowed ticket uses', |
|
| 682 | - // @codingStandardsIgnoreEnd |
|
| 683 | - 'event_espresso' |
|
| 684 | - ), |
|
| 685 | - ), |
|
| 686 | - ), |
|
| 687 | - 'callback_args' => array($version), |
|
| 688 | - ), |
|
| 689 | - ); |
|
| 690 | - return apply_filters( |
|
| 691 | - 'FHEE__EED_Core_Rest_Api___register_rpc_routes__this_versions_routes', |
|
| 692 | - $this_versions_routes, |
|
| 693 | - $version, |
|
| 694 | - $hidden_endpoint |
|
| 695 | - ); |
|
| 696 | - } |
|
| 697 | - |
|
| 698 | - |
|
| 699 | - /** |
|
| 700 | - * Gets the query params that can be used when request one or many |
|
| 701 | - * |
|
| 702 | - * @param EEM_Base $model |
|
| 703 | - * @param string $version |
|
| 704 | - * @return array |
|
| 705 | - */ |
|
| 706 | - protected function _get_response_selection_query_params(\EEM_Base $model, $version, $single_only = false) |
|
| 707 | - { |
|
| 708 | - $query_params = array( |
|
| 709 | - 'include' => array( |
|
| 710 | - 'required' => false, |
|
| 711 | - 'default' => '*', |
|
| 712 | - 'type' => 'string', |
|
| 713 | - ), |
|
| 714 | - 'calculate' => array( |
|
| 715 | - 'required' => false, |
|
| 716 | - 'default' => '', |
|
| 717 | - 'enum' => self::$_field_calculator->retrieveCalculatedFieldsForModel($model), |
|
| 718 | - 'type' => 'string', |
|
| 719 | - // because we accept a CSV'd list of the enumerated strings, WP core validation and sanitization |
|
| 720 | - // freaks out. We'll just validate this argument while handling the request |
|
| 721 | - 'validate_callback' => null, |
|
| 722 | - 'sanitize_callback' => null, |
|
| 723 | - ), |
|
| 724 | - 'password' => array( |
|
| 725 | - 'required' => false, |
|
| 726 | - 'default' => '', |
|
| 727 | - 'type' => 'string' |
|
| 728 | - ) |
|
| 729 | - ); |
|
| 730 | - return apply_filters( |
|
| 731 | - 'FHEE__EED_Core_Rest_Api___get_response_selection_query_params', |
|
| 732 | - $query_params, |
|
| 733 | - $model, |
|
| 734 | - $version |
|
| 735 | - ); |
|
| 736 | - } |
|
| 737 | - |
|
| 738 | - |
|
| 739 | - /** |
|
| 740 | - * Gets the parameters acceptable for delete requests |
|
| 741 | - * |
|
| 742 | - * @param \EEM_Base $model |
|
| 743 | - * @param string $version |
|
| 744 | - * @return array |
|
| 745 | - */ |
|
| 746 | - protected function _get_delete_query_params(\EEM_Base $model, $version) |
|
| 747 | - { |
|
| 748 | - $params_for_delete = array( |
|
| 749 | - 'allow_blocking' => array( |
|
| 750 | - 'required' => false, |
|
| 751 | - 'default' => true, |
|
| 752 | - 'type' => 'boolean', |
|
| 753 | - ), |
|
| 754 | - ); |
|
| 755 | - $params_for_delete['force'] = array( |
|
| 756 | - 'required' => false, |
|
| 757 | - 'default' => false, |
|
| 758 | - 'type' => 'boolean', |
|
| 759 | - ); |
|
| 760 | - return apply_filters( |
|
| 761 | - 'FHEE__EED_Core_Rest_Api___get_delete_query_params', |
|
| 762 | - $params_for_delete, |
|
| 763 | - $model, |
|
| 764 | - $version |
|
| 765 | - ); |
|
| 766 | - } |
|
| 767 | - |
|
| 768 | - protected function _get_add_relation_query_params(\EEM_Base $source_model, \EEM_Base $related_model, $version) |
|
| 769 | - { |
|
| 770 | - // if they're related through a HABTM relation, check for any non-FKs |
|
| 771 | - $all_relation_settings = $source_model->relation_settings(); |
|
| 772 | - $relation_settings = $all_relation_settings[ $related_model->get_this_model_name() ]; |
|
| 773 | - $params = array(); |
|
| 774 | - if ($relation_settings instanceof EE_HABTM_Relation && $relation_settings->hasNonKeyFields()) { |
|
| 775 | - foreach ($relation_settings->getNonKeyFields() as $field) { |
|
| 776 | - /* @var $field EE_Model_Field_Base */ |
|
| 777 | - $params[ $field->get_name() ] = array( |
|
| 778 | - 'required' => ! $field->is_nullable(), |
|
| 779 | - 'default' => ModelDataTranslator::prepareFieldValueForJson($field, $field->get_default_value(), $version), |
|
| 780 | - 'type' => $field->getSchemaType(), |
|
| 781 | - 'validate_callbaack' => null, |
|
| 782 | - 'sanitize_callback' => null |
|
| 783 | - ); |
|
| 784 | - } |
|
| 785 | - } |
|
| 786 | - return $params; |
|
| 787 | - } |
|
| 788 | - |
|
| 789 | - |
|
| 790 | - /** |
|
| 791 | - * Gets info about reading query params that are acceptable |
|
| 792 | - * |
|
| 793 | - * @param \EEM_Base $model eg 'Event' or 'Venue' |
|
| 794 | - * @param string $version |
|
| 795 | - * @return array describing the args acceptable when querying this model |
|
| 796 | - * @throws EE_Error |
|
| 797 | - */ |
|
| 798 | - protected function _get_read_query_params(\EEM_Base $model, $version) |
|
| 799 | - { |
|
| 800 | - $default_orderby = array(); |
|
| 801 | - foreach ($model->get_combined_primary_key_fields() as $key_field) { |
|
| 802 | - $default_orderby[ $key_field->get_name() ] = 'ASC'; |
|
| 803 | - } |
|
| 804 | - return array_merge( |
|
| 805 | - $this->_get_response_selection_query_params($model, $version), |
|
| 806 | - array( |
|
| 807 | - 'where' => array( |
|
| 808 | - 'required' => false, |
|
| 809 | - 'default' => array(), |
|
| 810 | - 'type' => 'object', |
|
| 811 | - // because we accept an almost infinite list of possible where conditions, WP |
|
| 812 | - // core validation and sanitization freaks out. We'll just validate this argument |
|
| 813 | - // while handling the request |
|
| 814 | - 'validate_callback' => null, |
|
| 815 | - 'sanitize_callback' => null, |
|
| 816 | - ), |
|
| 817 | - 'limit' => array( |
|
| 818 | - 'required' => false, |
|
| 819 | - 'default' => EED_Core_Rest_Api::get_default_query_limit(), |
|
| 820 | - 'type' => array( |
|
| 821 | - 'array', |
|
| 822 | - 'string', |
|
| 823 | - 'integer', |
|
| 824 | - ), |
|
| 825 | - // because we accept a variety of types, WP core validation and sanitization |
|
| 826 | - // freaks out. We'll just validate this argument while handling the request |
|
| 827 | - 'validate_callback' => null, |
|
| 828 | - 'sanitize_callback' => null, |
|
| 829 | - ), |
|
| 830 | - 'order_by' => array( |
|
| 831 | - 'required' => false, |
|
| 832 | - 'default' => $default_orderby, |
|
| 833 | - 'type' => array( |
|
| 834 | - 'object', |
|
| 835 | - 'string', |
|
| 836 | - ),// because we accept a variety of types, WP core validation and sanitization |
|
| 837 | - // freaks out. We'll just validate this argument while handling the request |
|
| 838 | - 'validate_callback' => null, |
|
| 839 | - 'sanitize_callback' => null, |
|
| 840 | - ), |
|
| 841 | - 'group_by' => array( |
|
| 842 | - 'required' => false, |
|
| 843 | - 'default' => null, |
|
| 844 | - 'type' => array( |
|
| 845 | - 'object', |
|
| 846 | - 'string', |
|
| 847 | - ), |
|
| 848 | - // because we accept an almost infinite list of possible groupings, |
|
| 849 | - // WP core validation and sanitization |
|
| 850 | - // freaks out. We'll just validate this argument while handling the request |
|
| 851 | - 'validate_callback' => null, |
|
| 852 | - 'sanitize_callback' => null, |
|
| 853 | - ), |
|
| 854 | - 'having' => array( |
|
| 855 | - 'required' => false, |
|
| 856 | - 'default' => null, |
|
| 857 | - 'type' => 'object', |
|
| 858 | - // because we accept an almost infinite list of possible where conditions, WP |
|
| 859 | - // core validation and sanitization freaks out. We'll just validate this argument |
|
| 860 | - // while handling the request |
|
| 861 | - 'validate_callback' => null, |
|
| 862 | - 'sanitize_callback' => null, |
|
| 863 | - ), |
|
| 864 | - 'caps' => array( |
|
| 865 | - 'required' => false, |
|
| 866 | - 'default' => EEM_Base::caps_read, |
|
| 867 | - 'type' => 'string', |
|
| 868 | - 'enum' => array( |
|
| 869 | - EEM_Base::caps_read, |
|
| 870 | - EEM_Base::caps_read_admin, |
|
| 871 | - EEM_Base::caps_edit, |
|
| 872 | - EEM_Base::caps_delete, |
|
| 873 | - ), |
|
| 874 | - ), |
|
| 875 | - ) |
|
| 876 | - ); |
|
| 877 | - } |
|
| 878 | - |
|
| 879 | - |
|
| 880 | - /** |
|
| 881 | - * Gets parameter information for a model regarding writing data |
|
| 882 | - * |
|
| 883 | - * @param string $model_name |
|
| 884 | - * @param ModelVersionInfo $model_version_info |
|
| 885 | - * @param boolean $create whether this is for request to create (in |
|
| 886 | - * which case we need all required params) or |
|
| 887 | - * just to update (in which case we don't |
|
| 888 | - * need those on every request) |
|
| 889 | - * @return array |
|
| 890 | - */ |
|
| 891 | - protected function _get_write_params( |
|
| 892 | - $model_name, |
|
| 893 | - ModelVersionInfo $model_version_info, |
|
| 894 | - $create = false |
|
| 895 | - ) { |
|
| 896 | - $model = EE_Registry::instance()->load_model($model_name); |
|
| 897 | - $fields = $model_version_info->fieldsOnModelInThisVersion($model); |
|
| 898 | - $args_info = array(); |
|
| 899 | - foreach ($fields as $field_name => $field_obj) { |
|
| 900 | - if ($field_obj->is_auto_increment()) { |
|
| 901 | - // totally ignore auto increment IDs |
|
| 902 | - continue; |
|
| 903 | - } |
|
| 904 | - $arg_info = $field_obj->getSchema(); |
|
| 905 | - $required = $create && ! $field_obj->is_nullable() && $field_obj->get_default_value() === null; |
|
| 906 | - $arg_info['required'] = $required; |
|
| 907 | - // remove the read-only flag. If it were read-only we wouldn't list it as an argument while writing, right? |
|
| 908 | - unset($arg_info['readonly']); |
|
| 909 | - $schema_properties = $field_obj->getSchemaProperties(); |
|
| 910 | - if (isset($schema_properties['raw']) |
|
| 911 | - && $field_obj->getSchemaType() === 'object' |
|
| 912 | - ) { |
|
| 913 | - // if there's a "raw" form of this argument, use those properties instead |
|
| 914 | - $arg_info = array_replace( |
|
| 915 | - $arg_info, |
|
| 916 | - $schema_properties['raw'] |
|
| 917 | - ); |
|
| 918 | - } |
|
| 919 | - $arg_info['default'] = ModelDataTranslator::prepareFieldValueForJson( |
|
| 920 | - $field_obj, |
|
| 921 | - $field_obj->get_default_value(), |
|
| 922 | - $model_version_info->requestedVersion() |
|
| 923 | - ); |
|
| 924 | - // we do our own validation and sanitization within the controller |
|
| 925 | - if (function_exists('rest_validate_value_from_schema')) { |
|
| 926 | - $sanitize_callback = array( |
|
| 927 | - 'EED_Core_Rest_Api', |
|
| 928 | - 'default_sanitize_callback', |
|
| 929 | - ); |
|
| 930 | - } else { |
|
| 931 | - $sanitize_callback = null; |
|
| 932 | - } |
|
| 933 | - $arg_info['sanitize_callback'] = $sanitize_callback; |
|
| 934 | - $args_info[ $field_name ] = $arg_info; |
|
| 935 | - if ($field_obj instanceof EE_Datetime_Field) { |
|
| 936 | - $gmt_arg_info = $arg_info; |
|
| 937 | - $gmt_arg_info['description'] = sprintf( |
|
| 938 | - esc_html__( |
|
| 939 | - '%1$s - the value for this field in UTC. Ignored if %2$s is provided.', |
|
| 940 | - 'event_espresso' |
|
| 941 | - ), |
|
| 942 | - $field_obj->get_nicename(), |
|
| 943 | - $field_name |
|
| 944 | - ); |
|
| 945 | - $args_info[ $field_name . '_gmt' ] = $gmt_arg_info; |
|
| 946 | - } |
|
| 947 | - } |
|
| 948 | - return $args_info; |
|
| 949 | - } |
|
| 950 | - |
|
| 951 | - |
|
| 952 | - /** |
|
| 953 | - * Replacement for WP API's 'rest_parse_request_arg'. |
|
| 954 | - * If the value is blank but not required, don't bother validating it. |
|
| 955 | - * Also, it uses our email validation instead of WP API's default. |
|
| 956 | - * |
|
| 957 | - * @param $value |
|
| 958 | - * @param WP_REST_Request $request |
|
| 959 | - * @param $param |
|
| 960 | - * @return bool|true|WP_Error |
|
| 961 | - * @throws InvalidArgumentException |
|
| 962 | - * @throws InvalidInterfaceException |
|
| 963 | - * @throws InvalidDataTypeException |
|
| 964 | - */ |
|
| 965 | - public static function default_sanitize_callback($value, WP_REST_Request $request, $param) |
|
| 966 | - { |
|
| 967 | - $attributes = $request->get_attributes(); |
|
| 968 | - if (! isset($attributes['args'][ $param ]) |
|
| 969 | - || ! is_array($attributes['args'][ $param ])) { |
|
| 970 | - $validation_result = true; |
|
| 971 | - } else { |
|
| 972 | - $args = $attributes['args'][ $param ]; |
|
| 973 | - if (( |
|
| 974 | - $value === '' |
|
| 975 | - || $value === null |
|
| 976 | - ) |
|
| 977 | - && (! isset($args['required']) |
|
| 978 | - || $args['required'] === false |
|
| 979 | - ) |
|
| 980 | - ) { |
|
| 981 | - // not required and not provided? that's cool |
|
| 982 | - $validation_result = true; |
|
| 983 | - } elseif (isset($args['format']) |
|
| 984 | - && $args['format'] === 'email' |
|
| 985 | - ) { |
|
| 986 | - $validation_result = true; |
|
| 987 | - if (! self::_validate_email($value)) { |
|
| 988 | - $validation_result = new WP_Error( |
|
| 989 | - 'rest_invalid_param', |
|
| 990 | - esc_html__( |
|
| 991 | - 'The email address is not valid or does not exist.', |
|
| 992 | - 'event_espresso' |
|
| 993 | - ) |
|
| 994 | - ); |
|
| 995 | - } |
|
| 996 | - } else { |
|
| 997 | - $validation_result = rest_validate_value_from_schema($value, $args, $param); |
|
| 998 | - } |
|
| 999 | - } |
|
| 1000 | - if (is_wp_error($validation_result)) { |
|
| 1001 | - return $validation_result; |
|
| 1002 | - } |
|
| 1003 | - return rest_sanitize_request_arg($value, $request, $param); |
|
| 1004 | - } |
|
| 1005 | - |
|
| 1006 | - |
|
| 1007 | - /** |
|
| 1008 | - * Returns whether or not this email address is valid. Copied from EE_Email_Validation_Strategy::_validate_email() |
|
| 1009 | - * |
|
| 1010 | - * @param $email |
|
| 1011 | - * @return bool |
|
| 1012 | - * @throws InvalidArgumentException |
|
| 1013 | - * @throws InvalidInterfaceException |
|
| 1014 | - * @throws InvalidDataTypeException |
|
| 1015 | - */ |
|
| 1016 | - protected static function _validate_email($email) |
|
| 1017 | - { |
|
| 1018 | - try { |
|
| 1019 | - EmailAddressFactory::create($email); |
|
| 1020 | - return true; |
|
| 1021 | - } catch (EmailValidationException $e) { |
|
| 1022 | - return false; |
|
| 1023 | - } |
|
| 1024 | - } |
|
| 1025 | - |
|
| 1026 | - |
|
| 1027 | - /** |
|
| 1028 | - * Gets routes for the config |
|
| 1029 | - * |
|
| 1030 | - * @return array @see _register_model_routes |
|
| 1031 | - * @deprecated since version 4.9.1 |
|
| 1032 | - */ |
|
| 1033 | - protected function _register_config_routes() |
|
| 1034 | - { |
|
| 1035 | - $config_routes = array(); |
|
| 1036 | - foreach (self::versions_served() as $version => $hidden_endpoint) { |
|
| 1037 | - $config_routes[ self::ee_api_namespace . $version ] = $this->_get_config_route_data_for_version( |
|
| 1038 | - $version, |
|
| 1039 | - $hidden_endpoint |
|
| 1040 | - ); |
|
| 1041 | - } |
|
| 1042 | - return $config_routes; |
|
| 1043 | - } |
|
| 1044 | - |
|
| 1045 | - |
|
| 1046 | - /** |
|
| 1047 | - * Gets routes for the config for the specified version |
|
| 1048 | - * |
|
| 1049 | - * @param string $version |
|
| 1050 | - * @param boolean $hidden_endpoint |
|
| 1051 | - * @return array |
|
| 1052 | - */ |
|
| 1053 | - protected function _get_config_route_data_for_version($version, $hidden_endpoint) |
|
| 1054 | - { |
|
| 1055 | - return array( |
|
| 1056 | - 'config' => array( |
|
| 1057 | - array( |
|
| 1058 | - 'callback' => array( |
|
| 1059 | - 'EventEspresso\core\libraries\rest_api\controllers\config\Read', |
|
| 1060 | - 'handleRequest', |
|
| 1061 | - ), |
|
| 1062 | - 'methods' => WP_REST_Server::READABLE, |
|
| 1063 | - 'hidden_endpoint' => $hidden_endpoint, |
|
| 1064 | - 'callback_args' => array($version), |
|
| 1065 | - ), |
|
| 1066 | - ), |
|
| 1067 | - 'site_info' => array( |
|
| 1068 | - array( |
|
| 1069 | - 'callback' => array( |
|
| 1070 | - 'EventEspresso\core\libraries\rest_api\controllers\config\Read', |
|
| 1071 | - 'handleRequestSiteInfo', |
|
| 1072 | - ), |
|
| 1073 | - 'methods' => WP_REST_Server::READABLE, |
|
| 1074 | - 'hidden_endpoint' => $hidden_endpoint, |
|
| 1075 | - 'callback_args' => array($version), |
|
| 1076 | - ), |
|
| 1077 | - ), |
|
| 1078 | - ); |
|
| 1079 | - } |
|
| 1080 | - |
|
| 1081 | - |
|
| 1082 | - /** |
|
| 1083 | - * Gets the meta info routes |
|
| 1084 | - * |
|
| 1085 | - * @return array @see _register_model_routes |
|
| 1086 | - * @deprecated since version 4.9.1 |
|
| 1087 | - */ |
|
| 1088 | - protected function _register_meta_routes() |
|
| 1089 | - { |
|
| 1090 | - $meta_routes = array(); |
|
| 1091 | - foreach (self::versions_served() as $version => $hidden_endpoint) { |
|
| 1092 | - $meta_routes[ self::ee_api_namespace . $version ] = $this->_get_meta_route_data_for_version( |
|
| 1093 | - $version, |
|
| 1094 | - $hidden_endpoint |
|
| 1095 | - ); |
|
| 1096 | - } |
|
| 1097 | - return $meta_routes; |
|
| 1098 | - } |
|
| 1099 | - |
|
| 1100 | - |
|
| 1101 | - /** |
|
| 1102 | - * @param string $version |
|
| 1103 | - * @param boolean $hidden_endpoint |
|
| 1104 | - * @return array |
|
| 1105 | - */ |
|
| 1106 | - protected function _get_meta_route_data_for_version($version, $hidden_endpoint = false) |
|
| 1107 | - { |
|
| 1108 | - return array( |
|
| 1109 | - 'resources' => array( |
|
| 1110 | - array( |
|
| 1111 | - 'callback' => array( |
|
| 1112 | - 'EventEspresso\core\libraries\rest_api\controllers\model\Meta', |
|
| 1113 | - 'handleRequestModelsMeta', |
|
| 1114 | - ), |
|
| 1115 | - 'methods' => WP_REST_Server::READABLE, |
|
| 1116 | - 'hidden_endpoint' => $hidden_endpoint, |
|
| 1117 | - 'callback_args' => array($version), |
|
| 1118 | - ), |
|
| 1119 | - ), |
|
| 1120 | - ); |
|
| 1121 | - } |
|
| 1122 | - |
|
| 1123 | - |
|
| 1124 | - /** |
|
| 1125 | - * Tries to hide old 4.6 endpoints from the |
|
| 1126 | - * |
|
| 1127 | - * @param array $route_data |
|
| 1128 | - * @return array |
|
| 1129 | - * @throws \EE_Error |
|
| 1130 | - */ |
|
| 1131 | - public static function hide_old_endpoints($route_data) |
|
| 1132 | - { |
|
| 1133 | - // allow API clients to override which endpoints get hidden, in case |
|
| 1134 | - // they want to discover particular endpoints |
|
| 1135 | - // also, we don't have access to the request so we have to just grab it from the superglobal |
|
| 1136 | - $force_show_ee_namespace = ltrim( |
|
| 1137 | - EEH_Array::is_set($_REQUEST, 'force_show_ee_namespace', ''), |
|
| 1138 | - '/' |
|
| 1139 | - ); |
|
| 1140 | - foreach (EED_Core_Rest_Api::get_ee_route_data() as $namespace => $relative_urls) { |
|
| 1141 | - foreach ($relative_urls as $resource_name => $endpoints) { |
|
| 1142 | - foreach ($endpoints as $key => $endpoint) { |
|
| 1143 | - // skip schema and other route options |
|
| 1144 | - if (! is_numeric($key)) { |
|
| 1145 | - continue; |
|
| 1146 | - } |
|
| 1147 | - // by default, hide "hidden_endpoint"s, unless the request indicates |
|
| 1148 | - // to $force_show_ee_namespace, in which case only show that one |
|
| 1149 | - // namespace's endpoints (and hide all others) |
|
| 1150 | - if (($force_show_ee_namespace !== '' && $force_show_ee_namespace !== $namespace) |
|
| 1151 | - || ($endpoint['hidden_endpoint'] && $force_show_ee_namespace === '') |
|
| 1152 | - ) { |
|
| 1153 | - $full_route = '/' . ltrim($namespace, '/'); |
|
| 1154 | - $full_route .= '/' . ltrim($resource_name, '/'); |
|
| 1155 | - unset($route_data[ $full_route ]); |
|
| 1156 | - } |
|
| 1157 | - } |
|
| 1158 | - } |
|
| 1159 | - } |
|
| 1160 | - return $route_data; |
|
| 1161 | - } |
|
| 1162 | - |
|
| 1163 | - |
|
| 1164 | - /** |
|
| 1165 | - * Returns an array describing which versions of core support serving requests for. |
|
| 1166 | - * Keys are core versions' major and minor version, and values are the |
|
| 1167 | - * LOWEST requested version they can serve. Eg, 4.7 can serve requests for 4.6-like |
|
| 1168 | - * data by just removing a few models and fields from the responses. However, 4.15 might remove |
|
| 1169 | - * the answers table entirely, in which case it would be very difficult for |
|
| 1170 | - * it to serve 4.6-style responses. |
|
| 1171 | - * Versions of core that are missing from this array are unknowns. |
|
| 1172 | - * previous ver |
|
| 1173 | - * |
|
| 1174 | - * @return array |
|
| 1175 | - */ |
|
| 1176 | - public static function version_compatibilities() |
|
| 1177 | - { |
|
| 1178 | - return apply_filters( |
|
| 1179 | - 'FHEE__EED_Core_REST_API__version_compatibilities', |
|
| 1180 | - array( |
|
| 1181 | - '4.8.29' => '4.8.29', |
|
| 1182 | - '4.8.33' => '4.8.29', |
|
| 1183 | - '4.8.34' => '4.8.29', |
|
| 1184 | - '4.8.36' => '4.8.29', |
|
| 1185 | - ) |
|
| 1186 | - ); |
|
| 1187 | - } |
|
| 1188 | - |
|
| 1189 | - |
|
| 1190 | - /** |
|
| 1191 | - * Gets the latest API version served. Eg if there |
|
| 1192 | - * are two versions served of the API, 4.8.29 and 4.8.32, and |
|
| 1193 | - * we are on core version 4.8.34, it will return the string "4.8.32" |
|
| 1194 | - * |
|
| 1195 | - * @return string |
|
| 1196 | - */ |
|
| 1197 | - public static function latest_rest_api_version() |
|
| 1198 | - { |
|
| 1199 | - $versions_served = \EED_Core_Rest_Api::versions_served(); |
|
| 1200 | - $versions_served_keys = array_keys($versions_served); |
|
| 1201 | - return end($versions_served_keys); |
|
| 1202 | - } |
|
| 1203 | - |
|
| 1204 | - |
|
| 1205 | - /** |
|
| 1206 | - * Using EED_Core_Rest_Api::version_compatibilities(), determines what version of |
|
| 1207 | - * EE the API can serve requests for. Eg, if we are on 4.15 of core, and |
|
| 1208 | - * we can serve requests from 4.12 or later, this will return array( '4.12', '4.13', '4.14', '4.15' ). |
|
| 1209 | - * We also indicate whether or not this version should be put in the index or not |
|
| 1210 | - * |
|
| 1211 | - * @return array keys are API version numbers (just major and minor numbers), and values |
|
| 1212 | - * are whether or not they should be hidden |
|
| 1213 | - */ |
|
| 1214 | - public static function versions_served() |
|
| 1215 | - { |
|
| 1216 | - $versions_served = array(); |
|
| 1217 | - $possibly_served_versions = EED_Core_Rest_Api::version_compatibilities(); |
|
| 1218 | - $lowest_compatible_version = end($possibly_served_versions); |
|
| 1219 | - reset($possibly_served_versions); |
|
| 1220 | - $versions_served_historically = array_keys($possibly_served_versions); |
|
| 1221 | - $latest_version = end($versions_served_historically); |
|
| 1222 | - reset($versions_served_historically); |
|
| 1223 | - // for each version of core we have ever served: |
|
| 1224 | - foreach ($versions_served_historically as $key_versioned_endpoint) { |
|
| 1225 | - // if it's not above the current core version, and it's compatible with the current version of core |
|
| 1226 | - if ($key_versioned_endpoint === $latest_version) { |
|
| 1227 | - // don't hide the latest version in the index |
|
| 1228 | - $versions_served[ $key_versioned_endpoint ] = false; |
|
| 1229 | - } elseif ($key_versioned_endpoint >= $lowest_compatible_version |
|
| 1230 | - && $key_versioned_endpoint < EED_Core_Rest_Api::core_version() |
|
| 1231 | - ) { |
|
| 1232 | - // include, but hide, previous versions which are still supported |
|
| 1233 | - $versions_served[ $key_versioned_endpoint ] = true; |
|
| 1234 | - } elseif (apply_filters( |
|
| 1235 | - 'FHEE__EED_Core_Rest_Api__versions_served__include_incompatible_versions', |
|
| 1236 | - false, |
|
| 1237 | - $possibly_served_versions |
|
| 1238 | - )) { |
|
| 1239 | - // if a version is no longer supported, don't include it in index or list of versions served |
|
| 1240 | - $versions_served[ $key_versioned_endpoint ] = true; |
|
| 1241 | - } |
|
| 1242 | - } |
|
| 1243 | - return $versions_served; |
|
| 1244 | - } |
|
| 1245 | - |
|
| 1246 | - |
|
| 1247 | - /** |
|
| 1248 | - * Gets the major and minor version of EE core's version string |
|
| 1249 | - * |
|
| 1250 | - * @return string |
|
| 1251 | - */ |
|
| 1252 | - public static function core_version() |
|
| 1253 | - { |
|
| 1254 | - return apply_filters( |
|
| 1255 | - 'FHEE__EED_Core_REST_API__core_version', |
|
| 1256 | - implode( |
|
| 1257 | - '.', |
|
| 1258 | - array_slice( |
|
| 1259 | - explode( |
|
| 1260 | - '.', |
|
| 1261 | - espresso_version() |
|
| 1262 | - ), |
|
| 1263 | - 0, |
|
| 1264 | - 3 |
|
| 1265 | - ) |
|
| 1266 | - ) |
|
| 1267 | - ); |
|
| 1268 | - } |
|
| 1269 | - |
|
| 1270 | - |
|
| 1271 | - /** |
|
| 1272 | - * Gets the default limit that should be used when querying for resources |
|
| 1273 | - * |
|
| 1274 | - * @return int |
|
| 1275 | - */ |
|
| 1276 | - public static function get_default_query_limit() |
|
| 1277 | - { |
|
| 1278 | - // we actually don't use a const because we want folks to always use |
|
| 1279 | - // this method, not the const directly |
|
| 1280 | - return apply_filters( |
|
| 1281 | - 'FHEE__EED_Core_Rest_Api__get_default_query_limit', |
|
| 1282 | - 50 |
|
| 1283 | - ); |
|
| 1284 | - } |
|
| 1285 | - |
|
| 1286 | - |
|
| 1287 | - /** |
|
| 1288 | - * |
|
| 1289 | - * @param string $version api version string (i.e. '4.8.36') |
|
| 1290 | - * @return array |
|
| 1291 | - */ |
|
| 1292 | - public static function getCollectionRoutesIndexedByModelName($version = '') |
|
| 1293 | - { |
|
| 1294 | - $version = empty($version) ? self::latest_rest_api_version() : $version; |
|
| 1295 | - $model_names = self::model_names_with_plural_routes($version); |
|
| 1296 | - $collection_routes = array(); |
|
| 1297 | - foreach ($model_names as $model_name => $model_class_name) { |
|
| 1298 | - $collection_routes[ strtolower($model_name) ] = '/' . self::ee_api_namespace . $version . '/' |
|
| 1299 | - . EEH_Inflector::pluralize_and_lower($model_name); |
|
| 1300 | - } |
|
| 1301 | - return $collection_routes; |
|
| 1302 | - } |
|
| 1303 | - |
|
| 1304 | - |
|
| 1305 | - /** |
|
| 1306 | - * Returns an array of primary key names indexed by model names. |
|
| 1307 | - * @param string $version |
|
| 1308 | - * @return array |
|
| 1309 | - */ |
|
| 1310 | - public static function getPrimaryKeyNamesIndexedByModelName($version = '') |
|
| 1311 | - { |
|
| 1312 | - $version = empty($version) ? self::latest_rest_api_version() : $version; |
|
| 1313 | - $model_names = self::model_names_with_plural_routes($version); |
|
| 1314 | - $primary_key_items = array(); |
|
| 1315 | - foreach ($model_names as $model_name => $model_class_name) { |
|
| 1316 | - $primary_keys = $model_class_name::instance()->get_combined_primary_key_fields(); |
|
| 1317 | - foreach ($primary_keys as $primary_key_name => $primary_key_field) { |
|
| 1318 | - if (count($primary_keys) > 1) { |
|
| 1319 | - $primary_key_items[ strtolower($model_name) ][] = $primary_key_name; |
|
| 1320 | - } else { |
|
| 1321 | - $primary_key_items[ strtolower($model_name) ] = $primary_key_name; |
|
| 1322 | - } |
|
| 1323 | - } |
|
| 1324 | - } |
|
| 1325 | - return $primary_key_items; |
|
| 1326 | - } |
|
| 1327 | - |
|
| 1328 | - /** |
|
| 1329 | - * Determines the EE REST API debug mode is activated, or not. |
|
| 1330 | - * @since 4.9.76.p |
|
| 1331 | - * @return bool |
|
| 1332 | - */ |
|
| 1333 | - public static function debugMode() |
|
| 1334 | - { |
|
| 1335 | - static $debug_mode = null; // could be class prop |
|
| 1336 | - if ($debug_mode === null) { |
|
| 1337 | - $debug_mode = defined('EE_REST_API_DEBUG_MODE') && EE_REST_API_DEBUG_MODE; |
|
| 1338 | - } |
|
| 1339 | - return $debug_mode; |
|
| 1340 | - } |
|
| 1341 | - |
|
| 1342 | - |
|
| 1343 | - |
|
| 1344 | - /** |
|
| 1345 | - * run - initial module setup |
|
| 1346 | - * |
|
| 1347 | - * @access public |
|
| 1348 | - * @param WP $WP |
|
| 1349 | - * @return void |
|
| 1350 | - */ |
|
| 1351 | - public function run($WP) |
|
| 1352 | - { |
|
| 1353 | - } |
|
| 26 | + const ee_api_namespace = Domain::API_NAMESPACE; |
|
| 27 | + |
|
| 28 | + const ee_api_namespace_for_regex = 'ee\/v([^/]*)\/'; |
|
| 29 | + |
|
| 30 | + const saved_routes_option_names = 'ee_core_routes'; |
|
| 31 | + |
|
| 32 | + /** |
|
| 33 | + * string used in _links response bodies to make them globally unique. |
|
| 34 | + * |
|
| 35 | + * @see http://v2.wp-api.org/extending/linking/ |
|
| 36 | + */ |
|
| 37 | + const ee_api_link_namespace = 'https://api.eventespresso.com/'; |
|
| 38 | + |
|
| 39 | + /** |
|
| 40 | + * @var CalculatedModelFields |
|
| 41 | + */ |
|
| 42 | + protected static $_field_calculator; |
|
| 43 | + |
|
| 44 | + |
|
| 45 | + /** |
|
| 46 | + * @return EED_Core_Rest_Api|EED_Module |
|
| 47 | + */ |
|
| 48 | + public static function instance() |
|
| 49 | + { |
|
| 50 | + self::$_field_calculator = LoaderFactory::getLoader()->load('EventEspresso\core\libraries\rest_api\CalculatedModelFields'); |
|
| 51 | + return parent::get_instance(__CLASS__); |
|
| 52 | + } |
|
| 53 | + |
|
| 54 | + |
|
| 55 | + /** |
|
| 56 | + * set_hooks - for hooking into EE Core, other modules, etc |
|
| 57 | + * |
|
| 58 | + * @access public |
|
| 59 | + * @return void |
|
| 60 | + */ |
|
| 61 | + public static function set_hooks() |
|
| 62 | + { |
|
| 63 | + self::set_hooks_both(); |
|
| 64 | + } |
|
| 65 | + |
|
| 66 | + |
|
| 67 | + /** |
|
| 68 | + * set_hooks_admin - for hooking into EE Admin Core, other modules, etc |
|
| 69 | + * |
|
| 70 | + * @access public |
|
| 71 | + * @return void |
|
| 72 | + */ |
|
| 73 | + public static function set_hooks_admin() |
|
| 74 | + { |
|
| 75 | + self::set_hooks_both(); |
|
| 76 | + } |
|
| 77 | + |
|
| 78 | + |
|
| 79 | + public static function set_hooks_both() |
|
| 80 | + { |
|
| 81 | + add_action('rest_api_init', array('EED_Core_Rest_Api', 'register_routes'), 10); |
|
| 82 | + add_action('rest_api_init', array('EED_Core_Rest_Api', 'set_hooks_rest_api'), 5); |
|
| 83 | + add_filter('rest_route_data', array('EED_Core_Rest_Api', 'hide_old_endpoints'), 10, 2); |
|
| 84 | + add_filter( |
|
| 85 | + 'rest_index', |
|
| 86 | + array('EventEspresso\core\libraries\rest_api\controllers\model\Meta', 'filterEeMetadataIntoIndex') |
|
| 87 | + ); |
|
| 88 | + EED_Core_Rest_Api::invalidate_cached_route_data_on_version_change(); |
|
| 89 | + } |
|
| 90 | + |
|
| 91 | + |
|
| 92 | + /** |
|
| 93 | + * sets up hooks which only need to be included as part of REST API requests; |
|
| 94 | + * other requests like to the frontend or admin etc don't need them |
|
| 95 | + * |
|
| 96 | + * @throws \EE_Error |
|
| 97 | + */ |
|
| 98 | + public static function set_hooks_rest_api() |
|
| 99 | + { |
|
| 100 | + // set hooks which account for changes made to the API |
|
| 101 | + EED_Core_Rest_Api::_set_hooks_for_changes(); |
|
| 102 | + } |
|
| 103 | + |
|
| 104 | + |
|
| 105 | + /** |
|
| 106 | + * public wrapper of _set_hooks_for_changes. |
|
| 107 | + * Loads all the hooks which make requests to old versions of the API |
|
| 108 | + * appear the same as they always did |
|
| 109 | + * |
|
| 110 | + * @throws EE_Error |
|
| 111 | + */ |
|
| 112 | + public static function set_hooks_for_changes() |
|
| 113 | + { |
|
| 114 | + self::_set_hooks_for_changes(); |
|
| 115 | + } |
|
| 116 | + |
|
| 117 | + |
|
| 118 | + /** |
|
| 119 | + * Loads all the hooks which make requests to old versions of the API |
|
| 120 | + * appear the same as they always did |
|
| 121 | + * |
|
| 122 | + * @throws EE_Error |
|
| 123 | + */ |
|
| 124 | + protected static function _set_hooks_for_changes() |
|
| 125 | + { |
|
| 126 | + $folder_contents = EEH_File::get_contents_of_folders(array(EE_LIBRARIES . 'rest_api' . DS . 'changes'), false); |
|
| 127 | + foreach ($folder_contents as $classname_in_namespace => $filepath) { |
|
| 128 | + // ignore the base parent class |
|
| 129 | + // and legacy named classes |
|
| 130 | + if ($classname_in_namespace === 'ChangesInBase' |
|
| 131 | + || strpos($classname_in_namespace, 'Changes_In_') === 0 |
|
| 132 | + ) { |
|
| 133 | + continue; |
|
| 134 | + } |
|
| 135 | + $full_classname = 'EventEspresso\core\libraries\rest_api\changes\\' . $classname_in_namespace; |
|
| 136 | + if (class_exists($full_classname)) { |
|
| 137 | + $instance_of_class = new $full_classname; |
|
| 138 | + if ($instance_of_class instanceof ChangesInBase) { |
|
| 139 | + $instance_of_class->setHooks(); |
|
| 140 | + } |
|
| 141 | + } |
|
| 142 | + } |
|
| 143 | + } |
|
| 144 | + |
|
| 145 | + |
|
| 146 | + /** |
|
| 147 | + * Filters the WP routes to add our EE-related ones. This takes a bit of time |
|
| 148 | + * so we actually prefer to only do it when an EE plugin is activated or upgraded |
|
| 149 | + * |
|
| 150 | + * @throws \EE_Error |
|
| 151 | + */ |
|
| 152 | + public static function register_routes() |
|
| 153 | + { |
|
| 154 | + foreach (EED_Core_Rest_Api::get_ee_route_data() as $namespace => $relative_routes) { |
|
| 155 | + foreach ($relative_routes as $relative_route => $data_for_multiple_endpoints) { |
|
| 156 | + /** |
|
| 157 | + * @var array $data_for_multiple_endpoints numerically indexed array |
|
| 158 | + * but can also contain route options like { |
|
| 159 | + * @type array $schema { |
|
| 160 | + * @type callable $schema_callback |
|
| 161 | + * @type array $callback_args arguments that will be passed to the callback, after the |
|
| 162 | + * WP_REST_Request of course |
|
| 163 | + * } |
|
| 164 | + * } |
|
| 165 | + */ |
|
| 166 | + // when registering routes, register all the endpoints' data at the same time |
|
| 167 | + $multiple_endpoint_args = array(); |
|
| 168 | + foreach ($data_for_multiple_endpoints as $endpoint_key => $data_for_single_endpoint) { |
|
| 169 | + /** |
|
| 170 | + * @var array $data_for_single_endpoint { |
|
| 171 | + * @type callable $callback |
|
| 172 | + * @type string methods |
|
| 173 | + * @type array args |
|
| 174 | + * @type array _links |
|
| 175 | + * @type array $callback_args arguments that will be passed to the callback, after the |
|
| 176 | + * WP_REST_Request of course |
|
| 177 | + * } |
|
| 178 | + */ |
|
| 179 | + // skip route options |
|
| 180 | + if (! is_numeric($endpoint_key)) { |
|
| 181 | + continue; |
|
| 182 | + } |
|
| 183 | + if (! isset($data_for_single_endpoint['callback'], $data_for_single_endpoint['methods'])) { |
|
| 184 | + throw new EE_Error( |
|
| 185 | + esc_html__( |
|
| 186 | + // @codingStandardsIgnoreStart |
|
| 187 | + 'Endpoint configuration data needs to have entries "callback" (callable) and "methods" (comma-separated list of accepts HTTP methods).', |
|
| 188 | + // @codingStandardsIgnoreEnd |
|
| 189 | + 'event_espresso' |
|
| 190 | + ) |
|
| 191 | + ); |
|
| 192 | + } |
|
| 193 | + $callback = $data_for_single_endpoint['callback']; |
|
| 194 | + $single_endpoint_args = array( |
|
| 195 | + 'methods' => $data_for_single_endpoint['methods'], |
|
| 196 | + 'args' => isset($data_for_single_endpoint['args']) ? $data_for_single_endpoint['args'] |
|
| 197 | + : array(), |
|
| 198 | + ); |
|
| 199 | + if (isset($data_for_single_endpoint['_links'])) { |
|
| 200 | + $single_endpoint_args['_links'] = $data_for_single_endpoint['_links']; |
|
| 201 | + } |
|
| 202 | + if (isset($data_for_single_endpoint['callback_args'])) { |
|
| 203 | + $callback_args = $data_for_single_endpoint['callback_args']; |
|
| 204 | + $single_endpoint_args['callback'] = function (\WP_REST_Request $request) use ( |
|
| 205 | + $callback, |
|
| 206 | + $callback_args |
|
| 207 | + ) { |
|
| 208 | + array_unshift($callback_args, $request); |
|
| 209 | + return call_user_func_array( |
|
| 210 | + $callback, |
|
| 211 | + $callback_args |
|
| 212 | + ); |
|
| 213 | + }; |
|
| 214 | + } else { |
|
| 215 | + $single_endpoint_args['callback'] = $data_for_single_endpoint['callback']; |
|
| 216 | + } |
|
| 217 | + $multiple_endpoint_args[] = $single_endpoint_args; |
|
| 218 | + } |
|
| 219 | + if (isset($data_for_multiple_endpoints['schema'])) { |
|
| 220 | + $schema_route_data = $data_for_multiple_endpoints['schema']; |
|
| 221 | + $schema_callback = $schema_route_data['schema_callback']; |
|
| 222 | + $callback_args = $schema_route_data['callback_args']; |
|
| 223 | + $multiple_endpoint_args['schema'] = function () use ($schema_callback, $callback_args) { |
|
| 224 | + return call_user_func_array( |
|
| 225 | + $schema_callback, |
|
| 226 | + $callback_args |
|
| 227 | + ); |
|
| 228 | + }; |
|
| 229 | + } |
|
| 230 | + register_rest_route( |
|
| 231 | + $namespace, |
|
| 232 | + $relative_route, |
|
| 233 | + $multiple_endpoint_args |
|
| 234 | + ); |
|
| 235 | + } |
|
| 236 | + } |
|
| 237 | + } |
|
| 238 | + |
|
| 239 | + |
|
| 240 | + /** |
|
| 241 | + * Checks if there was a version change or something that merits invalidating the cached |
|
| 242 | + * route data. If so, invalidates the cached route data so that it gets refreshed |
|
| 243 | + * next time the WP API is used |
|
| 244 | + */ |
|
| 245 | + public static function invalidate_cached_route_data_on_version_change() |
|
| 246 | + { |
|
| 247 | + if (EE_System::instance()->detect_req_type() !== EE_System::req_type_normal) { |
|
| 248 | + EED_Core_Rest_Api::invalidate_cached_route_data(); |
|
| 249 | + } |
|
| 250 | + foreach (EE_Registry::instance()->addons as $addon) { |
|
| 251 | + if ($addon instanceof EE_Addon && $addon->detect_req_type() !== EE_System::req_type_normal) { |
|
| 252 | + EED_Core_Rest_Api::invalidate_cached_route_data(); |
|
| 253 | + } |
|
| 254 | + } |
|
| 255 | + } |
|
| 256 | + |
|
| 257 | + |
|
| 258 | + /** |
|
| 259 | + * Removes the cached route data so it will get refreshed next time the WP API is used |
|
| 260 | + */ |
|
| 261 | + public static function invalidate_cached_route_data() |
|
| 262 | + { |
|
| 263 | + // delete the saved EE REST API routes |
|
| 264 | + foreach (EED_Core_Rest_Api::versions_served() as $version => $hidden) { |
|
| 265 | + delete_option(EED_Core_Rest_Api::saved_routes_option_names . $version); |
|
| 266 | + } |
|
| 267 | + } |
|
| 268 | + |
|
| 269 | + |
|
| 270 | + /** |
|
| 271 | + * Gets the EE route data |
|
| 272 | + * |
|
| 273 | + * @return array top-level key is the namespace, next-level key is the route and its value is array{ |
|
| 274 | + * @throws \EE_Error |
|
| 275 | + * @type string|array $callback |
|
| 276 | + * @type string $methods |
|
| 277 | + * @type boolean $hidden_endpoint |
|
| 278 | + * } |
|
| 279 | + */ |
|
| 280 | + public static function get_ee_route_data() |
|
| 281 | + { |
|
| 282 | + $ee_routes = array(); |
|
| 283 | + foreach (self::versions_served() as $version => $hidden_endpoints) { |
|
| 284 | + $ee_routes[ self::ee_api_namespace . $version ] = self::_get_ee_route_data_for_version( |
|
| 285 | + $version, |
|
| 286 | + $hidden_endpoints |
|
| 287 | + ); |
|
| 288 | + } |
|
| 289 | + return $ee_routes; |
|
| 290 | + } |
|
| 291 | + |
|
| 292 | + |
|
| 293 | + /** |
|
| 294 | + * Gets the EE route data from the wp options if it exists already, |
|
| 295 | + * otherwise re-generates it and saves it to the option |
|
| 296 | + * |
|
| 297 | + * @param string $version |
|
| 298 | + * @param boolean $hidden_endpoints |
|
| 299 | + * @return array |
|
| 300 | + * @throws \EE_Error |
|
| 301 | + */ |
|
| 302 | + protected static function _get_ee_route_data_for_version($version, $hidden_endpoints = false) |
|
| 303 | + { |
|
| 304 | + $ee_routes = get_option(self::saved_routes_option_names . $version, null); |
|
| 305 | + if (! $ee_routes || EED_Core_Rest_Api::debugMode()) { |
|
| 306 | + $ee_routes = self::_save_ee_route_data_for_version($version, $hidden_endpoints); |
|
| 307 | + } |
|
| 308 | + return $ee_routes; |
|
| 309 | + } |
|
| 310 | + |
|
| 311 | + |
|
| 312 | + /** |
|
| 313 | + * Saves the EE REST API route data to a wp option and returns it |
|
| 314 | + * |
|
| 315 | + * @param string $version |
|
| 316 | + * @param boolean $hidden_endpoints |
|
| 317 | + * @return mixed|null |
|
| 318 | + * @throws \EE_Error |
|
| 319 | + */ |
|
| 320 | + protected static function _save_ee_route_data_for_version($version, $hidden_endpoints = false) |
|
| 321 | + { |
|
| 322 | + $instance = self::instance(); |
|
| 323 | + $routes = apply_filters( |
|
| 324 | + 'EED_Core_Rest_Api__save_ee_route_data_for_version__routes', |
|
| 325 | + array_replace_recursive( |
|
| 326 | + $instance->_get_config_route_data_for_version($version, $hidden_endpoints), |
|
| 327 | + $instance->_get_meta_route_data_for_version($version, $hidden_endpoints), |
|
| 328 | + $instance->_get_model_route_data_for_version($version, $hidden_endpoints), |
|
| 329 | + $instance->_get_rpc_route_data_for_version($version, $hidden_endpoints) |
|
| 330 | + ) |
|
| 331 | + ); |
|
| 332 | + $option_name = self::saved_routes_option_names . $version; |
|
| 333 | + if (get_option($option_name)) { |
|
| 334 | + update_option($option_name, $routes, true); |
|
| 335 | + } else { |
|
| 336 | + add_option($option_name, $routes, null, 'no'); |
|
| 337 | + } |
|
| 338 | + return $routes; |
|
| 339 | + } |
|
| 340 | + |
|
| 341 | + |
|
| 342 | + /** |
|
| 343 | + * Calculates all the EE routes and saves it to a WordPress option so we don't |
|
| 344 | + * need to calculate it on every request |
|
| 345 | + * |
|
| 346 | + * @deprecated since version 4.9.1 |
|
| 347 | + * @return void |
|
| 348 | + */ |
|
| 349 | + public static function save_ee_routes() |
|
| 350 | + { |
|
| 351 | + if (EE_Maintenance_Mode::instance()->models_can_query()) { |
|
| 352 | + $instance = self::instance(); |
|
| 353 | + $routes = apply_filters( |
|
| 354 | + 'EED_Core_Rest_Api__save_ee_routes__routes', |
|
| 355 | + array_replace_recursive( |
|
| 356 | + $instance->_register_config_routes(), |
|
| 357 | + $instance->_register_meta_routes(), |
|
| 358 | + $instance->_register_model_routes(), |
|
| 359 | + $instance->_register_rpc_routes() |
|
| 360 | + ) |
|
| 361 | + ); |
|
| 362 | + update_option(self::saved_routes_option_names, $routes, true); |
|
| 363 | + } |
|
| 364 | + } |
|
| 365 | + |
|
| 366 | + |
|
| 367 | + /** |
|
| 368 | + * Gets all the route information relating to EE models |
|
| 369 | + * |
|
| 370 | + * @return array @see get_ee_route_data |
|
| 371 | + * @deprecated since version 4.9.1 |
|
| 372 | + */ |
|
| 373 | + protected function _register_model_routes() |
|
| 374 | + { |
|
| 375 | + $model_routes = array(); |
|
| 376 | + foreach (self::versions_served() as $version => $hidden_endpoint) { |
|
| 377 | + $model_routes[ EED_Core_Rest_Api::ee_api_namespace |
|
| 378 | + . $version ] = $this->_get_config_route_data_for_version($version, $hidden_endpoint); |
|
| 379 | + } |
|
| 380 | + return $model_routes; |
|
| 381 | + } |
|
| 382 | + |
|
| 383 | + |
|
| 384 | + /** |
|
| 385 | + * Decides whether or not to add write endpoints for this model. |
|
| 386 | + * |
|
| 387 | + * Currently, this defaults to exclude all global tables and models |
|
| 388 | + * which would allow inserting WP core data (we don't want to duplicate |
|
| 389 | + * what WP API does, as it's unnecessary, extra work, and potentially extra bugs) |
|
| 390 | + * |
|
| 391 | + * @param EEM_Base $model |
|
| 392 | + * @return bool |
|
| 393 | + */ |
|
| 394 | + public static function should_have_write_endpoints(EEM_Base $model) |
|
| 395 | + { |
|
| 396 | + if ($model->is_wp_core_model()) { |
|
| 397 | + return false; |
|
| 398 | + } |
|
| 399 | + foreach ($model->get_tables() as $table) { |
|
| 400 | + if ($table->is_global()) { |
|
| 401 | + return false; |
|
| 402 | + } |
|
| 403 | + } |
|
| 404 | + return true; |
|
| 405 | + } |
|
| 406 | + |
|
| 407 | + |
|
| 408 | + /** |
|
| 409 | + * Gets the names of all models which should have plural routes (eg `ee/v4.8.36/events`) |
|
| 410 | + * in this versioned namespace of EE4 |
|
| 411 | + * |
|
| 412 | + * @param $version |
|
| 413 | + * @return array keys are model names (eg 'Event') and values ar either classnames (eg 'EEM_Event') |
|
| 414 | + */ |
|
| 415 | + public static function model_names_with_plural_routes($version) |
|
| 416 | + { |
|
| 417 | + $model_version_info = new ModelVersionInfo($version); |
|
| 418 | + $models_to_register = $model_version_info->modelsForRequestedVersion(); |
|
| 419 | + // let's not bother having endpoints for extra metas |
|
| 420 | + unset( |
|
| 421 | + $models_to_register['Extra_Meta'], |
|
| 422 | + $models_to_register['Extra_Join'], |
|
| 423 | + $models_to_register['Post_Meta'] |
|
| 424 | + ); |
|
| 425 | + return apply_filters( |
|
| 426 | + 'FHEE__EED_Core_REST_API___register_model_routes', |
|
| 427 | + $models_to_register |
|
| 428 | + ); |
|
| 429 | + } |
|
| 430 | + |
|
| 431 | + |
|
| 432 | + /** |
|
| 433 | + * Gets the route data for EE models in the specified version |
|
| 434 | + * |
|
| 435 | + * @param string $version |
|
| 436 | + * @param boolean $hidden_endpoint |
|
| 437 | + * @return array |
|
| 438 | + * @throws EE_Error |
|
| 439 | + */ |
|
| 440 | + protected function _get_model_route_data_for_version($version, $hidden_endpoint = false) |
|
| 441 | + { |
|
| 442 | + $model_routes = array(); |
|
| 443 | + $model_version_info = new ModelVersionInfo($version); |
|
| 444 | + foreach (EED_Core_Rest_Api::model_names_with_plural_routes($version) as $model_name => $model_classname) { |
|
| 445 | + $model = \EE_Registry::instance()->load_model($model_name); |
|
| 446 | + // if this isn't a valid model then let's skip iterate to the next item in the loop. |
|
| 447 | + if (! $model instanceof EEM_Base) { |
|
| 448 | + continue; |
|
| 449 | + } |
|
| 450 | + // yes we could just register one route for ALL models, but then they wouldn't show up in the index |
|
| 451 | + $plural_model_route = EED_Core_Rest_Api::get_collection_route($model); |
|
| 452 | + $singular_model_route = EED_Core_Rest_Api::get_entity_route($model, '(?P<id>[^\/]+)'); |
|
| 453 | + $model_routes[ $plural_model_route ] = array( |
|
| 454 | + array( |
|
| 455 | + 'callback' => array( |
|
| 456 | + 'EventEspresso\core\libraries\rest_api\controllers\model\Read', |
|
| 457 | + 'handleRequestGetAll', |
|
| 458 | + ), |
|
| 459 | + 'callback_args' => array($version, $model_name), |
|
| 460 | + 'methods' => WP_REST_Server::READABLE, |
|
| 461 | + 'hidden_endpoint' => $hidden_endpoint, |
|
| 462 | + 'args' => $this->_get_read_query_params($model, $version), |
|
| 463 | + '_links' => array( |
|
| 464 | + 'self' => rest_url(EED_Core_Rest_Api::ee_api_namespace . $version . $singular_model_route), |
|
| 465 | + ), |
|
| 466 | + ), |
|
| 467 | + 'schema' => array( |
|
| 468 | + 'schema_callback' => array( |
|
| 469 | + 'EventEspresso\core\libraries\rest_api\controllers\model\Read', |
|
| 470 | + 'handleSchemaRequest', |
|
| 471 | + ), |
|
| 472 | + 'callback_args' => array($version, $model_name), |
|
| 473 | + ), |
|
| 474 | + ); |
|
| 475 | + $model_routes[ $singular_model_route ] = array( |
|
| 476 | + array( |
|
| 477 | + 'callback' => array( |
|
| 478 | + 'EventEspresso\core\libraries\rest_api\controllers\model\Read', |
|
| 479 | + 'handleRequestGetOne', |
|
| 480 | + ), |
|
| 481 | + 'callback_args' => array($version, $model_name), |
|
| 482 | + 'methods' => WP_REST_Server::READABLE, |
|
| 483 | + 'hidden_endpoint' => $hidden_endpoint, |
|
| 484 | + 'args' => $this->_get_response_selection_query_params($model, $version, true), |
|
| 485 | + ), |
|
| 486 | + ); |
|
| 487 | + if (apply_filters( |
|
| 488 | + 'FHEE__EED_Core_Rest_Api___get_model_route_data_for_version__add_write_endpoints', |
|
| 489 | + EED_Core_Rest_Api::should_have_write_endpoints($model), |
|
| 490 | + $model |
|
| 491 | + )) { |
|
| 492 | + $model_routes[ $plural_model_route ][] = array( |
|
| 493 | + 'callback' => array( |
|
| 494 | + 'EventEspresso\core\libraries\rest_api\controllers\model\Write', |
|
| 495 | + 'handleRequestInsert', |
|
| 496 | + ), |
|
| 497 | + 'callback_args' => array($version, $model_name), |
|
| 498 | + 'methods' => WP_REST_Server::CREATABLE, |
|
| 499 | + 'hidden_endpoint' => $hidden_endpoint, |
|
| 500 | + 'args' => $this->_get_write_params($model_name, $model_version_info, true), |
|
| 501 | + ); |
|
| 502 | + $model_routes[ $singular_model_route ] = array_merge( |
|
| 503 | + $model_routes[ $singular_model_route ], |
|
| 504 | + array( |
|
| 505 | + array( |
|
| 506 | + 'callback' => array( |
|
| 507 | + 'EventEspresso\core\libraries\rest_api\controllers\model\Write', |
|
| 508 | + 'handleRequestUpdate', |
|
| 509 | + ), |
|
| 510 | + 'callback_args' => array($version, $model_name), |
|
| 511 | + 'methods' => WP_REST_Server::EDITABLE, |
|
| 512 | + 'hidden_endpoint' => $hidden_endpoint, |
|
| 513 | + 'args' => $this->_get_write_params($model_name, $model_version_info), |
|
| 514 | + ), |
|
| 515 | + array( |
|
| 516 | + 'callback' => array( |
|
| 517 | + 'EventEspresso\core\libraries\rest_api\controllers\model\Write', |
|
| 518 | + 'handleRequestDelete', |
|
| 519 | + ), |
|
| 520 | + 'callback_args' => array($version, $model_name), |
|
| 521 | + 'methods' => WP_REST_Server::DELETABLE, |
|
| 522 | + 'hidden_endpoint' => $hidden_endpoint, |
|
| 523 | + 'args' => $this->_get_delete_query_params($model, $version), |
|
| 524 | + ), |
|
| 525 | + ) |
|
| 526 | + ); |
|
| 527 | + } |
|
| 528 | + foreach ($model->relation_settings() as $relation_name => $relation_obj) { |
|
| 529 | + $related_route = EED_Core_Rest_Api::get_relation_route_via( |
|
| 530 | + $model, |
|
| 531 | + '(?P<id>[^\/]+)', |
|
| 532 | + $relation_obj |
|
| 533 | + ); |
|
| 534 | + $model_routes[ $related_route ] = array( |
|
| 535 | + array( |
|
| 536 | + 'callback' => array( |
|
| 537 | + 'EventEspresso\core\libraries\rest_api\controllers\model\Read', |
|
| 538 | + 'handleRequestGetRelated', |
|
| 539 | + ), |
|
| 540 | + 'callback_args' => array($version, $model_name, $relation_name), |
|
| 541 | + 'methods' => WP_REST_Server::READABLE, |
|
| 542 | + 'hidden_endpoint' => $hidden_endpoint, |
|
| 543 | + 'args' => $this->_get_read_query_params($relation_obj->get_other_model(), $version), |
|
| 544 | + ), |
|
| 545 | + ); |
|
| 546 | + |
|
| 547 | + $related_write_route = $related_route . '/' . '(?P<related_id>[^\/]+)'; |
|
| 548 | + $model_routes[ $related_write_route ] = array( |
|
| 549 | + array( |
|
| 550 | + 'callback' => array( |
|
| 551 | + 'EventEspresso\core\libraries\rest_api\controllers\model\Write', |
|
| 552 | + 'handleRequestAddRelation', |
|
| 553 | + ), |
|
| 554 | + 'callback_args' => array($version, $model_name, $relation_name), |
|
| 555 | + 'methods' => WP_REST_Server::EDITABLE, |
|
| 556 | + 'hidden_endpoint' => $hidden_endpoint, |
|
| 557 | + 'args' => $this->_get_add_relation_query_params($model, $relation_obj->get_other_model(), $version) |
|
| 558 | + ), |
|
| 559 | + array( |
|
| 560 | + 'callback' => array( |
|
| 561 | + 'EventEspresso\core\libraries\rest_api\controllers\model\Write', |
|
| 562 | + 'handleRequestRemoveRelation', |
|
| 563 | + ), |
|
| 564 | + 'callback_args' => array($version, $model_name, $relation_name), |
|
| 565 | + 'methods' => WP_REST_Server::DELETABLE, |
|
| 566 | + 'hidden_endpoint' => $hidden_endpoint, |
|
| 567 | + 'args' => array() |
|
| 568 | + ), |
|
| 569 | + ); |
|
| 570 | + } |
|
| 571 | + } |
|
| 572 | + return $model_routes; |
|
| 573 | + } |
|
| 574 | + |
|
| 575 | + |
|
| 576 | + /** |
|
| 577 | + * Gets the relative URI to a model's REST API plural route, after the EE4 versioned namespace, |
|
| 578 | + * excluding the preceding slash. |
|
| 579 | + * Eg you pass get_plural_route_to('Event') = 'events' |
|
| 580 | + * |
|
| 581 | + * @param EEM_Base $model |
|
| 582 | + * @return string |
|
| 583 | + */ |
|
| 584 | + public static function get_collection_route(EEM_Base $model) |
|
| 585 | + { |
|
| 586 | + return EEH_Inflector::pluralize_and_lower($model->get_this_model_name()); |
|
| 587 | + } |
|
| 588 | + |
|
| 589 | + |
|
| 590 | + /** |
|
| 591 | + * Gets the relative URI to a model's REST API singular route, after the EE4 versioned namespace, |
|
| 592 | + * excluding the preceding slash. |
|
| 593 | + * Eg you pass get_plural_route_to('Event', 12) = 'events/12' |
|
| 594 | + * |
|
| 595 | + * @param EEM_Base $model eg Event or Venue |
|
| 596 | + * @param string $id |
|
| 597 | + * @return string |
|
| 598 | + */ |
|
| 599 | + public static function get_entity_route($model, $id) |
|
| 600 | + { |
|
| 601 | + return EED_Core_Rest_Api::get_collection_route($model) . '/' . $id; |
|
| 602 | + } |
|
| 603 | + |
|
| 604 | + |
|
| 605 | + /** |
|
| 606 | + * Gets the relative URI to a model's REST API singular route, after the EE4 versioned namespace, |
|
| 607 | + * excluding the preceding slash. |
|
| 608 | + * Eg you pass get_plural_route_to('Event', 12) = 'events/12' |
|
| 609 | + * |
|
| 610 | + * @param EEM_Base $model eg Event or Venue |
|
| 611 | + * @param string $id |
|
| 612 | + * @param EE_Model_Relation_Base $relation_obj |
|
| 613 | + * @return string |
|
| 614 | + */ |
|
| 615 | + public static function get_relation_route_via(EEM_Base $model, $id, EE_Model_Relation_Base $relation_obj) |
|
| 616 | + { |
|
| 617 | + $related_model_name_endpoint_part = ModelRead::getRelatedEntityName( |
|
| 618 | + $relation_obj->get_other_model()->get_this_model_name(), |
|
| 619 | + $relation_obj |
|
| 620 | + ); |
|
| 621 | + return EED_Core_Rest_Api::get_entity_route($model, $id) . '/' . $related_model_name_endpoint_part; |
|
| 622 | + } |
|
| 623 | + |
|
| 624 | + |
|
| 625 | + /** |
|
| 626 | + * Adds onto the $relative_route the EE4 REST API versioned namespace. |
|
| 627 | + * Eg if given '4.8.36' and 'events', will return 'ee/v4.8.36/events' |
|
| 628 | + * |
|
| 629 | + * @param string $relative_route |
|
| 630 | + * @param string $version |
|
| 631 | + * @return string |
|
| 632 | + */ |
|
| 633 | + public static function get_versioned_route_to($relative_route, $version = '4.8.36') |
|
| 634 | + { |
|
| 635 | + return '/' . EED_Core_Rest_Api::ee_api_namespace . $version . '/' . $relative_route; |
|
| 636 | + } |
|
| 637 | + |
|
| 638 | + |
|
| 639 | + /** |
|
| 640 | + * Adds all the RPC-style routes (remote procedure call-like routes, ie |
|
| 641 | + * routes that don't conform to the traditional REST CRUD-style). |
|
| 642 | + * |
|
| 643 | + * @deprecated since 4.9.1 |
|
| 644 | + */ |
|
| 645 | + protected function _register_rpc_routes() |
|
| 646 | + { |
|
| 647 | + $routes = array(); |
|
| 648 | + foreach (self::versions_served() as $version => $hidden_endpoint) { |
|
| 649 | + $routes[ self::ee_api_namespace . $version ] = $this->_get_rpc_route_data_for_version( |
|
| 650 | + $version, |
|
| 651 | + $hidden_endpoint |
|
| 652 | + ); |
|
| 653 | + } |
|
| 654 | + return $routes; |
|
| 655 | + } |
|
| 656 | + |
|
| 657 | + |
|
| 658 | + /** |
|
| 659 | + * @param string $version |
|
| 660 | + * @param boolean $hidden_endpoint |
|
| 661 | + * @return array |
|
| 662 | + */ |
|
| 663 | + protected function _get_rpc_route_data_for_version($version, $hidden_endpoint = false) |
|
| 664 | + { |
|
| 665 | + $this_versions_routes = array(); |
|
| 666 | + // checkin endpoint |
|
| 667 | + $this_versions_routes['registrations/(?P<REG_ID>\d+)/toggle_checkin_for_datetime/(?P<DTT_ID>\d+)'] = array( |
|
| 668 | + array( |
|
| 669 | + 'callback' => array( |
|
| 670 | + 'EventEspresso\core\libraries\rest_api\controllers\rpc\Checkin', |
|
| 671 | + 'handleRequestToggleCheckin', |
|
| 672 | + ), |
|
| 673 | + 'methods' => WP_REST_Server::CREATABLE, |
|
| 674 | + 'hidden_endpoint' => $hidden_endpoint, |
|
| 675 | + 'args' => array( |
|
| 676 | + 'force' => array( |
|
| 677 | + 'required' => false, |
|
| 678 | + 'default' => false, |
|
| 679 | + 'description' => __( |
|
| 680 | + // @codingStandardsIgnoreStart |
|
| 681 | + 'Whether to force toggle checkin, or to verify the registration status and allowed ticket uses', |
|
| 682 | + // @codingStandardsIgnoreEnd |
|
| 683 | + 'event_espresso' |
|
| 684 | + ), |
|
| 685 | + ), |
|
| 686 | + ), |
|
| 687 | + 'callback_args' => array($version), |
|
| 688 | + ), |
|
| 689 | + ); |
|
| 690 | + return apply_filters( |
|
| 691 | + 'FHEE__EED_Core_Rest_Api___register_rpc_routes__this_versions_routes', |
|
| 692 | + $this_versions_routes, |
|
| 693 | + $version, |
|
| 694 | + $hidden_endpoint |
|
| 695 | + ); |
|
| 696 | + } |
|
| 697 | + |
|
| 698 | + |
|
| 699 | + /** |
|
| 700 | + * Gets the query params that can be used when request one or many |
|
| 701 | + * |
|
| 702 | + * @param EEM_Base $model |
|
| 703 | + * @param string $version |
|
| 704 | + * @return array |
|
| 705 | + */ |
|
| 706 | + protected function _get_response_selection_query_params(\EEM_Base $model, $version, $single_only = false) |
|
| 707 | + { |
|
| 708 | + $query_params = array( |
|
| 709 | + 'include' => array( |
|
| 710 | + 'required' => false, |
|
| 711 | + 'default' => '*', |
|
| 712 | + 'type' => 'string', |
|
| 713 | + ), |
|
| 714 | + 'calculate' => array( |
|
| 715 | + 'required' => false, |
|
| 716 | + 'default' => '', |
|
| 717 | + 'enum' => self::$_field_calculator->retrieveCalculatedFieldsForModel($model), |
|
| 718 | + 'type' => 'string', |
|
| 719 | + // because we accept a CSV'd list of the enumerated strings, WP core validation and sanitization |
|
| 720 | + // freaks out. We'll just validate this argument while handling the request |
|
| 721 | + 'validate_callback' => null, |
|
| 722 | + 'sanitize_callback' => null, |
|
| 723 | + ), |
|
| 724 | + 'password' => array( |
|
| 725 | + 'required' => false, |
|
| 726 | + 'default' => '', |
|
| 727 | + 'type' => 'string' |
|
| 728 | + ) |
|
| 729 | + ); |
|
| 730 | + return apply_filters( |
|
| 731 | + 'FHEE__EED_Core_Rest_Api___get_response_selection_query_params', |
|
| 732 | + $query_params, |
|
| 733 | + $model, |
|
| 734 | + $version |
|
| 735 | + ); |
|
| 736 | + } |
|
| 737 | + |
|
| 738 | + |
|
| 739 | + /** |
|
| 740 | + * Gets the parameters acceptable for delete requests |
|
| 741 | + * |
|
| 742 | + * @param \EEM_Base $model |
|
| 743 | + * @param string $version |
|
| 744 | + * @return array |
|
| 745 | + */ |
|
| 746 | + protected function _get_delete_query_params(\EEM_Base $model, $version) |
|
| 747 | + { |
|
| 748 | + $params_for_delete = array( |
|
| 749 | + 'allow_blocking' => array( |
|
| 750 | + 'required' => false, |
|
| 751 | + 'default' => true, |
|
| 752 | + 'type' => 'boolean', |
|
| 753 | + ), |
|
| 754 | + ); |
|
| 755 | + $params_for_delete['force'] = array( |
|
| 756 | + 'required' => false, |
|
| 757 | + 'default' => false, |
|
| 758 | + 'type' => 'boolean', |
|
| 759 | + ); |
|
| 760 | + return apply_filters( |
|
| 761 | + 'FHEE__EED_Core_Rest_Api___get_delete_query_params', |
|
| 762 | + $params_for_delete, |
|
| 763 | + $model, |
|
| 764 | + $version |
|
| 765 | + ); |
|
| 766 | + } |
|
| 767 | + |
|
| 768 | + protected function _get_add_relation_query_params(\EEM_Base $source_model, \EEM_Base $related_model, $version) |
|
| 769 | + { |
|
| 770 | + // if they're related through a HABTM relation, check for any non-FKs |
|
| 771 | + $all_relation_settings = $source_model->relation_settings(); |
|
| 772 | + $relation_settings = $all_relation_settings[ $related_model->get_this_model_name() ]; |
|
| 773 | + $params = array(); |
|
| 774 | + if ($relation_settings instanceof EE_HABTM_Relation && $relation_settings->hasNonKeyFields()) { |
|
| 775 | + foreach ($relation_settings->getNonKeyFields() as $field) { |
|
| 776 | + /* @var $field EE_Model_Field_Base */ |
|
| 777 | + $params[ $field->get_name() ] = array( |
|
| 778 | + 'required' => ! $field->is_nullable(), |
|
| 779 | + 'default' => ModelDataTranslator::prepareFieldValueForJson($field, $field->get_default_value(), $version), |
|
| 780 | + 'type' => $field->getSchemaType(), |
|
| 781 | + 'validate_callbaack' => null, |
|
| 782 | + 'sanitize_callback' => null |
|
| 783 | + ); |
|
| 784 | + } |
|
| 785 | + } |
|
| 786 | + return $params; |
|
| 787 | + } |
|
| 788 | + |
|
| 789 | + |
|
| 790 | + /** |
|
| 791 | + * Gets info about reading query params that are acceptable |
|
| 792 | + * |
|
| 793 | + * @param \EEM_Base $model eg 'Event' or 'Venue' |
|
| 794 | + * @param string $version |
|
| 795 | + * @return array describing the args acceptable when querying this model |
|
| 796 | + * @throws EE_Error |
|
| 797 | + */ |
|
| 798 | + protected function _get_read_query_params(\EEM_Base $model, $version) |
|
| 799 | + { |
|
| 800 | + $default_orderby = array(); |
|
| 801 | + foreach ($model->get_combined_primary_key_fields() as $key_field) { |
|
| 802 | + $default_orderby[ $key_field->get_name() ] = 'ASC'; |
|
| 803 | + } |
|
| 804 | + return array_merge( |
|
| 805 | + $this->_get_response_selection_query_params($model, $version), |
|
| 806 | + array( |
|
| 807 | + 'where' => array( |
|
| 808 | + 'required' => false, |
|
| 809 | + 'default' => array(), |
|
| 810 | + 'type' => 'object', |
|
| 811 | + // because we accept an almost infinite list of possible where conditions, WP |
|
| 812 | + // core validation and sanitization freaks out. We'll just validate this argument |
|
| 813 | + // while handling the request |
|
| 814 | + 'validate_callback' => null, |
|
| 815 | + 'sanitize_callback' => null, |
|
| 816 | + ), |
|
| 817 | + 'limit' => array( |
|
| 818 | + 'required' => false, |
|
| 819 | + 'default' => EED_Core_Rest_Api::get_default_query_limit(), |
|
| 820 | + 'type' => array( |
|
| 821 | + 'array', |
|
| 822 | + 'string', |
|
| 823 | + 'integer', |
|
| 824 | + ), |
|
| 825 | + // because we accept a variety of types, WP core validation and sanitization |
|
| 826 | + // freaks out. We'll just validate this argument while handling the request |
|
| 827 | + 'validate_callback' => null, |
|
| 828 | + 'sanitize_callback' => null, |
|
| 829 | + ), |
|
| 830 | + 'order_by' => array( |
|
| 831 | + 'required' => false, |
|
| 832 | + 'default' => $default_orderby, |
|
| 833 | + 'type' => array( |
|
| 834 | + 'object', |
|
| 835 | + 'string', |
|
| 836 | + ),// because we accept a variety of types, WP core validation and sanitization |
|
| 837 | + // freaks out. We'll just validate this argument while handling the request |
|
| 838 | + 'validate_callback' => null, |
|
| 839 | + 'sanitize_callback' => null, |
|
| 840 | + ), |
|
| 841 | + 'group_by' => array( |
|
| 842 | + 'required' => false, |
|
| 843 | + 'default' => null, |
|
| 844 | + 'type' => array( |
|
| 845 | + 'object', |
|
| 846 | + 'string', |
|
| 847 | + ), |
|
| 848 | + // because we accept an almost infinite list of possible groupings, |
|
| 849 | + // WP core validation and sanitization |
|
| 850 | + // freaks out. We'll just validate this argument while handling the request |
|
| 851 | + 'validate_callback' => null, |
|
| 852 | + 'sanitize_callback' => null, |
|
| 853 | + ), |
|
| 854 | + 'having' => array( |
|
| 855 | + 'required' => false, |
|
| 856 | + 'default' => null, |
|
| 857 | + 'type' => 'object', |
|
| 858 | + // because we accept an almost infinite list of possible where conditions, WP |
|
| 859 | + // core validation and sanitization freaks out. We'll just validate this argument |
|
| 860 | + // while handling the request |
|
| 861 | + 'validate_callback' => null, |
|
| 862 | + 'sanitize_callback' => null, |
|
| 863 | + ), |
|
| 864 | + 'caps' => array( |
|
| 865 | + 'required' => false, |
|
| 866 | + 'default' => EEM_Base::caps_read, |
|
| 867 | + 'type' => 'string', |
|
| 868 | + 'enum' => array( |
|
| 869 | + EEM_Base::caps_read, |
|
| 870 | + EEM_Base::caps_read_admin, |
|
| 871 | + EEM_Base::caps_edit, |
|
| 872 | + EEM_Base::caps_delete, |
|
| 873 | + ), |
|
| 874 | + ), |
|
| 875 | + ) |
|
| 876 | + ); |
|
| 877 | + } |
|
| 878 | + |
|
| 879 | + |
|
| 880 | + /** |
|
| 881 | + * Gets parameter information for a model regarding writing data |
|
| 882 | + * |
|
| 883 | + * @param string $model_name |
|
| 884 | + * @param ModelVersionInfo $model_version_info |
|
| 885 | + * @param boolean $create whether this is for request to create (in |
|
| 886 | + * which case we need all required params) or |
|
| 887 | + * just to update (in which case we don't |
|
| 888 | + * need those on every request) |
|
| 889 | + * @return array |
|
| 890 | + */ |
|
| 891 | + protected function _get_write_params( |
|
| 892 | + $model_name, |
|
| 893 | + ModelVersionInfo $model_version_info, |
|
| 894 | + $create = false |
|
| 895 | + ) { |
|
| 896 | + $model = EE_Registry::instance()->load_model($model_name); |
|
| 897 | + $fields = $model_version_info->fieldsOnModelInThisVersion($model); |
|
| 898 | + $args_info = array(); |
|
| 899 | + foreach ($fields as $field_name => $field_obj) { |
|
| 900 | + if ($field_obj->is_auto_increment()) { |
|
| 901 | + // totally ignore auto increment IDs |
|
| 902 | + continue; |
|
| 903 | + } |
|
| 904 | + $arg_info = $field_obj->getSchema(); |
|
| 905 | + $required = $create && ! $field_obj->is_nullable() && $field_obj->get_default_value() === null; |
|
| 906 | + $arg_info['required'] = $required; |
|
| 907 | + // remove the read-only flag. If it were read-only we wouldn't list it as an argument while writing, right? |
|
| 908 | + unset($arg_info['readonly']); |
|
| 909 | + $schema_properties = $field_obj->getSchemaProperties(); |
|
| 910 | + if (isset($schema_properties['raw']) |
|
| 911 | + && $field_obj->getSchemaType() === 'object' |
|
| 912 | + ) { |
|
| 913 | + // if there's a "raw" form of this argument, use those properties instead |
|
| 914 | + $arg_info = array_replace( |
|
| 915 | + $arg_info, |
|
| 916 | + $schema_properties['raw'] |
|
| 917 | + ); |
|
| 918 | + } |
|
| 919 | + $arg_info['default'] = ModelDataTranslator::prepareFieldValueForJson( |
|
| 920 | + $field_obj, |
|
| 921 | + $field_obj->get_default_value(), |
|
| 922 | + $model_version_info->requestedVersion() |
|
| 923 | + ); |
|
| 924 | + // we do our own validation and sanitization within the controller |
|
| 925 | + if (function_exists('rest_validate_value_from_schema')) { |
|
| 926 | + $sanitize_callback = array( |
|
| 927 | + 'EED_Core_Rest_Api', |
|
| 928 | + 'default_sanitize_callback', |
|
| 929 | + ); |
|
| 930 | + } else { |
|
| 931 | + $sanitize_callback = null; |
|
| 932 | + } |
|
| 933 | + $arg_info['sanitize_callback'] = $sanitize_callback; |
|
| 934 | + $args_info[ $field_name ] = $arg_info; |
|
| 935 | + if ($field_obj instanceof EE_Datetime_Field) { |
|
| 936 | + $gmt_arg_info = $arg_info; |
|
| 937 | + $gmt_arg_info['description'] = sprintf( |
|
| 938 | + esc_html__( |
|
| 939 | + '%1$s - the value for this field in UTC. Ignored if %2$s is provided.', |
|
| 940 | + 'event_espresso' |
|
| 941 | + ), |
|
| 942 | + $field_obj->get_nicename(), |
|
| 943 | + $field_name |
|
| 944 | + ); |
|
| 945 | + $args_info[ $field_name . '_gmt' ] = $gmt_arg_info; |
|
| 946 | + } |
|
| 947 | + } |
|
| 948 | + return $args_info; |
|
| 949 | + } |
|
| 950 | + |
|
| 951 | + |
|
| 952 | + /** |
|
| 953 | + * Replacement for WP API's 'rest_parse_request_arg'. |
|
| 954 | + * If the value is blank but not required, don't bother validating it. |
|
| 955 | + * Also, it uses our email validation instead of WP API's default. |
|
| 956 | + * |
|
| 957 | + * @param $value |
|
| 958 | + * @param WP_REST_Request $request |
|
| 959 | + * @param $param |
|
| 960 | + * @return bool|true|WP_Error |
|
| 961 | + * @throws InvalidArgumentException |
|
| 962 | + * @throws InvalidInterfaceException |
|
| 963 | + * @throws InvalidDataTypeException |
|
| 964 | + */ |
|
| 965 | + public static function default_sanitize_callback($value, WP_REST_Request $request, $param) |
|
| 966 | + { |
|
| 967 | + $attributes = $request->get_attributes(); |
|
| 968 | + if (! isset($attributes['args'][ $param ]) |
|
| 969 | + || ! is_array($attributes['args'][ $param ])) { |
|
| 970 | + $validation_result = true; |
|
| 971 | + } else { |
|
| 972 | + $args = $attributes['args'][ $param ]; |
|
| 973 | + if (( |
|
| 974 | + $value === '' |
|
| 975 | + || $value === null |
|
| 976 | + ) |
|
| 977 | + && (! isset($args['required']) |
|
| 978 | + || $args['required'] === false |
|
| 979 | + ) |
|
| 980 | + ) { |
|
| 981 | + // not required and not provided? that's cool |
|
| 982 | + $validation_result = true; |
|
| 983 | + } elseif (isset($args['format']) |
|
| 984 | + && $args['format'] === 'email' |
|
| 985 | + ) { |
|
| 986 | + $validation_result = true; |
|
| 987 | + if (! self::_validate_email($value)) { |
|
| 988 | + $validation_result = new WP_Error( |
|
| 989 | + 'rest_invalid_param', |
|
| 990 | + esc_html__( |
|
| 991 | + 'The email address is not valid or does not exist.', |
|
| 992 | + 'event_espresso' |
|
| 993 | + ) |
|
| 994 | + ); |
|
| 995 | + } |
|
| 996 | + } else { |
|
| 997 | + $validation_result = rest_validate_value_from_schema($value, $args, $param); |
|
| 998 | + } |
|
| 999 | + } |
|
| 1000 | + if (is_wp_error($validation_result)) { |
|
| 1001 | + return $validation_result; |
|
| 1002 | + } |
|
| 1003 | + return rest_sanitize_request_arg($value, $request, $param); |
|
| 1004 | + } |
|
| 1005 | + |
|
| 1006 | + |
|
| 1007 | + /** |
|
| 1008 | + * Returns whether or not this email address is valid. Copied from EE_Email_Validation_Strategy::_validate_email() |
|
| 1009 | + * |
|
| 1010 | + * @param $email |
|
| 1011 | + * @return bool |
|
| 1012 | + * @throws InvalidArgumentException |
|
| 1013 | + * @throws InvalidInterfaceException |
|
| 1014 | + * @throws InvalidDataTypeException |
|
| 1015 | + */ |
|
| 1016 | + protected static function _validate_email($email) |
|
| 1017 | + { |
|
| 1018 | + try { |
|
| 1019 | + EmailAddressFactory::create($email); |
|
| 1020 | + return true; |
|
| 1021 | + } catch (EmailValidationException $e) { |
|
| 1022 | + return false; |
|
| 1023 | + } |
|
| 1024 | + } |
|
| 1025 | + |
|
| 1026 | + |
|
| 1027 | + /** |
|
| 1028 | + * Gets routes for the config |
|
| 1029 | + * |
|
| 1030 | + * @return array @see _register_model_routes |
|
| 1031 | + * @deprecated since version 4.9.1 |
|
| 1032 | + */ |
|
| 1033 | + protected function _register_config_routes() |
|
| 1034 | + { |
|
| 1035 | + $config_routes = array(); |
|
| 1036 | + foreach (self::versions_served() as $version => $hidden_endpoint) { |
|
| 1037 | + $config_routes[ self::ee_api_namespace . $version ] = $this->_get_config_route_data_for_version( |
|
| 1038 | + $version, |
|
| 1039 | + $hidden_endpoint |
|
| 1040 | + ); |
|
| 1041 | + } |
|
| 1042 | + return $config_routes; |
|
| 1043 | + } |
|
| 1044 | + |
|
| 1045 | + |
|
| 1046 | + /** |
|
| 1047 | + * Gets routes for the config for the specified version |
|
| 1048 | + * |
|
| 1049 | + * @param string $version |
|
| 1050 | + * @param boolean $hidden_endpoint |
|
| 1051 | + * @return array |
|
| 1052 | + */ |
|
| 1053 | + protected function _get_config_route_data_for_version($version, $hidden_endpoint) |
|
| 1054 | + { |
|
| 1055 | + return array( |
|
| 1056 | + 'config' => array( |
|
| 1057 | + array( |
|
| 1058 | + 'callback' => array( |
|
| 1059 | + 'EventEspresso\core\libraries\rest_api\controllers\config\Read', |
|
| 1060 | + 'handleRequest', |
|
| 1061 | + ), |
|
| 1062 | + 'methods' => WP_REST_Server::READABLE, |
|
| 1063 | + 'hidden_endpoint' => $hidden_endpoint, |
|
| 1064 | + 'callback_args' => array($version), |
|
| 1065 | + ), |
|
| 1066 | + ), |
|
| 1067 | + 'site_info' => array( |
|
| 1068 | + array( |
|
| 1069 | + 'callback' => array( |
|
| 1070 | + 'EventEspresso\core\libraries\rest_api\controllers\config\Read', |
|
| 1071 | + 'handleRequestSiteInfo', |
|
| 1072 | + ), |
|
| 1073 | + 'methods' => WP_REST_Server::READABLE, |
|
| 1074 | + 'hidden_endpoint' => $hidden_endpoint, |
|
| 1075 | + 'callback_args' => array($version), |
|
| 1076 | + ), |
|
| 1077 | + ), |
|
| 1078 | + ); |
|
| 1079 | + } |
|
| 1080 | + |
|
| 1081 | + |
|
| 1082 | + /** |
|
| 1083 | + * Gets the meta info routes |
|
| 1084 | + * |
|
| 1085 | + * @return array @see _register_model_routes |
|
| 1086 | + * @deprecated since version 4.9.1 |
|
| 1087 | + */ |
|
| 1088 | + protected function _register_meta_routes() |
|
| 1089 | + { |
|
| 1090 | + $meta_routes = array(); |
|
| 1091 | + foreach (self::versions_served() as $version => $hidden_endpoint) { |
|
| 1092 | + $meta_routes[ self::ee_api_namespace . $version ] = $this->_get_meta_route_data_for_version( |
|
| 1093 | + $version, |
|
| 1094 | + $hidden_endpoint |
|
| 1095 | + ); |
|
| 1096 | + } |
|
| 1097 | + return $meta_routes; |
|
| 1098 | + } |
|
| 1099 | + |
|
| 1100 | + |
|
| 1101 | + /** |
|
| 1102 | + * @param string $version |
|
| 1103 | + * @param boolean $hidden_endpoint |
|
| 1104 | + * @return array |
|
| 1105 | + */ |
|
| 1106 | + protected function _get_meta_route_data_for_version($version, $hidden_endpoint = false) |
|
| 1107 | + { |
|
| 1108 | + return array( |
|
| 1109 | + 'resources' => array( |
|
| 1110 | + array( |
|
| 1111 | + 'callback' => array( |
|
| 1112 | + 'EventEspresso\core\libraries\rest_api\controllers\model\Meta', |
|
| 1113 | + 'handleRequestModelsMeta', |
|
| 1114 | + ), |
|
| 1115 | + 'methods' => WP_REST_Server::READABLE, |
|
| 1116 | + 'hidden_endpoint' => $hidden_endpoint, |
|
| 1117 | + 'callback_args' => array($version), |
|
| 1118 | + ), |
|
| 1119 | + ), |
|
| 1120 | + ); |
|
| 1121 | + } |
|
| 1122 | + |
|
| 1123 | + |
|
| 1124 | + /** |
|
| 1125 | + * Tries to hide old 4.6 endpoints from the |
|
| 1126 | + * |
|
| 1127 | + * @param array $route_data |
|
| 1128 | + * @return array |
|
| 1129 | + * @throws \EE_Error |
|
| 1130 | + */ |
|
| 1131 | + public static function hide_old_endpoints($route_data) |
|
| 1132 | + { |
|
| 1133 | + // allow API clients to override which endpoints get hidden, in case |
|
| 1134 | + // they want to discover particular endpoints |
|
| 1135 | + // also, we don't have access to the request so we have to just grab it from the superglobal |
|
| 1136 | + $force_show_ee_namespace = ltrim( |
|
| 1137 | + EEH_Array::is_set($_REQUEST, 'force_show_ee_namespace', ''), |
|
| 1138 | + '/' |
|
| 1139 | + ); |
|
| 1140 | + foreach (EED_Core_Rest_Api::get_ee_route_data() as $namespace => $relative_urls) { |
|
| 1141 | + foreach ($relative_urls as $resource_name => $endpoints) { |
|
| 1142 | + foreach ($endpoints as $key => $endpoint) { |
|
| 1143 | + // skip schema and other route options |
|
| 1144 | + if (! is_numeric($key)) { |
|
| 1145 | + continue; |
|
| 1146 | + } |
|
| 1147 | + // by default, hide "hidden_endpoint"s, unless the request indicates |
|
| 1148 | + // to $force_show_ee_namespace, in which case only show that one |
|
| 1149 | + // namespace's endpoints (and hide all others) |
|
| 1150 | + if (($force_show_ee_namespace !== '' && $force_show_ee_namespace !== $namespace) |
|
| 1151 | + || ($endpoint['hidden_endpoint'] && $force_show_ee_namespace === '') |
|
| 1152 | + ) { |
|
| 1153 | + $full_route = '/' . ltrim($namespace, '/'); |
|
| 1154 | + $full_route .= '/' . ltrim($resource_name, '/'); |
|
| 1155 | + unset($route_data[ $full_route ]); |
|
| 1156 | + } |
|
| 1157 | + } |
|
| 1158 | + } |
|
| 1159 | + } |
|
| 1160 | + return $route_data; |
|
| 1161 | + } |
|
| 1162 | + |
|
| 1163 | + |
|
| 1164 | + /** |
|
| 1165 | + * Returns an array describing which versions of core support serving requests for. |
|
| 1166 | + * Keys are core versions' major and minor version, and values are the |
|
| 1167 | + * LOWEST requested version they can serve. Eg, 4.7 can serve requests for 4.6-like |
|
| 1168 | + * data by just removing a few models and fields from the responses. However, 4.15 might remove |
|
| 1169 | + * the answers table entirely, in which case it would be very difficult for |
|
| 1170 | + * it to serve 4.6-style responses. |
|
| 1171 | + * Versions of core that are missing from this array are unknowns. |
|
| 1172 | + * previous ver |
|
| 1173 | + * |
|
| 1174 | + * @return array |
|
| 1175 | + */ |
|
| 1176 | + public static function version_compatibilities() |
|
| 1177 | + { |
|
| 1178 | + return apply_filters( |
|
| 1179 | + 'FHEE__EED_Core_REST_API__version_compatibilities', |
|
| 1180 | + array( |
|
| 1181 | + '4.8.29' => '4.8.29', |
|
| 1182 | + '4.8.33' => '4.8.29', |
|
| 1183 | + '4.8.34' => '4.8.29', |
|
| 1184 | + '4.8.36' => '4.8.29', |
|
| 1185 | + ) |
|
| 1186 | + ); |
|
| 1187 | + } |
|
| 1188 | + |
|
| 1189 | + |
|
| 1190 | + /** |
|
| 1191 | + * Gets the latest API version served. Eg if there |
|
| 1192 | + * are two versions served of the API, 4.8.29 and 4.8.32, and |
|
| 1193 | + * we are on core version 4.8.34, it will return the string "4.8.32" |
|
| 1194 | + * |
|
| 1195 | + * @return string |
|
| 1196 | + */ |
|
| 1197 | + public static function latest_rest_api_version() |
|
| 1198 | + { |
|
| 1199 | + $versions_served = \EED_Core_Rest_Api::versions_served(); |
|
| 1200 | + $versions_served_keys = array_keys($versions_served); |
|
| 1201 | + return end($versions_served_keys); |
|
| 1202 | + } |
|
| 1203 | + |
|
| 1204 | + |
|
| 1205 | + /** |
|
| 1206 | + * Using EED_Core_Rest_Api::version_compatibilities(), determines what version of |
|
| 1207 | + * EE the API can serve requests for. Eg, if we are on 4.15 of core, and |
|
| 1208 | + * we can serve requests from 4.12 or later, this will return array( '4.12', '4.13', '4.14', '4.15' ). |
|
| 1209 | + * We also indicate whether or not this version should be put in the index or not |
|
| 1210 | + * |
|
| 1211 | + * @return array keys are API version numbers (just major and minor numbers), and values |
|
| 1212 | + * are whether or not they should be hidden |
|
| 1213 | + */ |
|
| 1214 | + public static function versions_served() |
|
| 1215 | + { |
|
| 1216 | + $versions_served = array(); |
|
| 1217 | + $possibly_served_versions = EED_Core_Rest_Api::version_compatibilities(); |
|
| 1218 | + $lowest_compatible_version = end($possibly_served_versions); |
|
| 1219 | + reset($possibly_served_versions); |
|
| 1220 | + $versions_served_historically = array_keys($possibly_served_versions); |
|
| 1221 | + $latest_version = end($versions_served_historically); |
|
| 1222 | + reset($versions_served_historically); |
|
| 1223 | + // for each version of core we have ever served: |
|
| 1224 | + foreach ($versions_served_historically as $key_versioned_endpoint) { |
|
| 1225 | + // if it's not above the current core version, and it's compatible with the current version of core |
|
| 1226 | + if ($key_versioned_endpoint === $latest_version) { |
|
| 1227 | + // don't hide the latest version in the index |
|
| 1228 | + $versions_served[ $key_versioned_endpoint ] = false; |
|
| 1229 | + } elseif ($key_versioned_endpoint >= $lowest_compatible_version |
|
| 1230 | + && $key_versioned_endpoint < EED_Core_Rest_Api::core_version() |
|
| 1231 | + ) { |
|
| 1232 | + // include, but hide, previous versions which are still supported |
|
| 1233 | + $versions_served[ $key_versioned_endpoint ] = true; |
|
| 1234 | + } elseif (apply_filters( |
|
| 1235 | + 'FHEE__EED_Core_Rest_Api__versions_served__include_incompatible_versions', |
|
| 1236 | + false, |
|
| 1237 | + $possibly_served_versions |
|
| 1238 | + )) { |
|
| 1239 | + // if a version is no longer supported, don't include it in index or list of versions served |
|
| 1240 | + $versions_served[ $key_versioned_endpoint ] = true; |
|
| 1241 | + } |
|
| 1242 | + } |
|
| 1243 | + return $versions_served; |
|
| 1244 | + } |
|
| 1245 | + |
|
| 1246 | + |
|
| 1247 | + /** |
|
| 1248 | + * Gets the major and minor version of EE core's version string |
|
| 1249 | + * |
|
| 1250 | + * @return string |
|
| 1251 | + */ |
|
| 1252 | + public static function core_version() |
|
| 1253 | + { |
|
| 1254 | + return apply_filters( |
|
| 1255 | + 'FHEE__EED_Core_REST_API__core_version', |
|
| 1256 | + implode( |
|
| 1257 | + '.', |
|
| 1258 | + array_slice( |
|
| 1259 | + explode( |
|
| 1260 | + '.', |
|
| 1261 | + espresso_version() |
|
| 1262 | + ), |
|
| 1263 | + 0, |
|
| 1264 | + 3 |
|
| 1265 | + ) |
|
| 1266 | + ) |
|
| 1267 | + ); |
|
| 1268 | + } |
|
| 1269 | + |
|
| 1270 | + |
|
| 1271 | + /** |
|
| 1272 | + * Gets the default limit that should be used when querying for resources |
|
| 1273 | + * |
|
| 1274 | + * @return int |
|
| 1275 | + */ |
|
| 1276 | + public static function get_default_query_limit() |
|
| 1277 | + { |
|
| 1278 | + // we actually don't use a const because we want folks to always use |
|
| 1279 | + // this method, not the const directly |
|
| 1280 | + return apply_filters( |
|
| 1281 | + 'FHEE__EED_Core_Rest_Api__get_default_query_limit', |
|
| 1282 | + 50 |
|
| 1283 | + ); |
|
| 1284 | + } |
|
| 1285 | + |
|
| 1286 | + |
|
| 1287 | + /** |
|
| 1288 | + * |
|
| 1289 | + * @param string $version api version string (i.e. '4.8.36') |
|
| 1290 | + * @return array |
|
| 1291 | + */ |
|
| 1292 | + public static function getCollectionRoutesIndexedByModelName($version = '') |
|
| 1293 | + { |
|
| 1294 | + $version = empty($version) ? self::latest_rest_api_version() : $version; |
|
| 1295 | + $model_names = self::model_names_with_plural_routes($version); |
|
| 1296 | + $collection_routes = array(); |
|
| 1297 | + foreach ($model_names as $model_name => $model_class_name) { |
|
| 1298 | + $collection_routes[ strtolower($model_name) ] = '/' . self::ee_api_namespace . $version . '/' |
|
| 1299 | + . EEH_Inflector::pluralize_and_lower($model_name); |
|
| 1300 | + } |
|
| 1301 | + return $collection_routes; |
|
| 1302 | + } |
|
| 1303 | + |
|
| 1304 | + |
|
| 1305 | + /** |
|
| 1306 | + * Returns an array of primary key names indexed by model names. |
|
| 1307 | + * @param string $version |
|
| 1308 | + * @return array |
|
| 1309 | + */ |
|
| 1310 | + public static function getPrimaryKeyNamesIndexedByModelName($version = '') |
|
| 1311 | + { |
|
| 1312 | + $version = empty($version) ? self::latest_rest_api_version() : $version; |
|
| 1313 | + $model_names = self::model_names_with_plural_routes($version); |
|
| 1314 | + $primary_key_items = array(); |
|
| 1315 | + foreach ($model_names as $model_name => $model_class_name) { |
|
| 1316 | + $primary_keys = $model_class_name::instance()->get_combined_primary_key_fields(); |
|
| 1317 | + foreach ($primary_keys as $primary_key_name => $primary_key_field) { |
|
| 1318 | + if (count($primary_keys) > 1) { |
|
| 1319 | + $primary_key_items[ strtolower($model_name) ][] = $primary_key_name; |
|
| 1320 | + } else { |
|
| 1321 | + $primary_key_items[ strtolower($model_name) ] = $primary_key_name; |
|
| 1322 | + } |
|
| 1323 | + } |
|
| 1324 | + } |
|
| 1325 | + return $primary_key_items; |
|
| 1326 | + } |
|
| 1327 | + |
|
| 1328 | + /** |
|
| 1329 | + * Determines the EE REST API debug mode is activated, or not. |
|
| 1330 | + * @since 4.9.76.p |
|
| 1331 | + * @return bool |
|
| 1332 | + */ |
|
| 1333 | + public static function debugMode() |
|
| 1334 | + { |
|
| 1335 | + static $debug_mode = null; // could be class prop |
|
| 1336 | + if ($debug_mode === null) { |
|
| 1337 | + $debug_mode = defined('EE_REST_API_DEBUG_MODE') && EE_REST_API_DEBUG_MODE; |
|
| 1338 | + } |
|
| 1339 | + return $debug_mode; |
|
| 1340 | + } |
|
| 1341 | + |
|
| 1342 | + |
|
| 1343 | + |
|
| 1344 | + /** |
|
| 1345 | + * run - initial module setup |
|
| 1346 | + * |
|
| 1347 | + * @access public |
|
| 1348 | + * @param WP $WP |
|
| 1349 | + * @return void |
|
| 1350 | + */ |
|
| 1351 | + public function run($WP) |
|
| 1352 | + { |
|
| 1353 | + } |
|
| 1354 | 1354 | } |
@@ -49,7 +49,7 @@ discard block |
||
| 49 | 49 | */ |
| 50 | 50 | public function getModelVersionInfo() |
| 51 | 51 | { |
| 52 | - if (! $this->model_version_info) { |
|
| 52 | + if ( ! $this->model_version_info) { |
|
| 53 | 53 | throw new EE_Error( |
| 54 | 54 | sprintf( |
| 55 | 55 | __( |
@@ -94,7 +94,7 @@ discard block |
||
| 94 | 94 | */ |
| 95 | 95 | protected function validateModel($model_name) |
| 96 | 96 | { |
| 97 | - if (! $this->getModelVersionInfo()->isModelNameInThisVersion($model_name)) { |
|
| 97 | + if ( ! $this->getModelVersionInfo()->isModelNameInThisVersion($model_name)) { |
|
| 98 | 98 | throw new RestException( |
| 99 | 99 | 'endpoint_parsing_error', |
| 100 | 100 | sprintf( |
@@ -18,95 +18,95 @@ |
||
| 18 | 18 | class Base extends Controller_Base |
| 19 | 19 | { |
| 20 | 20 | |
| 21 | - /** |
|
| 22 | - * Holds reference to the model version info, which knows the requested version |
|
| 23 | - * |
|
| 24 | - * @var ModelVersionInfo |
|
| 25 | - */ |
|
| 26 | - protected $model_version_info; |
|
| 21 | + /** |
|
| 22 | + * Holds reference to the model version info, which knows the requested version |
|
| 23 | + * |
|
| 24 | + * @var ModelVersionInfo |
|
| 25 | + */ |
|
| 26 | + protected $model_version_info; |
|
| 27 | 27 | |
| 28 | 28 | |
| 29 | 29 | |
| 30 | - /** |
|
| 31 | - * Sets the version the user requested |
|
| 32 | - * |
|
| 33 | - * @param string $version eg '4.8' |
|
| 34 | - */ |
|
| 35 | - public function setRequestedVersion($version) |
|
| 36 | - { |
|
| 37 | - parent::setRequestedVersion($version); |
|
| 38 | - $this->model_version_info = new ModelVersionInfo($version); |
|
| 39 | - } |
|
| 30 | + /** |
|
| 31 | + * Sets the version the user requested |
|
| 32 | + * |
|
| 33 | + * @param string $version eg '4.8' |
|
| 34 | + */ |
|
| 35 | + public function setRequestedVersion($version) |
|
| 36 | + { |
|
| 37 | + parent::setRequestedVersion($version); |
|
| 38 | + $this->model_version_info = new ModelVersionInfo($version); |
|
| 39 | + } |
|
| 40 | 40 | |
| 41 | 41 | |
| 42 | 42 | |
| 43 | - /** |
|
| 44 | - * Gets the object that should be used for getting any info from the models, |
|
| 45 | - * because it's takes the requested and current core version into account |
|
| 46 | - * |
|
| 47 | - * @return \EventEspresso\core\libraries\rest_api\ModelVersionInfo |
|
| 48 | - * @throws EE_Error |
|
| 49 | - */ |
|
| 50 | - public function getModelVersionInfo() |
|
| 51 | - { |
|
| 52 | - if (! $this->model_version_info) { |
|
| 53 | - throw new EE_Error( |
|
| 54 | - sprintf( |
|
| 55 | - __( |
|
| 56 | - 'Cannot use model version info before setting the requested version in the controller', |
|
| 57 | - 'event_espresso' |
|
| 58 | - ) |
|
| 59 | - ) |
|
| 60 | - ); |
|
| 61 | - } |
|
| 62 | - return $this->model_version_info; |
|
| 63 | - } |
|
| 43 | + /** |
|
| 44 | + * Gets the object that should be used for getting any info from the models, |
|
| 45 | + * because it's takes the requested and current core version into account |
|
| 46 | + * |
|
| 47 | + * @return \EventEspresso\core\libraries\rest_api\ModelVersionInfo |
|
| 48 | + * @throws EE_Error |
|
| 49 | + */ |
|
| 50 | + public function getModelVersionInfo() |
|
| 51 | + { |
|
| 52 | + if (! $this->model_version_info) { |
|
| 53 | + throw new EE_Error( |
|
| 54 | + sprintf( |
|
| 55 | + __( |
|
| 56 | + 'Cannot use model version info before setting the requested version in the controller', |
|
| 57 | + 'event_espresso' |
|
| 58 | + ) |
|
| 59 | + ) |
|
| 60 | + ); |
|
| 61 | + } |
|
| 62 | + return $this->model_version_info; |
|
| 63 | + } |
|
| 64 | 64 | |
| 65 | 65 | |
| 66 | 66 | |
| 67 | - /** |
|
| 68 | - * Determines if $object is of one of the classes of $classes. Similar to |
|
| 69 | - * in_array(), except this checks if $object is a subclass of the classnames provided |
|
| 70 | - * in $classnames |
|
| 71 | - * |
|
| 72 | - * @param object $object |
|
| 73 | - * @param array $classnames |
|
| 74 | - * @return boolean |
|
| 75 | - */ |
|
| 76 | - public function isSubclassOfOne($object, $classnames) |
|
| 77 | - { |
|
| 78 | - foreach ($classnames as $classname) { |
|
| 79 | - if (is_a($object, $classname)) { |
|
| 80 | - return true; |
|
| 81 | - } |
|
| 82 | - } |
|
| 83 | - return false; |
|
| 84 | - } |
|
| 67 | + /** |
|
| 68 | + * Determines if $object is of one of the classes of $classes. Similar to |
|
| 69 | + * in_array(), except this checks if $object is a subclass of the classnames provided |
|
| 70 | + * in $classnames |
|
| 71 | + * |
|
| 72 | + * @param object $object |
|
| 73 | + * @param array $classnames |
|
| 74 | + * @return boolean |
|
| 75 | + */ |
|
| 76 | + public function isSubclassOfOne($object, $classnames) |
|
| 77 | + { |
|
| 78 | + foreach ($classnames as $classname) { |
|
| 79 | + if (is_a($object, $classname)) { |
|
| 80 | + return true; |
|
| 81 | + } |
|
| 82 | + } |
|
| 83 | + return false; |
|
| 84 | + } |
|
| 85 | 85 | |
| 86 | - /** |
|
| 87 | - * Verifies the model name provided was valid. If so, returns the model (as an object). Otherwise, throws an |
|
| 88 | - * exception. Must be called after `setRequestedVersion()`. |
|
| 89 | - * @since 4.9.76.p |
|
| 90 | - * @param $model_name |
|
| 91 | - * @return EEM_Base |
|
| 92 | - * @throws EE_Error |
|
| 93 | - * @throws RestException |
|
| 94 | - */ |
|
| 95 | - protected function validateModel($model_name) |
|
| 96 | - { |
|
| 97 | - if (! $this->getModelVersionInfo()->isModelNameInThisVersion($model_name)) { |
|
| 98 | - throw new RestException( |
|
| 99 | - 'endpoint_parsing_error', |
|
| 100 | - sprintf( |
|
| 101 | - __( |
|
| 102 | - 'There is no model for endpoint %s. Please contact event espresso support', |
|
| 103 | - 'event_espresso' |
|
| 104 | - ), |
|
| 105 | - $model_name |
|
| 106 | - ) |
|
| 107 | - ); |
|
| 108 | - } |
|
| 109 | - return $this->getModelVersionInfo()->loadModel($model_name); |
|
| 110 | - } |
|
| 86 | + /** |
|
| 87 | + * Verifies the model name provided was valid. If so, returns the model (as an object). Otherwise, throws an |
|
| 88 | + * exception. Must be called after `setRequestedVersion()`. |
|
| 89 | + * @since 4.9.76.p |
|
| 90 | + * @param $model_name |
|
| 91 | + * @return EEM_Base |
|
| 92 | + * @throws EE_Error |
|
| 93 | + * @throws RestException |
|
| 94 | + */ |
|
| 95 | + protected function validateModel($model_name) |
|
| 96 | + { |
|
| 97 | + if (! $this->getModelVersionInfo()->isModelNameInThisVersion($model_name)) { |
|
| 98 | + throw new RestException( |
|
| 99 | + 'endpoint_parsing_error', |
|
| 100 | + sprintf( |
|
| 101 | + __( |
|
| 102 | + 'There is no model for endpoint %s. Please contact event espresso support', |
|
| 103 | + 'event_espresso' |
|
| 104 | + ), |
|
| 105 | + $model_name |
|
| 106 | + ) |
|
| 107 | + ); |
|
| 108 | + } |
|
| 109 | + return $this->getModelVersionInfo()->loadModel($model_name); |
|
| 110 | + } |
|
| 111 | 111 | } |
| 112 | 112 | // End of file Base.php |
@@ -13,3144 +13,3144 @@ |
||
| 13 | 13 | abstract class EE_Base_Class |
| 14 | 14 | { |
| 15 | 15 | |
| 16 | - /** |
|
| 17 | - * This is an array of the original properties and values provided during construction |
|
| 18 | - * of this model object. (keys are model field names, values are their values). |
|
| 19 | - * This list is important to remember so that when we are merging data from the db, we know |
|
| 20 | - * which values to override and which to not override. |
|
| 21 | - * |
|
| 22 | - * @var array |
|
| 23 | - */ |
|
| 24 | - protected $_props_n_values_provided_in_constructor; |
|
| 25 | - |
|
| 26 | - /** |
|
| 27 | - * Timezone |
|
| 28 | - * This gets set by the "set_timezone()" method so that we know what timezone incoming strings|timestamps are in. |
|
| 29 | - * This can also be used before a get to set what timezone you want strings coming out of the object to be in. NOT |
|
| 30 | - * all EE_Base_Class child classes use this property but any that use a EE_Datetime_Field data type will have |
|
| 31 | - * access to it. |
|
| 32 | - * |
|
| 33 | - * @var string |
|
| 34 | - */ |
|
| 35 | - protected $_timezone; |
|
| 36 | - |
|
| 37 | - /** |
|
| 38 | - * date format |
|
| 39 | - * pattern or format for displaying dates |
|
| 40 | - * |
|
| 41 | - * @var string $_dt_frmt |
|
| 42 | - */ |
|
| 43 | - protected $_dt_frmt; |
|
| 44 | - |
|
| 45 | - /** |
|
| 46 | - * time format |
|
| 47 | - * pattern or format for displaying time |
|
| 48 | - * |
|
| 49 | - * @var string $_tm_frmt |
|
| 50 | - */ |
|
| 51 | - protected $_tm_frmt; |
|
| 52 | - |
|
| 53 | - /** |
|
| 54 | - * This property is for holding a cached array of object properties indexed by property name as the key. |
|
| 55 | - * The purpose of this is for setting a cache on properties that may have calculated values after a |
|
| 56 | - * prepare_for_get. That way the cache can be checked first and the calculated property returned instead of having |
|
| 57 | - * to recalculate. Used by _set_cached_property() and _get_cached_property() methods. |
|
| 58 | - * |
|
| 59 | - * @var array |
|
| 60 | - */ |
|
| 61 | - protected $_cached_properties = array(); |
|
| 62 | - |
|
| 63 | - /** |
|
| 64 | - * An array containing keys of the related model, and values are either an array of related mode objects or a |
|
| 65 | - * single |
|
| 66 | - * related model object. see the model's _model_relations. The keys should match those specified. And if the |
|
| 67 | - * relation is of type EE_Belongs_To (or one of its children), then there should only be ONE related model object, |
|
| 68 | - * all others have an array) |
|
| 69 | - * |
|
| 70 | - * @var array |
|
| 71 | - */ |
|
| 72 | - protected $_model_relations = array(); |
|
| 73 | - |
|
| 74 | - /** |
|
| 75 | - * Array where keys are field names (see the model's _fields property) and values are their values. To see what |
|
| 76 | - * their types should be, look at what that field object returns on its prepare_for_get and prepare_for_set methods) |
|
| 77 | - * |
|
| 78 | - * @var array |
|
| 79 | - */ |
|
| 80 | - protected $_fields = array(); |
|
| 81 | - |
|
| 82 | - /** |
|
| 83 | - * @var boolean indicating whether or not this model object is intended to ever be saved |
|
| 84 | - * For example, we might create model objects intended to only be used for the duration |
|
| 85 | - * of this request and to be thrown away, and if they were accidentally saved |
|
| 86 | - * it would be a bug. |
|
| 87 | - */ |
|
| 88 | - protected $_allow_persist = true; |
|
| 89 | - |
|
| 90 | - /** |
|
| 91 | - * @var boolean indicating whether or not this model object's properties have changed since construction |
|
| 92 | - */ |
|
| 93 | - protected $_has_changes = false; |
|
| 94 | - |
|
| 95 | - /** |
|
| 96 | - * @var EEM_Base |
|
| 97 | - */ |
|
| 98 | - protected $_model; |
|
| 99 | - |
|
| 100 | - /** |
|
| 101 | - * This is a cache of results from custom selections done on a query that constructs this entity. The only purpose |
|
| 102 | - * for these values is for retrieval of the results, they are not further queryable and they are not persisted to |
|
| 103 | - * the db. They also do not automatically update if there are any changes to the data that produced their results. |
|
| 104 | - * The format is a simple array of field_alias => field_value. So for instance if a custom select was something |
|
| 105 | - * like, "Select COUNT(Registration.REG_ID) as Registration_Count ...", then the resulting value will be in this |
|
| 106 | - * array as: |
|
| 107 | - * array( |
|
| 108 | - * 'Registration_Count' => 24 |
|
| 109 | - * ); |
|
| 110 | - * Note: if the custom select configuration for the query included a data type, the value will be in the data type |
|
| 111 | - * provided for the query (@see EventEspresso\core\domain\values\model\CustomSelects::__construct phpdocs for more |
|
| 112 | - * info) |
|
| 113 | - * |
|
| 114 | - * @var array |
|
| 115 | - */ |
|
| 116 | - protected $custom_selection_results = array(); |
|
| 117 | - |
|
| 118 | - |
|
| 119 | - /** |
|
| 120 | - * basic constructor for Event Espresso classes, performs any necessary initialization, and verifies it's children |
|
| 121 | - * play nice |
|
| 122 | - * |
|
| 123 | - * @param array $fieldValues where each key is a field (ie, array key in the 2nd |
|
| 124 | - * layer of the model's _fields array, (eg, EVT_ID, |
|
| 125 | - * TXN_amount, QST_name, etc) and values are their values |
|
| 126 | - * @param boolean $bydb a flag for setting if the class is instantiated by the |
|
| 127 | - * corresponding db model or not. |
|
| 128 | - * @param string $timezone indicate what timezone you want any datetime fields to |
|
| 129 | - * be in when instantiating a EE_Base_Class object. |
|
| 130 | - * @param array $date_formats An array of date formats to set on construct where first |
|
| 131 | - * value is the date_format and second value is the time |
|
| 132 | - * format. |
|
| 133 | - * @throws InvalidArgumentException |
|
| 134 | - * @throws InvalidInterfaceException |
|
| 135 | - * @throws InvalidDataTypeException |
|
| 136 | - * @throws EE_Error |
|
| 137 | - * @throws ReflectionException |
|
| 138 | - */ |
|
| 139 | - protected function __construct($fieldValues = array(), $bydb = false, $timezone = '', $date_formats = array()) |
|
| 140 | - { |
|
| 141 | - $className = get_class($this); |
|
| 142 | - do_action("AHEE__{$className}__construct", $this, $fieldValues); |
|
| 143 | - $model = $this->get_model(); |
|
| 144 | - $model_fields = $model->field_settings(false); |
|
| 145 | - // ensure $fieldValues is an array |
|
| 146 | - $fieldValues = is_array($fieldValues) ? $fieldValues : array($fieldValues); |
|
| 147 | - // verify client code has not passed any invalid field names |
|
| 148 | - foreach ($fieldValues as $field_name => $field_value) { |
|
| 149 | - if (! isset($model_fields[ $field_name ])) { |
|
| 150 | - throw new EE_Error( |
|
| 151 | - sprintf( |
|
| 152 | - esc_html__( |
|
| 153 | - 'Invalid field (%s) passed to constructor of %s. Allowed fields are :%s', |
|
| 154 | - 'event_espresso' |
|
| 155 | - ), |
|
| 156 | - $field_name, |
|
| 157 | - get_class($this), |
|
| 158 | - implode(', ', array_keys($model_fields)) |
|
| 159 | - ) |
|
| 160 | - ); |
|
| 161 | - } |
|
| 162 | - } |
|
| 163 | - $this->_timezone = EEH_DTT_Helper::get_valid_timezone_string($timezone); |
|
| 164 | - if (! empty($date_formats) && is_array($date_formats)) { |
|
| 165 | - list($this->_dt_frmt, $this->_tm_frmt) = $date_formats; |
|
| 166 | - } else { |
|
| 167 | - // set default formats for date and time |
|
| 168 | - $this->_dt_frmt = (string) get_option('date_format', 'Y-m-d'); |
|
| 169 | - $this->_tm_frmt = (string) get_option('time_format', 'g:i a'); |
|
| 170 | - } |
|
| 171 | - // if db model is instantiating |
|
| 172 | - if ($bydb) { |
|
| 173 | - // client code has indicated these field values are from the database |
|
| 174 | - foreach ($model_fields as $fieldName => $field) { |
|
| 175 | - $this->set_from_db( |
|
| 176 | - $fieldName, |
|
| 177 | - isset($fieldValues[ $fieldName ]) ? $fieldValues[ $fieldName ] : null |
|
| 178 | - ); |
|
| 179 | - } |
|
| 180 | - } else { |
|
| 181 | - // we're constructing a brand |
|
| 182 | - // new instance of the model object. Generally, this means we'll need to do more field validation |
|
| 183 | - foreach ($model_fields as $fieldName => $field) { |
|
| 184 | - $this->set( |
|
| 185 | - $fieldName, |
|
| 186 | - isset($fieldValues[ $fieldName ]) ? $fieldValues[ $fieldName ] : null, |
|
| 187 | - true |
|
| 188 | - ); |
|
| 189 | - } |
|
| 190 | - } |
|
| 191 | - // remember what values were passed to this constructor |
|
| 192 | - $this->_props_n_values_provided_in_constructor = $fieldValues; |
|
| 193 | - // remember in entity mapper |
|
| 194 | - if (! $bydb && $model->has_primary_key_field() && $this->ID()) { |
|
| 195 | - $model->add_to_entity_map($this); |
|
| 196 | - } |
|
| 197 | - // setup all the relations |
|
| 198 | - foreach ($model->relation_settings() as $relation_name => $relation_obj) { |
|
| 199 | - if ($relation_obj instanceof EE_Belongs_To_Relation) { |
|
| 200 | - $this->_model_relations[ $relation_name ] = null; |
|
| 201 | - } else { |
|
| 202 | - $this->_model_relations[ $relation_name ] = array(); |
|
| 203 | - } |
|
| 204 | - } |
|
| 205 | - /** |
|
| 206 | - * Action done at the end of each model object construction |
|
| 207 | - * |
|
| 208 | - * @param EE_Base_Class $this the model object just created |
|
| 209 | - */ |
|
| 210 | - do_action('AHEE__EE_Base_Class__construct__finished', $this); |
|
| 211 | - } |
|
| 212 | - |
|
| 213 | - |
|
| 214 | - /** |
|
| 215 | - * Gets whether or not this model object is allowed to persist/be saved to the database. |
|
| 216 | - * |
|
| 217 | - * @return boolean |
|
| 218 | - */ |
|
| 219 | - public function allow_persist() |
|
| 220 | - { |
|
| 221 | - return $this->_allow_persist; |
|
| 222 | - } |
|
| 223 | - |
|
| 224 | - |
|
| 225 | - /** |
|
| 226 | - * Sets whether or not this model object should be allowed to be saved to the DB. |
|
| 227 | - * Normally once this is set to FALSE you wouldn't set it back to TRUE, unless |
|
| 228 | - * you got new information that somehow made you change your mind. |
|
| 229 | - * |
|
| 230 | - * @param boolean $allow_persist |
|
| 231 | - * @return boolean |
|
| 232 | - */ |
|
| 233 | - public function set_allow_persist($allow_persist) |
|
| 234 | - { |
|
| 235 | - return $this->_allow_persist = $allow_persist; |
|
| 236 | - } |
|
| 237 | - |
|
| 238 | - |
|
| 239 | - /** |
|
| 240 | - * Gets the field's original value when this object was constructed during this request. |
|
| 241 | - * This can be helpful when determining if a model object has changed or not |
|
| 242 | - * |
|
| 243 | - * @param string $field_name |
|
| 244 | - * @return mixed|null |
|
| 245 | - * @throws ReflectionException |
|
| 246 | - * @throws InvalidArgumentException |
|
| 247 | - * @throws InvalidInterfaceException |
|
| 248 | - * @throws InvalidDataTypeException |
|
| 249 | - * @throws EE_Error |
|
| 250 | - */ |
|
| 251 | - public function get_original($field_name) |
|
| 252 | - { |
|
| 253 | - if (isset($this->_props_n_values_provided_in_constructor[ $field_name ]) |
|
| 254 | - && $field_settings = $this->get_model()->field_settings_for($field_name) |
|
| 255 | - ) { |
|
| 256 | - return $field_settings->prepare_for_get($this->_props_n_values_provided_in_constructor[ $field_name ]); |
|
| 257 | - } |
|
| 258 | - return null; |
|
| 259 | - } |
|
| 260 | - |
|
| 261 | - |
|
| 262 | - /** |
|
| 263 | - * @param EE_Base_Class $obj |
|
| 264 | - * @return string |
|
| 265 | - */ |
|
| 266 | - public function get_class($obj) |
|
| 267 | - { |
|
| 268 | - return get_class($obj); |
|
| 269 | - } |
|
| 270 | - |
|
| 271 | - |
|
| 272 | - /** |
|
| 273 | - * Overrides parent because parent expects old models. |
|
| 274 | - * This also doesn't do any validation, and won't work for serialized arrays |
|
| 275 | - * |
|
| 276 | - * @param string $field_name |
|
| 277 | - * @param mixed $field_value |
|
| 278 | - * @param bool $use_default |
|
| 279 | - * @throws InvalidArgumentException |
|
| 280 | - * @throws InvalidInterfaceException |
|
| 281 | - * @throws InvalidDataTypeException |
|
| 282 | - * @throws EE_Error |
|
| 283 | - * @throws ReflectionException |
|
| 284 | - * @throws ReflectionException |
|
| 285 | - * @throws ReflectionException |
|
| 286 | - */ |
|
| 287 | - public function set($field_name, $field_value, $use_default = false) |
|
| 288 | - { |
|
| 289 | - // if not using default and nothing has changed, and object has already been setup (has ID), |
|
| 290 | - // then don't do anything |
|
| 291 | - if (! $use_default |
|
| 292 | - && $this->_fields[ $field_name ] === $field_value |
|
| 293 | - && $this->ID() |
|
| 294 | - ) { |
|
| 295 | - return; |
|
| 296 | - } |
|
| 297 | - $model = $this->get_model(); |
|
| 298 | - $this->_has_changes = true; |
|
| 299 | - $field_obj = $model->field_settings_for($field_name); |
|
| 300 | - if ($field_obj instanceof EE_Model_Field_Base) { |
|
| 301 | - // if ( method_exists( $field_obj, 'set_timezone' )) { |
|
| 302 | - if ($field_obj instanceof EE_Datetime_Field) { |
|
| 303 | - $field_obj->set_timezone($this->_timezone); |
|
| 304 | - $field_obj->set_date_format($this->_dt_frmt); |
|
| 305 | - $field_obj->set_time_format($this->_tm_frmt); |
|
| 306 | - } |
|
| 307 | - $holder_of_value = $field_obj->prepare_for_set($field_value); |
|
| 308 | - // should the value be null? |
|
| 309 | - if (($field_value === null || $holder_of_value === null || $holder_of_value === '') && $use_default) { |
|
| 310 | - $this->_fields[ $field_name ] = $field_obj->get_default_value(); |
|
| 311 | - /** |
|
| 312 | - * To save having to refactor all the models, if a default value is used for a |
|
| 313 | - * EE_Datetime_Field, and that value is not null nor is it a DateTime |
|
| 314 | - * object. Then let's do a set again to ensure that it becomes a DateTime |
|
| 315 | - * object. |
|
| 316 | - * |
|
| 317 | - * @since 4.6.10+ |
|
| 318 | - */ |
|
| 319 | - if ($field_obj instanceof EE_Datetime_Field |
|
| 320 | - && $this->_fields[ $field_name ] !== null |
|
| 321 | - && ! $this->_fields[ $field_name ] instanceof DateTime |
|
| 322 | - ) { |
|
| 323 | - empty($this->_fields[ $field_name ]) |
|
| 324 | - ? $this->set($field_name, time()) |
|
| 325 | - : $this->set($field_name, $this->_fields[ $field_name ]); |
|
| 326 | - } |
|
| 327 | - } else { |
|
| 328 | - $this->_fields[ $field_name ] = $holder_of_value; |
|
| 329 | - } |
|
| 330 | - // if we're not in the constructor... |
|
| 331 | - // now check if what we set was a primary key |
|
| 332 | - if (// note: props_n_values_provided_in_constructor is only set at the END of the constructor |
|
| 333 | - $this->_props_n_values_provided_in_constructor |
|
| 334 | - && $field_value |
|
| 335 | - && $field_name === $model->primary_key_name() |
|
| 336 | - ) { |
|
| 337 | - // if so, we want all this object's fields to be filled either with |
|
| 338 | - // what we've explicitly set on this model |
|
| 339 | - // or what we have in the db |
|
| 340 | - // echo "setting primary key!"; |
|
| 341 | - $fields_on_model = self::_get_model(get_class($this))->field_settings(); |
|
| 342 | - $obj_in_db = self::_get_model(get_class($this))->get_one_by_ID($field_value); |
|
| 343 | - foreach ($fields_on_model as $field_obj) { |
|
| 344 | - if (! array_key_exists($field_obj->get_name(), $this->_props_n_values_provided_in_constructor) |
|
| 345 | - && $field_obj->get_name() !== $field_name |
|
| 346 | - ) { |
|
| 347 | - $this->set($field_obj->get_name(), $obj_in_db->get($field_obj->get_name())); |
|
| 348 | - } |
|
| 349 | - } |
|
| 350 | - // oh this model object has an ID? well make sure its in the entity mapper |
|
| 351 | - $model->add_to_entity_map($this); |
|
| 352 | - } |
|
| 353 | - // let's unset any cache for this field_name from the $_cached_properties property. |
|
| 354 | - $this->_clear_cached_property($field_name); |
|
| 355 | - } else { |
|
| 356 | - throw new EE_Error( |
|
| 357 | - sprintf( |
|
| 358 | - esc_html__( |
|
| 359 | - 'A valid EE_Model_Field_Base could not be found for the given field name: %s', |
|
| 360 | - 'event_espresso' |
|
| 361 | - ), |
|
| 362 | - $field_name |
|
| 363 | - ) |
|
| 364 | - ); |
|
| 365 | - } |
|
| 366 | - } |
|
| 367 | - |
|
| 368 | - |
|
| 369 | - /** |
|
| 370 | - * Set custom select values for model. |
|
| 371 | - * |
|
| 372 | - * @param array $custom_select_values |
|
| 373 | - */ |
|
| 374 | - public function setCustomSelectsValues(array $custom_select_values) |
|
| 375 | - { |
|
| 376 | - $this->custom_selection_results = $custom_select_values; |
|
| 377 | - } |
|
| 378 | - |
|
| 379 | - |
|
| 380 | - /** |
|
| 381 | - * Returns the custom select value for the provided alias if its set. |
|
| 382 | - * If not set, returns null. |
|
| 383 | - * |
|
| 384 | - * @param string $alias |
|
| 385 | - * @return string|int|float|null |
|
| 386 | - */ |
|
| 387 | - public function getCustomSelect($alias) |
|
| 388 | - { |
|
| 389 | - return isset($this->custom_selection_results[ $alias ]) |
|
| 390 | - ? $this->custom_selection_results[ $alias ] |
|
| 391 | - : null; |
|
| 392 | - } |
|
| 393 | - |
|
| 394 | - |
|
| 395 | - /** |
|
| 396 | - * This sets the field value on the db column if it exists for the given $column_name or |
|
| 397 | - * saves it to EE_Extra_Meta if the given $column_name does not match a db column. |
|
| 398 | - * |
|
| 399 | - * @see EE_message::get_column_value for related documentation on the necessity of this method. |
|
| 400 | - * @param string $field_name Must be the exact column name. |
|
| 401 | - * @param mixed $field_value The value to set. |
|
| 402 | - * @return int|bool @see EE_Base_Class::update_extra_meta() for return docs. |
|
| 403 | - * @throws InvalidArgumentException |
|
| 404 | - * @throws InvalidInterfaceException |
|
| 405 | - * @throws InvalidDataTypeException |
|
| 406 | - * @throws EE_Error |
|
| 407 | - * @throws ReflectionException |
|
| 408 | - */ |
|
| 409 | - public function set_field_or_extra_meta($field_name, $field_value) |
|
| 410 | - { |
|
| 411 | - if ($this->get_model()->has_field($field_name)) { |
|
| 412 | - $this->set($field_name, $field_value); |
|
| 413 | - return true; |
|
| 414 | - } |
|
| 415 | - // ensure this object is saved first so that extra meta can be properly related. |
|
| 416 | - $this->save(); |
|
| 417 | - return $this->update_extra_meta($field_name, $field_value); |
|
| 418 | - } |
|
| 419 | - |
|
| 420 | - |
|
| 421 | - /** |
|
| 422 | - * This retrieves the value of the db column set on this class or if that's not present |
|
| 423 | - * it will attempt to retrieve from extra_meta if found. |
|
| 424 | - * Example Usage: |
|
| 425 | - * Via EE_Message child class: |
|
| 426 | - * Due to the dynamic nature of the EE_messages system, EE_messengers will always have a "to", |
|
| 427 | - * "from", "subject", and "content" field (as represented in the EE_Message schema), however they may |
|
| 428 | - * also have additional main fields specific to the messenger. The system accommodates those extra |
|
| 429 | - * fields through the EE_Extra_Meta table. This method allows for EE_messengers to retrieve the |
|
| 430 | - * value for those extra fields dynamically via the EE_message object. |
|
| 431 | - * |
|
| 432 | - * @param string $field_name expecting the fully qualified field name. |
|
| 433 | - * @return mixed|null value for the field if found. null if not found. |
|
| 434 | - * @throws ReflectionException |
|
| 435 | - * @throws InvalidArgumentException |
|
| 436 | - * @throws InvalidInterfaceException |
|
| 437 | - * @throws InvalidDataTypeException |
|
| 438 | - * @throws EE_Error |
|
| 439 | - */ |
|
| 440 | - public function get_field_or_extra_meta($field_name) |
|
| 441 | - { |
|
| 442 | - if ($this->get_model()->has_field($field_name)) { |
|
| 443 | - $column_value = $this->get($field_name); |
|
| 444 | - } else { |
|
| 445 | - // This isn't a column in the main table, let's see if it is in the extra meta. |
|
| 446 | - $column_value = $this->get_extra_meta($field_name, true, null); |
|
| 447 | - } |
|
| 448 | - return $column_value; |
|
| 449 | - } |
|
| 450 | - |
|
| 451 | - |
|
| 452 | - /** |
|
| 453 | - * See $_timezone property for description of what the timezone property is for. This SETS the timezone internally |
|
| 454 | - * for being able to reference what timezone we are running conversions on when converting TO the internal timezone |
|
| 455 | - * (UTC Unix Timestamp) for the object OR when converting FROM the internal timezone (UTC Unix Timestamp). This is |
|
| 456 | - * available to all child classes that may be using the EE_Datetime_Field for a field data type. |
|
| 457 | - * |
|
| 458 | - * @access public |
|
| 459 | - * @param string $timezone A valid timezone string as described by @link http://www.php.net/manual/en/timezones.php |
|
| 460 | - * @return void |
|
| 461 | - * @throws InvalidArgumentException |
|
| 462 | - * @throws InvalidInterfaceException |
|
| 463 | - * @throws InvalidDataTypeException |
|
| 464 | - * @throws EE_Error |
|
| 465 | - * @throws ReflectionException |
|
| 466 | - */ |
|
| 467 | - public function set_timezone($timezone = '') |
|
| 468 | - { |
|
| 469 | - $this->_timezone = EEH_DTT_Helper::get_valid_timezone_string($timezone); |
|
| 470 | - // make sure we clear all cached properties because they won't be relevant now |
|
| 471 | - $this->_clear_cached_properties(); |
|
| 472 | - // make sure we update field settings and the date for all EE_Datetime_Fields |
|
| 473 | - $model_fields = $this->get_model()->field_settings(false); |
|
| 474 | - foreach ($model_fields as $field_name => $field_obj) { |
|
| 475 | - if ($field_obj instanceof EE_Datetime_Field) { |
|
| 476 | - $field_obj->set_timezone($this->_timezone); |
|
| 477 | - if (isset($this->_fields[ $field_name ]) && $this->_fields[ $field_name ] instanceof DateTime) { |
|
| 478 | - EEH_DTT_Helper::setTimezone($this->_fields[ $field_name ], new DateTimeZone($this->_timezone)); |
|
| 479 | - } |
|
| 480 | - } |
|
| 481 | - } |
|
| 482 | - } |
|
| 483 | - |
|
| 484 | - |
|
| 485 | - /** |
|
| 486 | - * This just returns whatever is set for the current timezone. |
|
| 487 | - * |
|
| 488 | - * @access public |
|
| 489 | - * @return string timezone string |
|
| 490 | - */ |
|
| 491 | - public function get_timezone() |
|
| 492 | - { |
|
| 493 | - return $this->_timezone; |
|
| 494 | - } |
|
| 495 | - |
|
| 496 | - |
|
| 497 | - /** |
|
| 498 | - * This sets the internal date format to what is sent in to be used as the new default for the class |
|
| 499 | - * internally instead of wp set date format options |
|
| 500 | - * |
|
| 501 | - * @since 4.6 |
|
| 502 | - * @param string $format should be a format recognizable by PHP date() functions. |
|
| 503 | - */ |
|
| 504 | - public function set_date_format($format) |
|
| 505 | - { |
|
| 506 | - $this->_dt_frmt = $format; |
|
| 507 | - // clear cached_properties because they won't be relevant now. |
|
| 508 | - $this->_clear_cached_properties(); |
|
| 509 | - } |
|
| 510 | - |
|
| 511 | - |
|
| 512 | - /** |
|
| 513 | - * This sets the internal time format string to what is sent in to be used as the new default for the |
|
| 514 | - * class internally instead of wp set time format options. |
|
| 515 | - * |
|
| 516 | - * @since 4.6 |
|
| 517 | - * @param string $format should be a format recognizable by PHP date() functions. |
|
| 518 | - */ |
|
| 519 | - public function set_time_format($format) |
|
| 520 | - { |
|
| 521 | - $this->_tm_frmt = $format; |
|
| 522 | - // clear cached_properties because they won't be relevant now. |
|
| 523 | - $this->_clear_cached_properties(); |
|
| 524 | - } |
|
| 525 | - |
|
| 526 | - |
|
| 527 | - /** |
|
| 528 | - * This returns the current internal set format for the date and time formats. |
|
| 529 | - * |
|
| 530 | - * @param bool $full if true (default), then return the full format. Otherwise will return an array |
|
| 531 | - * where the first value is the date format and the second value is the time format. |
|
| 532 | - * @return mixed string|array |
|
| 533 | - */ |
|
| 534 | - public function get_format($full = true) |
|
| 535 | - { |
|
| 536 | - return $full ? $this->_dt_frmt . ' ' . $this->_tm_frmt : array($this->_dt_frmt, $this->_tm_frmt); |
|
| 537 | - } |
|
| 538 | - |
|
| 539 | - |
|
| 540 | - /** |
|
| 541 | - * cache |
|
| 542 | - * stores the passed model object on the current model object. |
|
| 543 | - * In certain circumstances, we can use this cached model object instead of querying for another one entirely. |
|
| 544 | - * |
|
| 545 | - * @param string $relationName one of the keys in the _model_relations array on the model. Eg |
|
| 546 | - * 'Registration' associated with this model object |
|
| 547 | - * @param EE_Base_Class $object_to_cache that has a relation to this model object. (Eg, if this is a Transaction, |
|
| 548 | - * that could be a payment or a registration) |
|
| 549 | - * @param null $cache_id a string or number that will be used as the key for any Belongs_To_Many |
|
| 550 | - * items which will be stored in an array on this object |
|
| 551 | - * @throws ReflectionException |
|
| 552 | - * @throws InvalidArgumentException |
|
| 553 | - * @throws InvalidInterfaceException |
|
| 554 | - * @throws InvalidDataTypeException |
|
| 555 | - * @throws EE_Error |
|
| 556 | - * @return mixed index into cache, or just TRUE if the relation is of type Belongs_To (because there's only one |
|
| 557 | - * related thing, no array) |
|
| 558 | - */ |
|
| 559 | - public function cache($relationName = '', $object_to_cache = null, $cache_id = null) |
|
| 560 | - { |
|
| 561 | - // its entirely possible that there IS no related object yet in which case there is nothing to cache. |
|
| 562 | - if (! $object_to_cache instanceof EE_Base_Class) { |
|
| 563 | - return false; |
|
| 564 | - } |
|
| 565 | - // also get "how" the object is related, or throw an error |
|
| 566 | - if (! $relationship_to_model = $this->get_model()->related_settings_for($relationName)) { |
|
| 567 | - throw new EE_Error( |
|
| 568 | - sprintf( |
|
| 569 | - esc_html__('There is no relationship to %s on a %s. Cannot cache it', 'event_espresso'), |
|
| 570 | - $relationName, |
|
| 571 | - get_class($this) |
|
| 572 | - ) |
|
| 573 | - ); |
|
| 574 | - } |
|
| 575 | - // how many things are related ? |
|
| 576 | - if ($relationship_to_model instanceof EE_Belongs_To_Relation) { |
|
| 577 | - // if it's a "belongs to" relationship, then there's only one related model object |
|
| 578 | - // eg, if this is a registration, there's only 1 attendee for it |
|
| 579 | - // so for these model objects just set it to be cached |
|
| 580 | - $this->_model_relations[ $relationName ] = $object_to_cache; |
|
| 581 | - $return = true; |
|
| 582 | - } else { |
|
| 583 | - // otherwise, this is the "many" side of a one to many relationship, |
|
| 584 | - // so we'll add the object to the array of related objects for that type. |
|
| 585 | - // eg: if this is an event, there are many registrations for that event, |
|
| 586 | - // so we cache the registrations in an array |
|
| 587 | - if (! is_array($this->_model_relations[ $relationName ])) { |
|
| 588 | - // if for some reason, the cached item is a model object, |
|
| 589 | - // then stick that in the array, otherwise start with an empty array |
|
| 590 | - $this->_model_relations[ $relationName ] = $this->_model_relations[ $relationName ] |
|
| 591 | - instanceof |
|
| 592 | - EE_Base_Class |
|
| 593 | - ? array($this->_model_relations[ $relationName ]) : array(); |
|
| 594 | - } |
|
| 595 | - // first check for a cache_id which is normally empty |
|
| 596 | - if (! empty($cache_id)) { |
|
| 597 | - // if the cache_id exists, then it means we are purposely trying to cache this |
|
| 598 | - // with a known key that can then be used to retrieve the object later on |
|
| 599 | - $this->_model_relations[ $relationName ][ $cache_id ] = $object_to_cache; |
|
| 600 | - $return = $cache_id; |
|
| 601 | - } elseif ($object_to_cache->ID()) { |
|
| 602 | - // OR the cached object originally came from the db, so let's just use it's PK for an ID |
|
| 603 | - $this->_model_relations[ $relationName ][ $object_to_cache->ID() ] = $object_to_cache; |
|
| 604 | - $return = $object_to_cache->ID(); |
|
| 605 | - } else { |
|
| 606 | - // OR it's a new object with no ID, so just throw it in the array with an auto-incremented ID |
|
| 607 | - $this->_model_relations[ $relationName ][] = $object_to_cache; |
|
| 608 | - // move the internal pointer to the end of the array |
|
| 609 | - end($this->_model_relations[ $relationName ]); |
|
| 610 | - // and grab the key so that we can return it |
|
| 611 | - $return = key($this->_model_relations[ $relationName ]); |
|
| 612 | - } |
|
| 613 | - } |
|
| 614 | - return $return; |
|
| 615 | - } |
|
| 616 | - |
|
| 617 | - |
|
| 618 | - /** |
|
| 619 | - * For adding an item to the cached_properties property. |
|
| 620 | - * |
|
| 621 | - * @access protected |
|
| 622 | - * @param string $fieldname the property item the corresponding value is for. |
|
| 623 | - * @param mixed $value The value we are caching. |
|
| 624 | - * @param string|null $cache_type |
|
| 625 | - * @return void |
|
| 626 | - * @throws ReflectionException |
|
| 627 | - * @throws InvalidArgumentException |
|
| 628 | - * @throws InvalidInterfaceException |
|
| 629 | - * @throws InvalidDataTypeException |
|
| 630 | - * @throws EE_Error |
|
| 631 | - */ |
|
| 632 | - protected function _set_cached_property($fieldname, $value, $cache_type = null) |
|
| 633 | - { |
|
| 634 | - // first make sure this property exists |
|
| 635 | - $this->get_model()->field_settings_for($fieldname); |
|
| 636 | - $cache_type = empty($cache_type) ? 'standard' : $cache_type; |
|
| 637 | - $this->_cached_properties[ $fieldname ][ $cache_type ] = $value; |
|
| 638 | - } |
|
| 639 | - |
|
| 640 | - |
|
| 641 | - /** |
|
| 642 | - * This returns the value cached property if it exists OR the actual property value if the cache doesn't exist. |
|
| 643 | - * This also SETS the cache if we return the actual property! |
|
| 644 | - * |
|
| 645 | - * @param string $fieldname the name of the property we're trying to retrieve |
|
| 646 | - * @param bool $pretty |
|
| 647 | - * @param string $extra_cache_ref This allows the user to specify an extra cache ref for the given property |
|
| 648 | - * (in cases where the same property may be used for different outputs |
|
| 649 | - * - i.e. datetime, money etc.) |
|
| 650 | - * It can also accept certain pre-defined "schema" strings |
|
| 651 | - * to define how to output the property. |
|
| 652 | - * see the field's prepare_for_pretty_echoing for what strings can be used |
|
| 653 | - * @return mixed whatever the value for the property is we're retrieving |
|
| 654 | - * @throws ReflectionException |
|
| 655 | - * @throws InvalidArgumentException |
|
| 656 | - * @throws InvalidInterfaceException |
|
| 657 | - * @throws InvalidDataTypeException |
|
| 658 | - * @throws EE_Error |
|
| 659 | - */ |
|
| 660 | - protected function _get_cached_property($fieldname, $pretty = false, $extra_cache_ref = null) |
|
| 661 | - { |
|
| 662 | - // verify the field exists |
|
| 663 | - $model = $this->get_model(); |
|
| 664 | - $model->field_settings_for($fieldname); |
|
| 665 | - $cache_type = $pretty ? 'pretty' : 'standard'; |
|
| 666 | - $cache_type .= ! empty($extra_cache_ref) ? '_' . $extra_cache_ref : ''; |
|
| 667 | - if (isset($this->_cached_properties[ $fieldname ][ $cache_type ])) { |
|
| 668 | - return $this->_cached_properties[ $fieldname ][ $cache_type ]; |
|
| 669 | - } |
|
| 670 | - $value = $this->_get_fresh_property($fieldname, $pretty, $extra_cache_ref); |
|
| 671 | - $this->_set_cached_property($fieldname, $value, $cache_type); |
|
| 672 | - return $value; |
|
| 673 | - } |
|
| 674 | - |
|
| 675 | - |
|
| 676 | - /** |
|
| 677 | - * If the cache didn't fetch the needed item, this fetches it. |
|
| 678 | - * |
|
| 679 | - * @param string $fieldname |
|
| 680 | - * @param bool $pretty |
|
| 681 | - * @param string $extra_cache_ref |
|
| 682 | - * @return mixed |
|
| 683 | - * @throws InvalidArgumentException |
|
| 684 | - * @throws InvalidInterfaceException |
|
| 685 | - * @throws InvalidDataTypeException |
|
| 686 | - * @throws EE_Error |
|
| 687 | - * @throws ReflectionException |
|
| 688 | - */ |
|
| 689 | - protected function _get_fresh_property($fieldname, $pretty = false, $extra_cache_ref = null) |
|
| 690 | - { |
|
| 691 | - $field_obj = $this->get_model()->field_settings_for($fieldname); |
|
| 692 | - // If this is an EE_Datetime_Field we need to make sure timezone, formats, and output are correct |
|
| 693 | - if ($field_obj instanceof EE_Datetime_Field) { |
|
| 694 | - $this->_prepare_datetime_field($field_obj, $pretty, $extra_cache_ref); |
|
| 695 | - } |
|
| 696 | - if (! isset($this->_fields[ $fieldname ])) { |
|
| 697 | - $this->_fields[ $fieldname ] = null; |
|
| 698 | - } |
|
| 699 | - $value = $pretty |
|
| 700 | - ? $field_obj->prepare_for_pretty_echoing($this->_fields[ $fieldname ], $extra_cache_ref) |
|
| 701 | - : $field_obj->prepare_for_get($this->_fields[ $fieldname ]); |
|
| 702 | - return $value; |
|
| 703 | - } |
|
| 704 | - |
|
| 705 | - |
|
| 706 | - /** |
|
| 707 | - * set timezone, formats, and output for EE_Datetime_Field objects |
|
| 708 | - * |
|
| 709 | - * @param \EE_Datetime_Field $datetime_field |
|
| 710 | - * @param bool $pretty |
|
| 711 | - * @param null $date_or_time |
|
| 712 | - * @return void |
|
| 713 | - * @throws InvalidArgumentException |
|
| 714 | - * @throws InvalidInterfaceException |
|
| 715 | - * @throws InvalidDataTypeException |
|
| 716 | - * @throws EE_Error |
|
| 717 | - */ |
|
| 718 | - protected function _prepare_datetime_field( |
|
| 719 | - EE_Datetime_Field $datetime_field, |
|
| 720 | - $pretty = false, |
|
| 721 | - $date_or_time = null |
|
| 722 | - ) { |
|
| 723 | - $datetime_field->set_timezone($this->_timezone); |
|
| 724 | - $datetime_field->set_date_format($this->_dt_frmt, $pretty); |
|
| 725 | - $datetime_field->set_time_format($this->_tm_frmt, $pretty); |
|
| 726 | - // set the output returned |
|
| 727 | - switch ($date_or_time) { |
|
| 728 | - case 'D': |
|
| 729 | - $datetime_field->set_date_time_output('date'); |
|
| 730 | - break; |
|
| 731 | - case 'T': |
|
| 732 | - $datetime_field->set_date_time_output('time'); |
|
| 733 | - break; |
|
| 734 | - default: |
|
| 735 | - $datetime_field->set_date_time_output(); |
|
| 736 | - } |
|
| 737 | - } |
|
| 738 | - |
|
| 739 | - |
|
| 740 | - /** |
|
| 741 | - * This just takes care of clearing out the cached_properties |
|
| 742 | - * |
|
| 743 | - * @return void |
|
| 744 | - */ |
|
| 745 | - protected function _clear_cached_properties() |
|
| 746 | - { |
|
| 747 | - $this->_cached_properties = array(); |
|
| 748 | - } |
|
| 749 | - |
|
| 750 | - |
|
| 751 | - /** |
|
| 752 | - * This just clears out ONE property if it exists in the cache |
|
| 753 | - * |
|
| 754 | - * @param string $property_name the property to remove if it exists (from the _cached_properties array) |
|
| 755 | - * @return void |
|
| 756 | - */ |
|
| 757 | - protected function _clear_cached_property($property_name) |
|
| 758 | - { |
|
| 759 | - if (isset($this->_cached_properties[ $property_name ])) { |
|
| 760 | - unset($this->_cached_properties[ $property_name ]); |
|
| 761 | - } |
|
| 762 | - } |
|
| 763 | - |
|
| 764 | - |
|
| 765 | - /** |
|
| 766 | - * Ensures that this related thing is a model object. |
|
| 767 | - * |
|
| 768 | - * @param mixed $object_or_id EE_base_Class/int/string either a related model object, or its ID |
|
| 769 | - * @param string $model_name name of the related thing, eg 'Attendee', |
|
| 770 | - * @return EE_Base_Class |
|
| 771 | - * @throws ReflectionException |
|
| 772 | - * @throws InvalidArgumentException |
|
| 773 | - * @throws InvalidInterfaceException |
|
| 774 | - * @throws InvalidDataTypeException |
|
| 775 | - * @throws EE_Error |
|
| 776 | - */ |
|
| 777 | - protected function ensure_related_thing_is_model_obj($object_or_id, $model_name) |
|
| 778 | - { |
|
| 779 | - $other_model_instance = self::_get_model_instance_with_name( |
|
| 780 | - self::_get_model_classname($model_name), |
|
| 781 | - $this->_timezone |
|
| 782 | - ); |
|
| 783 | - return $other_model_instance->ensure_is_obj($object_or_id); |
|
| 784 | - } |
|
| 785 | - |
|
| 786 | - |
|
| 787 | - /** |
|
| 788 | - * Forgets the cached model of the given relation Name. So the next time we request it, |
|
| 789 | - * we will fetch it again from the database. (Handy if you know it's changed somehow). |
|
| 790 | - * If a specific object is supplied, and the relationship to it is either a HasMany or HABTM, |
|
| 791 | - * then only remove that one object from our cached array. Otherwise, clear the entire list |
|
| 792 | - * |
|
| 793 | - * @param string $relationName one of the keys in the _model_relations array on the model. |
|
| 794 | - * Eg 'Registration' |
|
| 795 | - * @param mixed $object_to_remove_or_index_into_array or an index into the array of cached things, or NULL |
|
| 796 | - * if you intend to use $clear_all = TRUE, or the relation only |
|
| 797 | - * has 1 object anyways (ie, it's a BelongsToRelation) |
|
| 798 | - * @param bool $clear_all This flags clearing the entire cache relation property if |
|
| 799 | - * this is HasMany or HABTM. |
|
| 800 | - * @throws ReflectionException |
|
| 801 | - * @throws InvalidArgumentException |
|
| 802 | - * @throws InvalidInterfaceException |
|
| 803 | - * @throws InvalidDataTypeException |
|
| 804 | - * @throws EE_Error |
|
| 805 | - * @return EE_Base_Class | boolean from which was cleared from the cache, or true if we requested to remove a |
|
| 806 | - * relation from all |
|
| 807 | - */ |
|
| 808 | - public function clear_cache($relationName, $object_to_remove_or_index_into_array = null, $clear_all = false) |
|
| 809 | - { |
|
| 810 | - $relationship_to_model = $this->get_model()->related_settings_for($relationName); |
|
| 811 | - $index_in_cache = ''; |
|
| 812 | - if (! $relationship_to_model) { |
|
| 813 | - throw new EE_Error( |
|
| 814 | - sprintf( |
|
| 815 | - esc_html__('There is no relationship to %s on a %s. Cannot clear that cache', 'event_espresso'), |
|
| 816 | - $relationName, |
|
| 817 | - get_class($this) |
|
| 818 | - ) |
|
| 819 | - ); |
|
| 820 | - } |
|
| 821 | - if ($clear_all) { |
|
| 822 | - $obj_removed = true; |
|
| 823 | - $this->_model_relations[ $relationName ] = null; |
|
| 824 | - } elseif ($relationship_to_model instanceof EE_Belongs_To_Relation) { |
|
| 825 | - $obj_removed = $this->_model_relations[ $relationName ]; |
|
| 826 | - $this->_model_relations[ $relationName ] = null; |
|
| 827 | - } else { |
|
| 828 | - if ($object_to_remove_or_index_into_array instanceof EE_Base_Class |
|
| 829 | - && $object_to_remove_or_index_into_array->ID() |
|
| 830 | - ) { |
|
| 831 | - $index_in_cache = $object_to_remove_or_index_into_array->ID(); |
|
| 832 | - if (is_array($this->_model_relations[ $relationName ]) |
|
| 833 | - && ! isset($this->_model_relations[ $relationName ][ $index_in_cache ]) |
|
| 834 | - ) { |
|
| 835 | - $index_found_at = null; |
|
| 836 | - // find this object in the array even though it has a different key |
|
| 837 | - foreach ($this->_model_relations[ $relationName ] as $index => $obj) { |
|
| 838 | - /** @noinspection TypeUnsafeComparisonInspection */ |
|
| 839 | - if ($obj instanceof EE_Base_Class |
|
| 840 | - && ( |
|
| 841 | - $obj == $object_to_remove_or_index_into_array |
|
| 842 | - || $obj->ID() === $object_to_remove_or_index_into_array->ID() |
|
| 843 | - ) |
|
| 844 | - ) { |
|
| 845 | - $index_found_at = $index; |
|
| 846 | - break; |
|
| 847 | - } |
|
| 848 | - } |
|
| 849 | - if ($index_found_at) { |
|
| 850 | - $index_in_cache = $index_found_at; |
|
| 851 | - } else { |
|
| 852 | - // it wasn't found. huh. well obviously it doesn't need to be removed from teh cache |
|
| 853 | - // if it wasn't in it to begin with. So we're done |
|
| 854 | - return $object_to_remove_or_index_into_array; |
|
| 855 | - } |
|
| 856 | - } |
|
| 857 | - } elseif ($object_to_remove_or_index_into_array instanceof EE_Base_Class) { |
|
| 858 | - // so they provided a model object, but it's not yet saved to the DB... so let's go hunting for it! |
|
| 859 | - foreach ($this->get_all_from_cache($relationName) as $index => $potentially_obj_we_want) { |
|
| 860 | - /** @noinspection TypeUnsafeComparisonInspection */ |
|
| 861 | - if ($potentially_obj_we_want == $object_to_remove_or_index_into_array) { |
|
| 862 | - $index_in_cache = $index; |
|
| 863 | - } |
|
| 864 | - } |
|
| 865 | - } else { |
|
| 866 | - $index_in_cache = $object_to_remove_or_index_into_array; |
|
| 867 | - } |
|
| 868 | - // supposedly we've found it. But it could just be that the client code |
|
| 869 | - // provided a bad index/object |
|
| 870 | - if (isset($this->_model_relations[ $relationName ][ $index_in_cache ])) { |
|
| 871 | - $obj_removed = $this->_model_relations[ $relationName ][ $index_in_cache ]; |
|
| 872 | - unset($this->_model_relations[ $relationName ][ $index_in_cache ]); |
|
| 873 | - } else { |
|
| 874 | - // that thing was never cached anyways. |
|
| 875 | - $obj_removed = null; |
|
| 876 | - } |
|
| 877 | - } |
|
| 878 | - return $obj_removed; |
|
| 879 | - } |
|
| 880 | - |
|
| 881 | - |
|
| 882 | - /** |
|
| 883 | - * update_cache_after_object_save |
|
| 884 | - * Allows a cached item to have it's cache ID (within the array of cached items) reset using the new ID it has |
|
| 885 | - * obtained after being saved to the db |
|
| 886 | - * |
|
| 887 | - * @param string $relationName - the type of object that is cached |
|
| 888 | - * @param EE_Base_Class $newly_saved_object - the newly saved object to be re-cached |
|
| 889 | - * @param string $current_cache_id - the ID that was used when originally caching the object |
|
| 890 | - * @return boolean TRUE on success, FALSE on fail |
|
| 891 | - * @throws ReflectionException |
|
| 892 | - * @throws InvalidArgumentException |
|
| 893 | - * @throws InvalidInterfaceException |
|
| 894 | - * @throws InvalidDataTypeException |
|
| 895 | - * @throws EE_Error |
|
| 896 | - */ |
|
| 897 | - public function update_cache_after_object_save( |
|
| 898 | - $relationName, |
|
| 899 | - EE_Base_Class $newly_saved_object, |
|
| 900 | - $current_cache_id = '' |
|
| 901 | - ) { |
|
| 902 | - // verify that incoming object is of the correct type |
|
| 903 | - $obj_class = 'EE_' . $relationName; |
|
| 904 | - if ($newly_saved_object instanceof $obj_class) { |
|
| 905 | - /* @type EE_Base_Class $newly_saved_object */ |
|
| 906 | - // now get the type of relation |
|
| 907 | - $relationship_to_model = $this->get_model()->related_settings_for($relationName); |
|
| 908 | - // if this is a 1:1 relationship |
|
| 909 | - if ($relationship_to_model instanceof EE_Belongs_To_Relation) { |
|
| 910 | - // then just replace the cached object with the newly saved object |
|
| 911 | - $this->_model_relations[ $relationName ] = $newly_saved_object; |
|
| 912 | - return true; |
|
| 913 | - // or if it's some kind of sordid feral polyamorous relationship... |
|
| 914 | - } |
|
| 915 | - if (is_array($this->_model_relations[ $relationName ]) |
|
| 916 | - && isset($this->_model_relations[ $relationName ][ $current_cache_id ]) |
|
| 917 | - ) { |
|
| 918 | - // then remove the current cached item |
|
| 919 | - unset($this->_model_relations[ $relationName ][ $current_cache_id ]); |
|
| 920 | - // and cache the newly saved object using it's new ID |
|
| 921 | - $this->_model_relations[ $relationName ][ $newly_saved_object->ID() ] = $newly_saved_object; |
|
| 922 | - return true; |
|
| 923 | - } |
|
| 924 | - } |
|
| 925 | - return false; |
|
| 926 | - } |
|
| 927 | - |
|
| 928 | - |
|
| 929 | - /** |
|
| 930 | - * Fetches a single EE_Base_Class on that relation. (If the relation is of type |
|
| 931 | - * BelongsTo, it will only ever have 1 object. However, other relations could have an array of objects) |
|
| 932 | - * |
|
| 933 | - * @param string $relationName |
|
| 934 | - * @return EE_Base_Class |
|
| 935 | - */ |
|
| 936 | - public function get_one_from_cache($relationName) |
|
| 937 | - { |
|
| 938 | - $cached_array_or_object = isset($this->_model_relations[ $relationName ]) |
|
| 939 | - ? $this->_model_relations[ $relationName ] |
|
| 940 | - : null; |
|
| 941 | - if (is_array($cached_array_or_object)) { |
|
| 942 | - return array_shift($cached_array_or_object); |
|
| 943 | - } |
|
| 944 | - return $cached_array_or_object; |
|
| 945 | - } |
|
| 946 | - |
|
| 947 | - |
|
| 948 | - /** |
|
| 949 | - * Fetches a single EE_Base_Class on that relation. (If the relation is of type |
|
| 950 | - * BelongsTo, it will only ever have 1 object. However, other relations could have an array of objects) |
|
| 951 | - * |
|
| 952 | - * @param string $relationName |
|
| 953 | - * @throws ReflectionException |
|
| 954 | - * @throws InvalidArgumentException |
|
| 955 | - * @throws InvalidInterfaceException |
|
| 956 | - * @throws InvalidDataTypeException |
|
| 957 | - * @throws EE_Error |
|
| 958 | - * @return EE_Base_Class[] NOT necessarily indexed by primary keys |
|
| 959 | - */ |
|
| 960 | - public function get_all_from_cache($relationName) |
|
| 961 | - { |
|
| 962 | - $objects = isset($this->_model_relations[ $relationName ]) ? $this->_model_relations[ $relationName ] : array(); |
|
| 963 | - // if the result is not an array, but exists, make it an array |
|
| 964 | - $objects = is_array($objects) ? $objects : array($objects); |
|
| 965 | - // bugfix for https://events.codebasehq.com/projects/event-espresso/tickets/7143 |
|
| 966 | - // basically, if this model object was stored in the session, and these cached model objects |
|
| 967 | - // already have IDs, let's make sure they're in their model's entity mapper |
|
| 968 | - // otherwise we will have duplicates next time we call |
|
| 969 | - // EE_Registry::instance()->load_model( $relationName )->get_one_by_ID( $result->ID() ); |
|
| 970 | - $model = EE_Registry::instance()->load_model($relationName); |
|
| 971 | - foreach ($objects as $model_object) { |
|
| 972 | - if ($model instanceof EEM_Base && $model_object instanceof EE_Base_Class) { |
|
| 973 | - // ensure its in the map if it has an ID; otherwise it will be added to the map when its saved |
|
| 974 | - if ($model_object->ID()) { |
|
| 975 | - $model->add_to_entity_map($model_object); |
|
| 976 | - } |
|
| 977 | - } else { |
|
| 978 | - throw new EE_Error( |
|
| 979 | - sprintf( |
|
| 980 | - esc_html__( |
|
| 981 | - 'Error retrieving related model objects. Either $1%s is not a model or $2%s is not a model object', |
|
| 982 | - 'event_espresso' |
|
| 983 | - ), |
|
| 984 | - $relationName, |
|
| 985 | - gettype($model_object) |
|
| 986 | - ) |
|
| 987 | - ); |
|
| 988 | - } |
|
| 989 | - } |
|
| 990 | - return $objects; |
|
| 991 | - } |
|
| 992 | - |
|
| 993 | - |
|
| 994 | - /** |
|
| 995 | - * Returns the next x number of EE_Base_Class objects in sequence from this object as found in the database |
|
| 996 | - * matching the given query conditions. |
|
| 997 | - * |
|
| 998 | - * @param null $field_to_order_by What field is being used as the reference point. |
|
| 999 | - * @param int $limit How many objects to return. |
|
| 1000 | - * @param array $query_params Any additional conditions on the query. |
|
| 1001 | - * @param null $columns_to_select If left null, then an array of EE_Base_Class objects is returned, otherwise |
|
| 1002 | - * you can indicate just the columns you want returned |
|
| 1003 | - * @return array|EE_Base_Class[] |
|
| 1004 | - * @throws ReflectionException |
|
| 1005 | - * @throws InvalidArgumentException |
|
| 1006 | - * @throws InvalidInterfaceException |
|
| 1007 | - * @throws InvalidDataTypeException |
|
| 1008 | - * @throws EE_Error |
|
| 1009 | - */ |
|
| 1010 | - public function next_x($field_to_order_by = null, $limit = 1, $query_params = array(), $columns_to_select = null) |
|
| 1011 | - { |
|
| 1012 | - $model = $this->get_model(); |
|
| 1013 | - $field = empty($field_to_order_by) && $model->has_primary_key_field() |
|
| 1014 | - ? $model->get_primary_key_field()->get_name() |
|
| 1015 | - : $field_to_order_by; |
|
| 1016 | - $current_value = ! empty($field) ? $this->get($field) : null; |
|
| 1017 | - if (empty($field) || empty($current_value)) { |
|
| 1018 | - return array(); |
|
| 1019 | - } |
|
| 1020 | - return $model->next_x($current_value, $field, $limit, $query_params, $columns_to_select); |
|
| 1021 | - } |
|
| 1022 | - |
|
| 1023 | - |
|
| 1024 | - /** |
|
| 1025 | - * Returns the previous x number of EE_Base_Class objects in sequence from this object as found in the database |
|
| 1026 | - * matching the given query conditions. |
|
| 1027 | - * |
|
| 1028 | - * @param null $field_to_order_by What field is being used as the reference point. |
|
| 1029 | - * @param int $limit How many objects to return. |
|
| 1030 | - * @param array $query_params Any additional conditions on the query. |
|
| 1031 | - * @param null $columns_to_select If left null, then an array of EE_Base_Class objects is returned, otherwise |
|
| 1032 | - * you can indicate just the columns you want returned |
|
| 1033 | - * @return array|EE_Base_Class[] |
|
| 1034 | - * @throws ReflectionException |
|
| 1035 | - * @throws InvalidArgumentException |
|
| 1036 | - * @throws InvalidInterfaceException |
|
| 1037 | - * @throws InvalidDataTypeException |
|
| 1038 | - * @throws EE_Error |
|
| 1039 | - */ |
|
| 1040 | - public function previous_x( |
|
| 1041 | - $field_to_order_by = null, |
|
| 1042 | - $limit = 1, |
|
| 1043 | - $query_params = array(), |
|
| 1044 | - $columns_to_select = null |
|
| 1045 | - ) { |
|
| 1046 | - $model = $this->get_model(); |
|
| 1047 | - $field = empty($field_to_order_by) && $model->has_primary_key_field() |
|
| 1048 | - ? $model->get_primary_key_field()->get_name() |
|
| 1049 | - : $field_to_order_by; |
|
| 1050 | - $current_value = ! empty($field) ? $this->get($field) : null; |
|
| 1051 | - if (empty($field) || empty($current_value)) { |
|
| 1052 | - return array(); |
|
| 1053 | - } |
|
| 1054 | - return $model->previous_x($current_value, $field, $limit, $query_params, $columns_to_select); |
|
| 1055 | - } |
|
| 1056 | - |
|
| 1057 | - |
|
| 1058 | - /** |
|
| 1059 | - * Returns the next EE_Base_Class object in sequence from this object as found in the database |
|
| 1060 | - * matching the given query conditions. |
|
| 1061 | - * |
|
| 1062 | - * @param null $field_to_order_by What field is being used as the reference point. |
|
| 1063 | - * @param array $query_params Any additional conditions on the query. |
|
| 1064 | - * @param null $columns_to_select If left null, then an array of EE_Base_Class objects is returned, otherwise |
|
| 1065 | - * you can indicate just the columns you want returned |
|
| 1066 | - * @return array|EE_Base_Class |
|
| 1067 | - * @throws ReflectionException |
|
| 1068 | - * @throws InvalidArgumentException |
|
| 1069 | - * @throws InvalidInterfaceException |
|
| 1070 | - * @throws InvalidDataTypeException |
|
| 1071 | - * @throws EE_Error |
|
| 1072 | - */ |
|
| 1073 | - public function next($field_to_order_by = null, $query_params = array(), $columns_to_select = null) |
|
| 1074 | - { |
|
| 1075 | - $model = $this->get_model(); |
|
| 1076 | - $field = empty($field_to_order_by) && $model->has_primary_key_field() |
|
| 1077 | - ? $model->get_primary_key_field()->get_name() |
|
| 1078 | - : $field_to_order_by; |
|
| 1079 | - $current_value = ! empty($field) ? $this->get($field) : null; |
|
| 1080 | - if (empty($field) || empty($current_value)) { |
|
| 1081 | - return array(); |
|
| 1082 | - } |
|
| 1083 | - return $model->next($current_value, $field, $query_params, $columns_to_select); |
|
| 1084 | - } |
|
| 1085 | - |
|
| 1086 | - |
|
| 1087 | - /** |
|
| 1088 | - * Returns the previous EE_Base_Class object in sequence from this object as found in the database |
|
| 1089 | - * matching the given query conditions. |
|
| 1090 | - * |
|
| 1091 | - * @param null $field_to_order_by What field is being used as the reference point. |
|
| 1092 | - * @param array $query_params Any additional conditions on the query. |
|
| 1093 | - * @param null $columns_to_select If left null, then an EE_Base_Class object is returned, otherwise |
|
| 1094 | - * you can indicate just the column you want returned |
|
| 1095 | - * @return array|EE_Base_Class |
|
| 1096 | - * @throws ReflectionException |
|
| 1097 | - * @throws InvalidArgumentException |
|
| 1098 | - * @throws InvalidInterfaceException |
|
| 1099 | - * @throws InvalidDataTypeException |
|
| 1100 | - * @throws EE_Error |
|
| 1101 | - */ |
|
| 1102 | - public function previous($field_to_order_by = null, $query_params = array(), $columns_to_select = null) |
|
| 1103 | - { |
|
| 1104 | - $model = $this->get_model(); |
|
| 1105 | - $field = empty($field_to_order_by) && $model->has_primary_key_field() |
|
| 1106 | - ? $model->get_primary_key_field()->get_name() |
|
| 1107 | - : $field_to_order_by; |
|
| 1108 | - $current_value = ! empty($field) ? $this->get($field) : null; |
|
| 1109 | - if (empty($field) || empty($current_value)) { |
|
| 1110 | - return array(); |
|
| 1111 | - } |
|
| 1112 | - return $model->previous($current_value, $field, $query_params, $columns_to_select); |
|
| 1113 | - } |
|
| 1114 | - |
|
| 1115 | - |
|
| 1116 | - /** |
|
| 1117 | - * Overrides parent because parent expects old models. |
|
| 1118 | - * This also doesn't do any validation, and won't work for serialized arrays |
|
| 1119 | - * |
|
| 1120 | - * @param string $field_name |
|
| 1121 | - * @param mixed $field_value_from_db |
|
| 1122 | - * @throws ReflectionException |
|
| 1123 | - * @throws InvalidArgumentException |
|
| 1124 | - * @throws InvalidInterfaceException |
|
| 1125 | - * @throws InvalidDataTypeException |
|
| 1126 | - * @throws EE_Error |
|
| 1127 | - */ |
|
| 1128 | - public function set_from_db($field_name, $field_value_from_db) |
|
| 1129 | - { |
|
| 1130 | - $field_obj = $this->get_model()->field_settings_for($field_name); |
|
| 1131 | - if ($field_obj instanceof EE_Model_Field_Base) { |
|
| 1132 | - // you would think the DB has no NULLs for non-null label fields right? wrong! |
|
| 1133 | - // eg, a CPT model object could have an entry in the posts table, but no |
|
| 1134 | - // entry in the meta table. Meaning that all its columns in the meta table |
|
| 1135 | - // are null! yikes! so when we find one like that, use defaults for its meta columns |
|
| 1136 | - if ($field_value_from_db === null) { |
|
| 1137 | - if ($field_obj->is_nullable()) { |
|
| 1138 | - // if the field allows nulls, then let it be null |
|
| 1139 | - $field_value = null; |
|
| 1140 | - } else { |
|
| 1141 | - $field_value = $field_obj->get_default_value(); |
|
| 1142 | - } |
|
| 1143 | - } else { |
|
| 1144 | - $field_value = $field_obj->prepare_for_set_from_db($field_value_from_db); |
|
| 1145 | - } |
|
| 1146 | - $this->_fields[ $field_name ] = $field_value; |
|
| 1147 | - $this->_clear_cached_property($field_name); |
|
| 1148 | - } |
|
| 1149 | - } |
|
| 1150 | - |
|
| 1151 | - |
|
| 1152 | - /** |
|
| 1153 | - * verifies that the specified field is of the correct type |
|
| 1154 | - * |
|
| 1155 | - * @param string $field_name |
|
| 1156 | - * @param string $extra_cache_ref This allows the user to specify an extra cache ref for the given property |
|
| 1157 | - * (in cases where the same property may be used for different outputs |
|
| 1158 | - * - i.e. datetime, money etc.) |
|
| 1159 | - * @return mixed |
|
| 1160 | - * @throws ReflectionException |
|
| 1161 | - * @throws InvalidArgumentException |
|
| 1162 | - * @throws InvalidInterfaceException |
|
| 1163 | - * @throws InvalidDataTypeException |
|
| 1164 | - * @throws EE_Error |
|
| 1165 | - */ |
|
| 1166 | - public function get($field_name, $extra_cache_ref = null) |
|
| 1167 | - { |
|
| 1168 | - return $this->_get_cached_property($field_name, false, $extra_cache_ref); |
|
| 1169 | - } |
|
| 1170 | - |
|
| 1171 | - |
|
| 1172 | - /** |
|
| 1173 | - * This method simply returns the RAW unprocessed value for the given property in this class |
|
| 1174 | - * |
|
| 1175 | - * @param string $field_name A valid fieldname |
|
| 1176 | - * @return mixed Whatever the raw value stored on the property is. |
|
| 1177 | - * @throws ReflectionException |
|
| 1178 | - * @throws InvalidArgumentException |
|
| 1179 | - * @throws InvalidInterfaceException |
|
| 1180 | - * @throws InvalidDataTypeException |
|
| 1181 | - * @throws EE_Error if fieldSettings is misconfigured or the field doesn't exist. |
|
| 1182 | - */ |
|
| 1183 | - public function get_raw($field_name) |
|
| 1184 | - { |
|
| 1185 | - $field_settings = $this->get_model()->field_settings_for($field_name); |
|
| 1186 | - return $field_settings instanceof EE_Datetime_Field && $this->_fields[ $field_name ] instanceof DateTime |
|
| 1187 | - ? $this->_fields[ $field_name ]->format('U') |
|
| 1188 | - : $this->_fields[ $field_name ]; |
|
| 1189 | - } |
|
| 1190 | - |
|
| 1191 | - |
|
| 1192 | - /** |
|
| 1193 | - * This is used to return the internal DateTime object used for a field that is a |
|
| 1194 | - * EE_Datetime_Field. |
|
| 1195 | - * |
|
| 1196 | - * @param string $field_name The field name retrieving the DateTime object. |
|
| 1197 | - * @return mixed null | false | DateTime If the requested field is NOT a EE_Datetime_Field then |
|
| 1198 | - * @throws EE_Error an error is set and false returned. If the field IS an |
|
| 1199 | - * EE_Datetime_Field and but the field value is null, then |
|
| 1200 | - * just null is returned (because that indicates that likely |
|
| 1201 | - * this field is nullable). |
|
| 1202 | - * @throws InvalidArgumentException |
|
| 1203 | - * @throws InvalidDataTypeException |
|
| 1204 | - * @throws InvalidInterfaceException |
|
| 1205 | - * @throws ReflectionException |
|
| 1206 | - */ |
|
| 1207 | - public function get_DateTime_object($field_name) |
|
| 1208 | - { |
|
| 1209 | - $field_settings = $this->get_model()->field_settings_for($field_name); |
|
| 1210 | - if (! $field_settings instanceof EE_Datetime_Field) { |
|
| 1211 | - EE_Error::add_error( |
|
| 1212 | - sprintf( |
|
| 1213 | - esc_html__( |
|
| 1214 | - 'The field %s is not an EE_Datetime_Field field. There is no DateTime object stored on this field type.', |
|
| 1215 | - 'event_espresso' |
|
| 1216 | - ), |
|
| 1217 | - $field_name |
|
| 1218 | - ), |
|
| 1219 | - __FILE__, |
|
| 1220 | - __FUNCTION__, |
|
| 1221 | - __LINE__ |
|
| 1222 | - ); |
|
| 1223 | - return false; |
|
| 1224 | - } |
|
| 1225 | - return isset($this->_fields[ $field_name ]) && $this->_fields[ $field_name ] instanceof DateTime |
|
| 1226 | - ? clone $this->_fields[ $field_name ] |
|
| 1227 | - : null; |
|
| 1228 | - } |
|
| 1229 | - |
|
| 1230 | - |
|
| 1231 | - /** |
|
| 1232 | - * To be used in template to immediately echo out the value, and format it for output. |
|
| 1233 | - * Eg, should call stripslashes and whatnot before echoing |
|
| 1234 | - * |
|
| 1235 | - * @param string $field_name the name of the field as it appears in the DB |
|
| 1236 | - * @param string $extra_cache_ref This allows the user to specify an extra cache ref for the given property |
|
| 1237 | - * (in cases where the same property may be used for different outputs |
|
| 1238 | - * - i.e. datetime, money etc.) |
|
| 1239 | - * @return void |
|
| 1240 | - * @throws ReflectionException |
|
| 1241 | - * @throws InvalidArgumentException |
|
| 1242 | - * @throws InvalidInterfaceException |
|
| 1243 | - * @throws InvalidDataTypeException |
|
| 1244 | - * @throws EE_Error |
|
| 1245 | - */ |
|
| 1246 | - public function e($field_name, $extra_cache_ref = null) |
|
| 1247 | - { |
|
| 1248 | - echo $this->get_pretty($field_name, $extra_cache_ref); |
|
| 1249 | - } |
|
| 1250 | - |
|
| 1251 | - |
|
| 1252 | - /** |
|
| 1253 | - * Exactly like e(), echoes out the field, but sets its schema to 'form_input', so that it |
|
| 1254 | - * can be easily used as the value of form input. |
|
| 1255 | - * |
|
| 1256 | - * @param string $field_name |
|
| 1257 | - * @return void |
|
| 1258 | - * @throws ReflectionException |
|
| 1259 | - * @throws InvalidArgumentException |
|
| 1260 | - * @throws InvalidInterfaceException |
|
| 1261 | - * @throws InvalidDataTypeException |
|
| 1262 | - * @throws EE_Error |
|
| 1263 | - */ |
|
| 1264 | - public function f($field_name) |
|
| 1265 | - { |
|
| 1266 | - $this->e($field_name, 'form_input'); |
|
| 1267 | - } |
|
| 1268 | - |
|
| 1269 | - |
|
| 1270 | - /** |
|
| 1271 | - * Same as `f()` but just returns the value instead of echoing it |
|
| 1272 | - * |
|
| 1273 | - * @param string $field_name |
|
| 1274 | - * @return string |
|
| 1275 | - * @throws ReflectionException |
|
| 1276 | - * @throws InvalidArgumentException |
|
| 1277 | - * @throws InvalidInterfaceException |
|
| 1278 | - * @throws InvalidDataTypeException |
|
| 1279 | - * @throws EE_Error |
|
| 1280 | - */ |
|
| 1281 | - public function get_f($field_name) |
|
| 1282 | - { |
|
| 1283 | - return (string) $this->get_pretty($field_name, 'form_input'); |
|
| 1284 | - } |
|
| 1285 | - |
|
| 1286 | - |
|
| 1287 | - /** |
|
| 1288 | - * Gets a pretty view of the field's value. $extra_cache_ref can specify different formats for this. |
|
| 1289 | - * The $extra_cache_ref will be passed to the model field's prepare_for_pretty_echoing, so consult the field's class |
|
| 1290 | - * to see what options are available. |
|
| 1291 | - * |
|
| 1292 | - * @param string $field_name |
|
| 1293 | - * @param string $extra_cache_ref This allows the user to specify an extra cache ref for the given property |
|
| 1294 | - * (in cases where the same property may be used for different outputs |
|
| 1295 | - * - i.e. datetime, money etc.) |
|
| 1296 | - * @return mixed |
|
| 1297 | - * @throws ReflectionException |
|
| 1298 | - * @throws InvalidArgumentException |
|
| 1299 | - * @throws InvalidInterfaceException |
|
| 1300 | - * @throws InvalidDataTypeException |
|
| 1301 | - * @throws EE_Error |
|
| 1302 | - */ |
|
| 1303 | - public function get_pretty($field_name, $extra_cache_ref = null) |
|
| 1304 | - { |
|
| 1305 | - return $this->_get_cached_property($field_name, true, $extra_cache_ref); |
|
| 1306 | - } |
|
| 1307 | - |
|
| 1308 | - |
|
| 1309 | - /** |
|
| 1310 | - * This simply returns the datetime for the given field name |
|
| 1311 | - * Note: this protected function is called by the wrapper get_date or get_time or get_datetime functions |
|
| 1312 | - * (and the equivalent e_date, e_time, e_datetime). |
|
| 1313 | - * |
|
| 1314 | - * @access protected |
|
| 1315 | - * @param string $field_name Field on the instantiated EE_Base_Class child object |
|
| 1316 | - * @param string $dt_frmt valid datetime format used for date |
|
| 1317 | - * (if '' then we just use the default on the field, |
|
| 1318 | - * if NULL we use the last-used format) |
|
| 1319 | - * @param string $tm_frmt Same as above except this is for time format |
|
| 1320 | - * @param string $date_or_time if NULL then both are returned, otherwise "D" = only date and "T" = only time. |
|
| 1321 | - * @param boolean $echo Whether the dtt is echoing using pretty echoing or just returned using vanilla get |
|
| 1322 | - * @return string|bool|EE_Error string on success, FALSE on fail, or EE_Error Exception is thrown |
|
| 1323 | - * if field is not a valid dtt field, or void if echoing |
|
| 1324 | - * @throws ReflectionException |
|
| 1325 | - * @throws InvalidArgumentException |
|
| 1326 | - * @throws InvalidInterfaceException |
|
| 1327 | - * @throws InvalidDataTypeException |
|
| 1328 | - * @throws EE_Error |
|
| 1329 | - */ |
|
| 1330 | - protected function _get_datetime($field_name, $dt_frmt = '', $tm_frmt = '', $date_or_time = '', $echo = false) |
|
| 1331 | - { |
|
| 1332 | - // clear cached property |
|
| 1333 | - $this->_clear_cached_property($field_name); |
|
| 1334 | - // reset format properties because they are used in get() |
|
| 1335 | - $this->_dt_frmt = $dt_frmt !== '' ? $dt_frmt : $this->_dt_frmt; |
|
| 1336 | - $this->_tm_frmt = $tm_frmt !== '' ? $tm_frmt : $this->_tm_frmt; |
|
| 1337 | - if ($echo) { |
|
| 1338 | - $this->e($field_name, $date_or_time); |
|
| 1339 | - return ''; |
|
| 1340 | - } |
|
| 1341 | - return $this->get($field_name, $date_or_time); |
|
| 1342 | - } |
|
| 1343 | - |
|
| 1344 | - |
|
| 1345 | - /** |
|
| 1346 | - * below are wrapper functions for the various datetime outputs that can be obtained for JUST returning the date |
|
| 1347 | - * portion of a datetime value. (note the only difference between get_ and e_ is one returns the value and the |
|
| 1348 | - * other echoes the pretty value for dtt) |
|
| 1349 | - * |
|
| 1350 | - * @param string $field_name name of model object datetime field holding the value |
|
| 1351 | - * @param string $format format for the date returned (if NULL we use default in dt_frmt property) |
|
| 1352 | - * @return string datetime value formatted |
|
| 1353 | - * @throws ReflectionException |
|
| 1354 | - * @throws InvalidArgumentException |
|
| 1355 | - * @throws InvalidInterfaceException |
|
| 1356 | - * @throws InvalidDataTypeException |
|
| 1357 | - * @throws EE_Error |
|
| 1358 | - */ |
|
| 1359 | - public function get_date($field_name, $format = '') |
|
| 1360 | - { |
|
| 1361 | - return $this->_get_datetime($field_name, $format, null, 'D'); |
|
| 1362 | - } |
|
| 1363 | - |
|
| 1364 | - |
|
| 1365 | - /** |
|
| 1366 | - * @param $field_name |
|
| 1367 | - * @param string $format |
|
| 1368 | - * @throws ReflectionException |
|
| 1369 | - * @throws InvalidArgumentException |
|
| 1370 | - * @throws InvalidInterfaceException |
|
| 1371 | - * @throws InvalidDataTypeException |
|
| 1372 | - * @throws EE_Error |
|
| 1373 | - */ |
|
| 1374 | - public function e_date($field_name, $format = '') |
|
| 1375 | - { |
|
| 1376 | - $this->_get_datetime($field_name, $format, null, 'D', true); |
|
| 1377 | - } |
|
| 1378 | - |
|
| 1379 | - |
|
| 1380 | - /** |
|
| 1381 | - * below are wrapper functions for the various datetime outputs that can be obtained for JUST returning the time |
|
| 1382 | - * portion of a datetime value. (note the only difference between get_ and e_ is one returns the value and the |
|
| 1383 | - * other echoes the pretty value for dtt) |
|
| 1384 | - * |
|
| 1385 | - * @param string $field_name name of model object datetime field holding the value |
|
| 1386 | - * @param string $format format for the time returned ( if NULL we use default in tm_frmt property) |
|
| 1387 | - * @return string datetime value formatted |
|
| 1388 | - * @throws ReflectionException |
|
| 1389 | - * @throws InvalidArgumentException |
|
| 1390 | - * @throws InvalidInterfaceException |
|
| 1391 | - * @throws InvalidDataTypeException |
|
| 1392 | - * @throws EE_Error |
|
| 1393 | - */ |
|
| 1394 | - public function get_time($field_name, $format = '') |
|
| 1395 | - { |
|
| 1396 | - return $this->_get_datetime($field_name, null, $format, 'T'); |
|
| 1397 | - } |
|
| 1398 | - |
|
| 1399 | - |
|
| 1400 | - /** |
|
| 1401 | - * @param $field_name |
|
| 1402 | - * @param string $format |
|
| 1403 | - * @throws ReflectionException |
|
| 1404 | - * @throws InvalidArgumentException |
|
| 1405 | - * @throws InvalidInterfaceException |
|
| 1406 | - * @throws InvalidDataTypeException |
|
| 1407 | - * @throws EE_Error |
|
| 1408 | - */ |
|
| 1409 | - public function e_time($field_name, $format = '') |
|
| 1410 | - { |
|
| 1411 | - $this->_get_datetime($field_name, null, $format, 'T', true); |
|
| 1412 | - } |
|
| 1413 | - |
|
| 1414 | - |
|
| 1415 | - /** |
|
| 1416 | - * below are wrapper functions for the various datetime outputs that can be obtained for returning the date AND |
|
| 1417 | - * time portion of a datetime value. (note the only difference between get_ and e_ is one returns the value and the |
|
| 1418 | - * other echoes the pretty value for dtt) |
|
| 1419 | - * |
|
| 1420 | - * @param string $field_name name of model object datetime field holding the value |
|
| 1421 | - * @param string $dt_frmt format for the date returned (if NULL we use default in dt_frmt property) |
|
| 1422 | - * @param string $tm_frmt format for the time returned (if NULL we use default in tm_frmt property) |
|
| 1423 | - * @return string datetime value formatted |
|
| 1424 | - * @throws ReflectionException |
|
| 1425 | - * @throws InvalidArgumentException |
|
| 1426 | - * @throws InvalidInterfaceException |
|
| 1427 | - * @throws InvalidDataTypeException |
|
| 1428 | - * @throws EE_Error |
|
| 1429 | - */ |
|
| 1430 | - public function get_datetime($field_name, $dt_frmt = '', $tm_frmt = '') |
|
| 1431 | - { |
|
| 1432 | - return $this->_get_datetime($field_name, $dt_frmt, $tm_frmt); |
|
| 1433 | - } |
|
| 1434 | - |
|
| 1435 | - |
|
| 1436 | - /** |
|
| 1437 | - * @param string $field_name |
|
| 1438 | - * @param string $dt_frmt |
|
| 1439 | - * @param string $tm_frmt |
|
| 1440 | - * @throws ReflectionException |
|
| 1441 | - * @throws InvalidArgumentException |
|
| 1442 | - * @throws InvalidInterfaceException |
|
| 1443 | - * @throws InvalidDataTypeException |
|
| 1444 | - * @throws EE_Error |
|
| 1445 | - */ |
|
| 1446 | - public function e_datetime($field_name, $dt_frmt = '', $tm_frmt = '') |
|
| 1447 | - { |
|
| 1448 | - $this->_get_datetime($field_name, $dt_frmt, $tm_frmt, null, true); |
|
| 1449 | - } |
|
| 1450 | - |
|
| 1451 | - |
|
| 1452 | - /** |
|
| 1453 | - * Get the i8ln value for a date using the WordPress @see date_i18n function. |
|
| 1454 | - * |
|
| 1455 | - * @param string $field_name The EE_Datetime_Field reference for the date being retrieved. |
|
| 1456 | - * @param string $format PHP valid date/time string format. If none is provided then the internal set format |
|
| 1457 | - * on the object will be used. |
|
| 1458 | - * @return string Date and time string in set locale or false if no field exists for the given |
|
| 1459 | - * @throws ReflectionException |
|
| 1460 | - * @throws InvalidArgumentException |
|
| 1461 | - * @throws InvalidInterfaceException |
|
| 1462 | - * @throws InvalidDataTypeException |
|
| 1463 | - * @throws EE_Error |
|
| 1464 | - * field name. |
|
| 1465 | - */ |
|
| 1466 | - public function get_i18n_datetime($field_name, $format = '') |
|
| 1467 | - { |
|
| 1468 | - $format = empty($format) ? $this->_dt_frmt . ' ' . $this->_tm_frmt : $format; |
|
| 1469 | - return date_i18n( |
|
| 1470 | - $format, |
|
| 1471 | - EEH_DTT_Helper::get_timestamp_with_offset( |
|
| 1472 | - $this->get_raw($field_name), |
|
| 1473 | - $this->_timezone |
|
| 1474 | - ) |
|
| 1475 | - ); |
|
| 1476 | - } |
|
| 1477 | - |
|
| 1478 | - |
|
| 1479 | - /** |
|
| 1480 | - * This method validates whether the given field name is a valid field on the model object as well as it is of a |
|
| 1481 | - * type EE_Datetime_Field. On success there will be returned the field settings. On fail an EE_Error exception is |
|
| 1482 | - * thrown. |
|
| 1483 | - * |
|
| 1484 | - * @param string $field_name The field name being checked |
|
| 1485 | - * @throws ReflectionException |
|
| 1486 | - * @throws InvalidArgumentException |
|
| 1487 | - * @throws InvalidInterfaceException |
|
| 1488 | - * @throws InvalidDataTypeException |
|
| 1489 | - * @throws EE_Error |
|
| 1490 | - * @return EE_Datetime_Field |
|
| 1491 | - */ |
|
| 1492 | - protected function _get_dtt_field_settings($field_name) |
|
| 1493 | - { |
|
| 1494 | - $field = $this->get_model()->field_settings_for($field_name); |
|
| 1495 | - // check if field is dtt |
|
| 1496 | - if ($field instanceof EE_Datetime_Field) { |
|
| 1497 | - return $field; |
|
| 1498 | - } |
|
| 1499 | - throw new EE_Error( |
|
| 1500 | - sprintf( |
|
| 1501 | - esc_html__( |
|
| 1502 | - 'The field name "%s" has been requested for the EE_Base_Class datetime functions and it is not a valid EE_Datetime_Field. Please check the spelling of the field and make sure it has been setup as a EE_Datetime_Field in the %s model constructor', |
|
| 1503 | - 'event_espresso' |
|
| 1504 | - ), |
|
| 1505 | - $field_name, |
|
| 1506 | - self::_get_model_classname(get_class($this)) |
|
| 1507 | - ) |
|
| 1508 | - ); |
|
| 1509 | - } |
|
| 1510 | - |
|
| 1511 | - |
|
| 1512 | - |
|
| 1513 | - |
|
| 1514 | - /** |
|
| 1515 | - * NOTE ABOUT BELOW: |
|
| 1516 | - * These convenience date and time setters are for setting date and time independently. In other words you might |
|
| 1517 | - * want to change the time on a datetime_field but leave the date the same (or vice versa). IF on the other hand |
|
| 1518 | - * you want to set both date and time at the same time, you can just use the models default set($fieldname,$value) |
|
| 1519 | - * method and make sure you send the entire datetime value for setting. |
|
| 1520 | - */ |
|
| 1521 | - /** |
|
| 1522 | - * sets the time on a datetime property |
|
| 1523 | - * |
|
| 1524 | - * @access protected |
|
| 1525 | - * @param string|Datetime $time a valid time string for php datetime functions (or DateTime object) |
|
| 1526 | - * @param string $fieldname the name of the field the time is being set on (must match a EE_Datetime_Field) |
|
| 1527 | - * @throws ReflectionException |
|
| 1528 | - * @throws InvalidArgumentException |
|
| 1529 | - * @throws InvalidInterfaceException |
|
| 1530 | - * @throws InvalidDataTypeException |
|
| 1531 | - * @throws EE_Error |
|
| 1532 | - */ |
|
| 1533 | - protected function _set_time_for($time, $fieldname) |
|
| 1534 | - { |
|
| 1535 | - $this->_set_date_time('T', $time, $fieldname); |
|
| 1536 | - } |
|
| 1537 | - |
|
| 1538 | - |
|
| 1539 | - /** |
|
| 1540 | - * sets the date on a datetime property |
|
| 1541 | - * |
|
| 1542 | - * @access protected |
|
| 1543 | - * @param string|DateTime $date a valid date string for php datetime functions ( or DateTime object) |
|
| 1544 | - * @param string $fieldname the name of the field the date is being set on (must match a EE_Datetime_Field) |
|
| 1545 | - * @throws ReflectionException |
|
| 1546 | - * @throws InvalidArgumentException |
|
| 1547 | - * @throws InvalidInterfaceException |
|
| 1548 | - * @throws InvalidDataTypeException |
|
| 1549 | - * @throws EE_Error |
|
| 1550 | - */ |
|
| 1551 | - protected function _set_date_for($date, $fieldname) |
|
| 1552 | - { |
|
| 1553 | - $this->_set_date_time('D', $date, $fieldname); |
|
| 1554 | - } |
|
| 1555 | - |
|
| 1556 | - |
|
| 1557 | - /** |
|
| 1558 | - * This takes care of setting a date or time independently on a given model object property. This method also |
|
| 1559 | - * verifies that the given fieldname matches a model object property and is for a EE_Datetime_Field field |
|
| 1560 | - * |
|
| 1561 | - * @access protected |
|
| 1562 | - * @param string $what "T" for time, 'B' for both, 'D' for Date. |
|
| 1563 | - * @param string|DateTime $datetime_value A valid Date or Time string (or DateTime object) |
|
| 1564 | - * @param string $fieldname the name of the field the date OR time is being set on (must match a |
|
| 1565 | - * EE_Datetime_Field property) |
|
| 1566 | - * @throws ReflectionException |
|
| 1567 | - * @throws InvalidArgumentException |
|
| 1568 | - * @throws InvalidInterfaceException |
|
| 1569 | - * @throws InvalidDataTypeException |
|
| 1570 | - * @throws EE_Error |
|
| 1571 | - */ |
|
| 1572 | - protected function _set_date_time($what = 'T', $datetime_value, $fieldname) |
|
| 1573 | - { |
|
| 1574 | - $field = $this->_get_dtt_field_settings($fieldname); |
|
| 1575 | - $field->set_timezone($this->_timezone); |
|
| 1576 | - $field->set_date_format($this->_dt_frmt); |
|
| 1577 | - $field->set_time_format($this->_tm_frmt); |
|
| 1578 | - switch ($what) { |
|
| 1579 | - case 'T': |
|
| 1580 | - $this->_fields[ $fieldname ] = $field->prepare_for_set_with_new_time( |
|
| 1581 | - $datetime_value, |
|
| 1582 | - $this->_fields[ $fieldname ] |
|
| 1583 | - ); |
|
| 1584 | - break; |
|
| 1585 | - case 'D': |
|
| 1586 | - $this->_fields[ $fieldname ] = $field->prepare_for_set_with_new_date( |
|
| 1587 | - $datetime_value, |
|
| 1588 | - $this->_fields[ $fieldname ] |
|
| 1589 | - ); |
|
| 1590 | - break; |
|
| 1591 | - case 'B': |
|
| 1592 | - $this->_fields[ $fieldname ] = $field->prepare_for_set($datetime_value); |
|
| 1593 | - break; |
|
| 1594 | - } |
|
| 1595 | - $this->_clear_cached_property($fieldname); |
|
| 1596 | - } |
|
| 1597 | - |
|
| 1598 | - |
|
| 1599 | - /** |
|
| 1600 | - * This will return a timestamp for the website timezone but ONLY when the current website timezone is different |
|
| 1601 | - * than the timezone set for the website. NOTE, this currently only works well with methods that return values. If |
|
| 1602 | - * you use it with methods that echo values the $_timestamp property may not get reset to its original value and |
|
| 1603 | - * that could lead to some unexpected results! |
|
| 1604 | - * |
|
| 1605 | - * @access public |
|
| 1606 | - * @param string $field_name This is the name of the field on the object that contains the date/time |
|
| 1607 | - * value being returned. |
|
| 1608 | - * @param string $callback must match a valid method in this class (defaults to get_datetime) |
|
| 1609 | - * @param mixed (array|string) $args This is the arguments that will be passed to the callback. |
|
| 1610 | - * @param string $prepend You can include something to prepend on the timestamp |
|
| 1611 | - * @param string $append You can include something to append on the timestamp |
|
| 1612 | - * @throws ReflectionException |
|
| 1613 | - * @throws InvalidArgumentException |
|
| 1614 | - * @throws InvalidInterfaceException |
|
| 1615 | - * @throws InvalidDataTypeException |
|
| 1616 | - * @throws EE_Error |
|
| 1617 | - * @return string timestamp |
|
| 1618 | - */ |
|
| 1619 | - public function display_in_my_timezone( |
|
| 1620 | - $field_name, |
|
| 1621 | - $callback = 'get_datetime', |
|
| 1622 | - $args = null, |
|
| 1623 | - $prepend = '', |
|
| 1624 | - $append = '' |
|
| 1625 | - ) { |
|
| 1626 | - $timezone = EEH_DTT_Helper::get_timezone(); |
|
| 1627 | - if ($timezone === $this->_timezone) { |
|
| 1628 | - return ''; |
|
| 1629 | - } |
|
| 1630 | - $original_timezone = $this->_timezone; |
|
| 1631 | - $this->set_timezone($timezone); |
|
| 1632 | - $fn = (array) $field_name; |
|
| 1633 | - $args = array_merge($fn, (array) $args); |
|
| 1634 | - if (! method_exists($this, $callback)) { |
|
| 1635 | - throw new EE_Error( |
|
| 1636 | - sprintf( |
|
| 1637 | - esc_html__( |
|
| 1638 | - 'The method named "%s" given as the callback param in "display_in_my_timezone" does not exist. Please check your spelling', |
|
| 1639 | - 'event_espresso' |
|
| 1640 | - ), |
|
| 1641 | - $callback |
|
| 1642 | - ) |
|
| 1643 | - ); |
|
| 1644 | - } |
|
| 1645 | - $args = (array) $args; |
|
| 1646 | - $return = $prepend . call_user_func_array(array($this, $callback), $args) . $append; |
|
| 1647 | - $this->set_timezone($original_timezone); |
|
| 1648 | - return $return; |
|
| 1649 | - } |
|
| 1650 | - |
|
| 1651 | - |
|
| 1652 | - /** |
|
| 1653 | - * Deletes this model object. |
|
| 1654 | - * This calls the `EE_Base_Class::_delete` method. Child classes wishing to change default behaviour should |
|
| 1655 | - * override |
|
| 1656 | - * `EE_Base_Class::_delete` NOT this class. |
|
| 1657 | - * |
|
| 1658 | - * @return boolean | int |
|
| 1659 | - * @throws ReflectionException |
|
| 1660 | - * @throws InvalidArgumentException |
|
| 1661 | - * @throws InvalidInterfaceException |
|
| 1662 | - * @throws InvalidDataTypeException |
|
| 1663 | - * @throws EE_Error |
|
| 1664 | - */ |
|
| 1665 | - public function delete() |
|
| 1666 | - { |
|
| 1667 | - /** |
|
| 1668 | - * Called just before the `EE_Base_Class::_delete` method call. |
|
| 1669 | - * Note: |
|
| 1670 | - * `EE_Base_Class::_delete` might be overridden by child classes so any client code hooking into these actions |
|
| 1671 | - * should be aware that `_delete` may not always result in a permanent delete. |
|
| 1672 | - * For example, `EE_Soft_Delete_Base_Class::_delete` |
|
| 1673 | - * soft deletes (trash) the object and does not permanently delete it. |
|
| 1674 | - * |
|
| 1675 | - * @param EE_Base_Class $model_object about to be 'deleted' |
|
| 1676 | - */ |
|
| 1677 | - do_action('AHEE__EE_Base_Class__delete__before', $this); |
|
| 1678 | - $result = $this->_delete(); |
|
| 1679 | - /** |
|
| 1680 | - * Called just after the `EE_Base_Class::_delete` method call. |
|
| 1681 | - * Note: |
|
| 1682 | - * `EE_Base_Class::_delete` might be overridden by child classes so any client code hooking into these actions |
|
| 1683 | - * should be aware that `_delete` may not always result in a permanent delete. |
|
| 1684 | - * For example `EE_Soft_Base_Class::_delete` |
|
| 1685 | - * soft deletes (trash) the object and does not permanently delete it. |
|
| 1686 | - * |
|
| 1687 | - * @param EE_Base_Class $model_object that was just 'deleted' |
|
| 1688 | - * @param boolean $result |
|
| 1689 | - */ |
|
| 1690 | - do_action('AHEE__EE_Base_Class__delete__end', $this, $result); |
|
| 1691 | - return $result; |
|
| 1692 | - } |
|
| 1693 | - |
|
| 1694 | - |
|
| 1695 | - /** |
|
| 1696 | - * Calls the specific delete method for the instantiated class. |
|
| 1697 | - * This method is called by the public `EE_Base_Class::delete` method. Any child classes desiring to override |
|
| 1698 | - * default functionality for "delete" (which is to call `permanently_delete`) should override this method NOT |
|
| 1699 | - * `EE_Base_Class::delete` |
|
| 1700 | - * |
|
| 1701 | - * @return bool|int |
|
| 1702 | - * @throws ReflectionException |
|
| 1703 | - * @throws InvalidArgumentException |
|
| 1704 | - * @throws InvalidInterfaceException |
|
| 1705 | - * @throws InvalidDataTypeException |
|
| 1706 | - * @throws EE_Error |
|
| 1707 | - */ |
|
| 1708 | - protected function _delete() |
|
| 1709 | - { |
|
| 1710 | - return $this->delete_permanently(); |
|
| 1711 | - } |
|
| 1712 | - |
|
| 1713 | - |
|
| 1714 | - /** |
|
| 1715 | - * Deletes this model object permanently from db |
|
| 1716 | - * (but keep in mind related models may block the delete and return an error) |
|
| 1717 | - * |
|
| 1718 | - * @return bool | int |
|
| 1719 | - * @throws ReflectionException |
|
| 1720 | - * @throws InvalidArgumentException |
|
| 1721 | - * @throws InvalidInterfaceException |
|
| 1722 | - * @throws InvalidDataTypeException |
|
| 1723 | - * @throws EE_Error |
|
| 1724 | - */ |
|
| 1725 | - public function delete_permanently() |
|
| 1726 | - { |
|
| 1727 | - /** |
|
| 1728 | - * Called just before HARD deleting a model object |
|
| 1729 | - * |
|
| 1730 | - * @param EE_Base_Class $model_object about to be 'deleted' |
|
| 1731 | - */ |
|
| 1732 | - do_action('AHEE__EE_Base_Class__delete_permanently__before', $this); |
|
| 1733 | - $model = $this->get_model(); |
|
| 1734 | - $result = $model->delete_permanently_by_ID($this->ID()); |
|
| 1735 | - $this->refresh_cache_of_related_objects(); |
|
| 1736 | - /** |
|
| 1737 | - * Called just after HARD deleting a model object |
|
| 1738 | - * |
|
| 1739 | - * @param EE_Base_Class $model_object that was just 'deleted' |
|
| 1740 | - * @param boolean $result |
|
| 1741 | - */ |
|
| 1742 | - do_action('AHEE__EE_Base_Class__delete_permanently__end', $this, $result); |
|
| 1743 | - return $result; |
|
| 1744 | - } |
|
| 1745 | - |
|
| 1746 | - |
|
| 1747 | - /** |
|
| 1748 | - * When this model object is deleted, it may still be cached on related model objects. This clears the cache of |
|
| 1749 | - * related model objects |
|
| 1750 | - * |
|
| 1751 | - * @throws ReflectionException |
|
| 1752 | - * @throws InvalidArgumentException |
|
| 1753 | - * @throws InvalidInterfaceException |
|
| 1754 | - * @throws InvalidDataTypeException |
|
| 1755 | - * @throws EE_Error |
|
| 1756 | - */ |
|
| 1757 | - public function refresh_cache_of_related_objects() |
|
| 1758 | - { |
|
| 1759 | - $model = $this->get_model(); |
|
| 1760 | - foreach ($model->relation_settings() as $relation_name => $relation_obj) { |
|
| 1761 | - if (! empty($this->_model_relations[ $relation_name ])) { |
|
| 1762 | - $related_objects = $this->_model_relations[ $relation_name ]; |
|
| 1763 | - if ($relation_obj instanceof EE_Belongs_To_Relation) { |
|
| 1764 | - // this relation only stores a single model object, not an array |
|
| 1765 | - // but let's make it consistent |
|
| 1766 | - $related_objects = array($related_objects); |
|
| 1767 | - } |
|
| 1768 | - foreach ($related_objects as $related_object) { |
|
| 1769 | - // only refresh their cache if they're in memory |
|
| 1770 | - if ($related_object instanceof EE_Base_Class) { |
|
| 1771 | - $related_object->clear_cache( |
|
| 1772 | - $model->get_this_model_name(), |
|
| 1773 | - $this |
|
| 1774 | - ); |
|
| 1775 | - } |
|
| 1776 | - } |
|
| 1777 | - } |
|
| 1778 | - } |
|
| 1779 | - } |
|
| 1780 | - |
|
| 1781 | - |
|
| 1782 | - /** |
|
| 1783 | - * Saves this object to the database. An array may be supplied to set some values on this |
|
| 1784 | - * object just before saving. |
|
| 1785 | - * |
|
| 1786 | - * @access public |
|
| 1787 | - * @param array $set_cols_n_values keys are field names, values are their new values, |
|
| 1788 | - * if provided during the save() method (often client code will change the fields' |
|
| 1789 | - * values before calling save) |
|
| 1790 | - * @throws InvalidArgumentException |
|
| 1791 | - * @throws InvalidInterfaceException |
|
| 1792 | - * @throws InvalidDataTypeException |
|
| 1793 | - * @throws EE_Error |
|
| 1794 | - * @return int , 1 on a successful update, the ID of the new entry on insert; 0 on failure or if the model object |
|
| 1795 | - * isn't allowed to persist (as determined by EE_Base_Class::allow_persist()) |
|
| 1796 | - * @throws ReflectionException |
|
| 1797 | - * @throws ReflectionException |
|
| 1798 | - * @throws ReflectionException |
|
| 1799 | - */ |
|
| 1800 | - public function save($set_cols_n_values = array()) |
|
| 1801 | - { |
|
| 1802 | - $model = $this->get_model(); |
|
| 1803 | - /** |
|
| 1804 | - * Filters the fields we're about to save on the model object |
|
| 1805 | - * |
|
| 1806 | - * @param array $set_cols_n_values |
|
| 1807 | - * @param EE_Base_Class $model_object |
|
| 1808 | - */ |
|
| 1809 | - $set_cols_n_values = (array) apply_filters( |
|
| 1810 | - 'FHEE__EE_Base_Class__save__set_cols_n_values', |
|
| 1811 | - $set_cols_n_values, |
|
| 1812 | - $this |
|
| 1813 | - ); |
|
| 1814 | - // set attributes as provided in $set_cols_n_values |
|
| 1815 | - foreach ($set_cols_n_values as $column => $value) { |
|
| 1816 | - $this->set($column, $value); |
|
| 1817 | - } |
|
| 1818 | - // no changes ? then don't do anything |
|
| 1819 | - if (! $this->_has_changes && $this->ID() && $model->get_primary_key_field()->is_auto_increment()) { |
|
| 1820 | - return 0; |
|
| 1821 | - } |
|
| 1822 | - /** |
|
| 1823 | - * Saving a model object. |
|
| 1824 | - * Before we perform a save, this action is fired. |
|
| 1825 | - * |
|
| 1826 | - * @param EE_Base_Class $model_object the model object about to be saved. |
|
| 1827 | - */ |
|
| 1828 | - do_action('AHEE__EE_Base_Class__save__begin', $this); |
|
| 1829 | - if (! $this->allow_persist()) { |
|
| 1830 | - return 0; |
|
| 1831 | - } |
|
| 1832 | - // now get current attribute values |
|
| 1833 | - $save_cols_n_values = $this->_fields; |
|
| 1834 | - // if the object already has an ID, update it. Otherwise, insert it |
|
| 1835 | - // also: change the assumption about values passed to the model NOT being prepare dby the model object. |
|
| 1836 | - // They have been |
|
| 1837 | - $old_assumption_concerning_value_preparation = $model |
|
| 1838 | - ->get_assumption_concerning_values_already_prepared_by_model_object(); |
|
| 1839 | - $model->assume_values_already_prepared_by_model_object(true); |
|
| 1840 | - // does this model have an autoincrement PK? |
|
| 1841 | - if ($model->has_primary_key_field()) { |
|
| 1842 | - if ($model->get_primary_key_field()->is_auto_increment()) { |
|
| 1843 | - // ok check if it's set, if so: update; if not, insert |
|
| 1844 | - if (! empty($save_cols_n_values[ $model->primary_key_name() ])) { |
|
| 1845 | - $results = $model->update_by_ID($save_cols_n_values, $this->ID()); |
|
| 1846 | - } else { |
|
| 1847 | - unset($save_cols_n_values[ $model->primary_key_name() ]); |
|
| 1848 | - $results = $model->insert($save_cols_n_values); |
|
| 1849 | - if ($results) { |
|
| 1850 | - // if successful, set the primary key |
|
| 1851 | - // but don't use the normal SET method, because it will check if |
|
| 1852 | - // an item with the same ID exists in the mapper & db, then |
|
| 1853 | - // will find it in the db (because we just added it) and THAT object |
|
| 1854 | - // will get added to the mapper before we can add this one! |
|
| 1855 | - // but if we just avoid using the SET method, all that headache can be avoided |
|
| 1856 | - $pk_field_name = $model->primary_key_name(); |
|
| 1857 | - $this->_fields[ $pk_field_name ] = $results; |
|
| 1858 | - $this->_clear_cached_property($pk_field_name); |
|
| 1859 | - $model->add_to_entity_map($this); |
|
| 1860 | - $this->_update_cached_related_model_objs_fks(); |
|
| 1861 | - } |
|
| 1862 | - } |
|
| 1863 | - } else {// PK is NOT auto-increment |
|
| 1864 | - // so check if one like it already exists in the db |
|
| 1865 | - if ($model->exists_by_ID($this->ID())) { |
|
| 1866 | - if (WP_DEBUG && ! $this->in_entity_map()) { |
|
| 1867 | - throw new EE_Error( |
|
| 1868 | - sprintf( |
|
| 1869 | - esc_html__( |
|
| 1870 | - 'Using a model object %1$s that is NOT in the entity map, can lead to unexpected errors. You should either: %4$s 1. Put it in the entity mapper by calling %2$s %4$s 2. Discard this model object and use what is in the entity mapper %4$s 3. Fetch from the database using %3$s', |
|
| 1871 | - 'event_espresso' |
|
| 1872 | - ), |
|
| 1873 | - get_class($this), |
|
| 1874 | - get_class($model) . '::instance()->add_to_entity_map()', |
|
| 1875 | - get_class($model) . '::instance()->get_one_by_ID()', |
|
| 1876 | - '<br />' |
|
| 1877 | - ) |
|
| 1878 | - ); |
|
| 1879 | - } |
|
| 1880 | - $results = $model->update_by_ID($save_cols_n_values, $this->ID()); |
|
| 1881 | - } else { |
|
| 1882 | - $results = $model->insert($save_cols_n_values); |
|
| 1883 | - $this->_update_cached_related_model_objs_fks(); |
|
| 1884 | - } |
|
| 1885 | - } |
|
| 1886 | - } else {// there is NO primary key |
|
| 1887 | - $already_in_db = false; |
|
| 1888 | - foreach ($model->unique_indexes() as $index) { |
|
| 1889 | - $uniqueness_where_params = array_intersect_key($save_cols_n_values, $index->fields()); |
|
| 1890 | - if ($model->exists(array($uniqueness_where_params))) { |
|
| 1891 | - $already_in_db = true; |
|
| 1892 | - } |
|
| 1893 | - } |
|
| 1894 | - if ($already_in_db) { |
|
| 1895 | - $combined_pk_fields_n_values = array_intersect_key( |
|
| 1896 | - $save_cols_n_values, |
|
| 1897 | - $model->get_combined_primary_key_fields() |
|
| 1898 | - ); |
|
| 1899 | - $results = $model->update( |
|
| 1900 | - $save_cols_n_values, |
|
| 1901 | - $combined_pk_fields_n_values |
|
| 1902 | - ); |
|
| 1903 | - } else { |
|
| 1904 | - $results = $model->insert($save_cols_n_values); |
|
| 1905 | - } |
|
| 1906 | - } |
|
| 1907 | - // restore the old assumption about values being prepared by the model object |
|
| 1908 | - $model->assume_values_already_prepared_by_model_object( |
|
| 1909 | - $old_assumption_concerning_value_preparation |
|
| 1910 | - ); |
|
| 1911 | - /** |
|
| 1912 | - * After saving the model object this action is called |
|
| 1913 | - * |
|
| 1914 | - * @param EE_Base_Class $model_object which was just saved |
|
| 1915 | - * @param boolean|int $results if it were updated, TRUE or FALSE; if it were newly inserted |
|
| 1916 | - * the new ID (or 0 if an error occurred and it wasn't updated) |
|
| 1917 | - */ |
|
| 1918 | - do_action('AHEE__EE_Base_Class__save__end', $this, $results); |
|
| 1919 | - $this->_has_changes = false; |
|
| 1920 | - return $results; |
|
| 1921 | - } |
|
| 1922 | - |
|
| 1923 | - |
|
| 1924 | - /** |
|
| 1925 | - * Updates the foreign key on related models objects pointing to this to have this model object's ID |
|
| 1926 | - * as their foreign key. If the cached related model objects already exist in the db, saves them (so that the DB |
|
| 1927 | - * is consistent) Especially useful in case we JUST added this model object ot the database and we want to let its |
|
| 1928 | - * cached relations with foreign keys to it know about that change. Eg: we've created a transaction but haven't |
|
| 1929 | - * saved it to the db. We also create a registration and don't save it to the DB, but we DO cache it on the |
|
| 1930 | - * transaction. Now, when we save the transaction, the registration's TXN_ID will be automatically updated, whether |
|
| 1931 | - * or not they exist in the DB (if they do, their DB records will be automatically updated) |
|
| 1932 | - * |
|
| 1933 | - * @return void |
|
| 1934 | - * @throws ReflectionException |
|
| 1935 | - * @throws InvalidArgumentException |
|
| 1936 | - * @throws InvalidInterfaceException |
|
| 1937 | - * @throws InvalidDataTypeException |
|
| 1938 | - * @throws EE_Error |
|
| 1939 | - */ |
|
| 1940 | - protected function _update_cached_related_model_objs_fks() |
|
| 1941 | - { |
|
| 1942 | - $model = $this->get_model(); |
|
| 1943 | - foreach ($model->relation_settings() as $relation_name => $relation_obj) { |
|
| 1944 | - if ($relation_obj instanceof EE_Has_Many_Relation) { |
|
| 1945 | - foreach ($this->get_all_from_cache($relation_name) as $related_model_obj_in_cache) { |
|
| 1946 | - $fk_to_this = $related_model_obj_in_cache->get_model()->get_foreign_key_to( |
|
| 1947 | - $model->get_this_model_name() |
|
| 1948 | - ); |
|
| 1949 | - $related_model_obj_in_cache->set($fk_to_this->get_name(), $this->ID()); |
|
| 1950 | - if ($related_model_obj_in_cache->ID()) { |
|
| 1951 | - $related_model_obj_in_cache->save(); |
|
| 1952 | - } |
|
| 1953 | - } |
|
| 1954 | - } |
|
| 1955 | - } |
|
| 1956 | - } |
|
| 1957 | - |
|
| 1958 | - |
|
| 1959 | - /** |
|
| 1960 | - * Saves this model object and its NEW cached relations to the database. |
|
| 1961 | - * (Meaning, for now, IT DOES NOT WORK if the cached items already exist in the DB. |
|
| 1962 | - * In order for that to work, we would need to mark model objects as dirty/clean... |
|
| 1963 | - * because otherwise, there's a potential for infinite looping of saving |
|
| 1964 | - * Saves the cached related model objects, and ensures the relation between them |
|
| 1965 | - * and this object and properly setup |
|
| 1966 | - * |
|
| 1967 | - * @return int ID of new model object on save; 0 on failure+ |
|
| 1968 | - * @throws ReflectionException |
|
| 1969 | - * @throws InvalidArgumentException |
|
| 1970 | - * @throws InvalidInterfaceException |
|
| 1971 | - * @throws InvalidDataTypeException |
|
| 1972 | - * @throws EE_Error |
|
| 1973 | - */ |
|
| 1974 | - public function save_new_cached_related_model_objs() |
|
| 1975 | - { |
|
| 1976 | - // make sure this has been saved |
|
| 1977 | - if (! $this->ID()) { |
|
| 1978 | - $id = $this->save(); |
|
| 1979 | - } else { |
|
| 1980 | - $id = $this->ID(); |
|
| 1981 | - } |
|
| 1982 | - // now save all the NEW cached model objects (ie they don't exist in the DB) |
|
| 1983 | - foreach ($this->get_model()->relation_settings() as $relationName => $relationObj) { |
|
| 1984 | - if ($this->_model_relations[ $relationName ]) { |
|
| 1985 | - // is this a relation where we should expect just ONE related object (ie, EE_Belongs_To_relation) |
|
| 1986 | - // or MANY related objects (ie, EE_HABTM_Relation or EE_Has_Many_Relation)? |
|
| 1987 | - /* @var $related_model_obj EE_Base_Class */ |
|
| 1988 | - if ($relationObj instanceof EE_Belongs_To_Relation) { |
|
| 1989 | - // add a relation to that relation type (which saves the appropriate thing in the process) |
|
| 1990 | - // but ONLY if it DOES NOT exist in the DB |
|
| 1991 | - $related_model_obj = $this->_model_relations[ $relationName ]; |
|
| 1992 | - // if( ! $related_model_obj->ID()){ |
|
| 1993 | - $this->_add_relation_to($related_model_obj, $relationName); |
|
| 1994 | - $related_model_obj->save_new_cached_related_model_objs(); |
|
| 1995 | - // } |
|
| 1996 | - } else { |
|
| 1997 | - foreach ($this->_model_relations[ $relationName ] as $related_model_obj) { |
|
| 1998 | - // add a relation to that relation type (which saves the appropriate thing in the process) |
|
| 1999 | - // but ONLY if it DOES NOT exist in the DB |
|
| 2000 | - // if( ! $related_model_obj->ID()){ |
|
| 2001 | - $this->_add_relation_to($related_model_obj, $relationName); |
|
| 2002 | - $related_model_obj->save_new_cached_related_model_objs(); |
|
| 2003 | - // } |
|
| 2004 | - } |
|
| 2005 | - } |
|
| 2006 | - } |
|
| 2007 | - } |
|
| 2008 | - return $id; |
|
| 2009 | - } |
|
| 2010 | - |
|
| 2011 | - |
|
| 2012 | - /** |
|
| 2013 | - * for getting a model while instantiated. |
|
| 2014 | - * |
|
| 2015 | - * @return EEM_Base | EEM_CPT_Base |
|
| 2016 | - * @throws ReflectionException |
|
| 2017 | - * @throws InvalidArgumentException |
|
| 2018 | - * @throws InvalidInterfaceException |
|
| 2019 | - * @throws InvalidDataTypeException |
|
| 2020 | - * @throws EE_Error |
|
| 2021 | - */ |
|
| 2022 | - public function get_model() |
|
| 2023 | - { |
|
| 2024 | - if (! $this->_model) { |
|
| 2025 | - $modelName = self::_get_model_classname(get_class($this)); |
|
| 2026 | - $this->_model = self::_get_model_instance_with_name($modelName, $this->_timezone); |
|
| 2027 | - } else { |
|
| 2028 | - $this->_model->set_timezone($this->_timezone); |
|
| 2029 | - } |
|
| 2030 | - return $this->_model; |
|
| 2031 | - } |
|
| 2032 | - |
|
| 2033 | - |
|
| 2034 | - /** |
|
| 2035 | - * @param $props_n_values |
|
| 2036 | - * @param $classname |
|
| 2037 | - * @return mixed bool|EE_Base_Class|EEM_CPT_Base |
|
| 2038 | - * @throws ReflectionException |
|
| 2039 | - * @throws InvalidArgumentException |
|
| 2040 | - * @throws InvalidInterfaceException |
|
| 2041 | - * @throws InvalidDataTypeException |
|
| 2042 | - * @throws EE_Error |
|
| 2043 | - */ |
|
| 2044 | - protected static function _get_object_from_entity_mapper($props_n_values, $classname) |
|
| 2045 | - { |
|
| 2046 | - // TODO: will not work for Term_Relationships because they have no PK! |
|
| 2047 | - $primary_id_ref = self::_get_primary_key_name($classname); |
|
| 2048 | - if (array_key_exists($primary_id_ref, $props_n_values) |
|
| 2049 | - && ! empty($props_n_values[ $primary_id_ref ]) |
|
| 2050 | - ) { |
|
| 2051 | - $id = $props_n_values[ $primary_id_ref ]; |
|
| 2052 | - return self::_get_model($classname)->get_from_entity_map($id); |
|
| 2053 | - } |
|
| 2054 | - return false; |
|
| 2055 | - } |
|
| 2056 | - |
|
| 2057 | - |
|
| 2058 | - /** |
|
| 2059 | - * This is called by child static "new_instance" method and we'll check to see if there is an existing db entry for |
|
| 2060 | - * the primary key (if present in incoming values). If there is a key in the incoming array that matches the |
|
| 2061 | - * primary key for the model AND it is not null, then we check the db. If there's a an object we return it. If not |
|
| 2062 | - * we return false. |
|
| 2063 | - * |
|
| 2064 | - * @param array $props_n_values incoming array of properties and their values |
|
| 2065 | - * @param string $classname the classname of the child class |
|
| 2066 | - * @param null $timezone |
|
| 2067 | - * @param array $date_formats incoming date_formats in an array where the first value is the |
|
| 2068 | - * date_format and the second value is the time format |
|
| 2069 | - * @return mixed (EE_Base_Class|bool) |
|
| 2070 | - * @throws InvalidArgumentException |
|
| 2071 | - * @throws InvalidInterfaceException |
|
| 2072 | - * @throws InvalidDataTypeException |
|
| 2073 | - * @throws EE_Error |
|
| 2074 | - * @throws ReflectionException |
|
| 2075 | - * @throws ReflectionException |
|
| 2076 | - * @throws ReflectionException |
|
| 2077 | - */ |
|
| 2078 | - protected static function _check_for_object($props_n_values, $classname, $timezone = null, $date_formats = array()) |
|
| 2079 | - { |
|
| 2080 | - $existing = null; |
|
| 2081 | - $model = self::_get_model($classname, $timezone); |
|
| 2082 | - if ($model->has_primary_key_field()) { |
|
| 2083 | - $primary_id_ref = self::_get_primary_key_name($classname); |
|
| 2084 | - if (array_key_exists($primary_id_ref, $props_n_values) |
|
| 2085 | - && ! empty($props_n_values[ $primary_id_ref ]) |
|
| 2086 | - ) { |
|
| 2087 | - $existing = $model->get_one_by_ID( |
|
| 2088 | - $props_n_values[ $primary_id_ref ] |
|
| 2089 | - ); |
|
| 2090 | - } |
|
| 2091 | - } elseif ($model->has_all_combined_primary_key_fields($props_n_values)) { |
|
| 2092 | - // no primary key on this model, but there's still a matching item in the DB |
|
| 2093 | - $existing = self::_get_model($classname, $timezone)->get_one_by_ID( |
|
| 2094 | - self::_get_model($classname, $timezone) |
|
| 2095 | - ->get_index_primary_key_string($props_n_values) |
|
| 2096 | - ); |
|
| 2097 | - } |
|
| 2098 | - if ($existing) { |
|
| 2099 | - // set date formats if present before setting values |
|
| 2100 | - if (! empty($date_formats) && is_array($date_formats)) { |
|
| 2101 | - $existing->set_date_format($date_formats[0]); |
|
| 2102 | - $existing->set_time_format($date_formats[1]); |
|
| 2103 | - } else { |
|
| 2104 | - // set default formats for date and time |
|
| 2105 | - $existing->set_date_format(get_option('date_format')); |
|
| 2106 | - $existing->set_time_format(get_option('time_format')); |
|
| 2107 | - } |
|
| 2108 | - foreach ($props_n_values as $property => $field_value) { |
|
| 2109 | - $existing->set($property, $field_value); |
|
| 2110 | - } |
|
| 2111 | - return $existing; |
|
| 2112 | - } |
|
| 2113 | - return false; |
|
| 2114 | - } |
|
| 2115 | - |
|
| 2116 | - |
|
| 2117 | - /** |
|
| 2118 | - * Gets the EEM_*_Model for this class |
|
| 2119 | - * |
|
| 2120 | - * @access public now, as this is more convenient |
|
| 2121 | - * @param $classname |
|
| 2122 | - * @param null $timezone |
|
| 2123 | - * @throws ReflectionException |
|
| 2124 | - * @throws InvalidArgumentException |
|
| 2125 | - * @throws InvalidInterfaceException |
|
| 2126 | - * @throws InvalidDataTypeException |
|
| 2127 | - * @throws EE_Error |
|
| 2128 | - * @return EEM_Base |
|
| 2129 | - */ |
|
| 2130 | - protected static function _get_model($classname, $timezone = null) |
|
| 2131 | - { |
|
| 2132 | - // find model for this class |
|
| 2133 | - if (! $classname) { |
|
| 2134 | - throw new EE_Error( |
|
| 2135 | - sprintf( |
|
| 2136 | - esc_html__( |
|
| 2137 | - 'What were you thinking calling _get_model(%s)?? You need to specify the class name', |
|
| 2138 | - 'event_espresso' |
|
| 2139 | - ), |
|
| 2140 | - $classname |
|
| 2141 | - ) |
|
| 2142 | - ); |
|
| 2143 | - } |
|
| 2144 | - $modelName = self::_get_model_classname($classname); |
|
| 2145 | - return self::_get_model_instance_with_name($modelName, $timezone); |
|
| 2146 | - } |
|
| 2147 | - |
|
| 2148 | - |
|
| 2149 | - /** |
|
| 2150 | - * Gets the model instance (eg instance of EEM_Attendee) given its classname (eg EE_Attendee) |
|
| 2151 | - * |
|
| 2152 | - * @param string $model_classname |
|
| 2153 | - * @param null $timezone |
|
| 2154 | - * @return EEM_Base |
|
| 2155 | - * @throws ReflectionException |
|
| 2156 | - * @throws InvalidArgumentException |
|
| 2157 | - * @throws InvalidInterfaceException |
|
| 2158 | - * @throws InvalidDataTypeException |
|
| 2159 | - * @throws EE_Error |
|
| 2160 | - */ |
|
| 2161 | - protected static function _get_model_instance_with_name($model_classname, $timezone = null) |
|
| 2162 | - { |
|
| 2163 | - $model_classname = str_replace('EEM_', '', $model_classname); |
|
| 2164 | - $model = EE_Registry::instance()->load_model($model_classname); |
|
| 2165 | - $model->set_timezone($timezone); |
|
| 2166 | - return $model; |
|
| 2167 | - } |
|
| 2168 | - |
|
| 2169 | - |
|
| 2170 | - /** |
|
| 2171 | - * If a model name is provided (eg Registration), gets the model classname for that model. |
|
| 2172 | - * Also works if a model class's classname is provided (eg EE_Registration). |
|
| 2173 | - * |
|
| 2174 | - * @param null $model_name |
|
| 2175 | - * @return string like EEM_Attendee |
|
| 2176 | - */ |
|
| 2177 | - private static function _get_model_classname($model_name = null) |
|
| 2178 | - { |
|
| 2179 | - if (strpos($model_name, 'EE_') === 0) { |
|
| 2180 | - $model_classname = str_replace('EE_', 'EEM_', $model_name); |
|
| 2181 | - } else { |
|
| 2182 | - $model_classname = 'EEM_' . $model_name; |
|
| 2183 | - } |
|
| 2184 | - return $model_classname; |
|
| 2185 | - } |
|
| 2186 | - |
|
| 2187 | - |
|
| 2188 | - /** |
|
| 2189 | - * returns the name of the primary key attribute |
|
| 2190 | - * |
|
| 2191 | - * @param null $classname |
|
| 2192 | - * @throws ReflectionException |
|
| 2193 | - * @throws InvalidArgumentException |
|
| 2194 | - * @throws InvalidInterfaceException |
|
| 2195 | - * @throws InvalidDataTypeException |
|
| 2196 | - * @throws EE_Error |
|
| 2197 | - * @return string |
|
| 2198 | - */ |
|
| 2199 | - protected static function _get_primary_key_name($classname = null) |
|
| 2200 | - { |
|
| 2201 | - if (! $classname) { |
|
| 2202 | - throw new EE_Error( |
|
| 2203 | - sprintf( |
|
| 2204 | - esc_html__('What were you thinking calling _get_primary_key_name(%s)', 'event_espresso'), |
|
| 2205 | - $classname |
|
| 2206 | - ) |
|
| 2207 | - ); |
|
| 2208 | - } |
|
| 2209 | - return self::_get_model($classname)->get_primary_key_field()->get_name(); |
|
| 2210 | - } |
|
| 2211 | - |
|
| 2212 | - |
|
| 2213 | - /** |
|
| 2214 | - * Gets the value of the primary key. |
|
| 2215 | - * If the object hasn't yet been saved, it should be whatever the model field's default was |
|
| 2216 | - * (eg, if this were the EE_Event class, look at the primary key field on EEM_Event and see what its default value |
|
| 2217 | - * is. Usually defaults for integer primary keys are 0; string primary keys are usually NULL). |
|
| 2218 | - * |
|
| 2219 | - * @return mixed, if the primary key is of type INT it'll be an int. Otherwise it could be a string |
|
| 2220 | - * @throws ReflectionException |
|
| 2221 | - * @throws InvalidArgumentException |
|
| 2222 | - * @throws InvalidInterfaceException |
|
| 2223 | - * @throws InvalidDataTypeException |
|
| 2224 | - * @throws EE_Error |
|
| 2225 | - */ |
|
| 2226 | - public function ID() |
|
| 2227 | - { |
|
| 2228 | - $model = $this->get_model(); |
|
| 2229 | - // now that we know the name of the variable, use a variable variable to get its value and return its |
|
| 2230 | - if ($model->has_primary_key_field()) { |
|
| 2231 | - return $this->_fields[ $model->primary_key_name() ]; |
|
| 2232 | - } |
|
| 2233 | - return $model->get_index_primary_key_string($this->_fields); |
|
| 2234 | - } |
|
| 2235 | - |
|
| 2236 | - |
|
| 2237 | - /** |
|
| 2238 | - * Adds a relationship to the specified EE_Base_Class object, given the relationship's name. Eg, if the current |
|
| 2239 | - * model is related to a group of events, the $relationName should be 'Event', and should be a key in the EE |
|
| 2240 | - * Model's $_model_relations array. If this model object doesn't exist in the DB, just caches the related thing |
|
| 2241 | - * |
|
| 2242 | - * @param mixed $otherObjectModelObjectOrID EE_Base_Class or the ID of the other object |
|
| 2243 | - * @param string $relationName eg 'Events','Question',etc. |
|
| 2244 | - * an attendee to a group, you also want to specify which role they |
|
| 2245 | - * will have in that group. So you would use this parameter to |
|
| 2246 | - * specify array('role-column-name'=>'role-id') |
|
| 2247 | - * @param array $extra_join_model_fields_n_values You can optionally include an array of key=>value pairs that |
|
| 2248 | - * allow you to further constrict the relation to being added. |
|
| 2249 | - * However, keep in mind that the columns (keys) given must match a |
|
| 2250 | - * column on the JOIN table and currently only the HABTM models |
|
| 2251 | - * accept these additional conditions. Also remember that if an |
|
| 2252 | - * exact match isn't found for these extra cols/val pairs, then a |
|
| 2253 | - * NEW row is created in the join table. |
|
| 2254 | - * @param null $cache_id |
|
| 2255 | - * @throws ReflectionException |
|
| 2256 | - * @throws InvalidArgumentException |
|
| 2257 | - * @throws InvalidInterfaceException |
|
| 2258 | - * @throws InvalidDataTypeException |
|
| 2259 | - * @throws EE_Error |
|
| 2260 | - * @return EE_Base_Class the object the relation was added to |
|
| 2261 | - */ |
|
| 2262 | - public function _add_relation_to( |
|
| 2263 | - $otherObjectModelObjectOrID, |
|
| 2264 | - $relationName, |
|
| 2265 | - $extra_join_model_fields_n_values = array(), |
|
| 2266 | - $cache_id = null |
|
| 2267 | - ) { |
|
| 2268 | - $model = $this->get_model(); |
|
| 2269 | - // if this thing exists in the DB, save the relation to the DB |
|
| 2270 | - if ($this->ID()) { |
|
| 2271 | - $otherObject = $model->add_relationship_to( |
|
| 2272 | - $this, |
|
| 2273 | - $otherObjectModelObjectOrID, |
|
| 2274 | - $relationName, |
|
| 2275 | - $extra_join_model_fields_n_values |
|
| 2276 | - ); |
|
| 2277 | - // clear cache so future get_many_related and get_first_related() return new results. |
|
| 2278 | - $this->clear_cache($relationName, $otherObject, true); |
|
| 2279 | - if ($otherObject instanceof EE_Base_Class) { |
|
| 2280 | - $otherObject->clear_cache($model->get_this_model_name(), $this); |
|
| 2281 | - } |
|
| 2282 | - } else { |
|
| 2283 | - // this thing doesn't exist in the DB, so just cache it |
|
| 2284 | - if (! $otherObjectModelObjectOrID instanceof EE_Base_Class) { |
|
| 2285 | - throw new EE_Error( |
|
| 2286 | - sprintf( |
|
| 2287 | - esc_html__( |
|
| 2288 | - 'Before a model object is saved to the database, calls to _add_relation_to must be passed an actual object, not just an ID. You provided %s as the model object to a %s', |
|
| 2289 | - 'event_espresso' |
|
| 2290 | - ), |
|
| 2291 | - $otherObjectModelObjectOrID, |
|
| 2292 | - get_class($this) |
|
| 2293 | - ) |
|
| 2294 | - ); |
|
| 2295 | - } |
|
| 2296 | - $otherObject = $otherObjectModelObjectOrID; |
|
| 2297 | - $this->cache($relationName, $otherObjectModelObjectOrID, $cache_id); |
|
| 2298 | - } |
|
| 2299 | - if ($otherObject instanceof EE_Base_Class) { |
|
| 2300 | - // fix the reciprocal relation too |
|
| 2301 | - if ($otherObject->ID()) { |
|
| 2302 | - // its saved so assumed relations exist in the DB, so we can just |
|
| 2303 | - // clear the cache so future queries use the updated info in the DB |
|
| 2304 | - $otherObject->clear_cache( |
|
| 2305 | - $model->get_this_model_name(), |
|
| 2306 | - null, |
|
| 2307 | - true |
|
| 2308 | - ); |
|
| 2309 | - } else { |
|
| 2310 | - // it's not saved, so it caches relations like this |
|
| 2311 | - $otherObject->cache($model->get_this_model_name(), $this); |
|
| 2312 | - } |
|
| 2313 | - } |
|
| 2314 | - return $otherObject; |
|
| 2315 | - } |
|
| 2316 | - |
|
| 2317 | - |
|
| 2318 | - /** |
|
| 2319 | - * Removes a relationship to the specified EE_Base_Class object, given the relationships' name. Eg, if the current |
|
| 2320 | - * model is related to a group of events, the $relationName should be 'Events', and should be a key in the EE |
|
| 2321 | - * Model's $_model_relations array. If this model object doesn't exist in the DB, just removes the related thing |
|
| 2322 | - * from the cache |
|
| 2323 | - * |
|
| 2324 | - * @param mixed $otherObjectModelObjectOrID |
|
| 2325 | - * EE_Base_Class or the ID of the other object, OR an array key into the cache if this isn't saved |
|
| 2326 | - * to the DB yet |
|
| 2327 | - * @param string $relationName |
|
| 2328 | - * @param array $where_query |
|
| 2329 | - * You can optionally include an array of key=>value pairs that allow you to further constrict the |
|
| 2330 | - * relation to being added. However, keep in mind that the columns (keys) given must match a column |
|
| 2331 | - * on the JOIN table and currently only the HABTM models accept these additional conditions. Also |
|
| 2332 | - * remember that if an exact match isn't found for these extra cols/val pairs, then no row is |
|
| 2333 | - * deleted. |
|
| 2334 | - * @return EE_Base_Class the relation was removed from |
|
| 2335 | - * @throws ReflectionException |
|
| 2336 | - * @throws InvalidArgumentException |
|
| 2337 | - * @throws InvalidInterfaceException |
|
| 2338 | - * @throws InvalidDataTypeException |
|
| 2339 | - * @throws EE_Error |
|
| 2340 | - */ |
|
| 2341 | - public function _remove_relation_to($otherObjectModelObjectOrID, $relationName, $where_query = array()) |
|
| 2342 | - { |
|
| 2343 | - if ($this->ID()) { |
|
| 2344 | - // if this exists in the DB, save the relation change to the DB too |
|
| 2345 | - $otherObject = $this->get_model()->remove_relationship_to( |
|
| 2346 | - $this, |
|
| 2347 | - $otherObjectModelObjectOrID, |
|
| 2348 | - $relationName, |
|
| 2349 | - $where_query |
|
| 2350 | - ); |
|
| 2351 | - $this->clear_cache( |
|
| 2352 | - $relationName, |
|
| 2353 | - $otherObject |
|
| 2354 | - ); |
|
| 2355 | - } else { |
|
| 2356 | - // this doesn't exist in the DB, just remove it from the cache |
|
| 2357 | - $otherObject = $this->clear_cache( |
|
| 2358 | - $relationName, |
|
| 2359 | - $otherObjectModelObjectOrID |
|
| 2360 | - ); |
|
| 2361 | - } |
|
| 2362 | - if ($otherObject instanceof EE_Base_Class) { |
|
| 2363 | - $otherObject->clear_cache( |
|
| 2364 | - $this->get_model()->get_this_model_name(), |
|
| 2365 | - $this |
|
| 2366 | - ); |
|
| 2367 | - } |
|
| 2368 | - return $otherObject; |
|
| 2369 | - } |
|
| 2370 | - |
|
| 2371 | - |
|
| 2372 | - /** |
|
| 2373 | - * Removes ALL the related things for the $relationName. |
|
| 2374 | - * |
|
| 2375 | - * @param string $relationName |
|
| 2376 | - * @param array $where_query_params @see https://github.com/eventespresso/event-espresso-core/tree/master/docs/G--Model-System/model-query-params.md#0-where-conditions |
|
| 2377 | - * @return EE_Base_Class |
|
| 2378 | - * @throws ReflectionException |
|
| 2379 | - * @throws InvalidArgumentException |
|
| 2380 | - * @throws InvalidInterfaceException |
|
| 2381 | - * @throws InvalidDataTypeException |
|
| 2382 | - * @throws EE_Error |
|
| 2383 | - */ |
|
| 2384 | - public function _remove_relations($relationName, $where_query_params = array()) |
|
| 2385 | - { |
|
| 2386 | - if ($this->ID()) { |
|
| 2387 | - // if this exists in the DB, save the relation change to the DB too |
|
| 2388 | - $otherObjects = $this->get_model()->remove_relations( |
|
| 2389 | - $this, |
|
| 2390 | - $relationName, |
|
| 2391 | - $where_query_params |
|
| 2392 | - ); |
|
| 2393 | - $this->clear_cache( |
|
| 2394 | - $relationName, |
|
| 2395 | - null, |
|
| 2396 | - true |
|
| 2397 | - ); |
|
| 2398 | - } else { |
|
| 2399 | - // this doesn't exist in the DB, just remove it from the cache |
|
| 2400 | - $otherObjects = $this->clear_cache( |
|
| 2401 | - $relationName, |
|
| 2402 | - null, |
|
| 2403 | - true |
|
| 2404 | - ); |
|
| 2405 | - } |
|
| 2406 | - if (is_array($otherObjects)) { |
|
| 2407 | - foreach ($otherObjects as $otherObject) { |
|
| 2408 | - $otherObject->clear_cache( |
|
| 2409 | - $this->get_model()->get_this_model_name(), |
|
| 2410 | - $this |
|
| 2411 | - ); |
|
| 2412 | - } |
|
| 2413 | - } |
|
| 2414 | - return $otherObjects; |
|
| 2415 | - } |
|
| 2416 | - |
|
| 2417 | - |
|
| 2418 | - /** |
|
| 2419 | - * Gets all the related model objects of the specified type. Eg, if the current class if |
|
| 2420 | - * EE_Event, you could call $this->get_many_related('Registration') to get an array of all the |
|
| 2421 | - * EE_Registration objects which related to this event. Note: by default, we remove the "default query params" |
|
| 2422 | - * because we want to get even deleted items etc. |
|
| 2423 | - * |
|
| 2424 | - * @param string $relationName key in the model's _model_relations array |
|
| 2425 | - * @param array $query_params @see https://github.com/eventespresso/event-espresso-core/tree/master/docs/G--Model-System/model-query-params.md#0-where-conditions |
|
| 2426 | - * @return EE_Base_Class[] Results not necessarily indexed by IDs, because some results might not have primary |
|
| 2427 | - * keys or might not be saved yet. Consider using EEM_Base::get_IDs() on these |
|
| 2428 | - * results if you want IDs |
|
| 2429 | - * @throws ReflectionException |
|
| 2430 | - * @throws InvalidArgumentException |
|
| 2431 | - * @throws InvalidInterfaceException |
|
| 2432 | - * @throws InvalidDataTypeException |
|
| 2433 | - * @throws EE_Error |
|
| 2434 | - */ |
|
| 2435 | - public function get_many_related($relationName, $query_params = array()) |
|
| 2436 | - { |
|
| 2437 | - if ($this->ID()) { |
|
| 2438 | - // this exists in the DB, so get the related things from either the cache or the DB |
|
| 2439 | - // if there are query parameters, forget about caching the related model objects. |
|
| 2440 | - if ($query_params) { |
|
| 2441 | - $related_model_objects = $this->get_model()->get_all_related( |
|
| 2442 | - $this, |
|
| 2443 | - $relationName, |
|
| 2444 | - $query_params |
|
| 2445 | - ); |
|
| 2446 | - } else { |
|
| 2447 | - // did we already cache the result of this query? |
|
| 2448 | - $cached_results = $this->get_all_from_cache($relationName); |
|
| 2449 | - if (! $cached_results) { |
|
| 2450 | - $related_model_objects = $this->get_model()->get_all_related( |
|
| 2451 | - $this, |
|
| 2452 | - $relationName, |
|
| 2453 | - $query_params |
|
| 2454 | - ); |
|
| 2455 | - // if no query parameters were passed, then we got all the related model objects |
|
| 2456 | - // for that relation. We can cache them then. |
|
| 2457 | - foreach ($related_model_objects as $related_model_object) { |
|
| 2458 | - $this->cache($relationName, $related_model_object); |
|
| 2459 | - } |
|
| 2460 | - } else { |
|
| 2461 | - $related_model_objects = $cached_results; |
|
| 2462 | - } |
|
| 2463 | - } |
|
| 2464 | - } else { |
|
| 2465 | - // this doesn't exist in the DB, so just get the related things from the cache |
|
| 2466 | - $related_model_objects = $this->get_all_from_cache($relationName); |
|
| 2467 | - } |
|
| 2468 | - return $related_model_objects; |
|
| 2469 | - } |
|
| 2470 | - |
|
| 2471 | - |
|
| 2472 | - /** |
|
| 2473 | - * Instead of getting the related model objects, simply counts them. Ignores default_where_conditions by default, |
|
| 2474 | - * unless otherwise specified in the $query_params |
|
| 2475 | - * |
|
| 2476 | - * @param string $relation_name model_name like 'Event', or 'Registration' |
|
| 2477 | - * @param array $query_params @see https://github.com/eventespresso/event-espresso-core/tree/master/docs/G--Model-System/model-query-params.md |
|
| 2478 | - * @param string $field_to_count name of field to count by. By default, uses primary key |
|
| 2479 | - * @param bool $distinct if we want to only count the distinct values for the column then you can trigger |
|
| 2480 | - * that by the setting $distinct to TRUE; |
|
| 2481 | - * @return int |
|
| 2482 | - * @throws ReflectionException |
|
| 2483 | - * @throws InvalidArgumentException |
|
| 2484 | - * @throws InvalidInterfaceException |
|
| 2485 | - * @throws InvalidDataTypeException |
|
| 2486 | - * @throws EE_Error |
|
| 2487 | - */ |
|
| 2488 | - public function count_related($relation_name, $query_params = array(), $field_to_count = null, $distinct = false) |
|
| 2489 | - { |
|
| 2490 | - return $this->get_model()->count_related( |
|
| 2491 | - $this, |
|
| 2492 | - $relation_name, |
|
| 2493 | - $query_params, |
|
| 2494 | - $field_to_count, |
|
| 2495 | - $distinct |
|
| 2496 | - ); |
|
| 2497 | - } |
|
| 2498 | - |
|
| 2499 | - |
|
| 2500 | - /** |
|
| 2501 | - * Instead of getting the related model objects, simply sums up the values of the specified field. |
|
| 2502 | - * Note: ignores default_where_conditions by default, unless otherwise specified in the $query_params |
|
| 2503 | - * |
|
| 2504 | - * @param string $relation_name model_name like 'Event', or 'Registration' |
|
| 2505 | - * @param array $query_params @see https://github.com/eventespresso/event-espresso-core/tree/master/docs/G--Model-System/model-query-params.md |
|
| 2506 | - * @param string $field_to_sum name of field to count by. |
|
| 2507 | - * By default, uses primary key |
|
| 2508 | - * (which doesn't make much sense, so you should probably change it) |
|
| 2509 | - * @return int |
|
| 2510 | - * @throws ReflectionException |
|
| 2511 | - * @throws InvalidArgumentException |
|
| 2512 | - * @throws InvalidInterfaceException |
|
| 2513 | - * @throws InvalidDataTypeException |
|
| 2514 | - * @throws EE_Error |
|
| 2515 | - */ |
|
| 2516 | - public function sum_related($relation_name, $query_params = array(), $field_to_sum = null) |
|
| 2517 | - { |
|
| 2518 | - return $this->get_model()->sum_related( |
|
| 2519 | - $this, |
|
| 2520 | - $relation_name, |
|
| 2521 | - $query_params, |
|
| 2522 | - $field_to_sum |
|
| 2523 | - ); |
|
| 2524 | - } |
|
| 2525 | - |
|
| 2526 | - |
|
| 2527 | - /** |
|
| 2528 | - * Gets the first (ie, one) related model object of the specified type. |
|
| 2529 | - * |
|
| 2530 | - * @param string $relationName key in the model's _model_relations array |
|
| 2531 | - * @param array $query_params @see https://github.com/eventespresso/event-espresso-core/tree/master/docs/G--Model-System/model-query-params.md |
|
| 2532 | - * @return EE_Base_Class (not an array, a single object) |
|
| 2533 | - * @throws ReflectionException |
|
| 2534 | - * @throws InvalidArgumentException |
|
| 2535 | - * @throws InvalidInterfaceException |
|
| 2536 | - * @throws InvalidDataTypeException |
|
| 2537 | - * @throws EE_Error |
|
| 2538 | - */ |
|
| 2539 | - public function get_first_related($relationName, $query_params = array()) |
|
| 2540 | - { |
|
| 2541 | - $model = $this->get_model(); |
|
| 2542 | - if ($this->ID()) {// this exists in the DB, get from the cache OR the DB |
|
| 2543 | - // if they've provided some query parameters, don't bother trying to cache the result |
|
| 2544 | - // also make sure we're not caching the result of get_first_related |
|
| 2545 | - // on a relation which should have an array of objects (because the cache might have an array of objects) |
|
| 2546 | - if ($query_params |
|
| 2547 | - || ! $model->related_settings_for($relationName) |
|
| 2548 | - instanceof |
|
| 2549 | - EE_Belongs_To_Relation |
|
| 2550 | - ) { |
|
| 2551 | - $related_model_object = $model->get_first_related( |
|
| 2552 | - $this, |
|
| 2553 | - $relationName, |
|
| 2554 | - $query_params |
|
| 2555 | - ); |
|
| 2556 | - } else { |
|
| 2557 | - // first, check if we've already cached the result of this query |
|
| 2558 | - $cached_result = $this->get_one_from_cache($relationName); |
|
| 2559 | - if (! $cached_result) { |
|
| 2560 | - $related_model_object = $model->get_first_related( |
|
| 2561 | - $this, |
|
| 2562 | - $relationName, |
|
| 2563 | - $query_params |
|
| 2564 | - ); |
|
| 2565 | - $this->cache($relationName, $related_model_object); |
|
| 2566 | - } else { |
|
| 2567 | - $related_model_object = $cached_result; |
|
| 2568 | - } |
|
| 2569 | - } |
|
| 2570 | - } else { |
|
| 2571 | - $related_model_object = null; |
|
| 2572 | - // this doesn't exist in the Db, |
|
| 2573 | - // but maybe the relation is of type belongs to, and so the related thing might |
|
| 2574 | - if ($model->related_settings_for($relationName) instanceof EE_Belongs_To_Relation) { |
|
| 2575 | - $related_model_object = $model->get_first_related( |
|
| 2576 | - $this, |
|
| 2577 | - $relationName, |
|
| 2578 | - $query_params |
|
| 2579 | - ); |
|
| 2580 | - } |
|
| 2581 | - // this doesn't exist in the DB and apparently the thing it belongs to doesn't either, |
|
| 2582 | - // just get what's cached on this object |
|
| 2583 | - if (! $related_model_object) { |
|
| 2584 | - $related_model_object = $this->get_one_from_cache($relationName); |
|
| 2585 | - } |
|
| 2586 | - } |
|
| 2587 | - return $related_model_object; |
|
| 2588 | - } |
|
| 2589 | - |
|
| 2590 | - |
|
| 2591 | - /** |
|
| 2592 | - * Does a delete on all related objects of type $relationName and removes |
|
| 2593 | - * the current model object's relation to them. If they can't be deleted (because |
|
| 2594 | - * of blocking related model objects) does nothing. If the related model objects are |
|
| 2595 | - * soft-deletable, they will be soft-deleted regardless of related blocking model objects. |
|
| 2596 | - * If this model object doesn't exist yet in the DB, just removes its related things |
|
| 2597 | - * |
|
| 2598 | - * @param string $relationName |
|
| 2599 | - * @param array $query_params @see https://github.com/eventespresso/event-espresso-core/tree/master/docs/G--Model-System/model-query-params.md |
|
| 2600 | - * @return int how many deleted |
|
| 2601 | - * @throws ReflectionException |
|
| 2602 | - * @throws InvalidArgumentException |
|
| 2603 | - * @throws InvalidInterfaceException |
|
| 2604 | - * @throws InvalidDataTypeException |
|
| 2605 | - * @throws EE_Error |
|
| 2606 | - */ |
|
| 2607 | - public function delete_related($relationName, $query_params = array()) |
|
| 2608 | - { |
|
| 2609 | - if ($this->ID()) { |
|
| 2610 | - $count = $this->get_model()->delete_related( |
|
| 2611 | - $this, |
|
| 2612 | - $relationName, |
|
| 2613 | - $query_params |
|
| 2614 | - ); |
|
| 2615 | - } else { |
|
| 2616 | - $count = count($this->get_all_from_cache($relationName)); |
|
| 2617 | - $this->clear_cache($relationName, null, true); |
|
| 2618 | - } |
|
| 2619 | - return $count; |
|
| 2620 | - } |
|
| 2621 | - |
|
| 2622 | - |
|
| 2623 | - /** |
|
| 2624 | - * Does a hard delete (ie, removes the DB row) on all related objects of type $relationName and removes |
|
| 2625 | - * the current model object's relation to them. If they can't be deleted (because |
|
| 2626 | - * of blocking related model objects) just does a soft delete on it instead, if possible. |
|
| 2627 | - * If the related thing isn't a soft-deletable model object, this function is identical |
|
| 2628 | - * to delete_related(). If this model object doesn't exist in the DB, just remove its related things |
|
| 2629 | - * |
|
| 2630 | - * @param string $relationName |
|
| 2631 | - * @param array $query_params @see https://github.com/eventespresso/event-espresso-core/tree/master/docs/G--Model-System/model-query-params.md |
|
| 2632 | - * @return int how many deleted (including those soft deleted) |
|
| 2633 | - * @throws ReflectionException |
|
| 2634 | - * @throws InvalidArgumentException |
|
| 2635 | - * @throws InvalidInterfaceException |
|
| 2636 | - * @throws InvalidDataTypeException |
|
| 2637 | - * @throws EE_Error |
|
| 2638 | - */ |
|
| 2639 | - public function delete_related_permanently($relationName, $query_params = array()) |
|
| 2640 | - { |
|
| 2641 | - if ($this->ID()) { |
|
| 2642 | - $count = $this->get_model()->delete_related_permanently( |
|
| 2643 | - $this, |
|
| 2644 | - $relationName, |
|
| 2645 | - $query_params |
|
| 2646 | - ); |
|
| 2647 | - } else { |
|
| 2648 | - $count = count($this->get_all_from_cache($relationName)); |
|
| 2649 | - } |
|
| 2650 | - $this->clear_cache($relationName, null, true); |
|
| 2651 | - return $count; |
|
| 2652 | - } |
|
| 2653 | - |
|
| 2654 | - |
|
| 2655 | - /** |
|
| 2656 | - * is_set |
|
| 2657 | - * Just a simple utility function children can use for checking if property exists |
|
| 2658 | - * |
|
| 2659 | - * @access public |
|
| 2660 | - * @param string $field_name property to check |
|
| 2661 | - * @return bool TRUE if existing,FALSE if not. |
|
| 2662 | - */ |
|
| 2663 | - public function is_set($field_name) |
|
| 2664 | - { |
|
| 2665 | - return isset($this->_fields[ $field_name ]); |
|
| 2666 | - } |
|
| 2667 | - |
|
| 2668 | - |
|
| 2669 | - /** |
|
| 2670 | - * Just a simple utility function children can use for checking if property (or properties) exists and throwing an |
|
| 2671 | - * EE_Error exception if they don't |
|
| 2672 | - * |
|
| 2673 | - * @param mixed (string|array) $properties properties to check |
|
| 2674 | - * @throws EE_Error |
|
| 2675 | - * @return bool TRUE if existing, throw EE_Error if not. |
|
| 2676 | - */ |
|
| 2677 | - protected function _property_exists($properties) |
|
| 2678 | - { |
|
| 2679 | - foreach ((array) $properties as $property_name) { |
|
| 2680 | - // first make sure this property exists |
|
| 2681 | - if (! $this->_fields[ $property_name ]) { |
|
| 2682 | - throw new EE_Error( |
|
| 2683 | - sprintf( |
|
| 2684 | - esc_html__( |
|
| 2685 | - 'Trying to retrieve a non-existent property (%s). Double check the spelling please', |
|
| 2686 | - 'event_espresso' |
|
| 2687 | - ), |
|
| 2688 | - $property_name |
|
| 2689 | - ) |
|
| 2690 | - ); |
|
| 2691 | - } |
|
| 2692 | - } |
|
| 2693 | - return true; |
|
| 2694 | - } |
|
| 2695 | - |
|
| 2696 | - |
|
| 2697 | - /** |
|
| 2698 | - * This simply returns an array of model fields for this object |
|
| 2699 | - * |
|
| 2700 | - * @return array |
|
| 2701 | - * @throws ReflectionException |
|
| 2702 | - * @throws InvalidArgumentException |
|
| 2703 | - * @throws InvalidInterfaceException |
|
| 2704 | - * @throws InvalidDataTypeException |
|
| 2705 | - * @throws EE_Error |
|
| 2706 | - */ |
|
| 2707 | - public function model_field_array() |
|
| 2708 | - { |
|
| 2709 | - $fields = $this->get_model()->field_settings(false); |
|
| 2710 | - $properties = array(); |
|
| 2711 | - // remove prepended underscore |
|
| 2712 | - foreach ($fields as $field_name => $settings) { |
|
| 2713 | - $properties[ $field_name ] = $this->get($field_name); |
|
| 2714 | - } |
|
| 2715 | - return $properties; |
|
| 2716 | - } |
|
| 2717 | - |
|
| 2718 | - |
|
| 2719 | - /** |
|
| 2720 | - * Very handy general function to allow for plugins to extend any child of EE_Base_Class. |
|
| 2721 | - * If a method is called on a child of EE_Base_Class that doesn't exist, this function is called |
|
| 2722 | - * (http://www.garfieldtech.com/blog/php-magic-call) and passed the method's name and arguments. |
|
| 2723 | - * Instead of requiring a plugin to extend the EE_Base_Class |
|
| 2724 | - * (which works fine is there's only 1 plugin, but when will that happen?) |
|
| 2725 | - * they can add a hook onto 'filters_hook_espresso__{className}__{methodName}' |
|
| 2726 | - * (eg, filters_hook_espresso__EE_Answer__my_great_function) |
|
| 2727 | - * and accepts 2 arguments: the object on which the function was called, |
|
| 2728 | - * and an array of the original arguments passed to the function. |
|
| 2729 | - * Whatever their callback function returns will be returned by this function. |
|
| 2730 | - * Example: in functions.php (or in a plugin): |
|
| 2731 | - * add_filter('FHEE__EE_Answer__my_callback','my_callback',10,3); |
|
| 2732 | - * function my_callback($previousReturnValue,EE_Base_Class $object,$argsArray){ |
|
| 2733 | - * $returnString= "you called my_callback! and passed args:".implode(",",$argsArray); |
|
| 2734 | - * return $previousReturnValue.$returnString; |
|
| 2735 | - * } |
|
| 2736 | - * require('EE_Answer.class.php'); |
|
| 2737 | - * $answer= EE_Answer::new_instance(array('REG_ID' => 2,'QST_ID' => 3,'ANS_value' => The answer is 42')); |
|
| 2738 | - * echo $answer->my_callback('monkeys',100); |
|
| 2739 | - * //will output "you called my_callback! and passed args:monkeys,100" |
|
| 2740 | - * |
|
| 2741 | - * @param string $methodName name of method which was called on a child of EE_Base_Class, but which |
|
| 2742 | - * @param array $args array of original arguments passed to the function |
|
| 2743 | - * @throws EE_Error |
|
| 2744 | - * @return mixed whatever the plugin which calls add_filter decides |
|
| 2745 | - */ |
|
| 2746 | - public function __call($methodName, $args) |
|
| 2747 | - { |
|
| 2748 | - $className = get_class($this); |
|
| 2749 | - $tagName = "FHEE__{$className}__{$methodName}"; |
|
| 2750 | - if (! has_filter($tagName)) { |
|
| 2751 | - throw new EE_Error( |
|
| 2752 | - sprintf( |
|
| 2753 | - esc_html__( |
|
| 2754 | - "Method %s on class %s does not exist! You can create one with the following code in functions.php or in a plugin: add_filter('%s','my_callback',10,3);function my_callback(\$previousReturnValue,EE_Base_Class \$object, \$argsArray){/*function body*/return \$whatever;}", |
|
| 2755 | - 'event_espresso' |
|
| 2756 | - ), |
|
| 2757 | - $methodName, |
|
| 2758 | - $className, |
|
| 2759 | - $tagName |
|
| 2760 | - ) |
|
| 2761 | - ); |
|
| 2762 | - } |
|
| 2763 | - return apply_filters($tagName, null, $this, $args); |
|
| 2764 | - } |
|
| 2765 | - |
|
| 2766 | - |
|
| 2767 | - /** |
|
| 2768 | - * Similar to insert_post_meta, adds a record in the Extra_Meta model's table with the given key and value. |
|
| 2769 | - * A $previous_value can be specified in case there are many meta rows with the same key |
|
| 2770 | - * |
|
| 2771 | - * @param string $meta_key |
|
| 2772 | - * @param mixed $meta_value |
|
| 2773 | - * @param mixed $previous_value |
|
| 2774 | - * @return bool|int # of records updated (or BOOLEAN if we actually ended up inserting the extra meta row) |
|
| 2775 | - * NOTE: if the values haven't changed, returns 0 |
|
| 2776 | - * @throws InvalidArgumentException |
|
| 2777 | - * @throws InvalidInterfaceException |
|
| 2778 | - * @throws InvalidDataTypeException |
|
| 2779 | - * @throws EE_Error |
|
| 2780 | - * @throws ReflectionException |
|
| 2781 | - */ |
|
| 2782 | - public function update_extra_meta($meta_key, $meta_value, $previous_value = null) |
|
| 2783 | - { |
|
| 2784 | - $query_params = array( |
|
| 2785 | - array( |
|
| 2786 | - 'EXM_key' => $meta_key, |
|
| 2787 | - 'OBJ_ID' => $this->ID(), |
|
| 2788 | - 'EXM_type' => $this->get_model()->get_this_model_name(), |
|
| 2789 | - ), |
|
| 2790 | - ); |
|
| 2791 | - if ($previous_value !== null) { |
|
| 2792 | - $query_params[0]['EXM_value'] = $meta_value; |
|
| 2793 | - } |
|
| 2794 | - $existing_rows_like_that = EEM_Extra_Meta::instance()->get_all($query_params); |
|
| 2795 | - if (! $existing_rows_like_that) { |
|
| 2796 | - return $this->add_extra_meta($meta_key, $meta_value); |
|
| 2797 | - } |
|
| 2798 | - foreach ($existing_rows_like_that as $existing_row) { |
|
| 2799 | - $existing_row->save(array('EXM_value' => $meta_value)); |
|
| 2800 | - } |
|
| 2801 | - return count($existing_rows_like_that); |
|
| 2802 | - } |
|
| 2803 | - |
|
| 2804 | - |
|
| 2805 | - /** |
|
| 2806 | - * Adds a new extra meta record. If $unique is set to TRUE, we'll first double-check |
|
| 2807 | - * no other extra meta for this model object have the same key. Returns TRUE if the |
|
| 2808 | - * extra meta row was entered, false if not |
|
| 2809 | - * |
|
| 2810 | - * @param string $meta_key |
|
| 2811 | - * @param mixed $meta_value |
|
| 2812 | - * @param boolean $unique |
|
| 2813 | - * @return boolean |
|
| 2814 | - * @throws InvalidArgumentException |
|
| 2815 | - * @throws InvalidInterfaceException |
|
| 2816 | - * @throws InvalidDataTypeException |
|
| 2817 | - * @throws EE_Error |
|
| 2818 | - * @throws ReflectionException |
|
| 2819 | - * @throws ReflectionException |
|
| 2820 | - */ |
|
| 2821 | - public function add_extra_meta($meta_key, $meta_value, $unique = false) |
|
| 2822 | - { |
|
| 2823 | - if ($unique) { |
|
| 2824 | - $existing_extra_meta = EEM_Extra_Meta::instance()->get_one( |
|
| 2825 | - array( |
|
| 2826 | - array( |
|
| 2827 | - 'EXM_key' => $meta_key, |
|
| 2828 | - 'OBJ_ID' => $this->ID(), |
|
| 2829 | - 'EXM_type' => $this->get_model()->get_this_model_name(), |
|
| 2830 | - ), |
|
| 2831 | - ) |
|
| 2832 | - ); |
|
| 2833 | - if ($existing_extra_meta) { |
|
| 2834 | - return false; |
|
| 2835 | - } |
|
| 2836 | - } |
|
| 2837 | - $new_extra_meta = EE_Extra_Meta::new_instance( |
|
| 2838 | - array( |
|
| 2839 | - 'EXM_key' => $meta_key, |
|
| 2840 | - 'EXM_value' => $meta_value, |
|
| 2841 | - 'OBJ_ID' => $this->ID(), |
|
| 2842 | - 'EXM_type' => $this->get_model()->get_this_model_name(), |
|
| 2843 | - ) |
|
| 2844 | - ); |
|
| 2845 | - $new_extra_meta->save(); |
|
| 2846 | - return true; |
|
| 2847 | - } |
|
| 2848 | - |
|
| 2849 | - |
|
| 2850 | - /** |
|
| 2851 | - * Deletes all the extra meta rows for this record as specified by key. If $meta_value |
|
| 2852 | - * is specified, only deletes extra meta records with that value. |
|
| 2853 | - * |
|
| 2854 | - * @param string $meta_key |
|
| 2855 | - * @param mixed $meta_value |
|
| 2856 | - * @return int number of extra meta rows deleted |
|
| 2857 | - * @throws InvalidArgumentException |
|
| 2858 | - * @throws InvalidInterfaceException |
|
| 2859 | - * @throws InvalidDataTypeException |
|
| 2860 | - * @throws EE_Error |
|
| 2861 | - * @throws ReflectionException |
|
| 2862 | - */ |
|
| 2863 | - public function delete_extra_meta($meta_key, $meta_value = null) |
|
| 2864 | - { |
|
| 2865 | - $query_params = array( |
|
| 2866 | - array( |
|
| 2867 | - 'EXM_key' => $meta_key, |
|
| 2868 | - 'OBJ_ID' => $this->ID(), |
|
| 2869 | - 'EXM_type' => $this->get_model()->get_this_model_name(), |
|
| 2870 | - ), |
|
| 2871 | - ); |
|
| 2872 | - if ($meta_value !== null) { |
|
| 2873 | - $query_params[0]['EXM_value'] = $meta_value; |
|
| 2874 | - } |
|
| 2875 | - return EEM_Extra_Meta::instance()->delete($query_params); |
|
| 2876 | - } |
|
| 2877 | - |
|
| 2878 | - |
|
| 2879 | - /** |
|
| 2880 | - * Gets the extra meta with the given meta key. If you specify "single" we just return 1, otherwise |
|
| 2881 | - * an array of everything found. Requires that this model actually have a relation of type EE_Has_Many_Any_Relation. |
|
| 2882 | - * You can specify $default is case you haven't found the extra meta |
|
| 2883 | - * |
|
| 2884 | - * @param string $meta_key |
|
| 2885 | - * @param boolean $single |
|
| 2886 | - * @param mixed $default if we don't find anything, what should we return? |
|
| 2887 | - * @return mixed single value if $single; array if ! $single |
|
| 2888 | - * @throws ReflectionException |
|
| 2889 | - * @throws InvalidArgumentException |
|
| 2890 | - * @throws InvalidInterfaceException |
|
| 2891 | - * @throws InvalidDataTypeException |
|
| 2892 | - * @throws EE_Error |
|
| 2893 | - */ |
|
| 2894 | - public function get_extra_meta($meta_key, $single = false, $default = null) |
|
| 2895 | - { |
|
| 2896 | - if ($single) { |
|
| 2897 | - $result = $this->get_first_related( |
|
| 2898 | - 'Extra_Meta', |
|
| 2899 | - array(array('EXM_key' => $meta_key)) |
|
| 2900 | - ); |
|
| 2901 | - if ($result instanceof EE_Extra_Meta) { |
|
| 2902 | - return $result->value(); |
|
| 2903 | - } |
|
| 2904 | - } else { |
|
| 2905 | - $results = $this->get_many_related( |
|
| 2906 | - 'Extra_Meta', |
|
| 2907 | - array(array('EXM_key' => $meta_key)) |
|
| 2908 | - ); |
|
| 2909 | - if ($results) { |
|
| 2910 | - $values = array(); |
|
| 2911 | - foreach ($results as $result) { |
|
| 2912 | - if ($result instanceof EE_Extra_Meta) { |
|
| 2913 | - $values[ $result->ID() ] = $result->value(); |
|
| 2914 | - } |
|
| 2915 | - } |
|
| 2916 | - return $values; |
|
| 2917 | - } |
|
| 2918 | - } |
|
| 2919 | - // if nothing discovered yet return default. |
|
| 2920 | - return apply_filters( |
|
| 2921 | - 'FHEE__EE_Base_Class__get_extra_meta__default_value', |
|
| 2922 | - $default, |
|
| 2923 | - $meta_key, |
|
| 2924 | - $single, |
|
| 2925 | - $this |
|
| 2926 | - ); |
|
| 2927 | - } |
|
| 2928 | - |
|
| 2929 | - |
|
| 2930 | - /** |
|
| 2931 | - * Returns a simple array of all the extra meta associated with this model object. |
|
| 2932 | - * If $one_of_each_key is true (Default), it will be an array of simple key-value pairs, keys being the |
|
| 2933 | - * extra meta's key, and teh value being its value. However, if there are duplicate extra meta rows with |
|
| 2934 | - * the same key, only one will be used. (eg array('foo'=>'bar','monkey'=>123)) |
|
| 2935 | - * If $one_of_each_key is false, it will return an array with the top-level keys being |
|
| 2936 | - * the extra meta keys, but their values are also arrays, which have the extra-meta's ID as their sub-key, and |
|
| 2937 | - * finally the extra meta's value as each sub-value. (eg |
|
| 2938 | - * array('foo'=>array(1=>'bar',2=>'bill'),'monkey'=>array(3=>123))) |
|
| 2939 | - * |
|
| 2940 | - * @param boolean $one_of_each_key |
|
| 2941 | - * @return array |
|
| 2942 | - * @throws ReflectionException |
|
| 2943 | - * @throws InvalidArgumentException |
|
| 2944 | - * @throws InvalidInterfaceException |
|
| 2945 | - * @throws InvalidDataTypeException |
|
| 2946 | - * @throws EE_Error |
|
| 2947 | - */ |
|
| 2948 | - public function all_extra_meta_array($one_of_each_key = true) |
|
| 2949 | - { |
|
| 2950 | - $return_array = array(); |
|
| 2951 | - if ($one_of_each_key) { |
|
| 2952 | - $extra_meta_objs = $this->get_many_related( |
|
| 2953 | - 'Extra_Meta', |
|
| 2954 | - array('group_by' => 'EXM_key') |
|
| 2955 | - ); |
|
| 2956 | - foreach ($extra_meta_objs as $extra_meta_obj) { |
|
| 2957 | - if ($extra_meta_obj instanceof EE_Extra_Meta) { |
|
| 2958 | - $return_array[ $extra_meta_obj->key() ] = $extra_meta_obj->value(); |
|
| 2959 | - } |
|
| 2960 | - } |
|
| 2961 | - } else { |
|
| 2962 | - $extra_meta_objs = $this->get_many_related('Extra_Meta'); |
|
| 2963 | - foreach ($extra_meta_objs as $extra_meta_obj) { |
|
| 2964 | - if ($extra_meta_obj instanceof EE_Extra_Meta) { |
|
| 2965 | - if (! isset($return_array[ $extra_meta_obj->key() ])) { |
|
| 2966 | - $return_array[ $extra_meta_obj->key() ] = array(); |
|
| 2967 | - } |
|
| 2968 | - $return_array[ $extra_meta_obj->key() ][ $extra_meta_obj->ID() ] = $extra_meta_obj->value(); |
|
| 2969 | - } |
|
| 2970 | - } |
|
| 2971 | - } |
|
| 2972 | - return $return_array; |
|
| 2973 | - } |
|
| 2974 | - |
|
| 2975 | - |
|
| 2976 | - /** |
|
| 2977 | - * Gets a pretty nice displayable nice for this model object. Often overridden |
|
| 2978 | - * |
|
| 2979 | - * @return string |
|
| 2980 | - * @throws ReflectionException |
|
| 2981 | - * @throws InvalidArgumentException |
|
| 2982 | - * @throws InvalidInterfaceException |
|
| 2983 | - * @throws InvalidDataTypeException |
|
| 2984 | - * @throws EE_Error |
|
| 2985 | - */ |
|
| 2986 | - public function name() |
|
| 2987 | - { |
|
| 2988 | - // find a field that's not a text field |
|
| 2989 | - $field_we_can_use = $this->get_model()->get_a_field_of_type('EE_Text_Field_Base'); |
|
| 2990 | - if ($field_we_can_use) { |
|
| 2991 | - return $this->get($field_we_can_use->get_name()); |
|
| 2992 | - } |
|
| 2993 | - $first_few_properties = $this->model_field_array(); |
|
| 2994 | - $first_few_properties = array_slice($first_few_properties, 0, 3); |
|
| 2995 | - $name_parts = array(); |
|
| 2996 | - foreach ($first_few_properties as $name => $value) { |
|
| 2997 | - $name_parts[] = "$name:$value"; |
|
| 2998 | - } |
|
| 2999 | - return implode(',', $name_parts); |
|
| 3000 | - } |
|
| 3001 | - |
|
| 3002 | - |
|
| 3003 | - /** |
|
| 3004 | - * in_entity_map |
|
| 3005 | - * Checks if this model object has been proven to already be in the entity map |
|
| 3006 | - * |
|
| 3007 | - * @return boolean |
|
| 3008 | - * @throws ReflectionException |
|
| 3009 | - * @throws InvalidArgumentException |
|
| 3010 | - * @throws InvalidInterfaceException |
|
| 3011 | - * @throws InvalidDataTypeException |
|
| 3012 | - * @throws EE_Error |
|
| 3013 | - */ |
|
| 3014 | - public function in_entity_map() |
|
| 3015 | - { |
|
| 3016 | - // well, if we looked, did we find it in the entity map? |
|
| 3017 | - return $this->ID() && $this->get_model()->get_from_entity_map($this->ID()) === $this; |
|
| 3018 | - } |
|
| 3019 | - |
|
| 3020 | - |
|
| 3021 | - /** |
|
| 3022 | - * refresh_from_db |
|
| 3023 | - * Makes sure the fields and values on this model object are in-sync with what's in the database. |
|
| 3024 | - * |
|
| 3025 | - * @throws ReflectionException |
|
| 3026 | - * @throws InvalidArgumentException |
|
| 3027 | - * @throws InvalidInterfaceException |
|
| 3028 | - * @throws InvalidDataTypeException |
|
| 3029 | - * @throws EE_Error if this model object isn't in the entity mapper (because then you should |
|
| 3030 | - * just use what's in the entity mapper and refresh it) and WP_DEBUG is TRUE |
|
| 3031 | - */ |
|
| 3032 | - public function refresh_from_db() |
|
| 3033 | - { |
|
| 3034 | - if ($this->ID() && $this->in_entity_map()) { |
|
| 3035 | - $this->get_model()->refresh_entity_map_from_db($this->ID()); |
|
| 3036 | - } else { |
|
| 3037 | - // if it doesn't have ID, you shouldn't be asking to refresh it from teh database (because its not in the database) |
|
| 3038 | - // if it has an ID but it's not in the map, and you're asking me to refresh it |
|
| 3039 | - // that's kinda dangerous. You should just use what's in the entity map, or add this to the entity map if there's |
|
| 3040 | - // absolutely nothing in it for this ID |
|
| 3041 | - if (WP_DEBUG) { |
|
| 3042 | - throw new EE_Error( |
|
| 3043 | - sprintf( |
|
| 3044 | - esc_html__( |
|
| 3045 | - 'Trying to refresh a model object with ID "%1$s" that\'s not in the entity map? First off: you should put it in the entity map by calling %2$s. Second off, if you want what\'s in the database right now, you should just call %3$s yourself and discard this model object.', |
|
| 3046 | - 'event_espresso' |
|
| 3047 | - ), |
|
| 3048 | - $this->ID(), |
|
| 3049 | - get_class($this->get_model()) . '::instance()->add_to_entity_map()', |
|
| 3050 | - get_class($this->get_model()) . '::instance()->refresh_entity_map()' |
|
| 3051 | - ) |
|
| 3052 | - ); |
|
| 3053 | - } |
|
| 3054 | - } |
|
| 3055 | - } |
|
| 3056 | - |
|
| 3057 | - |
|
| 3058 | - /** |
|
| 3059 | - * Because some other plugins, like Advanced Cron Manager, expect all objects to have this method |
|
| 3060 | - * (probably a bad assumption they have made, oh well) |
|
| 3061 | - * |
|
| 3062 | - * @return string |
|
| 3063 | - */ |
|
| 3064 | - public function __toString() |
|
| 3065 | - { |
|
| 3066 | - try { |
|
| 3067 | - return sprintf('%s (%s)', $this->name(), $this->ID()); |
|
| 3068 | - } catch (Exception $e) { |
|
| 3069 | - EE_Error::add_error($e->getMessage(), __FILE__, __FUNCTION__, __LINE__); |
|
| 3070 | - return ''; |
|
| 3071 | - } |
|
| 3072 | - } |
|
| 3073 | - |
|
| 3074 | - |
|
| 3075 | - /** |
|
| 3076 | - * Clear related model objects if they're already in the DB, because otherwise when we |
|
| 3077 | - * UN-serialize this model object we'll need to be careful to add them to the entity map. |
|
| 3078 | - * This means if we have made changes to those related model objects, and want to unserialize |
|
| 3079 | - * the this model object on a subsequent request, changes to those related model objects will be lost. |
|
| 3080 | - * Instead, those related model objects should be directly serialized and stored. |
|
| 3081 | - * Eg, the following won't work: |
|
| 3082 | - * $reg = EEM_Registration::instance()->get_one_by_ID( 123 ); |
|
| 3083 | - * $att = $reg->attendee(); |
|
| 3084 | - * $att->set( 'ATT_fname', 'Dirk' ); |
|
| 3085 | - * update_option( 'my_option', serialize( $reg ) ); |
|
| 3086 | - * //END REQUEST |
|
| 3087 | - * //START NEXT REQUEST |
|
| 3088 | - * $reg = get_option( 'my_option' ); |
|
| 3089 | - * $reg->attendee()->save(); |
|
| 3090 | - * And would need to be replace with: |
|
| 3091 | - * $reg = EEM_Registration::instance()->get_one_by_ID( 123 ); |
|
| 3092 | - * $att = $reg->attendee(); |
|
| 3093 | - * $att->set( 'ATT_fname', 'Dirk' ); |
|
| 3094 | - * update_option( 'my_option', serialize( $reg ) ); |
|
| 3095 | - * //END REQUEST |
|
| 3096 | - * //START NEXT REQUEST |
|
| 3097 | - * $att = get_option( 'my_option' ); |
|
| 3098 | - * $att->save(); |
|
| 3099 | - * |
|
| 3100 | - * @return array |
|
| 3101 | - * @throws ReflectionException |
|
| 3102 | - * @throws InvalidArgumentException |
|
| 3103 | - * @throws InvalidInterfaceException |
|
| 3104 | - * @throws InvalidDataTypeException |
|
| 3105 | - * @throws EE_Error |
|
| 3106 | - */ |
|
| 3107 | - public function __sleep() |
|
| 3108 | - { |
|
| 3109 | - $model = $this->get_model(); |
|
| 3110 | - foreach ($model->relation_settings() as $relation_name => $relation_obj) { |
|
| 3111 | - if ($relation_obj instanceof EE_Belongs_To_Relation) { |
|
| 3112 | - $classname = 'EE_' . $model->get_this_model_name(); |
|
| 3113 | - if ($this->get_one_from_cache($relation_name) instanceof $classname |
|
| 3114 | - && $this->get_one_from_cache($relation_name)->ID() |
|
| 3115 | - ) { |
|
| 3116 | - $this->clear_cache( |
|
| 3117 | - $relation_name, |
|
| 3118 | - $this->get_one_from_cache($relation_name)->ID() |
|
| 3119 | - ); |
|
| 3120 | - } |
|
| 3121 | - } |
|
| 3122 | - } |
|
| 3123 | - $this->_props_n_values_provided_in_constructor = array(); |
|
| 3124 | - $properties_to_serialize = get_object_vars($this); |
|
| 3125 | - // don't serialize the model. It's big and that risks recursion |
|
| 3126 | - unset($properties_to_serialize['_model']); |
|
| 3127 | - return array_keys($properties_to_serialize); |
|
| 3128 | - } |
|
| 3129 | - |
|
| 3130 | - |
|
| 3131 | - /** |
|
| 3132 | - * restore _props_n_values_provided_in_constructor |
|
| 3133 | - * PLZ NOTE: this will reset the array to whatever fields values were present prior to serialization, |
|
| 3134 | - * and therefore should NOT be used to determine if state change has occurred since initial construction. |
|
| 3135 | - * At best, you would only be able to detect if state change has occurred during THIS request. |
|
| 3136 | - */ |
|
| 3137 | - public function __wakeup() |
|
| 3138 | - { |
|
| 3139 | - $this->_props_n_values_provided_in_constructor = $this->_fields; |
|
| 3140 | - } |
|
| 3141 | - |
|
| 3142 | - |
|
| 3143 | - /** |
|
| 3144 | - * Usage of this magic method is to ensure any internally cached references to object instances that must remain |
|
| 3145 | - * distinct with the clone host instance are also cloned. |
|
| 3146 | - */ |
|
| 3147 | - public function __clone() |
|
| 3148 | - { |
|
| 3149 | - // handle DateTimes (this is handled in here because there's no one specific child class that uses datetimes). |
|
| 3150 | - foreach ($this->_fields as $field => $value) { |
|
| 3151 | - if ($value instanceof DateTime) { |
|
| 3152 | - $this->_fields[ $field ] = clone $value; |
|
| 3153 | - } |
|
| 3154 | - } |
|
| 3155 | - } |
|
| 16 | + /** |
|
| 17 | + * This is an array of the original properties and values provided during construction |
|
| 18 | + * of this model object. (keys are model field names, values are their values). |
|
| 19 | + * This list is important to remember so that when we are merging data from the db, we know |
|
| 20 | + * which values to override and which to not override. |
|
| 21 | + * |
|
| 22 | + * @var array |
|
| 23 | + */ |
|
| 24 | + protected $_props_n_values_provided_in_constructor; |
|
| 25 | + |
|
| 26 | + /** |
|
| 27 | + * Timezone |
|
| 28 | + * This gets set by the "set_timezone()" method so that we know what timezone incoming strings|timestamps are in. |
|
| 29 | + * This can also be used before a get to set what timezone you want strings coming out of the object to be in. NOT |
|
| 30 | + * all EE_Base_Class child classes use this property but any that use a EE_Datetime_Field data type will have |
|
| 31 | + * access to it. |
|
| 32 | + * |
|
| 33 | + * @var string |
|
| 34 | + */ |
|
| 35 | + protected $_timezone; |
|
| 36 | + |
|
| 37 | + /** |
|
| 38 | + * date format |
|
| 39 | + * pattern or format for displaying dates |
|
| 40 | + * |
|
| 41 | + * @var string $_dt_frmt |
|
| 42 | + */ |
|
| 43 | + protected $_dt_frmt; |
|
| 44 | + |
|
| 45 | + /** |
|
| 46 | + * time format |
|
| 47 | + * pattern or format for displaying time |
|
| 48 | + * |
|
| 49 | + * @var string $_tm_frmt |
|
| 50 | + */ |
|
| 51 | + protected $_tm_frmt; |
|
| 52 | + |
|
| 53 | + /** |
|
| 54 | + * This property is for holding a cached array of object properties indexed by property name as the key. |
|
| 55 | + * The purpose of this is for setting a cache on properties that may have calculated values after a |
|
| 56 | + * prepare_for_get. That way the cache can be checked first and the calculated property returned instead of having |
|
| 57 | + * to recalculate. Used by _set_cached_property() and _get_cached_property() methods. |
|
| 58 | + * |
|
| 59 | + * @var array |
|
| 60 | + */ |
|
| 61 | + protected $_cached_properties = array(); |
|
| 62 | + |
|
| 63 | + /** |
|
| 64 | + * An array containing keys of the related model, and values are either an array of related mode objects or a |
|
| 65 | + * single |
|
| 66 | + * related model object. see the model's _model_relations. The keys should match those specified. And if the |
|
| 67 | + * relation is of type EE_Belongs_To (or one of its children), then there should only be ONE related model object, |
|
| 68 | + * all others have an array) |
|
| 69 | + * |
|
| 70 | + * @var array |
|
| 71 | + */ |
|
| 72 | + protected $_model_relations = array(); |
|
| 73 | + |
|
| 74 | + /** |
|
| 75 | + * Array where keys are field names (see the model's _fields property) and values are their values. To see what |
|
| 76 | + * their types should be, look at what that field object returns on its prepare_for_get and prepare_for_set methods) |
|
| 77 | + * |
|
| 78 | + * @var array |
|
| 79 | + */ |
|
| 80 | + protected $_fields = array(); |
|
| 81 | + |
|
| 82 | + /** |
|
| 83 | + * @var boolean indicating whether or not this model object is intended to ever be saved |
|
| 84 | + * For example, we might create model objects intended to only be used for the duration |
|
| 85 | + * of this request and to be thrown away, and if they were accidentally saved |
|
| 86 | + * it would be a bug. |
|
| 87 | + */ |
|
| 88 | + protected $_allow_persist = true; |
|
| 89 | + |
|
| 90 | + /** |
|
| 91 | + * @var boolean indicating whether or not this model object's properties have changed since construction |
|
| 92 | + */ |
|
| 93 | + protected $_has_changes = false; |
|
| 94 | + |
|
| 95 | + /** |
|
| 96 | + * @var EEM_Base |
|
| 97 | + */ |
|
| 98 | + protected $_model; |
|
| 99 | + |
|
| 100 | + /** |
|
| 101 | + * This is a cache of results from custom selections done on a query that constructs this entity. The only purpose |
|
| 102 | + * for these values is for retrieval of the results, they are not further queryable and they are not persisted to |
|
| 103 | + * the db. They also do not automatically update if there are any changes to the data that produced their results. |
|
| 104 | + * The format is a simple array of field_alias => field_value. So for instance if a custom select was something |
|
| 105 | + * like, "Select COUNT(Registration.REG_ID) as Registration_Count ...", then the resulting value will be in this |
|
| 106 | + * array as: |
|
| 107 | + * array( |
|
| 108 | + * 'Registration_Count' => 24 |
|
| 109 | + * ); |
|
| 110 | + * Note: if the custom select configuration for the query included a data type, the value will be in the data type |
|
| 111 | + * provided for the query (@see EventEspresso\core\domain\values\model\CustomSelects::__construct phpdocs for more |
|
| 112 | + * info) |
|
| 113 | + * |
|
| 114 | + * @var array |
|
| 115 | + */ |
|
| 116 | + protected $custom_selection_results = array(); |
|
| 117 | + |
|
| 118 | + |
|
| 119 | + /** |
|
| 120 | + * basic constructor for Event Espresso classes, performs any necessary initialization, and verifies it's children |
|
| 121 | + * play nice |
|
| 122 | + * |
|
| 123 | + * @param array $fieldValues where each key is a field (ie, array key in the 2nd |
|
| 124 | + * layer of the model's _fields array, (eg, EVT_ID, |
|
| 125 | + * TXN_amount, QST_name, etc) and values are their values |
|
| 126 | + * @param boolean $bydb a flag for setting if the class is instantiated by the |
|
| 127 | + * corresponding db model or not. |
|
| 128 | + * @param string $timezone indicate what timezone you want any datetime fields to |
|
| 129 | + * be in when instantiating a EE_Base_Class object. |
|
| 130 | + * @param array $date_formats An array of date formats to set on construct where first |
|
| 131 | + * value is the date_format and second value is the time |
|
| 132 | + * format. |
|
| 133 | + * @throws InvalidArgumentException |
|
| 134 | + * @throws InvalidInterfaceException |
|
| 135 | + * @throws InvalidDataTypeException |
|
| 136 | + * @throws EE_Error |
|
| 137 | + * @throws ReflectionException |
|
| 138 | + */ |
|
| 139 | + protected function __construct($fieldValues = array(), $bydb = false, $timezone = '', $date_formats = array()) |
|
| 140 | + { |
|
| 141 | + $className = get_class($this); |
|
| 142 | + do_action("AHEE__{$className}__construct", $this, $fieldValues); |
|
| 143 | + $model = $this->get_model(); |
|
| 144 | + $model_fields = $model->field_settings(false); |
|
| 145 | + // ensure $fieldValues is an array |
|
| 146 | + $fieldValues = is_array($fieldValues) ? $fieldValues : array($fieldValues); |
|
| 147 | + // verify client code has not passed any invalid field names |
|
| 148 | + foreach ($fieldValues as $field_name => $field_value) { |
|
| 149 | + if (! isset($model_fields[ $field_name ])) { |
|
| 150 | + throw new EE_Error( |
|
| 151 | + sprintf( |
|
| 152 | + esc_html__( |
|
| 153 | + 'Invalid field (%s) passed to constructor of %s. Allowed fields are :%s', |
|
| 154 | + 'event_espresso' |
|
| 155 | + ), |
|
| 156 | + $field_name, |
|
| 157 | + get_class($this), |
|
| 158 | + implode(', ', array_keys($model_fields)) |
|
| 159 | + ) |
|
| 160 | + ); |
|
| 161 | + } |
|
| 162 | + } |
|
| 163 | + $this->_timezone = EEH_DTT_Helper::get_valid_timezone_string($timezone); |
|
| 164 | + if (! empty($date_formats) && is_array($date_formats)) { |
|
| 165 | + list($this->_dt_frmt, $this->_tm_frmt) = $date_formats; |
|
| 166 | + } else { |
|
| 167 | + // set default formats for date and time |
|
| 168 | + $this->_dt_frmt = (string) get_option('date_format', 'Y-m-d'); |
|
| 169 | + $this->_tm_frmt = (string) get_option('time_format', 'g:i a'); |
|
| 170 | + } |
|
| 171 | + // if db model is instantiating |
|
| 172 | + if ($bydb) { |
|
| 173 | + // client code has indicated these field values are from the database |
|
| 174 | + foreach ($model_fields as $fieldName => $field) { |
|
| 175 | + $this->set_from_db( |
|
| 176 | + $fieldName, |
|
| 177 | + isset($fieldValues[ $fieldName ]) ? $fieldValues[ $fieldName ] : null |
|
| 178 | + ); |
|
| 179 | + } |
|
| 180 | + } else { |
|
| 181 | + // we're constructing a brand |
|
| 182 | + // new instance of the model object. Generally, this means we'll need to do more field validation |
|
| 183 | + foreach ($model_fields as $fieldName => $field) { |
|
| 184 | + $this->set( |
|
| 185 | + $fieldName, |
|
| 186 | + isset($fieldValues[ $fieldName ]) ? $fieldValues[ $fieldName ] : null, |
|
| 187 | + true |
|
| 188 | + ); |
|
| 189 | + } |
|
| 190 | + } |
|
| 191 | + // remember what values were passed to this constructor |
|
| 192 | + $this->_props_n_values_provided_in_constructor = $fieldValues; |
|
| 193 | + // remember in entity mapper |
|
| 194 | + if (! $bydb && $model->has_primary_key_field() && $this->ID()) { |
|
| 195 | + $model->add_to_entity_map($this); |
|
| 196 | + } |
|
| 197 | + // setup all the relations |
|
| 198 | + foreach ($model->relation_settings() as $relation_name => $relation_obj) { |
|
| 199 | + if ($relation_obj instanceof EE_Belongs_To_Relation) { |
|
| 200 | + $this->_model_relations[ $relation_name ] = null; |
|
| 201 | + } else { |
|
| 202 | + $this->_model_relations[ $relation_name ] = array(); |
|
| 203 | + } |
|
| 204 | + } |
|
| 205 | + /** |
|
| 206 | + * Action done at the end of each model object construction |
|
| 207 | + * |
|
| 208 | + * @param EE_Base_Class $this the model object just created |
|
| 209 | + */ |
|
| 210 | + do_action('AHEE__EE_Base_Class__construct__finished', $this); |
|
| 211 | + } |
|
| 212 | + |
|
| 213 | + |
|
| 214 | + /** |
|
| 215 | + * Gets whether or not this model object is allowed to persist/be saved to the database. |
|
| 216 | + * |
|
| 217 | + * @return boolean |
|
| 218 | + */ |
|
| 219 | + public function allow_persist() |
|
| 220 | + { |
|
| 221 | + return $this->_allow_persist; |
|
| 222 | + } |
|
| 223 | + |
|
| 224 | + |
|
| 225 | + /** |
|
| 226 | + * Sets whether or not this model object should be allowed to be saved to the DB. |
|
| 227 | + * Normally once this is set to FALSE you wouldn't set it back to TRUE, unless |
|
| 228 | + * you got new information that somehow made you change your mind. |
|
| 229 | + * |
|
| 230 | + * @param boolean $allow_persist |
|
| 231 | + * @return boolean |
|
| 232 | + */ |
|
| 233 | + public function set_allow_persist($allow_persist) |
|
| 234 | + { |
|
| 235 | + return $this->_allow_persist = $allow_persist; |
|
| 236 | + } |
|
| 237 | + |
|
| 238 | + |
|
| 239 | + /** |
|
| 240 | + * Gets the field's original value when this object was constructed during this request. |
|
| 241 | + * This can be helpful when determining if a model object has changed or not |
|
| 242 | + * |
|
| 243 | + * @param string $field_name |
|
| 244 | + * @return mixed|null |
|
| 245 | + * @throws ReflectionException |
|
| 246 | + * @throws InvalidArgumentException |
|
| 247 | + * @throws InvalidInterfaceException |
|
| 248 | + * @throws InvalidDataTypeException |
|
| 249 | + * @throws EE_Error |
|
| 250 | + */ |
|
| 251 | + public function get_original($field_name) |
|
| 252 | + { |
|
| 253 | + if (isset($this->_props_n_values_provided_in_constructor[ $field_name ]) |
|
| 254 | + && $field_settings = $this->get_model()->field_settings_for($field_name) |
|
| 255 | + ) { |
|
| 256 | + return $field_settings->prepare_for_get($this->_props_n_values_provided_in_constructor[ $field_name ]); |
|
| 257 | + } |
|
| 258 | + return null; |
|
| 259 | + } |
|
| 260 | + |
|
| 261 | + |
|
| 262 | + /** |
|
| 263 | + * @param EE_Base_Class $obj |
|
| 264 | + * @return string |
|
| 265 | + */ |
|
| 266 | + public function get_class($obj) |
|
| 267 | + { |
|
| 268 | + return get_class($obj); |
|
| 269 | + } |
|
| 270 | + |
|
| 271 | + |
|
| 272 | + /** |
|
| 273 | + * Overrides parent because parent expects old models. |
|
| 274 | + * This also doesn't do any validation, and won't work for serialized arrays |
|
| 275 | + * |
|
| 276 | + * @param string $field_name |
|
| 277 | + * @param mixed $field_value |
|
| 278 | + * @param bool $use_default |
|
| 279 | + * @throws InvalidArgumentException |
|
| 280 | + * @throws InvalidInterfaceException |
|
| 281 | + * @throws InvalidDataTypeException |
|
| 282 | + * @throws EE_Error |
|
| 283 | + * @throws ReflectionException |
|
| 284 | + * @throws ReflectionException |
|
| 285 | + * @throws ReflectionException |
|
| 286 | + */ |
|
| 287 | + public function set($field_name, $field_value, $use_default = false) |
|
| 288 | + { |
|
| 289 | + // if not using default and nothing has changed, and object has already been setup (has ID), |
|
| 290 | + // then don't do anything |
|
| 291 | + if (! $use_default |
|
| 292 | + && $this->_fields[ $field_name ] === $field_value |
|
| 293 | + && $this->ID() |
|
| 294 | + ) { |
|
| 295 | + return; |
|
| 296 | + } |
|
| 297 | + $model = $this->get_model(); |
|
| 298 | + $this->_has_changes = true; |
|
| 299 | + $field_obj = $model->field_settings_for($field_name); |
|
| 300 | + if ($field_obj instanceof EE_Model_Field_Base) { |
|
| 301 | + // if ( method_exists( $field_obj, 'set_timezone' )) { |
|
| 302 | + if ($field_obj instanceof EE_Datetime_Field) { |
|
| 303 | + $field_obj->set_timezone($this->_timezone); |
|
| 304 | + $field_obj->set_date_format($this->_dt_frmt); |
|
| 305 | + $field_obj->set_time_format($this->_tm_frmt); |
|
| 306 | + } |
|
| 307 | + $holder_of_value = $field_obj->prepare_for_set($field_value); |
|
| 308 | + // should the value be null? |
|
| 309 | + if (($field_value === null || $holder_of_value === null || $holder_of_value === '') && $use_default) { |
|
| 310 | + $this->_fields[ $field_name ] = $field_obj->get_default_value(); |
|
| 311 | + /** |
|
| 312 | + * To save having to refactor all the models, if a default value is used for a |
|
| 313 | + * EE_Datetime_Field, and that value is not null nor is it a DateTime |
|
| 314 | + * object. Then let's do a set again to ensure that it becomes a DateTime |
|
| 315 | + * object. |
|
| 316 | + * |
|
| 317 | + * @since 4.6.10+ |
|
| 318 | + */ |
|
| 319 | + if ($field_obj instanceof EE_Datetime_Field |
|
| 320 | + && $this->_fields[ $field_name ] !== null |
|
| 321 | + && ! $this->_fields[ $field_name ] instanceof DateTime |
|
| 322 | + ) { |
|
| 323 | + empty($this->_fields[ $field_name ]) |
|
| 324 | + ? $this->set($field_name, time()) |
|
| 325 | + : $this->set($field_name, $this->_fields[ $field_name ]); |
|
| 326 | + } |
|
| 327 | + } else { |
|
| 328 | + $this->_fields[ $field_name ] = $holder_of_value; |
|
| 329 | + } |
|
| 330 | + // if we're not in the constructor... |
|
| 331 | + // now check if what we set was a primary key |
|
| 332 | + if (// note: props_n_values_provided_in_constructor is only set at the END of the constructor |
|
| 333 | + $this->_props_n_values_provided_in_constructor |
|
| 334 | + && $field_value |
|
| 335 | + && $field_name === $model->primary_key_name() |
|
| 336 | + ) { |
|
| 337 | + // if so, we want all this object's fields to be filled either with |
|
| 338 | + // what we've explicitly set on this model |
|
| 339 | + // or what we have in the db |
|
| 340 | + // echo "setting primary key!"; |
|
| 341 | + $fields_on_model = self::_get_model(get_class($this))->field_settings(); |
|
| 342 | + $obj_in_db = self::_get_model(get_class($this))->get_one_by_ID($field_value); |
|
| 343 | + foreach ($fields_on_model as $field_obj) { |
|
| 344 | + if (! array_key_exists($field_obj->get_name(), $this->_props_n_values_provided_in_constructor) |
|
| 345 | + && $field_obj->get_name() !== $field_name |
|
| 346 | + ) { |
|
| 347 | + $this->set($field_obj->get_name(), $obj_in_db->get($field_obj->get_name())); |
|
| 348 | + } |
|
| 349 | + } |
|
| 350 | + // oh this model object has an ID? well make sure its in the entity mapper |
|
| 351 | + $model->add_to_entity_map($this); |
|
| 352 | + } |
|
| 353 | + // let's unset any cache for this field_name from the $_cached_properties property. |
|
| 354 | + $this->_clear_cached_property($field_name); |
|
| 355 | + } else { |
|
| 356 | + throw new EE_Error( |
|
| 357 | + sprintf( |
|
| 358 | + esc_html__( |
|
| 359 | + 'A valid EE_Model_Field_Base could not be found for the given field name: %s', |
|
| 360 | + 'event_espresso' |
|
| 361 | + ), |
|
| 362 | + $field_name |
|
| 363 | + ) |
|
| 364 | + ); |
|
| 365 | + } |
|
| 366 | + } |
|
| 367 | + |
|
| 368 | + |
|
| 369 | + /** |
|
| 370 | + * Set custom select values for model. |
|
| 371 | + * |
|
| 372 | + * @param array $custom_select_values |
|
| 373 | + */ |
|
| 374 | + public function setCustomSelectsValues(array $custom_select_values) |
|
| 375 | + { |
|
| 376 | + $this->custom_selection_results = $custom_select_values; |
|
| 377 | + } |
|
| 378 | + |
|
| 379 | + |
|
| 380 | + /** |
|
| 381 | + * Returns the custom select value for the provided alias if its set. |
|
| 382 | + * If not set, returns null. |
|
| 383 | + * |
|
| 384 | + * @param string $alias |
|
| 385 | + * @return string|int|float|null |
|
| 386 | + */ |
|
| 387 | + public function getCustomSelect($alias) |
|
| 388 | + { |
|
| 389 | + return isset($this->custom_selection_results[ $alias ]) |
|
| 390 | + ? $this->custom_selection_results[ $alias ] |
|
| 391 | + : null; |
|
| 392 | + } |
|
| 393 | + |
|
| 394 | + |
|
| 395 | + /** |
|
| 396 | + * This sets the field value on the db column if it exists for the given $column_name or |
|
| 397 | + * saves it to EE_Extra_Meta if the given $column_name does not match a db column. |
|
| 398 | + * |
|
| 399 | + * @see EE_message::get_column_value for related documentation on the necessity of this method. |
|
| 400 | + * @param string $field_name Must be the exact column name. |
|
| 401 | + * @param mixed $field_value The value to set. |
|
| 402 | + * @return int|bool @see EE_Base_Class::update_extra_meta() for return docs. |
|
| 403 | + * @throws InvalidArgumentException |
|
| 404 | + * @throws InvalidInterfaceException |
|
| 405 | + * @throws InvalidDataTypeException |
|
| 406 | + * @throws EE_Error |
|
| 407 | + * @throws ReflectionException |
|
| 408 | + */ |
|
| 409 | + public function set_field_or_extra_meta($field_name, $field_value) |
|
| 410 | + { |
|
| 411 | + if ($this->get_model()->has_field($field_name)) { |
|
| 412 | + $this->set($field_name, $field_value); |
|
| 413 | + return true; |
|
| 414 | + } |
|
| 415 | + // ensure this object is saved first so that extra meta can be properly related. |
|
| 416 | + $this->save(); |
|
| 417 | + return $this->update_extra_meta($field_name, $field_value); |
|
| 418 | + } |
|
| 419 | + |
|
| 420 | + |
|
| 421 | + /** |
|
| 422 | + * This retrieves the value of the db column set on this class or if that's not present |
|
| 423 | + * it will attempt to retrieve from extra_meta if found. |
|
| 424 | + * Example Usage: |
|
| 425 | + * Via EE_Message child class: |
|
| 426 | + * Due to the dynamic nature of the EE_messages system, EE_messengers will always have a "to", |
|
| 427 | + * "from", "subject", and "content" field (as represented in the EE_Message schema), however they may |
|
| 428 | + * also have additional main fields specific to the messenger. The system accommodates those extra |
|
| 429 | + * fields through the EE_Extra_Meta table. This method allows for EE_messengers to retrieve the |
|
| 430 | + * value for those extra fields dynamically via the EE_message object. |
|
| 431 | + * |
|
| 432 | + * @param string $field_name expecting the fully qualified field name. |
|
| 433 | + * @return mixed|null value for the field if found. null if not found. |
|
| 434 | + * @throws ReflectionException |
|
| 435 | + * @throws InvalidArgumentException |
|
| 436 | + * @throws InvalidInterfaceException |
|
| 437 | + * @throws InvalidDataTypeException |
|
| 438 | + * @throws EE_Error |
|
| 439 | + */ |
|
| 440 | + public function get_field_or_extra_meta($field_name) |
|
| 441 | + { |
|
| 442 | + if ($this->get_model()->has_field($field_name)) { |
|
| 443 | + $column_value = $this->get($field_name); |
|
| 444 | + } else { |
|
| 445 | + // This isn't a column in the main table, let's see if it is in the extra meta. |
|
| 446 | + $column_value = $this->get_extra_meta($field_name, true, null); |
|
| 447 | + } |
|
| 448 | + return $column_value; |
|
| 449 | + } |
|
| 450 | + |
|
| 451 | + |
|
| 452 | + /** |
|
| 453 | + * See $_timezone property for description of what the timezone property is for. This SETS the timezone internally |
|
| 454 | + * for being able to reference what timezone we are running conversions on when converting TO the internal timezone |
|
| 455 | + * (UTC Unix Timestamp) for the object OR when converting FROM the internal timezone (UTC Unix Timestamp). This is |
|
| 456 | + * available to all child classes that may be using the EE_Datetime_Field for a field data type. |
|
| 457 | + * |
|
| 458 | + * @access public |
|
| 459 | + * @param string $timezone A valid timezone string as described by @link http://www.php.net/manual/en/timezones.php |
|
| 460 | + * @return void |
|
| 461 | + * @throws InvalidArgumentException |
|
| 462 | + * @throws InvalidInterfaceException |
|
| 463 | + * @throws InvalidDataTypeException |
|
| 464 | + * @throws EE_Error |
|
| 465 | + * @throws ReflectionException |
|
| 466 | + */ |
|
| 467 | + public function set_timezone($timezone = '') |
|
| 468 | + { |
|
| 469 | + $this->_timezone = EEH_DTT_Helper::get_valid_timezone_string($timezone); |
|
| 470 | + // make sure we clear all cached properties because they won't be relevant now |
|
| 471 | + $this->_clear_cached_properties(); |
|
| 472 | + // make sure we update field settings and the date for all EE_Datetime_Fields |
|
| 473 | + $model_fields = $this->get_model()->field_settings(false); |
|
| 474 | + foreach ($model_fields as $field_name => $field_obj) { |
|
| 475 | + if ($field_obj instanceof EE_Datetime_Field) { |
|
| 476 | + $field_obj->set_timezone($this->_timezone); |
|
| 477 | + if (isset($this->_fields[ $field_name ]) && $this->_fields[ $field_name ] instanceof DateTime) { |
|
| 478 | + EEH_DTT_Helper::setTimezone($this->_fields[ $field_name ], new DateTimeZone($this->_timezone)); |
|
| 479 | + } |
|
| 480 | + } |
|
| 481 | + } |
|
| 482 | + } |
|
| 483 | + |
|
| 484 | + |
|
| 485 | + /** |
|
| 486 | + * This just returns whatever is set for the current timezone. |
|
| 487 | + * |
|
| 488 | + * @access public |
|
| 489 | + * @return string timezone string |
|
| 490 | + */ |
|
| 491 | + public function get_timezone() |
|
| 492 | + { |
|
| 493 | + return $this->_timezone; |
|
| 494 | + } |
|
| 495 | + |
|
| 496 | + |
|
| 497 | + /** |
|
| 498 | + * This sets the internal date format to what is sent in to be used as the new default for the class |
|
| 499 | + * internally instead of wp set date format options |
|
| 500 | + * |
|
| 501 | + * @since 4.6 |
|
| 502 | + * @param string $format should be a format recognizable by PHP date() functions. |
|
| 503 | + */ |
|
| 504 | + public function set_date_format($format) |
|
| 505 | + { |
|
| 506 | + $this->_dt_frmt = $format; |
|
| 507 | + // clear cached_properties because they won't be relevant now. |
|
| 508 | + $this->_clear_cached_properties(); |
|
| 509 | + } |
|
| 510 | + |
|
| 511 | + |
|
| 512 | + /** |
|
| 513 | + * This sets the internal time format string to what is sent in to be used as the new default for the |
|
| 514 | + * class internally instead of wp set time format options. |
|
| 515 | + * |
|
| 516 | + * @since 4.6 |
|
| 517 | + * @param string $format should be a format recognizable by PHP date() functions. |
|
| 518 | + */ |
|
| 519 | + public function set_time_format($format) |
|
| 520 | + { |
|
| 521 | + $this->_tm_frmt = $format; |
|
| 522 | + // clear cached_properties because they won't be relevant now. |
|
| 523 | + $this->_clear_cached_properties(); |
|
| 524 | + } |
|
| 525 | + |
|
| 526 | + |
|
| 527 | + /** |
|
| 528 | + * This returns the current internal set format for the date and time formats. |
|
| 529 | + * |
|
| 530 | + * @param bool $full if true (default), then return the full format. Otherwise will return an array |
|
| 531 | + * where the first value is the date format and the second value is the time format. |
|
| 532 | + * @return mixed string|array |
|
| 533 | + */ |
|
| 534 | + public function get_format($full = true) |
|
| 535 | + { |
|
| 536 | + return $full ? $this->_dt_frmt . ' ' . $this->_tm_frmt : array($this->_dt_frmt, $this->_tm_frmt); |
|
| 537 | + } |
|
| 538 | + |
|
| 539 | + |
|
| 540 | + /** |
|
| 541 | + * cache |
|
| 542 | + * stores the passed model object on the current model object. |
|
| 543 | + * In certain circumstances, we can use this cached model object instead of querying for another one entirely. |
|
| 544 | + * |
|
| 545 | + * @param string $relationName one of the keys in the _model_relations array on the model. Eg |
|
| 546 | + * 'Registration' associated with this model object |
|
| 547 | + * @param EE_Base_Class $object_to_cache that has a relation to this model object. (Eg, if this is a Transaction, |
|
| 548 | + * that could be a payment or a registration) |
|
| 549 | + * @param null $cache_id a string or number that will be used as the key for any Belongs_To_Many |
|
| 550 | + * items which will be stored in an array on this object |
|
| 551 | + * @throws ReflectionException |
|
| 552 | + * @throws InvalidArgumentException |
|
| 553 | + * @throws InvalidInterfaceException |
|
| 554 | + * @throws InvalidDataTypeException |
|
| 555 | + * @throws EE_Error |
|
| 556 | + * @return mixed index into cache, or just TRUE if the relation is of type Belongs_To (because there's only one |
|
| 557 | + * related thing, no array) |
|
| 558 | + */ |
|
| 559 | + public function cache($relationName = '', $object_to_cache = null, $cache_id = null) |
|
| 560 | + { |
|
| 561 | + // its entirely possible that there IS no related object yet in which case there is nothing to cache. |
|
| 562 | + if (! $object_to_cache instanceof EE_Base_Class) { |
|
| 563 | + return false; |
|
| 564 | + } |
|
| 565 | + // also get "how" the object is related, or throw an error |
|
| 566 | + if (! $relationship_to_model = $this->get_model()->related_settings_for($relationName)) { |
|
| 567 | + throw new EE_Error( |
|
| 568 | + sprintf( |
|
| 569 | + esc_html__('There is no relationship to %s on a %s. Cannot cache it', 'event_espresso'), |
|
| 570 | + $relationName, |
|
| 571 | + get_class($this) |
|
| 572 | + ) |
|
| 573 | + ); |
|
| 574 | + } |
|
| 575 | + // how many things are related ? |
|
| 576 | + if ($relationship_to_model instanceof EE_Belongs_To_Relation) { |
|
| 577 | + // if it's a "belongs to" relationship, then there's only one related model object |
|
| 578 | + // eg, if this is a registration, there's only 1 attendee for it |
|
| 579 | + // so for these model objects just set it to be cached |
|
| 580 | + $this->_model_relations[ $relationName ] = $object_to_cache; |
|
| 581 | + $return = true; |
|
| 582 | + } else { |
|
| 583 | + // otherwise, this is the "many" side of a one to many relationship, |
|
| 584 | + // so we'll add the object to the array of related objects for that type. |
|
| 585 | + // eg: if this is an event, there are many registrations for that event, |
|
| 586 | + // so we cache the registrations in an array |
|
| 587 | + if (! is_array($this->_model_relations[ $relationName ])) { |
|
| 588 | + // if for some reason, the cached item is a model object, |
|
| 589 | + // then stick that in the array, otherwise start with an empty array |
|
| 590 | + $this->_model_relations[ $relationName ] = $this->_model_relations[ $relationName ] |
|
| 591 | + instanceof |
|
| 592 | + EE_Base_Class |
|
| 593 | + ? array($this->_model_relations[ $relationName ]) : array(); |
|
| 594 | + } |
|
| 595 | + // first check for a cache_id which is normally empty |
|
| 596 | + if (! empty($cache_id)) { |
|
| 597 | + // if the cache_id exists, then it means we are purposely trying to cache this |
|
| 598 | + // with a known key that can then be used to retrieve the object later on |
|
| 599 | + $this->_model_relations[ $relationName ][ $cache_id ] = $object_to_cache; |
|
| 600 | + $return = $cache_id; |
|
| 601 | + } elseif ($object_to_cache->ID()) { |
|
| 602 | + // OR the cached object originally came from the db, so let's just use it's PK for an ID |
|
| 603 | + $this->_model_relations[ $relationName ][ $object_to_cache->ID() ] = $object_to_cache; |
|
| 604 | + $return = $object_to_cache->ID(); |
|
| 605 | + } else { |
|
| 606 | + // OR it's a new object with no ID, so just throw it in the array with an auto-incremented ID |
|
| 607 | + $this->_model_relations[ $relationName ][] = $object_to_cache; |
|
| 608 | + // move the internal pointer to the end of the array |
|
| 609 | + end($this->_model_relations[ $relationName ]); |
|
| 610 | + // and grab the key so that we can return it |
|
| 611 | + $return = key($this->_model_relations[ $relationName ]); |
|
| 612 | + } |
|
| 613 | + } |
|
| 614 | + return $return; |
|
| 615 | + } |
|
| 616 | + |
|
| 617 | + |
|
| 618 | + /** |
|
| 619 | + * For adding an item to the cached_properties property. |
|
| 620 | + * |
|
| 621 | + * @access protected |
|
| 622 | + * @param string $fieldname the property item the corresponding value is for. |
|
| 623 | + * @param mixed $value The value we are caching. |
|
| 624 | + * @param string|null $cache_type |
|
| 625 | + * @return void |
|
| 626 | + * @throws ReflectionException |
|
| 627 | + * @throws InvalidArgumentException |
|
| 628 | + * @throws InvalidInterfaceException |
|
| 629 | + * @throws InvalidDataTypeException |
|
| 630 | + * @throws EE_Error |
|
| 631 | + */ |
|
| 632 | + protected function _set_cached_property($fieldname, $value, $cache_type = null) |
|
| 633 | + { |
|
| 634 | + // first make sure this property exists |
|
| 635 | + $this->get_model()->field_settings_for($fieldname); |
|
| 636 | + $cache_type = empty($cache_type) ? 'standard' : $cache_type; |
|
| 637 | + $this->_cached_properties[ $fieldname ][ $cache_type ] = $value; |
|
| 638 | + } |
|
| 639 | + |
|
| 640 | + |
|
| 641 | + /** |
|
| 642 | + * This returns the value cached property if it exists OR the actual property value if the cache doesn't exist. |
|
| 643 | + * This also SETS the cache if we return the actual property! |
|
| 644 | + * |
|
| 645 | + * @param string $fieldname the name of the property we're trying to retrieve |
|
| 646 | + * @param bool $pretty |
|
| 647 | + * @param string $extra_cache_ref This allows the user to specify an extra cache ref for the given property |
|
| 648 | + * (in cases where the same property may be used for different outputs |
|
| 649 | + * - i.e. datetime, money etc.) |
|
| 650 | + * It can also accept certain pre-defined "schema" strings |
|
| 651 | + * to define how to output the property. |
|
| 652 | + * see the field's prepare_for_pretty_echoing for what strings can be used |
|
| 653 | + * @return mixed whatever the value for the property is we're retrieving |
|
| 654 | + * @throws ReflectionException |
|
| 655 | + * @throws InvalidArgumentException |
|
| 656 | + * @throws InvalidInterfaceException |
|
| 657 | + * @throws InvalidDataTypeException |
|
| 658 | + * @throws EE_Error |
|
| 659 | + */ |
|
| 660 | + protected function _get_cached_property($fieldname, $pretty = false, $extra_cache_ref = null) |
|
| 661 | + { |
|
| 662 | + // verify the field exists |
|
| 663 | + $model = $this->get_model(); |
|
| 664 | + $model->field_settings_for($fieldname); |
|
| 665 | + $cache_type = $pretty ? 'pretty' : 'standard'; |
|
| 666 | + $cache_type .= ! empty($extra_cache_ref) ? '_' . $extra_cache_ref : ''; |
|
| 667 | + if (isset($this->_cached_properties[ $fieldname ][ $cache_type ])) { |
|
| 668 | + return $this->_cached_properties[ $fieldname ][ $cache_type ]; |
|
| 669 | + } |
|
| 670 | + $value = $this->_get_fresh_property($fieldname, $pretty, $extra_cache_ref); |
|
| 671 | + $this->_set_cached_property($fieldname, $value, $cache_type); |
|
| 672 | + return $value; |
|
| 673 | + } |
|
| 674 | + |
|
| 675 | + |
|
| 676 | + /** |
|
| 677 | + * If the cache didn't fetch the needed item, this fetches it. |
|
| 678 | + * |
|
| 679 | + * @param string $fieldname |
|
| 680 | + * @param bool $pretty |
|
| 681 | + * @param string $extra_cache_ref |
|
| 682 | + * @return mixed |
|
| 683 | + * @throws InvalidArgumentException |
|
| 684 | + * @throws InvalidInterfaceException |
|
| 685 | + * @throws InvalidDataTypeException |
|
| 686 | + * @throws EE_Error |
|
| 687 | + * @throws ReflectionException |
|
| 688 | + */ |
|
| 689 | + protected function _get_fresh_property($fieldname, $pretty = false, $extra_cache_ref = null) |
|
| 690 | + { |
|
| 691 | + $field_obj = $this->get_model()->field_settings_for($fieldname); |
|
| 692 | + // If this is an EE_Datetime_Field we need to make sure timezone, formats, and output are correct |
|
| 693 | + if ($field_obj instanceof EE_Datetime_Field) { |
|
| 694 | + $this->_prepare_datetime_field($field_obj, $pretty, $extra_cache_ref); |
|
| 695 | + } |
|
| 696 | + if (! isset($this->_fields[ $fieldname ])) { |
|
| 697 | + $this->_fields[ $fieldname ] = null; |
|
| 698 | + } |
|
| 699 | + $value = $pretty |
|
| 700 | + ? $field_obj->prepare_for_pretty_echoing($this->_fields[ $fieldname ], $extra_cache_ref) |
|
| 701 | + : $field_obj->prepare_for_get($this->_fields[ $fieldname ]); |
|
| 702 | + return $value; |
|
| 703 | + } |
|
| 704 | + |
|
| 705 | + |
|
| 706 | + /** |
|
| 707 | + * set timezone, formats, and output for EE_Datetime_Field objects |
|
| 708 | + * |
|
| 709 | + * @param \EE_Datetime_Field $datetime_field |
|
| 710 | + * @param bool $pretty |
|
| 711 | + * @param null $date_or_time |
|
| 712 | + * @return void |
|
| 713 | + * @throws InvalidArgumentException |
|
| 714 | + * @throws InvalidInterfaceException |
|
| 715 | + * @throws InvalidDataTypeException |
|
| 716 | + * @throws EE_Error |
|
| 717 | + */ |
|
| 718 | + protected function _prepare_datetime_field( |
|
| 719 | + EE_Datetime_Field $datetime_field, |
|
| 720 | + $pretty = false, |
|
| 721 | + $date_or_time = null |
|
| 722 | + ) { |
|
| 723 | + $datetime_field->set_timezone($this->_timezone); |
|
| 724 | + $datetime_field->set_date_format($this->_dt_frmt, $pretty); |
|
| 725 | + $datetime_field->set_time_format($this->_tm_frmt, $pretty); |
|
| 726 | + // set the output returned |
|
| 727 | + switch ($date_or_time) { |
|
| 728 | + case 'D': |
|
| 729 | + $datetime_field->set_date_time_output('date'); |
|
| 730 | + break; |
|
| 731 | + case 'T': |
|
| 732 | + $datetime_field->set_date_time_output('time'); |
|
| 733 | + break; |
|
| 734 | + default: |
|
| 735 | + $datetime_field->set_date_time_output(); |
|
| 736 | + } |
|
| 737 | + } |
|
| 738 | + |
|
| 739 | + |
|
| 740 | + /** |
|
| 741 | + * This just takes care of clearing out the cached_properties |
|
| 742 | + * |
|
| 743 | + * @return void |
|
| 744 | + */ |
|
| 745 | + protected function _clear_cached_properties() |
|
| 746 | + { |
|
| 747 | + $this->_cached_properties = array(); |
|
| 748 | + } |
|
| 749 | + |
|
| 750 | + |
|
| 751 | + /** |
|
| 752 | + * This just clears out ONE property if it exists in the cache |
|
| 753 | + * |
|
| 754 | + * @param string $property_name the property to remove if it exists (from the _cached_properties array) |
|
| 755 | + * @return void |
|
| 756 | + */ |
|
| 757 | + protected function _clear_cached_property($property_name) |
|
| 758 | + { |
|
| 759 | + if (isset($this->_cached_properties[ $property_name ])) { |
|
| 760 | + unset($this->_cached_properties[ $property_name ]); |
|
| 761 | + } |
|
| 762 | + } |
|
| 763 | + |
|
| 764 | + |
|
| 765 | + /** |
|
| 766 | + * Ensures that this related thing is a model object. |
|
| 767 | + * |
|
| 768 | + * @param mixed $object_or_id EE_base_Class/int/string either a related model object, or its ID |
|
| 769 | + * @param string $model_name name of the related thing, eg 'Attendee', |
|
| 770 | + * @return EE_Base_Class |
|
| 771 | + * @throws ReflectionException |
|
| 772 | + * @throws InvalidArgumentException |
|
| 773 | + * @throws InvalidInterfaceException |
|
| 774 | + * @throws InvalidDataTypeException |
|
| 775 | + * @throws EE_Error |
|
| 776 | + */ |
|
| 777 | + protected function ensure_related_thing_is_model_obj($object_or_id, $model_name) |
|
| 778 | + { |
|
| 779 | + $other_model_instance = self::_get_model_instance_with_name( |
|
| 780 | + self::_get_model_classname($model_name), |
|
| 781 | + $this->_timezone |
|
| 782 | + ); |
|
| 783 | + return $other_model_instance->ensure_is_obj($object_or_id); |
|
| 784 | + } |
|
| 785 | + |
|
| 786 | + |
|
| 787 | + /** |
|
| 788 | + * Forgets the cached model of the given relation Name. So the next time we request it, |
|
| 789 | + * we will fetch it again from the database. (Handy if you know it's changed somehow). |
|
| 790 | + * If a specific object is supplied, and the relationship to it is either a HasMany or HABTM, |
|
| 791 | + * then only remove that one object from our cached array. Otherwise, clear the entire list |
|
| 792 | + * |
|
| 793 | + * @param string $relationName one of the keys in the _model_relations array on the model. |
|
| 794 | + * Eg 'Registration' |
|
| 795 | + * @param mixed $object_to_remove_or_index_into_array or an index into the array of cached things, or NULL |
|
| 796 | + * if you intend to use $clear_all = TRUE, or the relation only |
|
| 797 | + * has 1 object anyways (ie, it's a BelongsToRelation) |
|
| 798 | + * @param bool $clear_all This flags clearing the entire cache relation property if |
|
| 799 | + * this is HasMany or HABTM. |
|
| 800 | + * @throws ReflectionException |
|
| 801 | + * @throws InvalidArgumentException |
|
| 802 | + * @throws InvalidInterfaceException |
|
| 803 | + * @throws InvalidDataTypeException |
|
| 804 | + * @throws EE_Error |
|
| 805 | + * @return EE_Base_Class | boolean from which was cleared from the cache, or true if we requested to remove a |
|
| 806 | + * relation from all |
|
| 807 | + */ |
|
| 808 | + public function clear_cache($relationName, $object_to_remove_or_index_into_array = null, $clear_all = false) |
|
| 809 | + { |
|
| 810 | + $relationship_to_model = $this->get_model()->related_settings_for($relationName); |
|
| 811 | + $index_in_cache = ''; |
|
| 812 | + if (! $relationship_to_model) { |
|
| 813 | + throw new EE_Error( |
|
| 814 | + sprintf( |
|
| 815 | + esc_html__('There is no relationship to %s on a %s. Cannot clear that cache', 'event_espresso'), |
|
| 816 | + $relationName, |
|
| 817 | + get_class($this) |
|
| 818 | + ) |
|
| 819 | + ); |
|
| 820 | + } |
|
| 821 | + if ($clear_all) { |
|
| 822 | + $obj_removed = true; |
|
| 823 | + $this->_model_relations[ $relationName ] = null; |
|
| 824 | + } elseif ($relationship_to_model instanceof EE_Belongs_To_Relation) { |
|
| 825 | + $obj_removed = $this->_model_relations[ $relationName ]; |
|
| 826 | + $this->_model_relations[ $relationName ] = null; |
|
| 827 | + } else { |
|
| 828 | + if ($object_to_remove_or_index_into_array instanceof EE_Base_Class |
|
| 829 | + && $object_to_remove_or_index_into_array->ID() |
|
| 830 | + ) { |
|
| 831 | + $index_in_cache = $object_to_remove_or_index_into_array->ID(); |
|
| 832 | + if (is_array($this->_model_relations[ $relationName ]) |
|
| 833 | + && ! isset($this->_model_relations[ $relationName ][ $index_in_cache ]) |
|
| 834 | + ) { |
|
| 835 | + $index_found_at = null; |
|
| 836 | + // find this object in the array even though it has a different key |
|
| 837 | + foreach ($this->_model_relations[ $relationName ] as $index => $obj) { |
|
| 838 | + /** @noinspection TypeUnsafeComparisonInspection */ |
|
| 839 | + if ($obj instanceof EE_Base_Class |
|
| 840 | + && ( |
|
| 841 | + $obj == $object_to_remove_or_index_into_array |
|
| 842 | + || $obj->ID() === $object_to_remove_or_index_into_array->ID() |
|
| 843 | + ) |
|
| 844 | + ) { |
|
| 845 | + $index_found_at = $index; |
|
| 846 | + break; |
|
| 847 | + } |
|
| 848 | + } |
|
| 849 | + if ($index_found_at) { |
|
| 850 | + $index_in_cache = $index_found_at; |
|
| 851 | + } else { |
|
| 852 | + // it wasn't found. huh. well obviously it doesn't need to be removed from teh cache |
|
| 853 | + // if it wasn't in it to begin with. So we're done |
|
| 854 | + return $object_to_remove_or_index_into_array; |
|
| 855 | + } |
|
| 856 | + } |
|
| 857 | + } elseif ($object_to_remove_or_index_into_array instanceof EE_Base_Class) { |
|
| 858 | + // so they provided a model object, but it's not yet saved to the DB... so let's go hunting for it! |
|
| 859 | + foreach ($this->get_all_from_cache($relationName) as $index => $potentially_obj_we_want) { |
|
| 860 | + /** @noinspection TypeUnsafeComparisonInspection */ |
|
| 861 | + if ($potentially_obj_we_want == $object_to_remove_or_index_into_array) { |
|
| 862 | + $index_in_cache = $index; |
|
| 863 | + } |
|
| 864 | + } |
|
| 865 | + } else { |
|
| 866 | + $index_in_cache = $object_to_remove_or_index_into_array; |
|
| 867 | + } |
|
| 868 | + // supposedly we've found it. But it could just be that the client code |
|
| 869 | + // provided a bad index/object |
|
| 870 | + if (isset($this->_model_relations[ $relationName ][ $index_in_cache ])) { |
|
| 871 | + $obj_removed = $this->_model_relations[ $relationName ][ $index_in_cache ]; |
|
| 872 | + unset($this->_model_relations[ $relationName ][ $index_in_cache ]); |
|
| 873 | + } else { |
|
| 874 | + // that thing was never cached anyways. |
|
| 875 | + $obj_removed = null; |
|
| 876 | + } |
|
| 877 | + } |
|
| 878 | + return $obj_removed; |
|
| 879 | + } |
|
| 880 | + |
|
| 881 | + |
|
| 882 | + /** |
|
| 883 | + * update_cache_after_object_save |
|
| 884 | + * Allows a cached item to have it's cache ID (within the array of cached items) reset using the new ID it has |
|
| 885 | + * obtained after being saved to the db |
|
| 886 | + * |
|
| 887 | + * @param string $relationName - the type of object that is cached |
|
| 888 | + * @param EE_Base_Class $newly_saved_object - the newly saved object to be re-cached |
|
| 889 | + * @param string $current_cache_id - the ID that was used when originally caching the object |
|
| 890 | + * @return boolean TRUE on success, FALSE on fail |
|
| 891 | + * @throws ReflectionException |
|
| 892 | + * @throws InvalidArgumentException |
|
| 893 | + * @throws InvalidInterfaceException |
|
| 894 | + * @throws InvalidDataTypeException |
|
| 895 | + * @throws EE_Error |
|
| 896 | + */ |
|
| 897 | + public function update_cache_after_object_save( |
|
| 898 | + $relationName, |
|
| 899 | + EE_Base_Class $newly_saved_object, |
|
| 900 | + $current_cache_id = '' |
|
| 901 | + ) { |
|
| 902 | + // verify that incoming object is of the correct type |
|
| 903 | + $obj_class = 'EE_' . $relationName; |
|
| 904 | + if ($newly_saved_object instanceof $obj_class) { |
|
| 905 | + /* @type EE_Base_Class $newly_saved_object */ |
|
| 906 | + // now get the type of relation |
|
| 907 | + $relationship_to_model = $this->get_model()->related_settings_for($relationName); |
|
| 908 | + // if this is a 1:1 relationship |
|
| 909 | + if ($relationship_to_model instanceof EE_Belongs_To_Relation) { |
|
| 910 | + // then just replace the cached object with the newly saved object |
|
| 911 | + $this->_model_relations[ $relationName ] = $newly_saved_object; |
|
| 912 | + return true; |
|
| 913 | + // or if it's some kind of sordid feral polyamorous relationship... |
|
| 914 | + } |
|
| 915 | + if (is_array($this->_model_relations[ $relationName ]) |
|
| 916 | + && isset($this->_model_relations[ $relationName ][ $current_cache_id ]) |
|
| 917 | + ) { |
|
| 918 | + // then remove the current cached item |
|
| 919 | + unset($this->_model_relations[ $relationName ][ $current_cache_id ]); |
|
| 920 | + // and cache the newly saved object using it's new ID |
|
| 921 | + $this->_model_relations[ $relationName ][ $newly_saved_object->ID() ] = $newly_saved_object; |
|
| 922 | + return true; |
|
| 923 | + } |
|
| 924 | + } |
|
| 925 | + return false; |
|
| 926 | + } |
|
| 927 | + |
|
| 928 | + |
|
| 929 | + /** |
|
| 930 | + * Fetches a single EE_Base_Class on that relation. (If the relation is of type |
|
| 931 | + * BelongsTo, it will only ever have 1 object. However, other relations could have an array of objects) |
|
| 932 | + * |
|
| 933 | + * @param string $relationName |
|
| 934 | + * @return EE_Base_Class |
|
| 935 | + */ |
|
| 936 | + public function get_one_from_cache($relationName) |
|
| 937 | + { |
|
| 938 | + $cached_array_or_object = isset($this->_model_relations[ $relationName ]) |
|
| 939 | + ? $this->_model_relations[ $relationName ] |
|
| 940 | + : null; |
|
| 941 | + if (is_array($cached_array_or_object)) { |
|
| 942 | + return array_shift($cached_array_or_object); |
|
| 943 | + } |
|
| 944 | + return $cached_array_or_object; |
|
| 945 | + } |
|
| 946 | + |
|
| 947 | + |
|
| 948 | + /** |
|
| 949 | + * Fetches a single EE_Base_Class on that relation. (If the relation is of type |
|
| 950 | + * BelongsTo, it will only ever have 1 object. However, other relations could have an array of objects) |
|
| 951 | + * |
|
| 952 | + * @param string $relationName |
|
| 953 | + * @throws ReflectionException |
|
| 954 | + * @throws InvalidArgumentException |
|
| 955 | + * @throws InvalidInterfaceException |
|
| 956 | + * @throws InvalidDataTypeException |
|
| 957 | + * @throws EE_Error |
|
| 958 | + * @return EE_Base_Class[] NOT necessarily indexed by primary keys |
|
| 959 | + */ |
|
| 960 | + public function get_all_from_cache($relationName) |
|
| 961 | + { |
|
| 962 | + $objects = isset($this->_model_relations[ $relationName ]) ? $this->_model_relations[ $relationName ] : array(); |
|
| 963 | + // if the result is not an array, but exists, make it an array |
|
| 964 | + $objects = is_array($objects) ? $objects : array($objects); |
|
| 965 | + // bugfix for https://events.codebasehq.com/projects/event-espresso/tickets/7143 |
|
| 966 | + // basically, if this model object was stored in the session, and these cached model objects |
|
| 967 | + // already have IDs, let's make sure they're in their model's entity mapper |
|
| 968 | + // otherwise we will have duplicates next time we call |
|
| 969 | + // EE_Registry::instance()->load_model( $relationName )->get_one_by_ID( $result->ID() ); |
|
| 970 | + $model = EE_Registry::instance()->load_model($relationName); |
|
| 971 | + foreach ($objects as $model_object) { |
|
| 972 | + if ($model instanceof EEM_Base && $model_object instanceof EE_Base_Class) { |
|
| 973 | + // ensure its in the map if it has an ID; otherwise it will be added to the map when its saved |
|
| 974 | + if ($model_object->ID()) { |
|
| 975 | + $model->add_to_entity_map($model_object); |
|
| 976 | + } |
|
| 977 | + } else { |
|
| 978 | + throw new EE_Error( |
|
| 979 | + sprintf( |
|
| 980 | + esc_html__( |
|
| 981 | + 'Error retrieving related model objects. Either $1%s is not a model or $2%s is not a model object', |
|
| 982 | + 'event_espresso' |
|
| 983 | + ), |
|
| 984 | + $relationName, |
|
| 985 | + gettype($model_object) |
|
| 986 | + ) |
|
| 987 | + ); |
|
| 988 | + } |
|
| 989 | + } |
|
| 990 | + return $objects; |
|
| 991 | + } |
|
| 992 | + |
|
| 993 | + |
|
| 994 | + /** |
|
| 995 | + * Returns the next x number of EE_Base_Class objects in sequence from this object as found in the database |
|
| 996 | + * matching the given query conditions. |
|
| 997 | + * |
|
| 998 | + * @param null $field_to_order_by What field is being used as the reference point. |
|
| 999 | + * @param int $limit How many objects to return. |
|
| 1000 | + * @param array $query_params Any additional conditions on the query. |
|
| 1001 | + * @param null $columns_to_select If left null, then an array of EE_Base_Class objects is returned, otherwise |
|
| 1002 | + * you can indicate just the columns you want returned |
|
| 1003 | + * @return array|EE_Base_Class[] |
|
| 1004 | + * @throws ReflectionException |
|
| 1005 | + * @throws InvalidArgumentException |
|
| 1006 | + * @throws InvalidInterfaceException |
|
| 1007 | + * @throws InvalidDataTypeException |
|
| 1008 | + * @throws EE_Error |
|
| 1009 | + */ |
|
| 1010 | + public function next_x($field_to_order_by = null, $limit = 1, $query_params = array(), $columns_to_select = null) |
|
| 1011 | + { |
|
| 1012 | + $model = $this->get_model(); |
|
| 1013 | + $field = empty($field_to_order_by) && $model->has_primary_key_field() |
|
| 1014 | + ? $model->get_primary_key_field()->get_name() |
|
| 1015 | + : $field_to_order_by; |
|
| 1016 | + $current_value = ! empty($field) ? $this->get($field) : null; |
|
| 1017 | + if (empty($field) || empty($current_value)) { |
|
| 1018 | + return array(); |
|
| 1019 | + } |
|
| 1020 | + return $model->next_x($current_value, $field, $limit, $query_params, $columns_to_select); |
|
| 1021 | + } |
|
| 1022 | + |
|
| 1023 | + |
|
| 1024 | + /** |
|
| 1025 | + * Returns the previous x number of EE_Base_Class objects in sequence from this object as found in the database |
|
| 1026 | + * matching the given query conditions. |
|
| 1027 | + * |
|
| 1028 | + * @param null $field_to_order_by What field is being used as the reference point. |
|
| 1029 | + * @param int $limit How many objects to return. |
|
| 1030 | + * @param array $query_params Any additional conditions on the query. |
|
| 1031 | + * @param null $columns_to_select If left null, then an array of EE_Base_Class objects is returned, otherwise |
|
| 1032 | + * you can indicate just the columns you want returned |
|
| 1033 | + * @return array|EE_Base_Class[] |
|
| 1034 | + * @throws ReflectionException |
|
| 1035 | + * @throws InvalidArgumentException |
|
| 1036 | + * @throws InvalidInterfaceException |
|
| 1037 | + * @throws InvalidDataTypeException |
|
| 1038 | + * @throws EE_Error |
|
| 1039 | + */ |
|
| 1040 | + public function previous_x( |
|
| 1041 | + $field_to_order_by = null, |
|
| 1042 | + $limit = 1, |
|
| 1043 | + $query_params = array(), |
|
| 1044 | + $columns_to_select = null |
|
| 1045 | + ) { |
|
| 1046 | + $model = $this->get_model(); |
|
| 1047 | + $field = empty($field_to_order_by) && $model->has_primary_key_field() |
|
| 1048 | + ? $model->get_primary_key_field()->get_name() |
|
| 1049 | + : $field_to_order_by; |
|
| 1050 | + $current_value = ! empty($field) ? $this->get($field) : null; |
|
| 1051 | + if (empty($field) || empty($current_value)) { |
|
| 1052 | + return array(); |
|
| 1053 | + } |
|
| 1054 | + return $model->previous_x($current_value, $field, $limit, $query_params, $columns_to_select); |
|
| 1055 | + } |
|
| 1056 | + |
|
| 1057 | + |
|
| 1058 | + /** |
|
| 1059 | + * Returns the next EE_Base_Class object in sequence from this object as found in the database |
|
| 1060 | + * matching the given query conditions. |
|
| 1061 | + * |
|
| 1062 | + * @param null $field_to_order_by What field is being used as the reference point. |
|
| 1063 | + * @param array $query_params Any additional conditions on the query. |
|
| 1064 | + * @param null $columns_to_select If left null, then an array of EE_Base_Class objects is returned, otherwise |
|
| 1065 | + * you can indicate just the columns you want returned |
|
| 1066 | + * @return array|EE_Base_Class |
|
| 1067 | + * @throws ReflectionException |
|
| 1068 | + * @throws InvalidArgumentException |
|
| 1069 | + * @throws InvalidInterfaceException |
|
| 1070 | + * @throws InvalidDataTypeException |
|
| 1071 | + * @throws EE_Error |
|
| 1072 | + */ |
|
| 1073 | + public function next($field_to_order_by = null, $query_params = array(), $columns_to_select = null) |
|
| 1074 | + { |
|
| 1075 | + $model = $this->get_model(); |
|
| 1076 | + $field = empty($field_to_order_by) && $model->has_primary_key_field() |
|
| 1077 | + ? $model->get_primary_key_field()->get_name() |
|
| 1078 | + : $field_to_order_by; |
|
| 1079 | + $current_value = ! empty($field) ? $this->get($field) : null; |
|
| 1080 | + if (empty($field) || empty($current_value)) { |
|
| 1081 | + return array(); |
|
| 1082 | + } |
|
| 1083 | + return $model->next($current_value, $field, $query_params, $columns_to_select); |
|
| 1084 | + } |
|
| 1085 | + |
|
| 1086 | + |
|
| 1087 | + /** |
|
| 1088 | + * Returns the previous EE_Base_Class object in sequence from this object as found in the database |
|
| 1089 | + * matching the given query conditions. |
|
| 1090 | + * |
|
| 1091 | + * @param null $field_to_order_by What field is being used as the reference point. |
|
| 1092 | + * @param array $query_params Any additional conditions on the query. |
|
| 1093 | + * @param null $columns_to_select If left null, then an EE_Base_Class object is returned, otherwise |
|
| 1094 | + * you can indicate just the column you want returned |
|
| 1095 | + * @return array|EE_Base_Class |
|
| 1096 | + * @throws ReflectionException |
|
| 1097 | + * @throws InvalidArgumentException |
|
| 1098 | + * @throws InvalidInterfaceException |
|
| 1099 | + * @throws InvalidDataTypeException |
|
| 1100 | + * @throws EE_Error |
|
| 1101 | + */ |
|
| 1102 | + public function previous($field_to_order_by = null, $query_params = array(), $columns_to_select = null) |
|
| 1103 | + { |
|
| 1104 | + $model = $this->get_model(); |
|
| 1105 | + $field = empty($field_to_order_by) && $model->has_primary_key_field() |
|
| 1106 | + ? $model->get_primary_key_field()->get_name() |
|
| 1107 | + : $field_to_order_by; |
|
| 1108 | + $current_value = ! empty($field) ? $this->get($field) : null; |
|
| 1109 | + if (empty($field) || empty($current_value)) { |
|
| 1110 | + return array(); |
|
| 1111 | + } |
|
| 1112 | + return $model->previous($current_value, $field, $query_params, $columns_to_select); |
|
| 1113 | + } |
|
| 1114 | + |
|
| 1115 | + |
|
| 1116 | + /** |
|
| 1117 | + * Overrides parent because parent expects old models. |
|
| 1118 | + * This also doesn't do any validation, and won't work for serialized arrays |
|
| 1119 | + * |
|
| 1120 | + * @param string $field_name |
|
| 1121 | + * @param mixed $field_value_from_db |
|
| 1122 | + * @throws ReflectionException |
|
| 1123 | + * @throws InvalidArgumentException |
|
| 1124 | + * @throws InvalidInterfaceException |
|
| 1125 | + * @throws InvalidDataTypeException |
|
| 1126 | + * @throws EE_Error |
|
| 1127 | + */ |
|
| 1128 | + public function set_from_db($field_name, $field_value_from_db) |
|
| 1129 | + { |
|
| 1130 | + $field_obj = $this->get_model()->field_settings_for($field_name); |
|
| 1131 | + if ($field_obj instanceof EE_Model_Field_Base) { |
|
| 1132 | + // you would think the DB has no NULLs for non-null label fields right? wrong! |
|
| 1133 | + // eg, a CPT model object could have an entry in the posts table, but no |
|
| 1134 | + // entry in the meta table. Meaning that all its columns in the meta table |
|
| 1135 | + // are null! yikes! so when we find one like that, use defaults for its meta columns |
|
| 1136 | + if ($field_value_from_db === null) { |
|
| 1137 | + if ($field_obj->is_nullable()) { |
|
| 1138 | + // if the field allows nulls, then let it be null |
|
| 1139 | + $field_value = null; |
|
| 1140 | + } else { |
|
| 1141 | + $field_value = $field_obj->get_default_value(); |
|
| 1142 | + } |
|
| 1143 | + } else { |
|
| 1144 | + $field_value = $field_obj->prepare_for_set_from_db($field_value_from_db); |
|
| 1145 | + } |
|
| 1146 | + $this->_fields[ $field_name ] = $field_value; |
|
| 1147 | + $this->_clear_cached_property($field_name); |
|
| 1148 | + } |
|
| 1149 | + } |
|
| 1150 | + |
|
| 1151 | + |
|
| 1152 | + /** |
|
| 1153 | + * verifies that the specified field is of the correct type |
|
| 1154 | + * |
|
| 1155 | + * @param string $field_name |
|
| 1156 | + * @param string $extra_cache_ref This allows the user to specify an extra cache ref for the given property |
|
| 1157 | + * (in cases where the same property may be used for different outputs |
|
| 1158 | + * - i.e. datetime, money etc.) |
|
| 1159 | + * @return mixed |
|
| 1160 | + * @throws ReflectionException |
|
| 1161 | + * @throws InvalidArgumentException |
|
| 1162 | + * @throws InvalidInterfaceException |
|
| 1163 | + * @throws InvalidDataTypeException |
|
| 1164 | + * @throws EE_Error |
|
| 1165 | + */ |
|
| 1166 | + public function get($field_name, $extra_cache_ref = null) |
|
| 1167 | + { |
|
| 1168 | + return $this->_get_cached_property($field_name, false, $extra_cache_ref); |
|
| 1169 | + } |
|
| 1170 | + |
|
| 1171 | + |
|
| 1172 | + /** |
|
| 1173 | + * This method simply returns the RAW unprocessed value for the given property in this class |
|
| 1174 | + * |
|
| 1175 | + * @param string $field_name A valid fieldname |
|
| 1176 | + * @return mixed Whatever the raw value stored on the property is. |
|
| 1177 | + * @throws ReflectionException |
|
| 1178 | + * @throws InvalidArgumentException |
|
| 1179 | + * @throws InvalidInterfaceException |
|
| 1180 | + * @throws InvalidDataTypeException |
|
| 1181 | + * @throws EE_Error if fieldSettings is misconfigured or the field doesn't exist. |
|
| 1182 | + */ |
|
| 1183 | + public function get_raw($field_name) |
|
| 1184 | + { |
|
| 1185 | + $field_settings = $this->get_model()->field_settings_for($field_name); |
|
| 1186 | + return $field_settings instanceof EE_Datetime_Field && $this->_fields[ $field_name ] instanceof DateTime |
|
| 1187 | + ? $this->_fields[ $field_name ]->format('U') |
|
| 1188 | + : $this->_fields[ $field_name ]; |
|
| 1189 | + } |
|
| 1190 | + |
|
| 1191 | + |
|
| 1192 | + /** |
|
| 1193 | + * This is used to return the internal DateTime object used for a field that is a |
|
| 1194 | + * EE_Datetime_Field. |
|
| 1195 | + * |
|
| 1196 | + * @param string $field_name The field name retrieving the DateTime object. |
|
| 1197 | + * @return mixed null | false | DateTime If the requested field is NOT a EE_Datetime_Field then |
|
| 1198 | + * @throws EE_Error an error is set and false returned. If the field IS an |
|
| 1199 | + * EE_Datetime_Field and but the field value is null, then |
|
| 1200 | + * just null is returned (because that indicates that likely |
|
| 1201 | + * this field is nullable). |
|
| 1202 | + * @throws InvalidArgumentException |
|
| 1203 | + * @throws InvalidDataTypeException |
|
| 1204 | + * @throws InvalidInterfaceException |
|
| 1205 | + * @throws ReflectionException |
|
| 1206 | + */ |
|
| 1207 | + public function get_DateTime_object($field_name) |
|
| 1208 | + { |
|
| 1209 | + $field_settings = $this->get_model()->field_settings_for($field_name); |
|
| 1210 | + if (! $field_settings instanceof EE_Datetime_Field) { |
|
| 1211 | + EE_Error::add_error( |
|
| 1212 | + sprintf( |
|
| 1213 | + esc_html__( |
|
| 1214 | + 'The field %s is not an EE_Datetime_Field field. There is no DateTime object stored on this field type.', |
|
| 1215 | + 'event_espresso' |
|
| 1216 | + ), |
|
| 1217 | + $field_name |
|
| 1218 | + ), |
|
| 1219 | + __FILE__, |
|
| 1220 | + __FUNCTION__, |
|
| 1221 | + __LINE__ |
|
| 1222 | + ); |
|
| 1223 | + return false; |
|
| 1224 | + } |
|
| 1225 | + return isset($this->_fields[ $field_name ]) && $this->_fields[ $field_name ] instanceof DateTime |
|
| 1226 | + ? clone $this->_fields[ $field_name ] |
|
| 1227 | + : null; |
|
| 1228 | + } |
|
| 1229 | + |
|
| 1230 | + |
|
| 1231 | + /** |
|
| 1232 | + * To be used in template to immediately echo out the value, and format it for output. |
|
| 1233 | + * Eg, should call stripslashes and whatnot before echoing |
|
| 1234 | + * |
|
| 1235 | + * @param string $field_name the name of the field as it appears in the DB |
|
| 1236 | + * @param string $extra_cache_ref This allows the user to specify an extra cache ref for the given property |
|
| 1237 | + * (in cases where the same property may be used for different outputs |
|
| 1238 | + * - i.e. datetime, money etc.) |
|
| 1239 | + * @return void |
|
| 1240 | + * @throws ReflectionException |
|
| 1241 | + * @throws InvalidArgumentException |
|
| 1242 | + * @throws InvalidInterfaceException |
|
| 1243 | + * @throws InvalidDataTypeException |
|
| 1244 | + * @throws EE_Error |
|
| 1245 | + */ |
|
| 1246 | + public function e($field_name, $extra_cache_ref = null) |
|
| 1247 | + { |
|
| 1248 | + echo $this->get_pretty($field_name, $extra_cache_ref); |
|
| 1249 | + } |
|
| 1250 | + |
|
| 1251 | + |
|
| 1252 | + /** |
|
| 1253 | + * Exactly like e(), echoes out the field, but sets its schema to 'form_input', so that it |
|
| 1254 | + * can be easily used as the value of form input. |
|
| 1255 | + * |
|
| 1256 | + * @param string $field_name |
|
| 1257 | + * @return void |
|
| 1258 | + * @throws ReflectionException |
|
| 1259 | + * @throws InvalidArgumentException |
|
| 1260 | + * @throws InvalidInterfaceException |
|
| 1261 | + * @throws InvalidDataTypeException |
|
| 1262 | + * @throws EE_Error |
|
| 1263 | + */ |
|
| 1264 | + public function f($field_name) |
|
| 1265 | + { |
|
| 1266 | + $this->e($field_name, 'form_input'); |
|
| 1267 | + } |
|
| 1268 | + |
|
| 1269 | + |
|
| 1270 | + /** |
|
| 1271 | + * Same as `f()` but just returns the value instead of echoing it |
|
| 1272 | + * |
|
| 1273 | + * @param string $field_name |
|
| 1274 | + * @return string |
|
| 1275 | + * @throws ReflectionException |
|
| 1276 | + * @throws InvalidArgumentException |
|
| 1277 | + * @throws InvalidInterfaceException |
|
| 1278 | + * @throws InvalidDataTypeException |
|
| 1279 | + * @throws EE_Error |
|
| 1280 | + */ |
|
| 1281 | + public function get_f($field_name) |
|
| 1282 | + { |
|
| 1283 | + return (string) $this->get_pretty($field_name, 'form_input'); |
|
| 1284 | + } |
|
| 1285 | + |
|
| 1286 | + |
|
| 1287 | + /** |
|
| 1288 | + * Gets a pretty view of the field's value. $extra_cache_ref can specify different formats for this. |
|
| 1289 | + * The $extra_cache_ref will be passed to the model field's prepare_for_pretty_echoing, so consult the field's class |
|
| 1290 | + * to see what options are available. |
|
| 1291 | + * |
|
| 1292 | + * @param string $field_name |
|
| 1293 | + * @param string $extra_cache_ref This allows the user to specify an extra cache ref for the given property |
|
| 1294 | + * (in cases where the same property may be used for different outputs |
|
| 1295 | + * - i.e. datetime, money etc.) |
|
| 1296 | + * @return mixed |
|
| 1297 | + * @throws ReflectionException |
|
| 1298 | + * @throws InvalidArgumentException |
|
| 1299 | + * @throws InvalidInterfaceException |
|
| 1300 | + * @throws InvalidDataTypeException |
|
| 1301 | + * @throws EE_Error |
|
| 1302 | + */ |
|
| 1303 | + public function get_pretty($field_name, $extra_cache_ref = null) |
|
| 1304 | + { |
|
| 1305 | + return $this->_get_cached_property($field_name, true, $extra_cache_ref); |
|
| 1306 | + } |
|
| 1307 | + |
|
| 1308 | + |
|
| 1309 | + /** |
|
| 1310 | + * This simply returns the datetime for the given field name |
|
| 1311 | + * Note: this protected function is called by the wrapper get_date or get_time or get_datetime functions |
|
| 1312 | + * (and the equivalent e_date, e_time, e_datetime). |
|
| 1313 | + * |
|
| 1314 | + * @access protected |
|
| 1315 | + * @param string $field_name Field on the instantiated EE_Base_Class child object |
|
| 1316 | + * @param string $dt_frmt valid datetime format used for date |
|
| 1317 | + * (if '' then we just use the default on the field, |
|
| 1318 | + * if NULL we use the last-used format) |
|
| 1319 | + * @param string $tm_frmt Same as above except this is for time format |
|
| 1320 | + * @param string $date_or_time if NULL then both are returned, otherwise "D" = only date and "T" = only time. |
|
| 1321 | + * @param boolean $echo Whether the dtt is echoing using pretty echoing or just returned using vanilla get |
|
| 1322 | + * @return string|bool|EE_Error string on success, FALSE on fail, or EE_Error Exception is thrown |
|
| 1323 | + * if field is not a valid dtt field, or void if echoing |
|
| 1324 | + * @throws ReflectionException |
|
| 1325 | + * @throws InvalidArgumentException |
|
| 1326 | + * @throws InvalidInterfaceException |
|
| 1327 | + * @throws InvalidDataTypeException |
|
| 1328 | + * @throws EE_Error |
|
| 1329 | + */ |
|
| 1330 | + protected function _get_datetime($field_name, $dt_frmt = '', $tm_frmt = '', $date_or_time = '', $echo = false) |
|
| 1331 | + { |
|
| 1332 | + // clear cached property |
|
| 1333 | + $this->_clear_cached_property($field_name); |
|
| 1334 | + // reset format properties because they are used in get() |
|
| 1335 | + $this->_dt_frmt = $dt_frmt !== '' ? $dt_frmt : $this->_dt_frmt; |
|
| 1336 | + $this->_tm_frmt = $tm_frmt !== '' ? $tm_frmt : $this->_tm_frmt; |
|
| 1337 | + if ($echo) { |
|
| 1338 | + $this->e($field_name, $date_or_time); |
|
| 1339 | + return ''; |
|
| 1340 | + } |
|
| 1341 | + return $this->get($field_name, $date_or_time); |
|
| 1342 | + } |
|
| 1343 | + |
|
| 1344 | + |
|
| 1345 | + /** |
|
| 1346 | + * below are wrapper functions for the various datetime outputs that can be obtained for JUST returning the date |
|
| 1347 | + * portion of a datetime value. (note the only difference between get_ and e_ is one returns the value and the |
|
| 1348 | + * other echoes the pretty value for dtt) |
|
| 1349 | + * |
|
| 1350 | + * @param string $field_name name of model object datetime field holding the value |
|
| 1351 | + * @param string $format format for the date returned (if NULL we use default in dt_frmt property) |
|
| 1352 | + * @return string datetime value formatted |
|
| 1353 | + * @throws ReflectionException |
|
| 1354 | + * @throws InvalidArgumentException |
|
| 1355 | + * @throws InvalidInterfaceException |
|
| 1356 | + * @throws InvalidDataTypeException |
|
| 1357 | + * @throws EE_Error |
|
| 1358 | + */ |
|
| 1359 | + public function get_date($field_name, $format = '') |
|
| 1360 | + { |
|
| 1361 | + return $this->_get_datetime($field_name, $format, null, 'D'); |
|
| 1362 | + } |
|
| 1363 | + |
|
| 1364 | + |
|
| 1365 | + /** |
|
| 1366 | + * @param $field_name |
|
| 1367 | + * @param string $format |
|
| 1368 | + * @throws ReflectionException |
|
| 1369 | + * @throws InvalidArgumentException |
|
| 1370 | + * @throws InvalidInterfaceException |
|
| 1371 | + * @throws InvalidDataTypeException |
|
| 1372 | + * @throws EE_Error |
|
| 1373 | + */ |
|
| 1374 | + public function e_date($field_name, $format = '') |
|
| 1375 | + { |
|
| 1376 | + $this->_get_datetime($field_name, $format, null, 'D', true); |
|
| 1377 | + } |
|
| 1378 | + |
|
| 1379 | + |
|
| 1380 | + /** |
|
| 1381 | + * below are wrapper functions for the various datetime outputs that can be obtained for JUST returning the time |
|
| 1382 | + * portion of a datetime value. (note the only difference between get_ and e_ is one returns the value and the |
|
| 1383 | + * other echoes the pretty value for dtt) |
|
| 1384 | + * |
|
| 1385 | + * @param string $field_name name of model object datetime field holding the value |
|
| 1386 | + * @param string $format format for the time returned ( if NULL we use default in tm_frmt property) |
|
| 1387 | + * @return string datetime value formatted |
|
| 1388 | + * @throws ReflectionException |
|
| 1389 | + * @throws InvalidArgumentException |
|
| 1390 | + * @throws InvalidInterfaceException |
|
| 1391 | + * @throws InvalidDataTypeException |
|
| 1392 | + * @throws EE_Error |
|
| 1393 | + */ |
|
| 1394 | + public function get_time($field_name, $format = '') |
|
| 1395 | + { |
|
| 1396 | + return $this->_get_datetime($field_name, null, $format, 'T'); |
|
| 1397 | + } |
|
| 1398 | + |
|
| 1399 | + |
|
| 1400 | + /** |
|
| 1401 | + * @param $field_name |
|
| 1402 | + * @param string $format |
|
| 1403 | + * @throws ReflectionException |
|
| 1404 | + * @throws InvalidArgumentException |
|
| 1405 | + * @throws InvalidInterfaceException |
|
| 1406 | + * @throws InvalidDataTypeException |
|
| 1407 | + * @throws EE_Error |
|
| 1408 | + */ |
|
| 1409 | + public function e_time($field_name, $format = '') |
|
| 1410 | + { |
|
| 1411 | + $this->_get_datetime($field_name, null, $format, 'T', true); |
|
| 1412 | + } |
|
| 1413 | + |
|
| 1414 | + |
|
| 1415 | + /** |
|
| 1416 | + * below are wrapper functions for the various datetime outputs that can be obtained for returning the date AND |
|
| 1417 | + * time portion of a datetime value. (note the only difference between get_ and e_ is one returns the value and the |
|
| 1418 | + * other echoes the pretty value for dtt) |
|
| 1419 | + * |
|
| 1420 | + * @param string $field_name name of model object datetime field holding the value |
|
| 1421 | + * @param string $dt_frmt format for the date returned (if NULL we use default in dt_frmt property) |
|
| 1422 | + * @param string $tm_frmt format for the time returned (if NULL we use default in tm_frmt property) |
|
| 1423 | + * @return string datetime value formatted |
|
| 1424 | + * @throws ReflectionException |
|
| 1425 | + * @throws InvalidArgumentException |
|
| 1426 | + * @throws InvalidInterfaceException |
|
| 1427 | + * @throws InvalidDataTypeException |
|
| 1428 | + * @throws EE_Error |
|
| 1429 | + */ |
|
| 1430 | + public function get_datetime($field_name, $dt_frmt = '', $tm_frmt = '') |
|
| 1431 | + { |
|
| 1432 | + return $this->_get_datetime($field_name, $dt_frmt, $tm_frmt); |
|
| 1433 | + } |
|
| 1434 | + |
|
| 1435 | + |
|
| 1436 | + /** |
|
| 1437 | + * @param string $field_name |
|
| 1438 | + * @param string $dt_frmt |
|
| 1439 | + * @param string $tm_frmt |
|
| 1440 | + * @throws ReflectionException |
|
| 1441 | + * @throws InvalidArgumentException |
|
| 1442 | + * @throws InvalidInterfaceException |
|
| 1443 | + * @throws InvalidDataTypeException |
|
| 1444 | + * @throws EE_Error |
|
| 1445 | + */ |
|
| 1446 | + public function e_datetime($field_name, $dt_frmt = '', $tm_frmt = '') |
|
| 1447 | + { |
|
| 1448 | + $this->_get_datetime($field_name, $dt_frmt, $tm_frmt, null, true); |
|
| 1449 | + } |
|
| 1450 | + |
|
| 1451 | + |
|
| 1452 | + /** |
|
| 1453 | + * Get the i8ln value for a date using the WordPress @see date_i18n function. |
|
| 1454 | + * |
|
| 1455 | + * @param string $field_name The EE_Datetime_Field reference for the date being retrieved. |
|
| 1456 | + * @param string $format PHP valid date/time string format. If none is provided then the internal set format |
|
| 1457 | + * on the object will be used. |
|
| 1458 | + * @return string Date and time string in set locale or false if no field exists for the given |
|
| 1459 | + * @throws ReflectionException |
|
| 1460 | + * @throws InvalidArgumentException |
|
| 1461 | + * @throws InvalidInterfaceException |
|
| 1462 | + * @throws InvalidDataTypeException |
|
| 1463 | + * @throws EE_Error |
|
| 1464 | + * field name. |
|
| 1465 | + */ |
|
| 1466 | + public function get_i18n_datetime($field_name, $format = '') |
|
| 1467 | + { |
|
| 1468 | + $format = empty($format) ? $this->_dt_frmt . ' ' . $this->_tm_frmt : $format; |
|
| 1469 | + return date_i18n( |
|
| 1470 | + $format, |
|
| 1471 | + EEH_DTT_Helper::get_timestamp_with_offset( |
|
| 1472 | + $this->get_raw($field_name), |
|
| 1473 | + $this->_timezone |
|
| 1474 | + ) |
|
| 1475 | + ); |
|
| 1476 | + } |
|
| 1477 | + |
|
| 1478 | + |
|
| 1479 | + /** |
|
| 1480 | + * This method validates whether the given field name is a valid field on the model object as well as it is of a |
|
| 1481 | + * type EE_Datetime_Field. On success there will be returned the field settings. On fail an EE_Error exception is |
|
| 1482 | + * thrown. |
|
| 1483 | + * |
|
| 1484 | + * @param string $field_name The field name being checked |
|
| 1485 | + * @throws ReflectionException |
|
| 1486 | + * @throws InvalidArgumentException |
|
| 1487 | + * @throws InvalidInterfaceException |
|
| 1488 | + * @throws InvalidDataTypeException |
|
| 1489 | + * @throws EE_Error |
|
| 1490 | + * @return EE_Datetime_Field |
|
| 1491 | + */ |
|
| 1492 | + protected function _get_dtt_field_settings($field_name) |
|
| 1493 | + { |
|
| 1494 | + $field = $this->get_model()->field_settings_for($field_name); |
|
| 1495 | + // check if field is dtt |
|
| 1496 | + if ($field instanceof EE_Datetime_Field) { |
|
| 1497 | + return $field; |
|
| 1498 | + } |
|
| 1499 | + throw new EE_Error( |
|
| 1500 | + sprintf( |
|
| 1501 | + esc_html__( |
|
| 1502 | + 'The field name "%s" has been requested for the EE_Base_Class datetime functions and it is not a valid EE_Datetime_Field. Please check the spelling of the field and make sure it has been setup as a EE_Datetime_Field in the %s model constructor', |
|
| 1503 | + 'event_espresso' |
|
| 1504 | + ), |
|
| 1505 | + $field_name, |
|
| 1506 | + self::_get_model_classname(get_class($this)) |
|
| 1507 | + ) |
|
| 1508 | + ); |
|
| 1509 | + } |
|
| 1510 | + |
|
| 1511 | + |
|
| 1512 | + |
|
| 1513 | + |
|
| 1514 | + /** |
|
| 1515 | + * NOTE ABOUT BELOW: |
|
| 1516 | + * These convenience date and time setters are for setting date and time independently. In other words you might |
|
| 1517 | + * want to change the time on a datetime_field but leave the date the same (or vice versa). IF on the other hand |
|
| 1518 | + * you want to set both date and time at the same time, you can just use the models default set($fieldname,$value) |
|
| 1519 | + * method and make sure you send the entire datetime value for setting. |
|
| 1520 | + */ |
|
| 1521 | + /** |
|
| 1522 | + * sets the time on a datetime property |
|
| 1523 | + * |
|
| 1524 | + * @access protected |
|
| 1525 | + * @param string|Datetime $time a valid time string for php datetime functions (or DateTime object) |
|
| 1526 | + * @param string $fieldname the name of the field the time is being set on (must match a EE_Datetime_Field) |
|
| 1527 | + * @throws ReflectionException |
|
| 1528 | + * @throws InvalidArgumentException |
|
| 1529 | + * @throws InvalidInterfaceException |
|
| 1530 | + * @throws InvalidDataTypeException |
|
| 1531 | + * @throws EE_Error |
|
| 1532 | + */ |
|
| 1533 | + protected function _set_time_for($time, $fieldname) |
|
| 1534 | + { |
|
| 1535 | + $this->_set_date_time('T', $time, $fieldname); |
|
| 1536 | + } |
|
| 1537 | + |
|
| 1538 | + |
|
| 1539 | + /** |
|
| 1540 | + * sets the date on a datetime property |
|
| 1541 | + * |
|
| 1542 | + * @access protected |
|
| 1543 | + * @param string|DateTime $date a valid date string for php datetime functions ( or DateTime object) |
|
| 1544 | + * @param string $fieldname the name of the field the date is being set on (must match a EE_Datetime_Field) |
|
| 1545 | + * @throws ReflectionException |
|
| 1546 | + * @throws InvalidArgumentException |
|
| 1547 | + * @throws InvalidInterfaceException |
|
| 1548 | + * @throws InvalidDataTypeException |
|
| 1549 | + * @throws EE_Error |
|
| 1550 | + */ |
|
| 1551 | + protected function _set_date_for($date, $fieldname) |
|
| 1552 | + { |
|
| 1553 | + $this->_set_date_time('D', $date, $fieldname); |
|
| 1554 | + } |
|
| 1555 | + |
|
| 1556 | + |
|
| 1557 | + /** |
|
| 1558 | + * This takes care of setting a date or time independently on a given model object property. This method also |
|
| 1559 | + * verifies that the given fieldname matches a model object property and is for a EE_Datetime_Field field |
|
| 1560 | + * |
|
| 1561 | + * @access protected |
|
| 1562 | + * @param string $what "T" for time, 'B' for both, 'D' for Date. |
|
| 1563 | + * @param string|DateTime $datetime_value A valid Date or Time string (or DateTime object) |
|
| 1564 | + * @param string $fieldname the name of the field the date OR time is being set on (must match a |
|
| 1565 | + * EE_Datetime_Field property) |
|
| 1566 | + * @throws ReflectionException |
|
| 1567 | + * @throws InvalidArgumentException |
|
| 1568 | + * @throws InvalidInterfaceException |
|
| 1569 | + * @throws InvalidDataTypeException |
|
| 1570 | + * @throws EE_Error |
|
| 1571 | + */ |
|
| 1572 | + protected function _set_date_time($what = 'T', $datetime_value, $fieldname) |
|
| 1573 | + { |
|
| 1574 | + $field = $this->_get_dtt_field_settings($fieldname); |
|
| 1575 | + $field->set_timezone($this->_timezone); |
|
| 1576 | + $field->set_date_format($this->_dt_frmt); |
|
| 1577 | + $field->set_time_format($this->_tm_frmt); |
|
| 1578 | + switch ($what) { |
|
| 1579 | + case 'T': |
|
| 1580 | + $this->_fields[ $fieldname ] = $field->prepare_for_set_with_new_time( |
|
| 1581 | + $datetime_value, |
|
| 1582 | + $this->_fields[ $fieldname ] |
|
| 1583 | + ); |
|
| 1584 | + break; |
|
| 1585 | + case 'D': |
|
| 1586 | + $this->_fields[ $fieldname ] = $field->prepare_for_set_with_new_date( |
|
| 1587 | + $datetime_value, |
|
| 1588 | + $this->_fields[ $fieldname ] |
|
| 1589 | + ); |
|
| 1590 | + break; |
|
| 1591 | + case 'B': |
|
| 1592 | + $this->_fields[ $fieldname ] = $field->prepare_for_set($datetime_value); |
|
| 1593 | + break; |
|
| 1594 | + } |
|
| 1595 | + $this->_clear_cached_property($fieldname); |
|
| 1596 | + } |
|
| 1597 | + |
|
| 1598 | + |
|
| 1599 | + /** |
|
| 1600 | + * This will return a timestamp for the website timezone but ONLY when the current website timezone is different |
|
| 1601 | + * than the timezone set for the website. NOTE, this currently only works well with methods that return values. If |
|
| 1602 | + * you use it with methods that echo values the $_timestamp property may not get reset to its original value and |
|
| 1603 | + * that could lead to some unexpected results! |
|
| 1604 | + * |
|
| 1605 | + * @access public |
|
| 1606 | + * @param string $field_name This is the name of the field on the object that contains the date/time |
|
| 1607 | + * value being returned. |
|
| 1608 | + * @param string $callback must match a valid method in this class (defaults to get_datetime) |
|
| 1609 | + * @param mixed (array|string) $args This is the arguments that will be passed to the callback. |
|
| 1610 | + * @param string $prepend You can include something to prepend on the timestamp |
|
| 1611 | + * @param string $append You can include something to append on the timestamp |
|
| 1612 | + * @throws ReflectionException |
|
| 1613 | + * @throws InvalidArgumentException |
|
| 1614 | + * @throws InvalidInterfaceException |
|
| 1615 | + * @throws InvalidDataTypeException |
|
| 1616 | + * @throws EE_Error |
|
| 1617 | + * @return string timestamp |
|
| 1618 | + */ |
|
| 1619 | + public function display_in_my_timezone( |
|
| 1620 | + $field_name, |
|
| 1621 | + $callback = 'get_datetime', |
|
| 1622 | + $args = null, |
|
| 1623 | + $prepend = '', |
|
| 1624 | + $append = '' |
|
| 1625 | + ) { |
|
| 1626 | + $timezone = EEH_DTT_Helper::get_timezone(); |
|
| 1627 | + if ($timezone === $this->_timezone) { |
|
| 1628 | + return ''; |
|
| 1629 | + } |
|
| 1630 | + $original_timezone = $this->_timezone; |
|
| 1631 | + $this->set_timezone($timezone); |
|
| 1632 | + $fn = (array) $field_name; |
|
| 1633 | + $args = array_merge($fn, (array) $args); |
|
| 1634 | + if (! method_exists($this, $callback)) { |
|
| 1635 | + throw new EE_Error( |
|
| 1636 | + sprintf( |
|
| 1637 | + esc_html__( |
|
| 1638 | + 'The method named "%s" given as the callback param in "display_in_my_timezone" does not exist. Please check your spelling', |
|
| 1639 | + 'event_espresso' |
|
| 1640 | + ), |
|
| 1641 | + $callback |
|
| 1642 | + ) |
|
| 1643 | + ); |
|
| 1644 | + } |
|
| 1645 | + $args = (array) $args; |
|
| 1646 | + $return = $prepend . call_user_func_array(array($this, $callback), $args) . $append; |
|
| 1647 | + $this->set_timezone($original_timezone); |
|
| 1648 | + return $return; |
|
| 1649 | + } |
|
| 1650 | + |
|
| 1651 | + |
|
| 1652 | + /** |
|
| 1653 | + * Deletes this model object. |
|
| 1654 | + * This calls the `EE_Base_Class::_delete` method. Child classes wishing to change default behaviour should |
|
| 1655 | + * override |
|
| 1656 | + * `EE_Base_Class::_delete` NOT this class. |
|
| 1657 | + * |
|
| 1658 | + * @return boolean | int |
|
| 1659 | + * @throws ReflectionException |
|
| 1660 | + * @throws InvalidArgumentException |
|
| 1661 | + * @throws InvalidInterfaceException |
|
| 1662 | + * @throws InvalidDataTypeException |
|
| 1663 | + * @throws EE_Error |
|
| 1664 | + */ |
|
| 1665 | + public function delete() |
|
| 1666 | + { |
|
| 1667 | + /** |
|
| 1668 | + * Called just before the `EE_Base_Class::_delete` method call. |
|
| 1669 | + * Note: |
|
| 1670 | + * `EE_Base_Class::_delete` might be overridden by child classes so any client code hooking into these actions |
|
| 1671 | + * should be aware that `_delete` may not always result in a permanent delete. |
|
| 1672 | + * For example, `EE_Soft_Delete_Base_Class::_delete` |
|
| 1673 | + * soft deletes (trash) the object and does not permanently delete it. |
|
| 1674 | + * |
|
| 1675 | + * @param EE_Base_Class $model_object about to be 'deleted' |
|
| 1676 | + */ |
|
| 1677 | + do_action('AHEE__EE_Base_Class__delete__before', $this); |
|
| 1678 | + $result = $this->_delete(); |
|
| 1679 | + /** |
|
| 1680 | + * Called just after the `EE_Base_Class::_delete` method call. |
|
| 1681 | + * Note: |
|
| 1682 | + * `EE_Base_Class::_delete` might be overridden by child classes so any client code hooking into these actions |
|
| 1683 | + * should be aware that `_delete` may not always result in a permanent delete. |
|
| 1684 | + * For example `EE_Soft_Base_Class::_delete` |
|
| 1685 | + * soft deletes (trash) the object and does not permanently delete it. |
|
| 1686 | + * |
|
| 1687 | + * @param EE_Base_Class $model_object that was just 'deleted' |
|
| 1688 | + * @param boolean $result |
|
| 1689 | + */ |
|
| 1690 | + do_action('AHEE__EE_Base_Class__delete__end', $this, $result); |
|
| 1691 | + return $result; |
|
| 1692 | + } |
|
| 1693 | + |
|
| 1694 | + |
|
| 1695 | + /** |
|
| 1696 | + * Calls the specific delete method for the instantiated class. |
|
| 1697 | + * This method is called by the public `EE_Base_Class::delete` method. Any child classes desiring to override |
|
| 1698 | + * default functionality for "delete" (which is to call `permanently_delete`) should override this method NOT |
|
| 1699 | + * `EE_Base_Class::delete` |
|
| 1700 | + * |
|
| 1701 | + * @return bool|int |
|
| 1702 | + * @throws ReflectionException |
|
| 1703 | + * @throws InvalidArgumentException |
|
| 1704 | + * @throws InvalidInterfaceException |
|
| 1705 | + * @throws InvalidDataTypeException |
|
| 1706 | + * @throws EE_Error |
|
| 1707 | + */ |
|
| 1708 | + protected function _delete() |
|
| 1709 | + { |
|
| 1710 | + return $this->delete_permanently(); |
|
| 1711 | + } |
|
| 1712 | + |
|
| 1713 | + |
|
| 1714 | + /** |
|
| 1715 | + * Deletes this model object permanently from db |
|
| 1716 | + * (but keep in mind related models may block the delete and return an error) |
|
| 1717 | + * |
|
| 1718 | + * @return bool | int |
|
| 1719 | + * @throws ReflectionException |
|
| 1720 | + * @throws InvalidArgumentException |
|
| 1721 | + * @throws InvalidInterfaceException |
|
| 1722 | + * @throws InvalidDataTypeException |
|
| 1723 | + * @throws EE_Error |
|
| 1724 | + */ |
|
| 1725 | + public function delete_permanently() |
|
| 1726 | + { |
|
| 1727 | + /** |
|
| 1728 | + * Called just before HARD deleting a model object |
|
| 1729 | + * |
|
| 1730 | + * @param EE_Base_Class $model_object about to be 'deleted' |
|
| 1731 | + */ |
|
| 1732 | + do_action('AHEE__EE_Base_Class__delete_permanently__before', $this); |
|
| 1733 | + $model = $this->get_model(); |
|
| 1734 | + $result = $model->delete_permanently_by_ID($this->ID()); |
|
| 1735 | + $this->refresh_cache_of_related_objects(); |
|
| 1736 | + /** |
|
| 1737 | + * Called just after HARD deleting a model object |
|
| 1738 | + * |
|
| 1739 | + * @param EE_Base_Class $model_object that was just 'deleted' |
|
| 1740 | + * @param boolean $result |
|
| 1741 | + */ |
|
| 1742 | + do_action('AHEE__EE_Base_Class__delete_permanently__end', $this, $result); |
|
| 1743 | + return $result; |
|
| 1744 | + } |
|
| 1745 | + |
|
| 1746 | + |
|
| 1747 | + /** |
|
| 1748 | + * When this model object is deleted, it may still be cached on related model objects. This clears the cache of |
|
| 1749 | + * related model objects |
|
| 1750 | + * |
|
| 1751 | + * @throws ReflectionException |
|
| 1752 | + * @throws InvalidArgumentException |
|
| 1753 | + * @throws InvalidInterfaceException |
|
| 1754 | + * @throws InvalidDataTypeException |
|
| 1755 | + * @throws EE_Error |
|
| 1756 | + */ |
|
| 1757 | + public function refresh_cache_of_related_objects() |
|
| 1758 | + { |
|
| 1759 | + $model = $this->get_model(); |
|
| 1760 | + foreach ($model->relation_settings() as $relation_name => $relation_obj) { |
|
| 1761 | + if (! empty($this->_model_relations[ $relation_name ])) { |
|
| 1762 | + $related_objects = $this->_model_relations[ $relation_name ]; |
|
| 1763 | + if ($relation_obj instanceof EE_Belongs_To_Relation) { |
|
| 1764 | + // this relation only stores a single model object, not an array |
|
| 1765 | + // but let's make it consistent |
|
| 1766 | + $related_objects = array($related_objects); |
|
| 1767 | + } |
|
| 1768 | + foreach ($related_objects as $related_object) { |
|
| 1769 | + // only refresh their cache if they're in memory |
|
| 1770 | + if ($related_object instanceof EE_Base_Class) { |
|
| 1771 | + $related_object->clear_cache( |
|
| 1772 | + $model->get_this_model_name(), |
|
| 1773 | + $this |
|
| 1774 | + ); |
|
| 1775 | + } |
|
| 1776 | + } |
|
| 1777 | + } |
|
| 1778 | + } |
|
| 1779 | + } |
|
| 1780 | + |
|
| 1781 | + |
|
| 1782 | + /** |
|
| 1783 | + * Saves this object to the database. An array may be supplied to set some values on this |
|
| 1784 | + * object just before saving. |
|
| 1785 | + * |
|
| 1786 | + * @access public |
|
| 1787 | + * @param array $set_cols_n_values keys are field names, values are their new values, |
|
| 1788 | + * if provided during the save() method (often client code will change the fields' |
|
| 1789 | + * values before calling save) |
|
| 1790 | + * @throws InvalidArgumentException |
|
| 1791 | + * @throws InvalidInterfaceException |
|
| 1792 | + * @throws InvalidDataTypeException |
|
| 1793 | + * @throws EE_Error |
|
| 1794 | + * @return int , 1 on a successful update, the ID of the new entry on insert; 0 on failure or if the model object |
|
| 1795 | + * isn't allowed to persist (as determined by EE_Base_Class::allow_persist()) |
|
| 1796 | + * @throws ReflectionException |
|
| 1797 | + * @throws ReflectionException |
|
| 1798 | + * @throws ReflectionException |
|
| 1799 | + */ |
|
| 1800 | + public function save($set_cols_n_values = array()) |
|
| 1801 | + { |
|
| 1802 | + $model = $this->get_model(); |
|
| 1803 | + /** |
|
| 1804 | + * Filters the fields we're about to save on the model object |
|
| 1805 | + * |
|
| 1806 | + * @param array $set_cols_n_values |
|
| 1807 | + * @param EE_Base_Class $model_object |
|
| 1808 | + */ |
|
| 1809 | + $set_cols_n_values = (array) apply_filters( |
|
| 1810 | + 'FHEE__EE_Base_Class__save__set_cols_n_values', |
|
| 1811 | + $set_cols_n_values, |
|
| 1812 | + $this |
|
| 1813 | + ); |
|
| 1814 | + // set attributes as provided in $set_cols_n_values |
|
| 1815 | + foreach ($set_cols_n_values as $column => $value) { |
|
| 1816 | + $this->set($column, $value); |
|
| 1817 | + } |
|
| 1818 | + // no changes ? then don't do anything |
|
| 1819 | + if (! $this->_has_changes && $this->ID() && $model->get_primary_key_field()->is_auto_increment()) { |
|
| 1820 | + return 0; |
|
| 1821 | + } |
|
| 1822 | + /** |
|
| 1823 | + * Saving a model object. |
|
| 1824 | + * Before we perform a save, this action is fired. |
|
| 1825 | + * |
|
| 1826 | + * @param EE_Base_Class $model_object the model object about to be saved. |
|
| 1827 | + */ |
|
| 1828 | + do_action('AHEE__EE_Base_Class__save__begin', $this); |
|
| 1829 | + if (! $this->allow_persist()) { |
|
| 1830 | + return 0; |
|
| 1831 | + } |
|
| 1832 | + // now get current attribute values |
|
| 1833 | + $save_cols_n_values = $this->_fields; |
|
| 1834 | + // if the object already has an ID, update it. Otherwise, insert it |
|
| 1835 | + // also: change the assumption about values passed to the model NOT being prepare dby the model object. |
|
| 1836 | + // They have been |
|
| 1837 | + $old_assumption_concerning_value_preparation = $model |
|
| 1838 | + ->get_assumption_concerning_values_already_prepared_by_model_object(); |
|
| 1839 | + $model->assume_values_already_prepared_by_model_object(true); |
|
| 1840 | + // does this model have an autoincrement PK? |
|
| 1841 | + if ($model->has_primary_key_field()) { |
|
| 1842 | + if ($model->get_primary_key_field()->is_auto_increment()) { |
|
| 1843 | + // ok check if it's set, if so: update; if not, insert |
|
| 1844 | + if (! empty($save_cols_n_values[ $model->primary_key_name() ])) { |
|
| 1845 | + $results = $model->update_by_ID($save_cols_n_values, $this->ID()); |
|
| 1846 | + } else { |
|
| 1847 | + unset($save_cols_n_values[ $model->primary_key_name() ]); |
|
| 1848 | + $results = $model->insert($save_cols_n_values); |
|
| 1849 | + if ($results) { |
|
| 1850 | + // if successful, set the primary key |
|
| 1851 | + // but don't use the normal SET method, because it will check if |
|
| 1852 | + // an item with the same ID exists in the mapper & db, then |
|
| 1853 | + // will find it in the db (because we just added it) and THAT object |
|
| 1854 | + // will get added to the mapper before we can add this one! |
|
| 1855 | + // but if we just avoid using the SET method, all that headache can be avoided |
|
| 1856 | + $pk_field_name = $model->primary_key_name(); |
|
| 1857 | + $this->_fields[ $pk_field_name ] = $results; |
|
| 1858 | + $this->_clear_cached_property($pk_field_name); |
|
| 1859 | + $model->add_to_entity_map($this); |
|
| 1860 | + $this->_update_cached_related_model_objs_fks(); |
|
| 1861 | + } |
|
| 1862 | + } |
|
| 1863 | + } else {// PK is NOT auto-increment |
|
| 1864 | + // so check if one like it already exists in the db |
|
| 1865 | + if ($model->exists_by_ID($this->ID())) { |
|
| 1866 | + if (WP_DEBUG && ! $this->in_entity_map()) { |
|
| 1867 | + throw new EE_Error( |
|
| 1868 | + sprintf( |
|
| 1869 | + esc_html__( |
|
| 1870 | + 'Using a model object %1$s that is NOT in the entity map, can lead to unexpected errors. You should either: %4$s 1. Put it in the entity mapper by calling %2$s %4$s 2. Discard this model object and use what is in the entity mapper %4$s 3. Fetch from the database using %3$s', |
|
| 1871 | + 'event_espresso' |
|
| 1872 | + ), |
|
| 1873 | + get_class($this), |
|
| 1874 | + get_class($model) . '::instance()->add_to_entity_map()', |
|
| 1875 | + get_class($model) . '::instance()->get_one_by_ID()', |
|
| 1876 | + '<br />' |
|
| 1877 | + ) |
|
| 1878 | + ); |
|
| 1879 | + } |
|
| 1880 | + $results = $model->update_by_ID($save_cols_n_values, $this->ID()); |
|
| 1881 | + } else { |
|
| 1882 | + $results = $model->insert($save_cols_n_values); |
|
| 1883 | + $this->_update_cached_related_model_objs_fks(); |
|
| 1884 | + } |
|
| 1885 | + } |
|
| 1886 | + } else {// there is NO primary key |
|
| 1887 | + $already_in_db = false; |
|
| 1888 | + foreach ($model->unique_indexes() as $index) { |
|
| 1889 | + $uniqueness_where_params = array_intersect_key($save_cols_n_values, $index->fields()); |
|
| 1890 | + if ($model->exists(array($uniqueness_where_params))) { |
|
| 1891 | + $already_in_db = true; |
|
| 1892 | + } |
|
| 1893 | + } |
|
| 1894 | + if ($already_in_db) { |
|
| 1895 | + $combined_pk_fields_n_values = array_intersect_key( |
|
| 1896 | + $save_cols_n_values, |
|
| 1897 | + $model->get_combined_primary_key_fields() |
|
| 1898 | + ); |
|
| 1899 | + $results = $model->update( |
|
| 1900 | + $save_cols_n_values, |
|
| 1901 | + $combined_pk_fields_n_values |
|
| 1902 | + ); |
|
| 1903 | + } else { |
|
| 1904 | + $results = $model->insert($save_cols_n_values); |
|
| 1905 | + } |
|
| 1906 | + } |
|
| 1907 | + // restore the old assumption about values being prepared by the model object |
|
| 1908 | + $model->assume_values_already_prepared_by_model_object( |
|
| 1909 | + $old_assumption_concerning_value_preparation |
|
| 1910 | + ); |
|
| 1911 | + /** |
|
| 1912 | + * After saving the model object this action is called |
|
| 1913 | + * |
|
| 1914 | + * @param EE_Base_Class $model_object which was just saved |
|
| 1915 | + * @param boolean|int $results if it were updated, TRUE or FALSE; if it were newly inserted |
|
| 1916 | + * the new ID (or 0 if an error occurred and it wasn't updated) |
|
| 1917 | + */ |
|
| 1918 | + do_action('AHEE__EE_Base_Class__save__end', $this, $results); |
|
| 1919 | + $this->_has_changes = false; |
|
| 1920 | + return $results; |
|
| 1921 | + } |
|
| 1922 | + |
|
| 1923 | + |
|
| 1924 | + /** |
|
| 1925 | + * Updates the foreign key on related models objects pointing to this to have this model object's ID |
|
| 1926 | + * as their foreign key. If the cached related model objects already exist in the db, saves them (so that the DB |
|
| 1927 | + * is consistent) Especially useful in case we JUST added this model object ot the database and we want to let its |
|
| 1928 | + * cached relations with foreign keys to it know about that change. Eg: we've created a transaction but haven't |
|
| 1929 | + * saved it to the db. We also create a registration and don't save it to the DB, but we DO cache it on the |
|
| 1930 | + * transaction. Now, when we save the transaction, the registration's TXN_ID will be automatically updated, whether |
|
| 1931 | + * or not they exist in the DB (if they do, their DB records will be automatically updated) |
|
| 1932 | + * |
|
| 1933 | + * @return void |
|
| 1934 | + * @throws ReflectionException |
|
| 1935 | + * @throws InvalidArgumentException |
|
| 1936 | + * @throws InvalidInterfaceException |
|
| 1937 | + * @throws InvalidDataTypeException |
|
| 1938 | + * @throws EE_Error |
|
| 1939 | + */ |
|
| 1940 | + protected function _update_cached_related_model_objs_fks() |
|
| 1941 | + { |
|
| 1942 | + $model = $this->get_model(); |
|
| 1943 | + foreach ($model->relation_settings() as $relation_name => $relation_obj) { |
|
| 1944 | + if ($relation_obj instanceof EE_Has_Many_Relation) { |
|
| 1945 | + foreach ($this->get_all_from_cache($relation_name) as $related_model_obj_in_cache) { |
|
| 1946 | + $fk_to_this = $related_model_obj_in_cache->get_model()->get_foreign_key_to( |
|
| 1947 | + $model->get_this_model_name() |
|
| 1948 | + ); |
|
| 1949 | + $related_model_obj_in_cache->set($fk_to_this->get_name(), $this->ID()); |
|
| 1950 | + if ($related_model_obj_in_cache->ID()) { |
|
| 1951 | + $related_model_obj_in_cache->save(); |
|
| 1952 | + } |
|
| 1953 | + } |
|
| 1954 | + } |
|
| 1955 | + } |
|
| 1956 | + } |
|
| 1957 | + |
|
| 1958 | + |
|
| 1959 | + /** |
|
| 1960 | + * Saves this model object and its NEW cached relations to the database. |
|
| 1961 | + * (Meaning, for now, IT DOES NOT WORK if the cached items already exist in the DB. |
|
| 1962 | + * In order for that to work, we would need to mark model objects as dirty/clean... |
|
| 1963 | + * because otherwise, there's a potential for infinite looping of saving |
|
| 1964 | + * Saves the cached related model objects, and ensures the relation between them |
|
| 1965 | + * and this object and properly setup |
|
| 1966 | + * |
|
| 1967 | + * @return int ID of new model object on save; 0 on failure+ |
|
| 1968 | + * @throws ReflectionException |
|
| 1969 | + * @throws InvalidArgumentException |
|
| 1970 | + * @throws InvalidInterfaceException |
|
| 1971 | + * @throws InvalidDataTypeException |
|
| 1972 | + * @throws EE_Error |
|
| 1973 | + */ |
|
| 1974 | + public function save_new_cached_related_model_objs() |
|
| 1975 | + { |
|
| 1976 | + // make sure this has been saved |
|
| 1977 | + if (! $this->ID()) { |
|
| 1978 | + $id = $this->save(); |
|
| 1979 | + } else { |
|
| 1980 | + $id = $this->ID(); |
|
| 1981 | + } |
|
| 1982 | + // now save all the NEW cached model objects (ie they don't exist in the DB) |
|
| 1983 | + foreach ($this->get_model()->relation_settings() as $relationName => $relationObj) { |
|
| 1984 | + if ($this->_model_relations[ $relationName ]) { |
|
| 1985 | + // is this a relation where we should expect just ONE related object (ie, EE_Belongs_To_relation) |
|
| 1986 | + // or MANY related objects (ie, EE_HABTM_Relation or EE_Has_Many_Relation)? |
|
| 1987 | + /* @var $related_model_obj EE_Base_Class */ |
|
| 1988 | + if ($relationObj instanceof EE_Belongs_To_Relation) { |
|
| 1989 | + // add a relation to that relation type (which saves the appropriate thing in the process) |
|
| 1990 | + // but ONLY if it DOES NOT exist in the DB |
|
| 1991 | + $related_model_obj = $this->_model_relations[ $relationName ]; |
|
| 1992 | + // if( ! $related_model_obj->ID()){ |
|
| 1993 | + $this->_add_relation_to($related_model_obj, $relationName); |
|
| 1994 | + $related_model_obj->save_new_cached_related_model_objs(); |
|
| 1995 | + // } |
|
| 1996 | + } else { |
|
| 1997 | + foreach ($this->_model_relations[ $relationName ] as $related_model_obj) { |
|
| 1998 | + // add a relation to that relation type (which saves the appropriate thing in the process) |
|
| 1999 | + // but ONLY if it DOES NOT exist in the DB |
|
| 2000 | + // if( ! $related_model_obj->ID()){ |
|
| 2001 | + $this->_add_relation_to($related_model_obj, $relationName); |
|
| 2002 | + $related_model_obj->save_new_cached_related_model_objs(); |
|
| 2003 | + // } |
|
| 2004 | + } |
|
| 2005 | + } |
|
| 2006 | + } |
|
| 2007 | + } |
|
| 2008 | + return $id; |
|
| 2009 | + } |
|
| 2010 | + |
|
| 2011 | + |
|
| 2012 | + /** |
|
| 2013 | + * for getting a model while instantiated. |
|
| 2014 | + * |
|
| 2015 | + * @return EEM_Base | EEM_CPT_Base |
|
| 2016 | + * @throws ReflectionException |
|
| 2017 | + * @throws InvalidArgumentException |
|
| 2018 | + * @throws InvalidInterfaceException |
|
| 2019 | + * @throws InvalidDataTypeException |
|
| 2020 | + * @throws EE_Error |
|
| 2021 | + */ |
|
| 2022 | + public function get_model() |
|
| 2023 | + { |
|
| 2024 | + if (! $this->_model) { |
|
| 2025 | + $modelName = self::_get_model_classname(get_class($this)); |
|
| 2026 | + $this->_model = self::_get_model_instance_with_name($modelName, $this->_timezone); |
|
| 2027 | + } else { |
|
| 2028 | + $this->_model->set_timezone($this->_timezone); |
|
| 2029 | + } |
|
| 2030 | + return $this->_model; |
|
| 2031 | + } |
|
| 2032 | + |
|
| 2033 | + |
|
| 2034 | + /** |
|
| 2035 | + * @param $props_n_values |
|
| 2036 | + * @param $classname |
|
| 2037 | + * @return mixed bool|EE_Base_Class|EEM_CPT_Base |
|
| 2038 | + * @throws ReflectionException |
|
| 2039 | + * @throws InvalidArgumentException |
|
| 2040 | + * @throws InvalidInterfaceException |
|
| 2041 | + * @throws InvalidDataTypeException |
|
| 2042 | + * @throws EE_Error |
|
| 2043 | + */ |
|
| 2044 | + protected static function _get_object_from_entity_mapper($props_n_values, $classname) |
|
| 2045 | + { |
|
| 2046 | + // TODO: will not work for Term_Relationships because they have no PK! |
|
| 2047 | + $primary_id_ref = self::_get_primary_key_name($classname); |
|
| 2048 | + if (array_key_exists($primary_id_ref, $props_n_values) |
|
| 2049 | + && ! empty($props_n_values[ $primary_id_ref ]) |
|
| 2050 | + ) { |
|
| 2051 | + $id = $props_n_values[ $primary_id_ref ]; |
|
| 2052 | + return self::_get_model($classname)->get_from_entity_map($id); |
|
| 2053 | + } |
|
| 2054 | + return false; |
|
| 2055 | + } |
|
| 2056 | + |
|
| 2057 | + |
|
| 2058 | + /** |
|
| 2059 | + * This is called by child static "new_instance" method and we'll check to see if there is an existing db entry for |
|
| 2060 | + * the primary key (if present in incoming values). If there is a key in the incoming array that matches the |
|
| 2061 | + * primary key for the model AND it is not null, then we check the db. If there's a an object we return it. If not |
|
| 2062 | + * we return false. |
|
| 2063 | + * |
|
| 2064 | + * @param array $props_n_values incoming array of properties and their values |
|
| 2065 | + * @param string $classname the classname of the child class |
|
| 2066 | + * @param null $timezone |
|
| 2067 | + * @param array $date_formats incoming date_formats in an array where the first value is the |
|
| 2068 | + * date_format and the second value is the time format |
|
| 2069 | + * @return mixed (EE_Base_Class|bool) |
|
| 2070 | + * @throws InvalidArgumentException |
|
| 2071 | + * @throws InvalidInterfaceException |
|
| 2072 | + * @throws InvalidDataTypeException |
|
| 2073 | + * @throws EE_Error |
|
| 2074 | + * @throws ReflectionException |
|
| 2075 | + * @throws ReflectionException |
|
| 2076 | + * @throws ReflectionException |
|
| 2077 | + */ |
|
| 2078 | + protected static function _check_for_object($props_n_values, $classname, $timezone = null, $date_formats = array()) |
|
| 2079 | + { |
|
| 2080 | + $existing = null; |
|
| 2081 | + $model = self::_get_model($classname, $timezone); |
|
| 2082 | + if ($model->has_primary_key_field()) { |
|
| 2083 | + $primary_id_ref = self::_get_primary_key_name($classname); |
|
| 2084 | + if (array_key_exists($primary_id_ref, $props_n_values) |
|
| 2085 | + && ! empty($props_n_values[ $primary_id_ref ]) |
|
| 2086 | + ) { |
|
| 2087 | + $existing = $model->get_one_by_ID( |
|
| 2088 | + $props_n_values[ $primary_id_ref ] |
|
| 2089 | + ); |
|
| 2090 | + } |
|
| 2091 | + } elseif ($model->has_all_combined_primary_key_fields($props_n_values)) { |
|
| 2092 | + // no primary key on this model, but there's still a matching item in the DB |
|
| 2093 | + $existing = self::_get_model($classname, $timezone)->get_one_by_ID( |
|
| 2094 | + self::_get_model($classname, $timezone) |
|
| 2095 | + ->get_index_primary_key_string($props_n_values) |
|
| 2096 | + ); |
|
| 2097 | + } |
|
| 2098 | + if ($existing) { |
|
| 2099 | + // set date formats if present before setting values |
|
| 2100 | + if (! empty($date_formats) && is_array($date_formats)) { |
|
| 2101 | + $existing->set_date_format($date_formats[0]); |
|
| 2102 | + $existing->set_time_format($date_formats[1]); |
|
| 2103 | + } else { |
|
| 2104 | + // set default formats for date and time |
|
| 2105 | + $existing->set_date_format(get_option('date_format')); |
|
| 2106 | + $existing->set_time_format(get_option('time_format')); |
|
| 2107 | + } |
|
| 2108 | + foreach ($props_n_values as $property => $field_value) { |
|
| 2109 | + $existing->set($property, $field_value); |
|
| 2110 | + } |
|
| 2111 | + return $existing; |
|
| 2112 | + } |
|
| 2113 | + return false; |
|
| 2114 | + } |
|
| 2115 | + |
|
| 2116 | + |
|
| 2117 | + /** |
|
| 2118 | + * Gets the EEM_*_Model for this class |
|
| 2119 | + * |
|
| 2120 | + * @access public now, as this is more convenient |
|
| 2121 | + * @param $classname |
|
| 2122 | + * @param null $timezone |
|
| 2123 | + * @throws ReflectionException |
|
| 2124 | + * @throws InvalidArgumentException |
|
| 2125 | + * @throws InvalidInterfaceException |
|
| 2126 | + * @throws InvalidDataTypeException |
|
| 2127 | + * @throws EE_Error |
|
| 2128 | + * @return EEM_Base |
|
| 2129 | + */ |
|
| 2130 | + protected static function _get_model($classname, $timezone = null) |
|
| 2131 | + { |
|
| 2132 | + // find model for this class |
|
| 2133 | + if (! $classname) { |
|
| 2134 | + throw new EE_Error( |
|
| 2135 | + sprintf( |
|
| 2136 | + esc_html__( |
|
| 2137 | + 'What were you thinking calling _get_model(%s)?? You need to specify the class name', |
|
| 2138 | + 'event_espresso' |
|
| 2139 | + ), |
|
| 2140 | + $classname |
|
| 2141 | + ) |
|
| 2142 | + ); |
|
| 2143 | + } |
|
| 2144 | + $modelName = self::_get_model_classname($classname); |
|
| 2145 | + return self::_get_model_instance_with_name($modelName, $timezone); |
|
| 2146 | + } |
|
| 2147 | + |
|
| 2148 | + |
|
| 2149 | + /** |
|
| 2150 | + * Gets the model instance (eg instance of EEM_Attendee) given its classname (eg EE_Attendee) |
|
| 2151 | + * |
|
| 2152 | + * @param string $model_classname |
|
| 2153 | + * @param null $timezone |
|
| 2154 | + * @return EEM_Base |
|
| 2155 | + * @throws ReflectionException |
|
| 2156 | + * @throws InvalidArgumentException |
|
| 2157 | + * @throws InvalidInterfaceException |
|
| 2158 | + * @throws InvalidDataTypeException |
|
| 2159 | + * @throws EE_Error |
|
| 2160 | + */ |
|
| 2161 | + protected static function _get_model_instance_with_name($model_classname, $timezone = null) |
|
| 2162 | + { |
|
| 2163 | + $model_classname = str_replace('EEM_', '', $model_classname); |
|
| 2164 | + $model = EE_Registry::instance()->load_model($model_classname); |
|
| 2165 | + $model->set_timezone($timezone); |
|
| 2166 | + return $model; |
|
| 2167 | + } |
|
| 2168 | + |
|
| 2169 | + |
|
| 2170 | + /** |
|
| 2171 | + * If a model name is provided (eg Registration), gets the model classname for that model. |
|
| 2172 | + * Also works if a model class's classname is provided (eg EE_Registration). |
|
| 2173 | + * |
|
| 2174 | + * @param null $model_name |
|
| 2175 | + * @return string like EEM_Attendee |
|
| 2176 | + */ |
|
| 2177 | + private static function _get_model_classname($model_name = null) |
|
| 2178 | + { |
|
| 2179 | + if (strpos($model_name, 'EE_') === 0) { |
|
| 2180 | + $model_classname = str_replace('EE_', 'EEM_', $model_name); |
|
| 2181 | + } else { |
|
| 2182 | + $model_classname = 'EEM_' . $model_name; |
|
| 2183 | + } |
|
| 2184 | + return $model_classname; |
|
| 2185 | + } |
|
| 2186 | + |
|
| 2187 | + |
|
| 2188 | + /** |
|
| 2189 | + * returns the name of the primary key attribute |
|
| 2190 | + * |
|
| 2191 | + * @param null $classname |
|
| 2192 | + * @throws ReflectionException |
|
| 2193 | + * @throws InvalidArgumentException |
|
| 2194 | + * @throws InvalidInterfaceException |
|
| 2195 | + * @throws InvalidDataTypeException |
|
| 2196 | + * @throws EE_Error |
|
| 2197 | + * @return string |
|
| 2198 | + */ |
|
| 2199 | + protected static function _get_primary_key_name($classname = null) |
|
| 2200 | + { |
|
| 2201 | + if (! $classname) { |
|
| 2202 | + throw new EE_Error( |
|
| 2203 | + sprintf( |
|
| 2204 | + esc_html__('What were you thinking calling _get_primary_key_name(%s)', 'event_espresso'), |
|
| 2205 | + $classname |
|
| 2206 | + ) |
|
| 2207 | + ); |
|
| 2208 | + } |
|
| 2209 | + return self::_get_model($classname)->get_primary_key_field()->get_name(); |
|
| 2210 | + } |
|
| 2211 | + |
|
| 2212 | + |
|
| 2213 | + /** |
|
| 2214 | + * Gets the value of the primary key. |
|
| 2215 | + * If the object hasn't yet been saved, it should be whatever the model field's default was |
|
| 2216 | + * (eg, if this were the EE_Event class, look at the primary key field on EEM_Event and see what its default value |
|
| 2217 | + * is. Usually defaults for integer primary keys are 0; string primary keys are usually NULL). |
|
| 2218 | + * |
|
| 2219 | + * @return mixed, if the primary key is of type INT it'll be an int. Otherwise it could be a string |
|
| 2220 | + * @throws ReflectionException |
|
| 2221 | + * @throws InvalidArgumentException |
|
| 2222 | + * @throws InvalidInterfaceException |
|
| 2223 | + * @throws InvalidDataTypeException |
|
| 2224 | + * @throws EE_Error |
|
| 2225 | + */ |
|
| 2226 | + public function ID() |
|
| 2227 | + { |
|
| 2228 | + $model = $this->get_model(); |
|
| 2229 | + // now that we know the name of the variable, use a variable variable to get its value and return its |
|
| 2230 | + if ($model->has_primary_key_field()) { |
|
| 2231 | + return $this->_fields[ $model->primary_key_name() ]; |
|
| 2232 | + } |
|
| 2233 | + return $model->get_index_primary_key_string($this->_fields); |
|
| 2234 | + } |
|
| 2235 | + |
|
| 2236 | + |
|
| 2237 | + /** |
|
| 2238 | + * Adds a relationship to the specified EE_Base_Class object, given the relationship's name. Eg, if the current |
|
| 2239 | + * model is related to a group of events, the $relationName should be 'Event', and should be a key in the EE |
|
| 2240 | + * Model's $_model_relations array. If this model object doesn't exist in the DB, just caches the related thing |
|
| 2241 | + * |
|
| 2242 | + * @param mixed $otherObjectModelObjectOrID EE_Base_Class or the ID of the other object |
|
| 2243 | + * @param string $relationName eg 'Events','Question',etc. |
|
| 2244 | + * an attendee to a group, you also want to specify which role they |
|
| 2245 | + * will have in that group. So you would use this parameter to |
|
| 2246 | + * specify array('role-column-name'=>'role-id') |
|
| 2247 | + * @param array $extra_join_model_fields_n_values You can optionally include an array of key=>value pairs that |
|
| 2248 | + * allow you to further constrict the relation to being added. |
|
| 2249 | + * However, keep in mind that the columns (keys) given must match a |
|
| 2250 | + * column on the JOIN table and currently only the HABTM models |
|
| 2251 | + * accept these additional conditions. Also remember that if an |
|
| 2252 | + * exact match isn't found for these extra cols/val pairs, then a |
|
| 2253 | + * NEW row is created in the join table. |
|
| 2254 | + * @param null $cache_id |
|
| 2255 | + * @throws ReflectionException |
|
| 2256 | + * @throws InvalidArgumentException |
|
| 2257 | + * @throws InvalidInterfaceException |
|
| 2258 | + * @throws InvalidDataTypeException |
|
| 2259 | + * @throws EE_Error |
|
| 2260 | + * @return EE_Base_Class the object the relation was added to |
|
| 2261 | + */ |
|
| 2262 | + public function _add_relation_to( |
|
| 2263 | + $otherObjectModelObjectOrID, |
|
| 2264 | + $relationName, |
|
| 2265 | + $extra_join_model_fields_n_values = array(), |
|
| 2266 | + $cache_id = null |
|
| 2267 | + ) { |
|
| 2268 | + $model = $this->get_model(); |
|
| 2269 | + // if this thing exists in the DB, save the relation to the DB |
|
| 2270 | + if ($this->ID()) { |
|
| 2271 | + $otherObject = $model->add_relationship_to( |
|
| 2272 | + $this, |
|
| 2273 | + $otherObjectModelObjectOrID, |
|
| 2274 | + $relationName, |
|
| 2275 | + $extra_join_model_fields_n_values |
|
| 2276 | + ); |
|
| 2277 | + // clear cache so future get_many_related and get_first_related() return new results. |
|
| 2278 | + $this->clear_cache($relationName, $otherObject, true); |
|
| 2279 | + if ($otherObject instanceof EE_Base_Class) { |
|
| 2280 | + $otherObject->clear_cache($model->get_this_model_name(), $this); |
|
| 2281 | + } |
|
| 2282 | + } else { |
|
| 2283 | + // this thing doesn't exist in the DB, so just cache it |
|
| 2284 | + if (! $otherObjectModelObjectOrID instanceof EE_Base_Class) { |
|
| 2285 | + throw new EE_Error( |
|
| 2286 | + sprintf( |
|
| 2287 | + esc_html__( |
|
| 2288 | + 'Before a model object is saved to the database, calls to _add_relation_to must be passed an actual object, not just an ID. You provided %s as the model object to a %s', |
|
| 2289 | + 'event_espresso' |
|
| 2290 | + ), |
|
| 2291 | + $otherObjectModelObjectOrID, |
|
| 2292 | + get_class($this) |
|
| 2293 | + ) |
|
| 2294 | + ); |
|
| 2295 | + } |
|
| 2296 | + $otherObject = $otherObjectModelObjectOrID; |
|
| 2297 | + $this->cache($relationName, $otherObjectModelObjectOrID, $cache_id); |
|
| 2298 | + } |
|
| 2299 | + if ($otherObject instanceof EE_Base_Class) { |
|
| 2300 | + // fix the reciprocal relation too |
|
| 2301 | + if ($otherObject->ID()) { |
|
| 2302 | + // its saved so assumed relations exist in the DB, so we can just |
|
| 2303 | + // clear the cache so future queries use the updated info in the DB |
|
| 2304 | + $otherObject->clear_cache( |
|
| 2305 | + $model->get_this_model_name(), |
|
| 2306 | + null, |
|
| 2307 | + true |
|
| 2308 | + ); |
|
| 2309 | + } else { |
|
| 2310 | + // it's not saved, so it caches relations like this |
|
| 2311 | + $otherObject->cache($model->get_this_model_name(), $this); |
|
| 2312 | + } |
|
| 2313 | + } |
|
| 2314 | + return $otherObject; |
|
| 2315 | + } |
|
| 2316 | + |
|
| 2317 | + |
|
| 2318 | + /** |
|
| 2319 | + * Removes a relationship to the specified EE_Base_Class object, given the relationships' name. Eg, if the current |
|
| 2320 | + * model is related to a group of events, the $relationName should be 'Events', and should be a key in the EE |
|
| 2321 | + * Model's $_model_relations array. If this model object doesn't exist in the DB, just removes the related thing |
|
| 2322 | + * from the cache |
|
| 2323 | + * |
|
| 2324 | + * @param mixed $otherObjectModelObjectOrID |
|
| 2325 | + * EE_Base_Class or the ID of the other object, OR an array key into the cache if this isn't saved |
|
| 2326 | + * to the DB yet |
|
| 2327 | + * @param string $relationName |
|
| 2328 | + * @param array $where_query |
|
| 2329 | + * You can optionally include an array of key=>value pairs that allow you to further constrict the |
|
| 2330 | + * relation to being added. However, keep in mind that the columns (keys) given must match a column |
|
| 2331 | + * on the JOIN table and currently only the HABTM models accept these additional conditions. Also |
|
| 2332 | + * remember that if an exact match isn't found for these extra cols/val pairs, then no row is |
|
| 2333 | + * deleted. |
|
| 2334 | + * @return EE_Base_Class the relation was removed from |
|
| 2335 | + * @throws ReflectionException |
|
| 2336 | + * @throws InvalidArgumentException |
|
| 2337 | + * @throws InvalidInterfaceException |
|
| 2338 | + * @throws InvalidDataTypeException |
|
| 2339 | + * @throws EE_Error |
|
| 2340 | + */ |
|
| 2341 | + public function _remove_relation_to($otherObjectModelObjectOrID, $relationName, $where_query = array()) |
|
| 2342 | + { |
|
| 2343 | + if ($this->ID()) { |
|
| 2344 | + // if this exists in the DB, save the relation change to the DB too |
|
| 2345 | + $otherObject = $this->get_model()->remove_relationship_to( |
|
| 2346 | + $this, |
|
| 2347 | + $otherObjectModelObjectOrID, |
|
| 2348 | + $relationName, |
|
| 2349 | + $where_query |
|
| 2350 | + ); |
|
| 2351 | + $this->clear_cache( |
|
| 2352 | + $relationName, |
|
| 2353 | + $otherObject |
|
| 2354 | + ); |
|
| 2355 | + } else { |
|
| 2356 | + // this doesn't exist in the DB, just remove it from the cache |
|
| 2357 | + $otherObject = $this->clear_cache( |
|
| 2358 | + $relationName, |
|
| 2359 | + $otherObjectModelObjectOrID |
|
| 2360 | + ); |
|
| 2361 | + } |
|
| 2362 | + if ($otherObject instanceof EE_Base_Class) { |
|
| 2363 | + $otherObject->clear_cache( |
|
| 2364 | + $this->get_model()->get_this_model_name(), |
|
| 2365 | + $this |
|
| 2366 | + ); |
|
| 2367 | + } |
|
| 2368 | + return $otherObject; |
|
| 2369 | + } |
|
| 2370 | + |
|
| 2371 | + |
|
| 2372 | + /** |
|
| 2373 | + * Removes ALL the related things for the $relationName. |
|
| 2374 | + * |
|
| 2375 | + * @param string $relationName |
|
| 2376 | + * @param array $where_query_params @see https://github.com/eventespresso/event-espresso-core/tree/master/docs/G--Model-System/model-query-params.md#0-where-conditions |
|
| 2377 | + * @return EE_Base_Class |
|
| 2378 | + * @throws ReflectionException |
|
| 2379 | + * @throws InvalidArgumentException |
|
| 2380 | + * @throws InvalidInterfaceException |
|
| 2381 | + * @throws InvalidDataTypeException |
|
| 2382 | + * @throws EE_Error |
|
| 2383 | + */ |
|
| 2384 | + public function _remove_relations($relationName, $where_query_params = array()) |
|
| 2385 | + { |
|
| 2386 | + if ($this->ID()) { |
|
| 2387 | + // if this exists in the DB, save the relation change to the DB too |
|
| 2388 | + $otherObjects = $this->get_model()->remove_relations( |
|
| 2389 | + $this, |
|
| 2390 | + $relationName, |
|
| 2391 | + $where_query_params |
|
| 2392 | + ); |
|
| 2393 | + $this->clear_cache( |
|
| 2394 | + $relationName, |
|
| 2395 | + null, |
|
| 2396 | + true |
|
| 2397 | + ); |
|
| 2398 | + } else { |
|
| 2399 | + // this doesn't exist in the DB, just remove it from the cache |
|
| 2400 | + $otherObjects = $this->clear_cache( |
|
| 2401 | + $relationName, |
|
| 2402 | + null, |
|
| 2403 | + true |
|
| 2404 | + ); |
|
| 2405 | + } |
|
| 2406 | + if (is_array($otherObjects)) { |
|
| 2407 | + foreach ($otherObjects as $otherObject) { |
|
| 2408 | + $otherObject->clear_cache( |
|
| 2409 | + $this->get_model()->get_this_model_name(), |
|
| 2410 | + $this |
|
| 2411 | + ); |
|
| 2412 | + } |
|
| 2413 | + } |
|
| 2414 | + return $otherObjects; |
|
| 2415 | + } |
|
| 2416 | + |
|
| 2417 | + |
|
| 2418 | + /** |
|
| 2419 | + * Gets all the related model objects of the specified type. Eg, if the current class if |
|
| 2420 | + * EE_Event, you could call $this->get_many_related('Registration') to get an array of all the |
|
| 2421 | + * EE_Registration objects which related to this event. Note: by default, we remove the "default query params" |
|
| 2422 | + * because we want to get even deleted items etc. |
|
| 2423 | + * |
|
| 2424 | + * @param string $relationName key in the model's _model_relations array |
|
| 2425 | + * @param array $query_params @see https://github.com/eventespresso/event-espresso-core/tree/master/docs/G--Model-System/model-query-params.md#0-where-conditions |
|
| 2426 | + * @return EE_Base_Class[] Results not necessarily indexed by IDs, because some results might not have primary |
|
| 2427 | + * keys or might not be saved yet. Consider using EEM_Base::get_IDs() on these |
|
| 2428 | + * results if you want IDs |
|
| 2429 | + * @throws ReflectionException |
|
| 2430 | + * @throws InvalidArgumentException |
|
| 2431 | + * @throws InvalidInterfaceException |
|
| 2432 | + * @throws InvalidDataTypeException |
|
| 2433 | + * @throws EE_Error |
|
| 2434 | + */ |
|
| 2435 | + public function get_many_related($relationName, $query_params = array()) |
|
| 2436 | + { |
|
| 2437 | + if ($this->ID()) { |
|
| 2438 | + // this exists in the DB, so get the related things from either the cache or the DB |
|
| 2439 | + // if there are query parameters, forget about caching the related model objects. |
|
| 2440 | + if ($query_params) { |
|
| 2441 | + $related_model_objects = $this->get_model()->get_all_related( |
|
| 2442 | + $this, |
|
| 2443 | + $relationName, |
|
| 2444 | + $query_params |
|
| 2445 | + ); |
|
| 2446 | + } else { |
|
| 2447 | + // did we already cache the result of this query? |
|
| 2448 | + $cached_results = $this->get_all_from_cache($relationName); |
|
| 2449 | + if (! $cached_results) { |
|
| 2450 | + $related_model_objects = $this->get_model()->get_all_related( |
|
| 2451 | + $this, |
|
| 2452 | + $relationName, |
|
| 2453 | + $query_params |
|
| 2454 | + ); |
|
| 2455 | + // if no query parameters were passed, then we got all the related model objects |
|
| 2456 | + // for that relation. We can cache them then. |
|
| 2457 | + foreach ($related_model_objects as $related_model_object) { |
|
| 2458 | + $this->cache($relationName, $related_model_object); |
|
| 2459 | + } |
|
| 2460 | + } else { |
|
| 2461 | + $related_model_objects = $cached_results; |
|
| 2462 | + } |
|
| 2463 | + } |
|
| 2464 | + } else { |
|
| 2465 | + // this doesn't exist in the DB, so just get the related things from the cache |
|
| 2466 | + $related_model_objects = $this->get_all_from_cache($relationName); |
|
| 2467 | + } |
|
| 2468 | + return $related_model_objects; |
|
| 2469 | + } |
|
| 2470 | + |
|
| 2471 | + |
|
| 2472 | + /** |
|
| 2473 | + * Instead of getting the related model objects, simply counts them. Ignores default_where_conditions by default, |
|
| 2474 | + * unless otherwise specified in the $query_params |
|
| 2475 | + * |
|
| 2476 | + * @param string $relation_name model_name like 'Event', or 'Registration' |
|
| 2477 | + * @param array $query_params @see https://github.com/eventespresso/event-espresso-core/tree/master/docs/G--Model-System/model-query-params.md |
|
| 2478 | + * @param string $field_to_count name of field to count by. By default, uses primary key |
|
| 2479 | + * @param bool $distinct if we want to only count the distinct values for the column then you can trigger |
|
| 2480 | + * that by the setting $distinct to TRUE; |
|
| 2481 | + * @return int |
|
| 2482 | + * @throws ReflectionException |
|
| 2483 | + * @throws InvalidArgumentException |
|
| 2484 | + * @throws InvalidInterfaceException |
|
| 2485 | + * @throws InvalidDataTypeException |
|
| 2486 | + * @throws EE_Error |
|
| 2487 | + */ |
|
| 2488 | + public function count_related($relation_name, $query_params = array(), $field_to_count = null, $distinct = false) |
|
| 2489 | + { |
|
| 2490 | + return $this->get_model()->count_related( |
|
| 2491 | + $this, |
|
| 2492 | + $relation_name, |
|
| 2493 | + $query_params, |
|
| 2494 | + $field_to_count, |
|
| 2495 | + $distinct |
|
| 2496 | + ); |
|
| 2497 | + } |
|
| 2498 | + |
|
| 2499 | + |
|
| 2500 | + /** |
|
| 2501 | + * Instead of getting the related model objects, simply sums up the values of the specified field. |
|
| 2502 | + * Note: ignores default_where_conditions by default, unless otherwise specified in the $query_params |
|
| 2503 | + * |
|
| 2504 | + * @param string $relation_name model_name like 'Event', or 'Registration' |
|
| 2505 | + * @param array $query_params @see https://github.com/eventespresso/event-espresso-core/tree/master/docs/G--Model-System/model-query-params.md |
|
| 2506 | + * @param string $field_to_sum name of field to count by. |
|
| 2507 | + * By default, uses primary key |
|
| 2508 | + * (which doesn't make much sense, so you should probably change it) |
|
| 2509 | + * @return int |
|
| 2510 | + * @throws ReflectionException |
|
| 2511 | + * @throws InvalidArgumentException |
|
| 2512 | + * @throws InvalidInterfaceException |
|
| 2513 | + * @throws InvalidDataTypeException |
|
| 2514 | + * @throws EE_Error |
|
| 2515 | + */ |
|
| 2516 | + public function sum_related($relation_name, $query_params = array(), $field_to_sum = null) |
|
| 2517 | + { |
|
| 2518 | + return $this->get_model()->sum_related( |
|
| 2519 | + $this, |
|
| 2520 | + $relation_name, |
|
| 2521 | + $query_params, |
|
| 2522 | + $field_to_sum |
|
| 2523 | + ); |
|
| 2524 | + } |
|
| 2525 | + |
|
| 2526 | + |
|
| 2527 | + /** |
|
| 2528 | + * Gets the first (ie, one) related model object of the specified type. |
|
| 2529 | + * |
|
| 2530 | + * @param string $relationName key in the model's _model_relations array |
|
| 2531 | + * @param array $query_params @see https://github.com/eventespresso/event-espresso-core/tree/master/docs/G--Model-System/model-query-params.md |
|
| 2532 | + * @return EE_Base_Class (not an array, a single object) |
|
| 2533 | + * @throws ReflectionException |
|
| 2534 | + * @throws InvalidArgumentException |
|
| 2535 | + * @throws InvalidInterfaceException |
|
| 2536 | + * @throws InvalidDataTypeException |
|
| 2537 | + * @throws EE_Error |
|
| 2538 | + */ |
|
| 2539 | + public function get_first_related($relationName, $query_params = array()) |
|
| 2540 | + { |
|
| 2541 | + $model = $this->get_model(); |
|
| 2542 | + if ($this->ID()) {// this exists in the DB, get from the cache OR the DB |
|
| 2543 | + // if they've provided some query parameters, don't bother trying to cache the result |
|
| 2544 | + // also make sure we're not caching the result of get_first_related |
|
| 2545 | + // on a relation which should have an array of objects (because the cache might have an array of objects) |
|
| 2546 | + if ($query_params |
|
| 2547 | + || ! $model->related_settings_for($relationName) |
|
| 2548 | + instanceof |
|
| 2549 | + EE_Belongs_To_Relation |
|
| 2550 | + ) { |
|
| 2551 | + $related_model_object = $model->get_first_related( |
|
| 2552 | + $this, |
|
| 2553 | + $relationName, |
|
| 2554 | + $query_params |
|
| 2555 | + ); |
|
| 2556 | + } else { |
|
| 2557 | + // first, check if we've already cached the result of this query |
|
| 2558 | + $cached_result = $this->get_one_from_cache($relationName); |
|
| 2559 | + if (! $cached_result) { |
|
| 2560 | + $related_model_object = $model->get_first_related( |
|
| 2561 | + $this, |
|
| 2562 | + $relationName, |
|
| 2563 | + $query_params |
|
| 2564 | + ); |
|
| 2565 | + $this->cache($relationName, $related_model_object); |
|
| 2566 | + } else { |
|
| 2567 | + $related_model_object = $cached_result; |
|
| 2568 | + } |
|
| 2569 | + } |
|
| 2570 | + } else { |
|
| 2571 | + $related_model_object = null; |
|
| 2572 | + // this doesn't exist in the Db, |
|
| 2573 | + // but maybe the relation is of type belongs to, and so the related thing might |
|
| 2574 | + if ($model->related_settings_for($relationName) instanceof EE_Belongs_To_Relation) { |
|
| 2575 | + $related_model_object = $model->get_first_related( |
|
| 2576 | + $this, |
|
| 2577 | + $relationName, |
|
| 2578 | + $query_params |
|
| 2579 | + ); |
|
| 2580 | + } |
|
| 2581 | + // this doesn't exist in the DB and apparently the thing it belongs to doesn't either, |
|
| 2582 | + // just get what's cached on this object |
|
| 2583 | + if (! $related_model_object) { |
|
| 2584 | + $related_model_object = $this->get_one_from_cache($relationName); |
|
| 2585 | + } |
|
| 2586 | + } |
|
| 2587 | + return $related_model_object; |
|
| 2588 | + } |
|
| 2589 | + |
|
| 2590 | + |
|
| 2591 | + /** |
|
| 2592 | + * Does a delete on all related objects of type $relationName and removes |
|
| 2593 | + * the current model object's relation to them. If they can't be deleted (because |
|
| 2594 | + * of blocking related model objects) does nothing. If the related model objects are |
|
| 2595 | + * soft-deletable, they will be soft-deleted regardless of related blocking model objects. |
|
| 2596 | + * If this model object doesn't exist yet in the DB, just removes its related things |
|
| 2597 | + * |
|
| 2598 | + * @param string $relationName |
|
| 2599 | + * @param array $query_params @see https://github.com/eventespresso/event-espresso-core/tree/master/docs/G--Model-System/model-query-params.md |
|
| 2600 | + * @return int how many deleted |
|
| 2601 | + * @throws ReflectionException |
|
| 2602 | + * @throws InvalidArgumentException |
|
| 2603 | + * @throws InvalidInterfaceException |
|
| 2604 | + * @throws InvalidDataTypeException |
|
| 2605 | + * @throws EE_Error |
|
| 2606 | + */ |
|
| 2607 | + public function delete_related($relationName, $query_params = array()) |
|
| 2608 | + { |
|
| 2609 | + if ($this->ID()) { |
|
| 2610 | + $count = $this->get_model()->delete_related( |
|
| 2611 | + $this, |
|
| 2612 | + $relationName, |
|
| 2613 | + $query_params |
|
| 2614 | + ); |
|
| 2615 | + } else { |
|
| 2616 | + $count = count($this->get_all_from_cache($relationName)); |
|
| 2617 | + $this->clear_cache($relationName, null, true); |
|
| 2618 | + } |
|
| 2619 | + return $count; |
|
| 2620 | + } |
|
| 2621 | + |
|
| 2622 | + |
|
| 2623 | + /** |
|
| 2624 | + * Does a hard delete (ie, removes the DB row) on all related objects of type $relationName and removes |
|
| 2625 | + * the current model object's relation to them. If they can't be deleted (because |
|
| 2626 | + * of blocking related model objects) just does a soft delete on it instead, if possible. |
|
| 2627 | + * If the related thing isn't a soft-deletable model object, this function is identical |
|
| 2628 | + * to delete_related(). If this model object doesn't exist in the DB, just remove its related things |
|
| 2629 | + * |
|
| 2630 | + * @param string $relationName |
|
| 2631 | + * @param array $query_params @see https://github.com/eventespresso/event-espresso-core/tree/master/docs/G--Model-System/model-query-params.md |
|
| 2632 | + * @return int how many deleted (including those soft deleted) |
|
| 2633 | + * @throws ReflectionException |
|
| 2634 | + * @throws InvalidArgumentException |
|
| 2635 | + * @throws InvalidInterfaceException |
|
| 2636 | + * @throws InvalidDataTypeException |
|
| 2637 | + * @throws EE_Error |
|
| 2638 | + */ |
|
| 2639 | + public function delete_related_permanently($relationName, $query_params = array()) |
|
| 2640 | + { |
|
| 2641 | + if ($this->ID()) { |
|
| 2642 | + $count = $this->get_model()->delete_related_permanently( |
|
| 2643 | + $this, |
|
| 2644 | + $relationName, |
|
| 2645 | + $query_params |
|
| 2646 | + ); |
|
| 2647 | + } else { |
|
| 2648 | + $count = count($this->get_all_from_cache($relationName)); |
|
| 2649 | + } |
|
| 2650 | + $this->clear_cache($relationName, null, true); |
|
| 2651 | + return $count; |
|
| 2652 | + } |
|
| 2653 | + |
|
| 2654 | + |
|
| 2655 | + /** |
|
| 2656 | + * is_set |
|
| 2657 | + * Just a simple utility function children can use for checking if property exists |
|
| 2658 | + * |
|
| 2659 | + * @access public |
|
| 2660 | + * @param string $field_name property to check |
|
| 2661 | + * @return bool TRUE if existing,FALSE if not. |
|
| 2662 | + */ |
|
| 2663 | + public function is_set($field_name) |
|
| 2664 | + { |
|
| 2665 | + return isset($this->_fields[ $field_name ]); |
|
| 2666 | + } |
|
| 2667 | + |
|
| 2668 | + |
|
| 2669 | + /** |
|
| 2670 | + * Just a simple utility function children can use for checking if property (or properties) exists and throwing an |
|
| 2671 | + * EE_Error exception if they don't |
|
| 2672 | + * |
|
| 2673 | + * @param mixed (string|array) $properties properties to check |
|
| 2674 | + * @throws EE_Error |
|
| 2675 | + * @return bool TRUE if existing, throw EE_Error if not. |
|
| 2676 | + */ |
|
| 2677 | + protected function _property_exists($properties) |
|
| 2678 | + { |
|
| 2679 | + foreach ((array) $properties as $property_name) { |
|
| 2680 | + // first make sure this property exists |
|
| 2681 | + if (! $this->_fields[ $property_name ]) { |
|
| 2682 | + throw new EE_Error( |
|
| 2683 | + sprintf( |
|
| 2684 | + esc_html__( |
|
| 2685 | + 'Trying to retrieve a non-existent property (%s). Double check the spelling please', |
|
| 2686 | + 'event_espresso' |
|
| 2687 | + ), |
|
| 2688 | + $property_name |
|
| 2689 | + ) |
|
| 2690 | + ); |
|
| 2691 | + } |
|
| 2692 | + } |
|
| 2693 | + return true; |
|
| 2694 | + } |
|
| 2695 | + |
|
| 2696 | + |
|
| 2697 | + /** |
|
| 2698 | + * This simply returns an array of model fields for this object |
|
| 2699 | + * |
|
| 2700 | + * @return array |
|
| 2701 | + * @throws ReflectionException |
|
| 2702 | + * @throws InvalidArgumentException |
|
| 2703 | + * @throws InvalidInterfaceException |
|
| 2704 | + * @throws InvalidDataTypeException |
|
| 2705 | + * @throws EE_Error |
|
| 2706 | + */ |
|
| 2707 | + public function model_field_array() |
|
| 2708 | + { |
|
| 2709 | + $fields = $this->get_model()->field_settings(false); |
|
| 2710 | + $properties = array(); |
|
| 2711 | + // remove prepended underscore |
|
| 2712 | + foreach ($fields as $field_name => $settings) { |
|
| 2713 | + $properties[ $field_name ] = $this->get($field_name); |
|
| 2714 | + } |
|
| 2715 | + return $properties; |
|
| 2716 | + } |
|
| 2717 | + |
|
| 2718 | + |
|
| 2719 | + /** |
|
| 2720 | + * Very handy general function to allow for plugins to extend any child of EE_Base_Class. |
|
| 2721 | + * If a method is called on a child of EE_Base_Class that doesn't exist, this function is called |
|
| 2722 | + * (http://www.garfieldtech.com/blog/php-magic-call) and passed the method's name and arguments. |
|
| 2723 | + * Instead of requiring a plugin to extend the EE_Base_Class |
|
| 2724 | + * (which works fine is there's only 1 plugin, but when will that happen?) |
|
| 2725 | + * they can add a hook onto 'filters_hook_espresso__{className}__{methodName}' |
|
| 2726 | + * (eg, filters_hook_espresso__EE_Answer__my_great_function) |
|
| 2727 | + * and accepts 2 arguments: the object on which the function was called, |
|
| 2728 | + * and an array of the original arguments passed to the function. |
|
| 2729 | + * Whatever their callback function returns will be returned by this function. |
|
| 2730 | + * Example: in functions.php (or in a plugin): |
|
| 2731 | + * add_filter('FHEE__EE_Answer__my_callback','my_callback',10,3); |
|
| 2732 | + * function my_callback($previousReturnValue,EE_Base_Class $object,$argsArray){ |
|
| 2733 | + * $returnString= "you called my_callback! and passed args:".implode(",",$argsArray); |
|
| 2734 | + * return $previousReturnValue.$returnString; |
|
| 2735 | + * } |
|
| 2736 | + * require('EE_Answer.class.php'); |
|
| 2737 | + * $answer= EE_Answer::new_instance(array('REG_ID' => 2,'QST_ID' => 3,'ANS_value' => The answer is 42')); |
|
| 2738 | + * echo $answer->my_callback('monkeys',100); |
|
| 2739 | + * //will output "you called my_callback! and passed args:monkeys,100" |
|
| 2740 | + * |
|
| 2741 | + * @param string $methodName name of method which was called on a child of EE_Base_Class, but which |
|
| 2742 | + * @param array $args array of original arguments passed to the function |
|
| 2743 | + * @throws EE_Error |
|
| 2744 | + * @return mixed whatever the plugin which calls add_filter decides |
|
| 2745 | + */ |
|
| 2746 | + public function __call($methodName, $args) |
|
| 2747 | + { |
|
| 2748 | + $className = get_class($this); |
|
| 2749 | + $tagName = "FHEE__{$className}__{$methodName}"; |
|
| 2750 | + if (! has_filter($tagName)) { |
|
| 2751 | + throw new EE_Error( |
|
| 2752 | + sprintf( |
|
| 2753 | + esc_html__( |
|
| 2754 | + "Method %s on class %s does not exist! You can create one with the following code in functions.php or in a plugin: add_filter('%s','my_callback',10,3);function my_callback(\$previousReturnValue,EE_Base_Class \$object, \$argsArray){/*function body*/return \$whatever;}", |
|
| 2755 | + 'event_espresso' |
|
| 2756 | + ), |
|
| 2757 | + $methodName, |
|
| 2758 | + $className, |
|
| 2759 | + $tagName |
|
| 2760 | + ) |
|
| 2761 | + ); |
|
| 2762 | + } |
|
| 2763 | + return apply_filters($tagName, null, $this, $args); |
|
| 2764 | + } |
|
| 2765 | + |
|
| 2766 | + |
|
| 2767 | + /** |
|
| 2768 | + * Similar to insert_post_meta, adds a record in the Extra_Meta model's table with the given key and value. |
|
| 2769 | + * A $previous_value can be specified in case there are many meta rows with the same key |
|
| 2770 | + * |
|
| 2771 | + * @param string $meta_key |
|
| 2772 | + * @param mixed $meta_value |
|
| 2773 | + * @param mixed $previous_value |
|
| 2774 | + * @return bool|int # of records updated (or BOOLEAN if we actually ended up inserting the extra meta row) |
|
| 2775 | + * NOTE: if the values haven't changed, returns 0 |
|
| 2776 | + * @throws InvalidArgumentException |
|
| 2777 | + * @throws InvalidInterfaceException |
|
| 2778 | + * @throws InvalidDataTypeException |
|
| 2779 | + * @throws EE_Error |
|
| 2780 | + * @throws ReflectionException |
|
| 2781 | + */ |
|
| 2782 | + public function update_extra_meta($meta_key, $meta_value, $previous_value = null) |
|
| 2783 | + { |
|
| 2784 | + $query_params = array( |
|
| 2785 | + array( |
|
| 2786 | + 'EXM_key' => $meta_key, |
|
| 2787 | + 'OBJ_ID' => $this->ID(), |
|
| 2788 | + 'EXM_type' => $this->get_model()->get_this_model_name(), |
|
| 2789 | + ), |
|
| 2790 | + ); |
|
| 2791 | + if ($previous_value !== null) { |
|
| 2792 | + $query_params[0]['EXM_value'] = $meta_value; |
|
| 2793 | + } |
|
| 2794 | + $existing_rows_like_that = EEM_Extra_Meta::instance()->get_all($query_params); |
|
| 2795 | + if (! $existing_rows_like_that) { |
|
| 2796 | + return $this->add_extra_meta($meta_key, $meta_value); |
|
| 2797 | + } |
|
| 2798 | + foreach ($existing_rows_like_that as $existing_row) { |
|
| 2799 | + $existing_row->save(array('EXM_value' => $meta_value)); |
|
| 2800 | + } |
|
| 2801 | + return count($existing_rows_like_that); |
|
| 2802 | + } |
|
| 2803 | + |
|
| 2804 | + |
|
| 2805 | + /** |
|
| 2806 | + * Adds a new extra meta record. If $unique is set to TRUE, we'll first double-check |
|
| 2807 | + * no other extra meta for this model object have the same key. Returns TRUE if the |
|
| 2808 | + * extra meta row was entered, false if not |
|
| 2809 | + * |
|
| 2810 | + * @param string $meta_key |
|
| 2811 | + * @param mixed $meta_value |
|
| 2812 | + * @param boolean $unique |
|
| 2813 | + * @return boolean |
|
| 2814 | + * @throws InvalidArgumentException |
|
| 2815 | + * @throws InvalidInterfaceException |
|
| 2816 | + * @throws InvalidDataTypeException |
|
| 2817 | + * @throws EE_Error |
|
| 2818 | + * @throws ReflectionException |
|
| 2819 | + * @throws ReflectionException |
|
| 2820 | + */ |
|
| 2821 | + public function add_extra_meta($meta_key, $meta_value, $unique = false) |
|
| 2822 | + { |
|
| 2823 | + if ($unique) { |
|
| 2824 | + $existing_extra_meta = EEM_Extra_Meta::instance()->get_one( |
|
| 2825 | + array( |
|
| 2826 | + array( |
|
| 2827 | + 'EXM_key' => $meta_key, |
|
| 2828 | + 'OBJ_ID' => $this->ID(), |
|
| 2829 | + 'EXM_type' => $this->get_model()->get_this_model_name(), |
|
| 2830 | + ), |
|
| 2831 | + ) |
|
| 2832 | + ); |
|
| 2833 | + if ($existing_extra_meta) { |
|
| 2834 | + return false; |
|
| 2835 | + } |
|
| 2836 | + } |
|
| 2837 | + $new_extra_meta = EE_Extra_Meta::new_instance( |
|
| 2838 | + array( |
|
| 2839 | + 'EXM_key' => $meta_key, |
|
| 2840 | + 'EXM_value' => $meta_value, |
|
| 2841 | + 'OBJ_ID' => $this->ID(), |
|
| 2842 | + 'EXM_type' => $this->get_model()->get_this_model_name(), |
|
| 2843 | + ) |
|
| 2844 | + ); |
|
| 2845 | + $new_extra_meta->save(); |
|
| 2846 | + return true; |
|
| 2847 | + } |
|
| 2848 | + |
|
| 2849 | + |
|
| 2850 | + /** |
|
| 2851 | + * Deletes all the extra meta rows for this record as specified by key. If $meta_value |
|
| 2852 | + * is specified, only deletes extra meta records with that value. |
|
| 2853 | + * |
|
| 2854 | + * @param string $meta_key |
|
| 2855 | + * @param mixed $meta_value |
|
| 2856 | + * @return int number of extra meta rows deleted |
|
| 2857 | + * @throws InvalidArgumentException |
|
| 2858 | + * @throws InvalidInterfaceException |
|
| 2859 | + * @throws InvalidDataTypeException |
|
| 2860 | + * @throws EE_Error |
|
| 2861 | + * @throws ReflectionException |
|
| 2862 | + */ |
|
| 2863 | + public function delete_extra_meta($meta_key, $meta_value = null) |
|
| 2864 | + { |
|
| 2865 | + $query_params = array( |
|
| 2866 | + array( |
|
| 2867 | + 'EXM_key' => $meta_key, |
|
| 2868 | + 'OBJ_ID' => $this->ID(), |
|
| 2869 | + 'EXM_type' => $this->get_model()->get_this_model_name(), |
|
| 2870 | + ), |
|
| 2871 | + ); |
|
| 2872 | + if ($meta_value !== null) { |
|
| 2873 | + $query_params[0]['EXM_value'] = $meta_value; |
|
| 2874 | + } |
|
| 2875 | + return EEM_Extra_Meta::instance()->delete($query_params); |
|
| 2876 | + } |
|
| 2877 | + |
|
| 2878 | + |
|
| 2879 | + /** |
|
| 2880 | + * Gets the extra meta with the given meta key. If you specify "single" we just return 1, otherwise |
|
| 2881 | + * an array of everything found. Requires that this model actually have a relation of type EE_Has_Many_Any_Relation. |
|
| 2882 | + * You can specify $default is case you haven't found the extra meta |
|
| 2883 | + * |
|
| 2884 | + * @param string $meta_key |
|
| 2885 | + * @param boolean $single |
|
| 2886 | + * @param mixed $default if we don't find anything, what should we return? |
|
| 2887 | + * @return mixed single value if $single; array if ! $single |
|
| 2888 | + * @throws ReflectionException |
|
| 2889 | + * @throws InvalidArgumentException |
|
| 2890 | + * @throws InvalidInterfaceException |
|
| 2891 | + * @throws InvalidDataTypeException |
|
| 2892 | + * @throws EE_Error |
|
| 2893 | + */ |
|
| 2894 | + public function get_extra_meta($meta_key, $single = false, $default = null) |
|
| 2895 | + { |
|
| 2896 | + if ($single) { |
|
| 2897 | + $result = $this->get_first_related( |
|
| 2898 | + 'Extra_Meta', |
|
| 2899 | + array(array('EXM_key' => $meta_key)) |
|
| 2900 | + ); |
|
| 2901 | + if ($result instanceof EE_Extra_Meta) { |
|
| 2902 | + return $result->value(); |
|
| 2903 | + } |
|
| 2904 | + } else { |
|
| 2905 | + $results = $this->get_many_related( |
|
| 2906 | + 'Extra_Meta', |
|
| 2907 | + array(array('EXM_key' => $meta_key)) |
|
| 2908 | + ); |
|
| 2909 | + if ($results) { |
|
| 2910 | + $values = array(); |
|
| 2911 | + foreach ($results as $result) { |
|
| 2912 | + if ($result instanceof EE_Extra_Meta) { |
|
| 2913 | + $values[ $result->ID() ] = $result->value(); |
|
| 2914 | + } |
|
| 2915 | + } |
|
| 2916 | + return $values; |
|
| 2917 | + } |
|
| 2918 | + } |
|
| 2919 | + // if nothing discovered yet return default. |
|
| 2920 | + return apply_filters( |
|
| 2921 | + 'FHEE__EE_Base_Class__get_extra_meta__default_value', |
|
| 2922 | + $default, |
|
| 2923 | + $meta_key, |
|
| 2924 | + $single, |
|
| 2925 | + $this |
|
| 2926 | + ); |
|
| 2927 | + } |
|
| 2928 | + |
|
| 2929 | + |
|
| 2930 | + /** |
|
| 2931 | + * Returns a simple array of all the extra meta associated with this model object. |
|
| 2932 | + * If $one_of_each_key is true (Default), it will be an array of simple key-value pairs, keys being the |
|
| 2933 | + * extra meta's key, and teh value being its value. However, if there are duplicate extra meta rows with |
|
| 2934 | + * the same key, only one will be used. (eg array('foo'=>'bar','monkey'=>123)) |
|
| 2935 | + * If $one_of_each_key is false, it will return an array with the top-level keys being |
|
| 2936 | + * the extra meta keys, but their values are also arrays, which have the extra-meta's ID as their sub-key, and |
|
| 2937 | + * finally the extra meta's value as each sub-value. (eg |
|
| 2938 | + * array('foo'=>array(1=>'bar',2=>'bill'),'monkey'=>array(3=>123))) |
|
| 2939 | + * |
|
| 2940 | + * @param boolean $one_of_each_key |
|
| 2941 | + * @return array |
|
| 2942 | + * @throws ReflectionException |
|
| 2943 | + * @throws InvalidArgumentException |
|
| 2944 | + * @throws InvalidInterfaceException |
|
| 2945 | + * @throws InvalidDataTypeException |
|
| 2946 | + * @throws EE_Error |
|
| 2947 | + */ |
|
| 2948 | + public function all_extra_meta_array($one_of_each_key = true) |
|
| 2949 | + { |
|
| 2950 | + $return_array = array(); |
|
| 2951 | + if ($one_of_each_key) { |
|
| 2952 | + $extra_meta_objs = $this->get_many_related( |
|
| 2953 | + 'Extra_Meta', |
|
| 2954 | + array('group_by' => 'EXM_key') |
|
| 2955 | + ); |
|
| 2956 | + foreach ($extra_meta_objs as $extra_meta_obj) { |
|
| 2957 | + if ($extra_meta_obj instanceof EE_Extra_Meta) { |
|
| 2958 | + $return_array[ $extra_meta_obj->key() ] = $extra_meta_obj->value(); |
|
| 2959 | + } |
|
| 2960 | + } |
|
| 2961 | + } else { |
|
| 2962 | + $extra_meta_objs = $this->get_many_related('Extra_Meta'); |
|
| 2963 | + foreach ($extra_meta_objs as $extra_meta_obj) { |
|
| 2964 | + if ($extra_meta_obj instanceof EE_Extra_Meta) { |
|
| 2965 | + if (! isset($return_array[ $extra_meta_obj->key() ])) { |
|
| 2966 | + $return_array[ $extra_meta_obj->key() ] = array(); |
|
| 2967 | + } |
|
| 2968 | + $return_array[ $extra_meta_obj->key() ][ $extra_meta_obj->ID() ] = $extra_meta_obj->value(); |
|
| 2969 | + } |
|
| 2970 | + } |
|
| 2971 | + } |
|
| 2972 | + return $return_array; |
|
| 2973 | + } |
|
| 2974 | + |
|
| 2975 | + |
|
| 2976 | + /** |
|
| 2977 | + * Gets a pretty nice displayable nice for this model object. Often overridden |
|
| 2978 | + * |
|
| 2979 | + * @return string |
|
| 2980 | + * @throws ReflectionException |
|
| 2981 | + * @throws InvalidArgumentException |
|
| 2982 | + * @throws InvalidInterfaceException |
|
| 2983 | + * @throws InvalidDataTypeException |
|
| 2984 | + * @throws EE_Error |
|
| 2985 | + */ |
|
| 2986 | + public function name() |
|
| 2987 | + { |
|
| 2988 | + // find a field that's not a text field |
|
| 2989 | + $field_we_can_use = $this->get_model()->get_a_field_of_type('EE_Text_Field_Base'); |
|
| 2990 | + if ($field_we_can_use) { |
|
| 2991 | + return $this->get($field_we_can_use->get_name()); |
|
| 2992 | + } |
|
| 2993 | + $first_few_properties = $this->model_field_array(); |
|
| 2994 | + $first_few_properties = array_slice($first_few_properties, 0, 3); |
|
| 2995 | + $name_parts = array(); |
|
| 2996 | + foreach ($first_few_properties as $name => $value) { |
|
| 2997 | + $name_parts[] = "$name:$value"; |
|
| 2998 | + } |
|
| 2999 | + return implode(',', $name_parts); |
|
| 3000 | + } |
|
| 3001 | + |
|
| 3002 | + |
|
| 3003 | + /** |
|
| 3004 | + * in_entity_map |
|
| 3005 | + * Checks if this model object has been proven to already be in the entity map |
|
| 3006 | + * |
|
| 3007 | + * @return boolean |
|
| 3008 | + * @throws ReflectionException |
|
| 3009 | + * @throws InvalidArgumentException |
|
| 3010 | + * @throws InvalidInterfaceException |
|
| 3011 | + * @throws InvalidDataTypeException |
|
| 3012 | + * @throws EE_Error |
|
| 3013 | + */ |
|
| 3014 | + public function in_entity_map() |
|
| 3015 | + { |
|
| 3016 | + // well, if we looked, did we find it in the entity map? |
|
| 3017 | + return $this->ID() && $this->get_model()->get_from_entity_map($this->ID()) === $this; |
|
| 3018 | + } |
|
| 3019 | + |
|
| 3020 | + |
|
| 3021 | + /** |
|
| 3022 | + * refresh_from_db |
|
| 3023 | + * Makes sure the fields and values on this model object are in-sync with what's in the database. |
|
| 3024 | + * |
|
| 3025 | + * @throws ReflectionException |
|
| 3026 | + * @throws InvalidArgumentException |
|
| 3027 | + * @throws InvalidInterfaceException |
|
| 3028 | + * @throws InvalidDataTypeException |
|
| 3029 | + * @throws EE_Error if this model object isn't in the entity mapper (because then you should |
|
| 3030 | + * just use what's in the entity mapper and refresh it) and WP_DEBUG is TRUE |
|
| 3031 | + */ |
|
| 3032 | + public function refresh_from_db() |
|
| 3033 | + { |
|
| 3034 | + if ($this->ID() && $this->in_entity_map()) { |
|
| 3035 | + $this->get_model()->refresh_entity_map_from_db($this->ID()); |
|
| 3036 | + } else { |
|
| 3037 | + // if it doesn't have ID, you shouldn't be asking to refresh it from teh database (because its not in the database) |
|
| 3038 | + // if it has an ID but it's not in the map, and you're asking me to refresh it |
|
| 3039 | + // that's kinda dangerous. You should just use what's in the entity map, or add this to the entity map if there's |
|
| 3040 | + // absolutely nothing in it for this ID |
|
| 3041 | + if (WP_DEBUG) { |
|
| 3042 | + throw new EE_Error( |
|
| 3043 | + sprintf( |
|
| 3044 | + esc_html__( |
|
| 3045 | + 'Trying to refresh a model object with ID "%1$s" that\'s not in the entity map? First off: you should put it in the entity map by calling %2$s. Second off, if you want what\'s in the database right now, you should just call %3$s yourself and discard this model object.', |
|
| 3046 | + 'event_espresso' |
|
| 3047 | + ), |
|
| 3048 | + $this->ID(), |
|
| 3049 | + get_class($this->get_model()) . '::instance()->add_to_entity_map()', |
|
| 3050 | + get_class($this->get_model()) . '::instance()->refresh_entity_map()' |
|
| 3051 | + ) |
|
| 3052 | + ); |
|
| 3053 | + } |
|
| 3054 | + } |
|
| 3055 | + } |
|
| 3056 | + |
|
| 3057 | + |
|
| 3058 | + /** |
|
| 3059 | + * Because some other plugins, like Advanced Cron Manager, expect all objects to have this method |
|
| 3060 | + * (probably a bad assumption they have made, oh well) |
|
| 3061 | + * |
|
| 3062 | + * @return string |
|
| 3063 | + */ |
|
| 3064 | + public function __toString() |
|
| 3065 | + { |
|
| 3066 | + try { |
|
| 3067 | + return sprintf('%s (%s)', $this->name(), $this->ID()); |
|
| 3068 | + } catch (Exception $e) { |
|
| 3069 | + EE_Error::add_error($e->getMessage(), __FILE__, __FUNCTION__, __LINE__); |
|
| 3070 | + return ''; |
|
| 3071 | + } |
|
| 3072 | + } |
|
| 3073 | + |
|
| 3074 | + |
|
| 3075 | + /** |
|
| 3076 | + * Clear related model objects if they're already in the DB, because otherwise when we |
|
| 3077 | + * UN-serialize this model object we'll need to be careful to add them to the entity map. |
|
| 3078 | + * This means if we have made changes to those related model objects, and want to unserialize |
|
| 3079 | + * the this model object on a subsequent request, changes to those related model objects will be lost. |
|
| 3080 | + * Instead, those related model objects should be directly serialized and stored. |
|
| 3081 | + * Eg, the following won't work: |
|
| 3082 | + * $reg = EEM_Registration::instance()->get_one_by_ID( 123 ); |
|
| 3083 | + * $att = $reg->attendee(); |
|
| 3084 | + * $att->set( 'ATT_fname', 'Dirk' ); |
|
| 3085 | + * update_option( 'my_option', serialize( $reg ) ); |
|
| 3086 | + * //END REQUEST |
|
| 3087 | + * //START NEXT REQUEST |
|
| 3088 | + * $reg = get_option( 'my_option' ); |
|
| 3089 | + * $reg->attendee()->save(); |
|
| 3090 | + * And would need to be replace with: |
|
| 3091 | + * $reg = EEM_Registration::instance()->get_one_by_ID( 123 ); |
|
| 3092 | + * $att = $reg->attendee(); |
|
| 3093 | + * $att->set( 'ATT_fname', 'Dirk' ); |
|
| 3094 | + * update_option( 'my_option', serialize( $reg ) ); |
|
| 3095 | + * //END REQUEST |
|
| 3096 | + * //START NEXT REQUEST |
|
| 3097 | + * $att = get_option( 'my_option' ); |
|
| 3098 | + * $att->save(); |
|
| 3099 | + * |
|
| 3100 | + * @return array |
|
| 3101 | + * @throws ReflectionException |
|
| 3102 | + * @throws InvalidArgumentException |
|
| 3103 | + * @throws InvalidInterfaceException |
|
| 3104 | + * @throws InvalidDataTypeException |
|
| 3105 | + * @throws EE_Error |
|
| 3106 | + */ |
|
| 3107 | + public function __sleep() |
|
| 3108 | + { |
|
| 3109 | + $model = $this->get_model(); |
|
| 3110 | + foreach ($model->relation_settings() as $relation_name => $relation_obj) { |
|
| 3111 | + if ($relation_obj instanceof EE_Belongs_To_Relation) { |
|
| 3112 | + $classname = 'EE_' . $model->get_this_model_name(); |
|
| 3113 | + if ($this->get_one_from_cache($relation_name) instanceof $classname |
|
| 3114 | + && $this->get_one_from_cache($relation_name)->ID() |
|
| 3115 | + ) { |
|
| 3116 | + $this->clear_cache( |
|
| 3117 | + $relation_name, |
|
| 3118 | + $this->get_one_from_cache($relation_name)->ID() |
|
| 3119 | + ); |
|
| 3120 | + } |
|
| 3121 | + } |
|
| 3122 | + } |
|
| 3123 | + $this->_props_n_values_provided_in_constructor = array(); |
|
| 3124 | + $properties_to_serialize = get_object_vars($this); |
|
| 3125 | + // don't serialize the model. It's big and that risks recursion |
|
| 3126 | + unset($properties_to_serialize['_model']); |
|
| 3127 | + return array_keys($properties_to_serialize); |
|
| 3128 | + } |
|
| 3129 | + |
|
| 3130 | + |
|
| 3131 | + /** |
|
| 3132 | + * restore _props_n_values_provided_in_constructor |
|
| 3133 | + * PLZ NOTE: this will reset the array to whatever fields values were present prior to serialization, |
|
| 3134 | + * and therefore should NOT be used to determine if state change has occurred since initial construction. |
|
| 3135 | + * At best, you would only be able to detect if state change has occurred during THIS request. |
|
| 3136 | + */ |
|
| 3137 | + public function __wakeup() |
|
| 3138 | + { |
|
| 3139 | + $this->_props_n_values_provided_in_constructor = $this->_fields; |
|
| 3140 | + } |
|
| 3141 | + |
|
| 3142 | + |
|
| 3143 | + /** |
|
| 3144 | + * Usage of this magic method is to ensure any internally cached references to object instances that must remain |
|
| 3145 | + * distinct with the clone host instance are also cloned. |
|
| 3146 | + */ |
|
| 3147 | + public function __clone() |
|
| 3148 | + { |
|
| 3149 | + // handle DateTimes (this is handled in here because there's no one specific child class that uses datetimes). |
|
| 3150 | + foreach ($this->_fields as $field => $value) { |
|
| 3151 | + if ($value instanceof DateTime) { |
|
| 3152 | + $this->_fields[ $field ] = clone $value; |
|
| 3153 | + } |
|
| 3154 | + } |
|
| 3155 | + } |
|
| 3156 | 3156 | } |
@@ -15,89 +15,89 @@ |
||
| 15 | 15 | class EE_PMT_Paypal_Express extends EE_PMT_Base |
| 16 | 16 | { |
| 17 | 17 | |
| 18 | - /** |
|
| 19 | - * EE_PMT_Paypal_Express constructor. |
|
| 20 | - */ |
|
| 21 | - public function __construct($pm_instance = null) |
|
| 22 | - { |
|
| 23 | - require_once($this->file_folder() . 'EEG_Paypal_Express.gateway.php'); |
|
| 24 | - $this->_gateway = new EEG_Paypal_Express(); |
|
| 18 | + /** |
|
| 19 | + * EE_PMT_Paypal_Express constructor. |
|
| 20 | + */ |
|
| 21 | + public function __construct($pm_instance = null) |
|
| 22 | + { |
|
| 23 | + require_once($this->file_folder() . 'EEG_Paypal_Express.gateway.php'); |
|
| 24 | + $this->_gateway = new EEG_Paypal_Express(); |
|
| 25 | 25 | |
| 26 | - $this->_pretty_name = esc_html__('PayPal Express', 'event_espresso'); |
|
| 27 | - $this->_template_path = $this->file_folder() . 'templates' . DS; |
|
| 28 | - $this->_default_description = esc_html__( |
|
| 29 | - // @codingStandardsIgnoreStart |
|
| 30 | - 'After clicking \'Finalize Registration\', you will be forwarded to PayPal website to Login and make your payment.', |
|
| 31 | - // @codingStandardsIgnoreEnd |
|
| 32 | - 'event_espresso' |
|
| 33 | - ); |
|
| 34 | - $this->_default_button_url = $this->file_url() . 'lib' . DS . 'paypal-express-checkout-logo-gold-160.png'; |
|
| 26 | + $this->_pretty_name = esc_html__('PayPal Express', 'event_espresso'); |
|
| 27 | + $this->_template_path = $this->file_folder() . 'templates' . DS; |
|
| 28 | + $this->_default_description = esc_html__( |
|
| 29 | + // @codingStandardsIgnoreStart |
|
| 30 | + 'After clicking \'Finalize Registration\', you will be forwarded to PayPal website to Login and make your payment.', |
|
| 31 | + // @codingStandardsIgnoreEnd |
|
| 32 | + 'event_espresso' |
|
| 33 | + ); |
|
| 34 | + $this->_default_button_url = $this->file_url() . 'lib' . DS . 'paypal-express-checkout-logo-gold-160.png'; |
|
| 35 | 35 | |
| 36 | - parent::__construct($pm_instance); |
|
| 37 | - } |
|
| 36 | + parent::__construct($pm_instance); |
|
| 37 | + } |
|
| 38 | 38 | |
| 39 | 39 | |
| 40 | - /** |
|
| 41 | - * Adds the help tab. |
|
| 42 | - * |
|
| 43 | - * @see EE_PMT_Base::help_tabs_config() |
|
| 44 | - * @return array |
|
| 45 | - */ |
|
| 46 | - public function help_tabs_config() |
|
| 47 | - { |
|
| 48 | - return array( |
|
| 49 | - $this->get_help_tab_name() => array( |
|
| 50 | - 'title' => esc_html__('PayPal Express Settings', 'event_espresso'), |
|
| 51 | - 'filename' => 'payment_methods_overview_paypal_express' |
|
| 52 | - ) |
|
| 53 | - ); |
|
| 54 | - } |
|
| 40 | + /** |
|
| 41 | + * Adds the help tab. |
|
| 42 | + * |
|
| 43 | + * @see EE_PMT_Base::help_tabs_config() |
|
| 44 | + * @return array |
|
| 45 | + */ |
|
| 46 | + public function help_tabs_config() |
|
| 47 | + { |
|
| 48 | + return array( |
|
| 49 | + $this->get_help_tab_name() => array( |
|
| 50 | + 'title' => esc_html__('PayPal Express Settings', 'event_espresso'), |
|
| 51 | + 'filename' => 'payment_methods_overview_paypal_express' |
|
| 52 | + ) |
|
| 53 | + ); |
|
| 54 | + } |
|
| 55 | 55 | |
| 56 | 56 | |
| 57 | - /** |
|
| 58 | - * Gets the form for all the settings related to this payment method type. |
|
| 59 | - * |
|
| 60 | - * @return EE_Payment_Method_Form |
|
| 61 | - */ |
|
| 62 | - public function generate_new_settings_form() |
|
| 63 | - { |
|
| 64 | - return new SettingsForm(array(), $this->get_help_tab_link()); |
|
| 65 | - } |
|
| 57 | + /** |
|
| 58 | + * Gets the form for all the settings related to this payment method type. |
|
| 59 | + * |
|
| 60 | + * @return EE_Payment_Method_Form |
|
| 61 | + */ |
|
| 62 | + public function generate_new_settings_form() |
|
| 63 | + { |
|
| 64 | + return new SettingsForm(array(), $this->get_help_tab_link()); |
|
| 65 | + } |
|
| 66 | 66 | |
| 67 | 67 | |
| 68 | - /** |
|
| 69 | - * Creates a billing form for this payment method type. |
|
| 70 | - * |
|
| 71 | - * @param \EE_Transaction $transaction |
|
| 72 | - * @return \EE_Billing_Info_Form |
|
| 73 | - */ |
|
| 74 | - public function generate_new_billing_form(EE_Transaction $transaction = null) |
|
| 75 | - { |
|
| 76 | - if ($this->_pm_instance->debug_mode()) { |
|
| 77 | - $form = new EE_Billing_Info_Form( |
|
| 78 | - $this->_pm_instance, |
|
| 79 | - array( |
|
| 80 | - 'name' => 'paypal_express_Info_Form', |
|
| 81 | - 'subsections' => array( |
|
| 82 | - 'paypal_express_debug_info' => new EE_Form_Section_Proper( |
|
| 83 | - array( |
|
| 84 | - 'layout_strategy' => new EE_Template_Layout( |
|
| 85 | - array( |
|
| 86 | - 'layout_template_file' => $this->_template_path |
|
| 87 | - . 'paypal_express_debug_info.template.php', |
|
| 88 | - 'template_args' => array( |
|
| 89 | - 'debug_mode' => $this->_pm_instance->debug_mode() |
|
| 90 | - ) |
|
| 91 | - ) |
|
| 92 | - ) |
|
| 93 | - ) |
|
| 94 | - ) |
|
| 95 | - ) |
|
| 96 | - ) |
|
| 97 | - ); |
|
| 98 | - return $form; |
|
| 99 | - } |
|
| 68 | + /** |
|
| 69 | + * Creates a billing form for this payment method type. |
|
| 70 | + * |
|
| 71 | + * @param \EE_Transaction $transaction |
|
| 72 | + * @return \EE_Billing_Info_Form |
|
| 73 | + */ |
|
| 74 | + public function generate_new_billing_form(EE_Transaction $transaction = null) |
|
| 75 | + { |
|
| 76 | + if ($this->_pm_instance->debug_mode()) { |
|
| 77 | + $form = new EE_Billing_Info_Form( |
|
| 78 | + $this->_pm_instance, |
|
| 79 | + array( |
|
| 80 | + 'name' => 'paypal_express_Info_Form', |
|
| 81 | + 'subsections' => array( |
|
| 82 | + 'paypal_express_debug_info' => new EE_Form_Section_Proper( |
|
| 83 | + array( |
|
| 84 | + 'layout_strategy' => new EE_Template_Layout( |
|
| 85 | + array( |
|
| 86 | + 'layout_template_file' => $this->_template_path |
|
| 87 | + . 'paypal_express_debug_info.template.php', |
|
| 88 | + 'template_args' => array( |
|
| 89 | + 'debug_mode' => $this->_pm_instance->debug_mode() |
|
| 90 | + ) |
|
| 91 | + ) |
|
| 92 | + ) |
|
| 93 | + ) |
|
| 94 | + ) |
|
| 95 | + ) |
|
| 96 | + ) |
|
| 97 | + ); |
|
| 98 | + return $form; |
|
| 99 | + } |
|
| 100 | 100 | |
| 101 | - return false; |
|
| 102 | - } |
|
| 101 | + return false; |
|
| 102 | + } |
|
| 103 | 103 | } |
@@ -14,150 +14,150 @@ |
||
| 14 | 14 | class EE_PMT_Paypal_Pro extends EE_PMT_Base |
| 15 | 15 | { |
| 16 | 16 | |
| 17 | - /** |
|
| 18 | - * @param EE_Payment_Method $pm_instance |
|
| 19 | - * @return EE_PMT_Paypal_Pro |
|
| 20 | - */ |
|
| 21 | - public function __construct($pm_instance = null) |
|
| 22 | - { |
|
| 23 | - require_once($this->file_folder().'EEG_Paypal_Pro.gateway.php'); |
|
| 24 | - $this->_gateway = new EEG_Paypal_Pro(); |
|
| 25 | - $this->_pretty_name = __("Paypal Pro", 'event_espresso'); |
|
| 26 | - $this->_default_description = __('Please provide the following billing information.', 'event_espresso'); |
|
| 27 | - $this->_requires_https = true; |
|
| 28 | - parent::__construct($pm_instance); |
|
| 29 | - } |
|
| 30 | - |
|
| 31 | - |
|
| 32 | - /** |
|
| 33 | - * Gets the form for all the settings related to this payment method type |
|
| 34 | - * @return EE_Payment_Method_Form |
|
| 35 | - * @throws InvalidArgumentException |
|
| 36 | - * @throws \EventEspresso\core\exceptions\InvalidDataTypeException |
|
| 37 | - * @throws \EventEspresso\core\exceptions\InvalidInterfaceException |
|
| 38 | - */ |
|
| 39 | - public function generate_new_settings_form() |
|
| 40 | - { |
|
| 41 | - return new PayPalProSettingsForm(array(), $this->get_help_tab_link()); |
|
| 42 | - } |
|
| 43 | - |
|
| 44 | - |
|
| 45 | - /** |
|
| 46 | - * Creates the billing form for this payment method type |
|
| 47 | - * @param \EE_Transaction $transaction |
|
| 48 | - * @throws \EE_Error |
|
| 49 | - * @return EE_Billing_Info_Form |
|
| 50 | - */ |
|
| 51 | - public function generate_new_billing_form(EE_Transaction $transaction = null) |
|
| 52 | - { |
|
| 53 | - $allowed_types = $this->_pm_instance->get_extra_meta('credit_card_types', true); |
|
| 54 | - // if allowed types is a string or empty array or null... |
|
| 55 | - if (empty($allowed_types)) { |
|
| 56 | - $allowed_types = array(); |
|
| 57 | - } |
|
| 58 | - |
|
| 59 | - $billing_form = new EE_Billing_Attendee_Info_Form( |
|
| 60 | - $this->_pm_instance, |
|
| 61 | - array( |
|
| 62 | - 'name'=> 'Paypal_Pro_Billing_Form', |
|
| 63 | - // 'html_id'=> 'ee-Paypal_Pro-billing-form', |
|
| 64 | - 'subsections'=>array( |
|
| 65 | - 'credit_card'=>new EE_Credit_Card_Input( |
|
| 66 | - array( 'required'=>true, 'html_class' => 'ee-billing-qstn', 'html_label_text' => __('Card Number', 'event_espresso')) |
|
| 67 | - ), |
|
| 68 | - 'credit_card_type'=>new EE_Select_Input( |
|
| 69 | - // the options are set dynamically |
|
| 70 | - array_intersect_key(EE_PMT_Paypal_Pro::card_types_supported(), array_flip($allowed_types)), |
|
| 71 | - array( 'required'=>true, 'html_class' => 'ee-billing-qstn', 'html_label_text' => __('Card Type', 'event_espresso')) |
|
| 72 | - ), |
|
| 73 | - 'exp_month'=>new EE_Credit_Card_Month_Input( |
|
| 74 | - true, |
|
| 75 | - array( 'required'=>true, 'html_class' => 'ee-billing-qstn', 'html_label_text' => __('Expiry Month', 'event_espresso') ) |
|
| 76 | - ), |
|
| 77 | - 'exp_year'=>new EE_Credit_Card_Year_Input( |
|
| 78 | - array( 'required'=>true, 'html_class' => 'ee-billing-qstn', 'html_label_text' => __('Expiry Year', 'event_espresso') ) |
|
| 79 | - ), |
|
| 80 | - 'cvv'=>new EE_CVV_Input( |
|
| 81 | - array( 'required'=>true, 'html_class' => 'ee-billing-qstn', 'html_label_text' => __('CVV', 'event_espresso') ) |
|
| 82 | - ), |
|
| 83 | - ) |
|
| 84 | - ) |
|
| 85 | - ); |
|
| 86 | - return $this->apply_billing_form_debug_settings($billing_form); |
|
| 87 | - } |
|
| 88 | - |
|
| 89 | - |
|
| 90 | - |
|
| 91 | - /** |
|
| 92 | - * apply_billing_form_debug_settings |
|
| 93 | - * applies debug data to the form |
|
| 94 | - * |
|
| 95 | - * @param \EE_Billing_Info_Form $billing_form |
|
| 96 | - * @return \EE_Billing_Info_Form |
|
| 97 | - */ |
|
| 98 | - public function apply_billing_form_debug_settings(EE_Billing_Info_Form $billing_form) |
|
| 99 | - { |
|
| 100 | - if ($this->_pm_instance->debug_mode()) { |
|
| 101 | - $billing_form->add_subsections( |
|
| 102 | - array( 'fyi_about_autofill' => $billing_form->payment_fields_autofilled_notice_html() ), |
|
| 103 | - 'credit_card' |
|
| 104 | - ); |
|
| 105 | - $billing_form->add_subsections( |
|
| 106 | - array( 'debug_content' => new EE_Form_Section_HTML_From_Template(dirname(__FILE__).DS.'templates'.DS.'paypal_pro_debug_info.template.php')), |
|
| 107 | - 'first_name' |
|
| 108 | - ); |
|
| 109 | - $billing_form->get_input('credit_card_type')->set_default('Visa'); |
|
| 110 | - $billing_form->get_input('exp_year')->set_default(2018); |
|
| 111 | - $billing_form->get_input('cvv')->set_default('115'); |
|
| 112 | - } |
|
| 113 | - return $billing_form; |
|
| 114 | - } |
|
| 115 | - |
|
| 116 | - |
|
| 117 | - |
|
| 118 | - /** |
|
| 119 | - * Returns an array of all the payment cards possibly supported by paypal pro. |
|
| 120 | - * Keys are their values, values are their pretty names. |
|
| 121 | - * @return array |
|
| 122 | - */ |
|
| 123 | - public static function card_types_supported() |
|
| 124 | - { |
|
| 125 | - return array( |
|
| 126 | - 'Visa'=> __("Visa", 'event_espresso'), |
|
| 127 | - 'MasterCard'=> __("MasterCard", 'event_espresso'), |
|
| 128 | - 'Amex'=> __("American Express", 'event_espresso'), |
|
| 129 | - 'Discover'=> __("Discover", 'event_espresso') |
|
| 130 | - ); |
|
| 131 | - } |
|
| 132 | - |
|
| 133 | - |
|
| 134 | - |
|
| 135 | - /** |
|
| 136 | - * Adds the help tab |
|
| 137 | - * @see EE_PMT_Base::help_tabs_config() |
|
| 138 | - * @return array |
|
| 139 | - */ |
|
| 140 | - public function help_tabs_config() |
|
| 141 | - { |
|
| 142 | - return array( |
|
| 143 | - $this->get_help_tab_name() => array( |
|
| 144 | - 'title' => __('PayPal Pro Settings', 'event_espresso'), |
|
| 145 | - 'filename' => 'payment_methods_overview_paypalpro' |
|
| 146 | - ), |
|
| 147 | - ); |
|
| 148 | - } |
|
| 149 | - |
|
| 150 | - /** |
|
| 151 | - * Overrides parent's _get_billing_values_from_form because we want to |
|
| 152 | - * get the country's 2-character ISO code, not the name like most gateways |
|
| 153 | - * @param EE_Billing_Info_Form $billing_form |
|
| 154 | - * @return array |
|
| 155 | - */ |
|
| 156 | - protected function _get_billing_values_from_form($billing_form) |
|
| 157 | - { |
|
| 158 | - $billing_values = parent::_get_billing_values_from_form($billing_form); |
|
| 159 | - $billing_values['country'] = $billing_form->get_input_value('country'); |
|
| 160 | - $billing_values['credit_card_type'] = $billing_form->get_input_value('credit_card_type'); |
|
| 161 | - return $billing_values; |
|
| 162 | - } |
|
| 17 | + /** |
|
| 18 | + * @param EE_Payment_Method $pm_instance |
|
| 19 | + * @return EE_PMT_Paypal_Pro |
|
| 20 | + */ |
|
| 21 | + public function __construct($pm_instance = null) |
|
| 22 | + { |
|
| 23 | + require_once($this->file_folder().'EEG_Paypal_Pro.gateway.php'); |
|
| 24 | + $this->_gateway = new EEG_Paypal_Pro(); |
|
| 25 | + $this->_pretty_name = __("Paypal Pro", 'event_espresso'); |
|
| 26 | + $this->_default_description = __('Please provide the following billing information.', 'event_espresso'); |
|
| 27 | + $this->_requires_https = true; |
|
| 28 | + parent::__construct($pm_instance); |
|
| 29 | + } |
|
| 30 | + |
|
| 31 | + |
|
| 32 | + /** |
|
| 33 | + * Gets the form for all the settings related to this payment method type |
|
| 34 | + * @return EE_Payment_Method_Form |
|
| 35 | + * @throws InvalidArgumentException |
|
| 36 | + * @throws \EventEspresso\core\exceptions\InvalidDataTypeException |
|
| 37 | + * @throws \EventEspresso\core\exceptions\InvalidInterfaceException |
|
| 38 | + */ |
|
| 39 | + public function generate_new_settings_form() |
|
| 40 | + { |
|
| 41 | + return new PayPalProSettingsForm(array(), $this->get_help_tab_link()); |
|
| 42 | + } |
|
| 43 | + |
|
| 44 | + |
|
| 45 | + /** |
|
| 46 | + * Creates the billing form for this payment method type |
|
| 47 | + * @param \EE_Transaction $transaction |
|
| 48 | + * @throws \EE_Error |
|
| 49 | + * @return EE_Billing_Info_Form |
|
| 50 | + */ |
|
| 51 | + public function generate_new_billing_form(EE_Transaction $transaction = null) |
|
| 52 | + { |
|
| 53 | + $allowed_types = $this->_pm_instance->get_extra_meta('credit_card_types', true); |
|
| 54 | + // if allowed types is a string or empty array or null... |
|
| 55 | + if (empty($allowed_types)) { |
|
| 56 | + $allowed_types = array(); |
|
| 57 | + } |
|
| 58 | + |
|
| 59 | + $billing_form = new EE_Billing_Attendee_Info_Form( |
|
| 60 | + $this->_pm_instance, |
|
| 61 | + array( |
|
| 62 | + 'name'=> 'Paypal_Pro_Billing_Form', |
|
| 63 | + // 'html_id'=> 'ee-Paypal_Pro-billing-form', |
|
| 64 | + 'subsections'=>array( |
|
| 65 | + 'credit_card'=>new EE_Credit_Card_Input( |
|
| 66 | + array( 'required'=>true, 'html_class' => 'ee-billing-qstn', 'html_label_text' => __('Card Number', 'event_espresso')) |
|
| 67 | + ), |
|
| 68 | + 'credit_card_type'=>new EE_Select_Input( |
|
| 69 | + // the options are set dynamically |
|
| 70 | + array_intersect_key(EE_PMT_Paypal_Pro::card_types_supported(), array_flip($allowed_types)), |
|
| 71 | + array( 'required'=>true, 'html_class' => 'ee-billing-qstn', 'html_label_text' => __('Card Type', 'event_espresso')) |
|
| 72 | + ), |
|
| 73 | + 'exp_month'=>new EE_Credit_Card_Month_Input( |
|
| 74 | + true, |
|
| 75 | + array( 'required'=>true, 'html_class' => 'ee-billing-qstn', 'html_label_text' => __('Expiry Month', 'event_espresso') ) |
|
| 76 | + ), |
|
| 77 | + 'exp_year'=>new EE_Credit_Card_Year_Input( |
|
| 78 | + array( 'required'=>true, 'html_class' => 'ee-billing-qstn', 'html_label_text' => __('Expiry Year', 'event_espresso') ) |
|
| 79 | + ), |
|
| 80 | + 'cvv'=>new EE_CVV_Input( |
|
| 81 | + array( 'required'=>true, 'html_class' => 'ee-billing-qstn', 'html_label_text' => __('CVV', 'event_espresso') ) |
|
| 82 | + ), |
|
| 83 | + ) |
|
| 84 | + ) |
|
| 85 | + ); |
|
| 86 | + return $this->apply_billing_form_debug_settings($billing_form); |
|
| 87 | + } |
|
| 88 | + |
|
| 89 | + |
|
| 90 | + |
|
| 91 | + /** |
|
| 92 | + * apply_billing_form_debug_settings |
|
| 93 | + * applies debug data to the form |
|
| 94 | + * |
|
| 95 | + * @param \EE_Billing_Info_Form $billing_form |
|
| 96 | + * @return \EE_Billing_Info_Form |
|
| 97 | + */ |
|
| 98 | + public function apply_billing_form_debug_settings(EE_Billing_Info_Form $billing_form) |
|
| 99 | + { |
|
| 100 | + if ($this->_pm_instance->debug_mode()) { |
|
| 101 | + $billing_form->add_subsections( |
|
| 102 | + array( 'fyi_about_autofill' => $billing_form->payment_fields_autofilled_notice_html() ), |
|
| 103 | + 'credit_card' |
|
| 104 | + ); |
|
| 105 | + $billing_form->add_subsections( |
|
| 106 | + array( 'debug_content' => new EE_Form_Section_HTML_From_Template(dirname(__FILE__).DS.'templates'.DS.'paypal_pro_debug_info.template.php')), |
|
| 107 | + 'first_name' |
|
| 108 | + ); |
|
| 109 | + $billing_form->get_input('credit_card_type')->set_default('Visa'); |
|
| 110 | + $billing_form->get_input('exp_year')->set_default(2018); |
|
| 111 | + $billing_form->get_input('cvv')->set_default('115'); |
|
| 112 | + } |
|
| 113 | + return $billing_form; |
|
| 114 | + } |
|
| 115 | + |
|
| 116 | + |
|
| 117 | + |
|
| 118 | + /** |
|
| 119 | + * Returns an array of all the payment cards possibly supported by paypal pro. |
|
| 120 | + * Keys are their values, values are their pretty names. |
|
| 121 | + * @return array |
|
| 122 | + */ |
|
| 123 | + public static function card_types_supported() |
|
| 124 | + { |
|
| 125 | + return array( |
|
| 126 | + 'Visa'=> __("Visa", 'event_espresso'), |
|
| 127 | + 'MasterCard'=> __("MasterCard", 'event_espresso'), |
|
| 128 | + 'Amex'=> __("American Express", 'event_espresso'), |
|
| 129 | + 'Discover'=> __("Discover", 'event_espresso') |
|
| 130 | + ); |
|
| 131 | + } |
|
| 132 | + |
|
| 133 | + |
|
| 134 | + |
|
| 135 | + /** |
|
| 136 | + * Adds the help tab |
|
| 137 | + * @see EE_PMT_Base::help_tabs_config() |
|
| 138 | + * @return array |
|
| 139 | + */ |
|
| 140 | + public function help_tabs_config() |
|
| 141 | + { |
|
| 142 | + return array( |
|
| 143 | + $this->get_help_tab_name() => array( |
|
| 144 | + 'title' => __('PayPal Pro Settings', 'event_espresso'), |
|
| 145 | + 'filename' => 'payment_methods_overview_paypalpro' |
|
| 146 | + ), |
|
| 147 | + ); |
|
| 148 | + } |
|
| 149 | + |
|
| 150 | + /** |
|
| 151 | + * Overrides parent's _get_billing_values_from_form because we want to |
|
| 152 | + * get the country's 2-character ISO code, not the name like most gateways |
|
| 153 | + * @param EE_Billing_Info_Form $billing_form |
|
| 154 | + * @return array |
|
| 155 | + */ |
|
| 156 | + protected function _get_billing_values_from_form($billing_form) |
|
| 157 | + { |
|
| 158 | + $billing_values = parent::_get_billing_values_from_form($billing_form); |
|
| 159 | + $billing_values['country'] = $billing_form->get_input_value('country'); |
|
| 160 | + $billing_values['credit_card_type'] = $billing_form->get_input_value('credit_card_type'); |
|
| 161 | + return $billing_values; |
|
| 162 | + } |
|
| 163 | 163 | } |
@@ -53,7 +53,7 @@ discard block |
||
| 53 | 53 | */ |
| 54 | 54 | public static function set_trap() |
| 55 | 55 | { |
| 56 | - define('EE_BOT_TRAP_BASE_URL', plugin_dir_url(__FILE__) . DS); |
|
| 56 | + define('EE_BOT_TRAP_BASE_URL', plugin_dir_url(__FILE__).DS); |
|
| 57 | 57 | add_action( |
| 58 | 58 | 'AHEE__ticket_selector_chart__template__after_ticket_selector', |
| 59 | 59 | array('EED_Bot_Trap', 'generate_bot_trap'), |
@@ -119,9 +119,9 @@ discard block |
||
| 119 | 119 | $do_not_enter = esc_html__('please do not enter anything in this input', 'event_espresso'); |
| 120 | 120 | $time = microtime(true); |
| 121 | 121 | $html = '<div class="tkt-slctr-request-processor-dv" style="float:left; margin:0 0 0 -999em; height: 0;">'; |
| 122 | - $html .= '<label for="tkt-slctr-request-processor-email-' . $time . '">' . $do_not_enter . '</label>'; |
|
| 122 | + $html .= '<label for="tkt-slctr-request-processor-email-'.$time.'">'.$do_not_enter.'</label>'; |
|
| 123 | 123 | $html .= '<input type="email" id="tkt-slctr-request-processor-email-'; |
| 124 | - $html .= $time . '" name="tkt-slctr-request-processor-email" value=""/>'; |
|
| 124 | + $html .= $time.'" name="tkt-slctr-request-processor-email" value=""/>'; |
|
| 125 | 125 | $html .= '</div><!-- .tkt-slctr-request-processor-dv -->'; |
| 126 | 126 | echo $html; |
| 127 | 127 | } |
@@ -147,7 +147,7 @@ discard block |
||
| 147 | 147 | return; |
| 148 | 148 | } |
| 149 | 149 | // check the given callback is valid first before executing |
| 150 | - if (! is_callable($triggered_trap_callback)) { |
|
| 150 | + if ( ! is_callable($triggered_trap_callback)) { |
|
| 151 | 151 | // invalid callback so lets just sub in our default. |
| 152 | 152 | $triggered_trap_callback = array('EED_Bot_Trap', 'triggered_trap_response'); |
| 153 | 153 | } |
@@ -16,304 +16,304 @@ |
||
| 16 | 16 | class EED_Bot_Trap extends EED_Module |
| 17 | 17 | { |
| 18 | 18 | |
| 19 | - /** |
|
| 20 | - * @return EED_Bot_Trap|EED_Module |
|
| 21 | - */ |
|
| 22 | - public static function instance() |
|
| 23 | - { |
|
| 24 | - return parent::get_instance(__CLASS__); |
|
| 25 | - } |
|
| 19 | + /** |
|
| 20 | + * @return EED_Bot_Trap|EED_Module |
|
| 21 | + */ |
|
| 22 | + public static function instance() |
|
| 23 | + { |
|
| 24 | + return parent::get_instance(__CLASS__); |
|
| 25 | + } |
|
| 26 | 26 | |
| 27 | 27 | |
| 28 | - /** |
|
| 29 | - * set_hooks - for hooking into EE Core, other modules, etc |
|
| 30 | - * |
|
| 31 | - * @return void |
|
| 32 | - */ |
|
| 33 | - public static function set_hooks() |
|
| 34 | - { |
|
| 35 | - if (apply_filters('FHEE__EED_Bot_Trap__set_hooks__use_bot_trap', true) && |
|
| 36 | - EE_Registry::instance()->CFG->registration->use_bot_trap |
|
| 37 | - ) { |
|
| 38 | - EED_Bot_Trap::set_trap(); |
|
| 39 | - // redirect bots to bogus success page |
|
| 40 | - EE_Config::register_route( |
|
| 41 | - 'ticket_selection_received', |
|
| 42 | - 'EED_Bot_Trap', |
|
| 43 | - 'display_bot_trap_success' |
|
| 44 | - ); |
|
| 45 | - } |
|
| 46 | - } |
|
| 28 | + /** |
|
| 29 | + * set_hooks - for hooking into EE Core, other modules, etc |
|
| 30 | + * |
|
| 31 | + * @return void |
|
| 32 | + */ |
|
| 33 | + public static function set_hooks() |
|
| 34 | + { |
|
| 35 | + if (apply_filters('FHEE__EED_Bot_Trap__set_hooks__use_bot_trap', true) && |
|
| 36 | + EE_Registry::instance()->CFG->registration->use_bot_trap |
|
| 37 | + ) { |
|
| 38 | + EED_Bot_Trap::set_trap(); |
|
| 39 | + // redirect bots to bogus success page |
|
| 40 | + EE_Config::register_route( |
|
| 41 | + 'ticket_selection_received', |
|
| 42 | + 'EED_Bot_Trap', |
|
| 43 | + 'display_bot_trap_success' |
|
| 44 | + ); |
|
| 45 | + } |
|
| 46 | + } |
|
| 47 | 47 | |
| 48 | 48 | |
| 49 | - /** |
|
| 50 | - * set_hooks_admin - for hooking into EE Admin Core, other modules, etc |
|
| 51 | - * |
|
| 52 | - * @return void |
|
| 53 | - */ |
|
| 54 | - public static function set_trap() |
|
| 55 | - { |
|
| 56 | - define('EE_BOT_TRAP_BASE_URL', plugin_dir_url(__FILE__) . DS); |
|
| 57 | - add_action( |
|
| 58 | - 'AHEE__ticket_selector_chart__template__after_ticket_selector', |
|
| 59 | - array('EED_Bot_Trap', 'generate_bot_trap'), |
|
| 60 | - 10, |
|
| 61 | - 2 |
|
| 62 | - ); |
|
| 63 | - add_action( |
|
| 64 | - 'EED_Ticket_Selector__process_ticket_selections__before', |
|
| 65 | - array('EED_Bot_Trap', 'process_bot_trap'), |
|
| 66 | - 1, |
|
| 67 | - 2 |
|
| 68 | - ); |
|
| 69 | - } |
|
| 49 | + /** |
|
| 50 | + * set_hooks_admin - for hooking into EE Admin Core, other modules, etc |
|
| 51 | + * |
|
| 52 | + * @return void |
|
| 53 | + */ |
|
| 54 | + public static function set_trap() |
|
| 55 | + { |
|
| 56 | + define('EE_BOT_TRAP_BASE_URL', plugin_dir_url(__FILE__) . DS); |
|
| 57 | + add_action( |
|
| 58 | + 'AHEE__ticket_selector_chart__template__after_ticket_selector', |
|
| 59 | + array('EED_Bot_Trap', 'generate_bot_trap'), |
|
| 60 | + 10, |
|
| 61 | + 2 |
|
| 62 | + ); |
|
| 63 | + add_action( |
|
| 64 | + 'EED_Ticket_Selector__process_ticket_selections__before', |
|
| 65 | + array('EED_Bot_Trap', 'process_bot_trap'), |
|
| 66 | + 1, |
|
| 67 | + 2 |
|
| 68 | + ); |
|
| 69 | + } |
|
| 70 | 70 | |
| 71 | 71 | |
| 72 | - /** |
|
| 73 | - * set_hooks_admin - for hooking into EE Admin Core, other modules, etc |
|
| 74 | - * |
|
| 75 | - * @return void |
|
| 76 | - */ |
|
| 77 | - public static function set_hooks_admin() |
|
| 78 | - { |
|
| 79 | - if (defined('DOING_AJAX') |
|
| 80 | - && DOING_AJAX |
|
| 81 | - && apply_filters('FHEE__EED_Bot_Trap__set_hooks__use_bot_trap', true) |
|
| 82 | - && EE_Registry::instance()->CFG->registration->use_bot_trap |
|
| 83 | - ) { |
|
| 84 | - EED_Bot_Trap::set_trap(); |
|
| 85 | - } |
|
| 86 | - add_action( |
|
| 87 | - 'AHEE__Extend_Registration_Form_Admin_Page___reg_form_settings_template', |
|
| 88 | - array('EED_Bot_Trap', 'bot_trap_settings_form'), |
|
| 89 | - 5 |
|
| 90 | - ); |
|
| 91 | - add_filter( |
|
| 92 | - 'FHEE__Extend_Registration_Form_Admin_Page___update_reg_form_settings__CFG_registration', |
|
| 93 | - array('EED_Bot_Trap', 'update_bot_trap_settings_form'), |
|
| 94 | - 10, |
|
| 95 | - 1 |
|
| 96 | - ); |
|
| 97 | - } |
|
| 72 | + /** |
|
| 73 | + * set_hooks_admin - for hooking into EE Admin Core, other modules, etc |
|
| 74 | + * |
|
| 75 | + * @return void |
|
| 76 | + */ |
|
| 77 | + public static function set_hooks_admin() |
|
| 78 | + { |
|
| 79 | + if (defined('DOING_AJAX') |
|
| 80 | + && DOING_AJAX |
|
| 81 | + && apply_filters('FHEE__EED_Bot_Trap__set_hooks__use_bot_trap', true) |
|
| 82 | + && EE_Registry::instance()->CFG->registration->use_bot_trap |
|
| 83 | + ) { |
|
| 84 | + EED_Bot_Trap::set_trap(); |
|
| 85 | + } |
|
| 86 | + add_action( |
|
| 87 | + 'AHEE__Extend_Registration_Form_Admin_Page___reg_form_settings_template', |
|
| 88 | + array('EED_Bot_Trap', 'bot_trap_settings_form'), |
|
| 89 | + 5 |
|
| 90 | + ); |
|
| 91 | + add_filter( |
|
| 92 | + 'FHEE__Extend_Registration_Form_Admin_Page___update_reg_form_settings__CFG_registration', |
|
| 93 | + array('EED_Bot_Trap', 'update_bot_trap_settings_form'), |
|
| 94 | + 10, |
|
| 95 | + 1 |
|
| 96 | + ); |
|
| 97 | + } |
|
| 98 | 98 | |
| 99 | 99 | |
| 100 | - /** |
|
| 101 | - * run - initial module setup |
|
| 102 | - * |
|
| 103 | - * @param WP $WP |
|
| 104 | - * @return void |
|
| 105 | - */ |
|
| 106 | - public function run($WP) |
|
| 107 | - { |
|
| 108 | - } |
|
| 100 | + /** |
|
| 101 | + * run - initial module setup |
|
| 102 | + * |
|
| 103 | + * @param WP $WP |
|
| 104 | + * @return void |
|
| 105 | + */ |
|
| 106 | + public function run($WP) |
|
| 107 | + { |
|
| 108 | + } |
|
| 109 | 109 | |
| 110 | 110 | |
| 111 | - /** |
|
| 112 | - * generate_bot_trap |
|
| 113 | - * |
|
| 114 | - * @return void |
|
| 115 | - * @throws RuntimeException |
|
| 116 | - */ |
|
| 117 | - public static function generate_bot_trap() |
|
| 118 | - { |
|
| 119 | - $do_not_enter = esc_html__('please do not enter anything in this input', 'event_espresso'); |
|
| 120 | - $time = microtime(true); |
|
| 121 | - $html = '<div class="tkt-slctr-request-processor-dv" style="float:left; margin:0 0 0 -999em; height: 0;">'; |
|
| 122 | - $html .= '<label for="tkt-slctr-request-processor-email-' . $time . '">' . $do_not_enter . '</label>'; |
|
| 123 | - $html .= '<input type="email" id="tkt-slctr-request-processor-email-'; |
|
| 124 | - $html .= $time . '" name="tkt-slctr-request-processor-email" value=""/>'; |
|
| 125 | - $html .= '</div><!-- .tkt-slctr-request-processor-dv -->'; |
|
| 126 | - echo $html; |
|
| 127 | - } |
|
| 111 | + /** |
|
| 112 | + * generate_bot_trap |
|
| 113 | + * |
|
| 114 | + * @return void |
|
| 115 | + * @throws RuntimeException |
|
| 116 | + */ |
|
| 117 | + public static function generate_bot_trap() |
|
| 118 | + { |
|
| 119 | + $do_not_enter = esc_html__('please do not enter anything in this input', 'event_espresso'); |
|
| 120 | + $time = microtime(true); |
|
| 121 | + $html = '<div class="tkt-slctr-request-processor-dv" style="float:left; margin:0 0 0 -999em; height: 0;">'; |
|
| 122 | + $html .= '<label for="tkt-slctr-request-processor-email-' . $time . '">' . $do_not_enter . '</label>'; |
|
| 123 | + $html .= '<input type="email" id="tkt-slctr-request-processor-email-'; |
|
| 124 | + $html .= $time . '" name="tkt-slctr-request-processor-email" value=""/>'; |
|
| 125 | + $html .= '</div><!-- .tkt-slctr-request-processor-dv -->'; |
|
| 126 | + echo $html; |
|
| 127 | + } |
|
| 128 | 128 | |
| 129 | 129 | |
| 130 | - /** |
|
| 131 | - * process_bot_trap |
|
| 132 | - * |
|
| 133 | - * @param array|string $triggered_trap_callback Callback that will be executed for handling the |
|
| 134 | - * response if the bot trap is triggered. |
|
| 135 | - * It should receive one argument: a boolean indicating |
|
| 136 | - * whether the trap was triggered by suspicious timing or not. |
|
| 137 | - * @throws RuntimeException |
|
| 138 | - */ |
|
| 139 | - public static function process_bot_trap($triggered_trap_callback = array()) |
|
| 140 | - { |
|
| 141 | - // what's your email address Mr. Bot ? |
|
| 142 | - $empty_trap = isset($_REQUEST['tkt-slctr-request-processor-email']) |
|
| 143 | - && $_REQUEST['tkt-slctr-request-processor-email'] === ''; |
|
| 144 | - // are we human ? |
|
| 145 | - if ($empty_trap) { |
|
| 146 | - do_action('AHEE__EED_Bot_Trap__process_bot_trap__trap_not_triggered'); |
|
| 147 | - return; |
|
| 148 | - } |
|
| 149 | - // check the given callback is valid first before executing |
|
| 150 | - if (! is_callable($triggered_trap_callback)) { |
|
| 151 | - // invalid callback so lets just sub in our default. |
|
| 152 | - $triggered_trap_callback = array('EED_Bot_Trap', 'triggered_trap_response'); |
|
| 153 | - } |
|
| 154 | - call_user_func($triggered_trap_callback); |
|
| 155 | - } |
|
| 130 | + /** |
|
| 131 | + * process_bot_trap |
|
| 132 | + * |
|
| 133 | + * @param array|string $triggered_trap_callback Callback that will be executed for handling the |
|
| 134 | + * response if the bot trap is triggered. |
|
| 135 | + * It should receive one argument: a boolean indicating |
|
| 136 | + * whether the trap was triggered by suspicious timing or not. |
|
| 137 | + * @throws RuntimeException |
|
| 138 | + */ |
|
| 139 | + public static function process_bot_trap($triggered_trap_callback = array()) |
|
| 140 | + { |
|
| 141 | + // what's your email address Mr. Bot ? |
|
| 142 | + $empty_trap = isset($_REQUEST['tkt-slctr-request-processor-email']) |
|
| 143 | + && $_REQUEST['tkt-slctr-request-processor-email'] === ''; |
|
| 144 | + // are we human ? |
|
| 145 | + if ($empty_trap) { |
|
| 146 | + do_action('AHEE__EED_Bot_Trap__process_bot_trap__trap_not_triggered'); |
|
| 147 | + return; |
|
| 148 | + } |
|
| 149 | + // check the given callback is valid first before executing |
|
| 150 | + if (! is_callable($triggered_trap_callback)) { |
|
| 151 | + // invalid callback so lets just sub in our default. |
|
| 152 | + $triggered_trap_callback = array('EED_Bot_Trap', 'triggered_trap_response'); |
|
| 153 | + } |
|
| 154 | + call_user_func($triggered_trap_callback); |
|
| 155 | + } |
|
| 156 | 156 | |
| 157 | 157 | |
| 158 | - /** |
|
| 159 | - * This is the default callback executed by EED_Bot_Trap::process_bot_trap that handles the response. |
|
| 160 | - * |
|
| 161 | - * @throws InvalidArgumentException |
|
| 162 | - * @throws InvalidDataTypeException |
|
| 163 | - * @throws InvalidInterfaceException |
|
| 164 | - */ |
|
| 165 | - public static function triggered_trap_response() |
|
| 166 | - { |
|
| 167 | - // UH OH... |
|
| 168 | - $redirect_url = apply_filters( |
|
| 169 | - 'FHEE__EED_Bot_Trap__process_bot_trap__redirect_url', |
|
| 170 | - add_query_arg( |
|
| 171 | - array('ee' => 'ticket_selection_received'), |
|
| 172 | - EE_Registry::instance()->CFG->core->reg_page_url() |
|
| 173 | - ) |
|
| 174 | - ); |
|
| 175 | - // if AJAX, return the redirect URL |
|
| 176 | - if (defined('DOING_AJAX') && DOING_AJAX) { |
|
| 177 | - echo wp_json_encode( |
|
| 178 | - array_merge( |
|
| 179 | - EE_Error::get_notices(false), |
|
| 180 | - array( |
|
| 181 | - 'redirect_url' => $redirect_url, |
|
| 182 | - ) |
|
| 183 | - ) |
|
| 184 | - ); |
|
| 185 | - exit(); |
|
| 186 | - } |
|
| 187 | - wp_safe_redirect($redirect_url); |
|
| 188 | - exit(); |
|
| 189 | - } |
|
| 158 | + /** |
|
| 159 | + * This is the default callback executed by EED_Bot_Trap::process_bot_trap that handles the response. |
|
| 160 | + * |
|
| 161 | + * @throws InvalidArgumentException |
|
| 162 | + * @throws InvalidDataTypeException |
|
| 163 | + * @throws InvalidInterfaceException |
|
| 164 | + */ |
|
| 165 | + public static function triggered_trap_response() |
|
| 166 | + { |
|
| 167 | + // UH OH... |
|
| 168 | + $redirect_url = apply_filters( |
|
| 169 | + 'FHEE__EED_Bot_Trap__process_bot_trap__redirect_url', |
|
| 170 | + add_query_arg( |
|
| 171 | + array('ee' => 'ticket_selection_received'), |
|
| 172 | + EE_Registry::instance()->CFG->core->reg_page_url() |
|
| 173 | + ) |
|
| 174 | + ); |
|
| 175 | + // if AJAX, return the redirect URL |
|
| 176 | + if (defined('DOING_AJAX') && DOING_AJAX) { |
|
| 177 | + echo wp_json_encode( |
|
| 178 | + array_merge( |
|
| 179 | + EE_Error::get_notices(false), |
|
| 180 | + array( |
|
| 181 | + 'redirect_url' => $redirect_url, |
|
| 182 | + ) |
|
| 183 | + ) |
|
| 184 | + ); |
|
| 185 | + exit(); |
|
| 186 | + } |
|
| 187 | + wp_safe_redirect($redirect_url); |
|
| 188 | + exit(); |
|
| 189 | + } |
|
| 190 | 190 | |
| 191 | 191 | |
| 192 | - /** |
|
| 193 | - * display_bot_trap_success |
|
| 194 | - * shows a "success" screen to bots so that they (ie: the ppl managing them) |
|
| 195 | - * think the form was submitted successfully |
|
| 196 | - * |
|
| 197 | - * @return void |
|
| 198 | - */ |
|
| 199 | - public static function display_bot_trap_success() |
|
| 200 | - { |
|
| 201 | - add_filter('FHEE__EED_Single_Page_Checkout__run', '__return_false'); |
|
| 202 | - $bot_notice = esc_html__( |
|
| 203 | - 'Thank you so much. Your ticket selections have been received for consideration.', |
|
| 204 | - 'event_espresso' |
|
| 205 | - ); |
|
| 206 | - $bot_notice = isset($_REQUEST['ee-notice']) && $_REQUEST['ee-notice'] !== '' |
|
| 207 | - ? sanitize_text_field(stripslashes($_REQUEST['ee-notice'])) |
|
| 208 | - : $bot_notice; |
|
| 209 | - EE_Registry::instance()->REQ->add_output(EEH_HTML::div($bot_notice, '', 'ee-attention')); |
|
| 210 | - } |
|
| 192 | + /** |
|
| 193 | + * display_bot_trap_success |
|
| 194 | + * shows a "success" screen to bots so that they (ie: the ppl managing them) |
|
| 195 | + * think the form was submitted successfully |
|
| 196 | + * |
|
| 197 | + * @return void |
|
| 198 | + */ |
|
| 199 | + public static function display_bot_trap_success() |
|
| 200 | + { |
|
| 201 | + add_filter('FHEE__EED_Single_Page_Checkout__run', '__return_false'); |
|
| 202 | + $bot_notice = esc_html__( |
|
| 203 | + 'Thank you so much. Your ticket selections have been received for consideration.', |
|
| 204 | + 'event_espresso' |
|
| 205 | + ); |
|
| 206 | + $bot_notice = isset($_REQUEST['ee-notice']) && $_REQUEST['ee-notice'] !== '' |
|
| 207 | + ? sanitize_text_field(stripslashes($_REQUEST['ee-notice'])) |
|
| 208 | + : $bot_notice; |
|
| 209 | + EE_Registry::instance()->REQ->add_output(EEH_HTML::div($bot_notice, '', 'ee-attention')); |
|
| 210 | + } |
|
| 211 | 211 | |
| 212 | 212 | |
| 213 | 213 | |
| 214 | - /*********************************** ADMIN **********************************/ |
|
| 214 | + /*********************************** ADMIN **********************************/ |
|
| 215 | 215 | |
| 216 | 216 | |
| 217 | - /** |
|
| 218 | - * bot_trap_settings_form |
|
| 219 | - * |
|
| 220 | - * @return void |
|
| 221 | - * @throws EE_Error |
|
| 222 | - * @throws InvalidArgumentException |
|
| 223 | - * @throws InvalidDataTypeException |
|
| 224 | - * @throws InvalidInterfaceException |
|
| 225 | - */ |
|
| 226 | - public static function bot_trap_settings_form() |
|
| 227 | - { |
|
| 228 | - EED_Bot_Trap::_bot_trap_settings_form()->enqueue_js(); |
|
| 229 | - echo EED_Bot_Trap::_bot_trap_settings_form()->get_html(); |
|
| 230 | - } |
|
| 217 | + /** |
|
| 218 | + * bot_trap_settings_form |
|
| 219 | + * |
|
| 220 | + * @return void |
|
| 221 | + * @throws EE_Error |
|
| 222 | + * @throws InvalidArgumentException |
|
| 223 | + * @throws InvalidDataTypeException |
|
| 224 | + * @throws InvalidInterfaceException |
|
| 225 | + */ |
|
| 226 | + public static function bot_trap_settings_form() |
|
| 227 | + { |
|
| 228 | + EED_Bot_Trap::_bot_trap_settings_form()->enqueue_js(); |
|
| 229 | + echo EED_Bot_Trap::_bot_trap_settings_form()->get_html(); |
|
| 230 | + } |
|
| 231 | 231 | |
| 232 | 232 | |
| 233 | - /** |
|
| 234 | - * _bot_trap_settings_form |
|
| 235 | - * |
|
| 236 | - * @return EE_Form_Section_Proper |
|
| 237 | - * @throws EE_Error |
|
| 238 | - */ |
|
| 239 | - protected static function _bot_trap_settings_form() |
|
| 240 | - { |
|
| 241 | - return new EE_Form_Section_Proper( |
|
| 242 | - array( |
|
| 243 | - 'name' => 'bot_trap_settings', |
|
| 244 | - 'html_id' => 'bot_trap_settings', |
|
| 245 | - 'layout_strategy' => new EE_Admin_Two_Column_Layout(), |
|
| 246 | - 'subsections' => array( |
|
| 247 | - 'bot_trap_hdr' => new EE_Form_Section_HTML( |
|
| 248 | - EEH_HTML::h2(esc_html__('Bot Trap Settings', 'event_espresso')) |
|
| 249 | - ), |
|
| 250 | - 'use_bot_trap' => new EE_Yes_No_Input( |
|
| 251 | - array( |
|
| 252 | - 'html_label_text' => esc_html__('Enable Bot Trap', 'event_espresso'), |
|
| 253 | - 'html_help_text' => esc_html__( |
|
| 254 | - 'The Event Espresso Bot Trap will insert a fake input into your Ticket Selector forms that is hidden from regular site visitors, but visible to spam bots. Because the input asks for an email address, it is irresistible to spam bots who will of course enter text into it. Since regular site visitors can not see this input, any value detected during form submission means a bot has been detected, which will then be blocked from submitting the form.', |
|
| 255 | - 'event_espresso' |
|
| 256 | - ), |
|
| 257 | - 'default' => EE_Registry::instance()->CFG->registration->use_bot_trap !== null |
|
| 258 | - ? EE_Registry::instance()->CFG->registration->use_bot_trap |
|
| 259 | - : true, |
|
| 260 | - 'required' => false, |
|
| 261 | - ) |
|
| 262 | - ), |
|
| 263 | - ), |
|
| 264 | - ) |
|
| 265 | - ); |
|
| 266 | - } |
|
| 233 | + /** |
|
| 234 | + * _bot_trap_settings_form |
|
| 235 | + * |
|
| 236 | + * @return EE_Form_Section_Proper |
|
| 237 | + * @throws EE_Error |
|
| 238 | + */ |
|
| 239 | + protected static function _bot_trap_settings_form() |
|
| 240 | + { |
|
| 241 | + return new EE_Form_Section_Proper( |
|
| 242 | + array( |
|
| 243 | + 'name' => 'bot_trap_settings', |
|
| 244 | + 'html_id' => 'bot_trap_settings', |
|
| 245 | + 'layout_strategy' => new EE_Admin_Two_Column_Layout(), |
|
| 246 | + 'subsections' => array( |
|
| 247 | + 'bot_trap_hdr' => new EE_Form_Section_HTML( |
|
| 248 | + EEH_HTML::h2(esc_html__('Bot Trap Settings', 'event_espresso')) |
|
| 249 | + ), |
|
| 250 | + 'use_bot_trap' => new EE_Yes_No_Input( |
|
| 251 | + array( |
|
| 252 | + 'html_label_text' => esc_html__('Enable Bot Trap', 'event_espresso'), |
|
| 253 | + 'html_help_text' => esc_html__( |
|
| 254 | + 'The Event Espresso Bot Trap will insert a fake input into your Ticket Selector forms that is hidden from regular site visitors, but visible to spam bots. Because the input asks for an email address, it is irresistible to spam bots who will of course enter text into it. Since regular site visitors can not see this input, any value detected during form submission means a bot has been detected, which will then be blocked from submitting the form.', |
|
| 255 | + 'event_espresso' |
|
| 256 | + ), |
|
| 257 | + 'default' => EE_Registry::instance()->CFG->registration->use_bot_trap !== null |
|
| 258 | + ? EE_Registry::instance()->CFG->registration->use_bot_trap |
|
| 259 | + : true, |
|
| 260 | + 'required' => false, |
|
| 261 | + ) |
|
| 262 | + ), |
|
| 263 | + ), |
|
| 264 | + ) |
|
| 265 | + ); |
|
| 266 | + } |
|
| 267 | 267 | |
| 268 | 268 | |
| 269 | - /** |
|
| 270 | - * update_bot_trap_settings_form |
|
| 271 | - * |
|
| 272 | - * @param EE_Registration_Config $EE_Registration_Config |
|
| 273 | - * @return EE_Registration_Config |
|
| 274 | - * @throws EE_Error |
|
| 275 | - * @throws InvalidArgumentException |
|
| 276 | - * @throws ReflectionException |
|
| 277 | - * @throws InvalidDataTypeException |
|
| 278 | - * @throws InvalidInterfaceException |
|
| 279 | - */ |
|
| 280 | - public static function update_bot_trap_settings_form(EE_Registration_Config $EE_Registration_Config) |
|
| 281 | - { |
|
| 282 | - try { |
|
| 283 | - $bot_trap_settings_form = EED_Bot_Trap::_bot_trap_settings_form(); |
|
| 284 | - // if not displaying a form, then check for form submission |
|
| 285 | - if ($bot_trap_settings_form->was_submitted()) { |
|
| 286 | - // capture form data |
|
| 287 | - $bot_trap_settings_form->receive_form_submission(); |
|
| 288 | - // validate form data |
|
| 289 | - if ($bot_trap_settings_form->is_valid()) { |
|
| 290 | - // grab validated data from form |
|
| 291 | - $valid_data = $bot_trap_settings_form->valid_data(); |
|
| 292 | - if (isset($valid_data['use_bot_trap'])) { |
|
| 293 | - $EE_Registration_Config->use_bot_trap = $valid_data['use_bot_trap']; |
|
| 294 | - } else { |
|
| 295 | - EE_Error::add_error( |
|
| 296 | - esc_html__( |
|
| 297 | - 'Invalid or missing Bot Trap settings. Please refresh the form and try again.', |
|
| 298 | - 'event_espresso' |
|
| 299 | - ), |
|
| 300 | - __FILE__, |
|
| 301 | - __FUNCTION__, |
|
| 302 | - __LINE__ |
|
| 303 | - ); |
|
| 304 | - } |
|
| 305 | - } elseif ($bot_trap_settings_form->submission_error_message() !== '') { |
|
| 306 | - EE_Error::add_error( |
|
| 307 | - $bot_trap_settings_form->submission_error_message(), |
|
| 308 | - __FILE__, |
|
| 309 | - __FUNCTION__, |
|
| 310 | - __LINE__ |
|
| 311 | - ); |
|
| 312 | - } |
|
| 313 | - } |
|
| 314 | - } catch (EE_Error $e) { |
|
| 315 | - $e->get_error(); |
|
| 316 | - } |
|
| 317 | - return $EE_Registration_Config; |
|
| 318 | - } |
|
| 269 | + /** |
|
| 270 | + * update_bot_trap_settings_form |
|
| 271 | + * |
|
| 272 | + * @param EE_Registration_Config $EE_Registration_Config |
|
| 273 | + * @return EE_Registration_Config |
|
| 274 | + * @throws EE_Error |
|
| 275 | + * @throws InvalidArgumentException |
|
| 276 | + * @throws ReflectionException |
|
| 277 | + * @throws InvalidDataTypeException |
|
| 278 | + * @throws InvalidInterfaceException |
|
| 279 | + */ |
|
| 280 | + public static function update_bot_trap_settings_form(EE_Registration_Config $EE_Registration_Config) |
|
| 281 | + { |
|
| 282 | + try { |
|
| 283 | + $bot_trap_settings_form = EED_Bot_Trap::_bot_trap_settings_form(); |
|
| 284 | + // if not displaying a form, then check for form submission |
|
| 285 | + if ($bot_trap_settings_form->was_submitted()) { |
|
| 286 | + // capture form data |
|
| 287 | + $bot_trap_settings_form->receive_form_submission(); |
|
| 288 | + // validate form data |
|
| 289 | + if ($bot_trap_settings_form->is_valid()) { |
|
| 290 | + // grab validated data from form |
|
| 291 | + $valid_data = $bot_trap_settings_form->valid_data(); |
|
| 292 | + if (isset($valid_data['use_bot_trap'])) { |
|
| 293 | + $EE_Registration_Config->use_bot_trap = $valid_data['use_bot_trap']; |
|
| 294 | + } else { |
|
| 295 | + EE_Error::add_error( |
|
| 296 | + esc_html__( |
|
| 297 | + 'Invalid or missing Bot Trap settings. Please refresh the form and try again.', |
|
| 298 | + 'event_espresso' |
|
| 299 | + ), |
|
| 300 | + __FILE__, |
|
| 301 | + __FUNCTION__, |
|
| 302 | + __LINE__ |
|
| 303 | + ); |
|
| 304 | + } |
|
| 305 | + } elseif ($bot_trap_settings_form->submission_error_message() !== '') { |
|
| 306 | + EE_Error::add_error( |
|
| 307 | + $bot_trap_settings_form->submission_error_message(), |
|
| 308 | + __FILE__, |
|
| 309 | + __FUNCTION__, |
|
| 310 | + __LINE__ |
|
| 311 | + ); |
|
| 312 | + } |
|
| 313 | + } |
|
| 314 | + } catch (EE_Error $e) { |
|
| 315 | + $e->get_error(); |
|
| 316 | + } |
|
| 317 | + return $EE_Registration_Config; |
|
| 318 | + } |
|
| 319 | 319 | } |
@@ -12,2889 +12,2889 @@ |
||
| 12 | 12 | class EE_SPCO_Reg_Step_Payment_Options extends EE_SPCO_Reg_Step |
| 13 | 13 | { |
| 14 | 14 | |
| 15 | - /** |
|
| 16 | - * @access protected |
|
| 17 | - * @var EE_Line_Item_Display $Line_Item_Display |
|
| 18 | - */ |
|
| 19 | - protected $line_item_display; |
|
| 20 | - |
|
| 21 | - /** |
|
| 22 | - * @access protected |
|
| 23 | - * @var boolean $handle_IPN_in_this_request |
|
| 24 | - */ |
|
| 25 | - protected $handle_IPN_in_this_request = false; |
|
| 26 | - |
|
| 27 | - |
|
| 28 | - /** |
|
| 29 | - * set_hooks - for hooking into EE Core, other modules, etc |
|
| 30 | - * |
|
| 31 | - * @access public |
|
| 32 | - * @return void |
|
| 33 | - */ |
|
| 34 | - public static function set_hooks() |
|
| 35 | - { |
|
| 36 | - add_filter( |
|
| 37 | - 'FHEE__SPCO__EE_Line_Item_Filter_Collection', |
|
| 38 | - array('EE_SPCO_Reg_Step_Payment_Options', 'add_spco_line_item_filters') |
|
| 39 | - ); |
|
| 40 | - add_action( |
|
| 41 | - 'wp_ajax_switch_spco_billing_form', |
|
| 42 | - array('EE_SPCO_Reg_Step_Payment_Options', 'switch_spco_billing_form') |
|
| 43 | - ); |
|
| 44 | - add_action( |
|
| 45 | - 'wp_ajax_nopriv_switch_spco_billing_form', |
|
| 46 | - array('EE_SPCO_Reg_Step_Payment_Options', 'switch_spco_billing_form') |
|
| 47 | - ); |
|
| 48 | - add_action('wp_ajax_save_payer_details', array('EE_SPCO_Reg_Step_Payment_Options', 'save_payer_details')); |
|
| 49 | - add_action( |
|
| 50 | - 'wp_ajax_nopriv_save_payer_details', |
|
| 51 | - array('EE_SPCO_Reg_Step_Payment_Options', 'save_payer_details') |
|
| 52 | - ); |
|
| 53 | - add_action( |
|
| 54 | - 'wp_ajax_get_transaction_details_for_gateways', |
|
| 55 | - array('EE_SPCO_Reg_Step_Payment_Options', 'get_transaction_details') |
|
| 56 | - ); |
|
| 57 | - add_action( |
|
| 58 | - 'wp_ajax_nopriv_get_transaction_details_for_gateways', |
|
| 59 | - array('EE_SPCO_Reg_Step_Payment_Options', 'get_transaction_details') |
|
| 60 | - ); |
|
| 61 | - add_filter( |
|
| 62 | - 'FHEE__EED_Recaptcha___bypass_recaptcha__bypass_request_params_array', |
|
| 63 | - array('EE_SPCO_Reg_Step_Payment_Options', 'bypass_recaptcha_for_load_payment_method'), |
|
| 64 | - 10, |
|
| 65 | - 1 |
|
| 66 | - ); |
|
| 67 | - } |
|
| 68 | - |
|
| 69 | - |
|
| 70 | - /** |
|
| 71 | - * ajax switch_spco_billing_form |
|
| 72 | - * |
|
| 73 | - * @throws \EE_Error |
|
| 74 | - */ |
|
| 75 | - public static function switch_spco_billing_form() |
|
| 76 | - { |
|
| 77 | - EED_Single_Page_Checkout::process_ajax_request('switch_payment_method'); |
|
| 78 | - } |
|
| 79 | - |
|
| 80 | - |
|
| 81 | - /** |
|
| 82 | - * ajax save_payer_details |
|
| 83 | - * |
|
| 84 | - * @throws \EE_Error |
|
| 85 | - */ |
|
| 86 | - public static function save_payer_details() |
|
| 87 | - { |
|
| 88 | - EED_Single_Page_Checkout::process_ajax_request('save_payer_details_via_ajax'); |
|
| 89 | - } |
|
| 90 | - |
|
| 91 | - |
|
| 92 | - /** |
|
| 93 | - * ajax get_transaction_details |
|
| 94 | - * |
|
| 95 | - * @throws \EE_Error |
|
| 96 | - */ |
|
| 97 | - public static function get_transaction_details() |
|
| 98 | - { |
|
| 99 | - EED_Single_Page_Checkout::process_ajax_request('get_transaction_details_for_gateways'); |
|
| 100 | - } |
|
| 101 | - |
|
| 102 | - |
|
| 103 | - /** |
|
| 104 | - * bypass_recaptcha_for_load_payment_method |
|
| 105 | - * |
|
| 106 | - * @access public |
|
| 107 | - * @return array |
|
| 108 | - * @throws InvalidArgumentException |
|
| 109 | - * @throws \EventEspresso\core\exceptions\InvalidDataTypeException |
|
| 110 | - * @throws \EventEspresso\core\exceptions\InvalidInterfaceException |
|
| 111 | - */ |
|
| 112 | - public static function bypass_recaptcha_for_load_payment_method() |
|
| 113 | - { |
|
| 114 | - return array( |
|
| 115 | - 'EESID' => EE_Registry::instance()->SSN->id(), |
|
| 116 | - 'step' => 'payment_options', |
|
| 117 | - 'action' => 'spco_billing_form', |
|
| 118 | - ); |
|
| 119 | - } |
|
| 120 | - |
|
| 121 | - |
|
| 122 | - /** |
|
| 123 | - * class constructor |
|
| 124 | - * |
|
| 125 | - * @access public |
|
| 126 | - * @param EE_Checkout $checkout |
|
| 127 | - */ |
|
| 128 | - public function __construct(EE_Checkout $checkout) |
|
| 129 | - { |
|
| 130 | - $this->_slug = 'payment_options'; |
|
| 131 | - $this->_name = esc_html__('Payment Options', 'event_espresso'); |
|
| 132 | - $this->_template = SPCO_REG_STEPS_PATH . $this->_slug . DS . 'payment_options_main.template.php'; |
|
| 133 | - $this->checkout = $checkout; |
|
| 134 | - $this->_reset_success_message(); |
|
| 135 | - $this->set_instructions( |
|
| 136 | - esc_html__( |
|
| 137 | - 'Please select a method of payment and provide any necessary billing information before proceeding.', |
|
| 138 | - 'event_espresso' |
|
| 139 | - ) |
|
| 140 | - ); |
|
| 141 | - } |
|
| 142 | - |
|
| 143 | - |
|
| 144 | - /** |
|
| 145 | - * @return null |
|
| 146 | - */ |
|
| 147 | - public function line_item_display() |
|
| 148 | - { |
|
| 149 | - return $this->line_item_display; |
|
| 150 | - } |
|
| 151 | - |
|
| 152 | - |
|
| 153 | - /** |
|
| 154 | - * @param null $line_item_display |
|
| 155 | - */ |
|
| 156 | - public function set_line_item_display($line_item_display) |
|
| 157 | - { |
|
| 158 | - $this->line_item_display = $line_item_display; |
|
| 159 | - } |
|
| 160 | - |
|
| 161 | - |
|
| 162 | - /** |
|
| 163 | - * @return boolean |
|
| 164 | - */ |
|
| 165 | - public function handle_IPN_in_this_request() |
|
| 166 | - { |
|
| 167 | - return $this->handle_IPN_in_this_request; |
|
| 168 | - } |
|
| 169 | - |
|
| 170 | - |
|
| 171 | - /** |
|
| 172 | - * @param boolean $handle_IPN_in_this_request |
|
| 173 | - */ |
|
| 174 | - public function set_handle_IPN_in_this_request($handle_IPN_in_this_request) |
|
| 175 | - { |
|
| 176 | - $this->handle_IPN_in_this_request = filter_var($handle_IPN_in_this_request, FILTER_VALIDATE_BOOLEAN); |
|
| 177 | - } |
|
| 178 | - |
|
| 179 | - |
|
| 180 | - /** |
|
| 181 | - * translate_js_strings |
|
| 182 | - * |
|
| 183 | - * @return void |
|
| 184 | - */ |
|
| 185 | - public function translate_js_strings() |
|
| 186 | - { |
|
| 187 | - EE_Registry::$i18n_js_strings['no_payment_method'] = esc_html__( |
|
| 188 | - 'Please select a method of payment in order to continue.', |
|
| 189 | - 'event_espresso' |
|
| 190 | - ); |
|
| 191 | - EE_Registry::$i18n_js_strings['invalid_payment_method'] = esc_html__( |
|
| 192 | - 'A valid method of payment could not be determined. Please refresh the page and try again.', |
|
| 193 | - 'event_espresso' |
|
| 194 | - ); |
|
| 195 | - EE_Registry::$i18n_js_strings['forwarding_to_offsite'] = esc_html__( |
|
| 196 | - 'Forwarding to Secure Payment Provider.', |
|
| 197 | - 'event_espresso' |
|
| 198 | - ); |
|
| 199 | - } |
|
| 200 | - |
|
| 201 | - |
|
| 202 | - /** |
|
| 203 | - * enqueue_styles_and_scripts |
|
| 204 | - * |
|
| 205 | - * @return void |
|
| 206 | - * @throws EE_Error |
|
| 207 | - * @throws InvalidArgumentException |
|
| 208 | - * @throws \EventEspresso\core\exceptions\InvalidDataTypeException |
|
| 209 | - * @throws \EventEspresso\core\exceptions\InvalidInterfaceException |
|
| 210 | - */ |
|
| 211 | - public function enqueue_styles_and_scripts() |
|
| 212 | - { |
|
| 213 | - $transaction = $this->checkout->transaction; |
|
| 214 | - // if the transaction isn't set or nothing is owed on it, don't enqueue any JS |
|
| 215 | - if (! $transaction instanceof EE_Transaction || EEH_Money::compare_floats($transaction->remaining(), 0)) { |
|
| 216 | - return; |
|
| 217 | - } |
|
| 218 | - foreach (EEM_Payment_Method::instance()->get_all_for_transaction( |
|
| 219 | - $transaction, |
|
| 220 | - EEM_Payment_Method::scope_cart |
|
| 221 | - ) as $payment_method) { |
|
| 222 | - $type_obj = $payment_method->type_obj(); |
|
| 223 | - if ($type_obj instanceof EE_PMT_Base) { |
|
| 224 | - $billing_form = $type_obj->generate_new_billing_form($transaction); |
|
| 225 | - if ($billing_form instanceof EE_Form_Section_Proper) { |
|
| 226 | - $billing_form->enqueue_js(); |
|
| 227 | - } |
|
| 228 | - } |
|
| 229 | - } |
|
| 230 | - } |
|
| 231 | - |
|
| 232 | - |
|
| 233 | - /** |
|
| 234 | - * initialize_reg_step |
|
| 235 | - * |
|
| 236 | - * @return bool |
|
| 237 | - * @throws EE_Error |
|
| 238 | - * @throws InvalidArgumentException |
|
| 239 | - * @throws ReflectionException |
|
| 240 | - * @throws \EventEspresso\core\exceptions\InvalidDataTypeException |
|
| 241 | - * @throws \EventEspresso\core\exceptions\InvalidInterfaceException |
|
| 242 | - */ |
|
| 243 | - public function initialize_reg_step() |
|
| 244 | - { |
|
| 245 | - // TODO: if /when we implement donations, then this will need overriding |
|
| 246 | - if (// don't need payment options for: |
|
| 247 | - // registrations made via the admin |
|
| 248 | - // completed transactions |
|
| 249 | - // overpaid transactions |
|
| 250 | - // $ 0.00 transactions(no payment required) |
|
| 251 | - ! $this->checkout->payment_required() |
|
| 252 | - // but do NOT remove if current action being called belongs to this reg step |
|
| 253 | - && ! is_callable(array($this, $this->checkout->action)) |
|
| 254 | - && ! $this->completed() |
|
| 255 | - ) { |
|
| 256 | - // and if so, then we no longer need the Payment Options step |
|
| 257 | - if ($this->is_current_step()) { |
|
| 258 | - $this->checkout->generate_reg_form = false; |
|
| 259 | - } |
|
| 260 | - $this->checkout->remove_reg_step($this->_slug); |
|
| 261 | - // DEBUG LOG |
|
| 262 | - // $this->checkout->log( __CLASS__, __FUNCTION__, __LINE__ ); |
|
| 263 | - return false; |
|
| 264 | - } |
|
| 265 | - // load EEM_Payment_Method |
|
| 266 | - EE_Registry::instance()->load_model('Payment_Method'); |
|
| 267 | - // get all active payment methods |
|
| 268 | - $this->checkout->available_payment_methods = EEM_Payment_Method::instance()->get_all_for_transaction( |
|
| 269 | - $this->checkout->transaction, |
|
| 270 | - EEM_Payment_Method::scope_cart |
|
| 271 | - ); |
|
| 272 | - return true; |
|
| 273 | - } |
|
| 274 | - |
|
| 275 | - |
|
| 276 | - /** |
|
| 277 | - * @return EE_Form_Section_Proper |
|
| 278 | - * @throws EE_Error |
|
| 279 | - * @throws InvalidArgumentException |
|
| 280 | - * @throws ReflectionException |
|
| 281 | - * @throws \EventEspresso\core\exceptions\EntityNotFoundException |
|
| 282 | - * @throws \EventEspresso\core\exceptions\InvalidDataTypeException |
|
| 283 | - * @throws \EventEspresso\core\exceptions\InvalidInterfaceException |
|
| 284 | - * @throws \EventEspresso\core\exceptions\InvalidStatusException |
|
| 285 | - */ |
|
| 286 | - public function generate_reg_form() |
|
| 287 | - { |
|
| 288 | - // reset in case someone changes their mind |
|
| 289 | - $this->_reset_selected_method_of_payment(); |
|
| 290 | - // set some defaults |
|
| 291 | - $this->checkout->selected_method_of_payment = 'payments_closed'; |
|
| 292 | - $registrations_requiring_payment = array(); |
|
| 293 | - $registrations_for_free_events = array(); |
|
| 294 | - $registrations_requiring_pre_approval = array(); |
|
| 295 | - $sold_out_events = array(); |
|
| 296 | - $insufficient_spaces_available = array(); |
|
| 297 | - $no_payment_required = true; |
|
| 298 | - // loop thru registrations to gather info |
|
| 299 | - $registrations = $this->checkout->transaction->registrations($this->checkout->reg_cache_where_params); |
|
| 300 | - $ejected_registrations = EE_SPCO_Reg_Step_Payment_Options::find_registrations_that_lost_their_space( |
|
| 301 | - $registrations, |
|
| 302 | - $this->checkout->revisit |
|
| 303 | - ); |
|
| 304 | - foreach ($registrations as $REG_ID => $registration) { |
|
| 305 | - /** @var $registration EE_Registration */ |
|
| 306 | - // has this registration lost it's space ? |
|
| 307 | - if (isset($ejected_registrations[ $REG_ID ])) { |
|
| 308 | - if ($registration->event()->is_sold_out() || $registration->event()->is_sold_out(true)) { |
|
| 309 | - $sold_out_events[ $registration->event()->ID() ] = $registration->event(); |
|
| 310 | - } else { |
|
| 311 | - $insufficient_spaces_available[ $registration->event()->ID() ] = $registration->event(); |
|
| 312 | - } |
|
| 313 | - continue; |
|
| 314 | - } |
|
| 315 | - // event requires admin approval |
|
| 316 | - if ($registration->status_ID() === EEM_Registration::status_id_not_approved) { |
|
| 317 | - // add event to list of events with pre-approval reg status |
|
| 318 | - $registrations_requiring_pre_approval[ $REG_ID ] = $registration; |
|
| 319 | - do_action( |
|
| 320 | - 'AHEE__EE_SPCO_Reg_Step_Payment_Options__generate_reg_form__event_requires_pre_approval', |
|
| 321 | - $registration->event(), |
|
| 322 | - $this |
|
| 323 | - ); |
|
| 324 | - continue; |
|
| 325 | - } |
|
| 326 | - if ($this->checkout->revisit |
|
| 327 | - && $registration->status_ID() !== EEM_Registration::status_id_approved |
|
| 328 | - && ( |
|
| 329 | - $registration->event()->is_sold_out() |
|
| 330 | - || $registration->event()->is_sold_out(true) |
|
| 331 | - ) |
|
| 332 | - ) { |
|
| 333 | - // add event to list of events that are sold out |
|
| 334 | - $sold_out_events[ $registration->event()->ID() ] = $registration->event(); |
|
| 335 | - do_action( |
|
| 336 | - 'AHEE__EE_SPCO_Reg_Step_Payment_Options__generate_reg_form__sold_out_event', |
|
| 337 | - $registration->event(), |
|
| 338 | - $this |
|
| 339 | - ); |
|
| 340 | - continue; |
|
| 341 | - } |
|
| 342 | - // are they allowed to pay now and is there monies owing? |
|
| 343 | - if ($registration->owes_monies_and_can_pay()) { |
|
| 344 | - $registrations_requiring_payment[ $REG_ID ] = $registration; |
|
| 345 | - do_action( |
|
| 346 | - 'AHEE__EE_SPCO_Reg_Step_Payment_Options__generate_reg_form__event_requires_payment', |
|
| 347 | - $registration->event(), |
|
| 348 | - $this |
|
| 349 | - ); |
|
| 350 | - } elseif (! $this->checkout->revisit |
|
| 351 | - && $registration->status_ID() !== EEM_Registration::status_id_not_approved |
|
| 352 | - && $registration->ticket()->is_free() |
|
| 353 | - ) { |
|
| 354 | - $registrations_for_free_events[ $registration->event()->ID() ] = $registration; |
|
| 355 | - } |
|
| 356 | - } |
|
| 357 | - $subsections = array(); |
|
| 358 | - // now decide which template to load |
|
| 359 | - if (! empty($sold_out_events)) { |
|
| 360 | - $subsections['sold_out_events'] = $this->_sold_out_events($sold_out_events); |
|
| 361 | - } |
|
| 362 | - if (! empty($insufficient_spaces_available)) { |
|
| 363 | - $subsections['insufficient_space'] = $this->_insufficient_spaces_available( |
|
| 364 | - $insufficient_spaces_available |
|
| 365 | - ); |
|
| 366 | - } |
|
| 367 | - if (! empty($registrations_requiring_pre_approval)) { |
|
| 368 | - $subsections['registrations_requiring_pre_approval'] = $this->_registrations_requiring_pre_approval( |
|
| 369 | - $registrations_requiring_pre_approval |
|
| 370 | - ); |
|
| 371 | - } |
|
| 372 | - if (! empty($registrations_for_free_events)) { |
|
| 373 | - $subsections['no_payment_required'] = $this->_no_payment_required($registrations_for_free_events); |
|
| 374 | - } |
|
| 375 | - if (! empty($registrations_requiring_payment)) { |
|
| 376 | - if ($this->checkout->amount_owing > 0) { |
|
| 377 | - // autoload Line_Item_Display classes |
|
| 378 | - EEH_Autoloader::register_line_item_filter_autoloaders(); |
|
| 379 | - $line_item_filter_processor = new EE_Line_Item_Filter_Processor( |
|
| 380 | - apply_filters( |
|
| 381 | - 'FHEE__SPCO__EE_Line_Item_Filter_Collection', |
|
| 382 | - new EE_Line_Item_Filter_Collection() |
|
| 383 | - ), |
|
| 384 | - $this->checkout->cart->get_grand_total() |
|
| 385 | - ); |
|
| 386 | - /** @var EE_Line_Item $filtered_line_item_tree */ |
|
| 387 | - $filtered_line_item_tree = $line_item_filter_processor->process(); |
|
| 388 | - EEH_Autoloader::register_line_item_display_autoloaders(); |
|
| 389 | - $this->set_line_item_display(new EE_Line_Item_Display('spco')); |
|
| 390 | - $subsections['payment_options'] = $this->_display_payment_options( |
|
| 391 | - $this->line_item_display->display_line_item( |
|
| 392 | - $filtered_line_item_tree, |
|
| 393 | - array('registrations' => $registrations) |
|
| 394 | - ) |
|
| 395 | - ); |
|
| 396 | - $this->checkout->amount_owing = $filtered_line_item_tree->total(); |
|
| 397 | - $this->_apply_registration_payments_to_amount_owing($registrations); |
|
| 398 | - } |
|
| 399 | - $no_payment_required = false; |
|
| 400 | - } else { |
|
| 401 | - $this->_hide_reg_step_submit_button_if_revisit(); |
|
| 402 | - } |
|
| 403 | - $this->_save_selected_method_of_payment(); |
|
| 404 | - |
|
| 405 | - $subsections['default_hidden_inputs'] = $this->reg_step_hidden_inputs(); |
|
| 406 | - $subsections['extra_hidden_inputs'] = $this->_extra_hidden_inputs($no_payment_required); |
|
| 407 | - |
|
| 408 | - return new EE_Form_Section_Proper( |
|
| 409 | - array( |
|
| 410 | - 'name' => $this->reg_form_name(), |
|
| 411 | - 'html_id' => $this->reg_form_name(), |
|
| 412 | - 'subsections' => $subsections, |
|
| 413 | - 'layout_strategy' => new EE_No_Layout(), |
|
| 414 | - ) |
|
| 415 | - ); |
|
| 416 | - } |
|
| 417 | - |
|
| 418 | - |
|
| 419 | - /** |
|
| 420 | - * add line item filters required for this reg step |
|
| 421 | - * these filters are applied via this line in EE_SPCO_Reg_Step_Payment_Options::set_hooks(): |
|
| 422 | - * add_filter( 'FHEE__SPCO__EE_Line_Item_Filter_Collection', array( 'EE_SPCO_Reg_Step_Payment_Options', |
|
| 423 | - * 'add_spco_line_item_filters' ) ); so any code that wants to use the same set of filters during the |
|
| 424 | - * payment options reg step, can apply these filters via the following: apply_filters( |
|
| 425 | - * 'FHEE__SPCO__EE_Line_Item_Filter_Collection', new EE_Line_Item_Filter_Collection() ) or to an existing |
|
| 426 | - * filter collection by passing that instead of instantiating a new collection |
|
| 427 | - * |
|
| 428 | - * @param \EE_Line_Item_Filter_Collection $line_item_filter_collection |
|
| 429 | - * @return EE_Line_Item_Filter_Collection |
|
| 430 | - * @throws EE_Error |
|
| 431 | - * @throws InvalidArgumentException |
|
| 432 | - * @throws ReflectionException |
|
| 433 | - * @throws \EventEspresso\core\exceptions\EntityNotFoundException |
|
| 434 | - * @throws \EventEspresso\core\exceptions\InvalidDataTypeException |
|
| 435 | - * @throws \EventEspresso\core\exceptions\InvalidInterfaceException |
|
| 436 | - * @throws \EventEspresso\core\exceptions\InvalidStatusException |
|
| 437 | - */ |
|
| 438 | - public static function add_spco_line_item_filters(EE_Line_Item_Filter_Collection $line_item_filter_collection) |
|
| 439 | - { |
|
| 440 | - if (! EE_Registry::instance()->SSN instanceof EE_Session) { |
|
| 441 | - return $line_item_filter_collection; |
|
| 442 | - } |
|
| 443 | - if (! EE_Registry::instance()->SSN->checkout() instanceof EE_Checkout) { |
|
| 444 | - return $line_item_filter_collection; |
|
| 445 | - } |
|
| 446 | - if (! EE_Registry::instance()->SSN->checkout()->transaction instanceof EE_Transaction) { |
|
| 447 | - return $line_item_filter_collection; |
|
| 448 | - } |
|
| 449 | - $line_item_filter_collection->add( |
|
| 450 | - new EE_Billable_Line_Item_Filter( |
|
| 451 | - EE_SPCO_Reg_Step_Payment_Options::remove_ejected_registrations( |
|
| 452 | - EE_Registry::instance()->SSN->checkout()->transaction->registrations( |
|
| 453 | - EE_Registry::instance()->SSN->checkout()->reg_cache_where_params |
|
| 454 | - ) |
|
| 455 | - ) |
|
| 456 | - ) |
|
| 457 | - ); |
|
| 458 | - $line_item_filter_collection->add(new EE_Non_Zero_Line_Item_Filter()); |
|
| 459 | - return $line_item_filter_collection; |
|
| 460 | - } |
|
| 461 | - |
|
| 462 | - |
|
| 463 | - /** |
|
| 464 | - * remove_ejected_registrations |
|
| 465 | - * if a registrant has lost their potential space at an event due to lack of payment, |
|
| 466 | - * then this method removes them from the list of registrations being paid for during this request |
|
| 467 | - * |
|
| 468 | - * @param \EE_Registration[] $registrations |
|
| 469 | - * @return EE_Registration[] |
|
| 470 | - * @throws EE_Error |
|
| 471 | - * @throws InvalidArgumentException |
|
| 472 | - * @throws ReflectionException |
|
| 473 | - * @throws \EventEspresso\core\exceptions\EntityNotFoundException |
|
| 474 | - * @throws \EventEspresso\core\exceptions\InvalidDataTypeException |
|
| 475 | - * @throws \EventEspresso\core\exceptions\InvalidInterfaceException |
|
| 476 | - * @throws \EventEspresso\core\exceptions\InvalidStatusException |
|
| 477 | - */ |
|
| 478 | - public static function remove_ejected_registrations(array $registrations) |
|
| 479 | - { |
|
| 480 | - $ejected_registrations = EE_SPCO_Reg_Step_Payment_Options::find_registrations_that_lost_their_space( |
|
| 481 | - $registrations, |
|
| 482 | - EE_Registry::instance()->SSN->checkout()->revisit |
|
| 483 | - ); |
|
| 484 | - foreach ($registrations as $REG_ID => $registration) { |
|
| 485 | - // has this registration lost it's space ? |
|
| 486 | - if (isset($ejected_registrations[ $REG_ID ])) { |
|
| 487 | - unset($registrations[ $REG_ID ]); |
|
| 488 | - continue; |
|
| 489 | - } |
|
| 490 | - } |
|
| 491 | - return $registrations; |
|
| 492 | - } |
|
| 493 | - |
|
| 494 | - |
|
| 495 | - /** |
|
| 496 | - * find_registrations_that_lost_their_space |
|
| 497 | - * If a registrant chooses an offline payment method like Invoice, |
|
| 498 | - * then no space is reserved for them at the event until they fully pay fo that site |
|
| 499 | - * (unless the event's default reg status is set to APPROVED) |
|
| 500 | - * if a registrant then later returns to pay, but the number of spaces available has been reduced due to sales, |
|
| 501 | - * then this method will determine which registrations have lost the ability to complete the reg process. |
|
| 502 | - * |
|
| 503 | - * @param \EE_Registration[] $registrations |
|
| 504 | - * @param bool $revisit |
|
| 505 | - * @return array |
|
| 506 | - * @throws EE_Error |
|
| 507 | - * @throws InvalidArgumentException |
|
| 508 | - * @throws ReflectionException |
|
| 509 | - * @throws \EventEspresso\core\exceptions\EntityNotFoundException |
|
| 510 | - * @throws \EventEspresso\core\exceptions\InvalidDataTypeException |
|
| 511 | - * @throws \EventEspresso\core\exceptions\InvalidInterfaceException |
|
| 512 | - * @throws \EventEspresso\core\exceptions\InvalidStatusException |
|
| 513 | - */ |
|
| 514 | - public static function find_registrations_that_lost_their_space(array $registrations, $revisit = false) |
|
| 515 | - { |
|
| 516 | - // registrations per event |
|
| 517 | - $event_reg_count = array(); |
|
| 518 | - // spaces left per event |
|
| 519 | - $event_spaces_remaining = array(); |
|
| 520 | - // tickets left sorted by ID |
|
| 521 | - $tickets_remaining = array(); |
|
| 522 | - // registrations that have lost their space |
|
| 523 | - $ejected_registrations = array(); |
|
| 524 | - foreach ($registrations as $REG_ID => $registration) { |
|
| 525 | - if ($registration->status_ID() === EEM_Registration::status_id_approved |
|
| 526 | - || apply_filters( |
|
| 527 | - 'FHEE__EE_SPCO_Reg_Step_Payment_Options__find_registrations_that_lost_their_space__allow_reg_payment', |
|
| 528 | - false, |
|
| 529 | - $registration, |
|
| 530 | - $revisit |
|
| 531 | - ) |
|
| 532 | - ) { |
|
| 533 | - continue; |
|
| 534 | - } |
|
| 535 | - $EVT_ID = $registration->event_ID(); |
|
| 536 | - $ticket = $registration->ticket(); |
|
| 537 | - if (! isset($tickets_remaining[ $ticket->ID() ])) { |
|
| 538 | - $tickets_remaining[ $ticket->ID() ] = $ticket->remaining(); |
|
| 539 | - } |
|
| 540 | - if ($tickets_remaining[ $ticket->ID() ] > 0) { |
|
| 541 | - if (! isset($event_reg_count[ $EVT_ID ])) { |
|
| 542 | - $event_reg_count[ $EVT_ID ] = 0; |
|
| 543 | - } |
|
| 544 | - $event_reg_count[ $EVT_ID ]++; |
|
| 545 | - if (! isset($event_spaces_remaining[ $EVT_ID ])) { |
|
| 546 | - $event_spaces_remaining[ $EVT_ID ] = $registration->event()->spaces_remaining_for_sale(); |
|
| 547 | - } |
|
| 548 | - } |
|
| 549 | - if ($revisit |
|
| 550 | - && ($tickets_remaining[ $ticket->ID() ] === 0 |
|
| 551 | - || $event_reg_count[ $EVT_ID ] > $event_spaces_remaining[ $EVT_ID ] |
|
| 552 | - ) |
|
| 553 | - ) { |
|
| 554 | - $ejected_registrations[ $REG_ID ] = $registration->event(); |
|
| 555 | - if ($registration->status_ID() !== EEM_Registration::status_id_wait_list) { |
|
| 556 | - /** @type EE_Registration_Processor $registration_processor */ |
|
| 557 | - $registration_processor = EE_Registry::instance()->load_class('Registration_Processor'); |
|
| 558 | - // at this point, we should have enough details about the registrant to consider the registration |
|
| 559 | - // NOT incomplete |
|
| 560 | - $registration_processor->manually_update_registration_status( |
|
| 561 | - $registration, |
|
| 562 | - EEM_Registration::status_id_wait_list |
|
| 563 | - ); |
|
| 564 | - } |
|
| 565 | - } |
|
| 566 | - } |
|
| 567 | - return $ejected_registrations; |
|
| 568 | - } |
|
| 569 | - |
|
| 570 | - |
|
| 571 | - /** |
|
| 572 | - * _hide_reg_step_submit_button |
|
| 573 | - * removes the html for the reg step submit button |
|
| 574 | - * by replacing it with an empty string via filter callback |
|
| 575 | - * |
|
| 576 | - * @return void |
|
| 577 | - */ |
|
| 578 | - protected function _adjust_registration_status_if_event_old_sold() |
|
| 579 | - { |
|
| 580 | - } |
|
| 581 | - |
|
| 582 | - |
|
| 583 | - /** |
|
| 584 | - * _hide_reg_step_submit_button |
|
| 585 | - * removes the html for the reg step submit button |
|
| 586 | - * by replacing it with an empty string via filter callback |
|
| 587 | - * |
|
| 588 | - * @return void |
|
| 589 | - */ |
|
| 590 | - protected function _hide_reg_step_submit_button_if_revisit() |
|
| 591 | - { |
|
| 592 | - if ($this->checkout->revisit) { |
|
| 593 | - add_filter('FHEE__EE_SPCO_Reg_Step__reg_step_submit_button__sbmt_btn_html', '__return_empty_string'); |
|
| 594 | - } |
|
| 595 | - } |
|
| 596 | - |
|
| 597 | - |
|
| 598 | - /** |
|
| 599 | - * sold_out_events |
|
| 600 | - * displays notices regarding events that have sold out since hte registrant first signed up |
|
| 601 | - * |
|
| 602 | - * @param \EE_Event[] $sold_out_events_array |
|
| 603 | - * @return \EE_Form_Section_Proper |
|
| 604 | - * @throws \EE_Error |
|
| 605 | - */ |
|
| 606 | - private function _sold_out_events($sold_out_events_array = array()) |
|
| 607 | - { |
|
| 608 | - // set some defaults |
|
| 609 | - $this->checkout->selected_method_of_payment = 'events_sold_out'; |
|
| 610 | - $sold_out_events = ''; |
|
| 611 | - foreach ($sold_out_events_array as $sold_out_event) { |
|
| 612 | - $sold_out_events .= EEH_HTML::li( |
|
| 613 | - EEH_HTML::span( |
|
| 614 | - ' ' . $sold_out_event->name(), |
|
| 615 | - '', |
|
| 616 | - 'dashicons dashicons-marker ee-icon-size-16 pink-text' |
|
| 617 | - ) |
|
| 618 | - ); |
|
| 619 | - } |
|
| 620 | - return new EE_Form_Section_Proper( |
|
| 621 | - array( |
|
| 622 | - 'layout_strategy' => new EE_Template_Layout( |
|
| 623 | - array( |
|
| 624 | - 'layout_template_file' => SPCO_REG_STEPS_PATH |
|
| 625 | - . $this->_slug |
|
| 626 | - . DS |
|
| 627 | - . 'sold_out_events.template.php', |
|
| 628 | - 'template_args' => apply_filters( |
|
| 629 | - 'FHEE__EE_SPCO_Reg_Step_Payment_Options___sold_out_events__template_args', |
|
| 630 | - array( |
|
| 631 | - 'sold_out_events' => $sold_out_events, |
|
| 632 | - 'sold_out_events_msg' => apply_filters( |
|
| 633 | - 'FHEE__EE_SPCO_Reg_Step_Payment_Options___sold_out_events__sold_out_events_msg', |
|
| 634 | - sprintf( |
|
| 635 | - esc_html__( |
|
| 636 | - 'It appears that the event you were about to make a payment for has sold out since you first registered. If you have already made a partial payment towards this event, please contact the event administrator for a refund.%3$s%3$s%1$sPlease note that availability can change at any time due to cancellations, so please check back again later if registration for this event(s) is important to you.%2$s', |
|
| 637 | - 'event_espresso' |
|
| 638 | - ), |
|
| 639 | - '<strong>', |
|
| 640 | - '</strong>', |
|
| 641 | - '<br />' |
|
| 642 | - ) |
|
| 643 | - ), |
|
| 644 | - ) |
|
| 645 | - ), |
|
| 646 | - ) |
|
| 647 | - ), |
|
| 648 | - ) |
|
| 649 | - ); |
|
| 650 | - } |
|
| 651 | - |
|
| 652 | - |
|
| 653 | - /** |
|
| 654 | - * _insufficient_spaces_available |
|
| 655 | - * displays notices regarding events that do not have enough remaining spaces |
|
| 656 | - * to satisfy the current number of registrations looking to pay |
|
| 657 | - * |
|
| 658 | - * @param \EE_Event[] $insufficient_spaces_events_array |
|
| 659 | - * @return \EE_Form_Section_Proper |
|
| 660 | - * @throws \EE_Error |
|
| 661 | - */ |
|
| 662 | - private function _insufficient_spaces_available($insufficient_spaces_events_array = array()) |
|
| 663 | - { |
|
| 664 | - // set some defaults |
|
| 665 | - $this->checkout->selected_method_of_payment = 'invoice'; |
|
| 666 | - $insufficient_space_events = ''; |
|
| 667 | - foreach ($insufficient_spaces_events_array as $event) { |
|
| 668 | - if ($event instanceof EE_Event) { |
|
| 669 | - $insufficient_space_events .= EEH_HTML::li( |
|
| 670 | - EEH_HTML::span(' ' . $event->name(), '', 'dashicons dashicons-marker ee-icon-size-16 pink-text') |
|
| 671 | - ); |
|
| 672 | - } |
|
| 673 | - } |
|
| 674 | - return new EE_Form_Section_Proper( |
|
| 675 | - array( |
|
| 676 | - 'subsections' => array( |
|
| 677 | - 'default_hidden_inputs' => $this->reg_step_hidden_inputs(), |
|
| 678 | - 'extra_hidden_inputs' => $this->_extra_hidden_inputs(), |
|
| 679 | - ), |
|
| 680 | - 'layout_strategy' => new EE_Template_Layout( |
|
| 681 | - array( |
|
| 682 | - 'layout_template_file' => SPCO_REG_STEPS_PATH |
|
| 683 | - . $this->_slug |
|
| 684 | - . DS |
|
| 685 | - . 'sold_out_events.template.php', |
|
| 686 | - 'template_args' => apply_filters( |
|
| 687 | - 'FHEE__EE_SPCO_Reg_Step_Payment_Options___insufficient_spaces_available__template_args', |
|
| 688 | - array( |
|
| 689 | - 'sold_out_events' => $insufficient_space_events, |
|
| 690 | - 'sold_out_events_msg' => apply_filters( |
|
| 691 | - 'FHEE__EE_SPCO_Reg_Step_Payment_Options___insufficient_spaces_available__insufficient_space_msg', |
|
| 692 | - esc_html__( |
|
| 693 | - 'It appears that the event you were about to make a payment for has sold additional tickets since you first registered, and there are no longer enough spaces left to accommodate your selections. You may continue to pay and secure the available space(s) remaining, or simply cancel if you no longer wish to purchase. If you have already made a partial payment towards this event, please contact the event administrator for a refund.', |
|
| 694 | - 'event_espresso' |
|
| 695 | - ) |
|
| 696 | - ), |
|
| 697 | - ) |
|
| 698 | - ), |
|
| 699 | - ) |
|
| 700 | - ), |
|
| 701 | - ) |
|
| 702 | - ); |
|
| 703 | - } |
|
| 704 | - |
|
| 705 | - |
|
| 706 | - /** |
|
| 707 | - * registrations_requiring_pre_approval |
|
| 708 | - * |
|
| 709 | - * @param array $registrations_requiring_pre_approval |
|
| 710 | - * @return EE_Form_Section_Proper |
|
| 711 | - * @throws EE_Error |
|
| 712 | - * @throws \EventEspresso\core\exceptions\EntityNotFoundException |
|
| 713 | - */ |
|
| 714 | - private function _registrations_requiring_pre_approval($registrations_requiring_pre_approval = array()) |
|
| 715 | - { |
|
| 716 | - $events_requiring_pre_approval = ''; |
|
| 717 | - foreach ($registrations_requiring_pre_approval as $registration) { |
|
| 718 | - if ($registration instanceof EE_Registration && $registration->event() instanceof EE_Event) { |
|
| 719 | - $events_requiring_pre_approval[ $registration->event()->ID() ] = EEH_HTML::li( |
|
| 720 | - EEH_HTML::span( |
|
| 721 | - '', |
|
| 722 | - '', |
|
| 723 | - 'dashicons dashicons-marker ee-icon-size-16 orange-text' |
|
| 724 | - ) |
|
| 725 | - . EEH_HTML::span($registration->event()->name(), '', 'orange-text') |
|
| 726 | - ); |
|
| 727 | - } |
|
| 728 | - } |
|
| 729 | - return new EE_Form_Section_Proper( |
|
| 730 | - array( |
|
| 731 | - 'layout_strategy' => new EE_Template_Layout( |
|
| 732 | - array( |
|
| 733 | - 'layout_template_file' => SPCO_REG_STEPS_PATH |
|
| 734 | - . $this->_slug |
|
| 735 | - . DS |
|
| 736 | - . 'events_requiring_pre_approval.template.php', // layout_template |
|
| 737 | - 'template_args' => apply_filters( |
|
| 738 | - 'FHEE__EE_SPCO_Reg_Step_Payment_Options___sold_out_events__template_args', |
|
| 739 | - array( |
|
| 740 | - 'events_requiring_pre_approval' => implode('', $events_requiring_pre_approval), |
|
| 741 | - 'events_requiring_pre_approval_msg' => apply_filters( |
|
| 742 | - 'FHEE__EE_SPCO_Reg_Step_Payment_Options___events_requiring_pre_approval__events_requiring_pre_approval_msg', |
|
| 743 | - esc_html__( |
|
| 744 | - 'The following events do not require payment at this time and will not be billed during this transaction. Billing will only occur after the attendee has been approved by the event organizer. You will be notified when your registration has been processed. If this is a free event, then no billing will occur.', |
|
| 745 | - 'event_espresso' |
|
| 746 | - ) |
|
| 747 | - ), |
|
| 748 | - ) |
|
| 749 | - ), |
|
| 750 | - ) |
|
| 751 | - ), |
|
| 752 | - ) |
|
| 753 | - ); |
|
| 754 | - } |
|
| 755 | - |
|
| 756 | - |
|
| 757 | - /** |
|
| 758 | - * _no_payment_required |
|
| 759 | - * |
|
| 760 | - * @param \EE_Event[] $registrations_for_free_events |
|
| 761 | - * @return \EE_Form_Section_Proper |
|
| 762 | - * @throws \EE_Error |
|
| 763 | - */ |
|
| 764 | - private function _no_payment_required($registrations_for_free_events = array()) |
|
| 765 | - { |
|
| 766 | - // set some defaults |
|
| 767 | - $this->checkout->selected_method_of_payment = 'no_payment_required'; |
|
| 768 | - // generate no_payment_required form |
|
| 769 | - return new EE_Form_Section_Proper( |
|
| 770 | - array( |
|
| 771 | - 'layout_strategy' => new EE_Template_Layout( |
|
| 772 | - array( |
|
| 773 | - 'layout_template_file' => SPCO_REG_STEPS_PATH |
|
| 774 | - . $this->_slug |
|
| 775 | - . DS |
|
| 776 | - . 'no_payment_required.template.php', // layout_template |
|
| 777 | - 'template_args' => apply_filters( |
|
| 778 | - 'FHEE__EE_SPCO_Reg_Step_Payment_Options___no_payment_required__template_args', |
|
| 779 | - array( |
|
| 780 | - 'revisit' => $this->checkout->revisit, |
|
| 781 | - 'registrations' => array(), |
|
| 782 | - 'ticket_count' => array(), |
|
| 783 | - 'registrations_for_free_events' => $registrations_for_free_events, |
|
| 784 | - 'no_payment_required_msg' => EEH_HTML::p( |
|
| 785 | - esc_html__('This is a free event, so no billing will occur.', 'event_espresso') |
|
| 786 | - ), |
|
| 787 | - ) |
|
| 788 | - ), |
|
| 789 | - ) |
|
| 790 | - ), |
|
| 791 | - ) |
|
| 792 | - ); |
|
| 793 | - } |
|
| 794 | - |
|
| 795 | - |
|
| 796 | - /** |
|
| 797 | - * _display_payment_options |
|
| 798 | - * |
|
| 799 | - * @param string $transaction_details |
|
| 800 | - * @return EE_Form_Section_Proper |
|
| 801 | - * @throws EE_Error |
|
| 802 | - * @throws InvalidArgumentException |
|
| 803 | - * @throws \EventEspresso\core\exceptions\InvalidDataTypeException |
|
| 804 | - * @throws \EventEspresso\core\exceptions\InvalidInterfaceException |
|
| 805 | - */ |
|
| 806 | - private function _display_payment_options($transaction_details = '') |
|
| 807 | - { |
|
| 808 | - // has method_of_payment been set by no-js user? |
|
| 809 | - $this->checkout->selected_method_of_payment = $this->_get_selected_method_of_payment(); |
|
| 810 | - // build payment options form |
|
| 811 | - return apply_filters( |
|
| 812 | - 'FHEE__EE_SPCO_Reg_Step_Payment_Options___display_payment_options__payment_options_form', |
|
| 813 | - new EE_Form_Section_Proper( |
|
| 814 | - array( |
|
| 815 | - 'subsections' => array( |
|
| 816 | - 'before_payment_options' => apply_filters( |
|
| 817 | - 'FHEE__EE_SPCO_Reg_Step_Payment_Options___display_payment_options__before_payment_options', |
|
| 818 | - new EE_Form_Section_Proper( |
|
| 819 | - array('layout_strategy' => new EE_Div_Per_Section_Layout()) |
|
| 820 | - ) |
|
| 821 | - ), |
|
| 822 | - 'payment_options' => $this->_setup_payment_options(), |
|
| 823 | - 'after_payment_options' => apply_filters( |
|
| 824 | - 'FHEE__EE_SPCO_Reg_Step_Payment_Options___display_payment_options__after_payment_options', |
|
| 825 | - new EE_Form_Section_Proper( |
|
| 826 | - array('layout_strategy' => new EE_Div_Per_Section_Layout()) |
|
| 827 | - ) |
|
| 828 | - ), |
|
| 829 | - ), |
|
| 830 | - 'layout_strategy' => new EE_Template_Layout( |
|
| 831 | - array( |
|
| 832 | - 'layout_template_file' => $this->_template, |
|
| 833 | - 'template_args' => apply_filters( |
|
| 834 | - 'FHEE__EE_SPCO_Reg_Step_Payment_Options___display_payment_options__template_args', |
|
| 835 | - array( |
|
| 836 | - 'reg_count' => $this->line_item_display->total_items(), |
|
| 837 | - 'transaction_details' => $transaction_details, |
|
| 838 | - 'available_payment_methods' => array(), |
|
| 839 | - ) |
|
| 840 | - ), |
|
| 841 | - ) |
|
| 842 | - ), |
|
| 843 | - ) |
|
| 844 | - ) |
|
| 845 | - ); |
|
| 846 | - } |
|
| 847 | - |
|
| 848 | - |
|
| 849 | - /** |
|
| 850 | - * _extra_hidden_inputs |
|
| 851 | - * |
|
| 852 | - * @param bool $no_payment_required |
|
| 853 | - * @return \EE_Form_Section_Proper |
|
| 854 | - * @throws \EE_Error |
|
| 855 | - */ |
|
| 856 | - private function _extra_hidden_inputs($no_payment_required = true) |
|
| 857 | - { |
|
| 858 | - return new EE_Form_Section_Proper( |
|
| 859 | - array( |
|
| 860 | - 'html_id' => 'ee-' . $this->slug() . '-extra-hidden-inputs', |
|
| 861 | - 'layout_strategy' => new EE_Div_Per_Section_Layout(), |
|
| 862 | - 'subsections' => array( |
|
| 863 | - 'spco_no_payment_required' => new EE_Hidden_Input( |
|
| 864 | - array( |
|
| 865 | - 'normalization_strategy' => new EE_Boolean_Normalization(), |
|
| 866 | - 'html_name' => 'spco_no_payment_required', |
|
| 867 | - 'html_id' => 'spco-no-payment-required-payment_options', |
|
| 868 | - 'default' => $no_payment_required, |
|
| 869 | - ) |
|
| 870 | - ), |
|
| 871 | - 'spco_transaction_id' => new EE_Fixed_Hidden_Input( |
|
| 872 | - array( |
|
| 873 | - 'normalization_strategy' => new EE_Int_Normalization(), |
|
| 874 | - 'html_name' => 'spco_transaction_id', |
|
| 875 | - 'html_id' => 'spco-transaction-id', |
|
| 876 | - 'default' => $this->checkout->transaction->ID(), |
|
| 877 | - ) |
|
| 878 | - ), |
|
| 879 | - ), |
|
| 880 | - ) |
|
| 881 | - ); |
|
| 882 | - } |
|
| 883 | - |
|
| 884 | - |
|
| 885 | - /** |
|
| 886 | - * _apply_registration_payments_to_amount_owing |
|
| 887 | - * |
|
| 888 | - * @access protected |
|
| 889 | - * @param array $registrations |
|
| 890 | - * @throws EE_Error |
|
| 891 | - */ |
|
| 892 | - protected function _apply_registration_payments_to_amount_owing(array $registrations) |
|
| 893 | - { |
|
| 894 | - $payments = array(); |
|
| 895 | - foreach ($registrations as $registration) { |
|
| 896 | - if ($registration instanceof EE_Registration && $registration->owes_monies_and_can_pay()) { |
|
| 897 | - $payments += $registration->registration_payments(); |
|
| 898 | - } |
|
| 899 | - } |
|
| 900 | - if (! empty($payments)) { |
|
| 901 | - foreach ($payments as $payment) { |
|
| 902 | - if ($payment instanceof EE_Registration_Payment) { |
|
| 903 | - $this->checkout->amount_owing -= $payment->amount(); |
|
| 904 | - } |
|
| 905 | - } |
|
| 906 | - } |
|
| 907 | - } |
|
| 908 | - |
|
| 909 | - |
|
| 910 | - /** |
|
| 911 | - * _reset_selected_method_of_payment |
|
| 912 | - * |
|
| 913 | - * @access private |
|
| 914 | - * @param bool $force_reset |
|
| 915 | - * @return void |
|
| 916 | - * @throws InvalidArgumentException |
|
| 917 | - * @throws \EventEspresso\core\exceptions\InvalidDataTypeException |
|
| 918 | - * @throws \EventEspresso\core\exceptions\InvalidInterfaceException |
|
| 919 | - */ |
|
| 920 | - private function _reset_selected_method_of_payment($force_reset = false) |
|
| 921 | - { |
|
| 922 | - $reset_payment_method = $force_reset |
|
| 923 | - ? true |
|
| 924 | - : sanitize_text_field(EE_Registry::instance()->REQ->get('reset_payment_method', false)); |
|
| 925 | - if ($reset_payment_method) { |
|
| 926 | - $this->checkout->selected_method_of_payment = null; |
|
| 927 | - $this->checkout->payment_method = null; |
|
| 928 | - $this->checkout->billing_form = null; |
|
| 929 | - $this->_save_selected_method_of_payment(); |
|
| 930 | - } |
|
| 931 | - } |
|
| 932 | - |
|
| 933 | - |
|
| 934 | - /** |
|
| 935 | - * _save_selected_method_of_payment |
|
| 936 | - * stores the selected_method_of_payment in the session |
|
| 937 | - * so that it's available for all subsequent requests including AJAX |
|
| 938 | - * |
|
| 939 | - * @access private |
|
| 940 | - * @param string $selected_method_of_payment |
|
| 941 | - * @return void |
|
| 942 | - * @throws InvalidArgumentException |
|
| 943 | - * @throws \EventEspresso\core\exceptions\InvalidDataTypeException |
|
| 944 | - * @throws \EventEspresso\core\exceptions\InvalidInterfaceException |
|
| 945 | - */ |
|
| 946 | - private function _save_selected_method_of_payment($selected_method_of_payment = '') |
|
| 947 | - { |
|
| 948 | - $selected_method_of_payment = ! empty($selected_method_of_payment) |
|
| 949 | - ? $selected_method_of_payment |
|
| 950 | - : $this->checkout->selected_method_of_payment; |
|
| 951 | - EE_Registry::instance()->SSN->set_session_data( |
|
| 952 | - array('selected_method_of_payment' => $selected_method_of_payment) |
|
| 953 | - ); |
|
| 954 | - } |
|
| 955 | - |
|
| 956 | - |
|
| 957 | - /** |
|
| 958 | - * _setup_payment_options |
|
| 959 | - * |
|
| 960 | - * @return EE_Form_Section_Proper |
|
| 961 | - * @throws EE_Error |
|
| 962 | - * @throws InvalidArgumentException |
|
| 963 | - * @throws ReflectionException |
|
| 964 | - * @throws \EventEspresso\core\exceptions\InvalidDataTypeException |
|
| 965 | - * @throws \EventEspresso\core\exceptions\InvalidInterfaceException |
|
| 966 | - */ |
|
| 967 | - public function _setup_payment_options() |
|
| 968 | - { |
|
| 969 | - // load payment method classes |
|
| 970 | - $this->checkout->available_payment_methods = $this->_get_available_payment_methods(); |
|
| 971 | - if (empty($this->checkout->available_payment_methods)) { |
|
| 972 | - EE_Error::add_error( |
|
| 973 | - apply_filters( |
|
| 974 | - 'FHEE__EE_SPCO_Reg_Step_Payment_Options___setup_payment_options__error_message_no_payment_methods', |
|
| 975 | - sprintf( |
|
| 976 | - esc_html__( |
|
| 977 | - 'Sorry, you cannot complete your purchase because a payment method is not active.%1$s Please contact %2$s for assistance and provide a description of the problem.', |
|
| 978 | - 'event_espresso' |
|
| 979 | - ), |
|
| 980 | - '<br>', |
|
| 981 | - EE_Registry::instance()->CFG->organization->get_pretty('email') |
|
| 982 | - ) |
|
| 983 | - ), |
|
| 984 | - __FILE__, |
|
| 985 | - __FUNCTION__, |
|
| 986 | - __LINE__ |
|
| 987 | - ); |
|
| 988 | - } |
|
| 989 | - // switch up header depending on number of available payment methods |
|
| 990 | - $payment_method_header = count($this->checkout->available_payment_methods) > 1 |
|
| 991 | - ? apply_filters( |
|
| 992 | - 'FHEE__registration_page_payment_options__method_of_payment_hdr', |
|
| 993 | - esc_html__('Please Select Your Method of Payment', 'event_espresso') |
|
| 994 | - ) |
|
| 995 | - : apply_filters( |
|
| 996 | - 'FHEE__registration_page_payment_options__method_of_payment_hdr', |
|
| 997 | - esc_html__('Method of Payment', 'event_espresso') |
|
| 998 | - ); |
|
| 999 | - $available_payment_methods = array( |
|
| 1000 | - // display the "Payment Method" header |
|
| 1001 | - 'payment_method_header' => new EE_Form_Section_HTML( |
|
| 1002 | - EEH_HTML::h4($payment_method_header, 'method-of-payment-hdr') |
|
| 1003 | - ), |
|
| 1004 | - ); |
|
| 1005 | - // the list of actual payment methods ( invoice, paypal, etc ) in a ( slug => HTML ) format |
|
| 1006 | - $available_payment_method_options = array(); |
|
| 1007 | - $default_payment_method_option = array(); |
|
| 1008 | - // additional instructions to be displayed and hidden below payment methods (adding a clearing div to start) |
|
| 1009 | - $payment_methods_billing_info = array( |
|
| 1010 | - new EE_Form_Section_HTML( |
|
| 1011 | - EEH_HTML::div('<br />', '', '', 'clear:both;') |
|
| 1012 | - ), |
|
| 1013 | - ); |
|
| 1014 | - // loop through payment methods |
|
| 1015 | - foreach ($this->checkout->available_payment_methods as $payment_method) { |
|
| 1016 | - if ($payment_method instanceof EE_Payment_Method) { |
|
| 1017 | - $payment_method_button = EEH_HTML::img( |
|
| 1018 | - $payment_method->button_url(), |
|
| 1019 | - $payment_method->name(), |
|
| 1020 | - 'spco-payment-method-' . $payment_method->slug() . '-btn-img', |
|
| 1021 | - 'spco-payment-method-btn-img' |
|
| 1022 | - ); |
|
| 1023 | - // check if any payment methods are set as default |
|
| 1024 | - // if payment method is already selected OR nothing is selected and this payment method should be |
|
| 1025 | - // open_by_default |
|
| 1026 | - if (($this->checkout->selected_method_of_payment === $payment_method->slug()) |
|
| 1027 | - || (! $this->checkout->selected_method_of_payment && $payment_method->open_by_default()) |
|
| 1028 | - ) { |
|
| 1029 | - $this->checkout->selected_method_of_payment = $payment_method->slug(); |
|
| 1030 | - $this->_save_selected_method_of_payment(); |
|
| 1031 | - $default_payment_method_option[ $payment_method->slug() ] = $payment_method_button; |
|
| 1032 | - } else { |
|
| 1033 | - $available_payment_method_options[ $payment_method->slug() ] = $payment_method_button; |
|
| 1034 | - } |
|
| 1035 | - $payment_methods_billing_info[ $payment_method->slug( |
|
| 1036 | - ) . '-info' ] = $this->_payment_method_billing_info( |
|
| 1037 | - $payment_method |
|
| 1038 | - ); |
|
| 1039 | - } |
|
| 1040 | - } |
|
| 1041 | - // prepend available_payment_method_options with default_payment_method_option so that it appears first in list |
|
| 1042 | - // of PMs |
|
| 1043 | - $available_payment_method_options = $default_payment_method_option + $available_payment_method_options; |
|
| 1044 | - // now generate the actual form inputs |
|
| 1045 | - $available_payment_methods['available_payment_methods'] = $this->_available_payment_method_inputs( |
|
| 1046 | - $available_payment_method_options |
|
| 1047 | - ); |
|
| 1048 | - $available_payment_methods += $payment_methods_billing_info; |
|
| 1049 | - // build the available payment methods form |
|
| 1050 | - return new EE_Form_Section_Proper( |
|
| 1051 | - array( |
|
| 1052 | - 'html_id' => 'spco-available-methods-of-payment-dv', |
|
| 1053 | - 'subsections' => $available_payment_methods, |
|
| 1054 | - 'layout_strategy' => new EE_Div_Per_Section_Layout(), |
|
| 1055 | - ) |
|
| 1056 | - ); |
|
| 1057 | - } |
|
| 1058 | - |
|
| 1059 | - |
|
| 1060 | - /** |
|
| 1061 | - * _get_available_payment_methods |
|
| 1062 | - * |
|
| 1063 | - * @return EE_Payment_Method[] |
|
| 1064 | - * @throws EE_Error |
|
| 1065 | - * @throws InvalidArgumentException |
|
| 1066 | - * @throws ReflectionException |
|
| 1067 | - * @throws \EventEspresso\core\exceptions\InvalidDataTypeException |
|
| 1068 | - * @throws \EventEspresso\core\exceptions\InvalidInterfaceException |
|
| 1069 | - */ |
|
| 1070 | - protected function _get_available_payment_methods() |
|
| 1071 | - { |
|
| 1072 | - if (! empty($this->checkout->available_payment_methods)) { |
|
| 1073 | - return $this->checkout->available_payment_methods; |
|
| 1074 | - } |
|
| 1075 | - $available_payment_methods = array(); |
|
| 1076 | - // load EEM_Payment_Method |
|
| 1077 | - EE_Registry::instance()->load_model('Payment_Method'); |
|
| 1078 | - /** @type EEM_Payment_Method $EEM_Payment_Method */ |
|
| 1079 | - $EEM_Payment_Method = EE_Registry::instance()->LIB->EEM_Payment_Method; |
|
| 1080 | - // get all active payment methods |
|
| 1081 | - $payment_methods = $EEM_Payment_Method->get_all_for_transaction( |
|
| 1082 | - $this->checkout->transaction, |
|
| 1083 | - EEM_Payment_Method::scope_cart |
|
| 1084 | - ); |
|
| 1085 | - foreach ($payment_methods as $payment_method) { |
|
| 1086 | - if ($payment_method instanceof EE_Payment_Method) { |
|
| 1087 | - $available_payment_methods[ $payment_method->slug() ] = $payment_method; |
|
| 1088 | - } |
|
| 1089 | - } |
|
| 1090 | - return $available_payment_methods; |
|
| 1091 | - } |
|
| 1092 | - |
|
| 1093 | - |
|
| 1094 | - /** |
|
| 1095 | - * _available_payment_method_inputs |
|
| 1096 | - * |
|
| 1097 | - * @access private |
|
| 1098 | - * @param array $available_payment_method_options |
|
| 1099 | - * @return \EE_Form_Section_Proper |
|
| 1100 | - */ |
|
| 1101 | - private function _available_payment_method_inputs($available_payment_method_options = array()) |
|
| 1102 | - { |
|
| 1103 | - // generate inputs |
|
| 1104 | - return new EE_Form_Section_Proper( |
|
| 1105 | - array( |
|
| 1106 | - 'html_id' => 'ee-available-payment-method-inputs', |
|
| 1107 | - 'layout_strategy' => new EE_Div_Per_Section_Layout(), |
|
| 1108 | - 'subsections' => array( |
|
| 1109 | - '' => new EE_Radio_Button_Input( |
|
| 1110 | - $available_payment_method_options, |
|
| 1111 | - array( |
|
| 1112 | - 'html_name' => 'selected_method_of_payment', |
|
| 1113 | - 'html_class' => 'spco-payment-method', |
|
| 1114 | - 'default' => $this->checkout->selected_method_of_payment, |
|
| 1115 | - 'label_size' => 11, |
|
| 1116 | - 'enforce_label_size' => true, |
|
| 1117 | - ) |
|
| 1118 | - ), |
|
| 1119 | - ), |
|
| 1120 | - ) |
|
| 1121 | - ); |
|
| 1122 | - } |
|
| 1123 | - |
|
| 1124 | - |
|
| 1125 | - /** |
|
| 1126 | - * _payment_method_billing_info |
|
| 1127 | - * |
|
| 1128 | - * @access private |
|
| 1129 | - * @param EE_Payment_Method $payment_method |
|
| 1130 | - * @return EE_Form_Section_Proper |
|
| 1131 | - * @throws EE_Error |
|
| 1132 | - * @throws InvalidArgumentException |
|
| 1133 | - * @throws \EventEspresso\core\exceptions\InvalidDataTypeException |
|
| 1134 | - * @throws \EventEspresso\core\exceptions\InvalidInterfaceException |
|
| 1135 | - */ |
|
| 1136 | - private function _payment_method_billing_info(EE_Payment_Method $payment_method) |
|
| 1137 | - { |
|
| 1138 | - $currently_selected = $this->checkout->selected_method_of_payment === $payment_method->slug() |
|
| 1139 | - ? true |
|
| 1140 | - : false; |
|
| 1141 | - // generate the billing form for payment method |
|
| 1142 | - $billing_form = $currently_selected |
|
| 1143 | - ? $this->_get_billing_form_for_payment_method($payment_method) |
|
| 1144 | - : new EE_Form_Section_HTML(); |
|
| 1145 | - $this->checkout->billing_form = $currently_selected |
|
| 1146 | - ? $billing_form |
|
| 1147 | - : $this->checkout->billing_form; |
|
| 1148 | - // it's all in the details |
|
| 1149 | - $info_html = EEH_HTML::h3( |
|
| 1150 | - esc_html__('Important information regarding your payment', 'event_espresso'), |
|
| 1151 | - '', |
|
| 1152 | - 'spco-payment-method-hdr' |
|
| 1153 | - ); |
|
| 1154 | - // add some info regarding the step, either from what's saved in the admin, |
|
| 1155 | - // or a default string depending on whether the PM has a billing form or not |
|
| 1156 | - if ($payment_method->description()) { |
|
| 1157 | - $payment_method_info = $payment_method->description(); |
|
| 1158 | - } elseif ($billing_form instanceof EE_Billing_Info_Form) { |
|
| 1159 | - $payment_method_info = sprintf( |
|
| 1160 | - esc_html__( |
|
| 1161 | - 'Please provide the following billing information, then click the "%1$s" button below in order to proceed.', |
|
| 1162 | - 'event_espresso' |
|
| 1163 | - ), |
|
| 1164 | - $this->submit_button_text() |
|
| 1165 | - ); |
|
| 1166 | - } else { |
|
| 1167 | - $payment_method_info = sprintf( |
|
| 1168 | - esc_html__('Please click the "%1$s" button below in order to proceed.', 'event_espresso'), |
|
| 1169 | - $this->submit_button_text() |
|
| 1170 | - ); |
|
| 1171 | - } |
|
| 1172 | - $info_html .= EEH_HTML::div( |
|
| 1173 | - apply_filters( |
|
| 1174 | - 'FHEE__EE_SPCO_Reg_Step_Payment_Options___payment_method_billing_info__payment_method_info', |
|
| 1175 | - $payment_method_info |
|
| 1176 | - ), |
|
| 1177 | - '', |
|
| 1178 | - 'spco-payment-method-desc ee-attention' |
|
| 1179 | - ); |
|
| 1180 | - return new EE_Form_Section_Proper( |
|
| 1181 | - array( |
|
| 1182 | - 'html_id' => 'spco-payment-method-info-' . $payment_method->slug(), |
|
| 1183 | - 'html_class' => 'spco-payment-method-info-dv', |
|
| 1184 | - // only display the selected or default PM |
|
| 1185 | - 'html_style' => $currently_selected ? '' : 'display:none;', |
|
| 1186 | - 'layout_strategy' => new EE_Div_Per_Section_Layout(), |
|
| 1187 | - 'subsections' => array( |
|
| 1188 | - 'info' => new EE_Form_Section_HTML($info_html), |
|
| 1189 | - 'billing_form' => $currently_selected ? $billing_form : new EE_Form_Section_HTML(), |
|
| 1190 | - ), |
|
| 1191 | - ) |
|
| 1192 | - ); |
|
| 1193 | - } |
|
| 1194 | - |
|
| 1195 | - |
|
| 1196 | - /** |
|
| 1197 | - * get_billing_form_html_for_payment_method |
|
| 1198 | - * |
|
| 1199 | - * @access public |
|
| 1200 | - * @return string |
|
| 1201 | - * @throws EE_Error |
|
| 1202 | - * @throws InvalidArgumentException |
|
| 1203 | - * @throws ReflectionException |
|
| 1204 | - * @throws \EventEspresso\core\exceptions\InvalidDataTypeException |
|
| 1205 | - * @throws \EventEspresso\core\exceptions\InvalidInterfaceException |
|
| 1206 | - */ |
|
| 1207 | - public function get_billing_form_html_for_payment_method() |
|
| 1208 | - { |
|
| 1209 | - // how have they chosen to pay? |
|
| 1210 | - $this->checkout->selected_method_of_payment = $this->_get_selected_method_of_payment(true); |
|
| 1211 | - $this->checkout->payment_method = $this->_get_payment_method_for_selected_method_of_payment(); |
|
| 1212 | - if (! $this->checkout->payment_method instanceof EE_Payment_Method) { |
|
| 1213 | - return false; |
|
| 1214 | - } |
|
| 1215 | - if (apply_filters( |
|
| 1216 | - 'FHEE__EE_SPCO_Reg_Step_Payment_Options__registration_checkout__selected_payment_method__display_success', |
|
| 1217 | - false |
|
| 1218 | - )) { |
|
| 1219 | - EE_Error::add_success( |
|
| 1220 | - apply_filters( |
|
| 1221 | - 'FHEE__Single_Page_Checkout__registration_checkout__selected_payment_method', |
|
| 1222 | - sprintf( |
|
| 1223 | - esc_html__( |
|
| 1224 | - 'You have selected "%s" as your method of payment. Please note the important payment information below.', |
|
| 1225 | - 'event_espresso' |
|
| 1226 | - ), |
|
| 1227 | - $this->checkout->payment_method->name() |
|
| 1228 | - ) |
|
| 1229 | - ) |
|
| 1230 | - ); |
|
| 1231 | - } |
|
| 1232 | - // now generate billing form for selected method of payment |
|
| 1233 | - $payment_method_billing_form = $this->_get_billing_form_for_payment_method($this->checkout->payment_method); |
|
| 1234 | - // fill form with attendee info if applicable |
|
| 1235 | - if ($payment_method_billing_form instanceof EE_Billing_Attendee_Info_Form |
|
| 1236 | - && $this->checkout->transaction_has_primary_registrant() |
|
| 1237 | - ) { |
|
| 1238 | - $payment_method_billing_form->populate_from_attendee( |
|
| 1239 | - $this->checkout->transaction->primary_registration()->attendee() |
|
| 1240 | - ); |
|
| 1241 | - } |
|
| 1242 | - // and debug content |
|
| 1243 | - if ($payment_method_billing_form instanceof EE_Billing_Info_Form |
|
| 1244 | - && $this->checkout->payment_method->type_obj() instanceof EE_PMT_Base |
|
| 1245 | - ) { |
|
| 1246 | - $payment_method_billing_form = |
|
| 1247 | - $this->checkout->payment_method->type_obj()->apply_billing_form_debug_settings( |
|
| 1248 | - $payment_method_billing_form |
|
| 1249 | - ); |
|
| 1250 | - } |
|
| 1251 | - $billing_info = $payment_method_billing_form instanceof EE_Form_Section_Proper |
|
| 1252 | - ? $payment_method_billing_form->get_html() |
|
| 1253 | - : ''; |
|
| 1254 | - $this->checkout->json_response->set_return_data(array('payment_method_info' => $billing_info)); |
|
| 1255 | - // localize validation rules for main form |
|
| 1256 | - $this->checkout->current_step->reg_form->localize_validation_rules(); |
|
| 1257 | - $this->checkout->json_response->add_validation_rules(EE_Form_Section_Proper::js_localization()); |
|
| 1258 | - return true; |
|
| 1259 | - } |
|
| 1260 | - |
|
| 1261 | - |
|
| 1262 | - /** |
|
| 1263 | - * _get_billing_form_for_payment_method |
|
| 1264 | - * |
|
| 1265 | - * @access private |
|
| 1266 | - * @param EE_Payment_Method $payment_method |
|
| 1267 | - * @return EE_Billing_Info_Form|EE_Form_Section_HTML |
|
| 1268 | - * @throws EE_Error |
|
| 1269 | - * @throws InvalidArgumentException |
|
| 1270 | - * @throws \EventEspresso\core\exceptions\InvalidDataTypeException |
|
| 1271 | - * @throws \EventEspresso\core\exceptions\InvalidInterfaceException |
|
| 1272 | - */ |
|
| 1273 | - private function _get_billing_form_for_payment_method(EE_Payment_Method $payment_method) |
|
| 1274 | - { |
|
| 1275 | - $billing_form = $payment_method->type_obj()->billing_form( |
|
| 1276 | - $this->checkout->transaction, |
|
| 1277 | - array('amount_owing' => $this->checkout->amount_owing) |
|
| 1278 | - ); |
|
| 1279 | - if ($billing_form instanceof EE_Billing_Info_Form) { |
|
| 1280 | - if (apply_filters( |
|
| 1281 | - 'FHEE__EE_SPCO_Reg_Step_Payment_Options__registration_checkout__selected_payment_method__display_success', |
|
| 1282 | - false |
|
| 1283 | - ) |
|
| 1284 | - && EE_Registry::instance()->REQ->is_set('payment_method') |
|
| 1285 | - ) { |
|
| 1286 | - EE_Error::add_success( |
|
| 1287 | - apply_filters( |
|
| 1288 | - 'FHEE__Single_Page_Checkout__registration_checkout__selected_payment_method', |
|
| 1289 | - sprintf( |
|
| 1290 | - esc_html__( |
|
| 1291 | - 'You have selected "%s" as your method of payment. Please note the important payment information below.', |
|
| 1292 | - 'event_espresso' |
|
| 1293 | - ), |
|
| 1294 | - $payment_method->name() |
|
| 1295 | - ) |
|
| 1296 | - ) |
|
| 1297 | - ); |
|
| 1298 | - } |
|
| 1299 | - return apply_filters( |
|
| 1300 | - 'FHEE__EE_SPCO_Reg_Step_Payment_Options___get_billing_form_for_payment_method__billing_form', |
|
| 1301 | - $billing_form, |
|
| 1302 | - $payment_method |
|
| 1303 | - ); |
|
| 1304 | - } |
|
| 1305 | - // no actual billing form, so return empty HTML form section |
|
| 1306 | - return new EE_Form_Section_HTML(); |
|
| 1307 | - } |
|
| 1308 | - |
|
| 1309 | - |
|
| 1310 | - /** |
|
| 1311 | - * _get_selected_method_of_payment |
|
| 1312 | - * |
|
| 1313 | - * @access private |
|
| 1314 | - * @param boolean $required whether to throw an error if the "selected_method_of_payment" |
|
| 1315 | - * is not found in the incoming request |
|
| 1316 | - * @param string $request_param |
|
| 1317 | - * @return NULL|string |
|
| 1318 | - * @throws EE_Error |
|
| 1319 | - * @throws InvalidArgumentException |
|
| 1320 | - * @throws \EventEspresso\core\exceptions\InvalidDataTypeException |
|
| 1321 | - * @throws \EventEspresso\core\exceptions\InvalidInterfaceException |
|
| 1322 | - */ |
|
| 1323 | - private function _get_selected_method_of_payment( |
|
| 1324 | - $required = false, |
|
| 1325 | - $request_param = 'selected_method_of_payment' |
|
| 1326 | - ) { |
|
| 1327 | - // is selected_method_of_payment set in the request ? |
|
| 1328 | - $selected_method_of_payment = EE_Registry::instance()->REQ->get($request_param, false); |
|
| 1329 | - if ($selected_method_of_payment) { |
|
| 1330 | - // sanitize it |
|
| 1331 | - $selected_method_of_payment = is_array($selected_method_of_payment) |
|
| 1332 | - ? array_shift($selected_method_of_payment) |
|
| 1333 | - : $selected_method_of_payment; |
|
| 1334 | - $selected_method_of_payment = sanitize_text_field($selected_method_of_payment); |
|
| 1335 | - // store it in the session so that it's available for all subsequent requests including AJAX |
|
| 1336 | - $this->_save_selected_method_of_payment($selected_method_of_payment); |
|
| 1337 | - } else { |
|
| 1338 | - // or is is set in the session ? |
|
| 1339 | - $selected_method_of_payment = EE_Registry::instance()->SSN->get_session_data( |
|
| 1340 | - 'selected_method_of_payment' |
|
| 1341 | - ); |
|
| 1342 | - } |
|
| 1343 | - // do ya really really gotta have it? |
|
| 1344 | - if (empty($selected_method_of_payment) && $required) { |
|
| 1345 | - EE_Error::add_error( |
|
| 1346 | - sprintf( |
|
| 1347 | - esc_html__( |
|
| 1348 | - 'The selected method of payment could not be determined.%sPlease ensure that you have selected one before proceeding.%sIf you continue to experience difficulties, then refresh your browser and try again, or contact %s for assistance.', |
|
| 1349 | - 'event_espresso' |
|
| 1350 | - ), |
|
| 1351 | - '<br/>', |
|
| 1352 | - '<br/>', |
|
| 1353 | - EE_Registry::instance()->CFG->organization->get_pretty('email') |
|
| 1354 | - ), |
|
| 1355 | - __FILE__, |
|
| 1356 | - __FUNCTION__, |
|
| 1357 | - __LINE__ |
|
| 1358 | - ); |
|
| 1359 | - return null; |
|
| 1360 | - } |
|
| 1361 | - return $selected_method_of_payment; |
|
| 1362 | - } |
|
| 1363 | - |
|
| 1364 | - |
|
| 1365 | - |
|
| 1366 | - |
|
| 1367 | - |
|
| 1368 | - |
|
| 1369 | - /********************************************************************************************************/ |
|
| 1370 | - /*********************************** SWITCH PAYMENT METHOD ************************************/ |
|
| 1371 | - /********************************************************************************************************/ |
|
| 1372 | - /** |
|
| 1373 | - * switch_payment_method |
|
| 1374 | - * |
|
| 1375 | - * @access public |
|
| 1376 | - * @return string |
|
| 1377 | - * @throws EE_Error |
|
| 1378 | - * @throws InvalidArgumentException |
|
| 1379 | - * @throws \EventEspresso\core\exceptions\InvalidDataTypeException |
|
| 1380 | - * @throws \EventEspresso\core\exceptions\InvalidInterfaceException |
|
| 1381 | - */ |
|
| 1382 | - public function switch_payment_method() |
|
| 1383 | - { |
|
| 1384 | - if (! $this->_verify_payment_method_is_set()) { |
|
| 1385 | - return false; |
|
| 1386 | - } |
|
| 1387 | - if (apply_filters( |
|
| 1388 | - 'FHEE__EE_SPCO_Reg_Step_Payment_Options__registration_checkout__selected_payment_method__display_success', |
|
| 1389 | - false |
|
| 1390 | - )) { |
|
| 1391 | - EE_Error::add_success( |
|
| 1392 | - apply_filters( |
|
| 1393 | - 'FHEE__Single_Page_Checkout__registration_checkout__selected_payment_method', |
|
| 1394 | - sprintf( |
|
| 1395 | - esc_html__( |
|
| 1396 | - 'You have selected "%s" as your method of payment. Please note the important payment information below.', |
|
| 1397 | - 'event_espresso' |
|
| 1398 | - ), |
|
| 1399 | - $this->checkout->payment_method->name() |
|
| 1400 | - ) |
|
| 1401 | - ) |
|
| 1402 | - ); |
|
| 1403 | - } |
|
| 1404 | - // generate billing form for selected method of payment if it hasn't been done already |
|
| 1405 | - if ($this->checkout->payment_method->type_obj()->has_billing_form()) { |
|
| 1406 | - $this->checkout->billing_form = $this->_get_billing_form_for_payment_method( |
|
| 1407 | - $this->checkout->payment_method |
|
| 1408 | - ); |
|
| 1409 | - } |
|
| 1410 | - // fill form with attendee info if applicable |
|
| 1411 | - if (apply_filters( |
|
| 1412 | - 'FHEE__populate_billing_form_fields_from_attendee', |
|
| 1413 | - ( |
|
| 1414 | - $this->checkout->billing_form instanceof EE_Billing_Attendee_Info_Form |
|
| 1415 | - && $this->checkout->transaction_has_primary_registrant() |
|
| 1416 | - ), |
|
| 1417 | - $this->checkout->billing_form, |
|
| 1418 | - $this->checkout->transaction |
|
| 1419 | - ) |
|
| 1420 | - ) { |
|
| 1421 | - $this->checkout->billing_form->populate_from_attendee( |
|
| 1422 | - $this->checkout->transaction->primary_registration()->attendee() |
|
| 1423 | - ); |
|
| 1424 | - } |
|
| 1425 | - // and debug content |
|
| 1426 | - if ($this->checkout->billing_form instanceof EE_Billing_Info_Form |
|
| 1427 | - && $this->checkout->payment_method->type_obj() instanceof EE_PMT_Base |
|
| 1428 | - ) { |
|
| 1429 | - $this->checkout->billing_form = |
|
| 1430 | - $this->checkout->payment_method->type_obj()->apply_billing_form_debug_settings( |
|
| 1431 | - $this->checkout->billing_form |
|
| 1432 | - ); |
|
| 1433 | - } |
|
| 1434 | - // get html and validation rules for form |
|
| 1435 | - if ($this->checkout->billing_form instanceof EE_Form_Section_Proper) { |
|
| 1436 | - $this->checkout->json_response->set_return_data( |
|
| 1437 | - array('payment_method_info' => $this->checkout->billing_form->get_html()) |
|
| 1438 | - ); |
|
| 1439 | - // localize validation rules for main form |
|
| 1440 | - $this->checkout->billing_form->localize_validation_rules(true); |
|
| 1441 | - $this->checkout->json_response->add_validation_rules(EE_Form_Section_Proper::js_localization()); |
|
| 1442 | - } else { |
|
| 1443 | - $this->checkout->json_response->set_return_data(array('payment_method_info' => '')); |
|
| 1444 | - } |
|
| 1445 | - // prevents advancement to next step |
|
| 1446 | - $this->checkout->continue_reg = false; |
|
| 1447 | - return true; |
|
| 1448 | - } |
|
| 1449 | - |
|
| 1450 | - |
|
| 1451 | - /** |
|
| 1452 | - * _verify_payment_method_is_set |
|
| 1453 | - * |
|
| 1454 | - * @return bool |
|
| 1455 | - * @throws EE_Error |
|
| 1456 | - * @throws InvalidArgumentException |
|
| 1457 | - * @throws ReflectionException |
|
| 1458 | - * @throws \EventEspresso\core\exceptions\InvalidDataTypeException |
|
| 1459 | - * @throws \EventEspresso\core\exceptions\InvalidInterfaceException |
|
| 1460 | - */ |
|
| 1461 | - protected function _verify_payment_method_is_set() |
|
| 1462 | - { |
|
| 1463 | - // generate billing form for selected method of payment if it hasn't been done already |
|
| 1464 | - if (empty($this->checkout->selected_method_of_payment)) { |
|
| 1465 | - // how have they chosen to pay? |
|
| 1466 | - $this->checkout->selected_method_of_payment = $this->_get_selected_method_of_payment(true); |
|
| 1467 | - } else { |
|
| 1468 | - // choose your own adventure based on method_of_payment |
|
| 1469 | - switch ($this->checkout->selected_method_of_payment) { |
|
| 1470 | - case 'events_sold_out': |
|
| 1471 | - EE_Error::add_attention( |
|
| 1472 | - apply_filters( |
|
| 1473 | - 'FHEE__EE_SPCO_Reg_Step_Payment_Options___verify_payment_method_is_set__sold_out_events_msg', |
|
| 1474 | - esc_html__( |
|
| 1475 | - 'It appears that the event you were about to make a payment for has sold out since this form first loaded. Please contact the event administrator if you believe this is an error.', |
|
| 1476 | - 'event_espresso' |
|
| 1477 | - ) |
|
| 1478 | - ), |
|
| 1479 | - __FILE__, |
|
| 1480 | - __FUNCTION__, |
|
| 1481 | - __LINE__ |
|
| 1482 | - ); |
|
| 1483 | - return false; |
|
| 1484 | - break; |
|
| 1485 | - case 'payments_closed': |
|
| 1486 | - EE_Error::add_attention( |
|
| 1487 | - apply_filters( |
|
| 1488 | - 'FHEE__EE_SPCO_Reg_Step_Payment_Options___verify_payment_method_is_set__payments_closed_msg', |
|
| 1489 | - esc_html__( |
|
| 1490 | - 'It appears that the event you were about to make a payment for is not accepting payments at this time. Please contact the event administrator if you believe this is an error.', |
|
| 1491 | - 'event_espresso' |
|
| 1492 | - ) |
|
| 1493 | - ), |
|
| 1494 | - __FILE__, |
|
| 1495 | - __FUNCTION__, |
|
| 1496 | - __LINE__ |
|
| 1497 | - ); |
|
| 1498 | - return false; |
|
| 1499 | - break; |
|
| 1500 | - case 'no_payment_required': |
|
| 1501 | - EE_Error::add_attention( |
|
| 1502 | - apply_filters( |
|
| 1503 | - 'FHEE__EE_SPCO_Reg_Step_Payment_Options___verify_payment_method_is_set__no_payment_required_msg', |
|
| 1504 | - esc_html__( |
|
| 1505 | - 'It appears that the event you were about to make a payment for does not require payment. Please contact the event administrator if you believe this is an error.', |
|
| 1506 | - 'event_espresso' |
|
| 1507 | - ) |
|
| 1508 | - ), |
|
| 1509 | - __FILE__, |
|
| 1510 | - __FUNCTION__, |
|
| 1511 | - __LINE__ |
|
| 1512 | - ); |
|
| 1513 | - return false; |
|
| 1514 | - break; |
|
| 1515 | - default: |
|
| 1516 | - } |
|
| 1517 | - } |
|
| 1518 | - // verify payment method |
|
| 1519 | - if (! $this->checkout->payment_method instanceof EE_Payment_Method) { |
|
| 1520 | - // get payment method for selected method of payment |
|
| 1521 | - $this->checkout->payment_method = $this->_get_payment_method_for_selected_method_of_payment(); |
|
| 1522 | - } |
|
| 1523 | - return $this->checkout->payment_method instanceof EE_Payment_Method ? true : false; |
|
| 1524 | - } |
|
| 1525 | - |
|
| 1526 | - |
|
| 1527 | - |
|
| 1528 | - /********************************************************************************************************/ |
|
| 1529 | - /*************************************** SAVE PAYER DETAILS ****************************************/ |
|
| 1530 | - /********************************************************************************************************/ |
|
| 1531 | - /** |
|
| 1532 | - * save_payer_details_via_ajax |
|
| 1533 | - * |
|
| 1534 | - * @return void |
|
| 1535 | - * @throws EE_Error |
|
| 1536 | - * @throws InvalidArgumentException |
|
| 1537 | - * @throws ReflectionException |
|
| 1538 | - * @throws RuntimeException |
|
| 1539 | - * @throws \EventEspresso\core\exceptions\InvalidDataTypeException |
|
| 1540 | - * @throws \EventEspresso\core\exceptions\InvalidInterfaceException |
|
| 1541 | - */ |
|
| 1542 | - public function save_payer_details_via_ajax() |
|
| 1543 | - { |
|
| 1544 | - if (! $this->_verify_payment_method_is_set()) { |
|
| 1545 | - return; |
|
| 1546 | - } |
|
| 1547 | - // generate billing form for selected method of payment if it hasn't been done already |
|
| 1548 | - if ($this->checkout->payment_method->type_obj()->has_billing_form()) { |
|
| 1549 | - $this->checkout->billing_form = $this->_get_billing_form_for_payment_method( |
|
| 1550 | - $this->checkout->payment_method |
|
| 1551 | - ); |
|
| 1552 | - } |
|
| 1553 | - // generate primary attendee from payer info if applicable |
|
| 1554 | - if (! $this->checkout->transaction_has_primary_registrant()) { |
|
| 1555 | - $attendee = $this->_create_attendee_from_request_data(); |
|
| 1556 | - if ($attendee instanceof EE_Attendee) { |
|
| 1557 | - foreach ($this->checkout->transaction->registrations() as $registration) { |
|
| 1558 | - if ($registration->is_primary_registrant()) { |
|
| 1559 | - $this->checkout->primary_attendee_obj = $attendee; |
|
| 1560 | - $registration->_add_relation_to($attendee, 'Attendee'); |
|
| 1561 | - $registration->set_attendee_id($attendee->ID()); |
|
| 1562 | - $registration->update_cache_after_object_save('Attendee', $attendee); |
|
| 1563 | - } |
|
| 1564 | - } |
|
| 1565 | - } |
|
| 1566 | - } |
|
| 1567 | - } |
|
| 1568 | - |
|
| 1569 | - |
|
| 1570 | - /** |
|
| 1571 | - * create_attendee_from_request_data |
|
| 1572 | - * uses info from alternate GET or POST data (such as AJAX) to create a new attendee |
|
| 1573 | - * |
|
| 1574 | - * @return EE_Attendee |
|
| 1575 | - * @throws EE_Error |
|
| 1576 | - * @throws InvalidArgumentException |
|
| 1577 | - * @throws ReflectionException |
|
| 1578 | - * @throws \EventEspresso\core\exceptions\InvalidDataTypeException |
|
| 1579 | - * @throws \EventEspresso\core\exceptions\InvalidInterfaceException |
|
| 1580 | - */ |
|
| 1581 | - protected function _create_attendee_from_request_data() |
|
| 1582 | - { |
|
| 1583 | - // get State ID |
|
| 1584 | - $STA_ID = ! empty($_REQUEST['state']) ? sanitize_text_field($_REQUEST['state']) : ''; |
|
| 1585 | - if (! empty($STA_ID)) { |
|
| 1586 | - // can we get state object from name ? |
|
| 1587 | - EE_Registry::instance()->load_model('State'); |
|
| 1588 | - $state = EEM_State::instance()->get_col(array(array('STA_name' => $STA_ID), 'limit' => 1), 'STA_ID'); |
|
| 1589 | - $STA_ID = is_array($state) && ! empty($state) ? reset($state) : $STA_ID; |
|
| 1590 | - } |
|
| 1591 | - // get Country ISO |
|
| 1592 | - $CNT_ISO = ! empty($_REQUEST['country']) ? sanitize_text_field($_REQUEST['country']) : ''; |
|
| 1593 | - if (! empty($CNT_ISO)) { |
|
| 1594 | - // can we get country object from name ? |
|
| 1595 | - EE_Registry::instance()->load_model('Country'); |
|
| 1596 | - $country = EEM_Country::instance()->get_col( |
|
| 1597 | - array(array('CNT_name' => $CNT_ISO), 'limit' => 1), |
|
| 1598 | - 'CNT_ISO' |
|
| 1599 | - ); |
|
| 1600 | - $CNT_ISO = is_array($country) && ! empty($country) ? reset($country) : $CNT_ISO; |
|
| 1601 | - } |
|
| 1602 | - // grab attendee data |
|
| 1603 | - $attendee_data = array( |
|
| 1604 | - 'ATT_fname' => ! empty($_REQUEST['first_name']) ? sanitize_text_field($_REQUEST['first_name']) : '', |
|
| 1605 | - 'ATT_lname' => ! empty($_REQUEST['last_name']) ? sanitize_text_field($_REQUEST['last_name']) : '', |
|
| 1606 | - 'ATT_email' => ! empty($_REQUEST['email']) ? sanitize_email($_REQUEST['email']) : '', |
|
| 1607 | - 'ATT_address' => ! empty($_REQUEST['address']) ? sanitize_text_field($_REQUEST['address']) : '', |
|
| 1608 | - 'ATT_address2' => ! empty($_REQUEST['address2']) ? sanitize_text_field($_REQUEST['address2']) : '', |
|
| 1609 | - 'ATT_city' => ! empty($_REQUEST['city']) ? sanitize_text_field($_REQUEST['city']) : '', |
|
| 1610 | - 'STA_ID' => $STA_ID, |
|
| 1611 | - 'CNT_ISO' => $CNT_ISO, |
|
| 1612 | - 'ATT_zip' => ! empty($_REQUEST['zip']) ? sanitize_text_field($_REQUEST['zip']) : '', |
|
| 1613 | - 'ATT_phone' => ! empty($_REQUEST['phone']) ? sanitize_text_field($_REQUEST['phone']) : '', |
|
| 1614 | - ); |
|
| 1615 | - // validate the email address since it is the most important piece of info |
|
| 1616 | - if (empty($attendee_data['ATT_email']) || $attendee_data['ATT_email'] !== $_REQUEST['email']) { |
|
| 1617 | - EE_Error::add_error( |
|
| 1618 | - esc_html__('An invalid email address was submitted.', 'event_espresso'), |
|
| 1619 | - __FILE__, |
|
| 1620 | - __FUNCTION__, |
|
| 1621 | - __LINE__ |
|
| 1622 | - ); |
|
| 1623 | - } |
|
| 1624 | - // does this attendee already exist in the db ? we're searching using a combination of first name, last name, |
|
| 1625 | - // AND email address |
|
| 1626 | - if (! empty($attendee_data['ATT_fname']) |
|
| 1627 | - && ! empty($attendee_data['ATT_lname']) |
|
| 1628 | - && ! empty($attendee_data['ATT_email']) |
|
| 1629 | - ) { |
|
| 1630 | - $existing_attendee = EE_Registry::instance()->LIB->EEM_Attendee->find_existing_attendee( |
|
| 1631 | - array( |
|
| 1632 | - 'ATT_fname' => $attendee_data['ATT_fname'], |
|
| 1633 | - 'ATT_lname' => $attendee_data['ATT_lname'], |
|
| 1634 | - 'ATT_email' => $attendee_data['ATT_email'], |
|
| 1635 | - ) |
|
| 1636 | - ); |
|
| 1637 | - if ($existing_attendee instanceof EE_Attendee) { |
|
| 1638 | - return $existing_attendee; |
|
| 1639 | - } |
|
| 1640 | - } |
|
| 1641 | - // no existing attendee? kk let's create a new one |
|
| 1642 | - // kinda lame, but we need a first and last name to create an attendee, so use the email address if those |
|
| 1643 | - // don't exist |
|
| 1644 | - $attendee_data['ATT_fname'] = ! empty($attendee_data['ATT_fname']) |
|
| 1645 | - ? $attendee_data['ATT_fname'] |
|
| 1646 | - : $attendee_data['ATT_email']; |
|
| 1647 | - $attendee_data['ATT_lname'] = ! empty($attendee_data['ATT_lname']) |
|
| 1648 | - ? $attendee_data['ATT_lname'] |
|
| 1649 | - : $attendee_data['ATT_email']; |
|
| 1650 | - return EE_Attendee::new_instance($attendee_data); |
|
| 1651 | - } |
|
| 1652 | - |
|
| 1653 | - |
|
| 1654 | - |
|
| 1655 | - /********************************************************************************************************/ |
|
| 1656 | - /**************************************** PROCESS REG STEP *****************************************/ |
|
| 1657 | - /********************************************************************************************************/ |
|
| 1658 | - /** |
|
| 1659 | - * process_reg_step |
|
| 1660 | - * |
|
| 1661 | - * @return bool |
|
| 1662 | - * @throws EE_Error |
|
| 1663 | - * @throws InvalidArgumentException |
|
| 1664 | - * @throws ReflectionException |
|
| 1665 | - * @throws \EventEspresso\core\exceptions\EntityNotFoundException |
|
| 1666 | - * @throws \EventEspresso\core\exceptions\InvalidDataTypeException |
|
| 1667 | - * @throws \EventEspresso\core\exceptions\InvalidInterfaceException |
|
| 1668 | - * @throws \EventEspresso\core\exceptions\InvalidStatusException |
|
| 1669 | - */ |
|
| 1670 | - public function process_reg_step() |
|
| 1671 | - { |
|
| 1672 | - // how have they chosen to pay? |
|
| 1673 | - $this->checkout->selected_method_of_payment = $this->checkout->transaction->is_free() |
|
| 1674 | - ? 'no_payment_required' |
|
| 1675 | - : $this->_get_selected_method_of_payment(true); |
|
| 1676 | - // choose your own adventure based on method_of_payment |
|
| 1677 | - switch ($this->checkout->selected_method_of_payment) { |
|
| 1678 | - case 'events_sold_out': |
|
| 1679 | - $this->checkout->redirect = true; |
|
| 1680 | - $this->checkout->redirect_url = $this->checkout->cancel_page_url; |
|
| 1681 | - $this->checkout->json_response->set_redirect_url($this->checkout->redirect_url); |
|
| 1682 | - // mark this reg step as completed |
|
| 1683 | - $this->set_completed(); |
|
| 1684 | - return false; |
|
| 1685 | - break; |
|
| 1686 | - |
|
| 1687 | - case 'payments_closed': |
|
| 1688 | - if (apply_filters( |
|
| 1689 | - 'FHEE__EE_SPCO_Reg_Step_Payment_Options__process_reg_step__payments_closed__display_success', |
|
| 1690 | - false |
|
| 1691 | - )) { |
|
| 1692 | - EE_Error::add_success( |
|
| 1693 | - esc_html__('no payment required at this time.', 'event_espresso'), |
|
| 1694 | - __FILE__, |
|
| 1695 | - __FUNCTION__, |
|
| 1696 | - __LINE__ |
|
| 1697 | - ); |
|
| 1698 | - } |
|
| 1699 | - // mark this reg step as completed |
|
| 1700 | - $this->set_completed(); |
|
| 1701 | - return true; |
|
| 1702 | - break; |
|
| 1703 | - |
|
| 1704 | - case 'no_payment_required': |
|
| 1705 | - if (apply_filters( |
|
| 1706 | - 'FHEE__EE_SPCO_Reg_Step_Payment_Options__process_reg_step__no_payment_required__display_success', |
|
| 1707 | - false |
|
| 1708 | - )) { |
|
| 1709 | - EE_Error::add_success( |
|
| 1710 | - esc_html__('no payment required.', 'event_espresso'), |
|
| 1711 | - __FILE__, |
|
| 1712 | - __FUNCTION__, |
|
| 1713 | - __LINE__ |
|
| 1714 | - ); |
|
| 1715 | - } |
|
| 1716 | - // mark this reg step as completed |
|
| 1717 | - $this->set_completed(); |
|
| 1718 | - return true; |
|
| 1719 | - break; |
|
| 1720 | - |
|
| 1721 | - default: |
|
| 1722 | - $registrations = EE_Registry::instance()->SSN->checkout()->transaction->registrations( |
|
| 1723 | - EE_Registry::instance()->SSN->checkout()->reg_cache_where_params |
|
| 1724 | - ); |
|
| 1725 | - $ejected_registrations = EE_SPCO_Reg_Step_Payment_Options::find_registrations_that_lost_their_space( |
|
| 1726 | - $registrations, |
|
| 1727 | - EE_Registry::instance()->SSN->checkout()->revisit |
|
| 1728 | - ); |
|
| 1729 | - // calculate difference between the two arrays |
|
| 1730 | - $registrations = array_diff($registrations, $ejected_registrations); |
|
| 1731 | - if (empty($registrations)) { |
|
| 1732 | - $this->_redirect_because_event_sold_out(); |
|
| 1733 | - return false; |
|
| 1734 | - } |
|
| 1735 | - $payment_successful = $this->_process_payment(); |
|
| 1736 | - if ($payment_successful) { |
|
| 1737 | - $this->checkout->continue_reg = true; |
|
| 1738 | - $this->_maybe_set_completed($this->checkout->payment_method); |
|
| 1739 | - } else { |
|
| 1740 | - $this->checkout->continue_reg = false; |
|
| 1741 | - } |
|
| 1742 | - return $payment_successful; |
|
| 1743 | - } |
|
| 1744 | - } |
|
| 1745 | - |
|
| 1746 | - |
|
| 1747 | - /** |
|
| 1748 | - * _redirect_because_event_sold_out |
|
| 1749 | - * |
|
| 1750 | - * @access protected |
|
| 1751 | - * @return void |
|
| 1752 | - */ |
|
| 1753 | - protected function _redirect_because_event_sold_out() |
|
| 1754 | - { |
|
| 1755 | - $this->checkout->continue_reg = false; |
|
| 1756 | - // set redirect URL |
|
| 1757 | - $this->checkout->redirect_url = add_query_arg( |
|
| 1758 | - array('e_reg_url_link' => $this->checkout->reg_url_link), |
|
| 1759 | - $this->checkout->current_step->reg_step_url() |
|
| 1760 | - ); |
|
| 1761 | - $this->checkout->json_response->set_redirect_url($this->checkout->redirect_url); |
|
| 1762 | - } |
|
| 1763 | - |
|
| 1764 | - |
|
| 1765 | - /** |
|
| 1766 | - * _maybe_set_completed |
|
| 1767 | - * |
|
| 1768 | - * @access protected |
|
| 1769 | - * @param \EE_Payment_Method $payment_method |
|
| 1770 | - * @return void |
|
| 1771 | - * @throws \EE_Error |
|
| 1772 | - */ |
|
| 1773 | - protected function _maybe_set_completed(EE_Payment_Method $payment_method) |
|
| 1774 | - { |
|
| 1775 | - switch ($payment_method->type_obj()->payment_occurs()) { |
|
| 1776 | - case EE_PMT_Base::offsite: |
|
| 1777 | - break; |
|
| 1778 | - case EE_PMT_Base::onsite: |
|
| 1779 | - case EE_PMT_Base::offline: |
|
| 1780 | - // mark this reg step as completed |
|
| 1781 | - $this->set_completed(); |
|
| 1782 | - break; |
|
| 1783 | - } |
|
| 1784 | - } |
|
| 1785 | - |
|
| 1786 | - |
|
| 1787 | - /** |
|
| 1788 | - * update_reg_step |
|
| 1789 | - * this is the final step after a user revisits the site to retry a payment |
|
| 1790 | - * |
|
| 1791 | - * @return bool |
|
| 1792 | - * @throws EE_Error |
|
| 1793 | - * @throws InvalidArgumentException |
|
| 1794 | - * @throws ReflectionException |
|
| 1795 | - * @throws \EventEspresso\core\exceptions\EntityNotFoundException |
|
| 1796 | - * @throws \EventEspresso\core\exceptions\InvalidDataTypeException |
|
| 1797 | - * @throws \EventEspresso\core\exceptions\InvalidInterfaceException |
|
| 1798 | - * @throws \EventEspresso\core\exceptions\InvalidStatusException |
|
| 1799 | - */ |
|
| 1800 | - public function update_reg_step() |
|
| 1801 | - { |
|
| 1802 | - $success = true; |
|
| 1803 | - // if payment required |
|
| 1804 | - if ($this->checkout->transaction->total() > 0) { |
|
| 1805 | - do_action( |
|
| 1806 | - 'AHEE__EE_Single_Page_Checkout__process_finalize_registration__before_gateway', |
|
| 1807 | - $this->checkout->transaction |
|
| 1808 | - ); |
|
| 1809 | - // attempt payment via payment method |
|
| 1810 | - $success = $this->process_reg_step(); |
|
| 1811 | - } |
|
| 1812 | - if ($success && ! $this->checkout->redirect) { |
|
| 1813 | - $this->checkout->cart->get_grand_total()->save_this_and_descendants_to_txn( |
|
| 1814 | - $this->checkout->transaction->ID() |
|
| 1815 | - ); |
|
| 1816 | - // set return URL |
|
| 1817 | - $this->checkout->redirect_url = add_query_arg( |
|
| 1818 | - array('e_reg_url_link' => $this->checkout->reg_url_link), |
|
| 1819 | - $this->checkout->thank_you_page_url |
|
| 1820 | - ); |
|
| 1821 | - } |
|
| 1822 | - return $success; |
|
| 1823 | - } |
|
| 1824 | - |
|
| 1825 | - |
|
| 1826 | - /** |
|
| 1827 | - * _process_payment |
|
| 1828 | - * |
|
| 1829 | - * @access private |
|
| 1830 | - * @return bool |
|
| 1831 | - * @throws EE_Error |
|
| 1832 | - * @throws InvalidArgumentException |
|
| 1833 | - * @throws ReflectionException |
|
| 1834 | - * @throws RuntimeException |
|
| 1835 | - * @throws \EventEspresso\core\exceptions\InvalidDataTypeException |
|
| 1836 | - * @throws \EventEspresso\core\exceptions\InvalidInterfaceException |
|
| 1837 | - */ |
|
| 1838 | - private function _process_payment() |
|
| 1839 | - { |
|
| 1840 | - // basically confirm that the event hasn't sold out since they hit the page |
|
| 1841 | - if (! $this->_last_second_ticket_verifications()) { |
|
| 1842 | - return false; |
|
| 1843 | - } |
|
| 1844 | - // ya gotta make a choice man |
|
| 1845 | - if (empty($this->checkout->selected_method_of_payment)) { |
|
| 1846 | - $this->checkout->json_response->set_plz_select_method_of_payment( |
|
| 1847 | - esc_html__('Please select a method of payment before proceeding.', 'event_espresso') |
|
| 1848 | - ); |
|
| 1849 | - return false; |
|
| 1850 | - } |
|
| 1851 | - // get EE_Payment_Method object |
|
| 1852 | - if (! $this->checkout->payment_method = $this->_get_payment_method_for_selected_method_of_payment()) { |
|
| 1853 | - return false; |
|
| 1854 | - } |
|
| 1855 | - // setup billing form |
|
| 1856 | - if ($this->checkout->payment_method->is_on_site()) { |
|
| 1857 | - $this->checkout->billing_form = $this->_get_billing_form_for_payment_method( |
|
| 1858 | - $this->checkout->payment_method |
|
| 1859 | - ); |
|
| 1860 | - // bad billing form ? |
|
| 1861 | - if (! $this->_billing_form_is_valid()) { |
|
| 1862 | - return false; |
|
| 1863 | - } |
|
| 1864 | - } |
|
| 1865 | - // ensure primary registrant has been fully processed |
|
| 1866 | - if (! $this->_setup_primary_registrant_prior_to_payment()) { |
|
| 1867 | - return false; |
|
| 1868 | - } |
|
| 1869 | - // if session is close to expiring (under 10 minutes by default) |
|
| 1870 | - if ((time() - EE_Registry::instance()->SSN->expiration()) < EE_Registry::instance()->SSN->extension()) { |
|
| 1871 | - // add some time to session expiration so that payment can be completed |
|
| 1872 | - EE_Registry::instance()->SSN->extend_expiration(); |
|
| 1873 | - } |
|
| 1874 | - /** @type EE_Transaction_Processor $transaction_processor */ |
|
| 1875 | - // $transaction_processor = EE_Registry::instance()->load_class( 'Transaction_Processor' ); |
|
| 1876 | - // in case a registrant leaves to an Off-Site Gateway and never returns, we want to approve any registrations |
|
| 1877 | - // for events with a default reg status of Approved |
|
| 1878 | - // $transaction_processor->toggle_registration_statuses_for_default_approved_events( |
|
| 1879 | - // $this->checkout->transaction, $this->checkout->reg_cache_where_params |
|
| 1880 | - // ); |
|
| 1881 | - // attempt payment |
|
| 1882 | - $payment = $this->_attempt_payment($this->checkout->payment_method); |
|
| 1883 | - // process results |
|
| 1884 | - $payment = $this->_validate_payment($payment); |
|
| 1885 | - $payment = $this->_post_payment_processing($payment); |
|
| 1886 | - // verify payment |
|
| 1887 | - if ($payment instanceof EE_Payment) { |
|
| 1888 | - // store that for later |
|
| 1889 | - $this->checkout->payment = $payment; |
|
| 1890 | - // we can also consider the TXN to not have been failed, so temporarily upgrade it's status to abandoned |
|
| 1891 | - $this->checkout->transaction->toggle_failed_transaction_status(); |
|
| 1892 | - $payment_status = $payment->status(); |
|
| 1893 | - if ($payment_status === EEM_Payment::status_id_approved |
|
| 1894 | - || $payment_status === EEM_Payment::status_id_pending |
|
| 1895 | - ) { |
|
| 1896 | - return true; |
|
| 1897 | - } else { |
|
| 1898 | - return false; |
|
| 1899 | - } |
|
| 1900 | - } elseif ($payment === true) { |
|
| 1901 | - // please note that offline payment methods will NOT make a payment, |
|
| 1902 | - // but instead just mark themselves as the PMD_ID on the transaction, and return true |
|
| 1903 | - $this->checkout->payment = $payment; |
|
| 1904 | - return true; |
|
| 1905 | - } |
|
| 1906 | - // where's my money? |
|
| 1907 | - return false; |
|
| 1908 | - } |
|
| 1909 | - |
|
| 1910 | - |
|
| 1911 | - /** |
|
| 1912 | - * _last_second_ticket_verifications |
|
| 1913 | - * |
|
| 1914 | - * @access public |
|
| 1915 | - * @return bool |
|
| 1916 | - * @throws EE_Error |
|
| 1917 | - */ |
|
| 1918 | - protected function _last_second_ticket_verifications() |
|
| 1919 | - { |
|
| 1920 | - // don't bother re-validating if not a return visit |
|
| 1921 | - if (! $this->checkout->revisit) { |
|
| 1922 | - return true; |
|
| 1923 | - } |
|
| 1924 | - $registrations = $this->checkout->transaction->registrations(); |
|
| 1925 | - if (empty($registrations)) { |
|
| 1926 | - return false; |
|
| 1927 | - } |
|
| 1928 | - foreach ($registrations as $registration) { |
|
| 1929 | - if ($registration instanceof EE_Registration && ! $registration->is_approved()) { |
|
| 1930 | - $event = $registration->event_obj(); |
|
| 1931 | - if ($event instanceof EE_Event && $event->is_sold_out(true)) { |
|
| 1932 | - EE_Error::add_error( |
|
| 1933 | - apply_filters( |
|
| 1934 | - 'FHEE__EE_SPCO_Reg_Step_Payment_Options___last_second_ticket_verifications__sold_out_events_msg', |
|
| 1935 | - sprintf( |
|
| 1936 | - esc_html__( |
|
| 1937 | - 'It appears that the %1$s event that you were about to make a payment for has sold out since you first registered and/or arrived at this page. Please refresh the page and try again. If you have already made a partial payment towards this event, please contact the event administrator for a refund.', |
|
| 1938 | - 'event_espresso' |
|
| 1939 | - ), |
|
| 1940 | - $event->name() |
|
| 1941 | - ) |
|
| 1942 | - ), |
|
| 1943 | - __FILE__, |
|
| 1944 | - __FUNCTION__, |
|
| 1945 | - __LINE__ |
|
| 1946 | - ); |
|
| 1947 | - return false; |
|
| 1948 | - } |
|
| 1949 | - } |
|
| 1950 | - } |
|
| 1951 | - return true; |
|
| 1952 | - } |
|
| 1953 | - |
|
| 1954 | - |
|
| 1955 | - /** |
|
| 1956 | - * redirect_form |
|
| 1957 | - * |
|
| 1958 | - * @access public |
|
| 1959 | - * @return bool |
|
| 1960 | - * @throws EE_Error |
|
| 1961 | - * @throws InvalidArgumentException |
|
| 1962 | - * @throws ReflectionException |
|
| 1963 | - * @throws \EventEspresso\core\exceptions\InvalidDataTypeException |
|
| 1964 | - * @throws \EventEspresso\core\exceptions\InvalidInterfaceException |
|
| 1965 | - */ |
|
| 1966 | - public function redirect_form() |
|
| 1967 | - { |
|
| 1968 | - $payment_method_billing_info = $this->_payment_method_billing_info( |
|
| 1969 | - $this->_get_payment_method_for_selected_method_of_payment() |
|
| 1970 | - ); |
|
| 1971 | - $html = $payment_method_billing_info->get_html(); |
|
| 1972 | - $html .= $this->checkout->redirect_form; |
|
| 1973 | - EE_Registry::instance()->REQ->add_output($html); |
|
| 1974 | - return true; |
|
| 1975 | - } |
|
| 1976 | - |
|
| 1977 | - |
|
| 1978 | - /** |
|
| 1979 | - * _billing_form_is_valid |
|
| 1980 | - * |
|
| 1981 | - * @access private |
|
| 1982 | - * @return bool |
|
| 1983 | - * @throws \EE_Error |
|
| 1984 | - */ |
|
| 1985 | - private function _billing_form_is_valid() |
|
| 1986 | - { |
|
| 1987 | - if (! $this->checkout->payment_method->type_obj()->has_billing_form()) { |
|
| 1988 | - return true; |
|
| 1989 | - } |
|
| 1990 | - if ($this->checkout->billing_form instanceof EE_Billing_Info_Form) { |
|
| 1991 | - if ($this->checkout->billing_form->was_submitted()) { |
|
| 1992 | - $this->checkout->billing_form->receive_form_submission(); |
|
| 1993 | - if ($this->checkout->billing_form->is_valid()) { |
|
| 1994 | - return true; |
|
| 1995 | - } |
|
| 1996 | - $validation_errors = $this->checkout->billing_form->get_validation_errors_accumulated(); |
|
| 1997 | - $error_strings = array(); |
|
| 1998 | - foreach ($validation_errors as $validation_error) { |
|
| 1999 | - if ($validation_error instanceof EE_Validation_Error) { |
|
| 2000 | - $form_section = $validation_error->get_form_section(); |
|
| 2001 | - if ($form_section instanceof EE_Form_Input_Base) { |
|
| 2002 | - $label = $form_section->html_label_text(); |
|
| 2003 | - } elseif ($form_section instanceof EE_Form_Section_Base) { |
|
| 2004 | - $label = $form_section->name(); |
|
| 2005 | - } else { |
|
| 2006 | - $label = esc_html__('Validation Error', 'event_espresso'); |
|
| 2007 | - } |
|
| 2008 | - $error_strings[] = sprintf('%1$s: %2$s', $label, $validation_error->getMessage()); |
|
| 2009 | - } |
|
| 2010 | - } |
|
| 2011 | - EE_Error::add_error( |
|
| 2012 | - sprintf( |
|
| 2013 | - esc_html__( |
|
| 2014 | - 'One or more billing form inputs are invalid and require correction before proceeding. %1$s %2$s', |
|
| 2015 | - 'event_espresso' |
|
| 2016 | - ), |
|
| 2017 | - '<br/>', |
|
| 2018 | - implode('<br/>', $error_strings) |
|
| 2019 | - ), |
|
| 2020 | - __FILE__, |
|
| 2021 | - __FUNCTION__, |
|
| 2022 | - __LINE__ |
|
| 2023 | - ); |
|
| 2024 | - } else { |
|
| 2025 | - EE_Error::add_error( |
|
| 2026 | - esc_html__( |
|
| 2027 | - 'The billing form was not submitted or something prevented it\'s submission.', |
|
| 2028 | - 'event_espresso' |
|
| 2029 | - ), |
|
| 2030 | - __FILE__, |
|
| 2031 | - __FUNCTION__, |
|
| 2032 | - __LINE__ |
|
| 2033 | - ); |
|
| 2034 | - } |
|
| 2035 | - } else { |
|
| 2036 | - EE_Error::add_error( |
|
| 2037 | - esc_html__( |
|
| 2038 | - 'The submitted billing form is invalid possibly due to a technical reason.', |
|
| 2039 | - 'event_espresso' |
|
| 2040 | - ), |
|
| 2041 | - __FILE__, |
|
| 2042 | - __FUNCTION__, |
|
| 2043 | - __LINE__ |
|
| 2044 | - ); |
|
| 2045 | - } |
|
| 2046 | - return false; |
|
| 2047 | - } |
|
| 2048 | - |
|
| 2049 | - |
|
| 2050 | - /** |
|
| 2051 | - * _setup_primary_registrant_prior_to_payment |
|
| 2052 | - * ensures that the primary registrant has a valid attendee object created with the critical details populated |
|
| 2053 | - * (first & last name & email) and that both the transaction object and primary registration object have been saved |
|
| 2054 | - * plz note that any other registrations will NOT be saved at this point (because they may not have any details |
|
| 2055 | - * yet) |
|
| 2056 | - * |
|
| 2057 | - * @access private |
|
| 2058 | - * @return bool |
|
| 2059 | - * @throws EE_Error |
|
| 2060 | - * @throws InvalidArgumentException |
|
| 2061 | - * @throws ReflectionException |
|
| 2062 | - * @throws RuntimeException |
|
| 2063 | - * @throws \EventEspresso\core\exceptions\InvalidDataTypeException |
|
| 2064 | - * @throws \EventEspresso\core\exceptions\InvalidInterfaceException |
|
| 2065 | - */ |
|
| 2066 | - private function _setup_primary_registrant_prior_to_payment() |
|
| 2067 | - { |
|
| 2068 | - // check if transaction has a primary registrant and that it has a related Attendee object |
|
| 2069 | - // if not, then we need to at least gather some primary registrant data before attempting payment |
|
| 2070 | - if ($this->checkout->billing_form instanceof EE_Billing_Attendee_Info_Form |
|
| 2071 | - && ! $this->checkout->transaction_has_primary_registrant() |
|
| 2072 | - && ! $this->_capture_primary_registration_data_from_billing_form() |
|
| 2073 | - ) { |
|
| 2074 | - return false; |
|
| 2075 | - } |
|
| 2076 | - // because saving an object clears it's cache, we need to do the chevy shuffle |
|
| 2077 | - // grab the primary_registration object |
|
| 2078 | - $primary_registration = $this->checkout->transaction->primary_registration(); |
|
| 2079 | - // at this point we'll consider a TXN to not have been failed |
|
| 2080 | - $this->checkout->transaction->toggle_failed_transaction_status(); |
|
| 2081 | - // save the TXN ( which clears cached copy of primary_registration) |
|
| 2082 | - $this->checkout->transaction->save(); |
|
| 2083 | - // grab TXN ID and save it to the primary_registration |
|
| 2084 | - $primary_registration->set_transaction_id($this->checkout->transaction->ID()); |
|
| 2085 | - // save what we have so far |
|
| 2086 | - $primary_registration->save(); |
|
| 2087 | - return true; |
|
| 2088 | - } |
|
| 2089 | - |
|
| 2090 | - |
|
| 2091 | - /** |
|
| 2092 | - * _capture_primary_registration_data_from_billing_form |
|
| 2093 | - * |
|
| 2094 | - * @access private |
|
| 2095 | - * @return bool |
|
| 2096 | - * @throws EE_Error |
|
| 2097 | - * @throws InvalidArgumentException |
|
| 2098 | - * @throws ReflectionException |
|
| 2099 | - * @throws \EventEspresso\core\exceptions\InvalidDataTypeException |
|
| 2100 | - * @throws \EventEspresso\core\exceptions\InvalidInterfaceException |
|
| 2101 | - */ |
|
| 2102 | - private function _capture_primary_registration_data_from_billing_form() |
|
| 2103 | - { |
|
| 2104 | - // convert billing form data into an attendee |
|
| 2105 | - $this->checkout->primary_attendee_obj = $this->checkout->billing_form->create_attendee_from_billing_form_data(); |
|
| 2106 | - if (! $this->checkout->primary_attendee_obj instanceof EE_Attendee) { |
|
| 2107 | - EE_Error::add_error( |
|
| 2108 | - sprintf( |
|
| 2109 | - esc_html__( |
|
| 2110 | - 'The billing form details could not be used for attendee details due to a technical issue.%sPlease try again or contact %s for assistance.', |
|
| 2111 | - 'event_espresso' |
|
| 2112 | - ), |
|
| 2113 | - '<br/>', |
|
| 2114 | - EE_Registry::instance()->CFG->organization->get_pretty('email') |
|
| 2115 | - ), |
|
| 2116 | - __FILE__, |
|
| 2117 | - __FUNCTION__, |
|
| 2118 | - __LINE__ |
|
| 2119 | - ); |
|
| 2120 | - return false; |
|
| 2121 | - } |
|
| 2122 | - $primary_registration = $this->checkout->transaction->primary_registration(); |
|
| 2123 | - if (! $primary_registration instanceof EE_Registration) { |
|
| 2124 | - EE_Error::add_error( |
|
| 2125 | - sprintf( |
|
| 2126 | - esc_html__( |
|
| 2127 | - 'The primary registrant for this transaction could not be determined due to a technical issue.%sPlease try again or contact %s for assistance.', |
|
| 2128 | - 'event_espresso' |
|
| 2129 | - ), |
|
| 2130 | - '<br/>', |
|
| 2131 | - EE_Registry::instance()->CFG->organization->get_pretty('email') |
|
| 2132 | - ), |
|
| 2133 | - __FILE__, |
|
| 2134 | - __FUNCTION__, |
|
| 2135 | - __LINE__ |
|
| 2136 | - ); |
|
| 2137 | - return false; |
|
| 2138 | - } |
|
| 2139 | - if (! $primary_registration->_add_relation_to($this->checkout->primary_attendee_obj, 'Attendee') |
|
| 2140 | - instanceof |
|
| 2141 | - EE_Attendee |
|
| 2142 | - ) { |
|
| 2143 | - EE_Error::add_error( |
|
| 2144 | - sprintf( |
|
| 2145 | - esc_html__( |
|
| 2146 | - 'The primary registrant could not be associated with this transaction due to a technical issue.%sPlease try again or contact %s for assistance.', |
|
| 2147 | - 'event_espresso' |
|
| 2148 | - ), |
|
| 2149 | - '<br/>', |
|
| 2150 | - EE_Registry::instance()->CFG->organization->get_pretty('email') |
|
| 2151 | - ), |
|
| 2152 | - __FILE__, |
|
| 2153 | - __FUNCTION__, |
|
| 2154 | - __LINE__ |
|
| 2155 | - ); |
|
| 2156 | - return false; |
|
| 2157 | - } |
|
| 2158 | - /** @type EE_Registration_Processor $registration_processor */ |
|
| 2159 | - $registration_processor = EE_Registry::instance()->load_class('Registration_Processor'); |
|
| 2160 | - // at this point, we should have enough details about the registrant to consider the registration NOT incomplete |
|
| 2161 | - $registration_processor->toggle_incomplete_registration_status_to_default($primary_registration); |
|
| 2162 | - return true; |
|
| 2163 | - } |
|
| 2164 | - |
|
| 2165 | - |
|
| 2166 | - /** |
|
| 2167 | - * _get_payment_method_for_selected_method_of_payment |
|
| 2168 | - * retrieves a valid payment method |
|
| 2169 | - * |
|
| 2170 | - * @access public |
|
| 2171 | - * @return EE_Payment_Method |
|
| 2172 | - * @throws EE_Error |
|
| 2173 | - * @throws InvalidArgumentException |
|
| 2174 | - * @throws ReflectionException |
|
| 2175 | - * @throws \EventEspresso\core\exceptions\InvalidDataTypeException |
|
| 2176 | - * @throws \EventEspresso\core\exceptions\InvalidInterfaceException |
|
| 2177 | - */ |
|
| 2178 | - private function _get_payment_method_for_selected_method_of_payment() |
|
| 2179 | - { |
|
| 2180 | - if ($this->checkout->selected_method_of_payment === 'events_sold_out') { |
|
| 2181 | - $this->_redirect_because_event_sold_out(); |
|
| 2182 | - return null; |
|
| 2183 | - } |
|
| 2184 | - // get EE_Payment_Method object |
|
| 2185 | - if (isset($this->checkout->available_payment_methods[ $this->checkout->selected_method_of_payment ])) { |
|
| 2186 | - $payment_method = $this->checkout->available_payment_methods[ $this->checkout->selected_method_of_payment ]; |
|
| 2187 | - } else { |
|
| 2188 | - // load EEM_Payment_Method |
|
| 2189 | - EE_Registry::instance()->load_model('Payment_Method'); |
|
| 2190 | - /** @type EEM_Payment_Method $EEM_Payment_Method */ |
|
| 2191 | - $EEM_Payment_Method = EE_Registry::instance()->LIB->EEM_Payment_Method; |
|
| 2192 | - $payment_method = $EEM_Payment_Method->get_one_by_slug($this->checkout->selected_method_of_payment); |
|
| 2193 | - } |
|
| 2194 | - // verify $payment_method |
|
| 2195 | - if (! $payment_method instanceof EE_Payment_Method) { |
|
| 2196 | - // not a payment |
|
| 2197 | - EE_Error::add_error( |
|
| 2198 | - sprintf( |
|
| 2199 | - esc_html__( |
|
| 2200 | - 'The selected method of payment could not be determined due to a technical issue.%sPlease try again or contact %s for assistance.', |
|
| 2201 | - 'event_espresso' |
|
| 2202 | - ), |
|
| 2203 | - '<br/>', |
|
| 2204 | - EE_Registry::instance()->CFG->organization->get_pretty('email') |
|
| 2205 | - ), |
|
| 2206 | - __FILE__, |
|
| 2207 | - __FUNCTION__, |
|
| 2208 | - __LINE__ |
|
| 2209 | - ); |
|
| 2210 | - return null; |
|
| 2211 | - } |
|
| 2212 | - // and verify it has a valid Payment_Method Type object |
|
| 2213 | - if (! $payment_method->type_obj() instanceof EE_PMT_Base) { |
|
| 2214 | - // not a payment |
|
| 2215 | - EE_Error::add_error( |
|
| 2216 | - sprintf( |
|
| 2217 | - esc_html__( |
|
| 2218 | - 'A valid payment method could not be determined due to a technical issue.%sPlease try again or contact %s for assistance.', |
|
| 2219 | - 'event_espresso' |
|
| 2220 | - ), |
|
| 2221 | - '<br/>', |
|
| 2222 | - EE_Registry::instance()->CFG->organization->get_pretty('email') |
|
| 2223 | - ), |
|
| 2224 | - __FILE__, |
|
| 2225 | - __FUNCTION__, |
|
| 2226 | - __LINE__ |
|
| 2227 | - ); |
|
| 2228 | - return null; |
|
| 2229 | - } |
|
| 2230 | - return $payment_method; |
|
| 2231 | - } |
|
| 2232 | - |
|
| 2233 | - |
|
| 2234 | - /** |
|
| 2235 | - * _attempt_payment |
|
| 2236 | - * |
|
| 2237 | - * @access private |
|
| 2238 | - * @type EE_Payment_Method $payment_method |
|
| 2239 | - * @return mixed EE_Payment | boolean |
|
| 2240 | - * @throws EE_Error |
|
| 2241 | - * @throws InvalidArgumentException |
|
| 2242 | - * @throws ReflectionException |
|
| 2243 | - * @throws \EventEspresso\core\exceptions\InvalidDataTypeException |
|
| 2244 | - * @throws \EventEspresso\core\exceptions\InvalidInterfaceException |
|
| 2245 | - */ |
|
| 2246 | - private function _attempt_payment(EE_Payment_Method $payment_method) |
|
| 2247 | - { |
|
| 2248 | - $payment = null; |
|
| 2249 | - $this->checkout->transaction->save(); |
|
| 2250 | - $payment_processor = EE_Registry::instance()->load_core('Payment_Processor'); |
|
| 2251 | - if (! $payment_processor instanceof EE_Payment_Processor) { |
|
| 2252 | - return false; |
|
| 2253 | - } |
|
| 2254 | - try { |
|
| 2255 | - $payment_processor->set_revisit($this->checkout->revisit); |
|
| 2256 | - // generate payment object |
|
| 2257 | - $payment = $payment_processor->process_payment( |
|
| 2258 | - $payment_method, |
|
| 2259 | - $this->checkout->transaction, |
|
| 2260 | - $this->checkout->amount_owing, |
|
| 2261 | - $this->checkout->billing_form, |
|
| 2262 | - $this->_get_return_url($payment_method), |
|
| 2263 | - 'CART', |
|
| 2264 | - $this->checkout->admin_request, |
|
| 2265 | - true, |
|
| 2266 | - $this->reg_step_url() |
|
| 2267 | - ); |
|
| 2268 | - } catch (Exception $e) { |
|
| 2269 | - $this->_handle_payment_processor_exception($e); |
|
| 2270 | - } |
|
| 2271 | - return $payment; |
|
| 2272 | - } |
|
| 2273 | - |
|
| 2274 | - |
|
| 2275 | - /** |
|
| 2276 | - * _handle_payment_processor_exception |
|
| 2277 | - * |
|
| 2278 | - * @access protected |
|
| 2279 | - * @param \Exception $e |
|
| 2280 | - * @return void |
|
| 2281 | - * @throws EE_Error |
|
| 2282 | - * @throws InvalidArgumentException |
|
| 2283 | - * @throws \EventEspresso\core\exceptions\InvalidDataTypeException |
|
| 2284 | - * @throws \EventEspresso\core\exceptions\InvalidInterfaceException |
|
| 2285 | - */ |
|
| 2286 | - protected function _handle_payment_processor_exception(Exception $e) |
|
| 2287 | - { |
|
| 2288 | - EE_Error::add_error( |
|
| 2289 | - sprintf( |
|
| 2290 | - esc_html__( |
|
| 2291 | - 'The payment could not br processed due to a technical issue.%1$sPlease try again or contact %2$s for assistance.||The following Exception was thrown in %4$s on line %5$s:%1$s%3$s', |
|
| 2292 | - 'event_espresso' |
|
| 2293 | - ), |
|
| 2294 | - '<br/>', |
|
| 2295 | - EE_Registry::instance()->CFG->organization->get_pretty('email'), |
|
| 2296 | - $e->getMessage(), |
|
| 2297 | - $e->getFile(), |
|
| 2298 | - $e->getLine() |
|
| 2299 | - ), |
|
| 2300 | - __FILE__, |
|
| 2301 | - __FUNCTION__, |
|
| 2302 | - __LINE__ |
|
| 2303 | - ); |
|
| 2304 | - } |
|
| 2305 | - |
|
| 2306 | - |
|
| 2307 | - /** |
|
| 2308 | - * _get_return_url |
|
| 2309 | - * |
|
| 2310 | - * @access protected |
|
| 2311 | - * @param \EE_Payment_Method $payment_method |
|
| 2312 | - * @return string |
|
| 2313 | - * @throws \EE_Error |
|
| 2314 | - */ |
|
| 2315 | - protected function _get_return_url(EE_Payment_Method $payment_method) |
|
| 2316 | - { |
|
| 2317 | - $return_url = ''; |
|
| 2318 | - switch ($payment_method->type_obj()->payment_occurs()) { |
|
| 2319 | - case EE_PMT_Base::offsite: |
|
| 2320 | - $return_url = add_query_arg( |
|
| 2321 | - array( |
|
| 2322 | - 'action' => 'process_gateway_response', |
|
| 2323 | - 'selected_method_of_payment' => $this->checkout->selected_method_of_payment, |
|
| 2324 | - 'spco_txn' => $this->checkout->transaction->ID(), |
|
| 2325 | - ), |
|
| 2326 | - $this->reg_step_url() |
|
| 2327 | - ); |
|
| 2328 | - break; |
|
| 2329 | - case EE_PMT_Base::onsite: |
|
| 2330 | - case EE_PMT_Base::offline: |
|
| 2331 | - $return_url = $this->checkout->next_step->reg_step_url(); |
|
| 2332 | - break; |
|
| 2333 | - } |
|
| 2334 | - return $return_url; |
|
| 2335 | - } |
|
| 2336 | - |
|
| 2337 | - |
|
| 2338 | - /** |
|
| 2339 | - * _validate_payment |
|
| 2340 | - * |
|
| 2341 | - * @access private |
|
| 2342 | - * @param EE_Payment $payment |
|
| 2343 | - * @return EE_Payment|FALSE |
|
| 2344 | - * @throws EE_Error |
|
| 2345 | - * @throws InvalidArgumentException |
|
| 2346 | - * @throws \EventEspresso\core\exceptions\InvalidDataTypeException |
|
| 2347 | - * @throws \EventEspresso\core\exceptions\InvalidInterfaceException |
|
| 2348 | - */ |
|
| 2349 | - private function _validate_payment($payment = null) |
|
| 2350 | - { |
|
| 2351 | - if ($this->checkout->payment_method->is_off_line()) { |
|
| 2352 | - return true; |
|
| 2353 | - } |
|
| 2354 | - // verify payment object |
|
| 2355 | - if (! $payment instanceof EE_Payment) { |
|
| 2356 | - // not a payment |
|
| 2357 | - EE_Error::add_error( |
|
| 2358 | - sprintf( |
|
| 2359 | - esc_html__( |
|
| 2360 | - 'A valid payment was not generated due to a technical issue.%1$sPlease try again or contact %2$s for assistance.', |
|
| 2361 | - 'event_espresso' |
|
| 2362 | - ), |
|
| 2363 | - '<br/>', |
|
| 2364 | - EE_Registry::instance()->CFG->organization->get_pretty('email') |
|
| 2365 | - ), |
|
| 2366 | - __FILE__, |
|
| 2367 | - __FUNCTION__, |
|
| 2368 | - __LINE__ |
|
| 2369 | - ); |
|
| 2370 | - return false; |
|
| 2371 | - } |
|
| 2372 | - return $payment; |
|
| 2373 | - } |
|
| 2374 | - |
|
| 2375 | - |
|
| 2376 | - /** |
|
| 2377 | - * _post_payment_processing |
|
| 2378 | - * |
|
| 2379 | - * @access private |
|
| 2380 | - * @param EE_Payment|bool $payment |
|
| 2381 | - * @return bool |
|
| 2382 | - * @throws EE_Error |
|
| 2383 | - * @throws InvalidArgumentException |
|
| 2384 | - * @throws \EventEspresso\core\exceptions\InvalidDataTypeException |
|
| 2385 | - * @throws \EventEspresso\core\exceptions\InvalidInterfaceException |
|
| 2386 | - */ |
|
| 2387 | - private function _post_payment_processing($payment = null) |
|
| 2388 | - { |
|
| 2389 | - // Off-Line payment? |
|
| 2390 | - if ($payment === true) { |
|
| 2391 | - // $this->_setup_redirect_for_next_step(); |
|
| 2392 | - return true; |
|
| 2393 | - // On-Site payment? |
|
| 2394 | - } elseif ($this->checkout->payment_method->is_on_site()) { |
|
| 2395 | - if (! $this->_process_payment_status($payment, EE_PMT_Base::onsite)) { |
|
| 2396 | - // $this->_setup_redirect_for_next_step(); |
|
| 2397 | - $this->checkout->continue_reg = false; |
|
| 2398 | - } |
|
| 2399 | - // Off-Site payment? |
|
| 2400 | - } elseif ($this->checkout->payment_method->is_off_site()) { |
|
| 2401 | - // if a payment object was made and it specifies a redirect url, then we'll setup that redirect info |
|
| 2402 | - if ($payment instanceof EE_Payment && $payment->redirect_url()) { |
|
| 2403 | - do_action('AHEE_log', __CLASS__, __FUNCTION__, $payment->redirect_url(), '$payment->redirect_url()'); |
|
| 2404 | - $this->checkout->redirect = true; |
|
| 2405 | - $this->checkout->redirect_form = $payment->redirect_form(); |
|
| 2406 | - $this->checkout->redirect_url = $this->reg_step_url('redirect_form'); |
|
| 2407 | - // set JSON response |
|
| 2408 | - $this->checkout->json_response->set_redirect_form($this->checkout->redirect_form); |
|
| 2409 | - // and lastly, let's bump the payment status to pending |
|
| 2410 | - $payment->set_status(EEM_Payment::status_id_pending); |
|
| 2411 | - $payment->save(); |
|
| 2412 | - } else { |
|
| 2413 | - // not a payment |
|
| 2414 | - $this->checkout->continue_reg = false; |
|
| 2415 | - EE_Error::add_error( |
|
| 2416 | - sprintf( |
|
| 2417 | - esc_html__( |
|
| 2418 | - 'It appears the Off Site Payment Method was not configured properly.%sPlease try again or contact %s for assistance.', |
|
| 2419 | - 'event_espresso' |
|
| 2420 | - ), |
|
| 2421 | - '<br/>', |
|
| 2422 | - EE_Registry::instance()->CFG->organization->get_pretty('email') |
|
| 2423 | - ), |
|
| 2424 | - __FILE__, |
|
| 2425 | - __FUNCTION__, |
|
| 2426 | - __LINE__ |
|
| 2427 | - ); |
|
| 2428 | - } |
|
| 2429 | - } else { |
|
| 2430 | - // ummm ya... not Off-Line, not On-Site, not off-Site ???? |
|
| 2431 | - $this->checkout->continue_reg = false; |
|
| 2432 | - return false; |
|
| 2433 | - } |
|
| 2434 | - return $payment; |
|
| 2435 | - } |
|
| 2436 | - |
|
| 2437 | - |
|
| 2438 | - /** |
|
| 2439 | - * _process_payment_status |
|
| 2440 | - * |
|
| 2441 | - * @access private |
|
| 2442 | - * @type EE_Payment $payment |
|
| 2443 | - * @param string $payment_occurs |
|
| 2444 | - * @return bool |
|
| 2445 | - * @throws EE_Error |
|
| 2446 | - * @throws InvalidArgumentException |
|
| 2447 | - * @throws \EventEspresso\core\exceptions\InvalidDataTypeException |
|
| 2448 | - * @throws \EventEspresso\core\exceptions\InvalidInterfaceException |
|
| 2449 | - */ |
|
| 2450 | - private function _process_payment_status($payment, $payment_occurs = EE_PMT_Base::offline) |
|
| 2451 | - { |
|
| 2452 | - // off-line payment? carry on |
|
| 2453 | - if ($payment_occurs === EE_PMT_Base::offline) { |
|
| 2454 | - return true; |
|
| 2455 | - } |
|
| 2456 | - // verify payment validity |
|
| 2457 | - if ($payment instanceof EE_Payment) { |
|
| 2458 | - do_action('AHEE_log', __CLASS__, __FUNCTION__, $payment->status(), '$payment->status()'); |
|
| 2459 | - $msg = $payment->gateway_response(); |
|
| 2460 | - // check results |
|
| 2461 | - switch ($payment->status()) { |
|
| 2462 | - // good payment |
|
| 2463 | - case EEM_Payment::status_id_approved: |
|
| 2464 | - EE_Error::add_success( |
|
| 2465 | - esc_html__('Your payment was processed successfully.', 'event_espresso'), |
|
| 2466 | - __FILE__, |
|
| 2467 | - __FUNCTION__, |
|
| 2468 | - __LINE__ |
|
| 2469 | - ); |
|
| 2470 | - return true; |
|
| 2471 | - break; |
|
| 2472 | - // slow payment |
|
| 2473 | - case EEM_Payment::status_id_pending: |
|
| 2474 | - if (empty($msg)) { |
|
| 2475 | - $msg = esc_html__( |
|
| 2476 | - 'Your payment appears to have been processed successfully, but the Instant Payment Notification has not yet been received. It should arrive shortly.', |
|
| 2477 | - 'event_espresso' |
|
| 2478 | - ); |
|
| 2479 | - } |
|
| 2480 | - EE_Error::add_success($msg, __FILE__, __FUNCTION__, __LINE__); |
|
| 2481 | - return true; |
|
| 2482 | - break; |
|
| 2483 | - // don't wanna payment |
|
| 2484 | - case EEM_Payment::status_id_cancelled: |
|
| 2485 | - if (empty($msg)) { |
|
| 2486 | - $msg = _n( |
|
| 2487 | - 'Payment cancelled. Please try again.', |
|
| 2488 | - 'Payment cancelled. Please try again or select another method of payment.', |
|
| 2489 | - count($this->checkout->available_payment_methods), |
|
| 2490 | - 'event_espresso' |
|
| 2491 | - ); |
|
| 2492 | - } |
|
| 2493 | - EE_Error::add_attention($msg, __FILE__, __FUNCTION__, __LINE__); |
|
| 2494 | - return false; |
|
| 2495 | - break; |
|
| 2496 | - // not enough payment |
|
| 2497 | - case EEM_Payment::status_id_declined: |
|
| 2498 | - if (empty($msg)) { |
|
| 2499 | - $msg = _n( |
|
| 2500 | - 'We\'re sorry but your payment was declined. Please try again.', |
|
| 2501 | - 'We\'re sorry but your payment was declined. Please try again or select another method of payment.', |
|
| 2502 | - count($this->checkout->available_payment_methods), |
|
| 2503 | - 'event_espresso' |
|
| 2504 | - ); |
|
| 2505 | - } |
|
| 2506 | - EE_Error::add_attention($msg, __FILE__, __FUNCTION__, __LINE__); |
|
| 2507 | - return false; |
|
| 2508 | - break; |
|
| 2509 | - // bad payment |
|
| 2510 | - case EEM_Payment::status_id_failed: |
|
| 2511 | - if (! empty($msg)) { |
|
| 2512 | - EE_Error::add_error($msg, __FILE__, __FUNCTION__, __LINE__); |
|
| 2513 | - return false; |
|
| 2514 | - } |
|
| 2515 | - // default to error below |
|
| 2516 | - break; |
|
| 2517 | - } |
|
| 2518 | - } |
|
| 2519 | - // off-site payment gateway responses are too unreliable, so let's just assume that |
|
| 2520 | - // the payment processing is just running slower than the registrant's request |
|
| 2521 | - if ($payment_occurs === EE_PMT_Base::offsite) { |
|
| 2522 | - return true; |
|
| 2523 | - } |
|
| 2524 | - EE_Error::add_error( |
|
| 2525 | - sprintf( |
|
| 2526 | - esc_html__( |
|
| 2527 | - 'Your payment could not be processed successfully due to a technical issue.%sPlease try again or contact %s for assistance.', |
|
| 2528 | - 'event_espresso' |
|
| 2529 | - ), |
|
| 2530 | - '<br/>', |
|
| 2531 | - EE_Registry::instance()->CFG->organization->get_pretty('email') |
|
| 2532 | - ), |
|
| 2533 | - __FILE__, |
|
| 2534 | - __FUNCTION__, |
|
| 2535 | - __LINE__ |
|
| 2536 | - ); |
|
| 2537 | - return false; |
|
| 2538 | - } |
|
| 2539 | - |
|
| 2540 | - |
|
| 2541 | - |
|
| 2542 | - |
|
| 2543 | - |
|
| 2544 | - |
|
| 2545 | - /********************************************************************************************************/ |
|
| 2546 | - /********************************** PROCESS GATEWAY RESPONSE **********************************/ |
|
| 2547 | - /********************************************************************************************************/ |
|
| 2548 | - /** |
|
| 2549 | - * process_gateway_response |
|
| 2550 | - * this is the return point for Off-Site Payment Methods |
|
| 2551 | - * It will attempt to "handle the IPN" if it appears that this has not already occurred, |
|
| 2552 | - * otherwise, it will load up the last payment made for the TXN. |
|
| 2553 | - * If the payment retrieved looks good, it will then either: |
|
| 2554 | - * complete the current step and allow advancement to the next reg step |
|
| 2555 | - * or present the payment options again |
|
| 2556 | - * |
|
| 2557 | - * @access private |
|
| 2558 | - * @return EE_Payment|FALSE |
|
| 2559 | - * @throws EE_Error |
|
| 2560 | - * @throws InvalidArgumentException |
|
| 2561 | - * @throws ReflectionException |
|
| 2562 | - * @throws \EventEspresso\core\exceptions\InvalidDataTypeException |
|
| 2563 | - * @throws \EventEspresso\core\exceptions\InvalidInterfaceException |
|
| 2564 | - * @throws \EventEspresso\core\exceptions\InvalidSessionDataException |
|
| 2565 | - */ |
|
| 2566 | - public function process_gateway_response() |
|
| 2567 | - { |
|
| 2568 | - $payment = null; |
|
| 2569 | - // how have they chosen to pay? |
|
| 2570 | - $this->checkout->selected_method_of_payment = $this->_get_selected_method_of_payment(true); |
|
| 2571 | - // get EE_Payment_Method object |
|
| 2572 | - if (! $this->checkout->payment_method = $this->_get_payment_method_for_selected_method_of_payment()) { |
|
| 2573 | - $this->checkout->continue_reg = false; |
|
| 2574 | - return false; |
|
| 2575 | - } |
|
| 2576 | - if (! $this->checkout->payment_method->is_off_site()) { |
|
| 2577 | - return false; |
|
| 2578 | - } |
|
| 2579 | - $this->_validate_offsite_return(); |
|
| 2580 | - // DEBUG LOG |
|
| 2581 | - // $this->checkout->log( |
|
| 2582 | - // __CLASS__, |
|
| 2583 | - // __FUNCTION__, |
|
| 2584 | - // __LINE__, |
|
| 2585 | - // array( |
|
| 2586 | - // 'selected_method_of_payment' => $this->checkout->selected_method_of_payment, |
|
| 2587 | - // 'payment_method' => $this->checkout->payment_method, |
|
| 2588 | - // ), |
|
| 2589 | - // true |
|
| 2590 | - // ); |
|
| 2591 | - // verify TXN |
|
| 2592 | - if ($this->checkout->transaction instanceof EE_Transaction) { |
|
| 2593 | - $gateway = $this->checkout->payment_method->type_obj()->get_gateway(); |
|
| 2594 | - if (! $gateway instanceof EE_Offsite_Gateway) { |
|
| 2595 | - $this->checkout->continue_reg = false; |
|
| 2596 | - return false; |
|
| 2597 | - } |
|
| 2598 | - $payment = $this->_process_off_site_payment($gateway); |
|
| 2599 | - $payment = $this->_process_cancelled_payments($payment); |
|
| 2600 | - $payment = $this->_validate_payment($payment); |
|
| 2601 | - // if payment was not declined by the payment gateway or cancelled by the registrant |
|
| 2602 | - if ($this->_process_payment_status($payment, EE_PMT_Base::offsite)) { |
|
| 2603 | - // $this->_setup_redirect_for_next_step(); |
|
| 2604 | - // store that for later |
|
| 2605 | - $this->checkout->payment = $payment; |
|
| 2606 | - // mark this reg step as completed, as long as gateway doesn't use a separate IPN request, |
|
| 2607 | - // because we will complete this step during the IPN processing then |
|
| 2608 | - if ($gateway instanceof EE_Offsite_Gateway && ! $this->handle_IPN_in_this_request()) { |
|
| 2609 | - $this->set_completed(); |
|
| 2610 | - } |
|
| 2611 | - return true; |
|
| 2612 | - } |
|
| 2613 | - } |
|
| 2614 | - // DEBUG LOG |
|
| 2615 | - // $this->checkout->log( |
|
| 2616 | - // __CLASS__, |
|
| 2617 | - // __FUNCTION__, |
|
| 2618 | - // __LINE__, |
|
| 2619 | - // array('payment' => $payment) |
|
| 2620 | - // ); |
|
| 2621 | - $this->checkout->continue_reg = false; |
|
| 2622 | - return false; |
|
| 2623 | - } |
|
| 2624 | - |
|
| 2625 | - |
|
| 2626 | - /** |
|
| 2627 | - * _validate_return |
|
| 2628 | - * |
|
| 2629 | - * @access private |
|
| 2630 | - * @return void |
|
| 2631 | - * @throws EE_Error |
|
| 2632 | - * @throws InvalidArgumentException |
|
| 2633 | - * @throws \EventEspresso\core\exceptions\InvalidDataTypeException |
|
| 2634 | - * @throws \EventEspresso\core\exceptions\InvalidInterfaceException |
|
| 2635 | - * @throws \EventEspresso\core\exceptions\InvalidSessionDataException |
|
| 2636 | - */ |
|
| 2637 | - private function _validate_offsite_return() |
|
| 2638 | - { |
|
| 2639 | - $TXN_ID = (int) EE_Registry::instance()->REQ->get('spco_txn', 0); |
|
| 2640 | - if ($TXN_ID !== $this->checkout->transaction->ID()) { |
|
| 2641 | - // Houston... we might have a problem |
|
| 2642 | - $invalid_TXN = false; |
|
| 2643 | - // first gather some info |
|
| 2644 | - $valid_TXN = EEM_Transaction::instance()->get_one_by_ID($TXN_ID); |
|
| 2645 | - $primary_registrant = $valid_TXN instanceof EE_Transaction |
|
| 2646 | - ? $valid_TXN->primary_registration() |
|
| 2647 | - : null; |
|
| 2648 | - // let's start by retrieving the cart for this TXN |
|
| 2649 | - $cart = $this->checkout->get_cart_for_transaction($this->checkout->transaction); |
|
| 2650 | - if ($cart instanceof EE_Cart) { |
|
| 2651 | - // verify that the current cart has tickets |
|
| 2652 | - $tickets = $cart->get_tickets(); |
|
| 2653 | - if (empty($tickets)) { |
|
| 2654 | - $invalid_TXN = true; |
|
| 2655 | - } |
|
| 2656 | - } else { |
|
| 2657 | - $invalid_TXN = true; |
|
| 2658 | - } |
|
| 2659 | - $valid_TXN_SID = $primary_registrant instanceof EE_Registration |
|
| 2660 | - ? $primary_registrant->session_ID() |
|
| 2661 | - : null; |
|
| 2662 | - // validate current Session ID and compare against valid TXN session ID |
|
| 2663 | - if ($invalid_TXN // if this is already true, then skip other checks |
|
| 2664 | - || EE_Session::instance()->id() === null |
|
| 2665 | - || ( |
|
| 2666 | - // WARNING !!! |
|
| 2667 | - // this could be PayPal sending back duplicate requests (ya they do that) |
|
| 2668 | - // or it **could** mean someone is simply registering AGAIN after having just done so |
|
| 2669 | - // so now we need to determine if this current TXN looks valid or not |
|
| 2670 | - // and whether this reg step has even been started ? |
|
| 2671 | - EE_Session::instance()->id() === $valid_TXN_SID |
|
| 2672 | - // really? you're half way through this reg step, but you never started it ? |
|
| 2673 | - && $this->checkout->transaction->reg_step_completed($this->slug()) === false |
|
| 2674 | - ) |
|
| 2675 | - ) { |
|
| 2676 | - $invalid_TXN = true; |
|
| 2677 | - } |
|
| 2678 | - if ($invalid_TXN) { |
|
| 2679 | - // is the valid TXN completed ? |
|
| 2680 | - if ($valid_TXN instanceof EE_Transaction) { |
|
| 2681 | - // has this step even been started ? |
|
| 2682 | - $reg_step_completed = $valid_TXN->reg_step_completed($this->slug()); |
|
| 2683 | - if ($reg_step_completed !== false && $reg_step_completed !== true) { |
|
| 2684 | - // so it **looks** like this is a double request from PayPal |
|
| 2685 | - // so let's try to pick up where we left off |
|
| 2686 | - $this->checkout->transaction = $valid_TXN; |
|
| 2687 | - $this->checkout->refresh_all_entities(true); |
|
| 2688 | - return; |
|
| 2689 | - } |
|
| 2690 | - } |
|
| 2691 | - // you appear to be lost? |
|
| 2692 | - $this->_redirect_wayward_request($primary_registrant); |
|
| 2693 | - } |
|
| 2694 | - } |
|
| 2695 | - } |
|
| 2696 | - |
|
| 2697 | - |
|
| 2698 | - /** |
|
| 2699 | - * _redirect_wayward_request |
|
| 2700 | - * |
|
| 2701 | - * @access private |
|
| 2702 | - * @param \EE_Registration|null $primary_registrant |
|
| 2703 | - * @return bool |
|
| 2704 | - * @throws EE_Error |
|
| 2705 | - * @throws InvalidArgumentException |
|
| 2706 | - * @throws \EventEspresso\core\exceptions\InvalidDataTypeException |
|
| 2707 | - * @throws \EventEspresso\core\exceptions\InvalidInterfaceException |
|
| 2708 | - */ |
|
| 2709 | - private function _redirect_wayward_request(EE_Registration $primary_registrant) |
|
| 2710 | - { |
|
| 2711 | - if (! $primary_registrant instanceof EE_Registration) { |
|
| 2712 | - // try redirecting based on the current TXN |
|
| 2713 | - $primary_registrant = $this->checkout->transaction instanceof EE_Transaction |
|
| 2714 | - ? $this->checkout->transaction->primary_registration() |
|
| 2715 | - : null; |
|
| 2716 | - } |
|
| 2717 | - if (! $primary_registrant instanceof EE_Registration) { |
|
| 2718 | - EE_Error::add_error( |
|
| 2719 | - sprintf( |
|
| 2720 | - esc_html__( |
|
| 2721 | - 'Invalid information was received from the Off-Site Payment Processor and your Transaction details could not be retrieved from the database.%1$sPlease try again or contact %2$s for assistance.', |
|
| 2722 | - 'event_espresso' |
|
| 2723 | - ), |
|
| 2724 | - '<br/>', |
|
| 2725 | - EE_Registry::instance()->CFG->organization->get_pretty('email') |
|
| 2726 | - ), |
|
| 2727 | - __FILE__, |
|
| 2728 | - __FUNCTION__, |
|
| 2729 | - __LINE__ |
|
| 2730 | - ); |
|
| 2731 | - return false; |
|
| 2732 | - } |
|
| 2733 | - // make sure transaction is not locked |
|
| 2734 | - $this->checkout->transaction->unlock(); |
|
| 2735 | - wp_safe_redirect( |
|
| 2736 | - add_query_arg( |
|
| 2737 | - array( |
|
| 2738 | - 'e_reg_url_link' => $primary_registrant->reg_url_link(), |
|
| 2739 | - ), |
|
| 2740 | - $this->checkout->thank_you_page_url |
|
| 2741 | - ) |
|
| 2742 | - ); |
|
| 2743 | - exit(); |
|
| 2744 | - } |
|
| 2745 | - |
|
| 2746 | - |
|
| 2747 | - /** |
|
| 2748 | - * _process_off_site_payment |
|
| 2749 | - * |
|
| 2750 | - * @access private |
|
| 2751 | - * @param \EE_Offsite_Gateway $gateway |
|
| 2752 | - * @return EE_Payment |
|
| 2753 | - * @throws EE_Error |
|
| 2754 | - * @throws InvalidArgumentException |
|
| 2755 | - * @throws \EventEspresso\core\exceptions\InvalidDataTypeException |
|
| 2756 | - * @throws \EventEspresso\core\exceptions\InvalidInterfaceException |
|
| 2757 | - */ |
|
| 2758 | - private function _process_off_site_payment(EE_Offsite_Gateway $gateway) |
|
| 2759 | - { |
|
| 2760 | - try { |
|
| 2761 | - $request_data = \EE_Registry::instance()->REQ->params(); |
|
| 2762 | - // if gateway uses_separate_IPN_request, then we don't have to process the IPN manually |
|
| 2763 | - $this->set_handle_IPN_in_this_request( |
|
| 2764 | - $gateway->handle_IPN_in_this_request($request_data, false) |
|
| 2765 | - ); |
|
| 2766 | - if ($this->handle_IPN_in_this_request()) { |
|
| 2767 | - // get payment details and process results |
|
| 2768 | - /** @type EE_Payment_Processor $payment_processor */ |
|
| 2769 | - $payment_processor = EE_Registry::instance()->load_core('Payment_Processor'); |
|
| 2770 | - $payment = $payment_processor->process_ipn( |
|
| 2771 | - $request_data, |
|
| 2772 | - $this->checkout->transaction, |
|
| 2773 | - $this->checkout->payment_method, |
|
| 2774 | - true, |
|
| 2775 | - false |
|
| 2776 | - ); |
|
| 2777 | - // $payment_source = 'process_ipn'; |
|
| 2778 | - } else { |
|
| 2779 | - $payment = $this->checkout->transaction->last_payment(); |
|
| 2780 | - // $payment_source = 'last_payment'; |
|
| 2781 | - } |
|
| 2782 | - } catch (Exception $e) { |
|
| 2783 | - // let's just eat the exception and try to move on using any previously set payment info |
|
| 2784 | - $payment = $this->checkout->transaction->last_payment(); |
|
| 2785 | - // $payment_source = 'last_payment after Exception'; |
|
| 2786 | - // but if we STILL don't have a payment object |
|
| 2787 | - if (! $payment instanceof EE_Payment) { |
|
| 2788 | - // then we'll object ! ( not object like a thing... but object like what a lawyer says ! ) |
|
| 2789 | - $this->_handle_payment_processor_exception($e); |
|
| 2790 | - } |
|
| 2791 | - } |
|
| 2792 | - // DEBUG LOG |
|
| 2793 | - // $this->checkout->log( |
|
| 2794 | - // __CLASS__, |
|
| 2795 | - // __FUNCTION__, |
|
| 2796 | - // __LINE__, |
|
| 2797 | - // array( |
|
| 2798 | - // 'process_ipn_payment' => $payment, |
|
| 2799 | - // 'payment_source' => $payment_source, |
|
| 2800 | - // ) |
|
| 2801 | - // ); |
|
| 2802 | - return $payment; |
|
| 2803 | - } |
|
| 2804 | - |
|
| 2805 | - |
|
| 2806 | - /** |
|
| 2807 | - * _process_cancelled_payments |
|
| 2808 | - * just makes sure that the payment status gets updated correctly |
|
| 2809 | - * so tha tan error isn't generated during payment validation |
|
| 2810 | - * |
|
| 2811 | - * @access private |
|
| 2812 | - * @param EE_Payment $payment |
|
| 2813 | - * @return EE_Payment | FALSE |
|
| 2814 | - * @throws \EE_Error |
|
| 2815 | - */ |
|
| 2816 | - private function _process_cancelled_payments($payment = null) |
|
| 2817 | - { |
|
| 2818 | - if ($payment instanceof EE_Payment |
|
| 2819 | - && isset($_REQUEST['ee_cancel_payment']) |
|
| 2820 | - && $payment->status() === EEM_Payment::status_id_failed |
|
| 2821 | - ) { |
|
| 2822 | - $payment->set_status(EEM_Payment::status_id_cancelled); |
|
| 2823 | - } |
|
| 2824 | - return $payment; |
|
| 2825 | - } |
|
| 2826 | - |
|
| 2827 | - |
|
| 2828 | - /** |
|
| 2829 | - * get_transaction_details_for_gateways |
|
| 2830 | - * |
|
| 2831 | - * @access public |
|
| 2832 | - * @return int |
|
| 2833 | - * @throws EE_Error |
|
| 2834 | - * @throws InvalidArgumentException |
|
| 2835 | - * @throws ReflectionException |
|
| 2836 | - * @throws \EventEspresso\core\exceptions\InvalidDataTypeException |
|
| 2837 | - * @throws \EventEspresso\core\exceptions\InvalidInterfaceException |
|
| 2838 | - */ |
|
| 2839 | - public function get_transaction_details_for_gateways() |
|
| 2840 | - { |
|
| 2841 | - $txn_details = array(); |
|
| 2842 | - // ya gotta make a choice man |
|
| 2843 | - if (empty($this->checkout->selected_method_of_payment)) { |
|
| 2844 | - $txn_details = array( |
|
| 2845 | - 'error' => esc_html__('Please select a method of payment before proceeding.', 'event_espresso'), |
|
| 2846 | - ); |
|
| 2847 | - } |
|
| 2848 | - // get EE_Payment_Method object |
|
| 2849 | - if (empty($txn_details) |
|
| 2850 | - && |
|
| 2851 | - ! $this->checkout->payment_method = $this->_get_payment_method_for_selected_method_of_payment() |
|
| 2852 | - ) { |
|
| 2853 | - $txn_details = array( |
|
| 2854 | - 'selected_method_of_payment' => $this->checkout->selected_method_of_payment, |
|
| 2855 | - 'error' => esc_html__( |
|
| 2856 | - 'A valid Payment Method could not be determined.', |
|
| 2857 | - 'event_espresso' |
|
| 2858 | - ), |
|
| 2859 | - ); |
|
| 2860 | - } |
|
| 2861 | - if (empty($txn_details) && $this->checkout->transaction instanceof EE_Transaction) { |
|
| 2862 | - $return_url = $this->_get_return_url($this->checkout->payment_method); |
|
| 2863 | - $txn_details = array( |
|
| 2864 | - 'TXN_ID' => $this->checkout->transaction->ID(), |
|
| 2865 | - 'TXN_timestamp' => $this->checkout->transaction->datetime(), |
|
| 2866 | - 'TXN_total' => $this->checkout->transaction->total(), |
|
| 2867 | - 'TXN_paid' => $this->checkout->transaction->paid(), |
|
| 2868 | - 'TXN_reg_steps' => $this->checkout->transaction->reg_steps(), |
|
| 2869 | - 'STS_ID' => $this->checkout->transaction->status_ID(), |
|
| 2870 | - 'PMD_ID' => $this->checkout->transaction->payment_method_ID(), |
|
| 2871 | - 'payment_amount' => $this->checkout->amount_owing, |
|
| 2872 | - 'return_url' => $return_url, |
|
| 2873 | - 'cancel_url' => add_query_arg(array('ee_cancel_payment' => true), $return_url), |
|
| 2874 | - 'notify_url' => EE_Config::instance()->core->txn_page_url( |
|
| 2875 | - array( |
|
| 2876 | - 'e_reg_url_link' => $this->checkout->transaction->primary_registration()->reg_url_link(), |
|
| 2877 | - 'ee_payment_method' => $this->checkout->payment_method->slug(), |
|
| 2878 | - ) |
|
| 2879 | - ), |
|
| 2880 | - ); |
|
| 2881 | - } |
|
| 2882 | - echo wp_json_encode($txn_details); |
|
| 2883 | - exit(); |
|
| 2884 | - } |
|
| 2885 | - |
|
| 2886 | - |
|
| 2887 | - /** |
|
| 2888 | - * __sleep |
|
| 2889 | - * to conserve db space, let's remove the reg_form and the EE_Checkout object from EE_SPCO_Reg_Step objects upon |
|
| 2890 | - * serialization EE_Checkout will handle the reimplementation of itself upon waking, but we won't bother with the |
|
| 2891 | - * reg form, because if needed, it will be regenerated anyways |
|
| 2892 | - * |
|
| 2893 | - * @return array |
|
| 2894 | - */ |
|
| 2895 | - public function __sleep() |
|
| 2896 | - { |
|
| 2897 | - // remove the reg form and the checkout |
|
| 2898 | - return array_diff(array_keys(get_object_vars($this)), array('reg_form', 'checkout', 'line_item_display')); |
|
| 2899 | - } |
|
| 15 | + /** |
|
| 16 | + * @access protected |
|
| 17 | + * @var EE_Line_Item_Display $Line_Item_Display |
|
| 18 | + */ |
|
| 19 | + protected $line_item_display; |
|
| 20 | + |
|
| 21 | + /** |
|
| 22 | + * @access protected |
|
| 23 | + * @var boolean $handle_IPN_in_this_request |
|
| 24 | + */ |
|
| 25 | + protected $handle_IPN_in_this_request = false; |
|
| 26 | + |
|
| 27 | + |
|
| 28 | + /** |
|
| 29 | + * set_hooks - for hooking into EE Core, other modules, etc |
|
| 30 | + * |
|
| 31 | + * @access public |
|
| 32 | + * @return void |
|
| 33 | + */ |
|
| 34 | + public static function set_hooks() |
|
| 35 | + { |
|
| 36 | + add_filter( |
|
| 37 | + 'FHEE__SPCO__EE_Line_Item_Filter_Collection', |
|
| 38 | + array('EE_SPCO_Reg_Step_Payment_Options', 'add_spco_line_item_filters') |
|
| 39 | + ); |
|
| 40 | + add_action( |
|
| 41 | + 'wp_ajax_switch_spco_billing_form', |
|
| 42 | + array('EE_SPCO_Reg_Step_Payment_Options', 'switch_spco_billing_form') |
|
| 43 | + ); |
|
| 44 | + add_action( |
|
| 45 | + 'wp_ajax_nopriv_switch_spco_billing_form', |
|
| 46 | + array('EE_SPCO_Reg_Step_Payment_Options', 'switch_spco_billing_form') |
|
| 47 | + ); |
|
| 48 | + add_action('wp_ajax_save_payer_details', array('EE_SPCO_Reg_Step_Payment_Options', 'save_payer_details')); |
|
| 49 | + add_action( |
|
| 50 | + 'wp_ajax_nopriv_save_payer_details', |
|
| 51 | + array('EE_SPCO_Reg_Step_Payment_Options', 'save_payer_details') |
|
| 52 | + ); |
|
| 53 | + add_action( |
|
| 54 | + 'wp_ajax_get_transaction_details_for_gateways', |
|
| 55 | + array('EE_SPCO_Reg_Step_Payment_Options', 'get_transaction_details') |
|
| 56 | + ); |
|
| 57 | + add_action( |
|
| 58 | + 'wp_ajax_nopriv_get_transaction_details_for_gateways', |
|
| 59 | + array('EE_SPCO_Reg_Step_Payment_Options', 'get_transaction_details') |
|
| 60 | + ); |
|
| 61 | + add_filter( |
|
| 62 | + 'FHEE__EED_Recaptcha___bypass_recaptcha__bypass_request_params_array', |
|
| 63 | + array('EE_SPCO_Reg_Step_Payment_Options', 'bypass_recaptcha_for_load_payment_method'), |
|
| 64 | + 10, |
|
| 65 | + 1 |
|
| 66 | + ); |
|
| 67 | + } |
|
| 68 | + |
|
| 69 | + |
|
| 70 | + /** |
|
| 71 | + * ajax switch_spco_billing_form |
|
| 72 | + * |
|
| 73 | + * @throws \EE_Error |
|
| 74 | + */ |
|
| 75 | + public static function switch_spco_billing_form() |
|
| 76 | + { |
|
| 77 | + EED_Single_Page_Checkout::process_ajax_request('switch_payment_method'); |
|
| 78 | + } |
|
| 79 | + |
|
| 80 | + |
|
| 81 | + /** |
|
| 82 | + * ajax save_payer_details |
|
| 83 | + * |
|
| 84 | + * @throws \EE_Error |
|
| 85 | + */ |
|
| 86 | + public static function save_payer_details() |
|
| 87 | + { |
|
| 88 | + EED_Single_Page_Checkout::process_ajax_request('save_payer_details_via_ajax'); |
|
| 89 | + } |
|
| 90 | + |
|
| 91 | + |
|
| 92 | + /** |
|
| 93 | + * ajax get_transaction_details |
|
| 94 | + * |
|
| 95 | + * @throws \EE_Error |
|
| 96 | + */ |
|
| 97 | + public static function get_transaction_details() |
|
| 98 | + { |
|
| 99 | + EED_Single_Page_Checkout::process_ajax_request('get_transaction_details_for_gateways'); |
|
| 100 | + } |
|
| 101 | + |
|
| 102 | + |
|
| 103 | + /** |
|
| 104 | + * bypass_recaptcha_for_load_payment_method |
|
| 105 | + * |
|
| 106 | + * @access public |
|
| 107 | + * @return array |
|
| 108 | + * @throws InvalidArgumentException |
|
| 109 | + * @throws \EventEspresso\core\exceptions\InvalidDataTypeException |
|
| 110 | + * @throws \EventEspresso\core\exceptions\InvalidInterfaceException |
|
| 111 | + */ |
|
| 112 | + public static function bypass_recaptcha_for_load_payment_method() |
|
| 113 | + { |
|
| 114 | + return array( |
|
| 115 | + 'EESID' => EE_Registry::instance()->SSN->id(), |
|
| 116 | + 'step' => 'payment_options', |
|
| 117 | + 'action' => 'spco_billing_form', |
|
| 118 | + ); |
|
| 119 | + } |
|
| 120 | + |
|
| 121 | + |
|
| 122 | + /** |
|
| 123 | + * class constructor |
|
| 124 | + * |
|
| 125 | + * @access public |
|
| 126 | + * @param EE_Checkout $checkout |
|
| 127 | + */ |
|
| 128 | + public function __construct(EE_Checkout $checkout) |
|
| 129 | + { |
|
| 130 | + $this->_slug = 'payment_options'; |
|
| 131 | + $this->_name = esc_html__('Payment Options', 'event_espresso'); |
|
| 132 | + $this->_template = SPCO_REG_STEPS_PATH . $this->_slug . DS . 'payment_options_main.template.php'; |
|
| 133 | + $this->checkout = $checkout; |
|
| 134 | + $this->_reset_success_message(); |
|
| 135 | + $this->set_instructions( |
|
| 136 | + esc_html__( |
|
| 137 | + 'Please select a method of payment and provide any necessary billing information before proceeding.', |
|
| 138 | + 'event_espresso' |
|
| 139 | + ) |
|
| 140 | + ); |
|
| 141 | + } |
|
| 142 | + |
|
| 143 | + |
|
| 144 | + /** |
|
| 145 | + * @return null |
|
| 146 | + */ |
|
| 147 | + public function line_item_display() |
|
| 148 | + { |
|
| 149 | + return $this->line_item_display; |
|
| 150 | + } |
|
| 151 | + |
|
| 152 | + |
|
| 153 | + /** |
|
| 154 | + * @param null $line_item_display |
|
| 155 | + */ |
|
| 156 | + public function set_line_item_display($line_item_display) |
|
| 157 | + { |
|
| 158 | + $this->line_item_display = $line_item_display; |
|
| 159 | + } |
|
| 160 | + |
|
| 161 | + |
|
| 162 | + /** |
|
| 163 | + * @return boolean |
|
| 164 | + */ |
|
| 165 | + public function handle_IPN_in_this_request() |
|
| 166 | + { |
|
| 167 | + return $this->handle_IPN_in_this_request; |
|
| 168 | + } |
|
| 169 | + |
|
| 170 | + |
|
| 171 | + /** |
|
| 172 | + * @param boolean $handle_IPN_in_this_request |
|
| 173 | + */ |
|
| 174 | + public function set_handle_IPN_in_this_request($handle_IPN_in_this_request) |
|
| 175 | + { |
|
| 176 | + $this->handle_IPN_in_this_request = filter_var($handle_IPN_in_this_request, FILTER_VALIDATE_BOOLEAN); |
|
| 177 | + } |
|
| 178 | + |
|
| 179 | + |
|
| 180 | + /** |
|
| 181 | + * translate_js_strings |
|
| 182 | + * |
|
| 183 | + * @return void |
|
| 184 | + */ |
|
| 185 | + public function translate_js_strings() |
|
| 186 | + { |
|
| 187 | + EE_Registry::$i18n_js_strings['no_payment_method'] = esc_html__( |
|
| 188 | + 'Please select a method of payment in order to continue.', |
|
| 189 | + 'event_espresso' |
|
| 190 | + ); |
|
| 191 | + EE_Registry::$i18n_js_strings['invalid_payment_method'] = esc_html__( |
|
| 192 | + 'A valid method of payment could not be determined. Please refresh the page and try again.', |
|
| 193 | + 'event_espresso' |
|
| 194 | + ); |
|
| 195 | + EE_Registry::$i18n_js_strings['forwarding_to_offsite'] = esc_html__( |
|
| 196 | + 'Forwarding to Secure Payment Provider.', |
|
| 197 | + 'event_espresso' |
|
| 198 | + ); |
|
| 199 | + } |
|
| 200 | + |
|
| 201 | + |
|
| 202 | + /** |
|
| 203 | + * enqueue_styles_and_scripts |
|
| 204 | + * |
|
| 205 | + * @return void |
|
| 206 | + * @throws EE_Error |
|
| 207 | + * @throws InvalidArgumentException |
|
| 208 | + * @throws \EventEspresso\core\exceptions\InvalidDataTypeException |
|
| 209 | + * @throws \EventEspresso\core\exceptions\InvalidInterfaceException |
|
| 210 | + */ |
|
| 211 | + public function enqueue_styles_and_scripts() |
|
| 212 | + { |
|
| 213 | + $transaction = $this->checkout->transaction; |
|
| 214 | + // if the transaction isn't set or nothing is owed on it, don't enqueue any JS |
|
| 215 | + if (! $transaction instanceof EE_Transaction || EEH_Money::compare_floats($transaction->remaining(), 0)) { |
|
| 216 | + return; |
|
| 217 | + } |
|
| 218 | + foreach (EEM_Payment_Method::instance()->get_all_for_transaction( |
|
| 219 | + $transaction, |
|
| 220 | + EEM_Payment_Method::scope_cart |
|
| 221 | + ) as $payment_method) { |
|
| 222 | + $type_obj = $payment_method->type_obj(); |
|
| 223 | + if ($type_obj instanceof EE_PMT_Base) { |
|
| 224 | + $billing_form = $type_obj->generate_new_billing_form($transaction); |
|
| 225 | + if ($billing_form instanceof EE_Form_Section_Proper) { |
|
| 226 | + $billing_form->enqueue_js(); |
|
| 227 | + } |
|
| 228 | + } |
|
| 229 | + } |
|
| 230 | + } |
|
| 231 | + |
|
| 232 | + |
|
| 233 | + /** |
|
| 234 | + * initialize_reg_step |
|
| 235 | + * |
|
| 236 | + * @return bool |
|
| 237 | + * @throws EE_Error |
|
| 238 | + * @throws InvalidArgumentException |
|
| 239 | + * @throws ReflectionException |
|
| 240 | + * @throws \EventEspresso\core\exceptions\InvalidDataTypeException |
|
| 241 | + * @throws \EventEspresso\core\exceptions\InvalidInterfaceException |
|
| 242 | + */ |
|
| 243 | + public function initialize_reg_step() |
|
| 244 | + { |
|
| 245 | + // TODO: if /when we implement donations, then this will need overriding |
|
| 246 | + if (// don't need payment options for: |
|
| 247 | + // registrations made via the admin |
|
| 248 | + // completed transactions |
|
| 249 | + // overpaid transactions |
|
| 250 | + // $ 0.00 transactions(no payment required) |
|
| 251 | + ! $this->checkout->payment_required() |
|
| 252 | + // but do NOT remove if current action being called belongs to this reg step |
|
| 253 | + && ! is_callable(array($this, $this->checkout->action)) |
|
| 254 | + && ! $this->completed() |
|
| 255 | + ) { |
|
| 256 | + // and if so, then we no longer need the Payment Options step |
|
| 257 | + if ($this->is_current_step()) { |
|
| 258 | + $this->checkout->generate_reg_form = false; |
|
| 259 | + } |
|
| 260 | + $this->checkout->remove_reg_step($this->_slug); |
|
| 261 | + // DEBUG LOG |
|
| 262 | + // $this->checkout->log( __CLASS__, __FUNCTION__, __LINE__ ); |
|
| 263 | + return false; |
|
| 264 | + } |
|
| 265 | + // load EEM_Payment_Method |
|
| 266 | + EE_Registry::instance()->load_model('Payment_Method'); |
|
| 267 | + // get all active payment methods |
|
| 268 | + $this->checkout->available_payment_methods = EEM_Payment_Method::instance()->get_all_for_transaction( |
|
| 269 | + $this->checkout->transaction, |
|
| 270 | + EEM_Payment_Method::scope_cart |
|
| 271 | + ); |
|
| 272 | + return true; |
|
| 273 | + } |
|
| 274 | + |
|
| 275 | + |
|
| 276 | + /** |
|
| 277 | + * @return EE_Form_Section_Proper |
|
| 278 | + * @throws EE_Error |
|
| 279 | + * @throws InvalidArgumentException |
|
| 280 | + * @throws ReflectionException |
|
| 281 | + * @throws \EventEspresso\core\exceptions\EntityNotFoundException |
|
| 282 | + * @throws \EventEspresso\core\exceptions\InvalidDataTypeException |
|
| 283 | + * @throws \EventEspresso\core\exceptions\InvalidInterfaceException |
|
| 284 | + * @throws \EventEspresso\core\exceptions\InvalidStatusException |
|
| 285 | + */ |
|
| 286 | + public function generate_reg_form() |
|
| 287 | + { |
|
| 288 | + // reset in case someone changes their mind |
|
| 289 | + $this->_reset_selected_method_of_payment(); |
|
| 290 | + // set some defaults |
|
| 291 | + $this->checkout->selected_method_of_payment = 'payments_closed'; |
|
| 292 | + $registrations_requiring_payment = array(); |
|
| 293 | + $registrations_for_free_events = array(); |
|
| 294 | + $registrations_requiring_pre_approval = array(); |
|
| 295 | + $sold_out_events = array(); |
|
| 296 | + $insufficient_spaces_available = array(); |
|
| 297 | + $no_payment_required = true; |
|
| 298 | + // loop thru registrations to gather info |
|
| 299 | + $registrations = $this->checkout->transaction->registrations($this->checkout->reg_cache_where_params); |
|
| 300 | + $ejected_registrations = EE_SPCO_Reg_Step_Payment_Options::find_registrations_that_lost_their_space( |
|
| 301 | + $registrations, |
|
| 302 | + $this->checkout->revisit |
|
| 303 | + ); |
|
| 304 | + foreach ($registrations as $REG_ID => $registration) { |
|
| 305 | + /** @var $registration EE_Registration */ |
|
| 306 | + // has this registration lost it's space ? |
|
| 307 | + if (isset($ejected_registrations[ $REG_ID ])) { |
|
| 308 | + if ($registration->event()->is_sold_out() || $registration->event()->is_sold_out(true)) { |
|
| 309 | + $sold_out_events[ $registration->event()->ID() ] = $registration->event(); |
|
| 310 | + } else { |
|
| 311 | + $insufficient_spaces_available[ $registration->event()->ID() ] = $registration->event(); |
|
| 312 | + } |
|
| 313 | + continue; |
|
| 314 | + } |
|
| 315 | + // event requires admin approval |
|
| 316 | + if ($registration->status_ID() === EEM_Registration::status_id_not_approved) { |
|
| 317 | + // add event to list of events with pre-approval reg status |
|
| 318 | + $registrations_requiring_pre_approval[ $REG_ID ] = $registration; |
|
| 319 | + do_action( |
|
| 320 | + 'AHEE__EE_SPCO_Reg_Step_Payment_Options__generate_reg_form__event_requires_pre_approval', |
|
| 321 | + $registration->event(), |
|
| 322 | + $this |
|
| 323 | + ); |
|
| 324 | + continue; |
|
| 325 | + } |
|
| 326 | + if ($this->checkout->revisit |
|
| 327 | + && $registration->status_ID() !== EEM_Registration::status_id_approved |
|
| 328 | + && ( |
|
| 329 | + $registration->event()->is_sold_out() |
|
| 330 | + || $registration->event()->is_sold_out(true) |
|
| 331 | + ) |
|
| 332 | + ) { |
|
| 333 | + // add event to list of events that are sold out |
|
| 334 | + $sold_out_events[ $registration->event()->ID() ] = $registration->event(); |
|
| 335 | + do_action( |
|
| 336 | + 'AHEE__EE_SPCO_Reg_Step_Payment_Options__generate_reg_form__sold_out_event', |
|
| 337 | + $registration->event(), |
|
| 338 | + $this |
|
| 339 | + ); |
|
| 340 | + continue; |
|
| 341 | + } |
|
| 342 | + // are they allowed to pay now and is there monies owing? |
|
| 343 | + if ($registration->owes_monies_and_can_pay()) { |
|
| 344 | + $registrations_requiring_payment[ $REG_ID ] = $registration; |
|
| 345 | + do_action( |
|
| 346 | + 'AHEE__EE_SPCO_Reg_Step_Payment_Options__generate_reg_form__event_requires_payment', |
|
| 347 | + $registration->event(), |
|
| 348 | + $this |
|
| 349 | + ); |
|
| 350 | + } elseif (! $this->checkout->revisit |
|
| 351 | + && $registration->status_ID() !== EEM_Registration::status_id_not_approved |
|
| 352 | + && $registration->ticket()->is_free() |
|
| 353 | + ) { |
|
| 354 | + $registrations_for_free_events[ $registration->event()->ID() ] = $registration; |
|
| 355 | + } |
|
| 356 | + } |
|
| 357 | + $subsections = array(); |
|
| 358 | + // now decide which template to load |
|
| 359 | + if (! empty($sold_out_events)) { |
|
| 360 | + $subsections['sold_out_events'] = $this->_sold_out_events($sold_out_events); |
|
| 361 | + } |
|
| 362 | + if (! empty($insufficient_spaces_available)) { |
|
| 363 | + $subsections['insufficient_space'] = $this->_insufficient_spaces_available( |
|
| 364 | + $insufficient_spaces_available |
|
| 365 | + ); |
|
| 366 | + } |
|
| 367 | + if (! empty($registrations_requiring_pre_approval)) { |
|
| 368 | + $subsections['registrations_requiring_pre_approval'] = $this->_registrations_requiring_pre_approval( |
|
| 369 | + $registrations_requiring_pre_approval |
|
| 370 | + ); |
|
| 371 | + } |
|
| 372 | + if (! empty($registrations_for_free_events)) { |
|
| 373 | + $subsections['no_payment_required'] = $this->_no_payment_required($registrations_for_free_events); |
|
| 374 | + } |
|
| 375 | + if (! empty($registrations_requiring_payment)) { |
|
| 376 | + if ($this->checkout->amount_owing > 0) { |
|
| 377 | + // autoload Line_Item_Display classes |
|
| 378 | + EEH_Autoloader::register_line_item_filter_autoloaders(); |
|
| 379 | + $line_item_filter_processor = new EE_Line_Item_Filter_Processor( |
|
| 380 | + apply_filters( |
|
| 381 | + 'FHEE__SPCO__EE_Line_Item_Filter_Collection', |
|
| 382 | + new EE_Line_Item_Filter_Collection() |
|
| 383 | + ), |
|
| 384 | + $this->checkout->cart->get_grand_total() |
|
| 385 | + ); |
|
| 386 | + /** @var EE_Line_Item $filtered_line_item_tree */ |
|
| 387 | + $filtered_line_item_tree = $line_item_filter_processor->process(); |
|
| 388 | + EEH_Autoloader::register_line_item_display_autoloaders(); |
|
| 389 | + $this->set_line_item_display(new EE_Line_Item_Display('spco')); |
|
| 390 | + $subsections['payment_options'] = $this->_display_payment_options( |
|
| 391 | + $this->line_item_display->display_line_item( |
|
| 392 | + $filtered_line_item_tree, |
|
| 393 | + array('registrations' => $registrations) |
|
| 394 | + ) |
|
| 395 | + ); |
|
| 396 | + $this->checkout->amount_owing = $filtered_line_item_tree->total(); |
|
| 397 | + $this->_apply_registration_payments_to_amount_owing($registrations); |
|
| 398 | + } |
|
| 399 | + $no_payment_required = false; |
|
| 400 | + } else { |
|
| 401 | + $this->_hide_reg_step_submit_button_if_revisit(); |
|
| 402 | + } |
|
| 403 | + $this->_save_selected_method_of_payment(); |
|
| 404 | + |
|
| 405 | + $subsections['default_hidden_inputs'] = $this->reg_step_hidden_inputs(); |
|
| 406 | + $subsections['extra_hidden_inputs'] = $this->_extra_hidden_inputs($no_payment_required); |
|
| 407 | + |
|
| 408 | + return new EE_Form_Section_Proper( |
|
| 409 | + array( |
|
| 410 | + 'name' => $this->reg_form_name(), |
|
| 411 | + 'html_id' => $this->reg_form_name(), |
|
| 412 | + 'subsections' => $subsections, |
|
| 413 | + 'layout_strategy' => new EE_No_Layout(), |
|
| 414 | + ) |
|
| 415 | + ); |
|
| 416 | + } |
|
| 417 | + |
|
| 418 | + |
|
| 419 | + /** |
|
| 420 | + * add line item filters required for this reg step |
|
| 421 | + * these filters are applied via this line in EE_SPCO_Reg_Step_Payment_Options::set_hooks(): |
|
| 422 | + * add_filter( 'FHEE__SPCO__EE_Line_Item_Filter_Collection', array( 'EE_SPCO_Reg_Step_Payment_Options', |
|
| 423 | + * 'add_spco_line_item_filters' ) ); so any code that wants to use the same set of filters during the |
|
| 424 | + * payment options reg step, can apply these filters via the following: apply_filters( |
|
| 425 | + * 'FHEE__SPCO__EE_Line_Item_Filter_Collection', new EE_Line_Item_Filter_Collection() ) or to an existing |
|
| 426 | + * filter collection by passing that instead of instantiating a new collection |
|
| 427 | + * |
|
| 428 | + * @param \EE_Line_Item_Filter_Collection $line_item_filter_collection |
|
| 429 | + * @return EE_Line_Item_Filter_Collection |
|
| 430 | + * @throws EE_Error |
|
| 431 | + * @throws InvalidArgumentException |
|
| 432 | + * @throws ReflectionException |
|
| 433 | + * @throws \EventEspresso\core\exceptions\EntityNotFoundException |
|
| 434 | + * @throws \EventEspresso\core\exceptions\InvalidDataTypeException |
|
| 435 | + * @throws \EventEspresso\core\exceptions\InvalidInterfaceException |
|
| 436 | + * @throws \EventEspresso\core\exceptions\InvalidStatusException |
|
| 437 | + */ |
|
| 438 | + public static function add_spco_line_item_filters(EE_Line_Item_Filter_Collection $line_item_filter_collection) |
|
| 439 | + { |
|
| 440 | + if (! EE_Registry::instance()->SSN instanceof EE_Session) { |
|
| 441 | + return $line_item_filter_collection; |
|
| 442 | + } |
|
| 443 | + if (! EE_Registry::instance()->SSN->checkout() instanceof EE_Checkout) { |
|
| 444 | + return $line_item_filter_collection; |
|
| 445 | + } |
|
| 446 | + if (! EE_Registry::instance()->SSN->checkout()->transaction instanceof EE_Transaction) { |
|
| 447 | + return $line_item_filter_collection; |
|
| 448 | + } |
|
| 449 | + $line_item_filter_collection->add( |
|
| 450 | + new EE_Billable_Line_Item_Filter( |
|
| 451 | + EE_SPCO_Reg_Step_Payment_Options::remove_ejected_registrations( |
|
| 452 | + EE_Registry::instance()->SSN->checkout()->transaction->registrations( |
|
| 453 | + EE_Registry::instance()->SSN->checkout()->reg_cache_where_params |
|
| 454 | + ) |
|
| 455 | + ) |
|
| 456 | + ) |
|
| 457 | + ); |
|
| 458 | + $line_item_filter_collection->add(new EE_Non_Zero_Line_Item_Filter()); |
|
| 459 | + return $line_item_filter_collection; |
|
| 460 | + } |
|
| 461 | + |
|
| 462 | + |
|
| 463 | + /** |
|
| 464 | + * remove_ejected_registrations |
|
| 465 | + * if a registrant has lost their potential space at an event due to lack of payment, |
|
| 466 | + * then this method removes them from the list of registrations being paid for during this request |
|
| 467 | + * |
|
| 468 | + * @param \EE_Registration[] $registrations |
|
| 469 | + * @return EE_Registration[] |
|
| 470 | + * @throws EE_Error |
|
| 471 | + * @throws InvalidArgumentException |
|
| 472 | + * @throws ReflectionException |
|
| 473 | + * @throws \EventEspresso\core\exceptions\EntityNotFoundException |
|
| 474 | + * @throws \EventEspresso\core\exceptions\InvalidDataTypeException |
|
| 475 | + * @throws \EventEspresso\core\exceptions\InvalidInterfaceException |
|
| 476 | + * @throws \EventEspresso\core\exceptions\InvalidStatusException |
|
| 477 | + */ |
|
| 478 | + public static function remove_ejected_registrations(array $registrations) |
|
| 479 | + { |
|
| 480 | + $ejected_registrations = EE_SPCO_Reg_Step_Payment_Options::find_registrations_that_lost_their_space( |
|
| 481 | + $registrations, |
|
| 482 | + EE_Registry::instance()->SSN->checkout()->revisit |
|
| 483 | + ); |
|
| 484 | + foreach ($registrations as $REG_ID => $registration) { |
|
| 485 | + // has this registration lost it's space ? |
|
| 486 | + if (isset($ejected_registrations[ $REG_ID ])) { |
|
| 487 | + unset($registrations[ $REG_ID ]); |
|
| 488 | + continue; |
|
| 489 | + } |
|
| 490 | + } |
|
| 491 | + return $registrations; |
|
| 492 | + } |
|
| 493 | + |
|
| 494 | + |
|
| 495 | + /** |
|
| 496 | + * find_registrations_that_lost_their_space |
|
| 497 | + * If a registrant chooses an offline payment method like Invoice, |
|
| 498 | + * then no space is reserved for them at the event until they fully pay fo that site |
|
| 499 | + * (unless the event's default reg status is set to APPROVED) |
|
| 500 | + * if a registrant then later returns to pay, but the number of spaces available has been reduced due to sales, |
|
| 501 | + * then this method will determine which registrations have lost the ability to complete the reg process. |
|
| 502 | + * |
|
| 503 | + * @param \EE_Registration[] $registrations |
|
| 504 | + * @param bool $revisit |
|
| 505 | + * @return array |
|
| 506 | + * @throws EE_Error |
|
| 507 | + * @throws InvalidArgumentException |
|
| 508 | + * @throws ReflectionException |
|
| 509 | + * @throws \EventEspresso\core\exceptions\EntityNotFoundException |
|
| 510 | + * @throws \EventEspresso\core\exceptions\InvalidDataTypeException |
|
| 511 | + * @throws \EventEspresso\core\exceptions\InvalidInterfaceException |
|
| 512 | + * @throws \EventEspresso\core\exceptions\InvalidStatusException |
|
| 513 | + */ |
|
| 514 | + public static function find_registrations_that_lost_their_space(array $registrations, $revisit = false) |
|
| 515 | + { |
|
| 516 | + // registrations per event |
|
| 517 | + $event_reg_count = array(); |
|
| 518 | + // spaces left per event |
|
| 519 | + $event_spaces_remaining = array(); |
|
| 520 | + // tickets left sorted by ID |
|
| 521 | + $tickets_remaining = array(); |
|
| 522 | + // registrations that have lost their space |
|
| 523 | + $ejected_registrations = array(); |
|
| 524 | + foreach ($registrations as $REG_ID => $registration) { |
|
| 525 | + if ($registration->status_ID() === EEM_Registration::status_id_approved |
|
| 526 | + || apply_filters( |
|
| 527 | + 'FHEE__EE_SPCO_Reg_Step_Payment_Options__find_registrations_that_lost_their_space__allow_reg_payment', |
|
| 528 | + false, |
|
| 529 | + $registration, |
|
| 530 | + $revisit |
|
| 531 | + ) |
|
| 532 | + ) { |
|
| 533 | + continue; |
|
| 534 | + } |
|
| 535 | + $EVT_ID = $registration->event_ID(); |
|
| 536 | + $ticket = $registration->ticket(); |
|
| 537 | + if (! isset($tickets_remaining[ $ticket->ID() ])) { |
|
| 538 | + $tickets_remaining[ $ticket->ID() ] = $ticket->remaining(); |
|
| 539 | + } |
|
| 540 | + if ($tickets_remaining[ $ticket->ID() ] > 0) { |
|
| 541 | + if (! isset($event_reg_count[ $EVT_ID ])) { |
|
| 542 | + $event_reg_count[ $EVT_ID ] = 0; |
|
| 543 | + } |
|
| 544 | + $event_reg_count[ $EVT_ID ]++; |
|
| 545 | + if (! isset($event_spaces_remaining[ $EVT_ID ])) { |
|
| 546 | + $event_spaces_remaining[ $EVT_ID ] = $registration->event()->spaces_remaining_for_sale(); |
|
| 547 | + } |
|
| 548 | + } |
|
| 549 | + if ($revisit |
|
| 550 | + && ($tickets_remaining[ $ticket->ID() ] === 0 |
|
| 551 | + || $event_reg_count[ $EVT_ID ] > $event_spaces_remaining[ $EVT_ID ] |
|
| 552 | + ) |
|
| 553 | + ) { |
|
| 554 | + $ejected_registrations[ $REG_ID ] = $registration->event(); |
|
| 555 | + if ($registration->status_ID() !== EEM_Registration::status_id_wait_list) { |
|
| 556 | + /** @type EE_Registration_Processor $registration_processor */ |
|
| 557 | + $registration_processor = EE_Registry::instance()->load_class('Registration_Processor'); |
|
| 558 | + // at this point, we should have enough details about the registrant to consider the registration |
|
| 559 | + // NOT incomplete |
|
| 560 | + $registration_processor->manually_update_registration_status( |
|
| 561 | + $registration, |
|
| 562 | + EEM_Registration::status_id_wait_list |
|
| 563 | + ); |
|
| 564 | + } |
|
| 565 | + } |
|
| 566 | + } |
|
| 567 | + return $ejected_registrations; |
|
| 568 | + } |
|
| 569 | + |
|
| 570 | + |
|
| 571 | + /** |
|
| 572 | + * _hide_reg_step_submit_button |
|
| 573 | + * removes the html for the reg step submit button |
|
| 574 | + * by replacing it with an empty string via filter callback |
|
| 575 | + * |
|
| 576 | + * @return void |
|
| 577 | + */ |
|
| 578 | + protected function _adjust_registration_status_if_event_old_sold() |
|
| 579 | + { |
|
| 580 | + } |
|
| 581 | + |
|
| 582 | + |
|
| 583 | + /** |
|
| 584 | + * _hide_reg_step_submit_button |
|
| 585 | + * removes the html for the reg step submit button |
|
| 586 | + * by replacing it with an empty string via filter callback |
|
| 587 | + * |
|
| 588 | + * @return void |
|
| 589 | + */ |
|
| 590 | + protected function _hide_reg_step_submit_button_if_revisit() |
|
| 591 | + { |
|
| 592 | + if ($this->checkout->revisit) { |
|
| 593 | + add_filter('FHEE__EE_SPCO_Reg_Step__reg_step_submit_button__sbmt_btn_html', '__return_empty_string'); |
|
| 594 | + } |
|
| 595 | + } |
|
| 596 | + |
|
| 597 | + |
|
| 598 | + /** |
|
| 599 | + * sold_out_events |
|
| 600 | + * displays notices regarding events that have sold out since hte registrant first signed up |
|
| 601 | + * |
|
| 602 | + * @param \EE_Event[] $sold_out_events_array |
|
| 603 | + * @return \EE_Form_Section_Proper |
|
| 604 | + * @throws \EE_Error |
|
| 605 | + */ |
|
| 606 | + private function _sold_out_events($sold_out_events_array = array()) |
|
| 607 | + { |
|
| 608 | + // set some defaults |
|
| 609 | + $this->checkout->selected_method_of_payment = 'events_sold_out'; |
|
| 610 | + $sold_out_events = ''; |
|
| 611 | + foreach ($sold_out_events_array as $sold_out_event) { |
|
| 612 | + $sold_out_events .= EEH_HTML::li( |
|
| 613 | + EEH_HTML::span( |
|
| 614 | + ' ' . $sold_out_event->name(), |
|
| 615 | + '', |
|
| 616 | + 'dashicons dashicons-marker ee-icon-size-16 pink-text' |
|
| 617 | + ) |
|
| 618 | + ); |
|
| 619 | + } |
|
| 620 | + return new EE_Form_Section_Proper( |
|
| 621 | + array( |
|
| 622 | + 'layout_strategy' => new EE_Template_Layout( |
|
| 623 | + array( |
|
| 624 | + 'layout_template_file' => SPCO_REG_STEPS_PATH |
|
| 625 | + . $this->_slug |
|
| 626 | + . DS |
|
| 627 | + . 'sold_out_events.template.php', |
|
| 628 | + 'template_args' => apply_filters( |
|
| 629 | + 'FHEE__EE_SPCO_Reg_Step_Payment_Options___sold_out_events__template_args', |
|
| 630 | + array( |
|
| 631 | + 'sold_out_events' => $sold_out_events, |
|
| 632 | + 'sold_out_events_msg' => apply_filters( |
|
| 633 | + 'FHEE__EE_SPCO_Reg_Step_Payment_Options___sold_out_events__sold_out_events_msg', |
|
| 634 | + sprintf( |
|
| 635 | + esc_html__( |
|
| 636 | + 'It appears that the event you were about to make a payment for has sold out since you first registered. If you have already made a partial payment towards this event, please contact the event administrator for a refund.%3$s%3$s%1$sPlease note that availability can change at any time due to cancellations, so please check back again later if registration for this event(s) is important to you.%2$s', |
|
| 637 | + 'event_espresso' |
|
| 638 | + ), |
|
| 639 | + '<strong>', |
|
| 640 | + '</strong>', |
|
| 641 | + '<br />' |
|
| 642 | + ) |
|
| 643 | + ), |
|
| 644 | + ) |
|
| 645 | + ), |
|
| 646 | + ) |
|
| 647 | + ), |
|
| 648 | + ) |
|
| 649 | + ); |
|
| 650 | + } |
|
| 651 | + |
|
| 652 | + |
|
| 653 | + /** |
|
| 654 | + * _insufficient_spaces_available |
|
| 655 | + * displays notices regarding events that do not have enough remaining spaces |
|
| 656 | + * to satisfy the current number of registrations looking to pay |
|
| 657 | + * |
|
| 658 | + * @param \EE_Event[] $insufficient_spaces_events_array |
|
| 659 | + * @return \EE_Form_Section_Proper |
|
| 660 | + * @throws \EE_Error |
|
| 661 | + */ |
|
| 662 | + private function _insufficient_spaces_available($insufficient_spaces_events_array = array()) |
|
| 663 | + { |
|
| 664 | + // set some defaults |
|
| 665 | + $this->checkout->selected_method_of_payment = 'invoice'; |
|
| 666 | + $insufficient_space_events = ''; |
|
| 667 | + foreach ($insufficient_spaces_events_array as $event) { |
|
| 668 | + if ($event instanceof EE_Event) { |
|
| 669 | + $insufficient_space_events .= EEH_HTML::li( |
|
| 670 | + EEH_HTML::span(' ' . $event->name(), '', 'dashicons dashicons-marker ee-icon-size-16 pink-text') |
|
| 671 | + ); |
|
| 672 | + } |
|
| 673 | + } |
|
| 674 | + return new EE_Form_Section_Proper( |
|
| 675 | + array( |
|
| 676 | + 'subsections' => array( |
|
| 677 | + 'default_hidden_inputs' => $this->reg_step_hidden_inputs(), |
|
| 678 | + 'extra_hidden_inputs' => $this->_extra_hidden_inputs(), |
|
| 679 | + ), |
|
| 680 | + 'layout_strategy' => new EE_Template_Layout( |
|
| 681 | + array( |
|
| 682 | + 'layout_template_file' => SPCO_REG_STEPS_PATH |
|
| 683 | + . $this->_slug |
|
| 684 | + . DS |
|
| 685 | + . 'sold_out_events.template.php', |
|
| 686 | + 'template_args' => apply_filters( |
|
| 687 | + 'FHEE__EE_SPCO_Reg_Step_Payment_Options___insufficient_spaces_available__template_args', |
|
| 688 | + array( |
|
| 689 | + 'sold_out_events' => $insufficient_space_events, |
|
| 690 | + 'sold_out_events_msg' => apply_filters( |
|
| 691 | + 'FHEE__EE_SPCO_Reg_Step_Payment_Options___insufficient_spaces_available__insufficient_space_msg', |
|
| 692 | + esc_html__( |
|
| 693 | + 'It appears that the event you were about to make a payment for has sold additional tickets since you first registered, and there are no longer enough spaces left to accommodate your selections. You may continue to pay and secure the available space(s) remaining, or simply cancel if you no longer wish to purchase. If you have already made a partial payment towards this event, please contact the event administrator for a refund.', |
|
| 694 | + 'event_espresso' |
|
| 695 | + ) |
|
| 696 | + ), |
|
| 697 | + ) |
|
| 698 | + ), |
|
| 699 | + ) |
|
| 700 | + ), |
|
| 701 | + ) |
|
| 702 | + ); |
|
| 703 | + } |
|
| 704 | + |
|
| 705 | + |
|
| 706 | + /** |
|
| 707 | + * registrations_requiring_pre_approval |
|
| 708 | + * |
|
| 709 | + * @param array $registrations_requiring_pre_approval |
|
| 710 | + * @return EE_Form_Section_Proper |
|
| 711 | + * @throws EE_Error |
|
| 712 | + * @throws \EventEspresso\core\exceptions\EntityNotFoundException |
|
| 713 | + */ |
|
| 714 | + private function _registrations_requiring_pre_approval($registrations_requiring_pre_approval = array()) |
|
| 715 | + { |
|
| 716 | + $events_requiring_pre_approval = ''; |
|
| 717 | + foreach ($registrations_requiring_pre_approval as $registration) { |
|
| 718 | + if ($registration instanceof EE_Registration && $registration->event() instanceof EE_Event) { |
|
| 719 | + $events_requiring_pre_approval[ $registration->event()->ID() ] = EEH_HTML::li( |
|
| 720 | + EEH_HTML::span( |
|
| 721 | + '', |
|
| 722 | + '', |
|
| 723 | + 'dashicons dashicons-marker ee-icon-size-16 orange-text' |
|
| 724 | + ) |
|
| 725 | + . EEH_HTML::span($registration->event()->name(), '', 'orange-text') |
|
| 726 | + ); |
|
| 727 | + } |
|
| 728 | + } |
|
| 729 | + return new EE_Form_Section_Proper( |
|
| 730 | + array( |
|
| 731 | + 'layout_strategy' => new EE_Template_Layout( |
|
| 732 | + array( |
|
| 733 | + 'layout_template_file' => SPCO_REG_STEPS_PATH |
|
| 734 | + . $this->_slug |
|
| 735 | + . DS |
|
| 736 | + . 'events_requiring_pre_approval.template.php', // layout_template |
|
| 737 | + 'template_args' => apply_filters( |
|
| 738 | + 'FHEE__EE_SPCO_Reg_Step_Payment_Options___sold_out_events__template_args', |
|
| 739 | + array( |
|
| 740 | + 'events_requiring_pre_approval' => implode('', $events_requiring_pre_approval), |
|
| 741 | + 'events_requiring_pre_approval_msg' => apply_filters( |
|
| 742 | + 'FHEE__EE_SPCO_Reg_Step_Payment_Options___events_requiring_pre_approval__events_requiring_pre_approval_msg', |
|
| 743 | + esc_html__( |
|
| 744 | + 'The following events do not require payment at this time and will not be billed during this transaction. Billing will only occur after the attendee has been approved by the event organizer. You will be notified when your registration has been processed. If this is a free event, then no billing will occur.', |
|
| 745 | + 'event_espresso' |
|
| 746 | + ) |
|
| 747 | + ), |
|
| 748 | + ) |
|
| 749 | + ), |
|
| 750 | + ) |
|
| 751 | + ), |
|
| 752 | + ) |
|
| 753 | + ); |
|
| 754 | + } |
|
| 755 | + |
|
| 756 | + |
|
| 757 | + /** |
|
| 758 | + * _no_payment_required |
|
| 759 | + * |
|
| 760 | + * @param \EE_Event[] $registrations_for_free_events |
|
| 761 | + * @return \EE_Form_Section_Proper |
|
| 762 | + * @throws \EE_Error |
|
| 763 | + */ |
|
| 764 | + private function _no_payment_required($registrations_for_free_events = array()) |
|
| 765 | + { |
|
| 766 | + // set some defaults |
|
| 767 | + $this->checkout->selected_method_of_payment = 'no_payment_required'; |
|
| 768 | + // generate no_payment_required form |
|
| 769 | + return new EE_Form_Section_Proper( |
|
| 770 | + array( |
|
| 771 | + 'layout_strategy' => new EE_Template_Layout( |
|
| 772 | + array( |
|
| 773 | + 'layout_template_file' => SPCO_REG_STEPS_PATH |
|
| 774 | + . $this->_slug |
|
| 775 | + . DS |
|
| 776 | + . 'no_payment_required.template.php', // layout_template |
|
| 777 | + 'template_args' => apply_filters( |
|
| 778 | + 'FHEE__EE_SPCO_Reg_Step_Payment_Options___no_payment_required__template_args', |
|
| 779 | + array( |
|
| 780 | + 'revisit' => $this->checkout->revisit, |
|
| 781 | + 'registrations' => array(), |
|
| 782 | + 'ticket_count' => array(), |
|
| 783 | + 'registrations_for_free_events' => $registrations_for_free_events, |
|
| 784 | + 'no_payment_required_msg' => EEH_HTML::p( |
|
| 785 | + esc_html__('This is a free event, so no billing will occur.', 'event_espresso') |
|
| 786 | + ), |
|
| 787 | + ) |
|
| 788 | + ), |
|
| 789 | + ) |
|
| 790 | + ), |
|
| 791 | + ) |
|
| 792 | + ); |
|
| 793 | + } |
|
| 794 | + |
|
| 795 | + |
|
| 796 | + /** |
|
| 797 | + * _display_payment_options |
|
| 798 | + * |
|
| 799 | + * @param string $transaction_details |
|
| 800 | + * @return EE_Form_Section_Proper |
|
| 801 | + * @throws EE_Error |
|
| 802 | + * @throws InvalidArgumentException |
|
| 803 | + * @throws \EventEspresso\core\exceptions\InvalidDataTypeException |
|
| 804 | + * @throws \EventEspresso\core\exceptions\InvalidInterfaceException |
|
| 805 | + */ |
|
| 806 | + private function _display_payment_options($transaction_details = '') |
|
| 807 | + { |
|
| 808 | + // has method_of_payment been set by no-js user? |
|
| 809 | + $this->checkout->selected_method_of_payment = $this->_get_selected_method_of_payment(); |
|
| 810 | + // build payment options form |
|
| 811 | + return apply_filters( |
|
| 812 | + 'FHEE__EE_SPCO_Reg_Step_Payment_Options___display_payment_options__payment_options_form', |
|
| 813 | + new EE_Form_Section_Proper( |
|
| 814 | + array( |
|
| 815 | + 'subsections' => array( |
|
| 816 | + 'before_payment_options' => apply_filters( |
|
| 817 | + 'FHEE__EE_SPCO_Reg_Step_Payment_Options___display_payment_options__before_payment_options', |
|
| 818 | + new EE_Form_Section_Proper( |
|
| 819 | + array('layout_strategy' => new EE_Div_Per_Section_Layout()) |
|
| 820 | + ) |
|
| 821 | + ), |
|
| 822 | + 'payment_options' => $this->_setup_payment_options(), |
|
| 823 | + 'after_payment_options' => apply_filters( |
|
| 824 | + 'FHEE__EE_SPCO_Reg_Step_Payment_Options___display_payment_options__after_payment_options', |
|
| 825 | + new EE_Form_Section_Proper( |
|
| 826 | + array('layout_strategy' => new EE_Div_Per_Section_Layout()) |
|
| 827 | + ) |
|
| 828 | + ), |
|
| 829 | + ), |
|
| 830 | + 'layout_strategy' => new EE_Template_Layout( |
|
| 831 | + array( |
|
| 832 | + 'layout_template_file' => $this->_template, |
|
| 833 | + 'template_args' => apply_filters( |
|
| 834 | + 'FHEE__EE_SPCO_Reg_Step_Payment_Options___display_payment_options__template_args', |
|
| 835 | + array( |
|
| 836 | + 'reg_count' => $this->line_item_display->total_items(), |
|
| 837 | + 'transaction_details' => $transaction_details, |
|
| 838 | + 'available_payment_methods' => array(), |
|
| 839 | + ) |
|
| 840 | + ), |
|
| 841 | + ) |
|
| 842 | + ), |
|
| 843 | + ) |
|
| 844 | + ) |
|
| 845 | + ); |
|
| 846 | + } |
|
| 847 | + |
|
| 848 | + |
|
| 849 | + /** |
|
| 850 | + * _extra_hidden_inputs |
|
| 851 | + * |
|
| 852 | + * @param bool $no_payment_required |
|
| 853 | + * @return \EE_Form_Section_Proper |
|
| 854 | + * @throws \EE_Error |
|
| 855 | + */ |
|
| 856 | + private function _extra_hidden_inputs($no_payment_required = true) |
|
| 857 | + { |
|
| 858 | + return new EE_Form_Section_Proper( |
|
| 859 | + array( |
|
| 860 | + 'html_id' => 'ee-' . $this->slug() . '-extra-hidden-inputs', |
|
| 861 | + 'layout_strategy' => new EE_Div_Per_Section_Layout(), |
|
| 862 | + 'subsections' => array( |
|
| 863 | + 'spco_no_payment_required' => new EE_Hidden_Input( |
|
| 864 | + array( |
|
| 865 | + 'normalization_strategy' => new EE_Boolean_Normalization(), |
|
| 866 | + 'html_name' => 'spco_no_payment_required', |
|
| 867 | + 'html_id' => 'spco-no-payment-required-payment_options', |
|
| 868 | + 'default' => $no_payment_required, |
|
| 869 | + ) |
|
| 870 | + ), |
|
| 871 | + 'spco_transaction_id' => new EE_Fixed_Hidden_Input( |
|
| 872 | + array( |
|
| 873 | + 'normalization_strategy' => new EE_Int_Normalization(), |
|
| 874 | + 'html_name' => 'spco_transaction_id', |
|
| 875 | + 'html_id' => 'spco-transaction-id', |
|
| 876 | + 'default' => $this->checkout->transaction->ID(), |
|
| 877 | + ) |
|
| 878 | + ), |
|
| 879 | + ), |
|
| 880 | + ) |
|
| 881 | + ); |
|
| 882 | + } |
|
| 883 | + |
|
| 884 | + |
|
| 885 | + /** |
|
| 886 | + * _apply_registration_payments_to_amount_owing |
|
| 887 | + * |
|
| 888 | + * @access protected |
|
| 889 | + * @param array $registrations |
|
| 890 | + * @throws EE_Error |
|
| 891 | + */ |
|
| 892 | + protected function _apply_registration_payments_to_amount_owing(array $registrations) |
|
| 893 | + { |
|
| 894 | + $payments = array(); |
|
| 895 | + foreach ($registrations as $registration) { |
|
| 896 | + if ($registration instanceof EE_Registration && $registration->owes_monies_and_can_pay()) { |
|
| 897 | + $payments += $registration->registration_payments(); |
|
| 898 | + } |
|
| 899 | + } |
|
| 900 | + if (! empty($payments)) { |
|
| 901 | + foreach ($payments as $payment) { |
|
| 902 | + if ($payment instanceof EE_Registration_Payment) { |
|
| 903 | + $this->checkout->amount_owing -= $payment->amount(); |
|
| 904 | + } |
|
| 905 | + } |
|
| 906 | + } |
|
| 907 | + } |
|
| 908 | + |
|
| 909 | + |
|
| 910 | + /** |
|
| 911 | + * _reset_selected_method_of_payment |
|
| 912 | + * |
|
| 913 | + * @access private |
|
| 914 | + * @param bool $force_reset |
|
| 915 | + * @return void |
|
| 916 | + * @throws InvalidArgumentException |
|
| 917 | + * @throws \EventEspresso\core\exceptions\InvalidDataTypeException |
|
| 918 | + * @throws \EventEspresso\core\exceptions\InvalidInterfaceException |
|
| 919 | + */ |
|
| 920 | + private function _reset_selected_method_of_payment($force_reset = false) |
|
| 921 | + { |
|
| 922 | + $reset_payment_method = $force_reset |
|
| 923 | + ? true |
|
| 924 | + : sanitize_text_field(EE_Registry::instance()->REQ->get('reset_payment_method', false)); |
|
| 925 | + if ($reset_payment_method) { |
|
| 926 | + $this->checkout->selected_method_of_payment = null; |
|
| 927 | + $this->checkout->payment_method = null; |
|
| 928 | + $this->checkout->billing_form = null; |
|
| 929 | + $this->_save_selected_method_of_payment(); |
|
| 930 | + } |
|
| 931 | + } |
|
| 932 | + |
|
| 933 | + |
|
| 934 | + /** |
|
| 935 | + * _save_selected_method_of_payment |
|
| 936 | + * stores the selected_method_of_payment in the session |
|
| 937 | + * so that it's available for all subsequent requests including AJAX |
|
| 938 | + * |
|
| 939 | + * @access private |
|
| 940 | + * @param string $selected_method_of_payment |
|
| 941 | + * @return void |
|
| 942 | + * @throws InvalidArgumentException |
|
| 943 | + * @throws \EventEspresso\core\exceptions\InvalidDataTypeException |
|
| 944 | + * @throws \EventEspresso\core\exceptions\InvalidInterfaceException |
|
| 945 | + */ |
|
| 946 | + private function _save_selected_method_of_payment($selected_method_of_payment = '') |
|
| 947 | + { |
|
| 948 | + $selected_method_of_payment = ! empty($selected_method_of_payment) |
|
| 949 | + ? $selected_method_of_payment |
|
| 950 | + : $this->checkout->selected_method_of_payment; |
|
| 951 | + EE_Registry::instance()->SSN->set_session_data( |
|
| 952 | + array('selected_method_of_payment' => $selected_method_of_payment) |
|
| 953 | + ); |
|
| 954 | + } |
|
| 955 | + |
|
| 956 | + |
|
| 957 | + /** |
|
| 958 | + * _setup_payment_options |
|
| 959 | + * |
|
| 960 | + * @return EE_Form_Section_Proper |
|
| 961 | + * @throws EE_Error |
|
| 962 | + * @throws InvalidArgumentException |
|
| 963 | + * @throws ReflectionException |
|
| 964 | + * @throws \EventEspresso\core\exceptions\InvalidDataTypeException |
|
| 965 | + * @throws \EventEspresso\core\exceptions\InvalidInterfaceException |
|
| 966 | + */ |
|
| 967 | + public function _setup_payment_options() |
|
| 968 | + { |
|
| 969 | + // load payment method classes |
|
| 970 | + $this->checkout->available_payment_methods = $this->_get_available_payment_methods(); |
|
| 971 | + if (empty($this->checkout->available_payment_methods)) { |
|
| 972 | + EE_Error::add_error( |
|
| 973 | + apply_filters( |
|
| 974 | + 'FHEE__EE_SPCO_Reg_Step_Payment_Options___setup_payment_options__error_message_no_payment_methods', |
|
| 975 | + sprintf( |
|
| 976 | + esc_html__( |
|
| 977 | + 'Sorry, you cannot complete your purchase because a payment method is not active.%1$s Please contact %2$s for assistance and provide a description of the problem.', |
|
| 978 | + 'event_espresso' |
|
| 979 | + ), |
|
| 980 | + '<br>', |
|
| 981 | + EE_Registry::instance()->CFG->organization->get_pretty('email') |
|
| 982 | + ) |
|
| 983 | + ), |
|
| 984 | + __FILE__, |
|
| 985 | + __FUNCTION__, |
|
| 986 | + __LINE__ |
|
| 987 | + ); |
|
| 988 | + } |
|
| 989 | + // switch up header depending on number of available payment methods |
|
| 990 | + $payment_method_header = count($this->checkout->available_payment_methods) > 1 |
|
| 991 | + ? apply_filters( |
|
| 992 | + 'FHEE__registration_page_payment_options__method_of_payment_hdr', |
|
| 993 | + esc_html__('Please Select Your Method of Payment', 'event_espresso') |
|
| 994 | + ) |
|
| 995 | + : apply_filters( |
|
| 996 | + 'FHEE__registration_page_payment_options__method_of_payment_hdr', |
|
| 997 | + esc_html__('Method of Payment', 'event_espresso') |
|
| 998 | + ); |
|
| 999 | + $available_payment_methods = array( |
|
| 1000 | + // display the "Payment Method" header |
|
| 1001 | + 'payment_method_header' => new EE_Form_Section_HTML( |
|
| 1002 | + EEH_HTML::h4($payment_method_header, 'method-of-payment-hdr') |
|
| 1003 | + ), |
|
| 1004 | + ); |
|
| 1005 | + // the list of actual payment methods ( invoice, paypal, etc ) in a ( slug => HTML ) format |
|
| 1006 | + $available_payment_method_options = array(); |
|
| 1007 | + $default_payment_method_option = array(); |
|
| 1008 | + // additional instructions to be displayed and hidden below payment methods (adding a clearing div to start) |
|
| 1009 | + $payment_methods_billing_info = array( |
|
| 1010 | + new EE_Form_Section_HTML( |
|
| 1011 | + EEH_HTML::div('<br />', '', '', 'clear:both;') |
|
| 1012 | + ), |
|
| 1013 | + ); |
|
| 1014 | + // loop through payment methods |
|
| 1015 | + foreach ($this->checkout->available_payment_methods as $payment_method) { |
|
| 1016 | + if ($payment_method instanceof EE_Payment_Method) { |
|
| 1017 | + $payment_method_button = EEH_HTML::img( |
|
| 1018 | + $payment_method->button_url(), |
|
| 1019 | + $payment_method->name(), |
|
| 1020 | + 'spco-payment-method-' . $payment_method->slug() . '-btn-img', |
|
| 1021 | + 'spco-payment-method-btn-img' |
|
| 1022 | + ); |
|
| 1023 | + // check if any payment methods are set as default |
|
| 1024 | + // if payment method is already selected OR nothing is selected and this payment method should be |
|
| 1025 | + // open_by_default |
|
| 1026 | + if (($this->checkout->selected_method_of_payment === $payment_method->slug()) |
|
| 1027 | + || (! $this->checkout->selected_method_of_payment && $payment_method->open_by_default()) |
|
| 1028 | + ) { |
|
| 1029 | + $this->checkout->selected_method_of_payment = $payment_method->slug(); |
|
| 1030 | + $this->_save_selected_method_of_payment(); |
|
| 1031 | + $default_payment_method_option[ $payment_method->slug() ] = $payment_method_button; |
|
| 1032 | + } else { |
|
| 1033 | + $available_payment_method_options[ $payment_method->slug() ] = $payment_method_button; |
|
| 1034 | + } |
|
| 1035 | + $payment_methods_billing_info[ $payment_method->slug( |
|
| 1036 | + ) . '-info' ] = $this->_payment_method_billing_info( |
|
| 1037 | + $payment_method |
|
| 1038 | + ); |
|
| 1039 | + } |
|
| 1040 | + } |
|
| 1041 | + // prepend available_payment_method_options with default_payment_method_option so that it appears first in list |
|
| 1042 | + // of PMs |
|
| 1043 | + $available_payment_method_options = $default_payment_method_option + $available_payment_method_options; |
|
| 1044 | + // now generate the actual form inputs |
|
| 1045 | + $available_payment_methods['available_payment_methods'] = $this->_available_payment_method_inputs( |
|
| 1046 | + $available_payment_method_options |
|
| 1047 | + ); |
|
| 1048 | + $available_payment_methods += $payment_methods_billing_info; |
|
| 1049 | + // build the available payment methods form |
|
| 1050 | + return new EE_Form_Section_Proper( |
|
| 1051 | + array( |
|
| 1052 | + 'html_id' => 'spco-available-methods-of-payment-dv', |
|
| 1053 | + 'subsections' => $available_payment_methods, |
|
| 1054 | + 'layout_strategy' => new EE_Div_Per_Section_Layout(), |
|
| 1055 | + ) |
|
| 1056 | + ); |
|
| 1057 | + } |
|
| 1058 | + |
|
| 1059 | + |
|
| 1060 | + /** |
|
| 1061 | + * _get_available_payment_methods |
|
| 1062 | + * |
|
| 1063 | + * @return EE_Payment_Method[] |
|
| 1064 | + * @throws EE_Error |
|
| 1065 | + * @throws InvalidArgumentException |
|
| 1066 | + * @throws ReflectionException |
|
| 1067 | + * @throws \EventEspresso\core\exceptions\InvalidDataTypeException |
|
| 1068 | + * @throws \EventEspresso\core\exceptions\InvalidInterfaceException |
|
| 1069 | + */ |
|
| 1070 | + protected function _get_available_payment_methods() |
|
| 1071 | + { |
|
| 1072 | + if (! empty($this->checkout->available_payment_methods)) { |
|
| 1073 | + return $this->checkout->available_payment_methods; |
|
| 1074 | + } |
|
| 1075 | + $available_payment_methods = array(); |
|
| 1076 | + // load EEM_Payment_Method |
|
| 1077 | + EE_Registry::instance()->load_model('Payment_Method'); |
|
| 1078 | + /** @type EEM_Payment_Method $EEM_Payment_Method */ |
|
| 1079 | + $EEM_Payment_Method = EE_Registry::instance()->LIB->EEM_Payment_Method; |
|
| 1080 | + // get all active payment methods |
|
| 1081 | + $payment_methods = $EEM_Payment_Method->get_all_for_transaction( |
|
| 1082 | + $this->checkout->transaction, |
|
| 1083 | + EEM_Payment_Method::scope_cart |
|
| 1084 | + ); |
|
| 1085 | + foreach ($payment_methods as $payment_method) { |
|
| 1086 | + if ($payment_method instanceof EE_Payment_Method) { |
|
| 1087 | + $available_payment_methods[ $payment_method->slug() ] = $payment_method; |
|
| 1088 | + } |
|
| 1089 | + } |
|
| 1090 | + return $available_payment_methods; |
|
| 1091 | + } |
|
| 1092 | + |
|
| 1093 | + |
|
| 1094 | + /** |
|
| 1095 | + * _available_payment_method_inputs |
|
| 1096 | + * |
|
| 1097 | + * @access private |
|
| 1098 | + * @param array $available_payment_method_options |
|
| 1099 | + * @return \EE_Form_Section_Proper |
|
| 1100 | + */ |
|
| 1101 | + private function _available_payment_method_inputs($available_payment_method_options = array()) |
|
| 1102 | + { |
|
| 1103 | + // generate inputs |
|
| 1104 | + return new EE_Form_Section_Proper( |
|
| 1105 | + array( |
|
| 1106 | + 'html_id' => 'ee-available-payment-method-inputs', |
|
| 1107 | + 'layout_strategy' => new EE_Div_Per_Section_Layout(), |
|
| 1108 | + 'subsections' => array( |
|
| 1109 | + '' => new EE_Radio_Button_Input( |
|
| 1110 | + $available_payment_method_options, |
|
| 1111 | + array( |
|
| 1112 | + 'html_name' => 'selected_method_of_payment', |
|
| 1113 | + 'html_class' => 'spco-payment-method', |
|
| 1114 | + 'default' => $this->checkout->selected_method_of_payment, |
|
| 1115 | + 'label_size' => 11, |
|
| 1116 | + 'enforce_label_size' => true, |
|
| 1117 | + ) |
|
| 1118 | + ), |
|
| 1119 | + ), |
|
| 1120 | + ) |
|
| 1121 | + ); |
|
| 1122 | + } |
|
| 1123 | + |
|
| 1124 | + |
|
| 1125 | + /** |
|
| 1126 | + * _payment_method_billing_info |
|
| 1127 | + * |
|
| 1128 | + * @access private |
|
| 1129 | + * @param EE_Payment_Method $payment_method |
|
| 1130 | + * @return EE_Form_Section_Proper |
|
| 1131 | + * @throws EE_Error |
|
| 1132 | + * @throws InvalidArgumentException |
|
| 1133 | + * @throws \EventEspresso\core\exceptions\InvalidDataTypeException |
|
| 1134 | + * @throws \EventEspresso\core\exceptions\InvalidInterfaceException |
|
| 1135 | + */ |
|
| 1136 | + private function _payment_method_billing_info(EE_Payment_Method $payment_method) |
|
| 1137 | + { |
|
| 1138 | + $currently_selected = $this->checkout->selected_method_of_payment === $payment_method->slug() |
|
| 1139 | + ? true |
|
| 1140 | + : false; |
|
| 1141 | + // generate the billing form for payment method |
|
| 1142 | + $billing_form = $currently_selected |
|
| 1143 | + ? $this->_get_billing_form_for_payment_method($payment_method) |
|
| 1144 | + : new EE_Form_Section_HTML(); |
|
| 1145 | + $this->checkout->billing_form = $currently_selected |
|
| 1146 | + ? $billing_form |
|
| 1147 | + : $this->checkout->billing_form; |
|
| 1148 | + // it's all in the details |
|
| 1149 | + $info_html = EEH_HTML::h3( |
|
| 1150 | + esc_html__('Important information regarding your payment', 'event_espresso'), |
|
| 1151 | + '', |
|
| 1152 | + 'spco-payment-method-hdr' |
|
| 1153 | + ); |
|
| 1154 | + // add some info regarding the step, either from what's saved in the admin, |
|
| 1155 | + // or a default string depending on whether the PM has a billing form or not |
|
| 1156 | + if ($payment_method->description()) { |
|
| 1157 | + $payment_method_info = $payment_method->description(); |
|
| 1158 | + } elseif ($billing_form instanceof EE_Billing_Info_Form) { |
|
| 1159 | + $payment_method_info = sprintf( |
|
| 1160 | + esc_html__( |
|
| 1161 | + 'Please provide the following billing information, then click the "%1$s" button below in order to proceed.', |
|
| 1162 | + 'event_espresso' |
|
| 1163 | + ), |
|
| 1164 | + $this->submit_button_text() |
|
| 1165 | + ); |
|
| 1166 | + } else { |
|
| 1167 | + $payment_method_info = sprintf( |
|
| 1168 | + esc_html__('Please click the "%1$s" button below in order to proceed.', 'event_espresso'), |
|
| 1169 | + $this->submit_button_text() |
|
| 1170 | + ); |
|
| 1171 | + } |
|
| 1172 | + $info_html .= EEH_HTML::div( |
|
| 1173 | + apply_filters( |
|
| 1174 | + 'FHEE__EE_SPCO_Reg_Step_Payment_Options___payment_method_billing_info__payment_method_info', |
|
| 1175 | + $payment_method_info |
|
| 1176 | + ), |
|
| 1177 | + '', |
|
| 1178 | + 'spco-payment-method-desc ee-attention' |
|
| 1179 | + ); |
|
| 1180 | + return new EE_Form_Section_Proper( |
|
| 1181 | + array( |
|
| 1182 | + 'html_id' => 'spco-payment-method-info-' . $payment_method->slug(), |
|
| 1183 | + 'html_class' => 'spco-payment-method-info-dv', |
|
| 1184 | + // only display the selected or default PM |
|
| 1185 | + 'html_style' => $currently_selected ? '' : 'display:none;', |
|
| 1186 | + 'layout_strategy' => new EE_Div_Per_Section_Layout(), |
|
| 1187 | + 'subsections' => array( |
|
| 1188 | + 'info' => new EE_Form_Section_HTML($info_html), |
|
| 1189 | + 'billing_form' => $currently_selected ? $billing_form : new EE_Form_Section_HTML(), |
|
| 1190 | + ), |
|
| 1191 | + ) |
|
| 1192 | + ); |
|
| 1193 | + } |
|
| 1194 | + |
|
| 1195 | + |
|
| 1196 | + /** |
|
| 1197 | + * get_billing_form_html_for_payment_method |
|
| 1198 | + * |
|
| 1199 | + * @access public |
|
| 1200 | + * @return string |
|
| 1201 | + * @throws EE_Error |
|
| 1202 | + * @throws InvalidArgumentException |
|
| 1203 | + * @throws ReflectionException |
|
| 1204 | + * @throws \EventEspresso\core\exceptions\InvalidDataTypeException |
|
| 1205 | + * @throws \EventEspresso\core\exceptions\InvalidInterfaceException |
|
| 1206 | + */ |
|
| 1207 | + public function get_billing_form_html_for_payment_method() |
|
| 1208 | + { |
|
| 1209 | + // how have they chosen to pay? |
|
| 1210 | + $this->checkout->selected_method_of_payment = $this->_get_selected_method_of_payment(true); |
|
| 1211 | + $this->checkout->payment_method = $this->_get_payment_method_for_selected_method_of_payment(); |
|
| 1212 | + if (! $this->checkout->payment_method instanceof EE_Payment_Method) { |
|
| 1213 | + return false; |
|
| 1214 | + } |
|
| 1215 | + if (apply_filters( |
|
| 1216 | + 'FHEE__EE_SPCO_Reg_Step_Payment_Options__registration_checkout__selected_payment_method__display_success', |
|
| 1217 | + false |
|
| 1218 | + )) { |
|
| 1219 | + EE_Error::add_success( |
|
| 1220 | + apply_filters( |
|
| 1221 | + 'FHEE__Single_Page_Checkout__registration_checkout__selected_payment_method', |
|
| 1222 | + sprintf( |
|
| 1223 | + esc_html__( |
|
| 1224 | + 'You have selected "%s" as your method of payment. Please note the important payment information below.', |
|
| 1225 | + 'event_espresso' |
|
| 1226 | + ), |
|
| 1227 | + $this->checkout->payment_method->name() |
|
| 1228 | + ) |
|
| 1229 | + ) |
|
| 1230 | + ); |
|
| 1231 | + } |
|
| 1232 | + // now generate billing form for selected method of payment |
|
| 1233 | + $payment_method_billing_form = $this->_get_billing_form_for_payment_method($this->checkout->payment_method); |
|
| 1234 | + // fill form with attendee info if applicable |
|
| 1235 | + if ($payment_method_billing_form instanceof EE_Billing_Attendee_Info_Form |
|
| 1236 | + && $this->checkout->transaction_has_primary_registrant() |
|
| 1237 | + ) { |
|
| 1238 | + $payment_method_billing_form->populate_from_attendee( |
|
| 1239 | + $this->checkout->transaction->primary_registration()->attendee() |
|
| 1240 | + ); |
|
| 1241 | + } |
|
| 1242 | + // and debug content |
|
| 1243 | + if ($payment_method_billing_form instanceof EE_Billing_Info_Form |
|
| 1244 | + && $this->checkout->payment_method->type_obj() instanceof EE_PMT_Base |
|
| 1245 | + ) { |
|
| 1246 | + $payment_method_billing_form = |
|
| 1247 | + $this->checkout->payment_method->type_obj()->apply_billing_form_debug_settings( |
|
| 1248 | + $payment_method_billing_form |
|
| 1249 | + ); |
|
| 1250 | + } |
|
| 1251 | + $billing_info = $payment_method_billing_form instanceof EE_Form_Section_Proper |
|
| 1252 | + ? $payment_method_billing_form->get_html() |
|
| 1253 | + : ''; |
|
| 1254 | + $this->checkout->json_response->set_return_data(array('payment_method_info' => $billing_info)); |
|
| 1255 | + // localize validation rules for main form |
|
| 1256 | + $this->checkout->current_step->reg_form->localize_validation_rules(); |
|
| 1257 | + $this->checkout->json_response->add_validation_rules(EE_Form_Section_Proper::js_localization()); |
|
| 1258 | + return true; |
|
| 1259 | + } |
|
| 1260 | + |
|
| 1261 | + |
|
| 1262 | + /** |
|
| 1263 | + * _get_billing_form_for_payment_method |
|
| 1264 | + * |
|
| 1265 | + * @access private |
|
| 1266 | + * @param EE_Payment_Method $payment_method |
|
| 1267 | + * @return EE_Billing_Info_Form|EE_Form_Section_HTML |
|
| 1268 | + * @throws EE_Error |
|
| 1269 | + * @throws InvalidArgumentException |
|
| 1270 | + * @throws \EventEspresso\core\exceptions\InvalidDataTypeException |
|
| 1271 | + * @throws \EventEspresso\core\exceptions\InvalidInterfaceException |
|
| 1272 | + */ |
|
| 1273 | + private function _get_billing_form_for_payment_method(EE_Payment_Method $payment_method) |
|
| 1274 | + { |
|
| 1275 | + $billing_form = $payment_method->type_obj()->billing_form( |
|
| 1276 | + $this->checkout->transaction, |
|
| 1277 | + array('amount_owing' => $this->checkout->amount_owing) |
|
| 1278 | + ); |
|
| 1279 | + if ($billing_form instanceof EE_Billing_Info_Form) { |
|
| 1280 | + if (apply_filters( |
|
| 1281 | + 'FHEE__EE_SPCO_Reg_Step_Payment_Options__registration_checkout__selected_payment_method__display_success', |
|
| 1282 | + false |
|
| 1283 | + ) |
|
| 1284 | + && EE_Registry::instance()->REQ->is_set('payment_method') |
|
| 1285 | + ) { |
|
| 1286 | + EE_Error::add_success( |
|
| 1287 | + apply_filters( |
|
| 1288 | + 'FHEE__Single_Page_Checkout__registration_checkout__selected_payment_method', |
|
| 1289 | + sprintf( |
|
| 1290 | + esc_html__( |
|
| 1291 | + 'You have selected "%s" as your method of payment. Please note the important payment information below.', |
|
| 1292 | + 'event_espresso' |
|
| 1293 | + ), |
|
| 1294 | + $payment_method->name() |
|
| 1295 | + ) |
|
| 1296 | + ) |
|
| 1297 | + ); |
|
| 1298 | + } |
|
| 1299 | + return apply_filters( |
|
| 1300 | + 'FHEE__EE_SPCO_Reg_Step_Payment_Options___get_billing_form_for_payment_method__billing_form', |
|
| 1301 | + $billing_form, |
|
| 1302 | + $payment_method |
|
| 1303 | + ); |
|
| 1304 | + } |
|
| 1305 | + // no actual billing form, so return empty HTML form section |
|
| 1306 | + return new EE_Form_Section_HTML(); |
|
| 1307 | + } |
|
| 1308 | + |
|
| 1309 | + |
|
| 1310 | + /** |
|
| 1311 | + * _get_selected_method_of_payment |
|
| 1312 | + * |
|
| 1313 | + * @access private |
|
| 1314 | + * @param boolean $required whether to throw an error if the "selected_method_of_payment" |
|
| 1315 | + * is not found in the incoming request |
|
| 1316 | + * @param string $request_param |
|
| 1317 | + * @return NULL|string |
|
| 1318 | + * @throws EE_Error |
|
| 1319 | + * @throws InvalidArgumentException |
|
| 1320 | + * @throws \EventEspresso\core\exceptions\InvalidDataTypeException |
|
| 1321 | + * @throws \EventEspresso\core\exceptions\InvalidInterfaceException |
|
| 1322 | + */ |
|
| 1323 | + private function _get_selected_method_of_payment( |
|
| 1324 | + $required = false, |
|
| 1325 | + $request_param = 'selected_method_of_payment' |
|
| 1326 | + ) { |
|
| 1327 | + // is selected_method_of_payment set in the request ? |
|
| 1328 | + $selected_method_of_payment = EE_Registry::instance()->REQ->get($request_param, false); |
|
| 1329 | + if ($selected_method_of_payment) { |
|
| 1330 | + // sanitize it |
|
| 1331 | + $selected_method_of_payment = is_array($selected_method_of_payment) |
|
| 1332 | + ? array_shift($selected_method_of_payment) |
|
| 1333 | + : $selected_method_of_payment; |
|
| 1334 | + $selected_method_of_payment = sanitize_text_field($selected_method_of_payment); |
|
| 1335 | + // store it in the session so that it's available for all subsequent requests including AJAX |
|
| 1336 | + $this->_save_selected_method_of_payment($selected_method_of_payment); |
|
| 1337 | + } else { |
|
| 1338 | + // or is is set in the session ? |
|
| 1339 | + $selected_method_of_payment = EE_Registry::instance()->SSN->get_session_data( |
|
| 1340 | + 'selected_method_of_payment' |
|
| 1341 | + ); |
|
| 1342 | + } |
|
| 1343 | + // do ya really really gotta have it? |
|
| 1344 | + if (empty($selected_method_of_payment) && $required) { |
|
| 1345 | + EE_Error::add_error( |
|
| 1346 | + sprintf( |
|
| 1347 | + esc_html__( |
|
| 1348 | + 'The selected method of payment could not be determined.%sPlease ensure that you have selected one before proceeding.%sIf you continue to experience difficulties, then refresh your browser and try again, or contact %s for assistance.', |
|
| 1349 | + 'event_espresso' |
|
| 1350 | + ), |
|
| 1351 | + '<br/>', |
|
| 1352 | + '<br/>', |
|
| 1353 | + EE_Registry::instance()->CFG->organization->get_pretty('email') |
|
| 1354 | + ), |
|
| 1355 | + __FILE__, |
|
| 1356 | + __FUNCTION__, |
|
| 1357 | + __LINE__ |
|
| 1358 | + ); |
|
| 1359 | + return null; |
|
| 1360 | + } |
|
| 1361 | + return $selected_method_of_payment; |
|
| 1362 | + } |
|
| 1363 | + |
|
| 1364 | + |
|
| 1365 | + |
|
| 1366 | + |
|
| 1367 | + |
|
| 1368 | + |
|
| 1369 | + /********************************************************************************************************/ |
|
| 1370 | + /*********************************** SWITCH PAYMENT METHOD ************************************/ |
|
| 1371 | + /********************************************************************************************************/ |
|
| 1372 | + /** |
|
| 1373 | + * switch_payment_method |
|
| 1374 | + * |
|
| 1375 | + * @access public |
|
| 1376 | + * @return string |
|
| 1377 | + * @throws EE_Error |
|
| 1378 | + * @throws InvalidArgumentException |
|
| 1379 | + * @throws \EventEspresso\core\exceptions\InvalidDataTypeException |
|
| 1380 | + * @throws \EventEspresso\core\exceptions\InvalidInterfaceException |
|
| 1381 | + */ |
|
| 1382 | + public function switch_payment_method() |
|
| 1383 | + { |
|
| 1384 | + if (! $this->_verify_payment_method_is_set()) { |
|
| 1385 | + return false; |
|
| 1386 | + } |
|
| 1387 | + if (apply_filters( |
|
| 1388 | + 'FHEE__EE_SPCO_Reg_Step_Payment_Options__registration_checkout__selected_payment_method__display_success', |
|
| 1389 | + false |
|
| 1390 | + )) { |
|
| 1391 | + EE_Error::add_success( |
|
| 1392 | + apply_filters( |
|
| 1393 | + 'FHEE__Single_Page_Checkout__registration_checkout__selected_payment_method', |
|
| 1394 | + sprintf( |
|
| 1395 | + esc_html__( |
|
| 1396 | + 'You have selected "%s" as your method of payment. Please note the important payment information below.', |
|
| 1397 | + 'event_espresso' |
|
| 1398 | + ), |
|
| 1399 | + $this->checkout->payment_method->name() |
|
| 1400 | + ) |
|
| 1401 | + ) |
|
| 1402 | + ); |
|
| 1403 | + } |
|
| 1404 | + // generate billing form for selected method of payment if it hasn't been done already |
|
| 1405 | + if ($this->checkout->payment_method->type_obj()->has_billing_form()) { |
|
| 1406 | + $this->checkout->billing_form = $this->_get_billing_form_for_payment_method( |
|
| 1407 | + $this->checkout->payment_method |
|
| 1408 | + ); |
|
| 1409 | + } |
|
| 1410 | + // fill form with attendee info if applicable |
|
| 1411 | + if (apply_filters( |
|
| 1412 | + 'FHEE__populate_billing_form_fields_from_attendee', |
|
| 1413 | + ( |
|
| 1414 | + $this->checkout->billing_form instanceof EE_Billing_Attendee_Info_Form |
|
| 1415 | + && $this->checkout->transaction_has_primary_registrant() |
|
| 1416 | + ), |
|
| 1417 | + $this->checkout->billing_form, |
|
| 1418 | + $this->checkout->transaction |
|
| 1419 | + ) |
|
| 1420 | + ) { |
|
| 1421 | + $this->checkout->billing_form->populate_from_attendee( |
|
| 1422 | + $this->checkout->transaction->primary_registration()->attendee() |
|
| 1423 | + ); |
|
| 1424 | + } |
|
| 1425 | + // and debug content |
|
| 1426 | + if ($this->checkout->billing_form instanceof EE_Billing_Info_Form |
|
| 1427 | + && $this->checkout->payment_method->type_obj() instanceof EE_PMT_Base |
|
| 1428 | + ) { |
|
| 1429 | + $this->checkout->billing_form = |
|
| 1430 | + $this->checkout->payment_method->type_obj()->apply_billing_form_debug_settings( |
|
| 1431 | + $this->checkout->billing_form |
|
| 1432 | + ); |
|
| 1433 | + } |
|
| 1434 | + // get html and validation rules for form |
|
| 1435 | + if ($this->checkout->billing_form instanceof EE_Form_Section_Proper) { |
|
| 1436 | + $this->checkout->json_response->set_return_data( |
|
| 1437 | + array('payment_method_info' => $this->checkout->billing_form->get_html()) |
|
| 1438 | + ); |
|
| 1439 | + // localize validation rules for main form |
|
| 1440 | + $this->checkout->billing_form->localize_validation_rules(true); |
|
| 1441 | + $this->checkout->json_response->add_validation_rules(EE_Form_Section_Proper::js_localization()); |
|
| 1442 | + } else { |
|
| 1443 | + $this->checkout->json_response->set_return_data(array('payment_method_info' => '')); |
|
| 1444 | + } |
|
| 1445 | + // prevents advancement to next step |
|
| 1446 | + $this->checkout->continue_reg = false; |
|
| 1447 | + return true; |
|
| 1448 | + } |
|
| 1449 | + |
|
| 1450 | + |
|
| 1451 | + /** |
|
| 1452 | + * _verify_payment_method_is_set |
|
| 1453 | + * |
|
| 1454 | + * @return bool |
|
| 1455 | + * @throws EE_Error |
|
| 1456 | + * @throws InvalidArgumentException |
|
| 1457 | + * @throws ReflectionException |
|
| 1458 | + * @throws \EventEspresso\core\exceptions\InvalidDataTypeException |
|
| 1459 | + * @throws \EventEspresso\core\exceptions\InvalidInterfaceException |
|
| 1460 | + */ |
|
| 1461 | + protected function _verify_payment_method_is_set() |
|
| 1462 | + { |
|
| 1463 | + // generate billing form for selected method of payment if it hasn't been done already |
|
| 1464 | + if (empty($this->checkout->selected_method_of_payment)) { |
|
| 1465 | + // how have they chosen to pay? |
|
| 1466 | + $this->checkout->selected_method_of_payment = $this->_get_selected_method_of_payment(true); |
|
| 1467 | + } else { |
|
| 1468 | + // choose your own adventure based on method_of_payment |
|
| 1469 | + switch ($this->checkout->selected_method_of_payment) { |
|
| 1470 | + case 'events_sold_out': |
|
| 1471 | + EE_Error::add_attention( |
|
| 1472 | + apply_filters( |
|
| 1473 | + 'FHEE__EE_SPCO_Reg_Step_Payment_Options___verify_payment_method_is_set__sold_out_events_msg', |
|
| 1474 | + esc_html__( |
|
| 1475 | + 'It appears that the event you were about to make a payment for has sold out since this form first loaded. Please contact the event administrator if you believe this is an error.', |
|
| 1476 | + 'event_espresso' |
|
| 1477 | + ) |
|
| 1478 | + ), |
|
| 1479 | + __FILE__, |
|
| 1480 | + __FUNCTION__, |
|
| 1481 | + __LINE__ |
|
| 1482 | + ); |
|
| 1483 | + return false; |
|
| 1484 | + break; |
|
| 1485 | + case 'payments_closed': |
|
| 1486 | + EE_Error::add_attention( |
|
| 1487 | + apply_filters( |
|
| 1488 | + 'FHEE__EE_SPCO_Reg_Step_Payment_Options___verify_payment_method_is_set__payments_closed_msg', |
|
| 1489 | + esc_html__( |
|
| 1490 | + 'It appears that the event you were about to make a payment for is not accepting payments at this time. Please contact the event administrator if you believe this is an error.', |
|
| 1491 | + 'event_espresso' |
|
| 1492 | + ) |
|
| 1493 | + ), |
|
| 1494 | + __FILE__, |
|
| 1495 | + __FUNCTION__, |
|
| 1496 | + __LINE__ |
|
| 1497 | + ); |
|
| 1498 | + return false; |
|
| 1499 | + break; |
|
| 1500 | + case 'no_payment_required': |
|
| 1501 | + EE_Error::add_attention( |
|
| 1502 | + apply_filters( |
|
| 1503 | + 'FHEE__EE_SPCO_Reg_Step_Payment_Options___verify_payment_method_is_set__no_payment_required_msg', |
|
| 1504 | + esc_html__( |
|
| 1505 | + 'It appears that the event you were about to make a payment for does not require payment. Please contact the event administrator if you believe this is an error.', |
|
| 1506 | + 'event_espresso' |
|
| 1507 | + ) |
|
| 1508 | + ), |
|
| 1509 | + __FILE__, |
|
| 1510 | + __FUNCTION__, |
|
| 1511 | + __LINE__ |
|
| 1512 | + ); |
|
| 1513 | + return false; |
|
| 1514 | + break; |
|
| 1515 | + default: |
|
| 1516 | + } |
|
| 1517 | + } |
|
| 1518 | + // verify payment method |
|
| 1519 | + if (! $this->checkout->payment_method instanceof EE_Payment_Method) { |
|
| 1520 | + // get payment method for selected method of payment |
|
| 1521 | + $this->checkout->payment_method = $this->_get_payment_method_for_selected_method_of_payment(); |
|
| 1522 | + } |
|
| 1523 | + return $this->checkout->payment_method instanceof EE_Payment_Method ? true : false; |
|
| 1524 | + } |
|
| 1525 | + |
|
| 1526 | + |
|
| 1527 | + |
|
| 1528 | + /********************************************************************************************************/ |
|
| 1529 | + /*************************************** SAVE PAYER DETAILS ****************************************/ |
|
| 1530 | + /********************************************************************************************************/ |
|
| 1531 | + /** |
|
| 1532 | + * save_payer_details_via_ajax |
|
| 1533 | + * |
|
| 1534 | + * @return void |
|
| 1535 | + * @throws EE_Error |
|
| 1536 | + * @throws InvalidArgumentException |
|
| 1537 | + * @throws ReflectionException |
|
| 1538 | + * @throws RuntimeException |
|
| 1539 | + * @throws \EventEspresso\core\exceptions\InvalidDataTypeException |
|
| 1540 | + * @throws \EventEspresso\core\exceptions\InvalidInterfaceException |
|
| 1541 | + */ |
|
| 1542 | + public function save_payer_details_via_ajax() |
|
| 1543 | + { |
|
| 1544 | + if (! $this->_verify_payment_method_is_set()) { |
|
| 1545 | + return; |
|
| 1546 | + } |
|
| 1547 | + // generate billing form for selected method of payment if it hasn't been done already |
|
| 1548 | + if ($this->checkout->payment_method->type_obj()->has_billing_form()) { |
|
| 1549 | + $this->checkout->billing_form = $this->_get_billing_form_for_payment_method( |
|
| 1550 | + $this->checkout->payment_method |
|
| 1551 | + ); |
|
| 1552 | + } |
|
| 1553 | + // generate primary attendee from payer info if applicable |
|
| 1554 | + if (! $this->checkout->transaction_has_primary_registrant()) { |
|
| 1555 | + $attendee = $this->_create_attendee_from_request_data(); |
|
| 1556 | + if ($attendee instanceof EE_Attendee) { |
|
| 1557 | + foreach ($this->checkout->transaction->registrations() as $registration) { |
|
| 1558 | + if ($registration->is_primary_registrant()) { |
|
| 1559 | + $this->checkout->primary_attendee_obj = $attendee; |
|
| 1560 | + $registration->_add_relation_to($attendee, 'Attendee'); |
|
| 1561 | + $registration->set_attendee_id($attendee->ID()); |
|
| 1562 | + $registration->update_cache_after_object_save('Attendee', $attendee); |
|
| 1563 | + } |
|
| 1564 | + } |
|
| 1565 | + } |
|
| 1566 | + } |
|
| 1567 | + } |
|
| 1568 | + |
|
| 1569 | + |
|
| 1570 | + /** |
|
| 1571 | + * create_attendee_from_request_data |
|
| 1572 | + * uses info from alternate GET or POST data (such as AJAX) to create a new attendee |
|
| 1573 | + * |
|
| 1574 | + * @return EE_Attendee |
|
| 1575 | + * @throws EE_Error |
|
| 1576 | + * @throws InvalidArgumentException |
|
| 1577 | + * @throws ReflectionException |
|
| 1578 | + * @throws \EventEspresso\core\exceptions\InvalidDataTypeException |
|
| 1579 | + * @throws \EventEspresso\core\exceptions\InvalidInterfaceException |
|
| 1580 | + */ |
|
| 1581 | + protected function _create_attendee_from_request_data() |
|
| 1582 | + { |
|
| 1583 | + // get State ID |
|
| 1584 | + $STA_ID = ! empty($_REQUEST['state']) ? sanitize_text_field($_REQUEST['state']) : ''; |
|
| 1585 | + if (! empty($STA_ID)) { |
|
| 1586 | + // can we get state object from name ? |
|
| 1587 | + EE_Registry::instance()->load_model('State'); |
|
| 1588 | + $state = EEM_State::instance()->get_col(array(array('STA_name' => $STA_ID), 'limit' => 1), 'STA_ID'); |
|
| 1589 | + $STA_ID = is_array($state) && ! empty($state) ? reset($state) : $STA_ID; |
|
| 1590 | + } |
|
| 1591 | + // get Country ISO |
|
| 1592 | + $CNT_ISO = ! empty($_REQUEST['country']) ? sanitize_text_field($_REQUEST['country']) : ''; |
|
| 1593 | + if (! empty($CNT_ISO)) { |
|
| 1594 | + // can we get country object from name ? |
|
| 1595 | + EE_Registry::instance()->load_model('Country'); |
|
| 1596 | + $country = EEM_Country::instance()->get_col( |
|
| 1597 | + array(array('CNT_name' => $CNT_ISO), 'limit' => 1), |
|
| 1598 | + 'CNT_ISO' |
|
| 1599 | + ); |
|
| 1600 | + $CNT_ISO = is_array($country) && ! empty($country) ? reset($country) : $CNT_ISO; |
|
| 1601 | + } |
|
| 1602 | + // grab attendee data |
|
| 1603 | + $attendee_data = array( |
|
| 1604 | + 'ATT_fname' => ! empty($_REQUEST['first_name']) ? sanitize_text_field($_REQUEST['first_name']) : '', |
|
| 1605 | + 'ATT_lname' => ! empty($_REQUEST['last_name']) ? sanitize_text_field($_REQUEST['last_name']) : '', |
|
| 1606 | + 'ATT_email' => ! empty($_REQUEST['email']) ? sanitize_email($_REQUEST['email']) : '', |
|
| 1607 | + 'ATT_address' => ! empty($_REQUEST['address']) ? sanitize_text_field($_REQUEST['address']) : '', |
|
| 1608 | + 'ATT_address2' => ! empty($_REQUEST['address2']) ? sanitize_text_field($_REQUEST['address2']) : '', |
|
| 1609 | + 'ATT_city' => ! empty($_REQUEST['city']) ? sanitize_text_field($_REQUEST['city']) : '', |
|
| 1610 | + 'STA_ID' => $STA_ID, |
|
| 1611 | + 'CNT_ISO' => $CNT_ISO, |
|
| 1612 | + 'ATT_zip' => ! empty($_REQUEST['zip']) ? sanitize_text_field($_REQUEST['zip']) : '', |
|
| 1613 | + 'ATT_phone' => ! empty($_REQUEST['phone']) ? sanitize_text_field($_REQUEST['phone']) : '', |
|
| 1614 | + ); |
|
| 1615 | + // validate the email address since it is the most important piece of info |
|
| 1616 | + if (empty($attendee_data['ATT_email']) || $attendee_data['ATT_email'] !== $_REQUEST['email']) { |
|
| 1617 | + EE_Error::add_error( |
|
| 1618 | + esc_html__('An invalid email address was submitted.', 'event_espresso'), |
|
| 1619 | + __FILE__, |
|
| 1620 | + __FUNCTION__, |
|
| 1621 | + __LINE__ |
|
| 1622 | + ); |
|
| 1623 | + } |
|
| 1624 | + // does this attendee already exist in the db ? we're searching using a combination of first name, last name, |
|
| 1625 | + // AND email address |
|
| 1626 | + if (! empty($attendee_data['ATT_fname']) |
|
| 1627 | + && ! empty($attendee_data['ATT_lname']) |
|
| 1628 | + && ! empty($attendee_data['ATT_email']) |
|
| 1629 | + ) { |
|
| 1630 | + $existing_attendee = EE_Registry::instance()->LIB->EEM_Attendee->find_existing_attendee( |
|
| 1631 | + array( |
|
| 1632 | + 'ATT_fname' => $attendee_data['ATT_fname'], |
|
| 1633 | + 'ATT_lname' => $attendee_data['ATT_lname'], |
|
| 1634 | + 'ATT_email' => $attendee_data['ATT_email'], |
|
| 1635 | + ) |
|
| 1636 | + ); |
|
| 1637 | + if ($existing_attendee instanceof EE_Attendee) { |
|
| 1638 | + return $existing_attendee; |
|
| 1639 | + } |
|
| 1640 | + } |
|
| 1641 | + // no existing attendee? kk let's create a new one |
|
| 1642 | + // kinda lame, but we need a first and last name to create an attendee, so use the email address if those |
|
| 1643 | + // don't exist |
|
| 1644 | + $attendee_data['ATT_fname'] = ! empty($attendee_data['ATT_fname']) |
|
| 1645 | + ? $attendee_data['ATT_fname'] |
|
| 1646 | + : $attendee_data['ATT_email']; |
|
| 1647 | + $attendee_data['ATT_lname'] = ! empty($attendee_data['ATT_lname']) |
|
| 1648 | + ? $attendee_data['ATT_lname'] |
|
| 1649 | + : $attendee_data['ATT_email']; |
|
| 1650 | + return EE_Attendee::new_instance($attendee_data); |
|
| 1651 | + } |
|
| 1652 | + |
|
| 1653 | + |
|
| 1654 | + |
|
| 1655 | + /********************************************************************************************************/ |
|
| 1656 | + /**************************************** PROCESS REG STEP *****************************************/ |
|
| 1657 | + /********************************************************************************************************/ |
|
| 1658 | + /** |
|
| 1659 | + * process_reg_step |
|
| 1660 | + * |
|
| 1661 | + * @return bool |
|
| 1662 | + * @throws EE_Error |
|
| 1663 | + * @throws InvalidArgumentException |
|
| 1664 | + * @throws ReflectionException |
|
| 1665 | + * @throws \EventEspresso\core\exceptions\EntityNotFoundException |
|
| 1666 | + * @throws \EventEspresso\core\exceptions\InvalidDataTypeException |
|
| 1667 | + * @throws \EventEspresso\core\exceptions\InvalidInterfaceException |
|
| 1668 | + * @throws \EventEspresso\core\exceptions\InvalidStatusException |
|
| 1669 | + */ |
|
| 1670 | + public function process_reg_step() |
|
| 1671 | + { |
|
| 1672 | + // how have they chosen to pay? |
|
| 1673 | + $this->checkout->selected_method_of_payment = $this->checkout->transaction->is_free() |
|
| 1674 | + ? 'no_payment_required' |
|
| 1675 | + : $this->_get_selected_method_of_payment(true); |
|
| 1676 | + // choose your own adventure based on method_of_payment |
|
| 1677 | + switch ($this->checkout->selected_method_of_payment) { |
|
| 1678 | + case 'events_sold_out': |
|
| 1679 | + $this->checkout->redirect = true; |
|
| 1680 | + $this->checkout->redirect_url = $this->checkout->cancel_page_url; |
|
| 1681 | + $this->checkout->json_response->set_redirect_url($this->checkout->redirect_url); |
|
| 1682 | + // mark this reg step as completed |
|
| 1683 | + $this->set_completed(); |
|
| 1684 | + return false; |
|
| 1685 | + break; |
|
| 1686 | + |
|
| 1687 | + case 'payments_closed': |
|
| 1688 | + if (apply_filters( |
|
| 1689 | + 'FHEE__EE_SPCO_Reg_Step_Payment_Options__process_reg_step__payments_closed__display_success', |
|
| 1690 | + false |
|
| 1691 | + )) { |
|
| 1692 | + EE_Error::add_success( |
|
| 1693 | + esc_html__('no payment required at this time.', 'event_espresso'), |
|
| 1694 | + __FILE__, |
|
| 1695 | + __FUNCTION__, |
|
| 1696 | + __LINE__ |
|
| 1697 | + ); |
|
| 1698 | + } |
|
| 1699 | + // mark this reg step as completed |
|
| 1700 | + $this->set_completed(); |
|
| 1701 | + return true; |
|
| 1702 | + break; |
|
| 1703 | + |
|
| 1704 | + case 'no_payment_required': |
|
| 1705 | + if (apply_filters( |
|
| 1706 | + 'FHEE__EE_SPCO_Reg_Step_Payment_Options__process_reg_step__no_payment_required__display_success', |
|
| 1707 | + false |
|
| 1708 | + )) { |
|
| 1709 | + EE_Error::add_success( |
|
| 1710 | + esc_html__('no payment required.', 'event_espresso'), |
|
| 1711 | + __FILE__, |
|
| 1712 | + __FUNCTION__, |
|
| 1713 | + __LINE__ |
|
| 1714 | + ); |
|
| 1715 | + } |
|
| 1716 | + // mark this reg step as completed |
|
| 1717 | + $this->set_completed(); |
|
| 1718 | + return true; |
|
| 1719 | + break; |
|
| 1720 | + |
|
| 1721 | + default: |
|
| 1722 | + $registrations = EE_Registry::instance()->SSN->checkout()->transaction->registrations( |
|
| 1723 | + EE_Registry::instance()->SSN->checkout()->reg_cache_where_params |
|
| 1724 | + ); |
|
| 1725 | + $ejected_registrations = EE_SPCO_Reg_Step_Payment_Options::find_registrations_that_lost_their_space( |
|
| 1726 | + $registrations, |
|
| 1727 | + EE_Registry::instance()->SSN->checkout()->revisit |
|
| 1728 | + ); |
|
| 1729 | + // calculate difference between the two arrays |
|
| 1730 | + $registrations = array_diff($registrations, $ejected_registrations); |
|
| 1731 | + if (empty($registrations)) { |
|
| 1732 | + $this->_redirect_because_event_sold_out(); |
|
| 1733 | + return false; |
|
| 1734 | + } |
|
| 1735 | + $payment_successful = $this->_process_payment(); |
|
| 1736 | + if ($payment_successful) { |
|
| 1737 | + $this->checkout->continue_reg = true; |
|
| 1738 | + $this->_maybe_set_completed($this->checkout->payment_method); |
|
| 1739 | + } else { |
|
| 1740 | + $this->checkout->continue_reg = false; |
|
| 1741 | + } |
|
| 1742 | + return $payment_successful; |
|
| 1743 | + } |
|
| 1744 | + } |
|
| 1745 | + |
|
| 1746 | + |
|
| 1747 | + /** |
|
| 1748 | + * _redirect_because_event_sold_out |
|
| 1749 | + * |
|
| 1750 | + * @access protected |
|
| 1751 | + * @return void |
|
| 1752 | + */ |
|
| 1753 | + protected function _redirect_because_event_sold_out() |
|
| 1754 | + { |
|
| 1755 | + $this->checkout->continue_reg = false; |
|
| 1756 | + // set redirect URL |
|
| 1757 | + $this->checkout->redirect_url = add_query_arg( |
|
| 1758 | + array('e_reg_url_link' => $this->checkout->reg_url_link), |
|
| 1759 | + $this->checkout->current_step->reg_step_url() |
|
| 1760 | + ); |
|
| 1761 | + $this->checkout->json_response->set_redirect_url($this->checkout->redirect_url); |
|
| 1762 | + } |
|
| 1763 | + |
|
| 1764 | + |
|
| 1765 | + /** |
|
| 1766 | + * _maybe_set_completed |
|
| 1767 | + * |
|
| 1768 | + * @access protected |
|
| 1769 | + * @param \EE_Payment_Method $payment_method |
|
| 1770 | + * @return void |
|
| 1771 | + * @throws \EE_Error |
|
| 1772 | + */ |
|
| 1773 | + protected function _maybe_set_completed(EE_Payment_Method $payment_method) |
|
| 1774 | + { |
|
| 1775 | + switch ($payment_method->type_obj()->payment_occurs()) { |
|
| 1776 | + case EE_PMT_Base::offsite: |
|
| 1777 | + break; |
|
| 1778 | + case EE_PMT_Base::onsite: |
|
| 1779 | + case EE_PMT_Base::offline: |
|
| 1780 | + // mark this reg step as completed |
|
| 1781 | + $this->set_completed(); |
|
| 1782 | + break; |
|
| 1783 | + } |
|
| 1784 | + } |
|
| 1785 | + |
|
| 1786 | + |
|
| 1787 | + /** |
|
| 1788 | + * update_reg_step |
|
| 1789 | + * this is the final step after a user revisits the site to retry a payment |
|
| 1790 | + * |
|
| 1791 | + * @return bool |
|
| 1792 | + * @throws EE_Error |
|
| 1793 | + * @throws InvalidArgumentException |
|
| 1794 | + * @throws ReflectionException |
|
| 1795 | + * @throws \EventEspresso\core\exceptions\EntityNotFoundException |
|
| 1796 | + * @throws \EventEspresso\core\exceptions\InvalidDataTypeException |
|
| 1797 | + * @throws \EventEspresso\core\exceptions\InvalidInterfaceException |
|
| 1798 | + * @throws \EventEspresso\core\exceptions\InvalidStatusException |
|
| 1799 | + */ |
|
| 1800 | + public function update_reg_step() |
|
| 1801 | + { |
|
| 1802 | + $success = true; |
|
| 1803 | + // if payment required |
|
| 1804 | + if ($this->checkout->transaction->total() > 0) { |
|
| 1805 | + do_action( |
|
| 1806 | + 'AHEE__EE_Single_Page_Checkout__process_finalize_registration__before_gateway', |
|
| 1807 | + $this->checkout->transaction |
|
| 1808 | + ); |
|
| 1809 | + // attempt payment via payment method |
|
| 1810 | + $success = $this->process_reg_step(); |
|
| 1811 | + } |
|
| 1812 | + if ($success && ! $this->checkout->redirect) { |
|
| 1813 | + $this->checkout->cart->get_grand_total()->save_this_and_descendants_to_txn( |
|
| 1814 | + $this->checkout->transaction->ID() |
|
| 1815 | + ); |
|
| 1816 | + // set return URL |
|
| 1817 | + $this->checkout->redirect_url = add_query_arg( |
|
| 1818 | + array('e_reg_url_link' => $this->checkout->reg_url_link), |
|
| 1819 | + $this->checkout->thank_you_page_url |
|
| 1820 | + ); |
|
| 1821 | + } |
|
| 1822 | + return $success; |
|
| 1823 | + } |
|
| 1824 | + |
|
| 1825 | + |
|
| 1826 | + /** |
|
| 1827 | + * _process_payment |
|
| 1828 | + * |
|
| 1829 | + * @access private |
|
| 1830 | + * @return bool |
|
| 1831 | + * @throws EE_Error |
|
| 1832 | + * @throws InvalidArgumentException |
|
| 1833 | + * @throws ReflectionException |
|
| 1834 | + * @throws RuntimeException |
|
| 1835 | + * @throws \EventEspresso\core\exceptions\InvalidDataTypeException |
|
| 1836 | + * @throws \EventEspresso\core\exceptions\InvalidInterfaceException |
|
| 1837 | + */ |
|
| 1838 | + private function _process_payment() |
|
| 1839 | + { |
|
| 1840 | + // basically confirm that the event hasn't sold out since they hit the page |
|
| 1841 | + if (! $this->_last_second_ticket_verifications()) { |
|
| 1842 | + return false; |
|
| 1843 | + } |
|
| 1844 | + // ya gotta make a choice man |
|
| 1845 | + if (empty($this->checkout->selected_method_of_payment)) { |
|
| 1846 | + $this->checkout->json_response->set_plz_select_method_of_payment( |
|
| 1847 | + esc_html__('Please select a method of payment before proceeding.', 'event_espresso') |
|
| 1848 | + ); |
|
| 1849 | + return false; |
|
| 1850 | + } |
|
| 1851 | + // get EE_Payment_Method object |
|
| 1852 | + if (! $this->checkout->payment_method = $this->_get_payment_method_for_selected_method_of_payment()) { |
|
| 1853 | + return false; |
|
| 1854 | + } |
|
| 1855 | + // setup billing form |
|
| 1856 | + if ($this->checkout->payment_method->is_on_site()) { |
|
| 1857 | + $this->checkout->billing_form = $this->_get_billing_form_for_payment_method( |
|
| 1858 | + $this->checkout->payment_method |
|
| 1859 | + ); |
|
| 1860 | + // bad billing form ? |
|
| 1861 | + if (! $this->_billing_form_is_valid()) { |
|
| 1862 | + return false; |
|
| 1863 | + } |
|
| 1864 | + } |
|
| 1865 | + // ensure primary registrant has been fully processed |
|
| 1866 | + if (! $this->_setup_primary_registrant_prior_to_payment()) { |
|
| 1867 | + return false; |
|
| 1868 | + } |
|
| 1869 | + // if session is close to expiring (under 10 minutes by default) |
|
| 1870 | + if ((time() - EE_Registry::instance()->SSN->expiration()) < EE_Registry::instance()->SSN->extension()) { |
|
| 1871 | + // add some time to session expiration so that payment can be completed |
|
| 1872 | + EE_Registry::instance()->SSN->extend_expiration(); |
|
| 1873 | + } |
|
| 1874 | + /** @type EE_Transaction_Processor $transaction_processor */ |
|
| 1875 | + // $transaction_processor = EE_Registry::instance()->load_class( 'Transaction_Processor' ); |
|
| 1876 | + // in case a registrant leaves to an Off-Site Gateway and never returns, we want to approve any registrations |
|
| 1877 | + // for events with a default reg status of Approved |
|
| 1878 | + // $transaction_processor->toggle_registration_statuses_for_default_approved_events( |
|
| 1879 | + // $this->checkout->transaction, $this->checkout->reg_cache_where_params |
|
| 1880 | + // ); |
|
| 1881 | + // attempt payment |
|
| 1882 | + $payment = $this->_attempt_payment($this->checkout->payment_method); |
|
| 1883 | + // process results |
|
| 1884 | + $payment = $this->_validate_payment($payment); |
|
| 1885 | + $payment = $this->_post_payment_processing($payment); |
|
| 1886 | + // verify payment |
|
| 1887 | + if ($payment instanceof EE_Payment) { |
|
| 1888 | + // store that for later |
|
| 1889 | + $this->checkout->payment = $payment; |
|
| 1890 | + // we can also consider the TXN to not have been failed, so temporarily upgrade it's status to abandoned |
|
| 1891 | + $this->checkout->transaction->toggle_failed_transaction_status(); |
|
| 1892 | + $payment_status = $payment->status(); |
|
| 1893 | + if ($payment_status === EEM_Payment::status_id_approved |
|
| 1894 | + || $payment_status === EEM_Payment::status_id_pending |
|
| 1895 | + ) { |
|
| 1896 | + return true; |
|
| 1897 | + } else { |
|
| 1898 | + return false; |
|
| 1899 | + } |
|
| 1900 | + } elseif ($payment === true) { |
|
| 1901 | + // please note that offline payment methods will NOT make a payment, |
|
| 1902 | + // but instead just mark themselves as the PMD_ID on the transaction, and return true |
|
| 1903 | + $this->checkout->payment = $payment; |
|
| 1904 | + return true; |
|
| 1905 | + } |
|
| 1906 | + // where's my money? |
|
| 1907 | + return false; |
|
| 1908 | + } |
|
| 1909 | + |
|
| 1910 | + |
|
| 1911 | + /** |
|
| 1912 | + * _last_second_ticket_verifications |
|
| 1913 | + * |
|
| 1914 | + * @access public |
|
| 1915 | + * @return bool |
|
| 1916 | + * @throws EE_Error |
|
| 1917 | + */ |
|
| 1918 | + protected function _last_second_ticket_verifications() |
|
| 1919 | + { |
|
| 1920 | + // don't bother re-validating if not a return visit |
|
| 1921 | + if (! $this->checkout->revisit) { |
|
| 1922 | + return true; |
|
| 1923 | + } |
|
| 1924 | + $registrations = $this->checkout->transaction->registrations(); |
|
| 1925 | + if (empty($registrations)) { |
|
| 1926 | + return false; |
|
| 1927 | + } |
|
| 1928 | + foreach ($registrations as $registration) { |
|
| 1929 | + if ($registration instanceof EE_Registration && ! $registration->is_approved()) { |
|
| 1930 | + $event = $registration->event_obj(); |
|
| 1931 | + if ($event instanceof EE_Event && $event->is_sold_out(true)) { |
|
| 1932 | + EE_Error::add_error( |
|
| 1933 | + apply_filters( |
|
| 1934 | + 'FHEE__EE_SPCO_Reg_Step_Payment_Options___last_second_ticket_verifications__sold_out_events_msg', |
|
| 1935 | + sprintf( |
|
| 1936 | + esc_html__( |
|
| 1937 | + 'It appears that the %1$s event that you were about to make a payment for has sold out since you first registered and/or arrived at this page. Please refresh the page and try again. If you have already made a partial payment towards this event, please contact the event administrator for a refund.', |
|
| 1938 | + 'event_espresso' |
|
| 1939 | + ), |
|
| 1940 | + $event->name() |
|
| 1941 | + ) |
|
| 1942 | + ), |
|
| 1943 | + __FILE__, |
|
| 1944 | + __FUNCTION__, |
|
| 1945 | + __LINE__ |
|
| 1946 | + ); |
|
| 1947 | + return false; |
|
| 1948 | + } |
|
| 1949 | + } |
|
| 1950 | + } |
|
| 1951 | + return true; |
|
| 1952 | + } |
|
| 1953 | + |
|
| 1954 | + |
|
| 1955 | + /** |
|
| 1956 | + * redirect_form |
|
| 1957 | + * |
|
| 1958 | + * @access public |
|
| 1959 | + * @return bool |
|
| 1960 | + * @throws EE_Error |
|
| 1961 | + * @throws InvalidArgumentException |
|
| 1962 | + * @throws ReflectionException |
|
| 1963 | + * @throws \EventEspresso\core\exceptions\InvalidDataTypeException |
|
| 1964 | + * @throws \EventEspresso\core\exceptions\InvalidInterfaceException |
|
| 1965 | + */ |
|
| 1966 | + public function redirect_form() |
|
| 1967 | + { |
|
| 1968 | + $payment_method_billing_info = $this->_payment_method_billing_info( |
|
| 1969 | + $this->_get_payment_method_for_selected_method_of_payment() |
|
| 1970 | + ); |
|
| 1971 | + $html = $payment_method_billing_info->get_html(); |
|
| 1972 | + $html .= $this->checkout->redirect_form; |
|
| 1973 | + EE_Registry::instance()->REQ->add_output($html); |
|
| 1974 | + return true; |
|
| 1975 | + } |
|
| 1976 | + |
|
| 1977 | + |
|
| 1978 | + /** |
|
| 1979 | + * _billing_form_is_valid |
|
| 1980 | + * |
|
| 1981 | + * @access private |
|
| 1982 | + * @return bool |
|
| 1983 | + * @throws \EE_Error |
|
| 1984 | + */ |
|
| 1985 | + private function _billing_form_is_valid() |
|
| 1986 | + { |
|
| 1987 | + if (! $this->checkout->payment_method->type_obj()->has_billing_form()) { |
|
| 1988 | + return true; |
|
| 1989 | + } |
|
| 1990 | + if ($this->checkout->billing_form instanceof EE_Billing_Info_Form) { |
|
| 1991 | + if ($this->checkout->billing_form->was_submitted()) { |
|
| 1992 | + $this->checkout->billing_form->receive_form_submission(); |
|
| 1993 | + if ($this->checkout->billing_form->is_valid()) { |
|
| 1994 | + return true; |
|
| 1995 | + } |
|
| 1996 | + $validation_errors = $this->checkout->billing_form->get_validation_errors_accumulated(); |
|
| 1997 | + $error_strings = array(); |
|
| 1998 | + foreach ($validation_errors as $validation_error) { |
|
| 1999 | + if ($validation_error instanceof EE_Validation_Error) { |
|
| 2000 | + $form_section = $validation_error->get_form_section(); |
|
| 2001 | + if ($form_section instanceof EE_Form_Input_Base) { |
|
| 2002 | + $label = $form_section->html_label_text(); |
|
| 2003 | + } elseif ($form_section instanceof EE_Form_Section_Base) { |
|
| 2004 | + $label = $form_section->name(); |
|
| 2005 | + } else { |
|
| 2006 | + $label = esc_html__('Validation Error', 'event_espresso'); |
|
| 2007 | + } |
|
| 2008 | + $error_strings[] = sprintf('%1$s: %2$s', $label, $validation_error->getMessage()); |
|
| 2009 | + } |
|
| 2010 | + } |
|
| 2011 | + EE_Error::add_error( |
|
| 2012 | + sprintf( |
|
| 2013 | + esc_html__( |
|
| 2014 | + 'One or more billing form inputs are invalid and require correction before proceeding. %1$s %2$s', |
|
| 2015 | + 'event_espresso' |
|
| 2016 | + ), |
|
| 2017 | + '<br/>', |
|
| 2018 | + implode('<br/>', $error_strings) |
|
| 2019 | + ), |
|
| 2020 | + __FILE__, |
|
| 2021 | + __FUNCTION__, |
|
| 2022 | + __LINE__ |
|
| 2023 | + ); |
|
| 2024 | + } else { |
|
| 2025 | + EE_Error::add_error( |
|
| 2026 | + esc_html__( |
|
| 2027 | + 'The billing form was not submitted or something prevented it\'s submission.', |
|
| 2028 | + 'event_espresso' |
|
| 2029 | + ), |
|
| 2030 | + __FILE__, |
|
| 2031 | + __FUNCTION__, |
|
| 2032 | + __LINE__ |
|
| 2033 | + ); |
|
| 2034 | + } |
|
| 2035 | + } else { |
|
| 2036 | + EE_Error::add_error( |
|
| 2037 | + esc_html__( |
|
| 2038 | + 'The submitted billing form is invalid possibly due to a technical reason.', |
|
| 2039 | + 'event_espresso' |
|
| 2040 | + ), |
|
| 2041 | + __FILE__, |
|
| 2042 | + __FUNCTION__, |
|
| 2043 | + __LINE__ |
|
| 2044 | + ); |
|
| 2045 | + } |
|
| 2046 | + return false; |
|
| 2047 | + } |
|
| 2048 | + |
|
| 2049 | + |
|
| 2050 | + /** |
|
| 2051 | + * _setup_primary_registrant_prior_to_payment |
|
| 2052 | + * ensures that the primary registrant has a valid attendee object created with the critical details populated |
|
| 2053 | + * (first & last name & email) and that both the transaction object and primary registration object have been saved |
|
| 2054 | + * plz note that any other registrations will NOT be saved at this point (because they may not have any details |
|
| 2055 | + * yet) |
|
| 2056 | + * |
|
| 2057 | + * @access private |
|
| 2058 | + * @return bool |
|
| 2059 | + * @throws EE_Error |
|
| 2060 | + * @throws InvalidArgumentException |
|
| 2061 | + * @throws ReflectionException |
|
| 2062 | + * @throws RuntimeException |
|
| 2063 | + * @throws \EventEspresso\core\exceptions\InvalidDataTypeException |
|
| 2064 | + * @throws \EventEspresso\core\exceptions\InvalidInterfaceException |
|
| 2065 | + */ |
|
| 2066 | + private function _setup_primary_registrant_prior_to_payment() |
|
| 2067 | + { |
|
| 2068 | + // check if transaction has a primary registrant and that it has a related Attendee object |
|
| 2069 | + // if not, then we need to at least gather some primary registrant data before attempting payment |
|
| 2070 | + if ($this->checkout->billing_form instanceof EE_Billing_Attendee_Info_Form |
|
| 2071 | + && ! $this->checkout->transaction_has_primary_registrant() |
|
| 2072 | + && ! $this->_capture_primary_registration_data_from_billing_form() |
|
| 2073 | + ) { |
|
| 2074 | + return false; |
|
| 2075 | + } |
|
| 2076 | + // because saving an object clears it's cache, we need to do the chevy shuffle |
|
| 2077 | + // grab the primary_registration object |
|
| 2078 | + $primary_registration = $this->checkout->transaction->primary_registration(); |
|
| 2079 | + // at this point we'll consider a TXN to not have been failed |
|
| 2080 | + $this->checkout->transaction->toggle_failed_transaction_status(); |
|
| 2081 | + // save the TXN ( which clears cached copy of primary_registration) |
|
| 2082 | + $this->checkout->transaction->save(); |
|
| 2083 | + // grab TXN ID and save it to the primary_registration |
|
| 2084 | + $primary_registration->set_transaction_id($this->checkout->transaction->ID()); |
|
| 2085 | + // save what we have so far |
|
| 2086 | + $primary_registration->save(); |
|
| 2087 | + return true; |
|
| 2088 | + } |
|
| 2089 | + |
|
| 2090 | + |
|
| 2091 | + /** |
|
| 2092 | + * _capture_primary_registration_data_from_billing_form |
|
| 2093 | + * |
|
| 2094 | + * @access private |
|
| 2095 | + * @return bool |
|
| 2096 | + * @throws EE_Error |
|
| 2097 | + * @throws InvalidArgumentException |
|
| 2098 | + * @throws ReflectionException |
|
| 2099 | + * @throws \EventEspresso\core\exceptions\InvalidDataTypeException |
|
| 2100 | + * @throws \EventEspresso\core\exceptions\InvalidInterfaceException |
|
| 2101 | + */ |
|
| 2102 | + private function _capture_primary_registration_data_from_billing_form() |
|
| 2103 | + { |
|
| 2104 | + // convert billing form data into an attendee |
|
| 2105 | + $this->checkout->primary_attendee_obj = $this->checkout->billing_form->create_attendee_from_billing_form_data(); |
|
| 2106 | + if (! $this->checkout->primary_attendee_obj instanceof EE_Attendee) { |
|
| 2107 | + EE_Error::add_error( |
|
| 2108 | + sprintf( |
|
| 2109 | + esc_html__( |
|
| 2110 | + 'The billing form details could not be used for attendee details due to a technical issue.%sPlease try again or contact %s for assistance.', |
|
| 2111 | + 'event_espresso' |
|
| 2112 | + ), |
|
| 2113 | + '<br/>', |
|
| 2114 | + EE_Registry::instance()->CFG->organization->get_pretty('email') |
|
| 2115 | + ), |
|
| 2116 | + __FILE__, |
|
| 2117 | + __FUNCTION__, |
|
| 2118 | + __LINE__ |
|
| 2119 | + ); |
|
| 2120 | + return false; |
|
| 2121 | + } |
|
| 2122 | + $primary_registration = $this->checkout->transaction->primary_registration(); |
|
| 2123 | + if (! $primary_registration instanceof EE_Registration) { |
|
| 2124 | + EE_Error::add_error( |
|
| 2125 | + sprintf( |
|
| 2126 | + esc_html__( |
|
| 2127 | + 'The primary registrant for this transaction could not be determined due to a technical issue.%sPlease try again or contact %s for assistance.', |
|
| 2128 | + 'event_espresso' |
|
| 2129 | + ), |
|
| 2130 | + '<br/>', |
|
| 2131 | + EE_Registry::instance()->CFG->organization->get_pretty('email') |
|
| 2132 | + ), |
|
| 2133 | + __FILE__, |
|
| 2134 | + __FUNCTION__, |
|
| 2135 | + __LINE__ |
|
| 2136 | + ); |
|
| 2137 | + return false; |
|
| 2138 | + } |
|
| 2139 | + if (! $primary_registration->_add_relation_to($this->checkout->primary_attendee_obj, 'Attendee') |
|
| 2140 | + instanceof |
|
| 2141 | + EE_Attendee |
|
| 2142 | + ) { |
|
| 2143 | + EE_Error::add_error( |
|
| 2144 | + sprintf( |
|
| 2145 | + esc_html__( |
|
| 2146 | + 'The primary registrant could not be associated with this transaction due to a technical issue.%sPlease try again or contact %s for assistance.', |
|
| 2147 | + 'event_espresso' |
|
| 2148 | + ), |
|
| 2149 | + '<br/>', |
|
| 2150 | + EE_Registry::instance()->CFG->organization->get_pretty('email') |
|
| 2151 | + ), |
|
| 2152 | + __FILE__, |
|
| 2153 | + __FUNCTION__, |
|
| 2154 | + __LINE__ |
|
| 2155 | + ); |
|
| 2156 | + return false; |
|
| 2157 | + } |
|
| 2158 | + /** @type EE_Registration_Processor $registration_processor */ |
|
| 2159 | + $registration_processor = EE_Registry::instance()->load_class('Registration_Processor'); |
|
| 2160 | + // at this point, we should have enough details about the registrant to consider the registration NOT incomplete |
|
| 2161 | + $registration_processor->toggle_incomplete_registration_status_to_default($primary_registration); |
|
| 2162 | + return true; |
|
| 2163 | + } |
|
| 2164 | + |
|
| 2165 | + |
|
| 2166 | + /** |
|
| 2167 | + * _get_payment_method_for_selected_method_of_payment |
|
| 2168 | + * retrieves a valid payment method |
|
| 2169 | + * |
|
| 2170 | + * @access public |
|
| 2171 | + * @return EE_Payment_Method |
|
| 2172 | + * @throws EE_Error |
|
| 2173 | + * @throws InvalidArgumentException |
|
| 2174 | + * @throws ReflectionException |
|
| 2175 | + * @throws \EventEspresso\core\exceptions\InvalidDataTypeException |
|
| 2176 | + * @throws \EventEspresso\core\exceptions\InvalidInterfaceException |
|
| 2177 | + */ |
|
| 2178 | + private function _get_payment_method_for_selected_method_of_payment() |
|
| 2179 | + { |
|
| 2180 | + if ($this->checkout->selected_method_of_payment === 'events_sold_out') { |
|
| 2181 | + $this->_redirect_because_event_sold_out(); |
|
| 2182 | + return null; |
|
| 2183 | + } |
|
| 2184 | + // get EE_Payment_Method object |
|
| 2185 | + if (isset($this->checkout->available_payment_methods[ $this->checkout->selected_method_of_payment ])) { |
|
| 2186 | + $payment_method = $this->checkout->available_payment_methods[ $this->checkout->selected_method_of_payment ]; |
|
| 2187 | + } else { |
|
| 2188 | + // load EEM_Payment_Method |
|
| 2189 | + EE_Registry::instance()->load_model('Payment_Method'); |
|
| 2190 | + /** @type EEM_Payment_Method $EEM_Payment_Method */ |
|
| 2191 | + $EEM_Payment_Method = EE_Registry::instance()->LIB->EEM_Payment_Method; |
|
| 2192 | + $payment_method = $EEM_Payment_Method->get_one_by_slug($this->checkout->selected_method_of_payment); |
|
| 2193 | + } |
|
| 2194 | + // verify $payment_method |
|
| 2195 | + if (! $payment_method instanceof EE_Payment_Method) { |
|
| 2196 | + // not a payment |
|
| 2197 | + EE_Error::add_error( |
|
| 2198 | + sprintf( |
|
| 2199 | + esc_html__( |
|
| 2200 | + 'The selected method of payment could not be determined due to a technical issue.%sPlease try again or contact %s for assistance.', |
|
| 2201 | + 'event_espresso' |
|
| 2202 | + ), |
|
| 2203 | + '<br/>', |
|
| 2204 | + EE_Registry::instance()->CFG->organization->get_pretty('email') |
|
| 2205 | + ), |
|
| 2206 | + __FILE__, |
|
| 2207 | + __FUNCTION__, |
|
| 2208 | + __LINE__ |
|
| 2209 | + ); |
|
| 2210 | + return null; |
|
| 2211 | + } |
|
| 2212 | + // and verify it has a valid Payment_Method Type object |
|
| 2213 | + if (! $payment_method->type_obj() instanceof EE_PMT_Base) { |
|
| 2214 | + // not a payment |
|
| 2215 | + EE_Error::add_error( |
|
| 2216 | + sprintf( |
|
| 2217 | + esc_html__( |
|
| 2218 | + 'A valid payment method could not be determined due to a technical issue.%sPlease try again or contact %s for assistance.', |
|
| 2219 | + 'event_espresso' |
|
| 2220 | + ), |
|
| 2221 | + '<br/>', |
|
| 2222 | + EE_Registry::instance()->CFG->organization->get_pretty('email') |
|
| 2223 | + ), |
|
| 2224 | + __FILE__, |
|
| 2225 | + __FUNCTION__, |
|
| 2226 | + __LINE__ |
|
| 2227 | + ); |
|
| 2228 | + return null; |
|
| 2229 | + } |
|
| 2230 | + return $payment_method; |
|
| 2231 | + } |
|
| 2232 | + |
|
| 2233 | + |
|
| 2234 | + /** |
|
| 2235 | + * _attempt_payment |
|
| 2236 | + * |
|
| 2237 | + * @access private |
|
| 2238 | + * @type EE_Payment_Method $payment_method |
|
| 2239 | + * @return mixed EE_Payment | boolean |
|
| 2240 | + * @throws EE_Error |
|
| 2241 | + * @throws InvalidArgumentException |
|
| 2242 | + * @throws ReflectionException |
|
| 2243 | + * @throws \EventEspresso\core\exceptions\InvalidDataTypeException |
|
| 2244 | + * @throws \EventEspresso\core\exceptions\InvalidInterfaceException |
|
| 2245 | + */ |
|
| 2246 | + private function _attempt_payment(EE_Payment_Method $payment_method) |
|
| 2247 | + { |
|
| 2248 | + $payment = null; |
|
| 2249 | + $this->checkout->transaction->save(); |
|
| 2250 | + $payment_processor = EE_Registry::instance()->load_core('Payment_Processor'); |
|
| 2251 | + if (! $payment_processor instanceof EE_Payment_Processor) { |
|
| 2252 | + return false; |
|
| 2253 | + } |
|
| 2254 | + try { |
|
| 2255 | + $payment_processor->set_revisit($this->checkout->revisit); |
|
| 2256 | + // generate payment object |
|
| 2257 | + $payment = $payment_processor->process_payment( |
|
| 2258 | + $payment_method, |
|
| 2259 | + $this->checkout->transaction, |
|
| 2260 | + $this->checkout->amount_owing, |
|
| 2261 | + $this->checkout->billing_form, |
|
| 2262 | + $this->_get_return_url($payment_method), |
|
| 2263 | + 'CART', |
|
| 2264 | + $this->checkout->admin_request, |
|
| 2265 | + true, |
|
| 2266 | + $this->reg_step_url() |
|
| 2267 | + ); |
|
| 2268 | + } catch (Exception $e) { |
|
| 2269 | + $this->_handle_payment_processor_exception($e); |
|
| 2270 | + } |
|
| 2271 | + return $payment; |
|
| 2272 | + } |
|
| 2273 | + |
|
| 2274 | + |
|
| 2275 | + /** |
|
| 2276 | + * _handle_payment_processor_exception |
|
| 2277 | + * |
|
| 2278 | + * @access protected |
|
| 2279 | + * @param \Exception $e |
|
| 2280 | + * @return void |
|
| 2281 | + * @throws EE_Error |
|
| 2282 | + * @throws InvalidArgumentException |
|
| 2283 | + * @throws \EventEspresso\core\exceptions\InvalidDataTypeException |
|
| 2284 | + * @throws \EventEspresso\core\exceptions\InvalidInterfaceException |
|
| 2285 | + */ |
|
| 2286 | + protected function _handle_payment_processor_exception(Exception $e) |
|
| 2287 | + { |
|
| 2288 | + EE_Error::add_error( |
|
| 2289 | + sprintf( |
|
| 2290 | + esc_html__( |
|
| 2291 | + 'The payment could not br processed due to a technical issue.%1$sPlease try again or contact %2$s for assistance.||The following Exception was thrown in %4$s on line %5$s:%1$s%3$s', |
|
| 2292 | + 'event_espresso' |
|
| 2293 | + ), |
|
| 2294 | + '<br/>', |
|
| 2295 | + EE_Registry::instance()->CFG->organization->get_pretty('email'), |
|
| 2296 | + $e->getMessage(), |
|
| 2297 | + $e->getFile(), |
|
| 2298 | + $e->getLine() |
|
| 2299 | + ), |
|
| 2300 | + __FILE__, |
|
| 2301 | + __FUNCTION__, |
|
| 2302 | + __LINE__ |
|
| 2303 | + ); |
|
| 2304 | + } |
|
| 2305 | + |
|
| 2306 | + |
|
| 2307 | + /** |
|
| 2308 | + * _get_return_url |
|
| 2309 | + * |
|
| 2310 | + * @access protected |
|
| 2311 | + * @param \EE_Payment_Method $payment_method |
|
| 2312 | + * @return string |
|
| 2313 | + * @throws \EE_Error |
|
| 2314 | + */ |
|
| 2315 | + protected function _get_return_url(EE_Payment_Method $payment_method) |
|
| 2316 | + { |
|
| 2317 | + $return_url = ''; |
|
| 2318 | + switch ($payment_method->type_obj()->payment_occurs()) { |
|
| 2319 | + case EE_PMT_Base::offsite: |
|
| 2320 | + $return_url = add_query_arg( |
|
| 2321 | + array( |
|
| 2322 | + 'action' => 'process_gateway_response', |
|
| 2323 | + 'selected_method_of_payment' => $this->checkout->selected_method_of_payment, |
|
| 2324 | + 'spco_txn' => $this->checkout->transaction->ID(), |
|
| 2325 | + ), |
|
| 2326 | + $this->reg_step_url() |
|
| 2327 | + ); |
|
| 2328 | + break; |
|
| 2329 | + case EE_PMT_Base::onsite: |
|
| 2330 | + case EE_PMT_Base::offline: |
|
| 2331 | + $return_url = $this->checkout->next_step->reg_step_url(); |
|
| 2332 | + break; |
|
| 2333 | + } |
|
| 2334 | + return $return_url; |
|
| 2335 | + } |
|
| 2336 | + |
|
| 2337 | + |
|
| 2338 | + /** |
|
| 2339 | + * _validate_payment |
|
| 2340 | + * |
|
| 2341 | + * @access private |
|
| 2342 | + * @param EE_Payment $payment |
|
| 2343 | + * @return EE_Payment|FALSE |
|
| 2344 | + * @throws EE_Error |
|
| 2345 | + * @throws InvalidArgumentException |
|
| 2346 | + * @throws \EventEspresso\core\exceptions\InvalidDataTypeException |
|
| 2347 | + * @throws \EventEspresso\core\exceptions\InvalidInterfaceException |
|
| 2348 | + */ |
|
| 2349 | + private function _validate_payment($payment = null) |
|
| 2350 | + { |
|
| 2351 | + if ($this->checkout->payment_method->is_off_line()) { |
|
| 2352 | + return true; |
|
| 2353 | + } |
|
| 2354 | + // verify payment object |
|
| 2355 | + if (! $payment instanceof EE_Payment) { |
|
| 2356 | + // not a payment |
|
| 2357 | + EE_Error::add_error( |
|
| 2358 | + sprintf( |
|
| 2359 | + esc_html__( |
|
| 2360 | + 'A valid payment was not generated due to a technical issue.%1$sPlease try again or contact %2$s for assistance.', |
|
| 2361 | + 'event_espresso' |
|
| 2362 | + ), |
|
| 2363 | + '<br/>', |
|
| 2364 | + EE_Registry::instance()->CFG->organization->get_pretty('email') |
|
| 2365 | + ), |
|
| 2366 | + __FILE__, |
|
| 2367 | + __FUNCTION__, |
|
| 2368 | + __LINE__ |
|
| 2369 | + ); |
|
| 2370 | + return false; |
|
| 2371 | + } |
|
| 2372 | + return $payment; |
|
| 2373 | + } |
|
| 2374 | + |
|
| 2375 | + |
|
| 2376 | + /** |
|
| 2377 | + * _post_payment_processing |
|
| 2378 | + * |
|
| 2379 | + * @access private |
|
| 2380 | + * @param EE_Payment|bool $payment |
|
| 2381 | + * @return bool |
|
| 2382 | + * @throws EE_Error |
|
| 2383 | + * @throws InvalidArgumentException |
|
| 2384 | + * @throws \EventEspresso\core\exceptions\InvalidDataTypeException |
|
| 2385 | + * @throws \EventEspresso\core\exceptions\InvalidInterfaceException |
|
| 2386 | + */ |
|
| 2387 | + private function _post_payment_processing($payment = null) |
|
| 2388 | + { |
|
| 2389 | + // Off-Line payment? |
|
| 2390 | + if ($payment === true) { |
|
| 2391 | + // $this->_setup_redirect_for_next_step(); |
|
| 2392 | + return true; |
|
| 2393 | + // On-Site payment? |
|
| 2394 | + } elseif ($this->checkout->payment_method->is_on_site()) { |
|
| 2395 | + if (! $this->_process_payment_status($payment, EE_PMT_Base::onsite)) { |
|
| 2396 | + // $this->_setup_redirect_for_next_step(); |
|
| 2397 | + $this->checkout->continue_reg = false; |
|
| 2398 | + } |
|
| 2399 | + // Off-Site payment? |
|
| 2400 | + } elseif ($this->checkout->payment_method->is_off_site()) { |
|
| 2401 | + // if a payment object was made and it specifies a redirect url, then we'll setup that redirect info |
|
| 2402 | + if ($payment instanceof EE_Payment && $payment->redirect_url()) { |
|
| 2403 | + do_action('AHEE_log', __CLASS__, __FUNCTION__, $payment->redirect_url(), '$payment->redirect_url()'); |
|
| 2404 | + $this->checkout->redirect = true; |
|
| 2405 | + $this->checkout->redirect_form = $payment->redirect_form(); |
|
| 2406 | + $this->checkout->redirect_url = $this->reg_step_url('redirect_form'); |
|
| 2407 | + // set JSON response |
|
| 2408 | + $this->checkout->json_response->set_redirect_form($this->checkout->redirect_form); |
|
| 2409 | + // and lastly, let's bump the payment status to pending |
|
| 2410 | + $payment->set_status(EEM_Payment::status_id_pending); |
|
| 2411 | + $payment->save(); |
|
| 2412 | + } else { |
|
| 2413 | + // not a payment |
|
| 2414 | + $this->checkout->continue_reg = false; |
|
| 2415 | + EE_Error::add_error( |
|
| 2416 | + sprintf( |
|
| 2417 | + esc_html__( |
|
| 2418 | + 'It appears the Off Site Payment Method was not configured properly.%sPlease try again or contact %s for assistance.', |
|
| 2419 | + 'event_espresso' |
|
| 2420 | + ), |
|
| 2421 | + '<br/>', |
|
| 2422 | + EE_Registry::instance()->CFG->organization->get_pretty('email') |
|
| 2423 | + ), |
|
| 2424 | + __FILE__, |
|
| 2425 | + __FUNCTION__, |
|
| 2426 | + __LINE__ |
|
| 2427 | + ); |
|
| 2428 | + } |
|
| 2429 | + } else { |
|
| 2430 | + // ummm ya... not Off-Line, not On-Site, not off-Site ???? |
|
| 2431 | + $this->checkout->continue_reg = false; |
|
| 2432 | + return false; |
|
| 2433 | + } |
|
| 2434 | + return $payment; |
|
| 2435 | + } |
|
| 2436 | + |
|
| 2437 | + |
|
| 2438 | + /** |
|
| 2439 | + * _process_payment_status |
|
| 2440 | + * |
|
| 2441 | + * @access private |
|
| 2442 | + * @type EE_Payment $payment |
|
| 2443 | + * @param string $payment_occurs |
|
| 2444 | + * @return bool |
|
| 2445 | + * @throws EE_Error |
|
| 2446 | + * @throws InvalidArgumentException |
|
| 2447 | + * @throws \EventEspresso\core\exceptions\InvalidDataTypeException |
|
| 2448 | + * @throws \EventEspresso\core\exceptions\InvalidInterfaceException |
|
| 2449 | + */ |
|
| 2450 | + private function _process_payment_status($payment, $payment_occurs = EE_PMT_Base::offline) |
|
| 2451 | + { |
|
| 2452 | + // off-line payment? carry on |
|
| 2453 | + if ($payment_occurs === EE_PMT_Base::offline) { |
|
| 2454 | + return true; |
|
| 2455 | + } |
|
| 2456 | + // verify payment validity |
|
| 2457 | + if ($payment instanceof EE_Payment) { |
|
| 2458 | + do_action('AHEE_log', __CLASS__, __FUNCTION__, $payment->status(), '$payment->status()'); |
|
| 2459 | + $msg = $payment->gateway_response(); |
|
| 2460 | + // check results |
|
| 2461 | + switch ($payment->status()) { |
|
| 2462 | + // good payment |
|
| 2463 | + case EEM_Payment::status_id_approved: |
|
| 2464 | + EE_Error::add_success( |
|
| 2465 | + esc_html__('Your payment was processed successfully.', 'event_espresso'), |
|
| 2466 | + __FILE__, |
|
| 2467 | + __FUNCTION__, |
|
| 2468 | + __LINE__ |
|
| 2469 | + ); |
|
| 2470 | + return true; |
|
| 2471 | + break; |
|
| 2472 | + // slow payment |
|
| 2473 | + case EEM_Payment::status_id_pending: |
|
| 2474 | + if (empty($msg)) { |
|
| 2475 | + $msg = esc_html__( |
|
| 2476 | + 'Your payment appears to have been processed successfully, but the Instant Payment Notification has not yet been received. It should arrive shortly.', |
|
| 2477 | + 'event_espresso' |
|
| 2478 | + ); |
|
| 2479 | + } |
|
| 2480 | + EE_Error::add_success($msg, __FILE__, __FUNCTION__, __LINE__); |
|
| 2481 | + return true; |
|
| 2482 | + break; |
|
| 2483 | + // don't wanna payment |
|
| 2484 | + case EEM_Payment::status_id_cancelled: |
|
| 2485 | + if (empty($msg)) { |
|
| 2486 | + $msg = _n( |
|
| 2487 | + 'Payment cancelled. Please try again.', |
|
| 2488 | + 'Payment cancelled. Please try again or select another method of payment.', |
|
| 2489 | + count($this->checkout->available_payment_methods), |
|
| 2490 | + 'event_espresso' |
|
| 2491 | + ); |
|
| 2492 | + } |
|
| 2493 | + EE_Error::add_attention($msg, __FILE__, __FUNCTION__, __LINE__); |
|
| 2494 | + return false; |
|
| 2495 | + break; |
|
| 2496 | + // not enough payment |
|
| 2497 | + case EEM_Payment::status_id_declined: |
|
| 2498 | + if (empty($msg)) { |
|
| 2499 | + $msg = _n( |
|
| 2500 | + 'We\'re sorry but your payment was declined. Please try again.', |
|
| 2501 | + 'We\'re sorry but your payment was declined. Please try again or select another method of payment.', |
|
| 2502 | + count($this->checkout->available_payment_methods), |
|
| 2503 | + 'event_espresso' |
|
| 2504 | + ); |
|
| 2505 | + } |
|
| 2506 | + EE_Error::add_attention($msg, __FILE__, __FUNCTION__, __LINE__); |
|
| 2507 | + return false; |
|
| 2508 | + break; |
|
| 2509 | + // bad payment |
|
| 2510 | + case EEM_Payment::status_id_failed: |
|
| 2511 | + if (! empty($msg)) { |
|
| 2512 | + EE_Error::add_error($msg, __FILE__, __FUNCTION__, __LINE__); |
|
| 2513 | + return false; |
|
| 2514 | + } |
|
| 2515 | + // default to error below |
|
| 2516 | + break; |
|
| 2517 | + } |
|
| 2518 | + } |
|
| 2519 | + // off-site payment gateway responses are too unreliable, so let's just assume that |
|
| 2520 | + // the payment processing is just running slower than the registrant's request |
|
| 2521 | + if ($payment_occurs === EE_PMT_Base::offsite) { |
|
| 2522 | + return true; |
|
| 2523 | + } |
|
| 2524 | + EE_Error::add_error( |
|
| 2525 | + sprintf( |
|
| 2526 | + esc_html__( |
|
| 2527 | + 'Your payment could not be processed successfully due to a technical issue.%sPlease try again or contact %s for assistance.', |
|
| 2528 | + 'event_espresso' |
|
| 2529 | + ), |
|
| 2530 | + '<br/>', |
|
| 2531 | + EE_Registry::instance()->CFG->organization->get_pretty('email') |
|
| 2532 | + ), |
|
| 2533 | + __FILE__, |
|
| 2534 | + __FUNCTION__, |
|
| 2535 | + __LINE__ |
|
| 2536 | + ); |
|
| 2537 | + return false; |
|
| 2538 | + } |
|
| 2539 | + |
|
| 2540 | + |
|
| 2541 | + |
|
| 2542 | + |
|
| 2543 | + |
|
| 2544 | + |
|
| 2545 | + /********************************************************************************************************/ |
|
| 2546 | + /********************************** PROCESS GATEWAY RESPONSE **********************************/ |
|
| 2547 | + /********************************************************************************************************/ |
|
| 2548 | + /** |
|
| 2549 | + * process_gateway_response |
|
| 2550 | + * this is the return point for Off-Site Payment Methods |
|
| 2551 | + * It will attempt to "handle the IPN" if it appears that this has not already occurred, |
|
| 2552 | + * otherwise, it will load up the last payment made for the TXN. |
|
| 2553 | + * If the payment retrieved looks good, it will then either: |
|
| 2554 | + * complete the current step and allow advancement to the next reg step |
|
| 2555 | + * or present the payment options again |
|
| 2556 | + * |
|
| 2557 | + * @access private |
|
| 2558 | + * @return EE_Payment|FALSE |
|
| 2559 | + * @throws EE_Error |
|
| 2560 | + * @throws InvalidArgumentException |
|
| 2561 | + * @throws ReflectionException |
|
| 2562 | + * @throws \EventEspresso\core\exceptions\InvalidDataTypeException |
|
| 2563 | + * @throws \EventEspresso\core\exceptions\InvalidInterfaceException |
|
| 2564 | + * @throws \EventEspresso\core\exceptions\InvalidSessionDataException |
|
| 2565 | + */ |
|
| 2566 | + public function process_gateway_response() |
|
| 2567 | + { |
|
| 2568 | + $payment = null; |
|
| 2569 | + // how have they chosen to pay? |
|
| 2570 | + $this->checkout->selected_method_of_payment = $this->_get_selected_method_of_payment(true); |
|
| 2571 | + // get EE_Payment_Method object |
|
| 2572 | + if (! $this->checkout->payment_method = $this->_get_payment_method_for_selected_method_of_payment()) { |
|
| 2573 | + $this->checkout->continue_reg = false; |
|
| 2574 | + return false; |
|
| 2575 | + } |
|
| 2576 | + if (! $this->checkout->payment_method->is_off_site()) { |
|
| 2577 | + return false; |
|
| 2578 | + } |
|
| 2579 | + $this->_validate_offsite_return(); |
|
| 2580 | + // DEBUG LOG |
|
| 2581 | + // $this->checkout->log( |
|
| 2582 | + // __CLASS__, |
|
| 2583 | + // __FUNCTION__, |
|
| 2584 | + // __LINE__, |
|
| 2585 | + // array( |
|
| 2586 | + // 'selected_method_of_payment' => $this->checkout->selected_method_of_payment, |
|
| 2587 | + // 'payment_method' => $this->checkout->payment_method, |
|
| 2588 | + // ), |
|
| 2589 | + // true |
|
| 2590 | + // ); |
|
| 2591 | + // verify TXN |
|
| 2592 | + if ($this->checkout->transaction instanceof EE_Transaction) { |
|
| 2593 | + $gateway = $this->checkout->payment_method->type_obj()->get_gateway(); |
|
| 2594 | + if (! $gateway instanceof EE_Offsite_Gateway) { |
|
| 2595 | + $this->checkout->continue_reg = false; |
|
| 2596 | + return false; |
|
| 2597 | + } |
|
| 2598 | + $payment = $this->_process_off_site_payment($gateway); |
|
| 2599 | + $payment = $this->_process_cancelled_payments($payment); |
|
| 2600 | + $payment = $this->_validate_payment($payment); |
|
| 2601 | + // if payment was not declined by the payment gateway or cancelled by the registrant |
|
| 2602 | + if ($this->_process_payment_status($payment, EE_PMT_Base::offsite)) { |
|
| 2603 | + // $this->_setup_redirect_for_next_step(); |
|
| 2604 | + // store that for later |
|
| 2605 | + $this->checkout->payment = $payment; |
|
| 2606 | + // mark this reg step as completed, as long as gateway doesn't use a separate IPN request, |
|
| 2607 | + // because we will complete this step during the IPN processing then |
|
| 2608 | + if ($gateway instanceof EE_Offsite_Gateway && ! $this->handle_IPN_in_this_request()) { |
|
| 2609 | + $this->set_completed(); |
|
| 2610 | + } |
|
| 2611 | + return true; |
|
| 2612 | + } |
|
| 2613 | + } |
|
| 2614 | + // DEBUG LOG |
|
| 2615 | + // $this->checkout->log( |
|
| 2616 | + // __CLASS__, |
|
| 2617 | + // __FUNCTION__, |
|
| 2618 | + // __LINE__, |
|
| 2619 | + // array('payment' => $payment) |
|
| 2620 | + // ); |
|
| 2621 | + $this->checkout->continue_reg = false; |
|
| 2622 | + return false; |
|
| 2623 | + } |
|
| 2624 | + |
|
| 2625 | + |
|
| 2626 | + /** |
|
| 2627 | + * _validate_return |
|
| 2628 | + * |
|
| 2629 | + * @access private |
|
| 2630 | + * @return void |
|
| 2631 | + * @throws EE_Error |
|
| 2632 | + * @throws InvalidArgumentException |
|
| 2633 | + * @throws \EventEspresso\core\exceptions\InvalidDataTypeException |
|
| 2634 | + * @throws \EventEspresso\core\exceptions\InvalidInterfaceException |
|
| 2635 | + * @throws \EventEspresso\core\exceptions\InvalidSessionDataException |
|
| 2636 | + */ |
|
| 2637 | + private function _validate_offsite_return() |
|
| 2638 | + { |
|
| 2639 | + $TXN_ID = (int) EE_Registry::instance()->REQ->get('spco_txn', 0); |
|
| 2640 | + if ($TXN_ID !== $this->checkout->transaction->ID()) { |
|
| 2641 | + // Houston... we might have a problem |
|
| 2642 | + $invalid_TXN = false; |
|
| 2643 | + // first gather some info |
|
| 2644 | + $valid_TXN = EEM_Transaction::instance()->get_one_by_ID($TXN_ID); |
|
| 2645 | + $primary_registrant = $valid_TXN instanceof EE_Transaction |
|
| 2646 | + ? $valid_TXN->primary_registration() |
|
| 2647 | + : null; |
|
| 2648 | + // let's start by retrieving the cart for this TXN |
|
| 2649 | + $cart = $this->checkout->get_cart_for_transaction($this->checkout->transaction); |
|
| 2650 | + if ($cart instanceof EE_Cart) { |
|
| 2651 | + // verify that the current cart has tickets |
|
| 2652 | + $tickets = $cart->get_tickets(); |
|
| 2653 | + if (empty($tickets)) { |
|
| 2654 | + $invalid_TXN = true; |
|
| 2655 | + } |
|
| 2656 | + } else { |
|
| 2657 | + $invalid_TXN = true; |
|
| 2658 | + } |
|
| 2659 | + $valid_TXN_SID = $primary_registrant instanceof EE_Registration |
|
| 2660 | + ? $primary_registrant->session_ID() |
|
| 2661 | + : null; |
|
| 2662 | + // validate current Session ID and compare against valid TXN session ID |
|
| 2663 | + if ($invalid_TXN // if this is already true, then skip other checks |
|
| 2664 | + || EE_Session::instance()->id() === null |
|
| 2665 | + || ( |
|
| 2666 | + // WARNING !!! |
|
| 2667 | + // this could be PayPal sending back duplicate requests (ya they do that) |
|
| 2668 | + // or it **could** mean someone is simply registering AGAIN after having just done so |
|
| 2669 | + // so now we need to determine if this current TXN looks valid or not |
|
| 2670 | + // and whether this reg step has even been started ? |
|
| 2671 | + EE_Session::instance()->id() === $valid_TXN_SID |
|
| 2672 | + // really? you're half way through this reg step, but you never started it ? |
|
| 2673 | + && $this->checkout->transaction->reg_step_completed($this->slug()) === false |
|
| 2674 | + ) |
|
| 2675 | + ) { |
|
| 2676 | + $invalid_TXN = true; |
|
| 2677 | + } |
|
| 2678 | + if ($invalid_TXN) { |
|
| 2679 | + // is the valid TXN completed ? |
|
| 2680 | + if ($valid_TXN instanceof EE_Transaction) { |
|
| 2681 | + // has this step even been started ? |
|
| 2682 | + $reg_step_completed = $valid_TXN->reg_step_completed($this->slug()); |
|
| 2683 | + if ($reg_step_completed !== false && $reg_step_completed !== true) { |
|
| 2684 | + // so it **looks** like this is a double request from PayPal |
|
| 2685 | + // so let's try to pick up where we left off |
|
| 2686 | + $this->checkout->transaction = $valid_TXN; |
|
| 2687 | + $this->checkout->refresh_all_entities(true); |
|
| 2688 | + return; |
|
| 2689 | + } |
|
| 2690 | + } |
|
| 2691 | + // you appear to be lost? |
|
| 2692 | + $this->_redirect_wayward_request($primary_registrant); |
|
| 2693 | + } |
|
| 2694 | + } |
|
| 2695 | + } |
|
| 2696 | + |
|
| 2697 | + |
|
| 2698 | + /** |
|
| 2699 | + * _redirect_wayward_request |
|
| 2700 | + * |
|
| 2701 | + * @access private |
|
| 2702 | + * @param \EE_Registration|null $primary_registrant |
|
| 2703 | + * @return bool |
|
| 2704 | + * @throws EE_Error |
|
| 2705 | + * @throws InvalidArgumentException |
|
| 2706 | + * @throws \EventEspresso\core\exceptions\InvalidDataTypeException |
|
| 2707 | + * @throws \EventEspresso\core\exceptions\InvalidInterfaceException |
|
| 2708 | + */ |
|
| 2709 | + private function _redirect_wayward_request(EE_Registration $primary_registrant) |
|
| 2710 | + { |
|
| 2711 | + if (! $primary_registrant instanceof EE_Registration) { |
|
| 2712 | + // try redirecting based on the current TXN |
|
| 2713 | + $primary_registrant = $this->checkout->transaction instanceof EE_Transaction |
|
| 2714 | + ? $this->checkout->transaction->primary_registration() |
|
| 2715 | + : null; |
|
| 2716 | + } |
|
| 2717 | + if (! $primary_registrant instanceof EE_Registration) { |
|
| 2718 | + EE_Error::add_error( |
|
| 2719 | + sprintf( |
|
| 2720 | + esc_html__( |
|
| 2721 | + 'Invalid information was received from the Off-Site Payment Processor and your Transaction details could not be retrieved from the database.%1$sPlease try again or contact %2$s for assistance.', |
|
| 2722 | + 'event_espresso' |
|
| 2723 | + ), |
|
| 2724 | + '<br/>', |
|
| 2725 | + EE_Registry::instance()->CFG->organization->get_pretty('email') |
|
| 2726 | + ), |
|
| 2727 | + __FILE__, |
|
| 2728 | + __FUNCTION__, |
|
| 2729 | + __LINE__ |
|
| 2730 | + ); |
|
| 2731 | + return false; |
|
| 2732 | + } |
|
| 2733 | + // make sure transaction is not locked |
|
| 2734 | + $this->checkout->transaction->unlock(); |
|
| 2735 | + wp_safe_redirect( |
|
| 2736 | + add_query_arg( |
|
| 2737 | + array( |
|
| 2738 | + 'e_reg_url_link' => $primary_registrant->reg_url_link(), |
|
| 2739 | + ), |
|
| 2740 | + $this->checkout->thank_you_page_url |
|
| 2741 | + ) |
|
| 2742 | + ); |
|
| 2743 | + exit(); |
|
| 2744 | + } |
|
| 2745 | + |
|
| 2746 | + |
|
| 2747 | + /** |
|
| 2748 | + * _process_off_site_payment |
|
| 2749 | + * |
|
| 2750 | + * @access private |
|
| 2751 | + * @param \EE_Offsite_Gateway $gateway |
|
| 2752 | + * @return EE_Payment |
|
| 2753 | + * @throws EE_Error |
|
| 2754 | + * @throws InvalidArgumentException |
|
| 2755 | + * @throws \EventEspresso\core\exceptions\InvalidDataTypeException |
|
| 2756 | + * @throws \EventEspresso\core\exceptions\InvalidInterfaceException |
|
| 2757 | + */ |
|
| 2758 | + private function _process_off_site_payment(EE_Offsite_Gateway $gateway) |
|
| 2759 | + { |
|
| 2760 | + try { |
|
| 2761 | + $request_data = \EE_Registry::instance()->REQ->params(); |
|
| 2762 | + // if gateway uses_separate_IPN_request, then we don't have to process the IPN manually |
|
| 2763 | + $this->set_handle_IPN_in_this_request( |
|
| 2764 | + $gateway->handle_IPN_in_this_request($request_data, false) |
|
| 2765 | + ); |
|
| 2766 | + if ($this->handle_IPN_in_this_request()) { |
|
| 2767 | + // get payment details and process results |
|
| 2768 | + /** @type EE_Payment_Processor $payment_processor */ |
|
| 2769 | + $payment_processor = EE_Registry::instance()->load_core('Payment_Processor'); |
|
| 2770 | + $payment = $payment_processor->process_ipn( |
|
| 2771 | + $request_data, |
|
| 2772 | + $this->checkout->transaction, |
|
| 2773 | + $this->checkout->payment_method, |
|
| 2774 | + true, |
|
| 2775 | + false |
|
| 2776 | + ); |
|
| 2777 | + // $payment_source = 'process_ipn'; |
|
| 2778 | + } else { |
|
| 2779 | + $payment = $this->checkout->transaction->last_payment(); |
|
| 2780 | + // $payment_source = 'last_payment'; |
|
| 2781 | + } |
|
| 2782 | + } catch (Exception $e) { |
|
| 2783 | + // let's just eat the exception and try to move on using any previously set payment info |
|
| 2784 | + $payment = $this->checkout->transaction->last_payment(); |
|
| 2785 | + // $payment_source = 'last_payment after Exception'; |
|
| 2786 | + // but if we STILL don't have a payment object |
|
| 2787 | + if (! $payment instanceof EE_Payment) { |
|
| 2788 | + // then we'll object ! ( not object like a thing... but object like what a lawyer says ! ) |
|
| 2789 | + $this->_handle_payment_processor_exception($e); |
|
| 2790 | + } |
|
| 2791 | + } |
|
| 2792 | + // DEBUG LOG |
|
| 2793 | + // $this->checkout->log( |
|
| 2794 | + // __CLASS__, |
|
| 2795 | + // __FUNCTION__, |
|
| 2796 | + // __LINE__, |
|
| 2797 | + // array( |
|
| 2798 | + // 'process_ipn_payment' => $payment, |
|
| 2799 | + // 'payment_source' => $payment_source, |
|
| 2800 | + // ) |
|
| 2801 | + // ); |
|
| 2802 | + return $payment; |
|
| 2803 | + } |
|
| 2804 | + |
|
| 2805 | + |
|
| 2806 | + /** |
|
| 2807 | + * _process_cancelled_payments |
|
| 2808 | + * just makes sure that the payment status gets updated correctly |
|
| 2809 | + * so tha tan error isn't generated during payment validation |
|
| 2810 | + * |
|
| 2811 | + * @access private |
|
| 2812 | + * @param EE_Payment $payment |
|
| 2813 | + * @return EE_Payment | FALSE |
|
| 2814 | + * @throws \EE_Error |
|
| 2815 | + */ |
|
| 2816 | + private function _process_cancelled_payments($payment = null) |
|
| 2817 | + { |
|
| 2818 | + if ($payment instanceof EE_Payment |
|
| 2819 | + && isset($_REQUEST['ee_cancel_payment']) |
|
| 2820 | + && $payment->status() === EEM_Payment::status_id_failed |
|
| 2821 | + ) { |
|
| 2822 | + $payment->set_status(EEM_Payment::status_id_cancelled); |
|
| 2823 | + } |
|
| 2824 | + return $payment; |
|
| 2825 | + } |
|
| 2826 | + |
|
| 2827 | + |
|
| 2828 | + /** |
|
| 2829 | + * get_transaction_details_for_gateways |
|
| 2830 | + * |
|
| 2831 | + * @access public |
|
| 2832 | + * @return int |
|
| 2833 | + * @throws EE_Error |
|
| 2834 | + * @throws InvalidArgumentException |
|
| 2835 | + * @throws ReflectionException |
|
| 2836 | + * @throws \EventEspresso\core\exceptions\InvalidDataTypeException |
|
| 2837 | + * @throws \EventEspresso\core\exceptions\InvalidInterfaceException |
|
| 2838 | + */ |
|
| 2839 | + public function get_transaction_details_for_gateways() |
|
| 2840 | + { |
|
| 2841 | + $txn_details = array(); |
|
| 2842 | + // ya gotta make a choice man |
|
| 2843 | + if (empty($this->checkout->selected_method_of_payment)) { |
|
| 2844 | + $txn_details = array( |
|
| 2845 | + 'error' => esc_html__('Please select a method of payment before proceeding.', 'event_espresso'), |
|
| 2846 | + ); |
|
| 2847 | + } |
|
| 2848 | + // get EE_Payment_Method object |
|
| 2849 | + if (empty($txn_details) |
|
| 2850 | + && |
|
| 2851 | + ! $this->checkout->payment_method = $this->_get_payment_method_for_selected_method_of_payment() |
|
| 2852 | + ) { |
|
| 2853 | + $txn_details = array( |
|
| 2854 | + 'selected_method_of_payment' => $this->checkout->selected_method_of_payment, |
|
| 2855 | + 'error' => esc_html__( |
|
| 2856 | + 'A valid Payment Method could not be determined.', |
|
| 2857 | + 'event_espresso' |
|
| 2858 | + ), |
|
| 2859 | + ); |
|
| 2860 | + } |
|
| 2861 | + if (empty($txn_details) && $this->checkout->transaction instanceof EE_Transaction) { |
|
| 2862 | + $return_url = $this->_get_return_url($this->checkout->payment_method); |
|
| 2863 | + $txn_details = array( |
|
| 2864 | + 'TXN_ID' => $this->checkout->transaction->ID(), |
|
| 2865 | + 'TXN_timestamp' => $this->checkout->transaction->datetime(), |
|
| 2866 | + 'TXN_total' => $this->checkout->transaction->total(), |
|
| 2867 | + 'TXN_paid' => $this->checkout->transaction->paid(), |
|
| 2868 | + 'TXN_reg_steps' => $this->checkout->transaction->reg_steps(), |
|
| 2869 | + 'STS_ID' => $this->checkout->transaction->status_ID(), |
|
| 2870 | + 'PMD_ID' => $this->checkout->transaction->payment_method_ID(), |
|
| 2871 | + 'payment_amount' => $this->checkout->amount_owing, |
|
| 2872 | + 'return_url' => $return_url, |
|
| 2873 | + 'cancel_url' => add_query_arg(array('ee_cancel_payment' => true), $return_url), |
|
| 2874 | + 'notify_url' => EE_Config::instance()->core->txn_page_url( |
|
| 2875 | + array( |
|
| 2876 | + 'e_reg_url_link' => $this->checkout->transaction->primary_registration()->reg_url_link(), |
|
| 2877 | + 'ee_payment_method' => $this->checkout->payment_method->slug(), |
|
| 2878 | + ) |
|
| 2879 | + ), |
|
| 2880 | + ); |
|
| 2881 | + } |
|
| 2882 | + echo wp_json_encode($txn_details); |
|
| 2883 | + exit(); |
|
| 2884 | + } |
|
| 2885 | + |
|
| 2886 | + |
|
| 2887 | + /** |
|
| 2888 | + * __sleep |
|
| 2889 | + * to conserve db space, let's remove the reg_form and the EE_Checkout object from EE_SPCO_Reg_Step objects upon |
|
| 2890 | + * serialization EE_Checkout will handle the reimplementation of itself upon waking, but we won't bother with the |
|
| 2891 | + * reg form, because if needed, it will be regenerated anyways |
|
| 2892 | + * |
|
| 2893 | + * @return array |
|
| 2894 | + */ |
|
| 2895 | + public function __sleep() |
|
| 2896 | + { |
|
| 2897 | + // remove the reg form and the checkout |
|
| 2898 | + return array_diff(array_keys(get_object_vars($this)), array('reg_form', 'checkout', 'line_item_display')); |
|
| 2899 | + } |
|
| 2900 | 2900 | } |
@@ -661,7 +661,7 @@ discard block |
||
| 661 | 661 | * |
| 662 | 662 | * @param string $CNT_ISO |
| 663 | 663 | * @param EE_Country|null $country |
| 664 | - * @return mixed string | array$country |
|
| 664 | + * @return string|null string | array$country |
|
| 665 | 665 | * @throws DomainException |
| 666 | 666 | * @throws EE_Error |
| 667 | 667 | * @throws InvalidArgumentException |
@@ -1017,7 +1017,7 @@ discard block |
||
| 1017 | 1017 | * delete_state |
| 1018 | 1018 | * |
| 1019 | 1019 | * @access public |
| 1020 | - * @return boolean |
|
| 1020 | + * @return false|null |
|
| 1021 | 1021 | * @throws EE_Error |
| 1022 | 1022 | * @throws InvalidArgumentException |
| 1023 | 1023 | * @throws InvalidDataTypeException |
@@ -20,1400 +20,1400 @@ |
||
| 20 | 20 | class General_Settings_Admin_Page extends EE_Admin_Page |
| 21 | 21 | { |
| 22 | 22 | |
| 23 | - /** |
|
| 24 | - * _question_group |
|
| 25 | - * holds the specific question group object for the question group details screen |
|
| 26 | - * |
|
| 27 | - * @var object |
|
| 28 | - */ |
|
| 29 | - protected $_question_group; |
|
| 30 | - |
|
| 31 | - |
|
| 32 | - /** |
|
| 33 | - * Initialize basic properties. |
|
| 34 | - */ |
|
| 35 | - protected function _init_page_props() |
|
| 36 | - { |
|
| 37 | - $this->page_slug = GEN_SET_PG_SLUG; |
|
| 38 | - $this->page_label = GEN_SET_LABEL; |
|
| 39 | - $this->_admin_base_url = GEN_SET_ADMIN_URL; |
|
| 40 | - $this->_admin_base_path = GEN_SET_ADMIN; |
|
| 41 | - } |
|
| 42 | - |
|
| 43 | - |
|
| 44 | - /** |
|
| 45 | - * Set ajax hooks |
|
| 46 | - */ |
|
| 47 | - protected function _ajax_hooks() |
|
| 48 | - { |
|
| 49 | - add_action('wp_ajax_espresso_display_country_settings', array($this, 'display_country_settings')); |
|
| 50 | - add_action('wp_ajax_espresso_display_country_states', array($this, 'display_country_states')); |
|
| 51 | - add_action('wp_ajax_espresso_delete_state', array($this, 'delete_state'), 10, 3); |
|
| 52 | - add_action('wp_ajax_espresso_add_new_state', array($this, 'add_new_state')); |
|
| 53 | - } |
|
| 54 | - |
|
| 55 | - |
|
| 56 | - /** |
|
| 57 | - * More page properties initialization. |
|
| 58 | - */ |
|
| 59 | - protected function _define_page_props() |
|
| 60 | - { |
|
| 61 | - $this->_admin_page_title = GEN_SET_LABEL; |
|
| 62 | - $this->_labels = array( |
|
| 63 | - 'publishbox' => __('Update Settings', 'event_espresso'), |
|
| 64 | - ); |
|
| 65 | - } |
|
| 66 | - |
|
| 67 | - |
|
| 68 | - /** |
|
| 69 | - * Set page routes property. |
|
| 70 | - */ |
|
| 71 | - protected function _set_page_routes() |
|
| 72 | - { |
|
| 73 | - $this->_page_routes = array( |
|
| 74 | - |
|
| 75 | - 'critical_pages' => array( |
|
| 76 | - 'func' => '_espresso_page_settings', |
|
| 77 | - 'capability' => 'manage_options', |
|
| 78 | - ), |
|
| 79 | - 'update_espresso_page_settings' => array( |
|
| 80 | - 'func' => '_update_espresso_page_settings', |
|
| 81 | - 'capability' => 'manage_options', |
|
| 82 | - 'noheader' => true, |
|
| 83 | - ), |
|
| 84 | - 'default' => array( |
|
| 85 | - 'func' => '_your_organization_settings', |
|
| 86 | - 'capability' => 'manage_options', |
|
| 87 | - ), |
|
| 88 | - |
|
| 89 | - 'update_your_organization_settings' => array( |
|
| 90 | - 'func' => '_update_your_organization_settings', |
|
| 91 | - 'capability' => 'manage_options', |
|
| 92 | - 'noheader' => true, |
|
| 93 | - ), |
|
| 94 | - |
|
| 95 | - 'admin_option_settings' => array( |
|
| 96 | - 'func' => '_admin_option_settings', |
|
| 97 | - 'capability' => 'manage_options', |
|
| 98 | - ), |
|
| 99 | - |
|
| 100 | - 'update_admin_option_settings' => array( |
|
| 101 | - 'func' => '_update_admin_option_settings', |
|
| 102 | - 'capability' => 'manage_options', |
|
| 103 | - 'noheader' => true, |
|
| 104 | - ), |
|
| 105 | - |
|
| 106 | - 'country_settings' => array( |
|
| 107 | - 'func' => '_country_settings', |
|
| 108 | - 'capability' => 'manage_options', |
|
| 109 | - ), |
|
| 110 | - |
|
| 111 | - 'update_country_settings' => array( |
|
| 112 | - 'func' => '_update_country_settings', |
|
| 113 | - 'capability' => 'manage_options', |
|
| 114 | - 'noheader' => true, |
|
| 115 | - ), |
|
| 116 | - |
|
| 117 | - 'display_country_settings' => array( |
|
| 118 | - 'func' => 'display_country_settings', |
|
| 119 | - 'capability' => 'manage_options', |
|
| 120 | - 'noheader' => true, |
|
| 121 | - ), |
|
| 122 | - |
|
| 123 | - 'add_new_state' => array( |
|
| 124 | - 'func' => 'add_new_state', |
|
| 125 | - 'capability' => 'manage_options', |
|
| 126 | - 'noheader' => true, |
|
| 127 | - ), |
|
| 128 | - |
|
| 129 | - 'delete_state' => array( |
|
| 130 | - 'func' => 'delete_state', |
|
| 131 | - 'capability' => 'manage_options', |
|
| 132 | - 'noheader' => true, |
|
| 133 | - ), |
|
| 134 | - 'privacy_settings' => array( |
|
| 135 | - 'func' => 'privacySettings', |
|
| 136 | - 'capability' => 'manage_options', |
|
| 137 | - ), |
|
| 138 | - 'update_privacy_settings' => array( |
|
| 139 | - 'func' => 'updatePrivacySettings', |
|
| 140 | - 'capability' => 'manage_options', |
|
| 141 | - 'noheader' => true, |
|
| 142 | - 'headers_sent_route' => 'privacy_settings', |
|
| 143 | - ), |
|
| 144 | - ); |
|
| 145 | - } |
|
| 146 | - |
|
| 147 | - |
|
| 148 | - /** |
|
| 149 | - * Set page configuration property |
|
| 150 | - */ |
|
| 151 | - protected function _set_page_config() |
|
| 152 | - { |
|
| 153 | - $this->_page_config = array( |
|
| 154 | - 'critical_pages' => array( |
|
| 155 | - 'nav' => array( |
|
| 156 | - 'label' => __('Critical Pages', 'event_espresso'), |
|
| 157 | - 'order' => 50, |
|
| 158 | - ), |
|
| 159 | - 'metaboxes' => array_merge($this->_default_espresso_metaboxes, array('_publish_post_box')), |
|
| 160 | - 'help_tabs' => array( |
|
| 161 | - 'general_settings_critical_pages_help_tab' => array( |
|
| 162 | - 'title' => __('Critical Pages', 'event_espresso'), |
|
| 163 | - 'filename' => 'general_settings_critical_pages', |
|
| 164 | - ), |
|
| 165 | - ), |
|
| 166 | - 'help_tour' => array('Critical_Pages_Help_Tour'), |
|
| 167 | - 'require_nonce' => false, |
|
| 168 | - ), |
|
| 169 | - 'default' => array( |
|
| 170 | - 'nav' => array( |
|
| 171 | - 'label' => __('Your Organization', 'event_espresso'), |
|
| 172 | - 'order' => 20, |
|
| 173 | - ), |
|
| 174 | - 'help_tabs' => array( |
|
| 175 | - 'general_settings_your_organization_help_tab' => array( |
|
| 176 | - 'title' => __('Your Organization', 'event_espresso'), |
|
| 177 | - 'filename' => 'general_settings_your_organization', |
|
| 178 | - ), |
|
| 179 | - ), |
|
| 180 | - 'help_tour' => array('Your_Organization_Help_Tour'), |
|
| 181 | - 'metaboxes' => array_merge($this->_default_espresso_metaboxes, array('_publish_post_box')), |
|
| 182 | - 'require_nonce' => false, |
|
| 183 | - ), |
|
| 184 | - 'admin_option_settings' => array( |
|
| 185 | - 'nav' => array( |
|
| 186 | - 'label' => __('Admin Options', 'event_espresso'), |
|
| 187 | - 'order' => 60, |
|
| 188 | - ), |
|
| 189 | - 'metaboxes' => array_merge($this->_default_espresso_metaboxes, array('_publish_post_box')), |
|
| 190 | - 'help_tabs' => array( |
|
| 191 | - 'general_settings_admin_options_help_tab' => array( |
|
| 192 | - 'title' => __('Admin Options', 'event_espresso'), |
|
| 193 | - 'filename' => 'general_settings_admin_options', |
|
| 194 | - ), |
|
| 195 | - ), |
|
| 196 | - 'help_tour' => array('Admin_Options_Help_Tour'), |
|
| 197 | - 'require_nonce' => false, |
|
| 198 | - ), |
|
| 199 | - 'country_settings' => array( |
|
| 200 | - 'nav' => array( |
|
| 201 | - 'label' => __('Countries', 'event_espresso'), |
|
| 202 | - 'order' => 70, |
|
| 203 | - ), |
|
| 204 | - 'help_tabs' => array( |
|
| 205 | - 'general_settings_countries_help_tab' => array( |
|
| 206 | - 'title' => __('Countries', 'event_espresso'), |
|
| 207 | - 'filename' => 'general_settings_countries', |
|
| 208 | - ), |
|
| 209 | - ), |
|
| 210 | - 'help_tour' => array('Countries_Help_Tour'), |
|
| 211 | - 'require_nonce' => false, |
|
| 212 | - ), |
|
| 213 | - 'privacy_settings' => array( |
|
| 214 | - 'nav' => array( |
|
| 215 | - 'label' => esc_html__('Privacy', 'event_espresso'), |
|
| 216 | - 'order' => 80, |
|
| 217 | - ), |
|
| 218 | - 'metaboxes' => array_merge($this->_default_espresso_metaboxes, array('_publish_post_box')), |
|
| 219 | - 'require_nonce' => false, |
|
| 220 | - ), |
|
| 221 | - ); |
|
| 222 | - } |
|
| 223 | - |
|
| 224 | - |
|
| 225 | - protected function _add_screen_options() |
|
| 226 | - { |
|
| 227 | - } |
|
| 228 | - |
|
| 229 | - |
|
| 230 | - protected function _add_feature_pointers() |
|
| 231 | - { |
|
| 232 | - } |
|
| 233 | - |
|
| 234 | - |
|
| 235 | - /** |
|
| 236 | - * Enqueue global scripts and styles for all routes in the General Settings Admin Pages. |
|
| 237 | - */ |
|
| 238 | - public function load_scripts_styles() |
|
| 239 | - { |
|
| 240 | - // styles |
|
| 241 | - wp_enqueue_style('espresso-ui-theme'); |
|
| 242 | - // scripts |
|
| 243 | - wp_enqueue_script('ee_admin_js'); |
|
| 244 | - } |
|
| 245 | - |
|
| 246 | - |
|
| 247 | - /** |
|
| 248 | - * Execute logic running on `admin_init` |
|
| 249 | - */ |
|
| 250 | - public function admin_init() |
|
| 251 | - { |
|
| 252 | - EE_Registry::$i18n_js_strings['invalid_server_response'] = __( |
|
| 253 | - 'An error occurred! Your request may have been processed, but a valid response from the server was not received. Please refresh the page and try again.', |
|
| 254 | - 'event_espresso' |
|
| 255 | - ); |
|
| 256 | - EE_Registry::$i18n_js_strings['error_occurred'] = __( |
|
| 257 | - 'An error occurred! Please refresh the page and try again.', |
|
| 258 | - 'event_espresso' |
|
| 259 | - ); |
|
| 260 | - EE_Registry::$i18n_js_strings['confirm_delete_state'] = __( |
|
| 261 | - 'Are you sure you want to delete this State / Province?', |
|
| 262 | - 'event_espresso' |
|
| 263 | - ); |
|
| 264 | - $protocol = isset($_SERVER['HTTPS']) ? 'https://' : 'http://'; |
|
| 265 | - EE_Registry::$i18n_js_strings['ajax_url'] = admin_url( |
|
| 266 | - 'admin-ajax.php?page=espresso_general_settings', |
|
| 267 | - $protocol |
|
| 268 | - ); |
|
| 269 | - } |
|
| 270 | - |
|
| 271 | - |
|
| 272 | - public function admin_notices() |
|
| 273 | - { |
|
| 274 | - } |
|
| 275 | - |
|
| 276 | - |
|
| 277 | - public function admin_footer_scripts() |
|
| 278 | - { |
|
| 279 | - } |
|
| 280 | - |
|
| 281 | - |
|
| 282 | - /** |
|
| 283 | - * Enqueue scripts and styles for the default route. |
|
| 284 | - */ |
|
| 285 | - public function load_scripts_styles_default() |
|
| 286 | - { |
|
| 287 | - // styles |
|
| 288 | - wp_enqueue_style('thickbox'); |
|
| 289 | - // scripts |
|
| 290 | - wp_enqueue_script('media-upload'); |
|
| 291 | - wp_enqueue_script('thickbox'); |
|
| 292 | - wp_register_script( |
|
| 293 | - 'organization_settings', |
|
| 294 | - GEN_SET_ASSETS_URL . 'your_organization_settings.js', |
|
| 295 | - array('jquery', 'media-upload', 'thickbox'), |
|
| 296 | - EVENT_ESPRESSO_VERSION, |
|
| 297 | - true |
|
| 298 | - ); |
|
| 299 | - wp_register_style('organization-css', GEN_SET_ASSETS_URL . 'organization.css', array(), EVENT_ESPRESSO_VERSION); |
|
| 300 | - wp_enqueue_script('organization_settings'); |
|
| 301 | - wp_enqueue_style('organization-css'); |
|
| 302 | - $confirm_image_delete = array( |
|
| 303 | - 'text' => __( |
|
| 304 | - 'Do you really want to delete this image? Please remember to save your settings to complete the removal.', |
|
| 305 | - 'event_espresso' |
|
| 306 | - ), |
|
| 307 | - ); |
|
| 308 | - wp_localize_script('organization_settings', 'confirm_image_delete', $confirm_image_delete); |
|
| 309 | - } |
|
| 310 | - |
|
| 311 | - |
|
| 312 | - /** |
|
| 313 | - * Enqueue scripts and styles for the country settings route. |
|
| 314 | - */ |
|
| 315 | - public function load_scripts_styles_country_settings() |
|
| 316 | - { |
|
| 317 | - // scripts |
|
| 318 | - wp_register_script( |
|
| 319 | - 'gen_settings_countries', |
|
| 320 | - GEN_SET_ASSETS_URL . 'gen_settings_countries.js', |
|
| 321 | - array('ee_admin_js'), |
|
| 322 | - EVENT_ESPRESSO_VERSION, |
|
| 323 | - true |
|
| 324 | - ); |
|
| 325 | - wp_register_style('organization-css', GEN_SET_ASSETS_URL . 'organization.css', array(), EVENT_ESPRESSO_VERSION); |
|
| 326 | - wp_enqueue_script('gen_settings_countries'); |
|
| 327 | - wp_enqueue_style('organization-css'); |
|
| 328 | - } |
|
| 329 | - |
|
| 330 | - |
|
| 331 | - /************* Espresso Pages *************/ |
|
| 332 | - /** |
|
| 333 | - * _espresso_page_settings |
|
| 334 | - * |
|
| 335 | - * @throws \EE_Error |
|
| 336 | - * @throws DomainException |
|
| 337 | - * @throws DomainException |
|
| 338 | - * @throws InvalidDataTypeException |
|
| 339 | - * @throws InvalidArgumentException |
|
| 340 | - */ |
|
| 341 | - protected function _espresso_page_settings() |
|
| 342 | - { |
|
| 343 | - // Check to make sure all of the main pages are setup properly, |
|
| 344 | - // if not create the default pages and display an admin notice |
|
| 345 | - EEH_Activation::verify_default_pages_exist(); |
|
| 346 | - $this->_transient_garbage_collection(); |
|
| 347 | - $this->_template_args['values'] = $this->_yes_no_values; |
|
| 348 | - $this->_template_args['reg_page_id'] = isset(EE_Registry::instance()->CFG->core->reg_page_id) |
|
| 349 | - ? EE_Registry::instance()->CFG->core->reg_page_id |
|
| 350 | - : null; |
|
| 351 | - $this->_template_args['reg_page_obj'] = isset(EE_Registry::instance()->CFG->core->reg_page_id) |
|
| 352 | - ? get_page(EE_Registry::instance()->CFG->core->reg_page_id) |
|
| 353 | - : false; |
|
| 354 | - $this->_template_args['txn_page_id'] = isset(EE_Registry::instance()->CFG->core->txn_page_id) |
|
| 355 | - ? EE_Registry::instance()->CFG->core->txn_page_id |
|
| 356 | - : null; |
|
| 357 | - $this->_template_args['txn_page_obj'] = isset(EE_Registry::instance()->CFG->core->txn_page_id) |
|
| 358 | - ? get_page(EE_Registry::instance()->CFG->core->txn_page_id) |
|
| 359 | - : false; |
|
| 360 | - $this->_template_args['thank_you_page_id'] = isset(EE_Registry::instance()->CFG->core->thank_you_page_id) |
|
| 361 | - ? EE_Registry::instance()->CFG->core->thank_you_page_id |
|
| 362 | - : null; |
|
| 363 | - $this->_template_args['thank_you_page_obj'] = isset(EE_Registry::instance()->CFG->core->thank_you_page_id) |
|
| 364 | - ? get_page(EE_Registry::instance()->CFG->core->thank_you_page_id) |
|
| 365 | - : false; |
|
| 366 | - $this->_template_args['cancel_page_id'] = isset(EE_Registry::instance()->CFG->core->cancel_page_id) |
|
| 367 | - ? EE_Registry::instance()->CFG->core->cancel_page_id |
|
| 368 | - : null; |
|
| 369 | - $this->_template_args['cancel_page_obj'] = isset(EE_Registry::instance()->CFG->core->cancel_page_id) |
|
| 370 | - ? get_page(EE_Registry::instance()->CFG->core->cancel_page_id) |
|
| 371 | - : false; |
|
| 372 | - $this->_set_add_edit_form_tags('update_espresso_page_settings'); |
|
| 373 | - $this->_set_publish_post_box_vars(null, false, false, null, false); |
|
| 374 | - $this->_template_args['admin_page_content'] = EEH_Template::display_template( |
|
| 375 | - GEN_SET_TEMPLATE_PATH . 'espresso_page_settings.template.php', |
|
| 376 | - $this->_template_args, |
|
| 377 | - true |
|
| 378 | - ); |
|
| 379 | - $this->display_admin_page_with_sidebar(); |
|
| 380 | - } |
|
| 381 | - |
|
| 382 | - |
|
| 383 | - /** |
|
| 384 | - * Handler for updating espresso page settings. |
|
| 385 | - * |
|
| 386 | - * @throws EE_Error |
|
| 387 | - */ |
|
| 388 | - protected function _update_espresso_page_settings() |
|
| 389 | - { |
|
| 390 | - // capture incoming request data && set page IDs |
|
| 391 | - EE_Registry::instance()->CFG->core->reg_page_id = isset($this->_req_data['reg_page_id']) |
|
| 392 | - ? absint($this->_req_data['reg_page_id']) |
|
| 393 | - : EE_Registry::instance()->CFG->core->reg_page_id; |
|
| 394 | - EE_Registry::instance()->CFG->core->txn_page_id = isset($this->_req_data['txn_page_id']) |
|
| 395 | - ? absint($this->_req_data['txn_page_id']) |
|
| 396 | - : EE_Registry::instance()->CFG->core->txn_page_id; |
|
| 397 | - EE_Registry::instance()->CFG->core->thank_you_page_id = isset($this->_req_data['thank_you_page_id']) |
|
| 398 | - ? absint($this->_req_data['thank_you_page_id']) |
|
| 399 | - : EE_Registry::instance()->CFG->core->thank_you_page_id; |
|
| 400 | - EE_Registry::instance()->CFG->core->cancel_page_id = isset($this->_req_data['cancel_page_id']) |
|
| 401 | - ? absint($this->_req_data['cancel_page_id']) |
|
| 402 | - : EE_Registry::instance()->CFG->core->cancel_page_id; |
|
| 403 | - |
|
| 404 | - EE_Registry::instance()->CFG->core = apply_filters( |
|
| 405 | - 'FHEE__General_Settings_Admin_Page___update_espresso_page_settings__CFG_core', |
|
| 406 | - EE_Registry::instance()->CFG->core, |
|
| 407 | - $this->_req_data |
|
| 408 | - ); |
|
| 409 | - $what = __('Critical Pages & Shortcodes', 'event_espresso'); |
|
| 410 | - $this->_redirect_after_action( |
|
| 411 | - $this->_update_espresso_configuration( |
|
| 412 | - $what, |
|
| 413 | - EE_Registry::instance()->CFG->core, |
|
| 414 | - __FILE__, |
|
| 415 | - __FUNCTION__, |
|
| 416 | - __LINE__ |
|
| 417 | - ), |
|
| 418 | - $what, |
|
| 419 | - '', |
|
| 420 | - array( |
|
| 421 | - 'action' => 'critical_pages', |
|
| 422 | - ), |
|
| 423 | - true |
|
| 424 | - ); |
|
| 425 | - } |
|
| 426 | - |
|
| 427 | - |
|
| 428 | - /************* Your Organization *************/ |
|
| 429 | - |
|
| 430 | - |
|
| 431 | - /** |
|
| 432 | - * @throws DomainException |
|
| 433 | - * @throws EE_Error |
|
| 434 | - * @throws InvalidArgumentException |
|
| 435 | - * @throws InvalidDataTypeException |
|
| 436 | - * @throws InvalidInterfaceException |
|
| 437 | - */ |
|
| 438 | - protected function _your_organization_settings() |
|
| 439 | - { |
|
| 440 | - $this->_template_args['admin_page_content'] = ''; |
|
| 441 | - try { |
|
| 442 | - /** @var EventEspresso\admin_pages\general_settings\OrganizationSettings $organization_settings_form */ |
|
| 443 | - $organization_settings_form = $this->loader->getShared( |
|
| 444 | - 'EventEspresso\admin_pages\general_settings\OrganizationSettings' |
|
| 445 | - ); |
|
| 446 | - $this->_template_args['admin_page_content'] = $organization_settings_form->display(); |
|
| 447 | - } catch (Exception $e) { |
|
| 448 | - EE_Error::add_error($e->getMessage(), __FILE__, __FUNCTION__, __LINE__); |
|
| 449 | - } |
|
| 450 | - $this->_set_add_edit_form_tags('update_your_organization_settings'); |
|
| 451 | - $this->_set_publish_post_box_vars(null, false, false, null, false); |
|
| 452 | - $this->display_admin_page_with_sidebar(); |
|
| 453 | - } |
|
| 454 | - |
|
| 455 | - |
|
| 456 | - /** |
|
| 457 | - * Handler for updating organization settings. |
|
| 458 | - * |
|
| 459 | - * @throws EE_Error |
|
| 460 | - */ |
|
| 461 | - protected function _update_your_organization_settings() |
|
| 462 | - { |
|
| 463 | - try { |
|
| 464 | - /** @var EventEspresso\admin_pages\general_settings\OrganizationSettings $organization_settings_form */ |
|
| 465 | - $organization_settings_form = $this->loader->getShared( |
|
| 466 | - 'EventEspresso\admin_pages\general_settings\OrganizationSettings' |
|
| 467 | - ); |
|
| 468 | - $success = $organization_settings_form->process($this->_req_data); |
|
| 469 | - EE_Registry::instance()->CFG = apply_filters( |
|
| 470 | - 'FHEE__General_Settings_Admin_Page___update_your_organization_settings__CFG', |
|
| 471 | - EE_Registry::instance()->CFG |
|
| 472 | - ); |
|
| 473 | - } catch (Exception $e) { |
|
| 474 | - EE_Error::add_error($e->getMessage(), __FILE__, __FUNCTION__, __LINE__); |
|
| 475 | - $success = false; |
|
| 476 | - } |
|
| 477 | - |
|
| 478 | - if ($success) { |
|
| 479 | - $success = $this->_update_espresso_configuration( |
|
| 480 | - esc_html__('Your Organization Settings', 'event_espresso'), |
|
| 481 | - EE_Registry::instance()->CFG, |
|
| 482 | - __FILE__, |
|
| 483 | - __FUNCTION__, |
|
| 484 | - __LINE__ |
|
| 485 | - ); |
|
| 486 | - } |
|
| 487 | - |
|
| 488 | - $this->_redirect_after_action($success, '', '', array('action' => 'default'), true); |
|
| 489 | - } |
|
| 490 | - |
|
| 491 | - |
|
| 492 | - |
|
| 493 | - /************* Admin Options *************/ |
|
| 494 | - |
|
| 495 | - |
|
| 496 | - /** |
|
| 497 | - * _admin_option_settings |
|
| 498 | - * |
|
| 499 | - * @throws \EE_Error |
|
| 500 | - * @throws \LogicException |
|
| 501 | - */ |
|
| 502 | - protected function _admin_option_settings() |
|
| 503 | - { |
|
| 504 | - $this->_template_args['admin_page_content'] = ''; |
|
| 505 | - try { |
|
| 506 | - $admin_options_settings_form = new AdminOptionsSettings(EE_Registry::instance()); |
|
| 507 | - // still need this for the old school form in Extend_General_Settings_Admin_Page |
|
| 508 | - $this->_template_args['values'] = $this->_yes_no_values; |
|
| 509 | - // also need to account for the do_action that was in the old template |
|
| 510 | - $admin_options_settings_form->setTemplateArgs($this->_template_args); |
|
| 511 | - $this->_template_args['admin_page_content'] = $admin_options_settings_form->display(); |
|
| 512 | - } catch (Exception $e) { |
|
| 513 | - EE_Error::add_error($e->getMessage(), __FILE__, __FUNCTION__, __LINE__); |
|
| 514 | - } |
|
| 515 | - $this->_set_add_edit_form_tags('update_admin_option_settings'); |
|
| 516 | - $this->_set_publish_post_box_vars(null, false, false, null, false); |
|
| 517 | - $this->display_admin_page_with_sidebar(); |
|
| 518 | - } |
|
| 519 | - |
|
| 520 | - |
|
| 521 | - /** |
|
| 522 | - * _update_admin_option_settings |
|
| 523 | - * |
|
| 524 | - * @throws \EE_Error |
|
| 525 | - * @throws InvalidDataTypeException |
|
| 526 | - * @throws \EventEspresso\core\exceptions\InvalidFormSubmissionException |
|
| 527 | - * @throws \InvalidArgumentException |
|
| 528 | - * @throws \LogicException |
|
| 529 | - */ |
|
| 530 | - protected function _update_admin_option_settings() |
|
| 531 | - { |
|
| 532 | - try { |
|
| 533 | - $admin_options_settings_form = new AdminOptionsSettings(EE_Registry::instance()); |
|
| 534 | - $admin_options_settings_form->process($this->_req_data[ $admin_options_settings_form->slug() ]); |
|
| 535 | - EE_Registry::instance()->CFG->admin = apply_filters( |
|
| 536 | - 'FHEE__General_Settings_Admin_Page___update_admin_option_settings__CFG_admin', |
|
| 537 | - EE_Registry::instance()->CFG->admin |
|
| 538 | - ); |
|
| 539 | - } catch (Exception $e) { |
|
| 540 | - EE_Error::add_error($e->getMessage(), __FILE__, __FUNCTION__, __LINE__); |
|
| 541 | - } |
|
| 542 | - $this->_redirect_after_action( |
|
| 543 | - apply_filters( |
|
| 544 | - 'FHEE__General_Settings_Admin_Page___update_admin_option_settings__success', |
|
| 545 | - $this->_update_espresso_configuration( |
|
| 546 | - 'Admin Options', |
|
| 547 | - EE_Registry::instance()->CFG->admin, |
|
| 548 | - __FILE__, |
|
| 549 | - __FUNCTION__, |
|
| 550 | - __LINE__ |
|
| 551 | - ) |
|
| 552 | - ), |
|
| 553 | - 'Admin Options', |
|
| 554 | - 'updated', |
|
| 555 | - array('action' => 'admin_option_settings') |
|
| 556 | - ); |
|
| 557 | - } |
|
| 558 | - |
|
| 559 | - |
|
| 560 | - /************* Countries *************/ |
|
| 561 | - |
|
| 562 | - |
|
| 563 | - /** |
|
| 564 | - * @return string |
|
| 565 | - */ |
|
| 566 | - protected function getCountryIsoForSite() |
|
| 567 | - { |
|
| 568 | - return ! empty(EE_Registry::instance()->CFG->organization->CNT_ISO) |
|
| 569 | - ? EE_Registry::instance()->CFG->organization->CNT_ISO |
|
| 570 | - : 'US'; |
|
| 571 | - } |
|
| 572 | - |
|
| 573 | - |
|
| 574 | - /** |
|
| 575 | - * @param string $CNT_ISO |
|
| 576 | - * @param EE_Country|null $country |
|
| 577 | - * @return EE_Base_Class|EE_Country |
|
| 578 | - * @throws EE_Error |
|
| 579 | - * @throws InvalidArgumentException |
|
| 580 | - * @throws InvalidDataTypeException |
|
| 581 | - * @throws InvalidInterfaceException |
|
| 582 | - * @throws ReflectionException |
|
| 583 | - */ |
|
| 584 | - protected function verifyOrGetCountryFromIso($CNT_ISO, EE_Country $country = null) |
|
| 585 | - { |
|
| 586 | - /** @var EE_Country $country */ |
|
| 587 | - return $country instanceof EE_Country && $country->ID() === $CNT_ISO |
|
| 588 | - ? $country |
|
| 589 | - : EEM_Country::instance()->get_one_by_ID($CNT_ISO); |
|
| 590 | - } |
|
| 591 | - |
|
| 592 | - |
|
| 593 | - /** |
|
| 594 | - * Output Country Settings view. |
|
| 595 | - * |
|
| 596 | - * @throws DomainException |
|
| 597 | - * @throws EE_Error |
|
| 598 | - * @throws InvalidArgumentException |
|
| 599 | - * @throws InvalidDataTypeException |
|
| 600 | - * @throws InvalidInterfaceException |
|
| 601 | - * @throws ReflectionException |
|
| 602 | - */ |
|
| 603 | - protected function _country_settings() |
|
| 604 | - { |
|
| 605 | - $CNT_ISO_for_site = $this->getCountryIsoForSite(); |
|
| 606 | - $CNT_ISO = isset($this->_req_data['country']) |
|
| 607 | - ? strtoupper(sanitize_text_field($this->_req_data['country'])) |
|
| 608 | - : $CNT_ISO_for_site; |
|
| 609 | - |
|
| 610 | - // load field generator helper |
|
| 611 | - |
|
| 612 | - $this->_template_args['values'] = $this->_yes_no_values; |
|
| 613 | - |
|
| 614 | - $this->_template_args['countries'] = new EE_Question_Form_Input( |
|
| 615 | - EE_Question::new_instance( |
|
| 616 | - array( |
|
| 617 | - 'QST_ID' => 0, |
|
| 618 | - 'QST_display_text' => __('Select Country', 'event_espresso'), |
|
| 619 | - 'QST_system' => 'admin-country', |
|
| 620 | - ) |
|
| 621 | - ), |
|
| 622 | - EE_Answer::new_instance( |
|
| 623 | - array( |
|
| 624 | - 'ANS_ID' => 0, |
|
| 625 | - 'ANS_value' => $CNT_ISO, |
|
| 626 | - ) |
|
| 627 | - ), |
|
| 628 | - array( |
|
| 629 | - 'input_id' => 'country', |
|
| 630 | - 'input_name' => 'country', |
|
| 631 | - 'input_prefix' => '', |
|
| 632 | - 'append_qstn_id' => false, |
|
| 633 | - ) |
|
| 634 | - ); |
|
| 635 | - $country = $this->verifyOrGetCountryFromIso($CNT_ISO_for_site); |
|
| 636 | - add_filter('FHEE__EEH_Form_Fields__label_html', array($this, 'country_form_field_label_wrap'), 10, 2); |
|
| 637 | - add_filter('FHEE__EEH_Form_Fields__input_html', array($this, 'country_form_field_input__wrap'), 10, 2); |
|
| 638 | - $this->_template_args['country_details_settings'] = $this->display_country_settings( |
|
| 639 | - $country->ID(), |
|
| 640 | - $country |
|
| 641 | - ); |
|
| 642 | - $this->_template_args['country_states_settings'] = $this->display_country_states( |
|
| 643 | - $country->ID(), |
|
| 644 | - $country |
|
| 645 | - ); |
|
| 646 | - $this->_template_args['CNT_name_for_site'] = $country->name(); |
|
| 647 | - |
|
| 648 | - $this->_set_add_edit_form_tags('update_country_settings'); |
|
| 649 | - $this->_set_publish_post_box_vars(null, false, false, null, false); |
|
| 650 | - $this->_template_args['admin_page_content'] = EEH_Template::display_template( |
|
| 651 | - GEN_SET_TEMPLATE_PATH . 'countries_settings.template.php', |
|
| 652 | - $this->_template_args, |
|
| 653 | - true |
|
| 654 | - ); |
|
| 655 | - $this->display_admin_page_with_no_sidebar(); |
|
| 656 | - } |
|
| 657 | - |
|
| 658 | - |
|
| 659 | - /** |
|
| 660 | - * display_country_settings |
|
| 661 | - * |
|
| 662 | - * @param string $CNT_ISO |
|
| 663 | - * @param EE_Country|null $country |
|
| 664 | - * @return mixed string | array$country |
|
| 665 | - * @throws DomainException |
|
| 666 | - * @throws EE_Error |
|
| 667 | - * @throws InvalidArgumentException |
|
| 668 | - * @throws InvalidDataTypeException |
|
| 669 | - * @throws InvalidInterfaceException |
|
| 670 | - * @throws ReflectionException |
|
| 671 | - */ |
|
| 672 | - public function display_country_settings($CNT_ISO = '', EE_Country $country = null) |
|
| 673 | - { |
|
| 674 | - $CNT_ISO_for_site = $this->getCountryIsoForSite(); |
|
| 675 | - |
|
| 676 | - $CNT_ISO = isset($this->_req_data['country']) |
|
| 677 | - ? strtoupper(sanitize_text_field($this->_req_data['country'])) |
|
| 678 | - : $CNT_ISO; |
|
| 679 | - if (! $CNT_ISO) { |
|
| 680 | - return ''; |
|
| 681 | - } |
|
| 682 | - |
|
| 683 | - // for ajax |
|
| 684 | - remove_all_filters('FHEE__EEH_Form_Fields__label_html'); |
|
| 685 | - remove_all_filters('FHEE__EEH_Form_Fields__input_html'); |
|
| 686 | - add_filter('FHEE__EEH_Form_Fields__label_html', array($this, 'country_form_field_label_wrap'), 10, 2); |
|
| 687 | - add_filter('FHEE__EEH_Form_Fields__input_html', array($this, 'country_form_field_input__wrap'), 10, 2); |
|
| 688 | - $country = $this->verifyOrGetCountryFromIso($CNT_ISO, $country); |
|
| 689 | - $CNT_cur_disabled = $CNT_ISO !== $CNT_ISO_for_site; |
|
| 690 | - $this->_template_args['CNT_cur_disabled'] = $CNT_cur_disabled; |
|
| 691 | - |
|
| 692 | - $country_input_types = array( |
|
| 693 | - 'CNT_active' => array( |
|
| 694 | - 'type' => 'RADIO_BTN', |
|
| 695 | - 'input_name' => 'cntry[' . $CNT_ISO . ']', |
|
| 696 | - 'class' => '', |
|
| 697 | - 'options' => $this->_yes_no_values, |
|
| 698 | - 'use_desc_4_label' => true, |
|
| 699 | - ), |
|
| 700 | - 'CNT_ISO' => array( |
|
| 701 | - 'type' => 'TEXT', |
|
| 702 | - 'input_name' => 'cntry[' . $CNT_ISO . ']', |
|
| 703 | - 'class' => 'small-text', |
|
| 704 | - ), |
|
| 705 | - 'CNT_ISO3' => array( |
|
| 706 | - 'type' => 'TEXT', |
|
| 707 | - 'input_name' => 'cntry[' . $CNT_ISO . ']', |
|
| 708 | - 'class' => 'small-text', |
|
| 709 | - ), |
|
| 710 | - 'RGN_ID' => array( |
|
| 711 | - 'type' => 'TEXT', |
|
| 712 | - 'input_name' => 'cntry[' . $CNT_ISO . ']', |
|
| 713 | - 'class' => 'small-text', |
|
| 714 | - ), |
|
| 715 | - 'CNT_name' => array( |
|
| 716 | - 'type' => 'TEXT', |
|
| 717 | - 'input_name' => 'cntry[' . $CNT_ISO . ']', |
|
| 718 | - 'class' => 'regular-text', |
|
| 719 | - ), |
|
| 720 | - 'CNT_cur_code' => array( |
|
| 721 | - 'type' => 'TEXT', |
|
| 722 | - 'input_name' => 'cntry[' . $CNT_ISO . ']', |
|
| 723 | - 'class' => 'small-text', |
|
| 724 | - 'disabled' => $CNT_cur_disabled, |
|
| 725 | - ), |
|
| 726 | - 'CNT_cur_single' => array( |
|
| 727 | - 'type' => 'TEXT', |
|
| 728 | - 'input_name' => 'cntry[' . $CNT_ISO . ']', |
|
| 729 | - 'class' => 'medium-text', |
|
| 730 | - 'disabled' => $CNT_cur_disabled, |
|
| 731 | - ), |
|
| 732 | - 'CNT_cur_plural' => array( |
|
| 733 | - 'type' => 'TEXT', |
|
| 734 | - 'input_name' => 'cntry[' . $CNT_ISO . ']', |
|
| 735 | - 'class' => 'medium-text', |
|
| 736 | - 'disabled' => $CNT_cur_disabled, |
|
| 737 | - ), |
|
| 738 | - 'CNT_cur_sign' => array( |
|
| 739 | - 'type' => 'TEXT', |
|
| 740 | - 'input_name' => 'cntry[' . $CNT_ISO . ']', |
|
| 741 | - 'class' => 'small-text', |
|
| 742 | - 'htmlentities' => false, |
|
| 743 | - 'disabled' => $CNT_cur_disabled, |
|
| 744 | - ), |
|
| 745 | - 'CNT_cur_sign_b4' => array( |
|
| 746 | - 'type' => 'RADIO_BTN', |
|
| 747 | - 'input_name' => 'cntry[' . $CNT_ISO . ']', |
|
| 748 | - 'class' => '', |
|
| 749 | - 'options' => $this->_yes_no_values, |
|
| 750 | - 'use_desc_4_label' => true, |
|
| 751 | - 'disabled' => $CNT_cur_disabled, |
|
| 752 | - ), |
|
| 753 | - 'CNT_cur_dec_plc' => array( |
|
| 754 | - 'type' => 'RADIO_BTN', |
|
| 755 | - 'input_name' => 'cntry[' . $CNT_ISO . ']', |
|
| 756 | - 'class' => '', |
|
| 757 | - 'options' => array( |
|
| 758 | - array('id' => 0, 'text' => ''), |
|
| 759 | - array('id' => 1, 'text' => ''), |
|
| 760 | - array('id' => 2, 'text' => ''), |
|
| 761 | - array('id' => 3, 'text' => ''), |
|
| 762 | - ), |
|
| 763 | - 'disabled' => $CNT_cur_disabled, |
|
| 764 | - ), |
|
| 765 | - 'CNT_cur_dec_mrk' => array( |
|
| 766 | - 'type' => 'RADIO_BTN', |
|
| 767 | - 'input_name' => 'cntry[' . $CNT_ISO . ']', |
|
| 768 | - 'class' => '', |
|
| 769 | - 'options' => array( |
|
| 770 | - array( |
|
| 771 | - 'id' => ',', |
|
| 772 | - 'text' => __(', (comma)', 'event_espresso'), |
|
| 773 | - ), |
|
| 774 | - array('id' => '.', 'text' => __('. (decimal)', 'event_espresso')), |
|
| 775 | - ), |
|
| 776 | - 'use_desc_4_label' => true, |
|
| 777 | - 'disabled' => $CNT_cur_disabled, |
|
| 778 | - ), |
|
| 779 | - 'CNT_cur_thsnds' => array( |
|
| 780 | - 'type' => 'RADIO_BTN', |
|
| 781 | - 'input_name' => 'cntry[' . $CNT_ISO . ']', |
|
| 782 | - 'class' => '', |
|
| 783 | - 'options' => array( |
|
| 784 | - array( |
|
| 785 | - 'id' => ',', |
|
| 786 | - 'text' => __(', (comma)', 'event_espresso'), |
|
| 787 | - ), |
|
| 788 | - array('id' => '.', 'text' => __('. (decimal)', 'event_espresso')), |
|
| 789 | - ), |
|
| 790 | - 'use_desc_4_label' => true, |
|
| 791 | - 'disabled' => $CNT_cur_disabled, |
|
| 792 | - ), |
|
| 793 | - 'CNT_tel_code' => array( |
|
| 794 | - 'type' => 'TEXT', |
|
| 795 | - 'input_name' => 'cntry[' . $CNT_ISO . ']', |
|
| 796 | - 'class' => 'small-text', |
|
| 797 | - ), |
|
| 798 | - 'CNT_is_EU' => array( |
|
| 799 | - 'type' => 'RADIO_BTN', |
|
| 800 | - 'input_name' => 'cntry[' . $CNT_ISO . ']', |
|
| 801 | - 'class' => '', |
|
| 802 | - 'options' => $this->_yes_no_values, |
|
| 803 | - 'use_desc_4_label' => true, |
|
| 804 | - ), |
|
| 805 | - ); |
|
| 806 | - $this->_template_args['inputs'] = EE_Question_Form_Input::generate_question_form_inputs_for_object( |
|
| 807 | - $country, |
|
| 808 | - $country_input_types |
|
| 809 | - ); |
|
| 810 | - $country_details_settings = EEH_Template::display_template( |
|
| 811 | - GEN_SET_TEMPLATE_PATH . 'country_details_settings.template.php', |
|
| 812 | - $this->_template_args, |
|
| 813 | - true |
|
| 814 | - ); |
|
| 815 | - |
|
| 816 | - if (defined('DOING_AJAX')) { |
|
| 817 | - $notices = EE_Error::get_notices(false, false, false); |
|
| 818 | - echo wp_json_encode( |
|
| 819 | - array( |
|
| 820 | - 'return_data' => $country_details_settings, |
|
| 821 | - 'success' => $notices['success'], |
|
| 822 | - 'errors' => $notices['errors'], |
|
| 823 | - ) |
|
| 824 | - ); |
|
| 825 | - die(); |
|
| 826 | - } else { |
|
| 827 | - return $country_details_settings; |
|
| 828 | - } |
|
| 829 | - } |
|
| 830 | - |
|
| 831 | - |
|
| 832 | - /** |
|
| 833 | - * @param string $CNT_ISO |
|
| 834 | - * @param EE_Country|null $country |
|
| 835 | - * @return string |
|
| 836 | - * @throws DomainException |
|
| 837 | - * @throws EE_Error |
|
| 838 | - * @throws InvalidArgumentException |
|
| 839 | - * @throws InvalidDataTypeException |
|
| 840 | - * @throws InvalidInterfaceException |
|
| 841 | - * @throws ReflectionException |
|
| 842 | - */ |
|
| 843 | - public function display_country_states($CNT_ISO = '', EE_Country $country = null) |
|
| 844 | - { |
|
| 845 | - |
|
| 846 | - $CNT_ISO = isset($this->_req_data['country']) |
|
| 847 | - ? sanitize_text_field($this->_req_data['country']) |
|
| 848 | - : $CNT_ISO; |
|
| 849 | - if (! $CNT_ISO) { |
|
| 850 | - return ''; |
|
| 851 | - } |
|
| 852 | - // for ajax |
|
| 853 | - remove_all_filters('FHEE__EEH_Form_Fields__label_html'); |
|
| 854 | - remove_all_filters('FHEE__EEH_Form_Fields__input_html'); |
|
| 855 | - add_filter('FHEE__EEH_Form_Fields__label_html', array($this, 'state_form_field_label_wrap'), 10, 2); |
|
| 856 | - add_filter('FHEE__EEH_Form_Fields__input_html', array($this, 'state_form_field_input__wrap'), 10, 2); |
|
| 857 | - $states = EEM_State::instance()->get_all_states_for_these_countries(array($CNT_ISO => $CNT_ISO)); |
|
| 858 | - if (empty($states)) { |
|
| 859 | - /** @var EventEspresso\core\services\address\CountrySubRegionDao $countrySubRegionDao */ |
|
| 860 | - $countrySubRegionDao = $this->loader->getShared( |
|
| 861 | - 'EventEspresso\core\services\address\CountrySubRegionDao' |
|
| 862 | - ); |
|
| 863 | - if ($countrySubRegionDao instanceof EventEspresso\core\services\address\CountrySubRegionDao) { |
|
| 864 | - $country = $this->verifyOrGetCountryFromIso($CNT_ISO, $country); |
|
| 865 | - if ($countrySubRegionDao->saveCountrySubRegions($country)) { |
|
| 866 | - $states = EEM_State::instance()->get_all_states_for_these_countries( |
|
| 867 | - array($CNT_ISO => $CNT_ISO) |
|
| 868 | - ); |
|
| 869 | - } |
|
| 870 | - } |
|
| 871 | - } |
|
| 872 | - if (is_array($states)) { |
|
| 873 | - foreach ($states as $STA_ID => $state) { |
|
| 874 | - if ($state instanceof EE_State) { |
|
| 875 | - // STA_abbrev STA_name STA_active |
|
| 876 | - $state_input_types = array( |
|
| 877 | - 'STA_abbrev' => array( |
|
| 878 | - 'type' => 'TEXT', |
|
| 879 | - 'input_name' => 'states[' . $STA_ID . ']', |
|
| 880 | - 'class' => 'mid-text', |
|
| 881 | - ), |
|
| 882 | - 'STA_name' => array( |
|
| 883 | - 'type' => 'TEXT', |
|
| 884 | - 'input_name' => 'states[' . $STA_ID . ']', |
|
| 885 | - 'class' => 'regular-text', |
|
| 886 | - ), |
|
| 887 | - 'STA_active' => array( |
|
| 888 | - 'type' => 'RADIO_BTN', |
|
| 889 | - 'input_name' => 'states[' . $STA_ID . ']', |
|
| 890 | - 'options' => $this->_yes_no_values, |
|
| 891 | - 'use_desc_4_label' => true, |
|
| 892 | - ), |
|
| 893 | - ); |
|
| 894 | - $this->_template_args['states'][ $STA_ID ]['inputs'] = |
|
| 895 | - EE_Question_Form_Input::generate_question_form_inputs_for_object( |
|
| 896 | - $state, |
|
| 897 | - $state_input_types |
|
| 898 | - ); |
|
| 899 | - $query_args = array( |
|
| 900 | - 'action' => 'delete_state', |
|
| 901 | - 'STA_ID' => $STA_ID, |
|
| 902 | - 'CNT_ISO' => $CNT_ISO, |
|
| 903 | - 'STA_abbrev' => $state->abbrev(), |
|
| 904 | - ); |
|
| 905 | - $this->_template_args['states'][ $STA_ID ]['delete_state_url'] = |
|
| 906 | - EE_Admin_Page::add_query_args_and_nonce( |
|
| 907 | - $query_args, |
|
| 908 | - GEN_SET_ADMIN_URL |
|
| 909 | - ); |
|
| 910 | - } |
|
| 911 | - } |
|
| 912 | - } else { |
|
| 913 | - $this->_template_args['states'] = false; |
|
| 914 | - } |
|
| 915 | - |
|
| 916 | - $this->_template_args['add_new_state_url'] = EE_Admin_Page::add_query_args_and_nonce( |
|
| 917 | - array('action' => 'add_new_state'), |
|
| 918 | - GEN_SET_ADMIN_URL |
|
| 919 | - ); |
|
| 920 | - |
|
| 921 | - $state_details_settings = EEH_Template::display_template( |
|
| 922 | - GEN_SET_TEMPLATE_PATH . 'state_details_settings.template.php', |
|
| 923 | - $this->_template_args, |
|
| 924 | - true |
|
| 925 | - ); |
|
| 926 | - |
|
| 927 | - if (defined('DOING_AJAX')) { |
|
| 928 | - $notices = EE_Error::get_notices(false, false, false); |
|
| 929 | - echo wp_json_encode( |
|
| 930 | - array( |
|
| 931 | - 'return_data' => $state_details_settings, |
|
| 932 | - 'success' => $notices['success'], |
|
| 933 | - 'errors' => $notices['errors'], |
|
| 934 | - ) |
|
| 935 | - ); |
|
| 936 | - die(); |
|
| 937 | - } else { |
|
| 938 | - return $state_details_settings; |
|
| 939 | - } |
|
| 940 | - } |
|
| 941 | - |
|
| 942 | - |
|
| 943 | - /** |
|
| 944 | - * add_new_state |
|
| 945 | - * |
|
| 946 | - * @access public |
|
| 947 | - * @return void |
|
| 948 | - * @throws EE_Error |
|
| 949 | - * @throws InvalidArgumentException |
|
| 950 | - * @throws InvalidDataTypeException |
|
| 951 | - * @throws InvalidInterfaceException |
|
| 952 | - */ |
|
| 953 | - public function add_new_state() |
|
| 954 | - { |
|
| 955 | - |
|
| 956 | - $success = true; |
|
| 957 | - |
|
| 958 | - $CNT_ISO = isset($this->_req_data['CNT_ISO']) |
|
| 959 | - ? strtoupper(sanitize_text_field($this->_req_data['CNT_ISO'])) |
|
| 960 | - : false; |
|
| 961 | - if (! $CNT_ISO) { |
|
| 962 | - EE_Error::add_error( |
|
| 963 | - __('No Country ISO code or an invalid Country ISO code was received.', 'event_espresso'), |
|
| 964 | - __FILE__, |
|
| 965 | - __FUNCTION__, |
|
| 966 | - __LINE__ |
|
| 967 | - ); |
|
| 968 | - $success = false; |
|
| 969 | - } |
|
| 970 | - $STA_abbrev = isset($this->_req_data['STA_abbrev']) |
|
| 971 | - ? sanitize_text_field($this->_req_data['STA_abbrev']) |
|
| 972 | - : false; |
|
| 973 | - if (! $STA_abbrev) { |
|
| 974 | - EE_Error::add_error( |
|
| 975 | - __('No State ISO code or an invalid State ISO code was received.', 'event_espresso'), |
|
| 976 | - __FILE__, |
|
| 977 | - __FUNCTION__, |
|
| 978 | - __LINE__ |
|
| 979 | - ); |
|
| 980 | - $success = false; |
|
| 981 | - } |
|
| 982 | - $STA_name = isset($this->_req_data['STA_name']) |
|
| 983 | - ? sanitize_text_field($this->_req_data['STA_name']) |
|
| 984 | - : false; |
|
| 985 | - if (! $STA_name) { |
|
| 986 | - EE_Error::add_error( |
|
| 987 | - __('No State name or an invalid State name was received.', 'event_espresso'), |
|
| 988 | - __FILE__, |
|
| 989 | - __FUNCTION__, |
|
| 990 | - __LINE__ |
|
| 991 | - ); |
|
| 992 | - $success = false; |
|
| 993 | - } |
|
| 994 | - |
|
| 995 | - if ($success) { |
|
| 996 | - $cols_n_values = array( |
|
| 997 | - 'CNT_ISO' => $CNT_ISO, |
|
| 998 | - 'STA_abbrev' => $STA_abbrev, |
|
| 999 | - 'STA_name' => $STA_name, |
|
| 1000 | - 'STA_active' => true, |
|
| 1001 | - ); |
|
| 1002 | - $success = EEM_State::instance()->insert($cols_n_values); |
|
| 1003 | - EE_Error::add_success(__('The State was added successfully.', 'event_espresso')); |
|
| 1004 | - } |
|
| 1005 | - |
|
| 1006 | - if (defined('DOING_AJAX')) { |
|
| 1007 | - $notices = EE_Error::get_notices(false, false, false); |
|
| 1008 | - echo wp_json_encode(array_merge($notices, array('return_data' => $CNT_ISO))); |
|
| 1009 | - die(); |
|
| 1010 | - } else { |
|
| 1011 | - $this->_redirect_after_action($success, 'State', 'added', array('action' => 'country_settings')); |
|
| 1012 | - } |
|
| 1013 | - } |
|
| 1014 | - |
|
| 1015 | - |
|
| 1016 | - /** |
|
| 1017 | - * delete_state |
|
| 1018 | - * |
|
| 1019 | - * @access public |
|
| 1020 | - * @return boolean |
|
| 1021 | - * @throws EE_Error |
|
| 1022 | - * @throws InvalidArgumentException |
|
| 1023 | - * @throws InvalidDataTypeException |
|
| 1024 | - * @throws InvalidInterfaceException |
|
| 1025 | - */ |
|
| 1026 | - public function delete_state() |
|
| 1027 | - { |
|
| 1028 | - $CNT_ISO = isset($this->_req_data['CNT_ISO']) |
|
| 1029 | - ? strtoupper(sanitize_text_field($this->_req_data['CNT_ISO'])) |
|
| 1030 | - : false; |
|
| 1031 | - $STA_ID = isset($this->_req_data['STA_ID']) |
|
| 1032 | - ? sanitize_text_field($this->_req_data['STA_ID']) |
|
| 1033 | - : false; |
|
| 1034 | - $STA_abbrev = isset($this->_req_data['STA_abbrev']) |
|
| 1035 | - ? sanitize_text_field($this->_req_data['STA_abbrev']) |
|
| 1036 | - : false; |
|
| 1037 | - if (! $STA_ID) { |
|
| 1038 | - EE_Error::add_error( |
|
| 1039 | - __('No State ID or an invalid State ID was received.', 'event_espresso'), |
|
| 1040 | - __FILE__, |
|
| 1041 | - __FUNCTION__, |
|
| 1042 | - __LINE__ |
|
| 1043 | - ); |
|
| 1044 | - return false; |
|
| 1045 | - } |
|
| 1046 | - |
|
| 1047 | - $success = EEM_State::instance()->delete_by_ID($STA_ID); |
|
| 1048 | - if ($success !== false) { |
|
| 1049 | - do_action( |
|
| 1050 | - 'AHEE__General_Settings_Admin_Page__delete_state__state_deleted', |
|
| 1051 | - $CNT_ISO, |
|
| 1052 | - $STA_ID, |
|
| 1053 | - array('STA_abbrev' => $STA_abbrev) |
|
| 1054 | - ); |
|
| 1055 | - EE_Error::add_success(__('The State was deleted successfully.', 'event_espresso')); |
|
| 1056 | - } |
|
| 1057 | - if (defined('DOING_AJAX')) { |
|
| 1058 | - $notices = EE_Error::get_notices(false, false); |
|
| 1059 | - $notices['return_data'] = true; |
|
| 1060 | - echo wp_json_encode($notices); |
|
| 1061 | - die(); |
|
| 1062 | - } else { |
|
| 1063 | - $this->_redirect_after_action( |
|
| 1064 | - $success, |
|
| 1065 | - 'State', |
|
| 1066 | - 'deleted', |
|
| 1067 | - array('action' => 'country_settings') |
|
| 1068 | - ); |
|
| 1069 | - } |
|
| 1070 | - } |
|
| 1071 | - |
|
| 1072 | - |
|
| 1073 | - /** |
|
| 1074 | - * _update_country_settings |
|
| 1075 | - * |
|
| 1076 | - * @access protected |
|
| 1077 | - * @return void |
|
| 1078 | - * @throws EE_Error |
|
| 1079 | - * @throws InvalidArgumentException |
|
| 1080 | - * @throws InvalidDataTypeException |
|
| 1081 | - * @throws InvalidInterfaceException |
|
| 1082 | - */ |
|
| 1083 | - protected function _update_country_settings() |
|
| 1084 | - { |
|
| 1085 | - // grab the country ISO code |
|
| 1086 | - $CNT_ISO = isset($this->_req_data['country']) |
|
| 1087 | - ? strtoupper(sanitize_text_field($this->_req_data['country'])) |
|
| 1088 | - : false; |
|
| 1089 | - if (! $CNT_ISO) { |
|
| 1090 | - EE_Error::add_error( |
|
| 1091 | - __('No Country ISO code or an invalid Country ISO code was received.', 'event_espresso'), |
|
| 1092 | - __FILE__, |
|
| 1093 | - __FUNCTION__, |
|
| 1094 | - __LINE__ |
|
| 1095 | - ); |
|
| 1096 | - |
|
| 1097 | - return; |
|
| 1098 | - } |
|
| 1099 | - $cols_n_values = array(); |
|
| 1100 | - $cols_n_values['CNT_ISO3'] = isset($this->_req_data['cntry'][ $CNT_ISO ]['CNT_ISO3']) |
|
| 1101 | - ? strtoupper(sanitize_text_field($this->_req_data['cntry'][ $CNT_ISO ]['CNT_ISO3'])) |
|
| 1102 | - : false; |
|
| 1103 | - $cols_n_values['RGN_ID'] = isset($this->_req_data['cntry'][ $CNT_ISO ]['RGN_ID']) |
|
| 1104 | - ? absint($this->_req_data['cntry'][ $CNT_ISO ]['RGN_ID']) |
|
| 1105 | - : null; |
|
| 1106 | - $cols_n_values['CNT_name'] = isset($this->_req_data['cntry'][ $CNT_ISO ]['CNT_name']) |
|
| 1107 | - ? sanitize_text_field($this->_req_data['cntry'][ $CNT_ISO ]['CNT_name']) |
|
| 1108 | - : null; |
|
| 1109 | - if (isset($this->_req_data['cntry'][ $CNT_ISO ]['CNT_cur_code'])) { |
|
| 1110 | - $cols_n_values['CNT_cur_code'] = strtoupper( |
|
| 1111 | - sanitize_text_field($this->_req_data['cntry'][ $CNT_ISO ]['CNT_cur_code']) |
|
| 1112 | - ); |
|
| 1113 | - } |
|
| 1114 | - if (isset($this->_req_data['cntry'][ $CNT_ISO ]['CNT_cur_single'])) { |
|
| 1115 | - $cols_n_values['CNT_cur_single'] = sanitize_text_field( |
|
| 1116 | - $this->_req_data['cntry'][ $CNT_ISO ]['CNT_cur_single'] |
|
| 1117 | - ); |
|
| 1118 | - } |
|
| 1119 | - if (isset($this->_req_data['cntry'][ $CNT_ISO ]['CNT_cur_plural'])) { |
|
| 1120 | - $cols_n_values['CNT_cur_plural'] = sanitize_text_field( |
|
| 1121 | - $this->_req_data['cntry'][ $CNT_ISO ]['CNT_cur_plural'] |
|
| 1122 | - ); |
|
| 1123 | - } |
|
| 1124 | - if (isset($this->_req_data['cntry'][ $CNT_ISO ]['CNT_cur_sign'])) { |
|
| 1125 | - $cols_n_values['CNT_cur_sign'] = sanitize_text_field( |
|
| 1126 | - $this->_req_data['cntry'][ $CNT_ISO ]['CNT_cur_sign'] |
|
| 1127 | - ); |
|
| 1128 | - } |
|
| 1129 | - if (isset($this->_req_data['cntry'][ $CNT_ISO ]['CNT_cur_sign_b4'])) { |
|
| 1130 | - $cols_n_values['CNT_cur_sign_b4'] = absint( |
|
| 1131 | - $this->_req_data['cntry'][ $CNT_ISO ]['CNT_cur_sign_b4'] |
|
| 1132 | - ); |
|
| 1133 | - } |
|
| 1134 | - if (isset($this->_req_data['cntry'][ $CNT_ISO ]['CNT_cur_dec_plc'])) { |
|
| 1135 | - $cols_n_values['CNT_cur_dec_plc'] = absint( |
|
| 1136 | - $this->_req_data['cntry'][ $CNT_ISO ]['CNT_cur_dec_plc'] |
|
| 1137 | - ); |
|
| 1138 | - } |
|
| 1139 | - if (isset($this->_req_data['cntry'][ $CNT_ISO ]['CNT_cur_dec_mrk'])) { |
|
| 1140 | - $cols_n_values['CNT_cur_dec_mrk'] = sanitize_text_field( |
|
| 1141 | - $this->_req_data['cntry'][ $CNT_ISO ]['CNT_cur_dec_mrk'] |
|
| 1142 | - ); |
|
| 1143 | - } |
|
| 1144 | - if (isset($this->_req_data['cntry'][ $CNT_ISO ]['CNT_cur_thsnds'])) { |
|
| 1145 | - $cols_n_values['CNT_cur_thsnds'] = sanitize_text_field( |
|
| 1146 | - $this->_req_data['cntry'][ $CNT_ISO ]['CNT_cur_thsnds'] |
|
| 1147 | - ); |
|
| 1148 | - } |
|
| 1149 | - $cols_n_values['CNT_tel_code'] = isset($this->_req_data['cntry'][ $CNT_ISO ]['CNT_tel_code']) |
|
| 1150 | - ? sanitize_text_field($this->_req_data['cntry'][ $CNT_ISO ]['CNT_tel_code']) |
|
| 1151 | - : null; |
|
| 1152 | - $cols_n_values['CNT_is_EU'] = isset($this->_req_data['cntry'][ $CNT_ISO ]['CNT_is_EU']) |
|
| 1153 | - ? absint($this->_req_data['cntry'][ $CNT_ISO ]['CNT_is_EU']) |
|
| 1154 | - : false; |
|
| 1155 | - $cols_n_values['CNT_active'] = isset($this->_req_data['cntry'][ $CNT_ISO ]['CNT_active']) |
|
| 1156 | - ? absint($this->_req_data['cntry'][ $CNT_ISO ]['CNT_active']) |
|
| 1157 | - : false; |
|
| 1158 | - // allow filtering of country data |
|
| 1159 | - $cols_n_values = apply_filters( |
|
| 1160 | - 'FHEE__General_Settings_Admin_Page___update_country_settings__cols_n_values', |
|
| 1161 | - $cols_n_values |
|
| 1162 | - ); |
|
| 1163 | - |
|
| 1164 | - // where values |
|
| 1165 | - $where_cols_n_values = array(array('CNT_ISO' => $CNT_ISO)); |
|
| 1166 | - // run the update |
|
| 1167 | - $success = EEM_Country::instance()->update($cols_n_values, $where_cols_n_values); |
|
| 1168 | - |
|
| 1169 | - if (isset($this->_req_data['states']) && is_array($this->_req_data['states']) && $success !== false) { |
|
| 1170 | - // allow filtering of states data |
|
| 1171 | - $states = apply_filters( |
|
| 1172 | - 'FHEE__General_Settings_Admin_Page___update_country_settings__states', |
|
| 1173 | - $this->_req_data['states'] |
|
| 1174 | - ); |
|
| 1175 | - |
|
| 1176 | - // loop thru state data ( looks like : states[75][STA_name] ) |
|
| 1177 | - foreach ($states as $STA_ID => $state) { |
|
| 1178 | - $cols_n_values = array( |
|
| 1179 | - 'CNT_ISO' => $CNT_ISO, |
|
| 1180 | - 'STA_abbrev' => sanitize_text_field($state['STA_abbrev']), |
|
| 1181 | - 'STA_name' => sanitize_text_field($state['STA_name']), |
|
| 1182 | - 'STA_active' => (bool) absint($state['STA_active']), |
|
| 1183 | - ); |
|
| 1184 | - // where values |
|
| 1185 | - $where_cols_n_values = array(array('STA_ID' => $STA_ID)); |
|
| 1186 | - // run the update |
|
| 1187 | - $success = EEM_State::instance()->update($cols_n_values, $where_cols_n_values); |
|
| 1188 | - if ($success !== false) { |
|
| 1189 | - do_action( |
|
| 1190 | - 'AHEE__General_Settings_Admin_Page__update_country_settings__state_saved', |
|
| 1191 | - $CNT_ISO, |
|
| 1192 | - $STA_ID, |
|
| 1193 | - $cols_n_values |
|
| 1194 | - ); |
|
| 1195 | - } |
|
| 1196 | - } |
|
| 1197 | - } |
|
| 1198 | - // check if country being edited matches org option country, and if so, then update EE_Config with new settings |
|
| 1199 | - if (isset(EE_Registry::instance()->CFG->organization->CNT_ISO) |
|
| 1200 | - && $CNT_ISO == EE_Registry::instance()->CFG->organization->CNT_ISO |
|
| 1201 | - ) { |
|
| 1202 | - EE_Registry::instance()->CFG->currency = new EE_Currency_Config($CNT_ISO); |
|
| 1203 | - EE_Registry::instance()->CFG->update_espresso_config(); |
|
| 1204 | - } |
|
| 1205 | - |
|
| 1206 | - if ($success !== false) { |
|
| 1207 | - EE_Error::add_success( |
|
| 1208 | - esc_html__('Country Settings updated successfully.', 'event_espresso') |
|
| 1209 | - ); |
|
| 1210 | - } |
|
| 1211 | - $this->_redirect_after_action( |
|
| 1212 | - $success, |
|
| 1213 | - '', |
|
| 1214 | - '', |
|
| 1215 | - array('action' => 'country_settings', 'country' => $CNT_ISO), |
|
| 1216 | - true |
|
| 1217 | - ); |
|
| 1218 | - } |
|
| 1219 | - |
|
| 1220 | - |
|
| 1221 | - /** |
|
| 1222 | - * form_form_field_label_wrap |
|
| 1223 | - * |
|
| 1224 | - * @access public |
|
| 1225 | - * @param string $label |
|
| 1226 | - * @return string |
|
| 1227 | - */ |
|
| 1228 | - public function country_form_field_label_wrap($label, $required_text) |
|
| 1229 | - { |
|
| 1230 | - return ' |
|
| 23 | + /** |
|
| 24 | + * _question_group |
|
| 25 | + * holds the specific question group object for the question group details screen |
|
| 26 | + * |
|
| 27 | + * @var object |
|
| 28 | + */ |
|
| 29 | + protected $_question_group; |
|
| 30 | + |
|
| 31 | + |
|
| 32 | + /** |
|
| 33 | + * Initialize basic properties. |
|
| 34 | + */ |
|
| 35 | + protected function _init_page_props() |
|
| 36 | + { |
|
| 37 | + $this->page_slug = GEN_SET_PG_SLUG; |
|
| 38 | + $this->page_label = GEN_SET_LABEL; |
|
| 39 | + $this->_admin_base_url = GEN_SET_ADMIN_URL; |
|
| 40 | + $this->_admin_base_path = GEN_SET_ADMIN; |
|
| 41 | + } |
|
| 42 | + |
|
| 43 | + |
|
| 44 | + /** |
|
| 45 | + * Set ajax hooks |
|
| 46 | + */ |
|
| 47 | + protected function _ajax_hooks() |
|
| 48 | + { |
|
| 49 | + add_action('wp_ajax_espresso_display_country_settings', array($this, 'display_country_settings')); |
|
| 50 | + add_action('wp_ajax_espresso_display_country_states', array($this, 'display_country_states')); |
|
| 51 | + add_action('wp_ajax_espresso_delete_state', array($this, 'delete_state'), 10, 3); |
|
| 52 | + add_action('wp_ajax_espresso_add_new_state', array($this, 'add_new_state')); |
|
| 53 | + } |
|
| 54 | + |
|
| 55 | + |
|
| 56 | + /** |
|
| 57 | + * More page properties initialization. |
|
| 58 | + */ |
|
| 59 | + protected function _define_page_props() |
|
| 60 | + { |
|
| 61 | + $this->_admin_page_title = GEN_SET_LABEL; |
|
| 62 | + $this->_labels = array( |
|
| 63 | + 'publishbox' => __('Update Settings', 'event_espresso'), |
|
| 64 | + ); |
|
| 65 | + } |
|
| 66 | + |
|
| 67 | + |
|
| 68 | + /** |
|
| 69 | + * Set page routes property. |
|
| 70 | + */ |
|
| 71 | + protected function _set_page_routes() |
|
| 72 | + { |
|
| 73 | + $this->_page_routes = array( |
|
| 74 | + |
|
| 75 | + 'critical_pages' => array( |
|
| 76 | + 'func' => '_espresso_page_settings', |
|
| 77 | + 'capability' => 'manage_options', |
|
| 78 | + ), |
|
| 79 | + 'update_espresso_page_settings' => array( |
|
| 80 | + 'func' => '_update_espresso_page_settings', |
|
| 81 | + 'capability' => 'manage_options', |
|
| 82 | + 'noheader' => true, |
|
| 83 | + ), |
|
| 84 | + 'default' => array( |
|
| 85 | + 'func' => '_your_organization_settings', |
|
| 86 | + 'capability' => 'manage_options', |
|
| 87 | + ), |
|
| 88 | + |
|
| 89 | + 'update_your_organization_settings' => array( |
|
| 90 | + 'func' => '_update_your_organization_settings', |
|
| 91 | + 'capability' => 'manage_options', |
|
| 92 | + 'noheader' => true, |
|
| 93 | + ), |
|
| 94 | + |
|
| 95 | + 'admin_option_settings' => array( |
|
| 96 | + 'func' => '_admin_option_settings', |
|
| 97 | + 'capability' => 'manage_options', |
|
| 98 | + ), |
|
| 99 | + |
|
| 100 | + 'update_admin_option_settings' => array( |
|
| 101 | + 'func' => '_update_admin_option_settings', |
|
| 102 | + 'capability' => 'manage_options', |
|
| 103 | + 'noheader' => true, |
|
| 104 | + ), |
|
| 105 | + |
|
| 106 | + 'country_settings' => array( |
|
| 107 | + 'func' => '_country_settings', |
|
| 108 | + 'capability' => 'manage_options', |
|
| 109 | + ), |
|
| 110 | + |
|
| 111 | + 'update_country_settings' => array( |
|
| 112 | + 'func' => '_update_country_settings', |
|
| 113 | + 'capability' => 'manage_options', |
|
| 114 | + 'noheader' => true, |
|
| 115 | + ), |
|
| 116 | + |
|
| 117 | + 'display_country_settings' => array( |
|
| 118 | + 'func' => 'display_country_settings', |
|
| 119 | + 'capability' => 'manage_options', |
|
| 120 | + 'noheader' => true, |
|
| 121 | + ), |
|
| 122 | + |
|
| 123 | + 'add_new_state' => array( |
|
| 124 | + 'func' => 'add_new_state', |
|
| 125 | + 'capability' => 'manage_options', |
|
| 126 | + 'noheader' => true, |
|
| 127 | + ), |
|
| 128 | + |
|
| 129 | + 'delete_state' => array( |
|
| 130 | + 'func' => 'delete_state', |
|
| 131 | + 'capability' => 'manage_options', |
|
| 132 | + 'noheader' => true, |
|
| 133 | + ), |
|
| 134 | + 'privacy_settings' => array( |
|
| 135 | + 'func' => 'privacySettings', |
|
| 136 | + 'capability' => 'manage_options', |
|
| 137 | + ), |
|
| 138 | + 'update_privacy_settings' => array( |
|
| 139 | + 'func' => 'updatePrivacySettings', |
|
| 140 | + 'capability' => 'manage_options', |
|
| 141 | + 'noheader' => true, |
|
| 142 | + 'headers_sent_route' => 'privacy_settings', |
|
| 143 | + ), |
|
| 144 | + ); |
|
| 145 | + } |
|
| 146 | + |
|
| 147 | + |
|
| 148 | + /** |
|
| 149 | + * Set page configuration property |
|
| 150 | + */ |
|
| 151 | + protected function _set_page_config() |
|
| 152 | + { |
|
| 153 | + $this->_page_config = array( |
|
| 154 | + 'critical_pages' => array( |
|
| 155 | + 'nav' => array( |
|
| 156 | + 'label' => __('Critical Pages', 'event_espresso'), |
|
| 157 | + 'order' => 50, |
|
| 158 | + ), |
|
| 159 | + 'metaboxes' => array_merge($this->_default_espresso_metaboxes, array('_publish_post_box')), |
|
| 160 | + 'help_tabs' => array( |
|
| 161 | + 'general_settings_critical_pages_help_tab' => array( |
|
| 162 | + 'title' => __('Critical Pages', 'event_espresso'), |
|
| 163 | + 'filename' => 'general_settings_critical_pages', |
|
| 164 | + ), |
|
| 165 | + ), |
|
| 166 | + 'help_tour' => array('Critical_Pages_Help_Tour'), |
|
| 167 | + 'require_nonce' => false, |
|
| 168 | + ), |
|
| 169 | + 'default' => array( |
|
| 170 | + 'nav' => array( |
|
| 171 | + 'label' => __('Your Organization', 'event_espresso'), |
|
| 172 | + 'order' => 20, |
|
| 173 | + ), |
|
| 174 | + 'help_tabs' => array( |
|
| 175 | + 'general_settings_your_organization_help_tab' => array( |
|
| 176 | + 'title' => __('Your Organization', 'event_espresso'), |
|
| 177 | + 'filename' => 'general_settings_your_organization', |
|
| 178 | + ), |
|
| 179 | + ), |
|
| 180 | + 'help_tour' => array('Your_Organization_Help_Tour'), |
|
| 181 | + 'metaboxes' => array_merge($this->_default_espresso_metaboxes, array('_publish_post_box')), |
|
| 182 | + 'require_nonce' => false, |
|
| 183 | + ), |
|
| 184 | + 'admin_option_settings' => array( |
|
| 185 | + 'nav' => array( |
|
| 186 | + 'label' => __('Admin Options', 'event_espresso'), |
|
| 187 | + 'order' => 60, |
|
| 188 | + ), |
|
| 189 | + 'metaboxes' => array_merge($this->_default_espresso_metaboxes, array('_publish_post_box')), |
|
| 190 | + 'help_tabs' => array( |
|
| 191 | + 'general_settings_admin_options_help_tab' => array( |
|
| 192 | + 'title' => __('Admin Options', 'event_espresso'), |
|
| 193 | + 'filename' => 'general_settings_admin_options', |
|
| 194 | + ), |
|
| 195 | + ), |
|
| 196 | + 'help_tour' => array('Admin_Options_Help_Tour'), |
|
| 197 | + 'require_nonce' => false, |
|
| 198 | + ), |
|
| 199 | + 'country_settings' => array( |
|
| 200 | + 'nav' => array( |
|
| 201 | + 'label' => __('Countries', 'event_espresso'), |
|
| 202 | + 'order' => 70, |
|
| 203 | + ), |
|
| 204 | + 'help_tabs' => array( |
|
| 205 | + 'general_settings_countries_help_tab' => array( |
|
| 206 | + 'title' => __('Countries', 'event_espresso'), |
|
| 207 | + 'filename' => 'general_settings_countries', |
|
| 208 | + ), |
|
| 209 | + ), |
|
| 210 | + 'help_tour' => array('Countries_Help_Tour'), |
|
| 211 | + 'require_nonce' => false, |
|
| 212 | + ), |
|
| 213 | + 'privacy_settings' => array( |
|
| 214 | + 'nav' => array( |
|
| 215 | + 'label' => esc_html__('Privacy', 'event_espresso'), |
|
| 216 | + 'order' => 80, |
|
| 217 | + ), |
|
| 218 | + 'metaboxes' => array_merge($this->_default_espresso_metaboxes, array('_publish_post_box')), |
|
| 219 | + 'require_nonce' => false, |
|
| 220 | + ), |
|
| 221 | + ); |
|
| 222 | + } |
|
| 223 | + |
|
| 224 | + |
|
| 225 | + protected function _add_screen_options() |
|
| 226 | + { |
|
| 227 | + } |
|
| 228 | + |
|
| 229 | + |
|
| 230 | + protected function _add_feature_pointers() |
|
| 231 | + { |
|
| 232 | + } |
|
| 233 | + |
|
| 234 | + |
|
| 235 | + /** |
|
| 236 | + * Enqueue global scripts and styles for all routes in the General Settings Admin Pages. |
|
| 237 | + */ |
|
| 238 | + public function load_scripts_styles() |
|
| 239 | + { |
|
| 240 | + // styles |
|
| 241 | + wp_enqueue_style('espresso-ui-theme'); |
|
| 242 | + // scripts |
|
| 243 | + wp_enqueue_script('ee_admin_js'); |
|
| 244 | + } |
|
| 245 | + |
|
| 246 | + |
|
| 247 | + /** |
|
| 248 | + * Execute logic running on `admin_init` |
|
| 249 | + */ |
|
| 250 | + public function admin_init() |
|
| 251 | + { |
|
| 252 | + EE_Registry::$i18n_js_strings['invalid_server_response'] = __( |
|
| 253 | + 'An error occurred! Your request may have been processed, but a valid response from the server was not received. Please refresh the page and try again.', |
|
| 254 | + 'event_espresso' |
|
| 255 | + ); |
|
| 256 | + EE_Registry::$i18n_js_strings['error_occurred'] = __( |
|
| 257 | + 'An error occurred! Please refresh the page and try again.', |
|
| 258 | + 'event_espresso' |
|
| 259 | + ); |
|
| 260 | + EE_Registry::$i18n_js_strings['confirm_delete_state'] = __( |
|
| 261 | + 'Are you sure you want to delete this State / Province?', |
|
| 262 | + 'event_espresso' |
|
| 263 | + ); |
|
| 264 | + $protocol = isset($_SERVER['HTTPS']) ? 'https://' : 'http://'; |
|
| 265 | + EE_Registry::$i18n_js_strings['ajax_url'] = admin_url( |
|
| 266 | + 'admin-ajax.php?page=espresso_general_settings', |
|
| 267 | + $protocol |
|
| 268 | + ); |
|
| 269 | + } |
|
| 270 | + |
|
| 271 | + |
|
| 272 | + public function admin_notices() |
|
| 273 | + { |
|
| 274 | + } |
|
| 275 | + |
|
| 276 | + |
|
| 277 | + public function admin_footer_scripts() |
|
| 278 | + { |
|
| 279 | + } |
|
| 280 | + |
|
| 281 | + |
|
| 282 | + /** |
|
| 283 | + * Enqueue scripts and styles for the default route. |
|
| 284 | + */ |
|
| 285 | + public function load_scripts_styles_default() |
|
| 286 | + { |
|
| 287 | + // styles |
|
| 288 | + wp_enqueue_style('thickbox'); |
|
| 289 | + // scripts |
|
| 290 | + wp_enqueue_script('media-upload'); |
|
| 291 | + wp_enqueue_script('thickbox'); |
|
| 292 | + wp_register_script( |
|
| 293 | + 'organization_settings', |
|
| 294 | + GEN_SET_ASSETS_URL . 'your_organization_settings.js', |
|
| 295 | + array('jquery', 'media-upload', 'thickbox'), |
|
| 296 | + EVENT_ESPRESSO_VERSION, |
|
| 297 | + true |
|
| 298 | + ); |
|
| 299 | + wp_register_style('organization-css', GEN_SET_ASSETS_URL . 'organization.css', array(), EVENT_ESPRESSO_VERSION); |
|
| 300 | + wp_enqueue_script('organization_settings'); |
|
| 301 | + wp_enqueue_style('organization-css'); |
|
| 302 | + $confirm_image_delete = array( |
|
| 303 | + 'text' => __( |
|
| 304 | + 'Do you really want to delete this image? Please remember to save your settings to complete the removal.', |
|
| 305 | + 'event_espresso' |
|
| 306 | + ), |
|
| 307 | + ); |
|
| 308 | + wp_localize_script('organization_settings', 'confirm_image_delete', $confirm_image_delete); |
|
| 309 | + } |
|
| 310 | + |
|
| 311 | + |
|
| 312 | + /** |
|
| 313 | + * Enqueue scripts and styles for the country settings route. |
|
| 314 | + */ |
|
| 315 | + public function load_scripts_styles_country_settings() |
|
| 316 | + { |
|
| 317 | + // scripts |
|
| 318 | + wp_register_script( |
|
| 319 | + 'gen_settings_countries', |
|
| 320 | + GEN_SET_ASSETS_URL . 'gen_settings_countries.js', |
|
| 321 | + array('ee_admin_js'), |
|
| 322 | + EVENT_ESPRESSO_VERSION, |
|
| 323 | + true |
|
| 324 | + ); |
|
| 325 | + wp_register_style('organization-css', GEN_SET_ASSETS_URL . 'organization.css', array(), EVENT_ESPRESSO_VERSION); |
|
| 326 | + wp_enqueue_script('gen_settings_countries'); |
|
| 327 | + wp_enqueue_style('organization-css'); |
|
| 328 | + } |
|
| 329 | + |
|
| 330 | + |
|
| 331 | + /************* Espresso Pages *************/ |
|
| 332 | + /** |
|
| 333 | + * _espresso_page_settings |
|
| 334 | + * |
|
| 335 | + * @throws \EE_Error |
|
| 336 | + * @throws DomainException |
|
| 337 | + * @throws DomainException |
|
| 338 | + * @throws InvalidDataTypeException |
|
| 339 | + * @throws InvalidArgumentException |
|
| 340 | + */ |
|
| 341 | + protected function _espresso_page_settings() |
|
| 342 | + { |
|
| 343 | + // Check to make sure all of the main pages are setup properly, |
|
| 344 | + // if not create the default pages and display an admin notice |
|
| 345 | + EEH_Activation::verify_default_pages_exist(); |
|
| 346 | + $this->_transient_garbage_collection(); |
|
| 347 | + $this->_template_args['values'] = $this->_yes_no_values; |
|
| 348 | + $this->_template_args['reg_page_id'] = isset(EE_Registry::instance()->CFG->core->reg_page_id) |
|
| 349 | + ? EE_Registry::instance()->CFG->core->reg_page_id |
|
| 350 | + : null; |
|
| 351 | + $this->_template_args['reg_page_obj'] = isset(EE_Registry::instance()->CFG->core->reg_page_id) |
|
| 352 | + ? get_page(EE_Registry::instance()->CFG->core->reg_page_id) |
|
| 353 | + : false; |
|
| 354 | + $this->_template_args['txn_page_id'] = isset(EE_Registry::instance()->CFG->core->txn_page_id) |
|
| 355 | + ? EE_Registry::instance()->CFG->core->txn_page_id |
|
| 356 | + : null; |
|
| 357 | + $this->_template_args['txn_page_obj'] = isset(EE_Registry::instance()->CFG->core->txn_page_id) |
|
| 358 | + ? get_page(EE_Registry::instance()->CFG->core->txn_page_id) |
|
| 359 | + : false; |
|
| 360 | + $this->_template_args['thank_you_page_id'] = isset(EE_Registry::instance()->CFG->core->thank_you_page_id) |
|
| 361 | + ? EE_Registry::instance()->CFG->core->thank_you_page_id |
|
| 362 | + : null; |
|
| 363 | + $this->_template_args['thank_you_page_obj'] = isset(EE_Registry::instance()->CFG->core->thank_you_page_id) |
|
| 364 | + ? get_page(EE_Registry::instance()->CFG->core->thank_you_page_id) |
|
| 365 | + : false; |
|
| 366 | + $this->_template_args['cancel_page_id'] = isset(EE_Registry::instance()->CFG->core->cancel_page_id) |
|
| 367 | + ? EE_Registry::instance()->CFG->core->cancel_page_id |
|
| 368 | + : null; |
|
| 369 | + $this->_template_args['cancel_page_obj'] = isset(EE_Registry::instance()->CFG->core->cancel_page_id) |
|
| 370 | + ? get_page(EE_Registry::instance()->CFG->core->cancel_page_id) |
|
| 371 | + : false; |
|
| 372 | + $this->_set_add_edit_form_tags('update_espresso_page_settings'); |
|
| 373 | + $this->_set_publish_post_box_vars(null, false, false, null, false); |
|
| 374 | + $this->_template_args['admin_page_content'] = EEH_Template::display_template( |
|
| 375 | + GEN_SET_TEMPLATE_PATH . 'espresso_page_settings.template.php', |
|
| 376 | + $this->_template_args, |
|
| 377 | + true |
|
| 378 | + ); |
|
| 379 | + $this->display_admin_page_with_sidebar(); |
|
| 380 | + } |
|
| 381 | + |
|
| 382 | + |
|
| 383 | + /** |
|
| 384 | + * Handler for updating espresso page settings. |
|
| 385 | + * |
|
| 386 | + * @throws EE_Error |
|
| 387 | + */ |
|
| 388 | + protected function _update_espresso_page_settings() |
|
| 389 | + { |
|
| 390 | + // capture incoming request data && set page IDs |
|
| 391 | + EE_Registry::instance()->CFG->core->reg_page_id = isset($this->_req_data['reg_page_id']) |
|
| 392 | + ? absint($this->_req_data['reg_page_id']) |
|
| 393 | + : EE_Registry::instance()->CFG->core->reg_page_id; |
|
| 394 | + EE_Registry::instance()->CFG->core->txn_page_id = isset($this->_req_data['txn_page_id']) |
|
| 395 | + ? absint($this->_req_data['txn_page_id']) |
|
| 396 | + : EE_Registry::instance()->CFG->core->txn_page_id; |
|
| 397 | + EE_Registry::instance()->CFG->core->thank_you_page_id = isset($this->_req_data['thank_you_page_id']) |
|
| 398 | + ? absint($this->_req_data['thank_you_page_id']) |
|
| 399 | + : EE_Registry::instance()->CFG->core->thank_you_page_id; |
|
| 400 | + EE_Registry::instance()->CFG->core->cancel_page_id = isset($this->_req_data['cancel_page_id']) |
|
| 401 | + ? absint($this->_req_data['cancel_page_id']) |
|
| 402 | + : EE_Registry::instance()->CFG->core->cancel_page_id; |
|
| 403 | + |
|
| 404 | + EE_Registry::instance()->CFG->core = apply_filters( |
|
| 405 | + 'FHEE__General_Settings_Admin_Page___update_espresso_page_settings__CFG_core', |
|
| 406 | + EE_Registry::instance()->CFG->core, |
|
| 407 | + $this->_req_data |
|
| 408 | + ); |
|
| 409 | + $what = __('Critical Pages & Shortcodes', 'event_espresso'); |
|
| 410 | + $this->_redirect_after_action( |
|
| 411 | + $this->_update_espresso_configuration( |
|
| 412 | + $what, |
|
| 413 | + EE_Registry::instance()->CFG->core, |
|
| 414 | + __FILE__, |
|
| 415 | + __FUNCTION__, |
|
| 416 | + __LINE__ |
|
| 417 | + ), |
|
| 418 | + $what, |
|
| 419 | + '', |
|
| 420 | + array( |
|
| 421 | + 'action' => 'critical_pages', |
|
| 422 | + ), |
|
| 423 | + true |
|
| 424 | + ); |
|
| 425 | + } |
|
| 426 | + |
|
| 427 | + |
|
| 428 | + /************* Your Organization *************/ |
|
| 429 | + |
|
| 430 | + |
|
| 431 | + /** |
|
| 432 | + * @throws DomainException |
|
| 433 | + * @throws EE_Error |
|
| 434 | + * @throws InvalidArgumentException |
|
| 435 | + * @throws InvalidDataTypeException |
|
| 436 | + * @throws InvalidInterfaceException |
|
| 437 | + */ |
|
| 438 | + protected function _your_organization_settings() |
|
| 439 | + { |
|
| 440 | + $this->_template_args['admin_page_content'] = ''; |
|
| 441 | + try { |
|
| 442 | + /** @var EventEspresso\admin_pages\general_settings\OrganizationSettings $organization_settings_form */ |
|
| 443 | + $organization_settings_form = $this->loader->getShared( |
|
| 444 | + 'EventEspresso\admin_pages\general_settings\OrganizationSettings' |
|
| 445 | + ); |
|
| 446 | + $this->_template_args['admin_page_content'] = $organization_settings_form->display(); |
|
| 447 | + } catch (Exception $e) { |
|
| 448 | + EE_Error::add_error($e->getMessage(), __FILE__, __FUNCTION__, __LINE__); |
|
| 449 | + } |
|
| 450 | + $this->_set_add_edit_form_tags('update_your_organization_settings'); |
|
| 451 | + $this->_set_publish_post_box_vars(null, false, false, null, false); |
|
| 452 | + $this->display_admin_page_with_sidebar(); |
|
| 453 | + } |
|
| 454 | + |
|
| 455 | + |
|
| 456 | + /** |
|
| 457 | + * Handler for updating organization settings. |
|
| 458 | + * |
|
| 459 | + * @throws EE_Error |
|
| 460 | + */ |
|
| 461 | + protected function _update_your_organization_settings() |
|
| 462 | + { |
|
| 463 | + try { |
|
| 464 | + /** @var EventEspresso\admin_pages\general_settings\OrganizationSettings $organization_settings_form */ |
|
| 465 | + $organization_settings_form = $this->loader->getShared( |
|
| 466 | + 'EventEspresso\admin_pages\general_settings\OrganizationSettings' |
|
| 467 | + ); |
|
| 468 | + $success = $organization_settings_form->process($this->_req_data); |
|
| 469 | + EE_Registry::instance()->CFG = apply_filters( |
|
| 470 | + 'FHEE__General_Settings_Admin_Page___update_your_organization_settings__CFG', |
|
| 471 | + EE_Registry::instance()->CFG |
|
| 472 | + ); |
|
| 473 | + } catch (Exception $e) { |
|
| 474 | + EE_Error::add_error($e->getMessage(), __FILE__, __FUNCTION__, __LINE__); |
|
| 475 | + $success = false; |
|
| 476 | + } |
|
| 477 | + |
|
| 478 | + if ($success) { |
|
| 479 | + $success = $this->_update_espresso_configuration( |
|
| 480 | + esc_html__('Your Organization Settings', 'event_espresso'), |
|
| 481 | + EE_Registry::instance()->CFG, |
|
| 482 | + __FILE__, |
|
| 483 | + __FUNCTION__, |
|
| 484 | + __LINE__ |
|
| 485 | + ); |
|
| 486 | + } |
|
| 487 | + |
|
| 488 | + $this->_redirect_after_action($success, '', '', array('action' => 'default'), true); |
|
| 489 | + } |
|
| 490 | + |
|
| 491 | + |
|
| 492 | + |
|
| 493 | + /************* Admin Options *************/ |
|
| 494 | + |
|
| 495 | + |
|
| 496 | + /** |
|
| 497 | + * _admin_option_settings |
|
| 498 | + * |
|
| 499 | + * @throws \EE_Error |
|
| 500 | + * @throws \LogicException |
|
| 501 | + */ |
|
| 502 | + protected function _admin_option_settings() |
|
| 503 | + { |
|
| 504 | + $this->_template_args['admin_page_content'] = ''; |
|
| 505 | + try { |
|
| 506 | + $admin_options_settings_form = new AdminOptionsSettings(EE_Registry::instance()); |
|
| 507 | + // still need this for the old school form in Extend_General_Settings_Admin_Page |
|
| 508 | + $this->_template_args['values'] = $this->_yes_no_values; |
|
| 509 | + // also need to account for the do_action that was in the old template |
|
| 510 | + $admin_options_settings_form->setTemplateArgs($this->_template_args); |
|
| 511 | + $this->_template_args['admin_page_content'] = $admin_options_settings_form->display(); |
|
| 512 | + } catch (Exception $e) { |
|
| 513 | + EE_Error::add_error($e->getMessage(), __FILE__, __FUNCTION__, __LINE__); |
|
| 514 | + } |
|
| 515 | + $this->_set_add_edit_form_tags('update_admin_option_settings'); |
|
| 516 | + $this->_set_publish_post_box_vars(null, false, false, null, false); |
|
| 517 | + $this->display_admin_page_with_sidebar(); |
|
| 518 | + } |
|
| 519 | + |
|
| 520 | + |
|
| 521 | + /** |
|
| 522 | + * _update_admin_option_settings |
|
| 523 | + * |
|
| 524 | + * @throws \EE_Error |
|
| 525 | + * @throws InvalidDataTypeException |
|
| 526 | + * @throws \EventEspresso\core\exceptions\InvalidFormSubmissionException |
|
| 527 | + * @throws \InvalidArgumentException |
|
| 528 | + * @throws \LogicException |
|
| 529 | + */ |
|
| 530 | + protected function _update_admin_option_settings() |
|
| 531 | + { |
|
| 532 | + try { |
|
| 533 | + $admin_options_settings_form = new AdminOptionsSettings(EE_Registry::instance()); |
|
| 534 | + $admin_options_settings_form->process($this->_req_data[ $admin_options_settings_form->slug() ]); |
|
| 535 | + EE_Registry::instance()->CFG->admin = apply_filters( |
|
| 536 | + 'FHEE__General_Settings_Admin_Page___update_admin_option_settings__CFG_admin', |
|
| 537 | + EE_Registry::instance()->CFG->admin |
|
| 538 | + ); |
|
| 539 | + } catch (Exception $e) { |
|
| 540 | + EE_Error::add_error($e->getMessage(), __FILE__, __FUNCTION__, __LINE__); |
|
| 541 | + } |
|
| 542 | + $this->_redirect_after_action( |
|
| 543 | + apply_filters( |
|
| 544 | + 'FHEE__General_Settings_Admin_Page___update_admin_option_settings__success', |
|
| 545 | + $this->_update_espresso_configuration( |
|
| 546 | + 'Admin Options', |
|
| 547 | + EE_Registry::instance()->CFG->admin, |
|
| 548 | + __FILE__, |
|
| 549 | + __FUNCTION__, |
|
| 550 | + __LINE__ |
|
| 551 | + ) |
|
| 552 | + ), |
|
| 553 | + 'Admin Options', |
|
| 554 | + 'updated', |
|
| 555 | + array('action' => 'admin_option_settings') |
|
| 556 | + ); |
|
| 557 | + } |
|
| 558 | + |
|
| 559 | + |
|
| 560 | + /************* Countries *************/ |
|
| 561 | + |
|
| 562 | + |
|
| 563 | + /** |
|
| 564 | + * @return string |
|
| 565 | + */ |
|
| 566 | + protected function getCountryIsoForSite() |
|
| 567 | + { |
|
| 568 | + return ! empty(EE_Registry::instance()->CFG->organization->CNT_ISO) |
|
| 569 | + ? EE_Registry::instance()->CFG->organization->CNT_ISO |
|
| 570 | + : 'US'; |
|
| 571 | + } |
|
| 572 | + |
|
| 573 | + |
|
| 574 | + /** |
|
| 575 | + * @param string $CNT_ISO |
|
| 576 | + * @param EE_Country|null $country |
|
| 577 | + * @return EE_Base_Class|EE_Country |
|
| 578 | + * @throws EE_Error |
|
| 579 | + * @throws InvalidArgumentException |
|
| 580 | + * @throws InvalidDataTypeException |
|
| 581 | + * @throws InvalidInterfaceException |
|
| 582 | + * @throws ReflectionException |
|
| 583 | + */ |
|
| 584 | + protected function verifyOrGetCountryFromIso($CNT_ISO, EE_Country $country = null) |
|
| 585 | + { |
|
| 586 | + /** @var EE_Country $country */ |
|
| 587 | + return $country instanceof EE_Country && $country->ID() === $CNT_ISO |
|
| 588 | + ? $country |
|
| 589 | + : EEM_Country::instance()->get_one_by_ID($CNT_ISO); |
|
| 590 | + } |
|
| 591 | + |
|
| 592 | + |
|
| 593 | + /** |
|
| 594 | + * Output Country Settings view. |
|
| 595 | + * |
|
| 596 | + * @throws DomainException |
|
| 597 | + * @throws EE_Error |
|
| 598 | + * @throws InvalidArgumentException |
|
| 599 | + * @throws InvalidDataTypeException |
|
| 600 | + * @throws InvalidInterfaceException |
|
| 601 | + * @throws ReflectionException |
|
| 602 | + */ |
|
| 603 | + protected function _country_settings() |
|
| 604 | + { |
|
| 605 | + $CNT_ISO_for_site = $this->getCountryIsoForSite(); |
|
| 606 | + $CNT_ISO = isset($this->_req_data['country']) |
|
| 607 | + ? strtoupper(sanitize_text_field($this->_req_data['country'])) |
|
| 608 | + : $CNT_ISO_for_site; |
|
| 609 | + |
|
| 610 | + // load field generator helper |
|
| 611 | + |
|
| 612 | + $this->_template_args['values'] = $this->_yes_no_values; |
|
| 613 | + |
|
| 614 | + $this->_template_args['countries'] = new EE_Question_Form_Input( |
|
| 615 | + EE_Question::new_instance( |
|
| 616 | + array( |
|
| 617 | + 'QST_ID' => 0, |
|
| 618 | + 'QST_display_text' => __('Select Country', 'event_espresso'), |
|
| 619 | + 'QST_system' => 'admin-country', |
|
| 620 | + ) |
|
| 621 | + ), |
|
| 622 | + EE_Answer::new_instance( |
|
| 623 | + array( |
|
| 624 | + 'ANS_ID' => 0, |
|
| 625 | + 'ANS_value' => $CNT_ISO, |
|
| 626 | + ) |
|
| 627 | + ), |
|
| 628 | + array( |
|
| 629 | + 'input_id' => 'country', |
|
| 630 | + 'input_name' => 'country', |
|
| 631 | + 'input_prefix' => '', |
|
| 632 | + 'append_qstn_id' => false, |
|
| 633 | + ) |
|
| 634 | + ); |
|
| 635 | + $country = $this->verifyOrGetCountryFromIso($CNT_ISO_for_site); |
|
| 636 | + add_filter('FHEE__EEH_Form_Fields__label_html', array($this, 'country_form_field_label_wrap'), 10, 2); |
|
| 637 | + add_filter('FHEE__EEH_Form_Fields__input_html', array($this, 'country_form_field_input__wrap'), 10, 2); |
|
| 638 | + $this->_template_args['country_details_settings'] = $this->display_country_settings( |
|
| 639 | + $country->ID(), |
|
| 640 | + $country |
|
| 641 | + ); |
|
| 642 | + $this->_template_args['country_states_settings'] = $this->display_country_states( |
|
| 643 | + $country->ID(), |
|
| 644 | + $country |
|
| 645 | + ); |
|
| 646 | + $this->_template_args['CNT_name_for_site'] = $country->name(); |
|
| 647 | + |
|
| 648 | + $this->_set_add_edit_form_tags('update_country_settings'); |
|
| 649 | + $this->_set_publish_post_box_vars(null, false, false, null, false); |
|
| 650 | + $this->_template_args['admin_page_content'] = EEH_Template::display_template( |
|
| 651 | + GEN_SET_TEMPLATE_PATH . 'countries_settings.template.php', |
|
| 652 | + $this->_template_args, |
|
| 653 | + true |
|
| 654 | + ); |
|
| 655 | + $this->display_admin_page_with_no_sidebar(); |
|
| 656 | + } |
|
| 657 | + |
|
| 658 | + |
|
| 659 | + /** |
|
| 660 | + * display_country_settings |
|
| 661 | + * |
|
| 662 | + * @param string $CNT_ISO |
|
| 663 | + * @param EE_Country|null $country |
|
| 664 | + * @return mixed string | array$country |
|
| 665 | + * @throws DomainException |
|
| 666 | + * @throws EE_Error |
|
| 667 | + * @throws InvalidArgumentException |
|
| 668 | + * @throws InvalidDataTypeException |
|
| 669 | + * @throws InvalidInterfaceException |
|
| 670 | + * @throws ReflectionException |
|
| 671 | + */ |
|
| 672 | + public function display_country_settings($CNT_ISO = '', EE_Country $country = null) |
|
| 673 | + { |
|
| 674 | + $CNT_ISO_for_site = $this->getCountryIsoForSite(); |
|
| 675 | + |
|
| 676 | + $CNT_ISO = isset($this->_req_data['country']) |
|
| 677 | + ? strtoupper(sanitize_text_field($this->_req_data['country'])) |
|
| 678 | + : $CNT_ISO; |
|
| 679 | + if (! $CNT_ISO) { |
|
| 680 | + return ''; |
|
| 681 | + } |
|
| 682 | + |
|
| 683 | + // for ajax |
|
| 684 | + remove_all_filters('FHEE__EEH_Form_Fields__label_html'); |
|
| 685 | + remove_all_filters('FHEE__EEH_Form_Fields__input_html'); |
|
| 686 | + add_filter('FHEE__EEH_Form_Fields__label_html', array($this, 'country_form_field_label_wrap'), 10, 2); |
|
| 687 | + add_filter('FHEE__EEH_Form_Fields__input_html', array($this, 'country_form_field_input__wrap'), 10, 2); |
|
| 688 | + $country = $this->verifyOrGetCountryFromIso($CNT_ISO, $country); |
|
| 689 | + $CNT_cur_disabled = $CNT_ISO !== $CNT_ISO_for_site; |
|
| 690 | + $this->_template_args['CNT_cur_disabled'] = $CNT_cur_disabled; |
|
| 691 | + |
|
| 692 | + $country_input_types = array( |
|
| 693 | + 'CNT_active' => array( |
|
| 694 | + 'type' => 'RADIO_BTN', |
|
| 695 | + 'input_name' => 'cntry[' . $CNT_ISO . ']', |
|
| 696 | + 'class' => '', |
|
| 697 | + 'options' => $this->_yes_no_values, |
|
| 698 | + 'use_desc_4_label' => true, |
|
| 699 | + ), |
|
| 700 | + 'CNT_ISO' => array( |
|
| 701 | + 'type' => 'TEXT', |
|
| 702 | + 'input_name' => 'cntry[' . $CNT_ISO . ']', |
|
| 703 | + 'class' => 'small-text', |
|
| 704 | + ), |
|
| 705 | + 'CNT_ISO3' => array( |
|
| 706 | + 'type' => 'TEXT', |
|
| 707 | + 'input_name' => 'cntry[' . $CNT_ISO . ']', |
|
| 708 | + 'class' => 'small-text', |
|
| 709 | + ), |
|
| 710 | + 'RGN_ID' => array( |
|
| 711 | + 'type' => 'TEXT', |
|
| 712 | + 'input_name' => 'cntry[' . $CNT_ISO . ']', |
|
| 713 | + 'class' => 'small-text', |
|
| 714 | + ), |
|
| 715 | + 'CNT_name' => array( |
|
| 716 | + 'type' => 'TEXT', |
|
| 717 | + 'input_name' => 'cntry[' . $CNT_ISO . ']', |
|
| 718 | + 'class' => 'regular-text', |
|
| 719 | + ), |
|
| 720 | + 'CNT_cur_code' => array( |
|
| 721 | + 'type' => 'TEXT', |
|
| 722 | + 'input_name' => 'cntry[' . $CNT_ISO . ']', |
|
| 723 | + 'class' => 'small-text', |
|
| 724 | + 'disabled' => $CNT_cur_disabled, |
|
| 725 | + ), |
|
| 726 | + 'CNT_cur_single' => array( |
|
| 727 | + 'type' => 'TEXT', |
|
| 728 | + 'input_name' => 'cntry[' . $CNT_ISO . ']', |
|
| 729 | + 'class' => 'medium-text', |
|
| 730 | + 'disabled' => $CNT_cur_disabled, |
|
| 731 | + ), |
|
| 732 | + 'CNT_cur_plural' => array( |
|
| 733 | + 'type' => 'TEXT', |
|
| 734 | + 'input_name' => 'cntry[' . $CNT_ISO . ']', |
|
| 735 | + 'class' => 'medium-text', |
|
| 736 | + 'disabled' => $CNT_cur_disabled, |
|
| 737 | + ), |
|
| 738 | + 'CNT_cur_sign' => array( |
|
| 739 | + 'type' => 'TEXT', |
|
| 740 | + 'input_name' => 'cntry[' . $CNT_ISO . ']', |
|
| 741 | + 'class' => 'small-text', |
|
| 742 | + 'htmlentities' => false, |
|
| 743 | + 'disabled' => $CNT_cur_disabled, |
|
| 744 | + ), |
|
| 745 | + 'CNT_cur_sign_b4' => array( |
|
| 746 | + 'type' => 'RADIO_BTN', |
|
| 747 | + 'input_name' => 'cntry[' . $CNT_ISO . ']', |
|
| 748 | + 'class' => '', |
|
| 749 | + 'options' => $this->_yes_no_values, |
|
| 750 | + 'use_desc_4_label' => true, |
|
| 751 | + 'disabled' => $CNT_cur_disabled, |
|
| 752 | + ), |
|
| 753 | + 'CNT_cur_dec_plc' => array( |
|
| 754 | + 'type' => 'RADIO_BTN', |
|
| 755 | + 'input_name' => 'cntry[' . $CNT_ISO . ']', |
|
| 756 | + 'class' => '', |
|
| 757 | + 'options' => array( |
|
| 758 | + array('id' => 0, 'text' => ''), |
|
| 759 | + array('id' => 1, 'text' => ''), |
|
| 760 | + array('id' => 2, 'text' => ''), |
|
| 761 | + array('id' => 3, 'text' => ''), |
|
| 762 | + ), |
|
| 763 | + 'disabled' => $CNT_cur_disabled, |
|
| 764 | + ), |
|
| 765 | + 'CNT_cur_dec_mrk' => array( |
|
| 766 | + 'type' => 'RADIO_BTN', |
|
| 767 | + 'input_name' => 'cntry[' . $CNT_ISO . ']', |
|
| 768 | + 'class' => '', |
|
| 769 | + 'options' => array( |
|
| 770 | + array( |
|
| 771 | + 'id' => ',', |
|
| 772 | + 'text' => __(', (comma)', 'event_espresso'), |
|
| 773 | + ), |
|
| 774 | + array('id' => '.', 'text' => __('. (decimal)', 'event_espresso')), |
|
| 775 | + ), |
|
| 776 | + 'use_desc_4_label' => true, |
|
| 777 | + 'disabled' => $CNT_cur_disabled, |
|
| 778 | + ), |
|
| 779 | + 'CNT_cur_thsnds' => array( |
|
| 780 | + 'type' => 'RADIO_BTN', |
|
| 781 | + 'input_name' => 'cntry[' . $CNT_ISO . ']', |
|
| 782 | + 'class' => '', |
|
| 783 | + 'options' => array( |
|
| 784 | + array( |
|
| 785 | + 'id' => ',', |
|
| 786 | + 'text' => __(', (comma)', 'event_espresso'), |
|
| 787 | + ), |
|
| 788 | + array('id' => '.', 'text' => __('. (decimal)', 'event_espresso')), |
|
| 789 | + ), |
|
| 790 | + 'use_desc_4_label' => true, |
|
| 791 | + 'disabled' => $CNT_cur_disabled, |
|
| 792 | + ), |
|
| 793 | + 'CNT_tel_code' => array( |
|
| 794 | + 'type' => 'TEXT', |
|
| 795 | + 'input_name' => 'cntry[' . $CNT_ISO . ']', |
|
| 796 | + 'class' => 'small-text', |
|
| 797 | + ), |
|
| 798 | + 'CNT_is_EU' => array( |
|
| 799 | + 'type' => 'RADIO_BTN', |
|
| 800 | + 'input_name' => 'cntry[' . $CNT_ISO . ']', |
|
| 801 | + 'class' => '', |
|
| 802 | + 'options' => $this->_yes_no_values, |
|
| 803 | + 'use_desc_4_label' => true, |
|
| 804 | + ), |
|
| 805 | + ); |
|
| 806 | + $this->_template_args['inputs'] = EE_Question_Form_Input::generate_question_form_inputs_for_object( |
|
| 807 | + $country, |
|
| 808 | + $country_input_types |
|
| 809 | + ); |
|
| 810 | + $country_details_settings = EEH_Template::display_template( |
|
| 811 | + GEN_SET_TEMPLATE_PATH . 'country_details_settings.template.php', |
|
| 812 | + $this->_template_args, |
|
| 813 | + true |
|
| 814 | + ); |
|
| 815 | + |
|
| 816 | + if (defined('DOING_AJAX')) { |
|
| 817 | + $notices = EE_Error::get_notices(false, false, false); |
|
| 818 | + echo wp_json_encode( |
|
| 819 | + array( |
|
| 820 | + 'return_data' => $country_details_settings, |
|
| 821 | + 'success' => $notices['success'], |
|
| 822 | + 'errors' => $notices['errors'], |
|
| 823 | + ) |
|
| 824 | + ); |
|
| 825 | + die(); |
|
| 826 | + } else { |
|
| 827 | + return $country_details_settings; |
|
| 828 | + } |
|
| 829 | + } |
|
| 830 | + |
|
| 831 | + |
|
| 832 | + /** |
|
| 833 | + * @param string $CNT_ISO |
|
| 834 | + * @param EE_Country|null $country |
|
| 835 | + * @return string |
|
| 836 | + * @throws DomainException |
|
| 837 | + * @throws EE_Error |
|
| 838 | + * @throws InvalidArgumentException |
|
| 839 | + * @throws InvalidDataTypeException |
|
| 840 | + * @throws InvalidInterfaceException |
|
| 841 | + * @throws ReflectionException |
|
| 842 | + */ |
|
| 843 | + public function display_country_states($CNT_ISO = '', EE_Country $country = null) |
|
| 844 | + { |
|
| 845 | + |
|
| 846 | + $CNT_ISO = isset($this->_req_data['country']) |
|
| 847 | + ? sanitize_text_field($this->_req_data['country']) |
|
| 848 | + : $CNT_ISO; |
|
| 849 | + if (! $CNT_ISO) { |
|
| 850 | + return ''; |
|
| 851 | + } |
|
| 852 | + // for ajax |
|
| 853 | + remove_all_filters('FHEE__EEH_Form_Fields__label_html'); |
|
| 854 | + remove_all_filters('FHEE__EEH_Form_Fields__input_html'); |
|
| 855 | + add_filter('FHEE__EEH_Form_Fields__label_html', array($this, 'state_form_field_label_wrap'), 10, 2); |
|
| 856 | + add_filter('FHEE__EEH_Form_Fields__input_html', array($this, 'state_form_field_input__wrap'), 10, 2); |
|
| 857 | + $states = EEM_State::instance()->get_all_states_for_these_countries(array($CNT_ISO => $CNT_ISO)); |
|
| 858 | + if (empty($states)) { |
|
| 859 | + /** @var EventEspresso\core\services\address\CountrySubRegionDao $countrySubRegionDao */ |
|
| 860 | + $countrySubRegionDao = $this->loader->getShared( |
|
| 861 | + 'EventEspresso\core\services\address\CountrySubRegionDao' |
|
| 862 | + ); |
|
| 863 | + if ($countrySubRegionDao instanceof EventEspresso\core\services\address\CountrySubRegionDao) { |
|
| 864 | + $country = $this->verifyOrGetCountryFromIso($CNT_ISO, $country); |
|
| 865 | + if ($countrySubRegionDao->saveCountrySubRegions($country)) { |
|
| 866 | + $states = EEM_State::instance()->get_all_states_for_these_countries( |
|
| 867 | + array($CNT_ISO => $CNT_ISO) |
|
| 868 | + ); |
|
| 869 | + } |
|
| 870 | + } |
|
| 871 | + } |
|
| 872 | + if (is_array($states)) { |
|
| 873 | + foreach ($states as $STA_ID => $state) { |
|
| 874 | + if ($state instanceof EE_State) { |
|
| 875 | + // STA_abbrev STA_name STA_active |
|
| 876 | + $state_input_types = array( |
|
| 877 | + 'STA_abbrev' => array( |
|
| 878 | + 'type' => 'TEXT', |
|
| 879 | + 'input_name' => 'states[' . $STA_ID . ']', |
|
| 880 | + 'class' => 'mid-text', |
|
| 881 | + ), |
|
| 882 | + 'STA_name' => array( |
|
| 883 | + 'type' => 'TEXT', |
|
| 884 | + 'input_name' => 'states[' . $STA_ID . ']', |
|
| 885 | + 'class' => 'regular-text', |
|
| 886 | + ), |
|
| 887 | + 'STA_active' => array( |
|
| 888 | + 'type' => 'RADIO_BTN', |
|
| 889 | + 'input_name' => 'states[' . $STA_ID . ']', |
|
| 890 | + 'options' => $this->_yes_no_values, |
|
| 891 | + 'use_desc_4_label' => true, |
|
| 892 | + ), |
|
| 893 | + ); |
|
| 894 | + $this->_template_args['states'][ $STA_ID ]['inputs'] = |
|
| 895 | + EE_Question_Form_Input::generate_question_form_inputs_for_object( |
|
| 896 | + $state, |
|
| 897 | + $state_input_types |
|
| 898 | + ); |
|
| 899 | + $query_args = array( |
|
| 900 | + 'action' => 'delete_state', |
|
| 901 | + 'STA_ID' => $STA_ID, |
|
| 902 | + 'CNT_ISO' => $CNT_ISO, |
|
| 903 | + 'STA_abbrev' => $state->abbrev(), |
|
| 904 | + ); |
|
| 905 | + $this->_template_args['states'][ $STA_ID ]['delete_state_url'] = |
|
| 906 | + EE_Admin_Page::add_query_args_and_nonce( |
|
| 907 | + $query_args, |
|
| 908 | + GEN_SET_ADMIN_URL |
|
| 909 | + ); |
|
| 910 | + } |
|
| 911 | + } |
|
| 912 | + } else { |
|
| 913 | + $this->_template_args['states'] = false; |
|
| 914 | + } |
|
| 915 | + |
|
| 916 | + $this->_template_args['add_new_state_url'] = EE_Admin_Page::add_query_args_and_nonce( |
|
| 917 | + array('action' => 'add_new_state'), |
|
| 918 | + GEN_SET_ADMIN_URL |
|
| 919 | + ); |
|
| 920 | + |
|
| 921 | + $state_details_settings = EEH_Template::display_template( |
|
| 922 | + GEN_SET_TEMPLATE_PATH . 'state_details_settings.template.php', |
|
| 923 | + $this->_template_args, |
|
| 924 | + true |
|
| 925 | + ); |
|
| 926 | + |
|
| 927 | + if (defined('DOING_AJAX')) { |
|
| 928 | + $notices = EE_Error::get_notices(false, false, false); |
|
| 929 | + echo wp_json_encode( |
|
| 930 | + array( |
|
| 931 | + 'return_data' => $state_details_settings, |
|
| 932 | + 'success' => $notices['success'], |
|
| 933 | + 'errors' => $notices['errors'], |
|
| 934 | + ) |
|
| 935 | + ); |
|
| 936 | + die(); |
|
| 937 | + } else { |
|
| 938 | + return $state_details_settings; |
|
| 939 | + } |
|
| 940 | + } |
|
| 941 | + |
|
| 942 | + |
|
| 943 | + /** |
|
| 944 | + * add_new_state |
|
| 945 | + * |
|
| 946 | + * @access public |
|
| 947 | + * @return void |
|
| 948 | + * @throws EE_Error |
|
| 949 | + * @throws InvalidArgumentException |
|
| 950 | + * @throws InvalidDataTypeException |
|
| 951 | + * @throws InvalidInterfaceException |
|
| 952 | + */ |
|
| 953 | + public function add_new_state() |
|
| 954 | + { |
|
| 955 | + |
|
| 956 | + $success = true; |
|
| 957 | + |
|
| 958 | + $CNT_ISO = isset($this->_req_data['CNT_ISO']) |
|
| 959 | + ? strtoupper(sanitize_text_field($this->_req_data['CNT_ISO'])) |
|
| 960 | + : false; |
|
| 961 | + if (! $CNT_ISO) { |
|
| 962 | + EE_Error::add_error( |
|
| 963 | + __('No Country ISO code or an invalid Country ISO code was received.', 'event_espresso'), |
|
| 964 | + __FILE__, |
|
| 965 | + __FUNCTION__, |
|
| 966 | + __LINE__ |
|
| 967 | + ); |
|
| 968 | + $success = false; |
|
| 969 | + } |
|
| 970 | + $STA_abbrev = isset($this->_req_data['STA_abbrev']) |
|
| 971 | + ? sanitize_text_field($this->_req_data['STA_abbrev']) |
|
| 972 | + : false; |
|
| 973 | + if (! $STA_abbrev) { |
|
| 974 | + EE_Error::add_error( |
|
| 975 | + __('No State ISO code or an invalid State ISO code was received.', 'event_espresso'), |
|
| 976 | + __FILE__, |
|
| 977 | + __FUNCTION__, |
|
| 978 | + __LINE__ |
|
| 979 | + ); |
|
| 980 | + $success = false; |
|
| 981 | + } |
|
| 982 | + $STA_name = isset($this->_req_data['STA_name']) |
|
| 983 | + ? sanitize_text_field($this->_req_data['STA_name']) |
|
| 984 | + : false; |
|
| 985 | + if (! $STA_name) { |
|
| 986 | + EE_Error::add_error( |
|
| 987 | + __('No State name or an invalid State name was received.', 'event_espresso'), |
|
| 988 | + __FILE__, |
|
| 989 | + __FUNCTION__, |
|
| 990 | + __LINE__ |
|
| 991 | + ); |
|
| 992 | + $success = false; |
|
| 993 | + } |
|
| 994 | + |
|
| 995 | + if ($success) { |
|
| 996 | + $cols_n_values = array( |
|
| 997 | + 'CNT_ISO' => $CNT_ISO, |
|
| 998 | + 'STA_abbrev' => $STA_abbrev, |
|
| 999 | + 'STA_name' => $STA_name, |
|
| 1000 | + 'STA_active' => true, |
|
| 1001 | + ); |
|
| 1002 | + $success = EEM_State::instance()->insert($cols_n_values); |
|
| 1003 | + EE_Error::add_success(__('The State was added successfully.', 'event_espresso')); |
|
| 1004 | + } |
|
| 1005 | + |
|
| 1006 | + if (defined('DOING_AJAX')) { |
|
| 1007 | + $notices = EE_Error::get_notices(false, false, false); |
|
| 1008 | + echo wp_json_encode(array_merge($notices, array('return_data' => $CNT_ISO))); |
|
| 1009 | + die(); |
|
| 1010 | + } else { |
|
| 1011 | + $this->_redirect_after_action($success, 'State', 'added', array('action' => 'country_settings')); |
|
| 1012 | + } |
|
| 1013 | + } |
|
| 1014 | + |
|
| 1015 | + |
|
| 1016 | + /** |
|
| 1017 | + * delete_state |
|
| 1018 | + * |
|
| 1019 | + * @access public |
|
| 1020 | + * @return boolean |
|
| 1021 | + * @throws EE_Error |
|
| 1022 | + * @throws InvalidArgumentException |
|
| 1023 | + * @throws InvalidDataTypeException |
|
| 1024 | + * @throws InvalidInterfaceException |
|
| 1025 | + */ |
|
| 1026 | + public function delete_state() |
|
| 1027 | + { |
|
| 1028 | + $CNT_ISO = isset($this->_req_data['CNT_ISO']) |
|
| 1029 | + ? strtoupper(sanitize_text_field($this->_req_data['CNT_ISO'])) |
|
| 1030 | + : false; |
|
| 1031 | + $STA_ID = isset($this->_req_data['STA_ID']) |
|
| 1032 | + ? sanitize_text_field($this->_req_data['STA_ID']) |
|
| 1033 | + : false; |
|
| 1034 | + $STA_abbrev = isset($this->_req_data['STA_abbrev']) |
|
| 1035 | + ? sanitize_text_field($this->_req_data['STA_abbrev']) |
|
| 1036 | + : false; |
|
| 1037 | + if (! $STA_ID) { |
|
| 1038 | + EE_Error::add_error( |
|
| 1039 | + __('No State ID or an invalid State ID was received.', 'event_espresso'), |
|
| 1040 | + __FILE__, |
|
| 1041 | + __FUNCTION__, |
|
| 1042 | + __LINE__ |
|
| 1043 | + ); |
|
| 1044 | + return false; |
|
| 1045 | + } |
|
| 1046 | + |
|
| 1047 | + $success = EEM_State::instance()->delete_by_ID($STA_ID); |
|
| 1048 | + if ($success !== false) { |
|
| 1049 | + do_action( |
|
| 1050 | + 'AHEE__General_Settings_Admin_Page__delete_state__state_deleted', |
|
| 1051 | + $CNT_ISO, |
|
| 1052 | + $STA_ID, |
|
| 1053 | + array('STA_abbrev' => $STA_abbrev) |
|
| 1054 | + ); |
|
| 1055 | + EE_Error::add_success(__('The State was deleted successfully.', 'event_espresso')); |
|
| 1056 | + } |
|
| 1057 | + if (defined('DOING_AJAX')) { |
|
| 1058 | + $notices = EE_Error::get_notices(false, false); |
|
| 1059 | + $notices['return_data'] = true; |
|
| 1060 | + echo wp_json_encode($notices); |
|
| 1061 | + die(); |
|
| 1062 | + } else { |
|
| 1063 | + $this->_redirect_after_action( |
|
| 1064 | + $success, |
|
| 1065 | + 'State', |
|
| 1066 | + 'deleted', |
|
| 1067 | + array('action' => 'country_settings') |
|
| 1068 | + ); |
|
| 1069 | + } |
|
| 1070 | + } |
|
| 1071 | + |
|
| 1072 | + |
|
| 1073 | + /** |
|
| 1074 | + * _update_country_settings |
|
| 1075 | + * |
|
| 1076 | + * @access protected |
|
| 1077 | + * @return void |
|
| 1078 | + * @throws EE_Error |
|
| 1079 | + * @throws InvalidArgumentException |
|
| 1080 | + * @throws InvalidDataTypeException |
|
| 1081 | + * @throws InvalidInterfaceException |
|
| 1082 | + */ |
|
| 1083 | + protected function _update_country_settings() |
|
| 1084 | + { |
|
| 1085 | + // grab the country ISO code |
|
| 1086 | + $CNT_ISO = isset($this->_req_data['country']) |
|
| 1087 | + ? strtoupper(sanitize_text_field($this->_req_data['country'])) |
|
| 1088 | + : false; |
|
| 1089 | + if (! $CNT_ISO) { |
|
| 1090 | + EE_Error::add_error( |
|
| 1091 | + __('No Country ISO code or an invalid Country ISO code was received.', 'event_espresso'), |
|
| 1092 | + __FILE__, |
|
| 1093 | + __FUNCTION__, |
|
| 1094 | + __LINE__ |
|
| 1095 | + ); |
|
| 1096 | + |
|
| 1097 | + return; |
|
| 1098 | + } |
|
| 1099 | + $cols_n_values = array(); |
|
| 1100 | + $cols_n_values['CNT_ISO3'] = isset($this->_req_data['cntry'][ $CNT_ISO ]['CNT_ISO3']) |
|
| 1101 | + ? strtoupper(sanitize_text_field($this->_req_data['cntry'][ $CNT_ISO ]['CNT_ISO3'])) |
|
| 1102 | + : false; |
|
| 1103 | + $cols_n_values['RGN_ID'] = isset($this->_req_data['cntry'][ $CNT_ISO ]['RGN_ID']) |
|
| 1104 | + ? absint($this->_req_data['cntry'][ $CNT_ISO ]['RGN_ID']) |
|
| 1105 | + : null; |
|
| 1106 | + $cols_n_values['CNT_name'] = isset($this->_req_data['cntry'][ $CNT_ISO ]['CNT_name']) |
|
| 1107 | + ? sanitize_text_field($this->_req_data['cntry'][ $CNT_ISO ]['CNT_name']) |
|
| 1108 | + : null; |
|
| 1109 | + if (isset($this->_req_data['cntry'][ $CNT_ISO ]['CNT_cur_code'])) { |
|
| 1110 | + $cols_n_values['CNT_cur_code'] = strtoupper( |
|
| 1111 | + sanitize_text_field($this->_req_data['cntry'][ $CNT_ISO ]['CNT_cur_code']) |
|
| 1112 | + ); |
|
| 1113 | + } |
|
| 1114 | + if (isset($this->_req_data['cntry'][ $CNT_ISO ]['CNT_cur_single'])) { |
|
| 1115 | + $cols_n_values['CNT_cur_single'] = sanitize_text_field( |
|
| 1116 | + $this->_req_data['cntry'][ $CNT_ISO ]['CNT_cur_single'] |
|
| 1117 | + ); |
|
| 1118 | + } |
|
| 1119 | + if (isset($this->_req_data['cntry'][ $CNT_ISO ]['CNT_cur_plural'])) { |
|
| 1120 | + $cols_n_values['CNT_cur_plural'] = sanitize_text_field( |
|
| 1121 | + $this->_req_data['cntry'][ $CNT_ISO ]['CNT_cur_plural'] |
|
| 1122 | + ); |
|
| 1123 | + } |
|
| 1124 | + if (isset($this->_req_data['cntry'][ $CNT_ISO ]['CNT_cur_sign'])) { |
|
| 1125 | + $cols_n_values['CNT_cur_sign'] = sanitize_text_field( |
|
| 1126 | + $this->_req_data['cntry'][ $CNT_ISO ]['CNT_cur_sign'] |
|
| 1127 | + ); |
|
| 1128 | + } |
|
| 1129 | + if (isset($this->_req_data['cntry'][ $CNT_ISO ]['CNT_cur_sign_b4'])) { |
|
| 1130 | + $cols_n_values['CNT_cur_sign_b4'] = absint( |
|
| 1131 | + $this->_req_data['cntry'][ $CNT_ISO ]['CNT_cur_sign_b4'] |
|
| 1132 | + ); |
|
| 1133 | + } |
|
| 1134 | + if (isset($this->_req_data['cntry'][ $CNT_ISO ]['CNT_cur_dec_plc'])) { |
|
| 1135 | + $cols_n_values['CNT_cur_dec_plc'] = absint( |
|
| 1136 | + $this->_req_data['cntry'][ $CNT_ISO ]['CNT_cur_dec_plc'] |
|
| 1137 | + ); |
|
| 1138 | + } |
|
| 1139 | + if (isset($this->_req_data['cntry'][ $CNT_ISO ]['CNT_cur_dec_mrk'])) { |
|
| 1140 | + $cols_n_values['CNT_cur_dec_mrk'] = sanitize_text_field( |
|
| 1141 | + $this->_req_data['cntry'][ $CNT_ISO ]['CNT_cur_dec_mrk'] |
|
| 1142 | + ); |
|
| 1143 | + } |
|
| 1144 | + if (isset($this->_req_data['cntry'][ $CNT_ISO ]['CNT_cur_thsnds'])) { |
|
| 1145 | + $cols_n_values['CNT_cur_thsnds'] = sanitize_text_field( |
|
| 1146 | + $this->_req_data['cntry'][ $CNT_ISO ]['CNT_cur_thsnds'] |
|
| 1147 | + ); |
|
| 1148 | + } |
|
| 1149 | + $cols_n_values['CNT_tel_code'] = isset($this->_req_data['cntry'][ $CNT_ISO ]['CNT_tel_code']) |
|
| 1150 | + ? sanitize_text_field($this->_req_data['cntry'][ $CNT_ISO ]['CNT_tel_code']) |
|
| 1151 | + : null; |
|
| 1152 | + $cols_n_values['CNT_is_EU'] = isset($this->_req_data['cntry'][ $CNT_ISO ]['CNT_is_EU']) |
|
| 1153 | + ? absint($this->_req_data['cntry'][ $CNT_ISO ]['CNT_is_EU']) |
|
| 1154 | + : false; |
|
| 1155 | + $cols_n_values['CNT_active'] = isset($this->_req_data['cntry'][ $CNT_ISO ]['CNT_active']) |
|
| 1156 | + ? absint($this->_req_data['cntry'][ $CNT_ISO ]['CNT_active']) |
|
| 1157 | + : false; |
|
| 1158 | + // allow filtering of country data |
|
| 1159 | + $cols_n_values = apply_filters( |
|
| 1160 | + 'FHEE__General_Settings_Admin_Page___update_country_settings__cols_n_values', |
|
| 1161 | + $cols_n_values |
|
| 1162 | + ); |
|
| 1163 | + |
|
| 1164 | + // where values |
|
| 1165 | + $where_cols_n_values = array(array('CNT_ISO' => $CNT_ISO)); |
|
| 1166 | + // run the update |
|
| 1167 | + $success = EEM_Country::instance()->update($cols_n_values, $where_cols_n_values); |
|
| 1168 | + |
|
| 1169 | + if (isset($this->_req_data['states']) && is_array($this->_req_data['states']) && $success !== false) { |
|
| 1170 | + // allow filtering of states data |
|
| 1171 | + $states = apply_filters( |
|
| 1172 | + 'FHEE__General_Settings_Admin_Page___update_country_settings__states', |
|
| 1173 | + $this->_req_data['states'] |
|
| 1174 | + ); |
|
| 1175 | + |
|
| 1176 | + // loop thru state data ( looks like : states[75][STA_name] ) |
|
| 1177 | + foreach ($states as $STA_ID => $state) { |
|
| 1178 | + $cols_n_values = array( |
|
| 1179 | + 'CNT_ISO' => $CNT_ISO, |
|
| 1180 | + 'STA_abbrev' => sanitize_text_field($state['STA_abbrev']), |
|
| 1181 | + 'STA_name' => sanitize_text_field($state['STA_name']), |
|
| 1182 | + 'STA_active' => (bool) absint($state['STA_active']), |
|
| 1183 | + ); |
|
| 1184 | + // where values |
|
| 1185 | + $where_cols_n_values = array(array('STA_ID' => $STA_ID)); |
|
| 1186 | + // run the update |
|
| 1187 | + $success = EEM_State::instance()->update($cols_n_values, $where_cols_n_values); |
|
| 1188 | + if ($success !== false) { |
|
| 1189 | + do_action( |
|
| 1190 | + 'AHEE__General_Settings_Admin_Page__update_country_settings__state_saved', |
|
| 1191 | + $CNT_ISO, |
|
| 1192 | + $STA_ID, |
|
| 1193 | + $cols_n_values |
|
| 1194 | + ); |
|
| 1195 | + } |
|
| 1196 | + } |
|
| 1197 | + } |
|
| 1198 | + // check if country being edited matches org option country, and if so, then update EE_Config with new settings |
|
| 1199 | + if (isset(EE_Registry::instance()->CFG->organization->CNT_ISO) |
|
| 1200 | + && $CNT_ISO == EE_Registry::instance()->CFG->organization->CNT_ISO |
|
| 1201 | + ) { |
|
| 1202 | + EE_Registry::instance()->CFG->currency = new EE_Currency_Config($CNT_ISO); |
|
| 1203 | + EE_Registry::instance()->CFG->update_espresso_config(); |
|
| 1204 | + } |
|
| 1205 | + |
|
| 1206 | + if ($success !== false) { |
|
| 1207 | + EE_Error::add_success( |
|
| 1208 | + esc_html__('Country Settings updated successfully.', 'event_espresso') |
|
| 1209 | + ); |
|
| 1210 | + } |
|
| 1211 | + $this->_redirect_after_action( |
|
| 1212 | + $success, |
|
| 1213 | + '', |
|
| 1214 | + '', |
|
| 1215 | + array('action' => 'country_settings', 'country' => $CNT_ISO), |
|
| 1216 | + true |
|
| 1217 | + ); |
|
| 1218 | + } |
|
| 1219 | + |
|
| 1220 | + |
|
| 1221 | + /** |
|
| 1222 | + * form_form_field_label_wrap |
|
| 1223 | + * |
|
| 1224 | + * @access public |
|
| 1225 | + * @param string $label |
|
| 1226 | + * @return string |
|
| 1227 | + */ |
|
| 1228 | + public function country_form_field_label_wrap($label, $required_text) |
|
| 1229 | + { |
|
| 1230 | + return ' |
|
| 1231 | 1231 | <tr> |
| 1232 | 1232 | <th> |
| 1233 | 1233 | ' . $label . ' |
| 1234 | 1234 | </th>'; |
| 1235 | - } |
|
| 1236 | - |
|
| 1237 | - |
|
| 1238 | - /** |
|
| 1239 | - * form_form_field_input__wrap |
|
| 1240 | - * |
|
| 1241 | - * @access public |
|
| 1242 | - * @param string $label |
|
| 1243 | - * @return string |
|
| 1244 | - */ |
|
| 1245 | - public function country_form_field_input__wrap($input, $label) |
|
| 1246 | - { |
|
| 1247 | - return ' |
|
| 1235 | + } |
|
| 1236 | + |
|
| 1237 | + |
|
| 1238 | + /** |
|
| 1239 | + * form_form_field_input__wrap |
|
| 1240 | + * |
|
| 1241 | + * @access public |
|
| 1242 | + * @param string $label |
|
| 1243 | + * @return string |
|
| 1244 | + */ |
|
| 1245 | + public function country_form_field_input__wrap($input, $label) |
|
| 1246 | + { |
|
| 1247 | + return ' |
|
| 1248 | 1248 | <td class="general-settings-country-input-td"> |
| 1249 | 1249 | ' . $input . ' |
| 1250 | 1250 | </td> |
| 1251 | 1251 | </tr>'; |
| 1252 | - } |
|
| 1253 | - |
|
| 1254 | - |
|
| 1255 | - /** |
|
| 1256 | - * form_form_field_label_wrap |
|
| 1257 | - * |
|
| 1258 | - * @access public |
|
| 1259 | - * @param string $label |
|
| 1260 | - * @param string $required_text |
|
| 1261 | - * @return string |
|
| 1262 | - */ |
|
| 1263 | - public function state_form_field_label_wrap($label, $required_text) |
|
| 1264 | - { |
|
| 1265 | - return $required_text; |
|
| 1266 | - } |
|
| 1267 | - |
|
| 1268 | - |
|
| 1269 | - /** |
|
| 1270 | - * form_form_field_input__wrap |
|
| 1271 | - * |
|
| 1272 | - * @access public |
|
| 1273 | - * @param string $label |
|
| 1274 | - * @return string |
|
| 1275 | - */ |
|
| 1276 | - public function state_form_field_input__wrap($input, $label) |
|
| 1277 | - { |
|
| 1278 | - return ' |
|
| 1252 | + } |
|
| 1253 | + |
|
| 1254 | + |
|
| 1255 | + /** |
|
| 1256 | + * form_form_field_label_wrap |
|
| 1257 | + * |
|
| 1258 | + * @access public |
|
| 1259 | + * @param string $label |
|
| 1260 | + * @param string $required_text |
|
| 1261 | + * @return string |
|
| 1262 | + */ |
|
| 1263 | + public function state_form_field_label_wrap($label, $required_text) |
|
| 1264 | + { |
|
| 1265 | + return $required_text; |
|
| 1266 | + } |
|
| 1267 | + |
|
| 1268 | + |
|
| 1269 | + /** |
|
| 1270 | + * form_form_field_input__wrap |
|
| 1271 | + * |
|
| 1272 | + * @access public |
|
| 1273 | + * @param string $label |
|
| 1274 | + * @return string |
|
| 1275 | + */ |
|
| 1276 | + public function state_form_field_input__wrap($input, $label) |
|
| 1277 | + { |
|
| 1278 | + return ' |
|
| 1279 | 1279 | <td class="general-settings-country-state-input-td"> |
| 1280 | 1280 | ' . $input . ' |
| 1281 | 1281 | </td>'; |
| 1282 | - } |
|
| 1283 | - |
|
| 1284 | - |
|
| 1285 | - /***********/ |
|
| 1286 | - |
|
| 1287 | - |
|
| 1288 | - /** |
|
| 1289 | - * displays edit and view links for critical EE pages |
|
| 1290 | - * |
|
| 1291 | - * @access public |
|
| 1292 | - * @param int $ee_page_id |
|
| 1293 | - * @return string |
|
| 1294 | - */ |
|
| 1295 | - public static function edit_view_links($ee_page_id) |
|
| 1296 | - { |
|
| 1297 | - $links = '<a href="' |
|
| 1298 | - . add_query_arg( |
|
| 1299 | - array('post' => $ee_page_id, 'action' => 'edit'), |
|
| 1300 | - admin_url('post.php') |
|
| 1301 | - ) |
|
| 1302 | - . '" >' |
|
| 1303 | - . __('Edit', 'event_espresso') |
|
| 1304 | - . '</a>'; |
|
| 1305 | - $links .= ' | '; |
|
| 1306 | - $links .= '<a href="' . get_permalink($ee_page_id) . '" >' . __('View', 'event_espresso') . '</a>'; |
|
| 1307 | - |
|
| 1308 | - return $links; |
|
| 1309 | - } |
|
| 1310 | - |
|
| 1311 | - |
|
| 1312 | - /** |
|
| 1313 | - * displays page and shortcode status for critical EE pages |
|
| 1314 | - * |
|
| 1315 | - * @param WP page object $ee_page |
|
| 1316 | - * @return string |
|
| 1317 | - */ |
|
| 1318 | - public static function page_and_shortcode_status($ee_page, $shortcode) |
|
| 1319 | - { |
|
| 1320 | - |
|
| 1321 | - // page status |
|
| 1322 | - if (isset($ee_page->post_status) && $ee_page->post_status == 'publish') { |
|
| 1323 | - $pg_colour = 'green'; |
|
| 1324 | - $pg_status = sprintf(__('Page%sStatus%sOK', 'event_espresso'), ' ', ' '); |
|
| 1325 | - } else { |
|
| 1326 | - $pg_colour = 'red'; |
|
| 1327 | - $pg_status = sprintf(__('Page%sVisibility%sProblem', 'event_espresso'), ' ', ' '); |
|
| 1328 | - } |
|
| 1329 | - |
|
| 1330 | - // shortcode status |
|
| 1331 | - if (isset($ee_page->post_content) && strpos($ee_page->post_content, $shortcode) !== false) { |
|
| 1332 | - $sc_colour = 'green'; |
|
| 1333 | - $sc_status = sprintf(__('Shortcode%sOK', 'event_espresso'), ' '); |
|
| 1334 | - } else { |
|
| 1335 | - $sc_colour = 'red'; |
|
| 1336 | - $sc_status = sprintf(__('Shortcode%sProblem', 'event_espresso'), ' '); |
|
| 1337 | - } |
|
| 1338 | - |
|
| 1339 | - return '<span style="color:' . $pg_colour . '; margin-right:2em;"><strong>' |
|
| 1340 | - . $pg_status |
|
| 1341 | - . '</strong></span><span style="color:' . $sc_colour . '"><strong>' . $sc_status . '</strong></span>'; |
|
| 1342 | - } |
|
| 1343 | - |
|
| 1344 | - |
|
| 1345 | - /** |
|
| 1346 | - * generates a dropdown of all parent pages - copied from WP core |
|
| 1347 | - * |
|
| 1348 | - * @param int $default |
|
| 1349 | - * @param int $parent |
|
| 1350 | - * @param int $level |
|
| 1351 | - */ |
|
| 1352 | - public static function page_settings_dropdown($default = 0, $parent = 0, $level = 0) |
|
| 1353 | - { |
|
| 1354 | - global $wpdb; |
|
| 1355 | - $items = $wpdb->get_results( |
|
| 1356 | - $wpdb->prepare( |
|
| 1357 | - "SELECT ID, post_parent, post_title FROM $wpdb->posts WHERE post_parent = %d AND post_type = 'page' AND post_status != 'trash' ORDER BY menu_order", |
|
| 1358 | - $parent |
|
| 1359 | - ) |
|
| 1360 | - ); |
|
| 1361 | - |
|
| 1362 | - if ($items) { |
|
| 1363 | - foreach ($items as $item) { |
|
| 1364 | - $pad = str_repeat(' ', $level * 3); |
|
| 1365 | - if ($item->ID == $default) { |
|
| 1366 | - $current = ' selected="selected"'; |
|
| 1367 | - } else { |
|
| 1368 | - $current = ''; |
|
| 1369 | - } |
|
| 1370 | - |
|
| 1371 | - echo "\n\t<option class='level-$level' value='$item->ID'$current>$pad " |
|
| 1372 | - . esc_html($item->post_title) |
|
| 1373 | - . "</option>"; |
|
| 1374 | - parent_dropdown($default, $item->ID, $level + 1); |
|
| 1375 | - } |
|
| 1376 | - } |
|
| 1377 | - } |
|
| 1378 | - |
|
| 1379 | - |
|
| 1380 | - /** |
|
| 1381 | - * Loads the scripts for the privacy settings form |
|
| 1382 | - */ |
|
| 1383 | - public function load_scripts_styles_privacy_settings() |
|
| 1384 | - { |
|
| 1385 | - $form_handler = $this->loader->getShared('EventEspresso\core\domain\services\admin\privacy\forms\PrivacySettingsFormHandler'); |
|
| 1386 | - $form_handler->enqueueStylesAndScripts(); |
|
| 1387 | - } |
|
| 1388 | - |
|
| 1389 | - |
|
| 1390 | - /** |
|
| 1391 | - * display the privacy settings form |
|
| 1392 | - */ |
|
| 1393 | - public function privacySettings() |
|
| 1394 | - { |
|
| 1395 | - $this->_set_add_edit_form_tags('update_privacy_settings'); |
|
| 1396 | - $this->_set_publish_post_box_vars(null, false, false, null, false); |
|
| 1397 | - $form_handler = $this->loader->getShared('EventEspresso\core\domain\services\admin\privacy\forms\PrivacySettingsFormHandler'); |
|
| 1398 | - $this->_template_args['admin_page_content'] = $form_handler->display(); |
|
| 1399 | - $this->display_admin_page_with_sidebar(); |
|
| 1400 | - } |
|
| 1401 | - |
|
| 1402 | - |
|
| 1403 | - /** |
|
| 1404 | - * Update the privacy settings from form data |
|
| 1405 | - * |
|
| 1406 | - * @throws EE_Error |
|
| 1407 | - */ |
|
| 1408 | - public function updatePrivacySettings() |
|
| 1409 | - { |
|
| 1410 | - $form_handler = $this->loader->getShared('EventEspresso\core\domain\services\admin\privacy\forms\PrivacySettingsFormHandler'); |
|
| 1411 | - $success = $form_handler->process($this->get_request_data()); |
|
| 1412 | - $this->_redirect_after_action( |
|
| 1413 | - $success, |
|
| 1414 | - esc_html__('Registration Form Options', 'event_espresso'), |
|
| 1415 | - 'updated', |
|
| 1416 | - array('action' => 'privacy_settings') |
|
| 1417 | - ); |
|
| 1418 | - } |
|
| 1282 | + } |
|
| 1283 | + |
|
| 1284 | + |
|
| 1285 | + /***********/ |
|
| 1286 | + |
|
| 1287 | + |
|
| 1288 | + /** |
|
| 1289 | + * displays edit and view links for critical EE pages |
|
| 1290 | + * |
|
| 1291 | + * @access public |
|
| 1292 | + * @param int $ee_page_id |
|
| 1293 | + * @return string |
|
| 1294 | + */ |
|
| 1295 | + public static function edit_view_links($ee_page_id) |
|
| 1296 | + { |
|
| 1297 | + $links = '<a href="' |
|
| 1298 | + . add_query_arg( |
|
| 1299 | + array('post' => $ee_page_id, 'action' => 'edit'), |
|
| 1300 | + admin_url('post.php') |
|
| 1301 | + ) |
|
| 1302 | + . '" >' |
|
| 1303 | + . __('Edit', 'event_espresso') |
|
| 1304 | + . '</a>'; |
|
| 1305 | + $links .= ' | '; |
|
| 1306 | + $links .= '<a href="' . get_permalink($ee_page_id) . '" >' . __('View', 'event_espresso') . '</a>'; |
|
| 1307 | + |
|
| 1308 | + return $links; |
|
| 1309 | + } |
|
| 1310 | + |
|
| 1311 | + |
|
| 1312 | + /** |
|
| 1313 | + * displays page and shortcode status for critical EE pages |
|
| 1314 | + * |
|
| 1315 | + * @param WP page object $ee_page |
|
| 1316 | + * @return string |
|
| 1317 | + */ |
|
| 1318 | + public static function page_and_shortcode_status($ee_page, $shortcode) |
|
| 1319 | + { |
|
| 1320 | + |
|
| 1321 | + // page status |
|
| 1322 | + if (isset($ee_page->post_status) && $ee_page->post_status == 'publish') { |
|
| 1323 | + $pg_colour = 'green'; |
|
| 1324 | + $pg_status = sprintf(__('Page%sStatus%sOK', 'event_espresso'), ' ', ' '); |
|
| 1325 | + } else { |
|
| 1326 | + $pg_colour = 'red'; |
|
| 1327 | + $pg_status = sprintf(__('Page%sVisibility%sProblem', 'event_espresso'), ' ', ' '); |
|
| 1328 | + } |
|
| 1329 | + |
|
| 1330 | + // shortcode status |
|
| 1331 | + if (isset($ee_page->post_content) && strpos($ee_page->post_content, $shortcode) !== false) { |
|
| 1332 | + $sc_colour = 'green'; |
|
| 1333 | + $sc_status = sprintf(__('Shortcode%sOK', 'event_espresso'), ' '); |
|
| 1334 | + } else { |
|
| 1335 | + $sc_colour = 'red'; |
|
| 1336 | + $sc_status = sprintf(__('Shortcode%sProblem', 'event_espresso'), ' '); |
|
| 1337 | + } |
|
| 1338 | + |
|
| 1339 | + return '<span style="color:' . $pg_colour . '; margin-right:2em;"><strong>' |
|
| 1340 | + . $pg_status |
|
| 1341 | + . '</strong></span><span style="color:' . $sc_colour . '"><strong>' . $sc_status . '</strong></span>'; |
|
| 1342 | + } |
|
| 1343 | + |
|
| 1344 | + |
|
| 1345 | + /** |
|
| 1346 | + * generates a dropdown of all parent pages - copied from WP core |
|
| 1347 | + * |
|
| 1348 | + * @param int $default |
|
| 1349 | + * @param int $parent |
|
| 1350 | + * @param int $level |
|
| 1351 | + */ |
|
| 1352 | + public static function page_settings_dropdown($default = 0, $parent = 0, $level = 0) |
|
| 1353 | + { |
|
| 1354 | + global $wpdb; |
|
| 1355 | + $items = $wpdb->get_results( |
|
| 1356 | + $wpdb->prepare( |
|
| 1357 | + "SELECT ID, post_parent, post_title FROM $wpdb->posts WHERE post_parent = %d AND post_type = 'page' AND post_status != 'trash' ORDER BY menu_order", |
|
| 1358 | + $parent |
|
| 1359 | + ) |
|
| 1360 | + ); |
|
| 1361 | + |
|
| 1362 | + if ($items) { |
|
| 1363 | + foreach ($items as $item) { |
|
| 1364 | + $pad = str_repeat(' ', $level * 3); |
|
| 1365 | + if ($item->ID == $default) { |
|
| 1366 | + $current = ' selected="selected"'; |
|
| 1367 | + } else { |
|
| 1368 | + $current = ''; |
|
| 1369 | + } |
|
| 1370 | + |
|
| 1371 | + echo "\n\t<option class='level-$level' value='$item->ID'$current>$pad " |
|
| 1372 | + . esc_html($item->post_title) |
|
| 1373 | + . "</option>"; |
|
| 1374 | + parent_dropdown($default, $item->ID, $level + 1); |
|
| 1375 | + } |
|
| 1376 | + } |
|
| 1377 | + } |
|
| 1378 | + |
|
| 1379 | + |
|
| 1380 | + /** |
|
| 1381 | + * Loads the scripts for the privacy settings form |
|
| 1382 | + */ |
|
| 1383 | + public function load_scripts_styles_privacy_settings() |
|
| 1384 | + { |
|
| 1385 | + $form_handler = $this->loader->getShared('EventEspresso\core\domain\services\admin\privacy\forms\PrivacySettingsFormHandler'); |
|
| 1386 | + $form_handler->enqueueStylesAndScripts(); |
|
| 1387 | + } |
|
| 1388 | + |
|
| 1389 | + |
|
| 1390 | + /** |
|
| 1391 | + * display the privacy settings form |
|
| 1392 | + */ |
|
| 1393 | + public function privacySettings() |
|
| 1394 | + { |
|
| 1395 | + $this->_set_add_edit_form_tags('update_privacy_settings'); |
|
| 1396 | + $this->_set_publish_post_box_vars(null, false, false, null, false); |
|
| 1397 | + $form_handler = $this->loader->getShared('EventEspresso\core\domain\services\admin\privacy\forms\PrivacySettingsFormHandler'); |
|
| 1398 | + $this->_template_args['admin_page_content'] = $form_handler->display(); |
|
| 1399 | + $this->display_admin_page_with_sidebar(); |
|
| 1400 | + } |
|
| 1401 | + |
|
| 1402 | + |
|
| 1403 | + /** |
|
| 1404 | + * Update the privacy settings from form data |
|
| 1405 | + * |
|
| 1406 | + * @throws EE_Error |
|
| 1407 | + */ |
|
| 1408 | + public function updatePrivacySettings() |
|
| 1409 | + { |
|
| 1410 | + $form_handler = $this->loader->getShared('EventEspresso\core\domain\services\admin\privacy\forms\PrivacySettingsFormHandler'); |
|
| 1411 | + $success = $form_handler->process($this->get_request_data()); |
|
| 1412 | + $this->_redirect_after_action( |
|
| 1413 | + $success, |
|
| 1414 | + esc_html__('Registration Form Options', 'event_espresso'), |
|
| 1415 | + 'updated', |
|
| 1416 | + array('action' => 'privacy_settings') |
|
| 1417 | + ); |
|
| 1418 | + } |
|
| 1419 | 1419 | } |
@@ -291,12 +291,12 @@ discard block |
||
| 291 | 291 | wp_enqueue_script('thickbox'); |
| 292 | 292 | wp_register_script( |
| 293 | 293 | 'organization_settings', |
| 294 | - GEN_SET_ASSETS_URL . 'your_organization_settings.js', |
|
| 294 | + GEN_SET_ASSETS_URL.'your_organization_settings.js', |
|
| 295 | 295 | array('jquery', 'media-upload', 'thickbox'), |
| 296 | 296 | EVENT_ESPRESSO_VERSION, |
| 297 | 297 | true |
| 298 | 298 | ); |
| 299 | - wp_register_style('organization-css', GEN_SET_ASSETS_URL . 'organization.css', array(), EVENT_ESPRESSO_VERSION); |
|
| 299 | + wp_register_style('organization-css', GEN_SET_ASSETS_URL.'organization.css', array(), EVENT_ESPRESSO_VERSION); |
|
| 300 | 300 | wp_enqueue_script('organization_settings'); |
| 301 | 301 | wp_enqueue_style('organization-css'); |
| 302 | 302 | $confirm_image_delete = array( |
@@ -317,12 +317,12 @@ discard block |
||
| 317 | 317 | // scripts |
| 318 | 318 | wp_register_script( |
| 319 | 319 | 'gen_settings_countries', |
| 320 | - GEN_SET_ASSETS_URL . 'gen_settings_countries.js', |
|
| 320 | + GEN_SET_ASSETS_URL.'gen_settings_countries.js', |
|
| 321 | 321 | array('ee_admin_js'), |
| 322 | 322 | EVENT_ESPRESSO_VERSION, |
| 323 | 323 | true |
| 324 | 324 | ); |
| 325 | - wp_register_style('organization-css', GEN_SET_ASSETS_URL . 'organization.css', array(), EVENT_ESPRESSO_VERSION); |
|
| 325 | + wp_register_style('organization-css', GEN_SET_ASSETS_URL.'organization.css', array(), EVENT_ESPRESSO_VERSION); |
|
| 326 | 326 | wp_enqueue_script('gen_settings_countries'); |
| 327 | 327 | wp_enqueue_style('organization-css'); |
| 328 | 328 | } |
@@ -372,7 +372,7 @@ discard block |
||
| 372 | 372 | $this->_set_add_edit_form_tags('update_espresso_page_settings'); |
| 373 | 373 | $this->_set_publish_post_box_vars(null, false, false, null, false); |
| 374 | 374 | $this->_template_args['admin_page_content'] = EEH_Template::display_template( |
| 375 | - GEN_SET_TEMPLATE_PATH . 'espresso_page_settings.template.php', |
|
| 375 | + GEN_SET_TEMPLATE_PATH.'espresso_page_settings.template.php', |
|
| 376 | 376 | $this->_template_args, |
| 377 | 377 | true |
| 378 | 378 | ); |
@@ -531,7 +531,7 @@ discard block |
||
| 531 | 531 | { |
| 532 | 532 | try { |
| 533 | 533 | $admin_options_settings_form = new AdminOptionsSettings(EE_Registry::instance()); |
| 534 | - $admin_options_settings_form->process($this->_req_data[ $admin_options_settings_form->slug() ]); |
|
| 534 | + $admin_options_settings_form->process($this->_req_data[$admin_options_settings_form->slug()]); |
|
| 535 | 535 | EE_Registry::instance()->CFG->admin = apply_filters( |
| 536 | 536 | 'FHEE__General_Settings_Admin_Page___update_admin_option_settings__CFG_admin', |
| 537 | 537 | EE_Registry::instance()->CFG->admin |
@@ -648,7 +648,7 @@ discard block |
||
| 648 | 648 | $this->_set_add_edit_form_tags('update_country_settings'); |
| 649 | 649 | $this->_set_publish_post_box_vars(null, false, false, null, false); |
| 650 | 650 | $this->_template_args['admin_page_content'] = EEH_Template::display_template( |
| 651 | - GEN_SET_TEMPLATE_PATH . 'countries_settings.template.php', |
|
| 651 | + GEN_SET_TEMPLATE_PATH.'countries_settings.template.php', |
|
| 652 | 652 | $this->_template_args, |
| 653 | 653 | true |
| 654 | 654 | ); |
@@ -676,7 +676,7 @@ discard block |
||
| 676 | 676 | $CNT_ISO = isset($this->_req_data['country']) |
| 677 | 677 | ? strtoupper(sanitize_text_field($this->_req_data['country'])) |
| 678 | 678 | : $CNT_ISO; |
| 679 | - if (! $CNT_ISO) { |
|
| 679 | + if ( ! $CNT_ISO) { |
|
| 680 | 680 | return ''; |
| 681 | 681 | } |
| 682 | 682 | |
@@ -692,59 +692,59 @@ discard block |
||
| 692 | 692 | $country_input_types = array( |
| 693 | 693 | 'CNT_active' => array( |
| 694 | 694 | 'type' => 'RADIO_BTN', |
| 695 | - 'input_name' => 'cntry[' . $CNT_ISO . ']', |
|
| 695 | + 'input_name' => 'cntry['.$CNT_ISO.']', |
|
| 696 | 696 | 'class' => '', |
| 697 | 697 | 'options' => $this->_yes_no_values, |
| 698 | 698 | 'use_desc_4_label' => true, |
| 699 | 699 | ), |
| 700 | 700 | 'CNT_ISO' => array( |
| 701 | 701 | 'type' => 'TEXT', |
| 702 | - 'input_name' => 'cntry[' . $CNT_ISO . ']', |
|
| 702 | + 'input_name' => 'cntry['.$CNT_ISO.']', |
|
| 703 | 703 | 'class' => 'small-text', |
| 704 | 704 | ), |
| 705 | 705 | 'CNT_ISO3' => array( |
| 706 | 706 | 'type' => 'TEXT', |
| 707 | - 'input_name' => 'cntry[' . $CNT_ISO . ']', |
|
| 707 | + 'input_name' => 'cntry['.$CNT_ISO.']', |
|
| 708 | 708 | 'class' => 'small-text', |
| 709 | 709 | ), |
| 710 | 710 | 'RGN_ID' => array( |
| 711 | 711 | 'type' => 'TEXT', |
| 712 | - 'input_name' => 'cntry[' . $CNT_ISO . ']', |
|
| 712 | + 'input_name' => 'cntry['.$CNT_ISO.']', |
|
| 713 | 713 | 'class' => 'small-text', |
| 714 | 714 | ), |
| 715 | 715 | 'CNT_name' => array( |
| 716 | 716 | 'type' => 'TEXT', |
| 717 | - 'input_name' => 'cntry[' . $CNT_ISO . ']', |
|
| 717 | + 'input_name' => 'cntry['.$CNT_ISO.']', |
|
| 718 | 718 | 'class' => 'regular-text', |
| 719 | 719 | ), |
| 720 | 720 | 'CNT_cur_code' => array( |
| 721 | 721 | 'type' => 'TEXT', |
| 722 | - 'input_name' => 'cntry[' . $CNT_ISO . ']', |
|
| 722 | + 'input_name' => 'cntry['.$CNT_ISO.']', |
|
| 723 | 723 | 'class' => 'small-text', |
| 724 | 724 | 'disabled' => $CNT_cur_disabled, |
| 725 | 725 | ), |
| 726 | 726 | 'CNT_cur_single' => array( |
| 727 | 727 | 'type' => 'TEXT', |
| 728 | - 'input_name' => 'cntry[' . $CNT_ISO . ']', |
|
| 728 | + 'input_name' => 'cntry['.$CNT_ISO.']', |
|
| 729 | 729 | 'class' => 'medium-text', |
| 730 | 730 | 'disabled' => $CNT_cur_disabled, |
| 731 | 731 | ), |
| 732 | 732 | 'CNT_cur_plural' => array( |
| 733 | 733 | 'type' => 'TEXT', |
| 734 | - 'input_name' => 'cntry[' . $CNT_ISO . ']', |
|
| 734 | + 'input_name' => 'cntry['.$CNT_ISO.']', |
|
| 735 | 735 | 'class' => 'medium-text', |
| 736 | 736 | 'disabled' => $CNT_cur_disabled, |
| 737 | 737 | ), |
| 738 | 738 | 'CNT_cur_sign' => array( |
| 739 | 739 | 'type' => 'TEXT', |
| 740 | - 'input_name' => 'cntry[' . $CNT_ISO . ']', |
|
| 740 | + 'input_name' => 'cntry['.$CNT_ISO.']', |
|
| 741 | 741 | 'class' => 'small-text', |
| 742 | 742 | 'htmlentities' => false, |
| 743 | 743 | 'disabled' => $CNT_cur_disabled, |
| 744 | 744 | ), |
| 745 | 745 | 'CNT_cur_sign_b4' => array( |
| 746 | 746 | 'type' => 'RADIO_BTN', |
| 747 | - 'input_name' => 'cntry[' . $CNT_ISO . ']', |
|
| 747 | + 'input_name' => 'cntry['.$CNT_ISO.']', |
|
| 748 | 748 | 'class' => '', |
| 749 | 749 | 'options' => $this->_yes_no_values, |
| 750 | 750 | 'use_desc_4_label' => true, |
@@ -752,7 +752,7 @@ discard block |
||
| 752 | 752 | ), |
| 753 | 753 | 'CNT_cur_dec_plc' => array( |
| 754 | 754 | 'type' => 'RADIO_BTN', |
| 755 | - 'input_name' => 'cntry[' . $CNT_ISO . ']', |
|
| 755 | + 'input_name' => 'cntry['.$CNT_ISO.']', |
|
| 756 | 756 | 'class' => '', |
| 757 | 757 | 'options' => array( |
| 758 | 758 | array('id' => 0, 'text' => ''), |
@@ -764,7 +764,7 @@ discard block |
||
| 764 | 764 | ), |
| 765 | 765 | 'CNT_cur_dec_mrk' => array( |
| 766 | 766 | 'type' => 'RADIO_BTN', |
| 767 | - 'input_name' => 'cntry[' . $CNT_ISO . ']', |
|
| 767 | + 'input_name' => 'cntry['.$CNT_ISO.']', |
|
| 768 | 768 | 'class' => '', |
| 769 | 769 | 'options' => array( |
| 770 | 770 | array( |
@@ -778,7 +778,7 @@ discard block |
||
| 778 | 778 | ), |
| 779 | 779 | 'CNT_cur_thsnds' => array( |
| 780 | 780 | 'type' => 'RADIO_BTN', |
| 781 | - 'input_name' => 'cntry[' . $CNT_ISO . ']', |
|
| 781 | + 'input_name' => 'cntry['.$CNT_ISO.']', |
|
| 782 | 782 | 'class' => '', |
| 783 | 783 | 'options' => array( |
| 784 | 784 | array( |
@@ -792,12 +792,12 @@ discard block |
||
| 792 | 792 | ), |
| 793 | 793 | 'CNT_tel_code' => array( |
| 794 | 794 | 'type' => 'TEXT', |
| 795 | - 'input_name' => 'cntry[' . $CNT_ISO . ']', |
|
| 795 | + 'input_name' => 'cntry['.$CNT_ISO.']', |
|
| 796 | 796 | 'class' => 'small-text', |
| 797 | 797 | ), |
| 798 | 798 | 'CNT_is_EU' => array( |
| 799 | 799 | 'type' => 'RADIO_BTN', |
| 800 | - 'input_name' => 'cntry[' . $CNT_ISO . ']', |
|
| 800 | + 'input_name' => 'cntry['.$CNT_ISO.']', |
|
| 801 | 801 | 'class' => '', |
| 802 | 802 | 'options' => $this->_yes_no_values, |
| 803 | 803 | 'use_desc_4_label' => true, |
@@ -808,7 +808,7 @@ discard block |
||
| 808 | 808 | $country_input_types |
| 809 | 809 | ); |
| 810 | 810 | $country_details_settings = EEH_Template::display_template( |
| 811 | - GEN_SET_TEMPLATE_PATH . 'country_details_settings.template.php', |
|
| 811 | + GEN_SET_TEMPLATE_PATH.'country_details_settings.template.php', |
|
| 812 | 812 | $this->_template_args, |
| 813 | 813 | true |
| 814 | 814 | ); |
@@ -846,7 +846,7 @@ discard block |
||
| 846 | 846 | $CNT_ISO = isset($this->_req_data['country']) |
| 847 | 847 | ? sanitize_text_field($this->_req_data['country']) |
| 848 | 848 | : $CNT_ISO; |
| 849 | - if (! $CNT_ISO) { |
|
| 849 | + if ( ! $CNT_ISO) { |
|
| 850 | 850 | return ''; |
| 851 | 851 | } |
| 852 | 852 | // for ajax |
@@ -876,22 +876,22 @@ discard block |
||
| 876 | 876 | $state_input_types = array( |
| 877 | 877 | 'STA_abbrev' => array( |
| 878 | 878 | 'type' => 'TEXT', |
| 879 | - 'input_name' => 'states[' . $STA_ID . ']', |
|
| 879 | + 'input_name' => 'states['.$STA_ID.']', |
|
| 880 | 880 | 'class' => 'mid-text', |
| 881 | 881 | ), |
| 882 | 882 | 'STA_name' => array( |
| 883 | 883 | 'type' => 'TEXT', |
| 884 | - 'input_name' => 'states[' . $STA_ID . ']', |
|
| 884 | + 'input_name' => 'states['.$STA_ID.']', |
|
| 885 | 885 | 'class' => 'regular-text', |
| 886 | 886 | ), |
| 887 | 887 | 'STA_active' => array( |
| 888 | 888 | 'type' => 'RADIO_BTN', |
| 889 | - 'input_name' => 'states[' . $STA_ID . ']', |
|
| 889 | + 'input_name' => 'states['.$STA_ID.']', |
|
| 890 | 890 | 'options' => $this->_yes_no_values, |
| 891 | 891 | 'use_desc_4_label' => true, |
| 892 | 892 | ), |
| 893 | 893 | ); |
| 894 | - $this->_template_args['states'][ $STA_ID ]['inputs'] = |
|
| 894 | + $this->_template_args['states'][$STA_ID]['inputs'] = |
|
| 895 | 895 | EE_Question_Form_Input::generate_question_form_inputs_for_object( |
| 896 | 896 | $state, |
| 897 | 897 | $state_input_types |
@@ -902,7 +902,7 @@ discard block |
||
| 902 | 902 | 'CNT_ISO' => $CNT_ISO, |
| 903 | 903 | 'STA_abbrev' => $state->abbrev(), |
| 904 | 904 | ); |
| 905 | - $this->_template_args['states'][ $STA_ID ]['delete_state_url'] = |
|
| 905 | + $this->_template_args['states'][$STA_ID]['delete_state_url'] = |
|
| 906 | 906 | EE_Admin_Page::add_query_args_and_nonce( |
| 907 | 907 | $query_args, |
| 908 | 908 | GEN_SET_ADMIN_URL |
@@ -919,7 +919,7 @@ discard block |
||
| 919 | 919 | ); |
| 920 | 920 | |
| 921 | 921 | $state_details_settings = EEH_Template::display_template( |
| 922 | - GEN_SET_TEMPLATE_PATH . 'state_details_settings.template.php', |
|
| 922 | + GEN_SET_TEMPLATE_PATH.'state_details_settings.template.php', |
|
| 923 | 923 | $this->_template_args, |
| 924 | 924 | true |
| 925 | 925 | ); |
@@ -958,7 +958,7 @@ discard block |
||
| 958 | 958 | $CNT_ISO = isset($this->_req_data['CNT_ISO']) |
| 959 | 959 | ? strtoupper(sanitize_text_field($this->_req_data['CNT_ISO'])) |
| 960 | 960 | : false; |
| 961 | - if (! $CNT_ISO) { |
|
| 961 | + if ( ! $CNT_ISO) { |
|
| 962 | 962 | EE_Error::add_error( |
| 963 | 963 | __('No Country ISO code or an invalid Country ISO code was received.', 'event_espresso'), |
| 964 | 964 | __FILE__, |
@@ -970,7 +970,7 @@ discard block |
||
| 970 | 970 | $STA_abbrev = isset($this->_req_data['STA_abbrev']) |
| 971 | 971 | ? sanitize_text_field($this->_req_data['STA_abbrev']) |
| 972 | 972 | : false; |
| 973 | - if (! $STA_abbrev) { |
|
| 973 | + if ( ! $STA_abbrev) { |
|
| 974 | 974 | EE_Error::add_error( |
| 975 | 975 | __('No State ISO code or an invalid State ISO code was received.', 'event_espresso'), |
| 976 | 976 | __FILE__, |
@@ -982,7 +982,7 @@ discard block |
||
| 982 | 982 | $STA_name = isset($this->_req_data['STA_name']) |
| 983 | 983 | ? sanitize_text_field($this->_req_data['STA_name']) |
| 984 | 984 | : false; |
| 985 | - if (! $STA_name) { |
|
| 985 | + if ( ! $STA_name) { |
|
| 986 | 986 | EE_Error::add_error( |
| 987 | 987 | __('No State name or an invalid State name was received.', 'event_espresso'), |
| 988 | 988 | __FILE__, |
@@ -1034,7 +1034,7 @@ discard block |
||
| 1034 | 1034 | $STA_abbrev = isset($this->_req_data['STA_abbrev']) |
| 1035 | 1035 | ? sanitize_text_field($this->_req_data['STA_abbrev']) |
| 1036 | 1036 | : false; |
| 1037 | - if (! $STA_ID) { |
|
| 1037 | + if ( ! $STA_ID) { |
|
| 1038 | 1038 | EE_Error::add_error( |
| 1039 | 1039 | __('No State ID or an invalid State ID was received.', 'event_espresso'), |
| 1040 | 1040 | __FILE__, |
@@ -1086,7 +1086,7 @@ discard block |
||
| 1086 | 1086 | $CNT_ISO = isset($this->_req_data['country']) |
| 1087 | 1087 | ? strtoupper(sanitize_text_field($this->_req_data['country'])) |
| 1088 | 1088 | : false; |
| 1089 | - if (! $CNT_ISO) { |
|
| 1089 | + if ( ! $CNT_ISO) { |
|
| 1090 | 1090 | EE_Error::add_error( |
| 1091 | 1091 | __('No Country ISO code or an invalid Country ISO code was received.', 'event_espresso'), |
| 1092 | 1092 | __FILE__, |
@@ -1097,63 +1097,63 @@ discard block |
||
| 1097 | 1097 | return; |
| 1098 | 1098 | } |
| 1099 | 1099 | $cols_n_values = array(); |
| 1100 | - $cols_n_values['CNT_ISO3'] = isset($this->_req_data['cntry'][ $CNT_ISO ]['CNT_ISO3']) |
|
| 1101 | - ? strtoupper(sanitize_text_field($this->_req_data['cntry'][ $CNT_ISO ]['CNT_ISO3'])) |
|
| 1100 | + $cols_n_values['CNT_ISO3'] = isset($this->_req_data['cntry'][$CNT_ISO]['CNT_ISO3']) |
|
| 1101 | + ? strtoupper(sanitize_text_field($this->_req_data['cntry'][$CNT_ISO]['CNT_ISO3'])) |
|
| 1102 | 1102 | : false; |
| 1103 | - $cols_n_values['RGN_ID'] = isset($this->_req_data['cntry'][ $CNT_ISO ]['RGN_ID']) |
|
| 1104 | - ? absint($this->_req_data['cntry'][ $CNT_ISO ]['RGN_ID']) |
|
| 1103 | + $cols_n_values['RGN_ID'] = isset($this->_req_data['cntry'][$CNT_ISO]['RGN_ID']) |
|
| 1104 | + ? absint($this->_req_data['cntry'][$CNT_ISO]['RGN_ID']) |
|
| 1105 | 1105 | : null; |
| 1106 | - $cols_n_values['CNT_name'] = isset($this->_req_data['cntry'][ $CNT_ISO ]['CNT_name']) |
|
| 1107 | - ? sanitize_text_field($this->_req_data['cntry'][ $CNT_ISO ]['CNT_name']) |
|
| 1106 | + $cols_n_values['CNT_name'] = isset($this->_req_data['cntry'][$CNT_ISO]['CNT_name']) |
|
| 1107 | + ? sanitize_text_field($this->_req_data['cntry'][$CNT_ISO]['CNT_name']) |
|
| 1108 | 1108 | : null; |
| 1109 | - if (isset($this->_req_data['cntry'][ $CNT_ISO ]['CNT_cur_code'])) { |
|
| 1109 | + if (isset($this->_req_data['cntry'][$CNT_ISO]['CNT_cur_code'])) { |
|
| 1110 | 1110 | $cols_n_values['CNT_cur_code'] = strtoupper( |
| 1111 | - sanitize_text_field($this->_req_data['cntry'][ $CNT_ISO ]['CNT_cur_code']) |
|
| 1111 | + sanitize_text_field($this->_req_data['cntry'][$CNT_ISO]['CNT_cur_code']) |
|
| 1112 | 1112 | ); |
| 1113 | 1113 | } |
| 1114 | - if (isset($this->_req_data['cntry'][ $CNT_ISO ]['CNT_cur_single'])) { |
|
| 1114 | + if (isset($this->_req_data['cntry'][$CNT_ISO]['CNT_cur_single'])) { |
|
| 1115 | 1115 | $cols_n_values['CNT_cur_single'] = sanitize_text_field( |
| 1116 | - $this->_req_data['cntry'][ $CNT_ISO ]['CNT_cur_single'] |
|
| 1116 | + $this->_req_data['cntry'][$CNT_ISO]['CNT_cur_single'] |
|
| 1117 | 1117 | ); |
| 1118 | 1118 | } |
| 1119 | - if (isset($this->_req_data['cntry'][ $CNT_ISO ]['CNT_cur_plural'])) { |
|
| 1119 | + if (isset($this->_req_data['cntry'][$CNT_ISO]['CNT_cur_plural'])) { |
|
| 1120 | 1120 | $cols_n_values['CNT_cur_plural'] = sanitize_text_field( |
| 1121 | - $this->_req_data['cntry'][ $CNT_ISO ]['CNT_cur_plural'] |
|
| 1121 | + $this->_req_data['cntry'][$CNT_ISO]['CNT_cur_plural'] |
|
| 1122 | 1122 | ); |
| 1123 | 1123 | } |
| 1124 | - if (isset($this->_req_data['cntry'][ $CNT_ISO ]['CNT_cur_sign'])) { |
|
| 1124 | + if (isset($this->_req_data['cntry'][$CNT_ISO]['CNT_cur_sign'])) { |
|
| 1125 | 1125 | $cols_n_values['CNT_cur_sign'] = sanitize_text_field( |
| 1126 | - $this->_req_data['cntry'][ $CNT_ISO ]['CNT_cur_sign'] |
|
| 1126 | + $this->_req_data['cntry'][$CNT_ISO]['CNT_cur_sign'] |
|
| 1127 | 1127 | ); |
| 1128 | 1128 | } |
| 1129 | - if (isset($this->_req_data['cntry'][ $CNT_ISO ]['CNT_cur_sign_b4'])) { |
|
| 1129 | + if (isset($this->_req_data['cntry'][$CNT_ISO]['CNT_cur_sign_b4'])) { |
|
| 1130 | 1130 | $cols_n_values['CNT_cur_sign_b4'] = absint( |
| 1131 | - $this->_req_data['cntry'][ $CNT_ISO ]['CNT_cur_sign_b4'] |
|
| 1131 | + $this->_req_data['cntry'][$CNT_ISO]['CNT_cur_sign_b4'] |
|
| 1132 | 1132 | ); |
| 1133 | 1133 | } |
| 1134 | - if (isset($this->_req_data['cntry'][ $CNT_ISO ]['CNT_cur_dec_plc'])) { |
|
| 1134 | + if (isset($this->_req_data['cntry'][$CNT_ISO]['CNT_cur_dec_plc'])) { |
|
| 1135 | 1135 | $cols_n_values['CNT_cur_dec_plc'] = absint( |
| 1136 | - $this->_req_data['cntry'][ $CNT_ISO ]['CNT_cur_dec_plc'] |
|
| 1136 | + $this->_req_data['cntry'][$CNT_ISO]['CNT_cur_dec_plc'] |
|
| 1137 | 1137 | ); |
| 1138 | 1138 | } |
| 1139 | - if (isset($this->_req_data['cntry'][ $CNT_ISO ]['CNT_cur_dec_mrk'])) { |
|
| 1139 | + if (isset($this->_req_data['cntry'][$CNT_ISO]['CNT_cur_dec_mrk'])) { |
|
| 1140 | 1140 | $cols_n_values['CNT_cur_dec_mrk'] = sanitize_text_field( |
| 1141 | - $this->_req_data['cntry'][ $CNT_ISO ]['CNT_cur_dec_mrk'] |
|
| 1141 | + $this->_req_data['cntry'][$CNT_ISO]['CNT_cur_dec_mrk'] |
|
| 1142 | 1142 | ); |
| 1143 | 1143 | } |
| 1144 | - if (isset($this->_req_data['cntry'][ $CNT_ISO ]['CNT_cur_thsnds'])) { |
|
| 1144 | + if (isset($this->_req_data['cntry'][$CNT_ISO]['CNT_cur_thsnds'])) { |
|
| 1145 | 1145 | $cols_n_values['CNT_cur_thsnds'] = sanitize_text_field( |
| 1146 | - $this->_req_data['cntry'][ $CNT_ISO ]['CNT_cur_thsnds'] |
|
| 1146 | + $this->_req_data['cntry'][$CNT_ISO]['CNT_cur_thsnds'] |
|
| 1147 | 1147 | ); |
| 1148 | 1148 | } |
| 1149 | - $cols_n_values['CNT_tel_code'] = isset($this->_req_data['cntry'][ $CNT_ISO ]['CNT_tel_code']) |
|
| 1150 | - ? sanitize_text_field($this->_req_data['cntry'][ $CNT_ISO ]['CNT_tel_code']) |
|
| 1149 | + $cols_n_values['CNT_tel_code'] = isset($this->_req_data['cntry'][$CNT_ISO]['CNT_tel_code']) |
|
| 1150 | + ? sanitize_text_field($this->_req_data['cntry'][$CNT_ISO]['CNT_tel_code']) |
|
| 1151 | 1151 | : null; |
| 1152 | - $cols_n_values['CNT_is_EU'] = isset($this->_req_data['cntry'][ $CNT_ISO ]['CNT_is_EU']) |
|
| 1153 | - ? absint($this->_req_data['cntry'][ $CNT_ISO ]['CNT_is_EU']) |
|
| 1152 | + $cols_n_values['CNT_is_EU'] = isset($this->_req_data['cntry'][$CNT_ISO]['CNT_is_EU']) |
|
| 1153 | + ? absint($this->_req_data['cntry'][$CNT_ISO]['CNT_is_EU']) |
|
| 1154 | 1154 | : false; |
| 1155 | - $cols_n_values['CNT_active'] = isset($this->_req_data['cntry'][ $CNT_ISO ]['CNT_active']) |
|
| 1156 | - ? absint($this->_req_data['cntry'][ $CNT_ISO ]['CNT_active']) |
|
| 1155 | + $cols_n_values['CNT_active'] = isset($this->_req_data['cntry'][$CNT_ISO]['CNT_active']) |
|
| 1156 | + ? absint($this->_req_data['cntry'][$CNT_ISO]['CNT_active']) |
|
| 1157 | 1157 | : false; |
| 1158 | 1158 | // allow filtering of country data |
| 1159 | 1159 | $cols_n_values = apply_filters( |
@@ -1230,7 +1230,7 @@ discard block |
||
| 1230 | 1230 | return ' |
| 1231 | 1231 | <tr> |
| 1232 | 1232 | <th> |
| 1233 | - ' . $label . ' |
|
| 1233 | + ' . $label.' |
|
| 1234 | 1234 | </th>'; |
| 1235 | 1235 | } |
| 1236 | 1236 | |
@@ -1246,7 +1246,7 @@ discard block |
||
| 1246 | 1246 | { |
| 1247 | 1247 | return ' |
| 1248 | 1248 | <td class="general-settings-country-input-td"> |
| 1249 | - ' . $input . ' |
|
| 1249 | + ' . $input.' |
|
| 1250 | 1250 | </td> |
| 1251 | 1251 | </tr>'; |
| 1252 | 1252 | } |
@@ -1277,7 +1277,7 @@ discard block |
||
| 1277 | 1277 | { |
| 1278 | 1278 | return ' |
| 1279 | 1279 | <td class="general-settings-country-state-input-td"> |
| 1280 | - ' . $input . ' |
|
| 1280 | + ' . $input.' |
|
| 1281 | 1281 | </td>'; |
| 1282 | 1282 | } |
| 1283 | 1283 | |
@@ -1303,7 +1303,7 @@ discard block |
||
| 1303 | 1303 | . __('Edit', 'event_espresso') |
| 1304 | 1304 | . '</a>'; |
| 1305 | 1305 | $links .= ' | '; |
| 1306 | - $links .= '<a href="' . get_permalink($ee_page_id) . '" >' . __('View', 'event_espresso') . '</a>'; |
|
| 1306 | + $links .= '<a href="'.get_permalink($ee_page_id).'" >'.__('View', 'event_espresso').'</a>'; |
|
| 1307 | 1307 | |
| 1308 | 1308 | return $links; |
| 1309 | 1309 | } |
@@ -1336,9 +1336,9 @@ discard block |
||
| 1336 | 1336 | $sc_status = sprintf(__('Shortcode%sProblem', 'event_espresso'), ' '); |
| 1337 | 1337 | } |
| 1338 | 1338 | |
| 1339 | - return '<span style="color:' . $pg_colour . '; margin-right:2em;"><strong>' |
|
| 1339 | + return '<span style="color:'.$pg_colour.'; margin-right:2em;"><strong>' |
|
| 1340 | 1340 | . $pg_status |
| 1341 | - . '</strong></span><span style="color:' . $sc_colour . '"><strong>' . $sc_status . '</strong></span>'; |
|
| 1341 | + . '</strong></span><span style="color:'.$sc_colour.'"><strong>'.$sc_status.'</strong></span>'; |
|
| 1342 | 1342 | } |
| 1343 | 1343 | |
| 1344 | 1344 | |