Duplicate code is one of the most pungent code smells. A rule that is often used is to re-structure code once it is duplicated in three or more places.
Common duplication problems, and corresponding solutions are:
Complex classes like EE_Checkout often do a lot of different things. To break such a class down, we need to identify a cohesive component within that class. A common approach to find such a component is to look for fields/methods that share the same prefixes, or suffixes. You can also have a look at the cohesion graph to spot any un-connected, or weakly-connected components.
Once you have determined the fields that belong together, you can apply the Extract Class refactoring. If the component makes sense as a sub-class, Extract Subclass is also a candidate, and is often faster.
While breaking up the class, it is a good idea to analyze how other classes use EE_Checkout, and based on these observations, apply Extract Interface, too.
| 1 | <?php if ( ! defined('EVENT_ESPRESSO_VERSION')) { exit('No direct script access allowed'); } |
||
| 14 | class EE_Checkout { |
||
| 15 | |||
| 16 | /** |
||
| 17 | * whether current request originated from the EE admin |
||
| 18 | * @type bool |
||
| 19 | */ |
||
| 20 | public $admin_request = FALSE; |
||
| 21 | |||
| 22 | /** |
||
| 23 | * whether returning to edit attendee information or to retry a payment |
||
| 24 | * @type bool |
||
| 25 | */ |
||
| 26 | public $revisit = FALSE; |
||
| 27 | |||
| 28 | /** |
||
| 29 | * whether the primary registrant is returning to edit attendee information or to retry a payment |
||
| 30 | * @type bool |
||
| 31 | */ |
||
| 32 | public $primary_revisit = FALSE; |
||
| 33 | |||
| 34 | /** |
||
| 35 | * is registration allowed to progress or halted for some reason such as failing to pass recaptcha? |
||
| 36 | * @type bool |
||
| 37 | */ |
||
| 38 | public $continue_reg = TRUE; |
||
| 39 | |||
| 40 | /** |
||
| 41 | * redirect to thank you page ? |
||
| 42 | * @type bool |
||
| 43 | */ |
||
| 44 | public $redirect = FALSE; |
||
| 45 | |||
| 46 | /** |
||
| 47 | * generate the reg form or not ? |
||
| 48 | * @type bool |
||
| 49 | */ |
||
| 50 | public $generate_reg_form = TRUE; |
||
| 51 | |||
| 52 | /** |
||
| 53 | * process a reg form submission or not ? |
||
| 54 | * @type bool |
||
| 55 | */ |
||
| 56 | public $process_form_submission = FALSE; |
||
| 57 | |||
| 58 | /** |
||
| 59 | * tracks whether the TXN status modified during this checkout |
||
| 60 | * |
||
| 61 | * @type bool |
||
| 62 | */ |
||
| 63 | public $txn_status_updated = FALSE; |
||
| 64 | |||
| 65 | /** |
||
| 66 | * only triggered to true after absolutely everything has finished. |
||
| 67 | * |
||
| 68 | * @type bool |
||
| 69 | */ |
||
| 70 | protected $exit_spco = FALSE; |
||
| 71 | |||
| 72 | /** |
||
| 73 | * tracks whether any of the TXN's Registrations statuses modified during this checkout |
||
| 74 | * indexed by registration ID |
||
| 75 | * |
||
| 76 | * @type array |
||
| 77 | */ |
||
| 78 | protected $reg_status_updated = array(); |
||
| 79 | |||
| 80 | /** |
||
| 81 | * total number of tickets that were in the cart |
||
| 82 | * @type int |
||
| 83 | */ |
||
| 84 | public $total_ticket_count = 0; |
||
| 85 | |||
| 86 | /** |
||
| 87 | * corresponds loosely to EE_Transaction::remaining() |
||
| 88 | * but can be modified by SPCO |
||
| 89 | * |
||
| 90 | * @type float |
||
| 91 | */ |
||
| 92 | public $amount_owing = 0; |
||
| 93 | |||
| 94 | /** |
||
| 95 | * the reg step slug from the incoming request |
||
| 96 | * @type string |
||
| 97 | */ |
||
| 98 | public $step = ''; |
||
| 99 | |||
| 100 | /** |
||
| 101 | * the reg step slug for a step being edited |
||
| 102 | * @type string |
||
| 103 | */ |
||
| 104 | public $edit_step = ''; |
||
| 105 | |||
| 106 | /** |
||
| 107 | * the action being performed on the current step |
||
| 108 | * @type string |
||
| 109 | */ |
||
| 110 | public $action = ''; |
||
| 111 | |||
| 112 | /** |
||
| 113 | * reg_url_link for a previously saved registration |
||
| 114 | * @type string |
||
| 115 | */ |
||
| 116 | public $reg_url_link = ''; |
||
| 117 | |||
| 118 | /** |
||
| 119 | * string slug for the payment method that was selected during the payment options step |
||
| 120 | * @type string |
||
| 121 | */ |
||
| 122 | public $selected_method_of_payment = ''; |
||
| 123 | |||
| 124 | /** |
||
| 125 | * base url for the site's registration checkout page - additional url params will be added to this |
||
| 126 | * @type string |
||
| 127 | */ |
||
| 128 | public $reg_page_base_url = ''; |
||
| 129 | |||
| 130 | /** |
||
| 131 | * base url for the site's registration cancelled page - additional url params will be added to this |
||
| 132 | * @type string |
||
| 133 | */ |
||
| 134 | public $cancel_page_url = ''; |
||
| 135 | |||
| 136 | /** |
||
| 137 | * base url for the site's thank you page - additional url params will be added to this |
||
| 138 | * @type string |
||
| 139 | */ |
||
| 140 | public $thank_you_page_url = ''; |
||
| 141 | |||
| 142 | /** |
||
| 143 | * base url for any redirects - additional url params will be added to this |
||
| 144 | * @type string |
||
| 145 | */ |
||
| 146 | public $redirect_url = ''; |
||
| 147 | |||
| 148 | /** |
||
| 149 | * form of POST data for use with off-site gateways |
||
| 150 | * @type string |
||
| 151 | */ |
||
| 152 | public $redirect_form = ''; |
||
| 153 | |||
| 154 | /** |
||
| 155 | * array of query where params to use when retrieving cached registrations from $this->checkout->transaction |
||
| 156 | * @type array |
||
| 157 | */ |
||
| 158 | public $reg_cache_where_params = array(); |
||
| 159 | |||
| 160 | /** |
||
| 161 | * a class for managing and creating the JSON encoded array of data that gets passed back to the client during AJAX requests |
||
| 162 | * @type EE_SPCO_JSON_Response |
||
| 163 | */ |
||
| 164 | public $json_response; |
||
| 165 | |||
| 166 | /** |
||
| 167 | * where we are going next in the reg process |
||
| 168 | * @type EE_SPCO_Reg_Step |
||
| 169 | */ |
||
| 170 | public $next_step; |
||
| 171 | |||
| 172 | /** |
||
| 173 | * where we are in the reg process |
||
| 174 | * @type EE_SPCO_Reg_Step |
||
| 175 | */ |
||
| 176 | public $current_step; |
||
| 177 | |||
| 178 | /** |
||
| 179 | * $_cart - the current cart object |
||
| 180 | * @var EE_CART |
||
| 181 | */ |
||
| 182 | public $cart; |
||
| 183 | |||
| 184 | /** |
||
| 185 | * $_transaction - the current transaction object |
||
| 186 | * @var EE_Transaction |
||
| 187 | */ |
||
| 188 | public $transaction; |
||
| 189 | |||
| 190 | /** |
||
| 191 | * the related attendee object for the primary registrant |
||
| 192 | * @type EE_Attendee |
||
| 193 | */ |
||
| 194 | public $primary_attendee_obj; |
||
| 195 | |||
| 196 | /** |
||
| 197 | * $payment_method - the payment method object for the selected method of payment |
||
| 198 | * @type EE_Payment_Method |
||
| 199 | */ |
||
| 200 | public $payment_method; |
||
| 201 | |||
| 202 | /** |
||
| 203 | * $payment - if a payment was successfully made during the reg process, |
||
| 204 | * then here it is !!! |
||
| 205 | * @type EE_Payment |
||
| 206 | */ |
||
| 207 | public $payment; |
||
| 208 | |||
| 209 | /** |
||
| 210 | * if a payment method was selected that uses an on-site gateway, then this is the billing form |
||
| 211 | * @type EE_Billing_Info_Form | EE_Billing_Attendee_Info_Form |
||
| 212 | */ |
||
| 213 | public $billing_form; |
||
| 214 | |||
| 215 | /** |
||
| 216 | * the entire registration form composed of ALL of the subsections generated by the various reg steps |
||
| 217 | * @type EE_Form_Section_Proper |
||
| 218 | */ |
||
| 219 | public $registration_form; |
||
| 220 | |||
| 221 | /** |
||
| 222 | * array of EE_SPCO_Reg_Step objects |
||
| 223 | * @type EE_SPCO_Reg_Step[] |
||
| 224 | */ |
||
| 225 | public $reg_steps = array(); |
||
| 226 | |||
| 227 | /** |
||
| 228 | * array of EE_Payment_Method objects |
||
| 229 | * @type EE_Payment_Method[] |
||
| 230 | */ |
||
| 231 | public $available_payment_methods = array(); |
||
| 232 | |||
| 233 | |||
| 234 | |||
| 235 | /** |
||
| 236 | * class constructor |
||
| 237 | * |
||
| 238 | * @access public |
||
| 239 | * @return \EE_Checkout |
||
|
|
|||
| 240 | */ |
||
| 241 | public function __construct( ) { |
||
| 242 | $this->reg_page_base_url = EE_Registry::instance()->CFG->core->reg_page_url(); |
||
| 243 | $this->thank_you_page_url = EE_Registry::instance()->CFG->core->thank_you_page_url(); |
||
| 244 | $this->cancel_page_url = EE_Registry::instance()->CFG->core->cancel_page_url(); |
||
| 245 | $this->continue_reg = apply_filters( 'FHEE__EE_Checkout___construct___continue_reg', TRUE ); |
||
| 246 | $this->admin_request = is_admin() && ! EE_Registry::instance()->REQ->ajax; |
||
| 247 | $this->reg_cache_where_params = array( 'order_by' => array( 'REG_count' => 'ASC' )); |
||
| 248 | } |
||
| 249 | |||
| 250 | |||
| 251 | |||
| 252 | /** |
||
| 253 | * returns true if ANY reg status was updated during checkout |
||
| 254 | * @return array |
||
| 255 | */ |
||
| 256 | public function any_reg_status_updated() { |
||
| 257 | foreach ( $this->reg_status_updated as $reg_status ) { |
||
| 258 | if ( $reg_status ) { |
||
| 259 | return true; |
||
| 260 | } |
||
| 261 | } |
||
| 262 | return false; |
||
| 263 | } |
||
| 264 | |||
| 265 | |||
| 266 | |||
| 267 | /** |
||
| 268 | * @param $REG_ID |
||
| 269 | * @return array |
||
| 270 | */ |
||
| 271 | public function reg_status_updated( $REG_ID ) { |
||
| 274 | |||
| 275 | |||
| 276 | |||
| 277 | /** |
||
| 278 | * @param $REG_ID |
||
| 279 | * @param $reg_status |
||
| 280 | */ |
||
| 281 | public function set_reg_status_updated( $REG_ID, $reg_status ) { |
||
| 284 | |||
| 285 | |||
| 286 | |||
| 287 | /** |
||
| 288 | * exit_spco |
||
| 289 | * |
||
| 290 | * @return bool |
||
| 291 | */ |
||
| 292 | public function exit_spco() { |
||
| 295 | |||
| 296 | |||
| 297 | |||
| 298 | /** |
||
| 299 | * set_exit_spco |
||
| 300 | * can ONLY be set by the Finalize_Registration reg step |
||
| 301 | */ |
||
| 302 | public function set_exit_spco() { |
||
| 303 | if ( $this->current_step instanceof EE_SPCO_Reg_Step_Finalize_Registration ) { |
||
| 304 | $this->exit_spco = true; |
||
| 305 | } |
||
| 306 | } |
||
| 307 | |||
| 308 | |||
| 309 | |||
| 310 | |||
| 311 | |||
| 312 | /** |
||
| 313 | * reset_for_current_request |
||
| 314 | * |
||
| 315 | * @access public |
||
| 316 | * @return void |
||
| 317 | */ |
||
| 318 | public function reset_for_current_request() { |
||
| 319 | $this->process_form_submission = FALSE; |
||
| 320 | $this->continue_reg = apply_filters( 'FHEE__EE_Checkout___construct___continue_reg', true ); |
||
| 321 | $this->admin_request = is_admin() && ! EE_Registry::instance()->REQ->front_ajax; |
||
| 322 | $this->continue_reg = true; |
||
| 323 | $this->redirect = false; |
||
| 324 | // don't reset the cached redirect form if we're about to be asked to display it !!! |
||
| 325 | if ( EE_Registry::instance()->REQ->get( 'action', 'display_spco_reg_step' ) !== 'redirect_form' ) { |
||
| 326 | $this->redirect_form = ''; |
||
| 327 | } |
||
| 328 | $this->redirect_url = ''; |
||
| 329 | $this->json_response = new EE_SPCO_JSON_Response(); |
||
| 330 | EE_Form_Section_Proper::reset_js_localization(); |
||
| 331 | } |
||
| 332 | |||
| 333 | |||
| 334 | |||
| 335 | /** |
||
| 336 | * add_reg_step |
||
| 337 | * |
||
| 338 | * @access public |
||
| 339 | * @param EE_SPCO_Reg_Step $reg_step_obj |
||
| 340 | * @return void |
||
| 341 | */ |
||
| 342 | public function add_reg_step( EE_SPCO_Reg_Step $reg_step_obj ) { |
||
| 345 | |||
| 346 | |||
| 347 | |||
| 348 | /** |
||
| 349 | * skip_reg_step |
||
| 350 | * if the current reg step does not need to run for some reason, |
||
| 351 | * then this will advance SPCO to the next reg step, |
||
| 352 | * and mark the skipped step as completed |
||
| 353 | * |
||
| 354 | * @access public |
||
| 355 | * @param string $reg_step_slug |
||
| 356 | * @return void |
||
| 357 | * @throws \EE_Error |
||
| 358 | */ |
||
| 359 | public function skip_reg_step( $reg_step_slug = '' ) { |
||
| 360 | $step_to_skip = $this->find_reg_step( $reg_step_slug ); |
||
| 361 | if ( $step_to_skip instanceof EE_SPCO_Reg_Step && $step_to_skip->is_current_step() ) { |
||
| 362 | $step_to_skip->set_is_current_step( false ); |
||
| 363 | $step_to_skip->set_completed(); |
||
| 364 | // advance to the next step |
||
| 365 | $this->set_current_step( $this->next_step->slug() ); |
||
| 366 | // also reset the step param in the request in case any other code references that directly |
||
| 367 | EE_Registry::instance()->REQ->set( 'step', $this->current_step->slug() ); |
||
| 368 | // since we are skipping a step and setting the current step to be what was previously the next step, |
||
| 369 | // we need to check that the next step is now correct, and not still set to the current step. |
||
| 370 | if ( $this->current_step->slug() === $this->next_step->slug() ) { |
||
| 371 | // correctly setup the next step |
||
| 372 | $this->set_next_step(); |
||
| 373 | } |
||
| 374 | $this->set_reg_step_initiated( $this->current_step ); |
||
| 375 | } |
||
| 376 | } |
||
| 377 | |||
| 378 | |||
| 379 | |||
| 380 | /** |
||
| 381 | * remove_reg_step |
||
| 382 | * |
||
| 383 | * @access public |
||
| 384 | * @param string $reg_step_slug |
||
| 385 | * @param bool $reset whether to reset reg steps after removal |
||
| 386 | * @throws EE_Error |
||
| 387 | */ |
||
| 388 | public function remove_reg_step( $reg_step_slug = '', $reset = true ) { |
||
| 401 | |||
| 402 | |||
| 403 | |||
| 404 | /** |
||
| 405 | * set_reg_step_order |
||
| 406 | * |
||
| 407 | * @access public |
||
| 408 | * @param string $reg_step_slug |
||
| 409 | * @param int $order |
||
| 410 | * @return void |
||
| 411 | */ |
||
| 412 | public function set_reg_step_order( $reg_step_slug = '', $order = 100 ) { |
||
| 417 | |||
| 418 | |||
| 419 | |||
| 420 | /** |
||
| 421 | * set_current_step |
||
| 422 | * |
||
| 423 | * @access public |
||
| 424 | * @param string $current_step |
||
| 425 | * @return void |
||
| 426 | */ |
||
| 427 | public function set_current_step( $current_step ) { |
||
| 450 | |||
| 451 | |||
| 452 | |||
| 453 | /** |
||
| 454 | * set_next_step |
||
| 455 | * advances the reg_steps array pointer and sets the next step, then reverses pointer back to the current step |
||
| 456 | * |
||
| 457 | * @access public |
||
| 458 | * @return void |
||
| 459 | */ |
||
| 460 | public function set_next_step() { |
||
| 477 | |||
| 478 | |||
| 479 | |||
| 480 | |||
| 481 | /** |
||
| 482 | * get_next_reg_step |
||
| 483 | * this simply returns the next step from reg_steps array |
||
| 484 | * |
||
| 485 | * @access public |
||
| 486 | * @return EE_SPCO_Reg_Step | null |
||
| 487 | */ |
||
| 488 | public function get_next_reg_step() { |
||
| 493 | |||
| 494 | |||
| 495 | |||
| 496 | |||
| 497 | /** |
||
| 498 | * get_prev_reg_step |
||
| 499 | * this simply returns the previous step from reg_steps array |
||
| 500 | * |
||
| 501 | * @access public |
||
| 502 | * @return EE_SPCO_Reg_Step | null |
||
| 503 | */ |
||
| 504 | public function get_prev_reg_step() { |
||
| 509 | |||
| 510 | |||
| 511 | |||
| 512 | /** |
||
| 513 | * sort_reg_steps |
||
| 514 | * |
||
| 515 | * @access public |
||
| 516 | * @return void |
||
| 517 | */ |
||
| 518 | public function sort_reg_steps() { |
||
| 522 | |||
| 523 | |||
| 524 | |||
| 525 | /** |
||
| 526 | * find_reg_step |
||
| 527 | * finds a reg step by the given slug |
||
| 528 | * |
||
| 529 | * @access public |
||
| 530 | * @param string $reg_step_slug |
||
| 531 | * @return EE_SPCO_Reg_Step|null |
||
| 532 | */ |
||
| 533 | public function find_reg_step( $reg_step_slug = '' ) { |
||
| 550 | |||
| 551 | |||
| 552 | |||
| 553 | /** |
||
| 554 | * reg_step_sorting_callback |
||
| 555 | * |
||
| 556 | * @access public |
||
| 557 | * @param EE_SPCO_Reg_Step $reg_step_A |
||
| 558 | * @param EE_SPCO_Reg_Step $reg_step_B |
||
| 559 | * @return array() |
||
| 560 | */ |
||
| 561 | public function reg_step_sorting_callback( EE_SPCO_Reg_Step $reg_step_A, EE_SPCO_Reg_Step $reg_step_B ) { |
||
| 573 | |||
| 574 | |||
| 575 | |||
| 576 | /** |
||
| 577 | * set_reg_step_initiated |
||
| 578 | * |
||
| 579 | * @access public |
||
| 580 | * @param EE_SPCO_Reg_Step $reg_step |
||
| 581 | * @throws \EE_Error |
||
| 582 | */ |
||
| 583 | public function set_reg_step_initiated( EE_SPCO_Reg_Step $reg_step ) { |
||
| 611 | |||
| 612 | |||
| 613 | |||
| 614 | /** |
||
| 615 | * set_reg_step_JSON_info |
||
| 616 | * |
||
| 617 | * @access public |
||
| 618 | * @return void |
||
| 619 | */ |
||
| 620 | public function set_reg_step_JSON_info() { |
||
| 629 | |||
| 630 | |||
| 631 | |||
| 632 | /** |
||
| 633 | * reset_reg_steps |
||
| 634 | * |
||
| 635 | * @access public |
||
| 636 | * @return bool |
||
| 637 | */ |
||
| 638 | public function reset_reg_steps() { |
||
| 646 | |||
| 647 | |||
| 648 | |||
| 649 | /** |
||
| 650 | * get_registration_time_limit |
||
| 651 | * |
||
| 652 | * @access public |
||
| 653 | * @return string |
||
| 654 | */ |
||
| 655 | public function get_registration_time_limit() { |
||
| 665 | |||
| 666 | |||
| 667 | |||
| 668 | /** |
||
| 669 | * payment_required |
||
| 670 | * @return boolean |
||
| 671 | */ |
||
| 672 | public function payment_required() { |
||
| 681 | |||
| 682 | |||
| 683 | |||
| 684 | /** |
||
| 685 | * initialize_txn_reg_steps_array |
||
| 686 | * |
||
| 687 | * @access public |
||
| 688 | * @return array |
||
| 689 | */ |
||
| 690 | public function initialize_txn_reg_steps_array() { |
||
| 697 | |||
| 698 | |||
| 699 | |||
| 700 | /** |
||
| 701 | * update_txn_reg_steps_array |
||
| 702 | * |
||
| 703 | * @access public |
||
| 704 | * @return bool |
||
| 705 | * @throws \EE_Error |
||
| 706 | */ |
||
| 707 | public function update_txn_reg_steps_array() { |
||
| 723 | |||
| 724 | |||
| 725 | |||
| 726 | /** |
||
| 727 | * stash_transaction_and_checkout |
||
| 728 | * |
||
| 729 | * @access public |
||
| 730 | * @return void |
||
| 731 | * @throws \EE_Error |
||
| 732 | */ |
||
| 733 | public function stash_transaction_and_checkout() { |
||
| 743 | |||
| 744 | |||
| 745 | |||
| 746 | /** |
||
| 747 | * track_transaction_and_registration_status_updates |
||
| 748 | * stores whether any updates were made to the TXN or it's related registrations |
||
| 749 | * |
||
| 750 | * @access public |
||
| 751 | * @return bool |
||
| 752 | * @throws \EE_Error |
||
| 753 | */ |
||
| 754 | public function track_transaction_and_registration_status_updates() { |
||
| 755 | // verify the transaction |
||
| 756 | if ( $this->transaction instanceof EE_Transaction ) { |
||
| 757 | /** @type EE_Transaction_Payments $transaction_payments */ |
||
| 758 | $transaction_payments = EE_Registry::instance()->load_class( 'Transaction_Payments' ); |
||
| 759 | /** @type EE_Transaction_Processor $transaction_processor */ |
||
| 760 | $transaction_processor = EE_Registry::instance()->load_class( 'Transaction_Processor' ); |
||
| 761 | // has there been a TXN status change during this checkout? |
||
| 762 | if ( $transaction_payments->txn_status_updated() || $transaction_processor->txn_status_updated() ) { |
||
| 763 | $this->txn_status_updated = true; |
||
| 764 | } |
||
| 765 | /** @type EE_Registration_Processor $registration_processor */ |
||
| 766 | $registration_processor = EE_Registry::instance()->load_class( 'Registration_Processor' ); |
||
| 767 | // grab the saved registrations from the transaction |
||
| 768 | foreach ( $this->transaction->registrations( $this->reg_cache_where_params ) as $registration ) { |
||
| 769 | if ( $registration_processor->reg_status_updated( $registration->ID() ) ) { |
||
| 770 | $this->set_reg_status_updated( $registration->ID(), true ); |
||
| 771 | } |
||
| 772 | } |
||
| 773 | } |
||
| 774 | } |
||
| 775 | |||
| 776 | |||
| 777 | |||
| 778 | /** |
||
| 779 | * visit_allows_processing_of_this_registration |
||
| 780 | * determines if the current SPCO visit should allow the passed EE_Registration to be used in processing. |
||
| 781 | * one of the following conditions must be met: |
||
| 782 | * EITHER: A) first time thru SPCO -> process ALL registrations ( NOT a revisit ) |
||
| 783 | * OR : B) primary registrant is editing info -> process ALL registrations ( primary_revisit ) |
||
| 784 | * OR : C) another registrant is editing info -> ONLY process their registration ( revisit AND their reg_url_link matches ) |
||
| 785 | * |
||
| 786 | * @access public |
||
| 787 | * @param EE_Registration $registration |
||
| 788 | * @return bool |
||
| 789 | * @throws \EE_Error |
||
| 790 | */ |
||
| 791 | public function visit_allows_processing_of_this_registration( EE_Registration $registration ) { |
||
| 792 | return ! $this->revisit |
||
| 793 | || $this->primary_revisit |
||
| 794 | || ( |
||
| 795 | $this->revisit && $this->reg_url_link === $registration->reg_url_link() |
||
| 796 | ) |
||
| 797 | ? true |
||
| 798 | : false; |
||
| 799 | } |
||
| 800 | |||
| 801 | |||
| 802 | |||
| 803 | /** |
||
| 804 | * _transaction_has_primary_registration |
||
| 805 | * |
||
| 806 | * @access private |
||
| 807 | * @return bool |
||
| 808 | */ |
||
| 809 | public function transaction_has_primary_registrant() { |
||
| 810 | return $this->primary_attendee_obj instanceof EE_Attendee ? TRUE : FALSE; |
||
| 811 | } |
||
| 812 | |||
| 813 | |||
| 814 | |||
| 815 | /** |
||
| 816 | * save_all_data |
||
| 817 | * simply loops through the current transaction and saves all data for each registration |
||
| 818 | * |
||
| 819 | * @access public |
||
| 820 | * @param bool $show_errors |
||
| 821 | * @return bool |
||
| 822 | * @throws \EE_Error |
||
| 823 | */ |
||
| 824 | public function save_all_data( $show_errors = TRUE ) { |
||
| 825 | // verify the transaction |
||
| 826 | if ( $this->transaction instanceof EE_Transaction ) { |
||
| 827 | // save to ensure that TXN has ID |
||
| 828 | $this->transaction->save(); |
||
| 829 | // grab the saved registrations from the transaction |
||
| 830 | foreach ( $this->transaction->registrations( $this->reg_cache_where_params ) as $registration ) { |
||
| 831 | $this->_save_registration( $registration, $show_errors ); |
||
| 832 | } |
||
| 833 | } else { |
||
| 834 | if ( $show_errors ) { |
||
| 835 | EE_Error::add_error( __( 'A valid Transaction was not found when attempting to save your registration information.', 'event_espresso' ), __FILE__, __FUNCTION__, __LINE__); |
||
| 836 | } |
||
| 837 | return FALSE; |
||
| 838 | } |
||
| 839 | return TRUE; |
||
| 840 | } |
||
| 841 | |||
| 842 | |||
| 843 | |||
| 844 | /** |
||
| 845 | * _save_registration_attendee |
||
| 846 | * |
||
| 847 | * @param EE_Registration $registration |
||
| 848 | * @param bool $show_errors |
||
| 849 | * @return void |
||
| 850 | * @throws \EE_Error |
||
| 851 | */ |
||
| 852 | private function _save_registration( $registration, $show_errors = TRUE ) { |
||
| 853 | // verify object |
||
| 854 | if ( $registration instanceof EE_Registration ) { |
||
| 855 | // should this registration be processed during this visit ? |
||
| 856 | if ( $this->visit_allows_processing_of_this_registration( $registration ) ) { |
||
| 857 | //set TXN ID |
||
| 858 | if ( ! $registration->transaction_ID() ) { |
||
| 859 | $registration->set_transaction_id( $this->transaction->ID() ); |
||
| 860 | } |
||
| 861 | // verify and save the attendee |
||
| 862 | $this->_save_registration_attendee( $registration, $show_errors ); |
||
| 863 | // save answers to reg form questions |
||
| 864 | $this->_save_registration_answers( $registration, $show_errors ); |
||
| 865 | // save changes |
||
| 866 | $registration->save(); |
||
| 867 | // update txn cache |
||
| 868 | View Code Duplication | if ( ! $this->transaction->update_cache_after_object_save( 'Registration', $registration )) { |
|
| 869 | if ( $show_errors ) { |
||
| 870 | EE_Error::add_error( __( 'The newly saved Registration object could not be cached on the Transaction.', 'event_espresso' ), __FILE__, __FUNCTION__, __LINE__); |
||
| 871 | } |
||
| 872 | } |
||
| 873 | } |
||
| 874 | } else { |
||
| 875 | if ( $show_errors ) { |
||
| 876 | EE_Error::add_error( |
||
| 877 | __( 'An invalid Registration object was discovered when attempting to save your registration information.', 'event_espresso' ), |
||
| 878 | __FILE__, __FUNCTION__, __LINE__ |
||
| 879 | ); |
||
| 880 | } |
||
| 881 | } |
||
| 882 | } |
||
| 883 | |||
| 884 | |||
| 885 | |||
| 886 | /** |
||
| 887 | * _save_registration_attendee |
||
| 888 | * |
||
| 889 | * @param EE_Registration $registration |
||
| 890 | * @param bool $show_errors |
||
| 891 | * @return void |
||
| 892 | * @throws \EE_Error |
||
| 893 | */ |
||
| 894 | private function _save_registration_attendee( $registration, $show_errors = TRUE ) { |
||
| 895 | if ( $registration->attendee() instanceof EE_Attendee ) { |
||
| 896 | // save so that ATT has ID |
||
| 897 | $registration->attendee()->save(); |
||
| 898 | View Code Duplication | if ( ! $registration->update_cache_after_object_save( 'Attendee', $registration->attendee() ) ) { |
|
| 899 | if ( $show_errors ) { |
||
| 900 | EE_Error::add_error( |
||
| 901 | __( 'The newly saved Attendee object could not be cached on the registration.', 'event_espresso' ), |
||
| 902 | __FILE__, __FUNCTION__, __LINE__ |
||
| 903 | ); |
||
| 904 | } |
||
| 905 | } |
||
| 906 | View Code Duplication | } else { |
|
| 907 | if ( $show_errors ) { |
||
| 908 | EE_Error::add_error( |
||
| 909 | sprintf( |
||
| 910 | '%1$s||%1$s $attendee = %2$s', |
||
| 911 | __( 'Either no Attendee information was found, or an invalid Attendee object was discovered when attempting to save your registration information.', 'event_espresso' ), |
||
| 912 | var_export( $registration->attendee(), true ) |
||
| 913 | ), |
||
| 914 | __FILE__, __FUNCTION__, __LINE__ |
||
| 915 | ); |
||
| 916 | } |
||
| 917 | } |
||
| 918 | } |
||
| 919 | |||
| 920 | |||
| 921 | |||
| 922 | /** |
||
| 923 | * _save_question_answers |
||
| 924 | * |
||
| 925 | * @param EE_Registration $registration |
||
| 926 | * @param bool $show_errors |
||
| 927 | * @return void |
||
| 928 | * @throws \EE_Error |
||
| 929 | */ |
||
| 930 | private function _save_registration_answers( $registration, $show_errors = TRUE ) { |
||
| 931 | // now save the answers |
||
| 932 | foreach ( $registration->answers() as $cache_key => $answer ) { |
||
| 933 | // verify object |
||
| 934 | if ( $answer instanceof EE_Answer ) { |
||
| 935 | $answer->set_registration( $registration->ID() ); |
||
| 936 | $answer->save(); |
||
| 937 | if ( ! $registration->update_cache_after_object_save( 'Answer', $answer, $cache_key )) { |
||
| 938 | if ( $show_errors ) { |
||
| 939 | EE_Error::add_error( |
||
| 940 | __( 'The newly saved Answer object could not be cached on the registration.', 'event_espresso' ), |
||
| 941 | __FILE__, __FUNCTION__, __LINE__ |
||
| 942 | ); |
||
| 943 | } |
||
| 944 | } |
||
| 945 | } else { |
||
| 946 | if ( $show_errors ) { |
||
| 947 | EE_Error::add_error( |
||
| 948 | __( 'An invalid Answer object was discovered when attempting to save your registration information.', 'event_espresso' ), |
||
| 949 | __FILE__, __FUNCTION__, __LINE__ |
||
| 950 | ); |
||
| 951 | } |
||
| 952 | } |
||
| 953 | } |
||
| 954 | } |
||
| 955 | |||
| 956 | |||
| 957 | |||
| 958 | /** |
||
| 959 | * refresh_all_entities |
||
| 960 | * will either refresh the entity map with objects form the db or from the checkout cache |
||
| 961 | * |
||
| 962 | * @access public |
||
| 963 | * @param bool $from_db |
||
| 964 | * @return bool |
||
| 965 | * @throws \EE_Error |
||
| 966 | */ |
||
| 967 | public function refresh_all_entities( $from_db = false ) { |
||
| 968 | $from_db = $this->current_step->is_final_step() || $this->action === 'process_gateway_response' |
||
| 969 | ? true |
||
| 970 | : $from_db; |
||
| 971 | //$this->log( |
||
| 972 | // __CLASS__, __FUNCTION__, __LINE__, |
||
| 973 | // array( 'from_db' =>$from_db ) |
||
| 974 | //); |
||
| 975 | return $from_db ? $this->refresh_from_db() : $this->refresh_entity_map(); |
||
| 976 | } |
||
| 977 | |||
| 978 | |||
| 979 | |||
| 980 | /** |
||
| 981 | * refresh_entity_map |
||
| 982 | * simply loops through the current transaction and updates each |
||
| 983 | * model's entity map using EEM_Base::refresh_entity_map_from_db() |
||
| 984 | * |
||
| 985 | * @access public |
||
| 986 | * @return bool |
||
| 987 | * @throws \EE_Error |
||
| 988 | */ |
||
| 989 | protected function refresh_from_db() { |
||
| 990 | // verify the transaction |
||
| 991 | if ( $this->transaction instanceof EE_Transaction && $this->transaction->ID() ) { |
||
| 992 | // pull fresh TXN data from the db |
||
| 993 | $this->transaction = $this->transaction->get_model()->refresh_entity_map_from_db( $this->transaction->ID() ); |
||
| 994 | // update EE_Checkout's cached primary_attendee object |
||
| 995 | $this->primary_attendee_obj = $this->_refresh_primary_attendee_obj_from_db( $this->transaction ); |
||
| 996 | // update EE_Checkout's cached payment object |
||
| 997 | $payment = $this->transaction->last_payment(); |
||
| 998 | $this->payment = $payment instanceof EE_Payment ? $payment : $this->payment; |
||
| 999 | // update EE_Checkout's cached payment_method object |
||
| 1000 | $payment_method = $this->payment instanceof EE_Payment ? $this->payment->payment_method() : null; |
||
| 1001 | $this->payment_method = $payment_method instanceof EE_Payment_Method ? $payment_method : $this->payment_method; |
||
| 1002 | //now refresh the cart, based on the TXN |
||
| 1003 | $this->cart = EE_Cart::get_cart_from_txn( $this->transaction ); |
||
| 1004 | // verify and update the cart because inaccurate totals are not so much fun |
||
| 1005 | if ( $this->cart instanceof EE_Cart ) { |
||
| 1006 | $this->cart->get_grand_total()->recalculate_total_including_taxes(); |
||
| 1007 | } else { |
||
| 1008 | $this->cart = EE_Registry::instance()->load_core( 'Cart' ); |
||
| 1009 | } |
||
| 1010 | } else { |
||
| 1011 | EE_Error::add_error( __( 'A valid Transaction was not found when attempting to update the model entity mapper.', 'event_espresso' ), __FILE__, __FUNCTION__, __LINE__); |
||
| 1012 | return FALSE; |
||
| 1013 | } |
||
| 1014 | return TRUE; |
||
| 1015 | } |
||
| 1016 | |||
| 1017 | |||
| 1018 | |||
| 1019 | /** |
||
| 1020 | * _refresh_primary_attendee_obj_from_db |
||
| 1021 | * |
||
| 1022 | * @param EE_Transaction $transaction |
||
| 1023 | * @return EE_Attendee | null |
||
| 1024 | * @throws \EE_Error |
||
| 1025 | */ |
||
| 1026 | protected function _refresh_primary_attendee_obj_from_db( EE_Transaction $transaction ) { |
||
| 1047 | |||
| 1048 | |||
| 1049 | |||
| 1050 | /** |
||
| 1051 | * refresh_entity_map |
||
| 1052 | * simply loops through the current transaction and updates |
||
| 1053 | * each model's entity map using EEM_Base::refresh_entity_map_with() |
||
| 1054 | * |
||
| 1055 | * @access public |
||
| 1056 | * @return bool |
||
| 1057 | * @throws \EE_Error |
||
| 1058 | */ |
||
| 1059 | protected function refresh_entity_map() { |
||
| 1105 | |||
| 1106 | |||
| 1107 | |||
| 1108 | /** |
||
| 1109 | * _refresh_registration |
||
| 1110 | * |
||
| 1111 | * @param string | int $reg_cache_ID |
||
| 1112 | * @param EE_Registration $registration |
||
| 1113 | * @return void |
||
| 1114 | * @throws \EE_Error |
||
| 1115 | */ |
||
| 1116 | protected function _refresh_registration( $reg_cache_ID, $registration ) { |
||
| 1133 | |||
| 1134 | |||
| 1135 | |||
| 1136 | /** |
||
| 1137 | * _save_registration_attendee |
||
| 1138 | * |
||
| 1139 | * @param EE_Registration $registration |
||
| 1140 | * @return void |
||
| 1141 | * @throws \EE_Error |
||
| 1142 | */ |
||
| 1143 | protected function _refresh_registration_attendee( $registration ) { |
||
| 1156 | |||
| 1157 | |||
| 1158 | |||
| 1159 | /** |
||
| 1160 | * _refresh_registration_answers |
||
| 1161 | * |
||
| 1162 | * @param EE_Registration $registration |
||
| 1163 | * @return void |
||
| 1164 | * @throws \EE_Error |
||
| 1165 | */ |
||
| 1166 | protected function _refresh_registration_answers( $registration ) { |
||
| 1184 | |||
| 1185 | |||
| 1186 | |||
| 1187 | /** |
||
| 1188 | * __wakeup |
||
| 1189 | * to conserve db space, we are removing the EE_Checkout object from EE_SPCO_Reg_Step objects upon serialization |
||
| 1190 | * this will reinstate the EE_Checkout object on each EE_SPCO_Reg_Step object |
||
| 1191 | */ |
||
| 1192 | public function __wakeup() { |
||
| 1197 | |||
| 1198 | |||
| 1199 | |||
| 1200 | /** |
||
| 1201 | * debug |
||
| 1202 | * |
||
| 1203 | * @param string $class |
||
| 1204 | * @param string $func |
||
| 1205 | * @param string $line |
||
| 1206 | * @param array $info |
||
| 1207 | * @param bool $display_request |
||
| 1208 | * @throws \EE_Error |
||
| 1209 | */ |
||
| 1210 | public function log( $class = '', $func = '', $line = '', $info = array(), $display_request = false ) { |
||
| 1249 | |||
| 1250 | |||
| 1251 | /** |
||
| 1252 | * _strip_objects |
||
| 1253 | * |
||
| 1254 | * @param array $info |
||
| 1255 | * @return array |
||
| 1256 | */ |
||
| 1257 | public function _strip_objects( $info = array() ) { |
||
| 1275 | |||
| 1276 | |||
| 1277 | |||
| 1278 | |||
| 1279 | } |
||
| 1280 | // End of file EE_Checkout.class.php |
||
| 1281 | // Location: /EE_Checkout.class.php |
Adding a
@returnannotation to a constructor is not recommended, since a constructor does not have a meaningful return value.Please refer to the PHP core documentation on constructors.