Complex classes like CMB2_Sanitize 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 CMB2_Sanitize, and based on these observations, apply Extract Interface, too.
| 1 | <?php |
||
| 15 | class CMB2_Sanitize { |
||
|
|
|||
| 16 | |||
| 17 | /** |
||
| 18 | * A CMB field object |
||
| 19 | * @var CMB2_Field object |
||
| 20 | */ |
||
| 21 | public $field; |
||
| 22 | |||
| 23 | /** |
||
| 24 | * Field's value |
||
| 25 | * @var mixed |
||
| 26 | */ |
||
| 27 | public $value; |
||
| 28 | |||
| 29 | /** |
||
| 30 | * Setup our class vars |
||
| 31 | * @since 1.1.0 |
||
| 32 | * @param CMB2_Field $field A CMB2 field object |
||
| 33 | * @param mixed $value Field value |
||
| 34 | */ |
||
| 35 | public function __construct( CMB2_Field $field, $value ) { |
||
| 39 | |||
| 40 | /** |
||
| 41 | * Catchall method if field's 'sanitization_cb' is NOT defined, or field type does not have a corresponding validation method |
||
| 42 | * @since 1.0.0 |
||
| 43 | * @param string $name Non-existent method name |
||
| 44 | * @param array $arguments All arguments passed to the method |
||
| 45 | */ |
||
| 46 | public function __call( $name, $arguments ) { |
||
| 49 | |||
| 50 | /** |
||
| 51 | * Default fallback sanitization method. Applies filters. |
||
| 52 | * @since 1.0.2 |
||
| 53 | */ |
||
| 54 | public function default_sanitization() { |
||
| 55 | |||
| 56 | /** |
||
| 57 | * This exists for back-compatibility, but validation |
||
| 58 | * is not what happens here. |
||
| 59 | * @deprecated See documentation for "cmb2_sanitize_{$this->type()}". |
||
| 60 | */ |
||
| 61 | $override_value = apply_filters( "cmb2_validate_{$this->field->type()}", null, $this->value, $this->field->object_id, $this->field->args(), $this ); |
||
| 62 | |||
| 63 | if ( null !== $override_value ) { |
||
| 64 | return $override_value; |
||
| 65 | } |
||
| 66 | |||
| 67 | $sanitized_value = ''; |
||
| 68 | switch ( $this->field->type() ) { |
||
| 69 | case 'wysiwyg': |
||
| 70 | case 'textarea_small': |
||
| 71 | $sanitized_value = $this->textarea(); |
||
| 72 | break; |
||
| 73 | case 'taxonomy_select': |
||
| 74 | case 'taxonomy_radio': |
||
| 75 | case 'taxonomy_radio_inline': |
||
| 76 | case 'taxonomy_multicheck': |
||
| 77 | case 'taxonomy_multicheck_inline': |
||
| 78 | if ( $this->field->args( 'taxonomy' ) ) { |
||
| 79 | wp_set_object_terms( $this->field->object_id, $this->value, $this->field->args( 'taxonomy' ) ); |
||
| 80 | } else { |
||
| 81 | cmb2_utils()->log_if_debug( __METHOD__, __LINE__, "{$this->field->type()} {$this->field->_id()} is missing the 'taxonomy' parameter." ); |
||
| 82 | } |
||
| 83 | break; |
||
| 84 | case 'multicheck': |
||
| 85 | case 'multicheck_inline': |
||
| 86 | case 'file_list': |
||
| 87 | case 'oembed': |
||
| 88 | case 'group': |
||
| 89 | // no filtering |
||
| 90 | $sanitized_value = $this->value; |
||
| 91 | break; |
||
| 92 | default: |
||
| 93 | // Handle repeatable fields array |
||
| 94 | // We'll fallback to 'sanitize_text_field' |
||
| 95 | $sanitized_value = is_array( $this->value ) ? array_map( 'sanitize_text_field', $this->value ) : call_user_func( 'sanitize_text_field', $this->value ); |
||
| 96 | break; |
||
| 97 | } |
||
| 98 | |||
| 99 | return $this->_is_empty_array( $sanitized_value ) ? '' : $sanitized_value; |
||
| 100 | } |
||
| 101 | |||
| 102 | /** |
||
| 103 | * Simple checkbox validation |
||
| 104 | * @since 1.0.1 |
||
| 105 | * @return string|false 'on' or false |
||
| 106 | */ |
||
| 107 | public function checkbox() { |
||
| 110 | |||
| 111 | /** |
||
| 112 | * Validate url in a meta value |
||
| 113 | * @since 1.0.1 |
||
| 114 | * @return string Empty string or escaped url |
||
| 115 | */ |
||
| 116 | public function text_url() { |
||
| 129 | |||
| 130 | public function colorpicker() { |
||
| 145 | |||
| 146 | /** |
||
| 147 | * Validate email in a meta value |
||
| 148 | * @since 1.0.1 |
||
| 149 | * @return string Empty string or sanitized email |
||
| 150 | */ |
||
| 151 | public function text_email() { |
||
| 165 | |||
| 166 | /** |
||
| 167 | * Validate money in a meta value |
||
| 168 | * @since 1.0.1 |
||
| 169 | * @return string Empty string or sanitized money value |
||
| 170 | */ |
||
| 171 | public function text_money() { |
||
| 189 | |||
| 190 | /** |
||
| 191 | * Converts text date to timestamp |
||
| 192 | * @since 1.0.2 |
||
| 193 | * @return string Timestring |
||
| 194 | */ |
||
| 195 | public function text_date_timestamp() { |
||
| 209 | |||
| 210 | /** |
||
| 211 | * Datetime to timestamp |
||
| 212 | * @since 1.0.1 |
||
| 213 | * @return string Timestring |
||
| 214 | */ |
||
| 215 | public function text_datetime_timestamp( $repeat = false ) { |
||
| 237 | |||
| 238 | /** |
||
| 239 | * Datetime to timestamp with timezone |
||
| 240 | * @since 1.0.1 |
||
| 241 | * @return string Timestring |
||
| 242 | */ |
||
| 243 | public function text_datetime_timestamp_timezone( $repeat = false ) { |
||
| 323 | |||
| 324 | /** |
||
| 325 | * Sanitize textareas and wysiwyg fields |
||
| 326 | * @since 1.0.1 |
||
| 327 | * @return string Sanitized data |
||
| 328 | */ |
||
| 329 | public function textarea() { |
||
| 332 | |||
| 333 | /** |
||
| 334 | * Sanitize code textareas |
||
| 335 | * @since 1.0.2 |
||
| 336 | * @return string Sanitized data |
||
| 337 | */ |
||
| 338 | public function textarea_code( $repeat = false ) { |
||
| 346 | |||
| 347 | /** |
||
| 348 | * Handles saving of attachment post ID and sanitizing file url |
||
| 349 | * @since 1.1.0 |
||
| 350 | * @return string Sanitized url |
||
| 351 | */ |
||
| 352 | public function file() { |
||
| 365 | |||
| 366 | /** |
||
| 367 | * Gets the values for the `file` field type from the data being saved. |
||
| 368 | * @since 2.2.0 |
||
| 369 | */ |
||
| 370 | public function _get_group_file_value_array( $id_key ) { |
||
| 386 | |||
| 387 | /** |
||
| 388 | * Peforms saving of `file` attachement's ID |
||
| 389 | * @since 1.1.0 |
||
| 390 | */ |
||
| 391 | public function _save_file_id_value( $file_id_key ) { |
||
| 406 | |||
| 407 | /** |
||
| 408 | * Peforms saving of `text_datetime_timestamp_timezone` utc timestamp |
||
| 409 | * @since 2.2.0 |
||
| 410 | */ |
||
| 411 | public function _save_utc_value( $utc_key, $utc_stamp ) { |
||
| 414 | |||
| 415 | /** |
||
| 416 | * Returns a new, supporting, CMB2_Field object based on a new field id. |
||
| 417 | * @since 2.2.0 |
||
| 418 | */ |
||
| 419 | public function _new_supporting_field( $new_field_id ) { |
||
| 434 | |||
| 435 | /** |
||
| 436 | * If repeating, loop through and re-apply sanitization method |
||
| 437 | * @since 1.1.0 |
||
| 438 | * @param string $method Class method |
||
| 439 | * @param bool $repeat Whether repeating or not |
||
| 440 | * @return mixed Sanitized value |
||
| 441 | */ |
||
| 442 | public function _check_repeat( $method, $repeat ) { |
||
| 463 | |||
| 464 | /** |
||
| 465 | * Determine if passed value is an empty array |
||
| 466 | * @since 2.0.6 |
||
| 467 | * @param mixed $to_check Value to check |
||
| 468 | * @return boolean Whether value is an array that's empty |
||
| 469 | */ |
||
| 470 | public function _is_empty_array( $to_check ) { |
||
| 477 | |||
| 478 | } |
||
| 479 |
You can fix this by adding a namespace to your class:
When choosing a vendor namespace, try to pick something that is not too generic to avoid conflicts with other libraries.