@@ -17,476 +17,476 @@ |
||
| 17 | 17 | */ |
| 18 | 18 | class GetPaid_REST_CRUD_Controller extends GetPaid_REST_Controller { |
| 19 | 19 | |
| 20 | - /** |
|
| 21 | - * Contains this controller's class name. |
|
| 22 | - * |
|
| 23 | - * @var string |
|
| 24 | - */ |
|
| 25 | - public $crud_class; |
|
| 26 | - |
|
| 27 | - /** |
|
| 28 | - * Contains the current CRUD object. |
|
| 29 | - * |
|
| 30 | - * @var GetPaid_Data |
|
| 31 | - */ |
|
| 32 | - protected $data_object; |
|
| 33 | - |
|
| 34 | - /** |
|
| 35 | - * Registers the routes for the objects of the controller. |
|
| 36 | - * |
|
| 37 | - * @since 1.0.19 |
|
| 38 | - * |
|
| 39 | - * @see register_rest_route() |
|
| 40 | - */ |
|
| 41 | - public function register_namespace_routes( $namespace ) { |
|
| 42 | - |
|
| 43 | - register_rest_route( |
|
| 44 | - $namespace, |
|
| 45 | - '/' . $this->rest_base, |
|
| 46 | - array( |
|
| 47 | - array( |
|
| 48 | - 'methods' => WP_REST_Server::READABLE, |
|
| 49 | - 'callback' => array( $this, 'get_items' ), |
|
| 50 | - 'permission_callback' => array( $this, 'get_items_permissions_check' ), |
|
| 51 | - 'args' => $this->get_collection_params(), |
|
| 52 | - ), |
|
| 53 | - array( |
|
| 54 | - 'methods' => WP_REST_Server::CREATABLE, |
|
| 55 | - 'callback' => array( $this, 'create_item' ), |
|
| 56 | - 'permission_callback' => array( $this, 'create_item_permissions_check' ), |
|
| 57 | - 'args' => $this->get_endpoint_args_for_item_schema( WP_REST_Server::CREATABLE ), |
|
| 58 | - ), |
|
| 59 | - 'schema' => array( $this, 'get_public_item_schema' ), |
|
| 60 | - ) |
|
| 61 | - ); |
|
| 62 | - |
|
| 63 | - $get_item_args = array( |
|
| 64 | - 'context' => $this->get_context_param( array( 'default' => 'view' ) ), |
|
| 65 | - ); |
|
| 66 | - |
|
| 67 | - register_rest_route( |
|
| 68 | - $namespace, |
|
| 69 | - '/' . $this->rest_base . '/(?P<id>[\d]+)', |
|
| 70 | - array( |
|
| 71 | - 'args' => array( |
|
| 72 | - 'id' => array( |
|
| 73 | - 'description' => __( 'Unique identifier for the object.', 'invoicing' ), |
|
| 74 | - 'type' => 'integer', |
|
| 75 | - ), |
|
| 76 | - ), |
|
| 77 | - array( |
|
| 78 | - 'methods' => WP_REST_Server::READABLE, |
|
| 79 | - 'callback' => array( $this, 'get_item' ), |
|
| 80 | - 'permission_callback' => array( $this, 'get_item_permissions_check' ), |
|
| 81 | - 'args' => $get_item_args, |
|
| 82 | - ), |
|
| 83 | - array( |
|
| 84 | - 'methods' => WP_REST_Server::EDITABLE, |
|
| 85 | - 'callback' => array( $this, 'update_item' ), |
|
| 86 | - 'permission_callback' => array( $this, 'update_item_permissions_check' ), |
|
| 87 | - 'args' => $this->get_endpoint_args_for_item_schema( WP_REST_Server::EDITABLE ), |
|
| 88 | - ), |
|
| 89 | - array( |
|
| 90 | - 'methods' => WP_REST_Server::DELETABLE, |
|
| 91 | - 'callback' => array( $this, 'delete_item' ), |
|
| 92 | - 'permission_callback' => array( $this, 'delete_item_permissions_check' ), |
|
| 93 | - 'args' => array( |
|
| 94 | - 'force' => array( |
|
| 95 | - 'type' => 'boolean', |
|
| 96 | - 'default' => false, |
|
| 97 | - 'description' => __( 'Whether to bypass Trash and force deletion.', 'invoicing' ), |
|
| 98 | - ), |
|
| 99 | - ), |
|
| 100 | - ), |
|
| 101 | - 'schema' => array( $this, 'get_public_item_schema' ), |
|
| 102 | - ) |
|
| 103 | - ); |
|
| 104 | - |
|
| 105 | - } |
|
| 106 | - |
|
| 107 | - /** |
|
| 108 | - * Saves a single object. |
|
| 109 | - * |
|
| 110 | - * @param GetPaid_Data $object Object to save. |
|
| 111 | - * @return WP_Error|GetPaid_Data |
|
| 112 | - */ |
|
| 113 | - protected function save_object( $object ) { |
|
| 114 | - $object->save(); |
|
| 115 | - |
|
| 116 | - if ( ! empty( $object->last_error ) ) { |
|
| 117 | - return new WP_Error( 'rest_cannot_save', $object->last_error, array( 'status' => 400 ) ); |
|
| 118 | - } |
|
| 119 | - |
|
| 120 | - return new $this->crud_class( $object->get_id() ); |
|
| 121 | - } |
|
| 122 | - |
|
| 123 | - /** |
|
| 124 | - * Retrieves a single object. |
|
| 125 | - * |
|
| 126 | - * @since 1.0.13 |
|
| 127 | - * |
|
| 128 | - * @param int|WP_Post $object_id Supplied ID. |
|
| 129 | - * @return GetPaid_Data|WP_Error GetPaid_Data object if ID is valid, WP_Error otherwise. |
|
| 130 | - */ |
|
| 131 | - protected function get_object( $object_id ) { |
|
| 132 | - |
|
| 133 | - // Do we have an object? |
|
| 134 | - if ( empty( $this->crud_class ) || ! class_exists( $this->crud_class ) ) { |
|
| 135 | - return new WP_Error( 'no_crud_class', __( 'You need to specify a CRUD class for this controller', 'invoicing' ) ); |
|
| 136 | - } |
|
| 137 | - |
|
| 138 | - // Fetch the object. |
|
| 139 | - $object = new $this->crud_class( $object_id ); |
|
| 140 | - if ( ! empty( $object->last_error ) ) { |
|
| 141 | - return new WP_Error( 'rest_object_invalid_id', $object->last_error, array( 'status' => 404 ) ); |
|
| 142 | - } |
|
| 143 | - |
|
| 144 | - $this->data_object = $object; |
|
| 145 | - return $object->get_id() ? $object : new WP_Error( 'rest_object_invalid_id', __( 'Invalid ID.', 'invoicing' ), array( 'status' => 404 ) ); |
|
| 146 | - |
|
| 147 | - } |
|
| 148 | - |
|
| 149 | - /** |
|
| 150 | - * Get a single object. |
|
| 151 | - * |
|
| 152 | - * @param WP_REST_Request $request Full details about the request. |
|
| 153 | - * @return WP_Error|WP_REST_Response |
|
| 154 | - */ |
|
| 155 | - public function get_item( $request ) { |
|
| 156 | - |
|
| 157 | - // Fetch the item. |
|
| 158 | - $object = $this->get_object( $request['id'] ); |
|
| 159 | - |
|
| 160 | - if ( is_wp_error( $object ) ) { |
|
| 161 | - return $object; |
|
| 162 | - } |
|
| 163 | - |
|
| 164 | - // Generate a response. |
|
| 165 | - return rest_ensure_response( $this->prepare_item_for_response( $object, $request ) ); |
|
| 166 | - |
|
| 167 | - } |
|
| 168 | - |
|
| 169 | - /** |
|
| 170 | - * Create a single object. |
|
| 171 | - * |
|
| 172 | - * @param WP_REST_Request $request Full details about the request. |
|
| 173 | - * @return WP_Error|WP_REST_Response |
|
| 174 | - */ |
|
| 175 | - public function create_item( $request ) { |
|
| 176 | - |
|
| 177 | - // Can not create an existing item. |
|
| 178 | - if ( ! empty( $request['id'] ) ) { |
|
| 179 | - /* translators: %s: post type */ |
|
| 180 | - return new WP_Error( "getpaid_rest_{$this->rest_base}_exists", __( 'Cannot create existing resource.', 'invoicing' ), array( 'status' => 400 ) ); |
|
| 181 | - } |
|
| 182 | - |
|
| 183 | - // Generate a GetPaid_Data object from the request. |
|
| 184 | - $object = $this->prepare_item_for_database( $request ); |
|
| 185 | - if ( is_wp_error( $object ) ) { |
|
| 186 | - return $object; |
|
| 187 | - } |
|
| 188 | - |
|
| 189 | - // Save the object. |
|
| 190 | - $object = $this->save_object( $object ); |
|
| 191 | - if ( is_wp_error( $object ) ) { |
|
| 192 | - return $object; |
|
| 193 | - } |
|
| 194 | - |
|
| 195 | - // Save special fields. |
|
| 196 | - $save_special = $this->update_additional_fields_for_object( $object, $request ); |
|
| 197 | - if ( is_wp_error( $save_special ) ) { |
|
| 198 | - $object->delete( true ); |
|
| 199 | - return $save_special; |
|
| 200 | - } |
|
| 201 | - |
|
| 202 | - $request->set_param( 'context', 'edit' ); |
|
| 203 | - $response = $this->prepare_item_for_response( $object, $request ); |
|
| 204 | - $response = rest_ensure_response( $response ); |
|
| 205 | - $response->set_status( 201 ); |
|
| 206 | - $response->header( 'Location', rest_url( sprintf( '/%s/%s/%d', $this->namespace, $this->rest_base, $object->get_id() ) ) ); |
|
| 207 | - |
|
| 208 | - return $response; |
|
| 209 | - } |
|
| 210 | - |
|
| 211 | - /** |
|
| 212 | - * Update a single object. |
|
| 213 | - * |
|
| 214 | - * @param WP_REST_Request $request Full details about the request. |
|
| 215 | - * @return WP_Error|WP_REST_Response |
|
| 216 | - */ |
|
| 217 | - public function update_item( $request ) { |
|
| 218 | - |
|
| 219 | - // Fetch the item. |
|
| 220 | - $object = $this->get_object( $request['id'] ); |
|
| 221 | - if ( is_wp_error( $object ) ) { |
|
| 222 | - return $object; |
|
| 223 | - } |
|
| 224 | - |
|
| 225 | - // Prepare the item for saving. |
|
| 226 | - $object = $this->prepare_item_for_database( $request ); |
|
| 227 | - if ( is_wp_error( $object ) ) { |
|
| 228 | - return $object; |
|
| 229 | - } |
|
| 230 | - |
|
| 231 | - // Save the item. |
|
| 232 | - $object = $this->save_object( $object ); |
|
| 233 | - if ( is_wp_error( $object ) ) { |
|
| 234 | - return $object; |
|
| 235 | - } |
|
| 236 | - |
|
| 237 | - // Save special fields (those added via hooks). |
|
| 238 | - $save_special = $this->update_additional_fields_for_object( $object, $request ); |
|
| 239 | - if ( is_wp_error( $save_special ) ) { |
|
| 240 | - return $save_special; |
|
| 241 | - } |
|
| 242 | - |
|
| 243 | - $request->set_param( 'context', 'edit' ); |
|
| 244 | - $response = $this->prepare_item_for_response( $object, $request ); |
|
| 245 | - return rest_ensure_response( $response ); |
|
| 246 | - } |
|
| 247 | - |
|
| 248 | - /** |
|
| 249 | - * Prepare links for the request. |
|
| 250 | - * |
|
| 251 | - * @param GetPaid_Data $object GetPaid_Data object. |
|
| 252 | - * @return array Links for the given object. |
|
| 253 | - */ |
|
| 254 | - protected function prepare_links( $object ) { |
|
| 255 | - |
|
| 256 | - $links = array( |
|
| 257 | - 'self' => array( |
|
| 258 | - 'href' => rest_url( sprintf( '/%s/%s/%d', $this->namespace, $this->rest_base, $object->get_id() ) ), |
|
| 259 | - ), |
|
| 260 | - 'collection' => array( |
|
| 261 | - 'href' => rest_url( sprintf( '/%s/%s', $this->namespace, $this->rest_base ) ), |
|
| 262 | - ), |
|
| 263 | - ); |
|
| 264 | - |
|
| 265 | - return $links; |
|
| 266 | - } |
|
| 267 | - |
|
| 268 | - /** |
|
| 269 | - * Get the query params for collections of attachments. |
|
| 270 | - * |
|
| 271 | - * @return array |
|
| 272 | - */ |
|
| 273 | - public function get_collection_params() { |
|
| 274 | - $params = parent::get_collection_params(); |
|
| 275 | - $params['context']['default'] = 'view'; |
|
| 276 | - return $params; |
|
| 277 | - } |
|
| 278 | - |
|
| 279 | - /** |
|
| 280 | - * Only return writable props from schema. |
|
| 281 | - * |
|
| 282 | - * @param array $schema Schema. |
|
| 283 | - * @return bool |
|
| 284 | - */ |
|
| 285 | - public function filter_writable_props( $schema ) { |
|
| 286 | - return empty( $schema['readonly'] ); |
|
| 287 | - } |
|
| 288 | - |
|
| 289 | - /** |
|
| 290 | - * Prepare a single object for create or update. |
|
| 291 | - * |
|
| 292 | - * @since 1.0.19 |
|
| 293 | - * @param WP_REST_Request $request Request object. |
|
| 294 | - * @return GetPaid_Data|WP_Error Data object or WP_Error. |
|
| 295 | - */ |
|
| 296 | - protected function prepare_item_for_database( $request ) { |
|
| 297 | - |
|
| 298 | - // Do we have an object? |
|
| 299 | - if ( empty( $this->crud_class ) || ! class_exists( $this->crud_class ) ) { |
|
| 300 | - return new WP_Error( 'no_crud_class', __( 'You need to specify a CRUD class for this controller', 'invoicing' ) ); |
|
| 301 | - } |
|
| 302 | - |
|
| 303 | - // Prepare the object. |
|
| 304 | - $id = isset( $request['id'] ) ? absint( $request['id'] ) : 0; |
|
| 305 | - $object = new $this->crud_class( $id ); |
|
| 306 | - |
|
| 307 | - // Abort if an error exists. |
|
| 308 | - if ( ! empty( $object->last_error ) ) { |
|
| 309 | - return new WP_Error( 'invalid_item', $object->last_error ); |
|
| 310 | - } |
|
| 311 | - |
|
| 312 | - $schema = $this->get_item_schema(); |
|
| 313 | - $data_keys = array_keys( array_filter( $schema['properties'], array( $this, 'filter_writable_props' ) ) ); |
|
| 314 | - |
|
| 315 | - // Handle all writable props. |
|
| 316 | - foreach ( $data_keys as $key ) { |
|
| 317 | - $value = $request[ $key ]; |
|
| 318 | - |
|
| 319 | - if ( ! is_null( $value ) ) { |
|
| 320 | - switch ( $key ) { |
|
| 321 | - |
|
| 322 | - case 'meta_data': |
|
| 323 | - if ( is_array( $value ) ) { |
|
| 324 | - foreach ( $value as $meta ) { |
|
| 325 | - $object->update_meta_data( $meta['key'], $meta['value'], isset( $meta['id'] ) ? $meta['id'] : '' ); |
|
| 326 | - } |
|
| 327 | - } |
|
| 328 | - break; |
|
| 329 | - |
|
| 330 | - default: |
|
| 331 | - if ( is_callable( array( $object, "set_{$key}" ) ) ) { |
|
| 332 | - $object->{"set_{$key}"}( $value ); |
|
| 333 | - } |
|
| 334 | - break; |
|
| 335 | - } |
|
| 336 | - } |
|
| 337 | - |
|
| 338 | - } |
|
| 339 | - |
|
| 340 | - // Filters an object before it is inserted via the REST API.. |
|
| 341 | - return apply_filters( "getpaid_rest_pre_insert_{$this->rest_base}_object", $object, $request ); |
|
| 342 | - } |
|
| 343 | - |
|
| 344 | - /** |
|
| 345 | - * Retrieves data from a GetPaid class. |
|
| 346 | - * |
|
| 347 | - * @since 1.0.19 |
|
| 348 | - * @param GetPaid_Meta_Data[] $meta_data meta data objects. |
|
| 349 | - * @return array |
|
| 350 | - */ |
|
| 351 | - protected function prepare_object_meta_data( $meta_data ) { |
|
| 352 | - $meta = array(); |
|
| 353 | - |
|
| 354 | - foreach( $meta_data as $object ) { |
|
| 355 | - $meta[] = $object->get_data(); |
|
| 356 | - } |
|
| 357 | - |
|
| 358 | - return $meta; |
|
| 359 | - } |
|
| 360 | - |
|
| 361 | - /** |
|
| 362 | - * Retrieves invoice items. |
|
| 363 | - * |
|
| 364 | - * @since 1.0.19 |
|
| 365 | - * @param WPInv_Invoice $invoice Invoice items. |
|
| 366 | - * @param array $fields Fields to include. |
|
| 367 | - * @return array |
|
| 368 | - */ |
|
| 369 | - protected function prepare_invoice_items( $invoice ) { |
|
| 370 | - $items = array(); |
|
| 371 | - |
|
| 372 | - foreach( $invoice->get_items() as $item ) { |
|
| 373 | - |
|
| 374 | - $item_data = $item->prepare_data_for_saving(); |
|
| 375 | - |
|
| 376 | - if ( 'amount' == $invoice->get_template() ) { |
|
| 377 | - $item_data['quantity'] = 1; |
|
| 378 | - } |
|
| 379 | - |
|
| 380 | - $items[] = $item_data; |
|
| 381 | - } |
|
| 382 | - |
|
| 383 | - return $items; |
|
| 384 | - } |
|
| 385 | - |
|
| 386 | - /** |
|
| 387 | - * Retrieves data from a GetPaid class. |
|
| 388 | - * |
|
| 389 | - * @since 1.0.19 |
|
| 390 | - * @param GetPaid_Data $object Data object. |
|
| 391 | - * @param array $fields Fields to include. |
|
| 392 | - * @param string $context either view or edit. |
|
| 393 | - * @return array |
|
| 394 | - */ |
|
| 395 | - protected function prepare_object_data( $object, $fields, $context = 'view' ) { |
|
| 396 | - |
|
| 397 | - $data = array(); |
|
| 398 | - |
|
| 399 | - // Handle all writable props. |
|
| 400 | - foreach ( array_keys( $this->get_schema_properties() ) as $key ) { |
|
| 401 | - |
|
| 402 | - // Abort if it is not included. |
|
| 403 | - if ( ! empty( $fields ) && ! $this->is_field_included( $key, $fields ) ) { |
|
| 404 | - continue; |
|
| 405 | - } |
|
| 406 | - |
|
| 407 | - // Or this current object does not support the field. |
|
| 408 | - if ( ! $this->object_supports_field( $object, $key ) ) { |
|
| 409 | - continue; |
|
| 410 | - } |
|
| 411 | - |
|
| 412 | - // Handle meta data. |
|
| 413 | - if ( $key == 'meta_data' ) { |
|
| 414 | - $data['meta_data'] = $this->prepare_object_meta_data( $object->get_meta_data() ); |
|
| 415 | - continue; |
|
| 416 | - } |
|
| 417 | - |
|
| 418 | - // Handle items. |
|
| 419 | - if ( $key == 'items' && is_a( $object, 'WPInv_Invoice' ) ) { |
|
| 420 | - $data['items'] = $this->prepare_invoice_items( $object ); |
|
| 421 | - continue; |
|
| 422 | - } |
|
| 423 | - |
|
| 424 | - // Booleans. |
|
| 425 | - if ( is_callable( array( $object, $key ) ) ) { |
|
| 426 | - $data[ $key ] = $object->$key( $context ); |
|
| 427 | - continue; |
|
| 428 | - } |
|
| 429 | - |
|
| 430 | - // Get object value. |
|
| 431 | - if ( is_callable( array( $object, "get_{$key}" ) ) ) { |
|
| 432 | - $value = $object->{"get_{$key}"}( $context ); |
|
| 433 | - |
|
| 434 | - // If the value is an instance of GetPaid_Data... |
|
| 435 | - if ( is_a( $value, 'GetPaid_Data' ) ) { |
|
| 436 | - $value = $value->get_data( $context ); |
|
| 437 | - } |
|
| 438 | - |
|
| 439 | - // For objects, retrieves it's properties. |
|
| 440 | - $data[ $key ] = is_object( $value ) ? get_object_vars( $value ) : $value ; |
|
| 441 | - continue; |
|
| 442 | - } |
|
| 443 | - |
|
| 444 | - } |
|
| 445 | - |
|
| 446 | - return $data; |
|
| 447 | - } |
|
| 448 | - |
|
| 449 | - /** |
|
| 450 | - * Checks if a key should be included in a response. |
|
| 451 | - * |
|
| 452 | - * @since 1.0.19 |
|
| 453 | - * @param GetPaid_Data $object Data object. |
|
| 454 | - * @param string $field_key The key to check for. |
|
| 455 | - * @return bool |
|
| 456 | - */ |
|
| 457 | - public function object_supports_field( $object, $field_key ) { |
|
| 458 | - return apply_filters( 'getpaid_rest_object_supports_key', true, $object, $field_key ); |
|
| 459 | - } |
|
| 460 | - |
|
| 461 | - /** |
|
| 462 | - * Prepare a single object output for response. |
|
| 463 | - * |
|
| 464 | - * @since 1.0.19 |
|
| 465 | - * @param GetPaid_Data $object Data object. |
|
| 466 | - * @param WP_REST_Request $request Request object. |
|
| 467 | - * @return WP_REST_Response |
|
| 468 | - */ |
|
| 469 | - public function prepare_item_for_response( $object, $request ) { |
|
| 470 | - remove_filter( 'rest_post_dispatch', 'rest_filter_response_fields', 10 ); |
|
| 471 | - |
|
| 472 | - $this->data_object = $object; |
|
| 473 | - |
|
| 474 | - // Fetch the fields to include in this response. |
|
| 475 | - $fields = $this->get_fields_for_response( $request ); |
|
| 476 | - |
|
| 477 | - // Prepare object data. |
|
| 478 | - $context = ! empty( $request['context'] ) ? $request['context'] : 'view'; |
|
| 479 | - $data = $this->prepare_object_data( $object, $fields, $context ); |
|
| 480 | - $data = $this->add_additional_fields_to_object( $data, $request ); |
|
| 481 | - $data = $this->limit_object_to_requested_fields( $data, $fields ); |
|
| 482 | - $data = $this->filter_response_by_context( $data, $context ); |
|
| 483 | - |
|
| 484 | - // Prepare the response. |
|
| 485 | - $response = rest_ensure_response( $data ); |
|
| 486 | - $response->add_links( $this->prepare_links( $object, $request ) ); |
|
| 487 | - |
|
| 488 | - // Filter item response. |
|
| 489 | - return apply_filters( "getpaid_rest_prepare_{$this->rest_base}_object", $response, $object, $request ); |
|
| 490 | - } |
|
| 20 | + /** |
|
| 21 | + * Contains this controller's class name. |
|
| 22 | + * |
|
| 23 | + * @var string |
|
| 24 | + */ |
|
| 25 | + public $crud_class; |
|
| 26 | + |
|
| 27 | + /** |
|
| 28 | + * Contains the current CRUD object. |
|
| 29 | + * |
|
| 30 | + * @var GetPaid_Data |
|
| 31 | + */ |
|
| 32 | + protected $data_object; |
|
| 33 | + |
|
| 34 | + /** |
|
| 35 | + * Registers the routes for the objects of the controller. |
|
| 36 | + * |
|
| 37 | + * @since 1.0.19 |
|
| 38 | + * |
|
| 39 | + * @see register_rest_route() |
|
| 40 | + */ |
|
| 41 | + public function register_namespace_routes( $namespace ) { |
|
| 42 | + |
|
| 43 | + register_rest_route( |
|
| 44 | + $namespace, |
|
| 45 | + '/' . $this->rest_base, |
|
| 46 | + array( |
|
| 47 | + array( |
|
| 48 | + 'methods' => WP_REST_Server::READABLE, |
|
| 49 | + 'callback' => array( $this, 'get_items' ), |
|
| 50 | + 'permission_callback' => array( $this, 'get_items_permissions_check' ), |
|
| 51 | + 'args' => $this->get_collection_params(), |
|
| 52 | + ), |
|
| 53 | + array( |
|
| 54 | + 'methods' => WP_REST_Server::CREATABLE, |
|
| 55 | + 'callback' => array( $this, 'create_item' ), |
|
| 56 | + 'permission_callback' => array( $this, 'create_item_permissions_check' ), |
|
| 57 | + 'args' => $this->get_endpoint_args_for_item_schema( WP_REST_Server::CREATABLE ), |
|
| 58 | + ), |
|
| 59 | + 'schema' => array( $this, 'get_public_item_schema' ), |
|
| 60 | + ) |
|
| 61 | + ); |
|
| 62 | + |
|
| 63 | + $get_item_args = array( |
|
| 64 | + 'context' => $this->get_context_param( array( 'default' => 'view' ) ), |
|
| 65 | + ); |
|
| 66 | + |
|
| 67 | + register_rest_route( |
|
| 68 | + $namespace, |
|
| 69 | + '/' . $this->rest_base . '/(?P<id>[\d]+)', |
|
| 70 | + array( |
|
| 71 | + 'args' => array( |
|
| 72 | + 'id' => array( |
|
| 73 | + 'description' => __( 'Unique identifier for the object.', 'invoicing' ), |
|
| 74 | + 'type' => 'integer', |
|
| 75 | + ), |
|
| 76 | + ), |
|
| 77 | + array( |
|
| 78 | + 'methods' => WP_REST_Server::READABLE, |
|
| 79 | + 'callback' => array( $this, 'get_item' ), |
|
| 80 | + 'permission_callback' => array( $this, 'get_item_permissions_check' ), |
|
| 81 | + 'args' => $get_item_args, |
|
| 82 | + ), |
|
| 83 | + array( |
|
| 84 | + 'methods' => WP_REST_Server::EDITABLE, |
|
| 85 | + 'callback' => array( $this, 'update_item' ), |
|
| 86 | + 'permission_callback' => array( $this, 'update_item_permissions_check' ), |
|
| 87 | + 'args' => $this->get_endpoint_args_for_item_schema( WP_REST_Server::EDITABLE ), |
|
| 88 | + ), |
|
| 89 | + array( |
|
| 90 | + 'methods' => WP_REST_Server::DELETABLE, |
|
| 91 | + 'callback' => array( $this, 'delete_item' ), |
|
| 92 | + 'permission_callback' => array( $this, 'delete_item_permissions_check' ), |
|
| 93 | + 'args' => array( |
|
| 94 | + 'force' => array( |
|
| 95 | + 'type' => 'boolean', |
|
| 96 | + 'default' => false, |
|
| 97 | + 'description' => __( 'Whether to bypass Trash and force deletion.', 'invoicing' ), |
|
| 98 | + ), |
|
| 99 | + ), |
|
| 100 | + ), |
|
| 101 | + 'schema' => array( $this, 'get_public_item_schema' ), |
|
| 102 | + ) |
|
| 103 | + ); |
|
| 104 | + |
|
| 105 | + } |
|
| 106 | + |
|
| 107 | + /** |
|
| 108 | + * Saves a single object. |
|
| 109 | + * |
|
| 110 | + * @param GetPaid_Data $object Object to save. |
|
| 111 | + * @return WP_Error|GetPaid_Data |
|
| 112 | + */ |
|
| 113 | + protected function save_object( $object ) { |
|
| 114 | + $object->save(); |
|
| 115 | + |
|
| 116 | + if ( ! empty( $object->last_error ) ) { |
|
| 117 | + return new WP_Error( 'rest_cannot_save', $object->last_error, array( 'status' => 400 ) ); |
|
| 118 | + } |
|
| 119 | + |
|
| 120 | + return new $this->crud_class( $object->get_id() ); |
|
| 121 | + } |
|
| 122 | + |
|
| 123 | + /** |
|
| 124 | + * Retrieves a single object. |
|
| 125 | + * |
|
| 126 | + * @since 1.0.13 |
|
| 127 | + * |
|
| 128 | + * @param int|WP_Post $object_id Supplied ID. |
|
| 129 | + * @return GetPaid_Data|WP_Error GetPaid_Data object if ID is valid, WP_Error otherwise. |
|
| 130 | + */ |
|
| 131 | + protected function get_object( $object_id ) { |
|
| 132 | + |
|
| 133 | + // Do we have an object? |
|
| 134 | + if ( empty( $this->crud_class ) || ! class_exists( $this->crud_class ) ) { |
|
| 135 | + return new WP_Error( 'no_crud_class', __( 'You need to specify a CRUD class for this controller', 'invoicing' ) ); |
|
| 136 | + } |
|
| 137 | + |
|
| 138 | + // Fetch the object. |
|
| 139 | + $object = new $this->crud_class( $object_id ); |
|
| 140 | + if ( ! empty( $object->last_error ) ) { |
|
| 141 | + return new WP_Error( 'rest_object_invalid_id', $object->last_error, array( 'status' => 404 ) ); |
|
| 142 | + } |
|
| 143 | + |
|
| 144 | + $this->data_object = $object; |
|
| 145 | + return $object->get_id() ? $object : new WP_Error( 'rest_object_invalid_id', __( 'Invalid ID.', 'invoicing' ), array( 'status' => 404 ) ); |
|
| 146 | + |
|
| 147 | + } |
|
| 148 | + |
|
| 149 | + /** |
|
| 150 | + * Get a single object. |
|
| 151 | + * |
|
| 152 | + * @param WP_REST_Request $request Full details about the request. |
|
| 153 | + * @return WP_Error|WP_REST_Response |
|
| 154 | + */ |
|
| 155 | + public function get_item( $request ) { |
|
| 156 | + |
|
| 157 | + // Fetch the item. |
|
| 158 | + $object = $this->get_object( $request['id'] ); |
|
| 159 | + |
|
| 160 | + if ( is_wp_error( $object ) ) { |
|
| 161 | + return $object; |
|
| 162 | + } |
|
| 163 | + |
|
| 164 | + // Generate a response. |
|
| 165 | + return rest_ensure_response( $this->prepare_item_for_response( $object, $request ) ); |
|
| 166 | + |
|
| 167 | + } |
|
| 168 | + |
|
| 169 | + /** |
|
| 170 | + * Create a single object. |
|
| 171 | + * |
|
| 172 | + * @param WP_REST_Request $request Full details about the request. |
|
| 173 | + * @return WP_Error|WP_REST_Response |
|
| 174 | + */ |
|
| 175 | + public function create_item( $request ) { |
|
| 176 | + |
|
| 177 | + // Can not create an existing item. |
|
| 178 | + if ( ! empty( $request['id'] ) ) { |
|
| 179 | + /* translators: %s: post type */ |
|
| 180 | + return new WP_Error( "getpaid_rest_{$this->rest_base}_exists", __( 'Cannot create existing resource.', 'invoicing' ), array( 'status' => 400 ) ); |
|
| 181 | + } |
|
| 182 | + |
|
| 183 | + // Generate a GetPaid_Data object from the request. |
|
| 184 | + $object = $this->prepare_item_for_database( $request ); |
|
| 185 | + if ( is_wp_error( $object ) ) { |
|
| 186 | + return $object; |
|
| 187 | + } |
|
| 188 | + |
|
| 189 | + // Save the object. |
|
| 190 | + $object = $this->save_object( $object ); |
|
| 191 | + if ( is_wp_error( $object ) ) { |
|
| 192 | + return $object; |
|
| 193 | + } |
|
| 194 | + |
|
| 195 | + // Save special fields. |
|
| 196 | + $save_special = $this->update_additional_fields_for_object( $object, $request ); |
|
| 197 | + if ( is_wp_error( $save_special ) ) { |
|
| 198 | + $object->delete( true ); |
|
| 199 | + return $save_special; |
|
| 200 | + } |
|
| 201 | + |
|
| 202 | + $request->set_param( 'context', 'edit' ); |
|
| 203 | + $response = $this->prepare_item_for_response( $object, $request ); |
|
| 204 | + $response = rest_ensure_response( $response ); |
|
| 205 | + $response->set_status( 201 ); |
|
| 206 | + $response->header( 'Location', rest_url( sprintf( '/%s/%s/%d', $this->namespace, $this->rest_base, $object->get_id() ) ) ); |
|
| 207 | + |
|
| 208 | + return $response; |
|
| 209 | + } |
|
| 210 | + |
|
| 211 | + /** |
|
| 212 | + * Update a single object. |
|
| 213 | + * |
|
| 214 | + * @param WP_REST_Request $request Full details about the request. |
|
| 215 | + * @return WP_Error|WP_REST_Response |
|
| 216 | + */ |
|
| 217 | + public function update_item( $request ) { |
|
| 218 | + |
|
| 219 | + // Fetch the item. |
|
| 220 | + $object = $this->get_object( $request['id'] ); |
|
| 221 | + if ( is_wp_error( $object ) ) { |
|
| 222 | + return $object; |
|
| 223 | + } |
|
| 224 | + |
|
| 225 | + // Prepare the item for saving. |
|
| 226 | + $object = $this->prepare_item_for_database( $request ); |
|
| 227 | + if ( is_wp_error( $object ) ) { |
|
| 228 | + return $object; |
|
| 229 | + } |
|
| 230 | + |
|
| 231 | + // Save the item. |
|
| 232 | + $object = $this->save_object( $object ); |
|
| 233 | + if ( is_wp_error( $object ) ) { |
|
| 234 | + return $object; |
|
| 235 | + } |
|
| 236 | + |
|
| 237 | + // Save special fields (those added via hooks). |
|
| 238 | + $save_special = $this->update_additional_fields_for_object( $object, $request ); |
|
| 239 | + if ( is_wp_error( $save_special ) ) { |
|
| 240 | + return $save_special; |
|
| 241 | + } |
|
| 242 | + |
|
| 243 | + $request->set_param( 'context', 'edit' ); |
|
| 244 | + $response = $this->prepare_item_for_response( $object, $request ); |
|
| 245 | + return rest_ensure_response( $response ); |
|
| 246 | + } |
|
| 247 | + |
|
| 248 | + /** |
|
| 249 | + * Prepare links for the request. |
|
| 250 | + * |
|
| 251 | + * @param GetPaid_Data $object GetPaid_Data object. |
|
| 252 | + * @return array Links for the given object. |
|
| 253 | + */ |
|
| 254 | + protected function prepare_links( $object ) { |
|
| 255 | + |
|
| 256 | + $links = array( |
|
| 257 | + 'self' => array( |
|
| 258 | + 'href' => rest_url( sprintf( '/%s/%s/%d', $this->namespace, $this->rest_base, $object->get_id() ) ), |
|
| 259 | + ), |
|
| 260 | + 'collection' => array( |
|
| 261 | + 'href' => rest_url( sprintf( '/%s/%s', $this->namespace, $this->rest_base ) ), |
|
| 262 | + ), |
|
| 263 | + ); |
|
| 264 | + |
|
| 265 | + return $links; |
|
| 266 | + } |
|
| 267 | + |
|
| 268 | + /** |
|
| 269 | + * Get the query params for collections of attachments. |
|
| 270 | + * |
|
| 271 | + * @return array |
|
| 272 | + */ |
|
| 273 | + public function get_collection_params() { |
|
| 274 | + $params = parent::get_collection_params(); |
|
| 275 | + $params['context']['default'] = 'view'; |
|
| 276 | + return $params; |
|
| 277 | + } |
|
| 278 | + |
|
| 279 | + /** |
|
| 280 | + * Only return writable props from schema. |
|
| 281 | + * |
|
| 282 | + * @param array $schema Schema. |
|
| 283 | + * @return bool |
|
| 284 | + */ |
|
| 285 | + public function filter_writable_props( $schema ) { |
|
| 286 | + return empty( $schema['readonly'] ); |
|
| 287 | + } |
|
| 288 | + |
|
| 289 | + /** |
|
| 290 | + * Prepare a single object for create or update. |
|
| 291 | + * |
|
| 292 | + * @since 1.0.19 |
|
| 293 | + * @param WP_REST_Request $request Request object. |
|
| 294 | + * @return GetPaid_Data|WP_Error Data object or WP_Error. |
|
| 295 | + */ |
|
| 296 | + protected function prepare_item_for_database( $request ) { |
|
| 297 | + |
|
| 298 | + // Do we have an object? |
|
| 299 | + if ( empty( $this->crud_class ) || ! class_exists( $this->crud_class ) ) { |
|
| 300 | + return new WP_Error( 'no_crud_class', __( 'You need to specify a CRUD class for this controller', 'invoicing' ) ); |
|
| 301 | + } |
|
| 302 | + |
|
| 303 | + // Prepare the object. |
|
| 304 | + $id = isset( $request['id'] ) ? absint( $request['id'] ) : 0; |
|
| 305 | + $object = new $this->crud_class( $id ); |
|
| 306 | + |
|
| 307 | + // Abort if an error exists. |
|
| 308 | + if ( ! empty( $object->last_error ) ) { |
|
| 309 | + return new WP_Error( 'invalid_item', $object->last_error ); |
|
| 310 | + } |
|
| 311 | + |
|
| 312 | + $schema = $this->get_item_schema(); |
|
| 313 | + $data_keys = array_keys( array_filter( $schema['properties'], array( $this, 'filter_writable_props' ) ) ); |
|
| 314 | + |
|
| 315 | + // Handle all writable props. |
|
| 316 | + foreach ( $data_keys as $key ) { |
|
| 317 | + $value = $request[ $key ]; |
|
| 318 | + |
|
| 319 | + if ( ! is_null( $value ) ) { |
|
| 320 | + switch ( $key ) { |
|
| 321 | + |
|
| 322 | + case 'meta_data': |
|
| 323 | + if ( is_array( $value ) ) { |
|
| 324 | + foreach ( $value as $meta ) { |
|
| 325 | + $object->update_meta_data( $meta['key'], $meta['value'], isset( $meta['id'] ) ? $meta['id'] : '' ); |
|
| 326 | + } |
|
| 327 | + } |
|
| 328 | + break; |
|
| 329 | + |
|
| 330 | + default: |
|
| 331 | + if ( is_callable( array( $object, "set_{$key}" ) ) ) { |
|
| 332 | + $object->{"set_{$key}"}( $value ); |
|
| 333 | + } |
|
| 334 | + break; |
|
| 335 | + } |
|
| 336 | + } |
|
| 337 | + |
|
| 338 | + } |
|
| 339 | + |
|
| 340 | + // Filters an object before it is inserted via the REST API.. |
|
| 341 | + return apply_filters( "getpaid_rest_pre_insert_{$this->rest_base}_object", $object, $request ); |
|
| 342 | + } |
|
| 343 | + |
|
| 344 | + /** |
|
| 345 | + * Retrieves data from a GetPaid class. |
|
| 346 | + * |
|
| 347 | + * @since 1.0.19 |
|
| 348 | + * @param GetPaid_Meta_Data[] $meta_data meta data objects. |
|
| 349 | + * @return array |
|
| 350 | + */ |
|
| 351 | + protected function prepare_object_meta_data( $meta_data ) { |
|
| 352 | + $meta = array(); |
|
| 353 | + |
|
| 354 | + foreach( $meta_data as $object ) { |
|
| 355 | + $meta[] = $object->get_data(); |
|
| 356 | + } |
|
| 357 | + |
|
| 358 | + return $meta; |
|
| 359 | + } |
|
| 360 | + |
|
| 361 | + /** |
|
| 362 | + * Retrieves invoice items. |
|
| 363 | + * |
|
| 364 | + * @since 1.0.19 |
|
| 365 | + * @param WPInv_Invoice $invoice Invoice items. |
|
| 366 | + * @param array $fields Fields to include. |
|
| 367 | + * @return array |
|
| 368 | + */ |
|
| 369 | + protected function prepare_invoice_items( $invoice ) { |
|
| 370 | + $items = array(); |
|
| 371 | + |
|
| 372 | + foreach( $invoice->get_items() as $item ) { |
|
| 373 | + |
|
| 374 | + $item_data = $item->prepare_data_for_saving(); |
|
| 375 | + |
|
| 376 | + if ( 'amount' == $invoice->get_template() ) { |
|
| 377 | + $item_data['quantity'] = 1; |
|
| 378 | + } |
|
| 379 | + |
|
| 380 | + $items[] = $item_data; |
|
| 381 | + } |
|
| 382 | + |
|
| 383 | + return $items; |
|
| 384 | + } |
|
| 385 | + |
|
| 386 | + /** |
|
| 387 | + * Retrieves data from a GetPaid class. |
|
| 388 | + * |
|
| 389 | + * @since 1.0.19 |
|
| 390 | + * @param GetPaid_Data $object Data object. |
|
| 391 | + * @param array $fields Fields to include. |
|
| 392 | + * @param string $context either view or edit. |
|
| 393 | + * @return array |
|
| 394 | + */ |
|
| 395 | + protected function prepare_object_data( $object, $fields, $context = 'view' ) { |
|
| 396 | + |
|
| 397 | + $data = array(); |
|
| 398 | + |
|
| 399 | + // Handle all writable props. |
|
| 400 | + foreach ( array_keys( $this->get_schema_properties() ) as $key ) { |
|
| 401 | + |
|
| 402 | + // Abort if it is not included. |
|
| 403 | + if ( ! empty( $fields ) && ! $this->is_field_included( $key, $fields ) ) { |
|
| 404 | + continue; |
|
| 405 | + } |
|
| 406 | + |
|
| 407 | + // Or this current object does not support the field. |
|
| 408 | + if ( ! $this->object_supports_field( $object, $key ) ) { |
|
| 409 | + continue; |
|
| 410 | + } |
|
| 411 | + |
|
| 412 | + // Handle meta data. |
|
| 413 | + if ( $key == 'meta_data' ) { |
|
| 414 | + $data['meta_data'] = $this->prepare_object_meta_data( $object->get_meta_data() ); |
|
| 415 | + continue; |
|
| 416 | + } |
|
| 417 | + |
|
| 418 | + // Handle items. |
|
| 419 | + if ( $key == 'items' && is_a( $object, 'WPInv_Invoice' ) ) { |
|
| 420 | + $data['items'] = $this->prepare_invoice_items( $object ); |
|
| 421 | + continue; |
|
| 422 | + } |
|
| 423 | + |
|
| 424 | + // Booleans. |
|
| 425 | + if ( is_callable( array( $object, $key ) ) ) { |
|
| 426 | + $data[ $key ] = $object->$key( $context ); |
|
| 427 | + continue; |
|
| 428 | + } |
|
| 429 | + |
|
| 430 | + // Get object value. |
|
| 431 | + if ( is_callable( array( $object, "get_{$key}" ) ) ) { |
|
| 432 | + $value = $object->{"get_{$key}"}( $context ); |
|
| 433 | + |
|
| 434 | + // If the value is an instance of GetPaid_Data... |
|
| 435 | + if ( is_a( $value, 'GetPaid_Data' ) ) { |
|
| 436 | + $value = $value->get_data( $context ); |
|
| 437 | + } |
|
| 438 | + |
|
| 439 | + // For objects, retrieves it's properties. |
|
| 440 | + $data[ $key ] = is_object( $value ) ? get_object_vars( $value ) : $value ; |
|
| 441 | + continue; |
|
| 442 | + } |
|
| 443 | + |
|
| 444 | + } |
|
| 445 | + |
|
| 446 | + return $data; |
|
| 447 | + } |
|
| 448 | + |
|
| 449 | + /** |
|
| 450 | + * Checks if a key should be included in a response. |
|
| 451 | + * |
|
| 452 | + * @since 1.0.19 |
|
| 453 | + * @param GetPaid_Data $object Data object. |
|
| 454 | + * @param string $field_key The key to check for. |
|
| 455 | + * @return bool |
|
| 456 | + */ |
|
| 457 | + public function object_supports_field( $object, $field_key ) { |
|
| 458 | + return apply_filters( 'getpaid_rest_object_supports_key', true, $object, $field_key ); |
|
| 459 | + } |
|
| 460 | + |
|
| 461 | + /** |
|
| 462 | + * Prepare a single object output for response. |
|
| 463 | + * |
|
| 464 | + * @since 1.0.19 |
|
| 465 | + * @param GetPaid_Data $object Data object. |
|
| 466 | + * @param WP_REST_Request $request Request object. |
|
| 467 | + * @return WP_REST_Response |
|
| 468 | + */ |
|
| 469 | + public function prepare_item_for_response( $object, $request ) { |
|
| 470 | + remove_filter( 'rest_post_dispatch', 'rest_filter_response_fields', 10 ); |
|
| 471 | + |
|
| 472 | + $this->data_object = $object; |
|
| 473 | + |
|
| 474 | + // Fetch the fields to include in this response. |
|
| 475 | + $fields = $this->get_fields_for_response( $request ); |
|
| 476 | + |
|
| 477 | + // Prepare object data. |
|
| 478 | + $context = ! empty( $request['context'] ) ? $request['context'] : 'view'; |
|
| 479 | + $data = $this->prepare_object_data( $object, $fields, $context ); |
|
| 480 | + $data = $this->add_additional_fields_to_object( $data, $request ); |
|
| 481 | + $data = $this->limit_object_to_requested_fields( $data, $fields ); |
|
| 482 | + $data = $this->filter_response_by_context( $data, $context ); |
|
| 483 | + |
|
| 484 | + // Prepare the response. |
|
| 485 | + $response = rest_ensure_response( $data ); |
|
| 486 | + $response->add_links( $this->prepare_links( $object, $request ) ); |
|
| 487 | + |
|
| 488 | + // Filter item response. |
|
| 489 | + return apply_filters( "getpaid_rest_prepare_{$this->rest_base}_object", $response, $object, $request ); |
|
| 490 | + } |
|
| 491 | 491 | |
| 492 | 492 | } |
@@ -16,495 +16,495 @@ |
||
| 16 | 16 | */ |
| 17 | 17 | class GetPaid_Subscriptions_Query { |
| 18 | 18 | |
| 19 | - /** |
|
| 20 | - * Query vars, after parsing |
|
| 21 | - * |
|
| 22 | - * @since 1.0.19 |
|
| 23 | - * @var array |
|
| 24 | - */ |
|
| 25 | - public $query_vars = array(); |
|
| 26 | - |
|
| 27 | - /** |
|
| 28 | - * List of found subscriptions. |
|
| 29 | - * |
|
| 30 | - * @since 1.0.19 |
|
| 31 | - * @var array |
|
| 32 | - */ |
|
| 33 | - private $results; |
|
| 34 | - |
|
| 35 | - /** |
|
| 36 | - * Total number of found subscriptions for the current query |
|
| 37 | - * |
|
| 38 | - * @since 1.0.19 |
|
| 39 | - * @var int |
|
| 40 | - */ |
|
| 41 | - private $total_subscriptions = 0; |
|
| 42 | - |
|
| 43 | - /** |
|
| 44 | - * The SQL query used to fetch matching subscriptions. |
|
| 45 | - * |
|
| 46 | - * @since 1.0.19 |
|
| 47 | - * @var string |
|
| 48 | - */ |
|
| 49 | - public $request; |
|
| 50 | - |
|
| 51 | - // SQL clauses |
|
| 52 | - |
|
| 53 | - /** |
|
| 54 | - * Contains the 'FIELDS' sql clause |
|
| 55 | - * |
|
| 56 | - * @since 1.0.19 |
|
| 57 | - * @var string |
|
| 58 | - */ |
|
| 59 | - public $query_fields; |
|
| 60 | - |
|
| 61 | - /** |
|
| 62 | - * Contains the 'FROM' sql clause |
|
| 63 | - * |
|
| 64 | - * @since 1.0.19 |
|
| 65 | - * @var string |
|
| 66 | - */ |
|
| 67 | - public $query_from; |
|
| 68 | - |
|
| 69 | - /** |
|
| 70 | - * Contains the 'WHERE' sql clause |
|
| 71 | - * |
|
| 72 | - * @since 1.0.19 |
|
| 73 | - * @var string |
|
| 74 | - */ |
|
| 75 | - public $query_where; |
|
| 76 | - |
|
| 77 | - /** |
|
| 78 | - * Contains the 'ORDER BY' sql clause |
|
| 79 | - * |
|
| 80 | - * @since 1.0.19 |
|
| 81 | - * @var string |
|
| 82 | - */ |
|
| 83 | - public $query_orderby; |
|
| 84 | - |
|
| 85 | - /** |
|
| 86 | - * Contains the 'LIMIT' sql clause |
|
| 87 | - * |
|
| 88 | - * @since 1.0.19 |
|
| 89 | - * @var string |
|
| 90 | - */ |
|
| 91 | - public $query_limit; |
|
| 92 | - |
|
| 93 | - /** |
|
| 94 | - * Class constructor. |
|
| 95 | - * |
|
| 96 | - * @since 1.0.19 |
|
| 97 | - * |
|
| 98 | - * @param null|string|array $query Optional. The query variables. |
|
| 99 | - */ |
|
| 100 | - public function __construct( $query = null ) { |
|
| 101 | - if ( ! is_null( $query ) ) { |
|
| 102 | - $this->prepare_query( $query ); |
|
| 103 | - $this->query(); |
|
| 104 | - } |
|
| 105 | - } |
|
| 106 | - |
|
| 107 | - /** |
|
| 108 | - * Fills in missing query variables with default values. |
|
| 109 | - * |
|
| 110 | - * @since 1.0.19 |
|
| 111 | - * |
|
| 112 | - * @param string|array $args Query vars, as passed to `GetPaid_Subscriptions_Query`. |
|
| 113 | - * @return array Complete query variables with undefined ones filled in with defaults. |
|
| 114 | - */ |
|
| 115 | - public static function fill_query_vars( $args ) { |
|
| 116 | - $defaults = array( |
|
| 117 | - 'status' => 'all', |
|
| 118 | - 'customer_in' => array(), |
|
| 119 | - 'customer_not_in' => array(), |
|
| 120 | - 'product_in' => array(), |
|
| 121 | - 'product_not_in' => array(), |
|
| 122 | - 'include' => array(), |
|
| 123 | - 'exclude' => array(), |
|
| 124 | - 'orderby' => 'id', |
|
| 125 | - 'order' => 'DESC', |
|
| 126 | - 'offset' => '', |
|
| 127 | - 'number' => 10, |
|
| 128 | - 'paged' => 1, |
|
| 129 | - 'count_total' => true, |
|
| 130 | - 'fields' => 'all', |
|
| 131 | - ); |
|
| 132 | - |
|
| 133 | - return wp_parse_args( $args, $defaults ); |
|
| 134 | - } |
|
| 135 | - |
|
| 136 | - /** |
|
| 137 | - * Prepare the query variables. |
|
| 138 | - * |
|
| 139 | - * @since 1.0.19 |
|
| 140 | - * |
|
| 141 | - * @global wpdb $wpdb WordPress database abstraction object. |
|
| 142 | - * |
|
| 143 | - * @param string|array $query { |
|
| 144 | - * Optional. Array or string of Query parameters. |
|
| 145 | - * |
|
| 146 | - * @type string|array $status The subscription status to filter by. Can either be a single status or an array of statuses. |
|
| 147 | - * Default is all. |
|
| 148 | - * @type int[] $customer_in An array of customer ids to filter by. |
|
| 149 | - * @type int[] $customer_not_in An array of customer ids whose subscriptions should be excluded. |
|
| 150 | - * @type int[] $invoice_in An array of invoice ids to filter by. |
|
| 151 | - * @type int[] $invoice_not_in An array of invoice ids whose subscriptions should be excluded. |
|
| 152 | - * @type int[] $product_in An array of product ids to filter by. |
|
| 153 | - * @type int[] $product_not_in An array of product ids whose subscriptions should be excluded. |
|
| 154 | - * @type array $date_created_query A WP_Date_Query compatible array use to filter subscriptions by their date of creation. |
|
| 155 | - * @type array $date_expires_query A WP_Date_Query compatible array use to filter subscriptions by their expiration date. |
|
| 156 | - * @type array $include An array of subscription IDs to include. Default empty array. |
|
| 157 | - * @type array $exclude An array of subscription IDs to exclude. Default empty array. |
|
| 158 | - * @type string|array $orderby Field(s) to sort the retrieved subscription by. May be a single value, |
|
| 159 | - * an array of values, or a multi-dimensional array with fields as |
|
| 160 | - * keys and orders ('ASC' or 'DESC') as values. Accepted values are |
|
| 161 | - * 'id', 'customer_id', 'frequency', 'period', 'initial_amount, |
|
| 162 | - * 'recurring_amount', 'bill_times', 'parent_payment_id', 'created', 'expiration' |
|
| 163 | - * 'transaction_id', 'product_id', 'trial_period', 'include', 'status', 'profile_id'. Default array( 'id' ). |
|
| 164 | - * @type string $order Designates ascending or descending order of subscriptions. Order values |
|
| 165 | - * passed as part of an `$orderby` array take precedence over this |
|
| 166 | - * parameter. Accepts 'ASC', 'DESC'. Default 'DESC'. |
|
| 167 | - * @type int $offset Number of subscriptions to offset in retrieved results. Can be used in |
|
| 168 | - * conjunction with pagination. Default 0. |
|
| 169 | - * @type int $number Number of subscriptions to limit the query for. Can be used in |
|
| 170 | - * conjunction with pagination. Value -1 (all) is supported, but |
|
| 171 | - * should be used with caution on larger sites. |
|
| 172 | - * Default 10. |
|
| 173 | - * @type int $paged When used with number, defines the page of results to return. |
|
| 174 | - * Default 1. |
|
| 175 | - * @type bool $count_total Whether to count the total number of subscriptions found. If pagination |
|
| 176 | - * is not needed, setting this to false can improve performance. |
|
| 177 | - * Default true. |
|
| 178 | - * @type string|array $fields Which fields to return. Single or all fields (string), or array |
|
| 179 | - * of fields. Accepts 'id', 'customer_id', 'frequency', 'period', 'initial_amount, |
|
| 180 | - * 'recurring_amount', 'bill_times', 'parent_payment_id', 'created', 'expiration' |
|
| 181 | - * 'transaction_id', 'product_id', 'trial_period', 'status', 'profile_id'. |
|
| 182 | - * Use 'all' for all fields. Default 'all'. |
|
| 183 | - * } |
|
| 184 | - */ |
|
| 185 | - public function prepare_query( $query = array() ) { |
|
| 186 | - global $wpdb; |
|
| 187 | - |
|
| 188 | - if ( empty( $this->query_vars ) || ! empty( $query ) ) { |
|
| 189 | - $this->query_limit = null; |
|
| 190 | - $this->query_vars = $this->fill_query_vars( $query ); |
|
| 191 | - } |
|
| 192 | - |
|
| 193 | - if ( ! empty( $this->query_vars['fields'] ) && 'all' !== $this->query_vars['fields'] ) { |
|
| 194 | - $this->query_vars['fields'] = wpinv_parse_list( $this->query_vars['fields'] ); |
|
| 195 | - } |
|
| 196 | - |
|
| 197 | - do_action( 'getpaid_pre_get_subscriptions', array( &$this ) ); |
|
| 198 | - |
|
| 199 | - // Ensure that query vars are filled after 'getpaid_pre_get_subscriptions'. |
|
| 200 | - $qv =& $this->query_vars; |
|
| 201 | - $qv = $this->fill_query_vars( $qv ); |
|
| 202 | - $table = $wpdb->prefix . 'wpinv_subscriptions'; |
|
| 203 | - $this->query_from = "FROM $table"; |
|
| 204 | - |
|
| 205 | - // Prepare query fields. |
|
| 206 | - $this->prepare_query_fields( $qv, $table ); |
|
| 207 | - |
|
| 208 | - // Prepare query where. |
|
| 209 | - $this->prepare_query_where( $qv, $table ); |
|
| 210 | - |
|
| 211 | - // Prepare query order. |
|
| 212 | - $this->prepare_query_order( $qv, $table ); |
|
| 213 | - |
|
| 214 | - // limit |
|
| 215 | - if ( isset( $qv['number'] ) && $qv['number'] > 0 ) { |
|
| 216 | - if ( $qv['offset'] ) { |
|
| 217 | - $this->query_limit = $wpdb->prepare( 'LIMIT %d, %d', $qv['offset'], $qv['number'] ); |
|
| 218 | - } else { |
|
| 219 | - $this->query_limit = $wpdb->prepare( 'LIMIT %d, %d', $qv['number'] * ( $qv['paged'] - 1 ), $qv['number'] ); |
|
| 220 | - } |
|
| 221 | - } |
|
| 222 | - |
|
| 223 | - do_action_ref_array( 'getpaid_after_subscriptions_query', array( &$this ) ); |
|
| 224 | - } |
|
| 225 | - |
|
| 226 | - /** |
|
| 227 | - * Prepares the query fields. |
|
| 228 | - * |
|
| 229 | - * @since 1.0.19 |
|
| 230 | - * |
|
| 231 | - * @param array $qv Query vars. |
|
| 232 | - * @param string $table Table name. |
|
| 233 | - */ |
|
| 234 | - protected function prepare_query_fields( &$qv, $table ) { |
|
| 235 | - |
|
| 236 | - if ( is_array( $qv['fields'] ) ) { |
|
| 237 | - $qv['fields'] = array_unique( $qv['fields'] ); |
|
| 238 | - |
|
| 239 | - $query_fields = array(); |
|
| 240 | - foreach ( $qv['fields'] as $field ) { |
|
| 241 | - $field = sanitize_key( $field ); |
|
| 242 | - $query_fields[] = "$table.`$field`"; |
|
| 243 | - } |
|
| 244 | - $this->query_fields = implode( ',', $query_fields ); |
|
| 245 | - } else { |
|
| 246 | - $this->query_fields = "$table.*"; |
|
| 247 | - } |
|
| 248 | - |
|
| 249 | - if ( isset( $qv['count_total'] ) && $qv['count_total'] ) { |
|
| 250 | - $this->query_fields = 'SQL_CALC_FOUND_ROWS ' . $this->query_fields; |
|
| 251 | - } |
|
| 252 | - |
|
| 253 | - } |
|
| 254 | - |
|
| 255 | - /** |
|
| 256 | - * Prepares the query where. |
|
| 257 | - * |
|
| 258 | - * @since 1.0.19 |
|
| 259 | - * |
|
| 260 | - * @param array $qv Query vars. |
|
| 261 | - * @param string $table Table name. |
|
| 262 | - */ |
|
| 263 | - protected function prepare_query_where( &$qv, $table ) { |
|
| 264 | - global $wpdb; |
|
| 265 | - $this->query_where = 'WHERE 1=1'; |
|
| 266 | - |
|
| 267 | - // Status. |
|
| 268 | - if ( 'all' !== $qv['status'] ) { |
|
| 269 | - $statuses = wpinv_clean( wpinv_parse_list( $qv['status'] ) ); |
|
| 270 | - $prepared_statuses = join( ',', array_fill( 0, count( $statuses ), '%s' ) ); |
|
| 271 | - $this->query_where .= $wpdb->prepare( " AND $table.`status` IN ( $prepared_statuses )", $statuses ); |
|
| 272 | - } |
|
| 273 | - |
|
| 274 | - if ( ! empty( $qv['customer_in'] ) ) { |
|
| 275 | - $customer_in = implode( ',', wp_parse_id_list( $qv['customer_in'] ) ); |
|
| 276 | - $this->query_where .= " AND $table.`customer_id` IN ($customer_in)"; |
|
| 277 | - } elseif ( ! empty( $qv['customer_not_in'] ) ) { |
|
| 278 | - $customer_not_in = implode( ',', wp_parse_id_list( $qv['customer_not_in'] ) ); |
|
| 279 | - $this->query_where .= " AND $table.`customer_id` NOT IN ($customer_not_in)"; |
|
| 280 | - } |
|
| 281 | - |
|
| 282 | - if ( ! empty( $qv['product_in'] ) ) { |
|
| 283 | - $product_in = implode( ',', wp_parse_id_list( $qv['product_in'] ) ); |
|
| 284 | - $this->query_where .= " AND $table.`product_id` IN ($product_in)"; |
|
| 285 | - } elseif ( ! empty( $qv['product_not_in'] ) ) { |
|
| 286 | - $product_not_in = implode( ',', wp_parse_id_list( $qv['product_not_in'] ) ); |
|
| 287 | - $this->query_where .= " AND $table.`product_id` NOT IN ($product_not_in)"; |
|
| 288 | - } |
|
| 289 | - |
|
| 290 | - if ( ! empty( $qv['invoice_in'] ) ) { |
|
| 291 | - $invoice_in = implode( ',', wp_parse_id_list( $qv['invoice_in'] ) ); |
|
| 292 | - $this->query_where .= " AND $table.`parent_payment_id` IN ($invoice_in)"; |
|
| 293 | - } elseif ( ! empty( $qv['invoice_not_in'] ) ) { |
|
| 294 | - $invoice_not_in = implode( ',', wp_parse_id_list( $qv['invoice_not_in'] ) ); |
|
| 295 | - $this->query_where .= " AND $table.`parent_payment_id` NOT IN ($invoice_not_in)"; |
|
| 296 | - } |
|
| 297 | - |
|
| 298 | - if ( ! empty( $qv['include'] ) ) { |
|
| 299 | - $include = implode( ',', wp_parse_id_list( $qv['include'] ) ); |
|
| 300 | - $this->query_where .= " AND $table.`id` IN ($include)"; |
|
| 301 | - } elseif ( ! empty( $qv['exclude'] ) ) { |
|
| 302 | - $exclude = implode( ',', wp_parse_id_list( $qv['exclude'] ) ); |
|
| 303 | - $this->query_where .= " AND $table.`id` NOT IN ($exclude)"; |
|
| 304 | - } |
|
| 305 | - |
|
| 306 | - // Date queries are allowed for the subscription creation date. |
|
| 307 | - if ( ! empty( $qv['date_created_query'] ) && is_array( $qv['date_created_query'] ) ) { |
|
| 308 | - $date_created_query = new WP_Date_Query( $qv['date_created_query'], "$table.created" ); |
|
| 309 | - $this->query_where .= $date_created_query->get_sql(); |
|
| 310 | - } |
|
| 311 | - |
|
| 312 | - // Date queries are also allowed for the subscription expiration date. |
|
| 313 | - if ( ! empty( $qv['date_expires_query'] ) && is_array( $qv['date_expires_query'] ) ) { |
|
| 314 | - $date_expires_query = new WP_Date_Query( $qv['date_expires_query'], "$table.expiration" ); |
|
| 315 | - $this->query_where .= $date_expires_query->get_sql(); |
|
| 316 | - } |
|
| 317 | - |
|
| 318 | - } |
|
| 319 | - |
|
| 320 | - /** |
|
| 321 | - * Prepares the query order. |
|
| 322 | - * |
|
| 323 | - * @since 1.0.19 |
|
| 324 | - * |
|
| 325 | - * @param array $qv Query vars. |
|
| 326 | - * @param string $table Table name. |
|
| 327 | - */ |
|
| 328 | - protected function prepare_query_order( &$qv, $table ) { |
|
| 329 | - |
|
| 330 | - // sorting. |
|
| 331 | - $qv['order'] = isset( $qv['order'] ) ? strtoupper( $qv['order'] ) : ''; |
|
| 332 | - $order = $this->parse_order( $qv['order'] ); |
|
| 333 | - |
|
| 334 | - // Default order is by 'id' (latest subscriptions). |
|
| 335 | - if ( empty( $qv['orderby'] ) ) { |
|
| 336 | - $qv['orderby'] = array( 'id' ); |
|
| 337 | - } |
|
| 338 | - |
|
| 339 | - // 'orderby' values may be an array, comma- or space-separated list. |
|
| 340 | - $ordersby = array_filter( wpinv_parse_list( $qv['orderby'] ) ); |
|
| 341 | - |
|
| 342 | - $orderby_array = array(); |
|
| 343 | - foreach ( $ordersby as $_key => $_value ) { |
|
| 344 | - |
|
| 345 | - if ( is_int( $_key ) ) { |
|
| 346 | - // Integer key means this is a flat array of 'orderby' fields. |
|
| 347 | - $_orderby = $_value; |
|
| 348 | - $_order = $order; |
|
| 349 | - } else { |
|
| 350 | - // Non-integer key means that the key is the field and the value is ASC/DESC. |
|
| 351 | - $_orderby = $_key; |
|
| 352 | - $_order = $_value; |
|
| 353 | - } |
|
| 354 | - |
|
| 355 | - $parsed = $this->parse_orderby( $_orderby, $table ); |
|
| 356 | - |
|
| 357 | - if ( $parsed ) { |
|
| 358 | - $orderby_array[] = $parsed . ' ' . $this->parse_order( $_order ); |
|
| 359 | - } |
|
| 360 | - |
|
| 361 | - } |
|
| 362 | - |
|
| 363 | - // If no valid clauses were found, order by id. |
|
| 364 | - if ( empty( $orderby_array ) ) { |
|
| 365 | - $orderby_array[] = "id $order"; |
|
| 366 | - } |
|
| 367 | - |
|
| 368 | - $this->query_orderby = 'ORDER BY ' . implode( ', ', $orderby_array ); |
|
| 369 | - |
|
| 370 | - } |
|
| 371 | - |
|
| 372 | - /** |
|
| 373 | - * Execute the query, with the current variables. |
|
| 374 | - * |
|
| 375 | - * @since 1.0.19 |
|
| 376 | - * |
|
| 377 | - * @global wpdb $wpdb WordPress database abstraction object. |
|
| 378 | - */ |
|
| 379 | - public function query() { |
|
| 380 | - global $wpdb; |
|
| 381 | - |
|
| 382 | - $qv =& $this->query_vars; |
|
| 383 | - |
|
| 384 | - // Return a non-null value to bypass the default GetPaid subscriptions query and remember to set the |
|
| 385 | - // total_subscriptions property. |
|
| 386 | - $this->results = apply_filters_ref_array( 'getpaid_subscriptions_pre_query', array( null, &$this ) ); |
|
| 387 | - |
|
| 388 | - if ( null === $this->results ) { |
|
| 389 | - $this->request = "SELECT $this->query_fields $this->query_from $this->query_where $this->query_orderby $this->query_limit"; |
|
| 390 | - |
|
| 391 | - if ( ( is_array( $qv['fields'] ) && 1 != count( $qv['fields'] ) ) || 'all' == $qv['fields'] ) { |
|
| 392 | - $this->results = $wpdb->get_results( $this->request ); |
|
| 393 | - } else { |
|
| 394 | - $this->results = $wpdb->get_col( $this->request ); |
|
| 395 | - } |
|
| 396 | - |
|
| 397 | - if ( isset( $qv['count_total'] ) && $qv['count_total'] ) { |
|
| 398 | - $found_subscriptions_query = apply_filters( 'getpaid_found_subscriptions_query', 'SELECT FOUND_ROWS()', $this ); |
|
| 399 | - $this->total_subscriptions = (int) $wpdb->get_var( $found_subscriptions_query ); |
|
| 400 | - } |
|
| 401 | - } |
|
| 402 | - |
|
| 403 | - if ( 'all' == $qv['fields'] ) { |
|
| 404 | - foreach ( $this->results as $key => $subscription ) { |
|
| 405 | - wp_cache_set( $subscription->id, $subscription, 'getpaid_subscriptions' ); |
|
| 406 | - wp_cache_set( $subscription->profile_id, $subscription->id, 'getpaid_subscription_profile_ids_to_subscription_ids' ); |
|
| 407 | - wp_cache_set( $subscription->transaction_id, $subscription->id, 'getpaid_subscription_transaction_ids_to_subscription_ids' ); |
|
| 408 | - wp_cache_set( $subscription->transaction_id, $subscription->id, 'getpaid_subscription_transaction_ids_to_subscription_ids' ); |
|
| 409 | - $this->results[ $key ] = new WPInv_Subscription( $subscription ); |
|
| 410 | - } |
|
| 411 | - } |
|
| 412 | - |
|
| 413 | - } |
|
| 414 | - |
|
| 415 | - /** |
|
| 416 | - * Retrieve query variable. |
|
| 417 | - * |
|
| 418 | - * @since 1.0.19 |
|
| 419 | - * |
|
| 420 | - * @param string $query_var Query variable key. |
|
| 421 | - * @return mixed |
|
| 422 | - */ |
|
| 423 | - public function get( $query_var ) { |
|
| 424 | - if ( isset( $this->query_vars[ $query_var ] ) ) { |
|
| 425 | - return $this->query_vars[ $query_var ]; |
|
| 426 | - } |
|
| 427 | - |
|
| 428 | - return null; |
|
| 429 | - } |
|
| 430 | - |
|
| 431 | - /** |
|
| 432 | - * Set query variable. |
|
| 433 | - * |
|
| 434 | - * @since 1.0.19 |
|
| 435 | - * |
|
| 436 | - * @param string $query_var Query variable key. |
|
| 437 | - * @param mixed $value Query variable value. |
|
| 438 | - */ |
|
| 439 | - public function set( $query_var, $value ) { |
|
| 440 | - $this->query_vars[ $query_var ] = $value; |
|
| 441 | - } |
|
| 442 | - |
|
| 443 | - /** |
|
| 444 | - * Return the list of subscriptions. |
|
| 445 | - * |
|
| 446 | - * @since 1.0.19 |
|
| 447 | - * |
|
| 448 | - * @return WPInv_Subscription[]|array Found subscriptions. |
|
| 449 | - */ |
|
| 450 | - public function get_results() { |
|
| 451 | - return $this->results; |
|
| 452 | - } |
|
| 453 | - |
|
| 454 | - /** |
|
| 455 | - * Return the total number of subscriptions for the current query. |
|
| 456 | - * |
|
| 457 | - * @since 1.0.19 |
|
| 458 | - * |
|
| 459 | - * @return int Number of total subscriptions. |
|
| 460 | - */ |
|
| 461 | - public function get_total() { |
|
| 462 | - return $this->total_subscriptions; |
|
| 463 | - } |
|
| 464 | - |
|
| 465 | - /** |
|
| 466 | - * Parse and sanitize 'orderby' keys passed to the subscriptions query. |
|
| 467 | - * |
|
| 468 | - * @since 1.0.19 |
|
| 469 | - * |
|
| 470 | - * @param string $orderby Alias for the field to order by. |
|
| 471 | - * @param string $table The current table. |
|
| 472 | - * @return string Value to use in the ORDER clause, if `$orderby` is valid. |
|
| 473 | - */ |
|
| 474 | - protected function parse_orderby( $orderby, $table ) { |
|
| 475 | - |
|
| 476 | - $_orderby = ''; |
|
| 477 | - if ( in_array( $orderby, array( 'customer_id', 'frequency', 'period', 'initial_amount', 'recurring_amount', 'bill_times', 'transaction_id', 'parent_payment_id', 'product_id', 'created', 'expiration', 'trial_period', 'status', 'profile_id' ) ) ) { |
|
| 478 | - $_orderby = "$table.`$orderby`"; |
|
| 479 | - } elseif ( 'id' === strtolower( $orderby ) ) { |
|
| 480 | - $_orderby = "$table.id"; |
|
| 481 | - } elseif ( 'include' === $orderby && ! empty( $this->query_vars['include'] ) ) { |
|
| 482 | - $include = wp_parse_id_list( $this->query_vars['include'] ); |
|
| 483 | - $include_sql = implode( ',', $include ); |
|
| 484 | - $_orderby = "FIELD( $table.id, $include_sql )"; |
|
| 485 | - } |
|
| 486 | - |
|
| 487 | - return $_orderby; |
|
| 488 | - } |
|
| 489 | - |
|
| 490 | - /** |
|
| 491 | - * Parse an 'order' query variable and cast it to ASC or DESC as necessary. |
|
| 492 | - * |
|
| 493 | - * @since 1.0.19 |
|
| 494 | - * |
|
| 495 | - * @param string $order The 'order' query variable. |
|
| 496 | - * @return string The sanitized 'order' query variable. |
|
| 497 | - */ |
|
| 498 | - protected function parse_order( $order ) { |
|
| 499 | - if ( ! is_string( $order ) || empty( $order ) ) { |
|
| 500 | - return 'DESC'; |
|
| 501 | - } |
|
| 502 | - |
|
| 503 | - if ( 'ASC' === strtoupper( $order ) ) { |
|
| 504 | - return 'ASC'; |
|
| 505 | - } else { |
|
| 506 | - return 'DESC'; |
|
| 507 | - } |
|
| 508 | - } |
|
| 19 | + /** |
|
| 20 | + * Query vars, after parsing |
|
| 21 | + * |
|
| 22 | + * @since 1.0.19 |
|
| 23 | + * @var array |
|
| 24 | + */ |
|
| 25 | + public $query_vars = array(); |
|
| 26 | + |
|
| 27 | + /** |
|
| 28 | + * List of found subscriptions. |
|
| 29 | + * |
|
| 30 | + * @since 1.0.19 |
|
| 31 | + * @var array |
|
| 32 | + */ |
|
| 33 | + private $results; |
|
| 34 | + |
|
| 35 | + /** |
|
| 36 | + * Total number of found subscriptions for the current query |
|
| 37 | + * |
|
| 38 | + * @since 1.0.19 |
|
| 39 | + * @var int |
|
| 40 | + */ |
|
| 41 | + private $total_subscriptions = 0; |
|
| 42 | + |
|
| 43 | + /** |
|
| 44 | + * The SQL query used to fetch matching subscriptions. |
|
| 45 | + * |
|
| 46 | + * @since 1.0.19 |
|
| 47 | + * @var string |
|
| 48 | + */ |
|
| 49 | + public $request; |
|
| 50 | + |
|
| 51 | + // SQL clauses |
|
| 52 | + |
|
| 53 | + /** |
|
| 54 | + * Contains the 'FIELDS' sql clause |
|
| 55 | + * |
|
| 56 | + * @since 1.0.19 |
|
| 57 | + * @var string |
|
| 58 | + */ |
|
| 59 | + public $query_fields; |
|
| 60 | + |
|
| 61 | + /** |
|
| 62 | + * Contains the 'FROM' sql clause |
|
| 63 | + * |
|
| 64 | + * @since 1.0.19 |
|
| 65 | + * @var string |
|
| 66 | + */ |
|
| 67 | + public $query_from; |
|
| 68 | + |
|
| 69 | + /** |
|
| 70 | + * Contains the 'WHERE' sql clause |
|
| 71 | + * |
|
| 72 | + * @since 1.0.19 |
|
| 73 | + * @var string |
|
| 74 | + */ |
|
| 75 | + public $query_where; |
|
| 76 | + |
|
| 77 | + /** |
|
| 78 | + * Contains the 'ORDER BY' sql clause |
|
| 79 | + * |
|
| 80 | + * @since 1.0.19 |
|
| 81 | + * @var string |
|
| 82 | + */ |
|
| 83 | + public $query_orderby; |
|
| 84 | + |
|
| 85 | + /** |
|
| 86 | + * Contains the 'LIMIT' sql clause |
|
| 87 | + * |
|
| 88 | + * @since 1.0.19 |
|
| 89 | + * @var string |
|
| 90 | + */ |
|
| 91 | + public $query_limit; |
|
| 92 | + |
|
| 93 | + /** |
|
| 94 | + * Class constructor. |
|
| 95 | + * |
|
| 96 | + * @since 1.0.19 |
|
| 97 | + * |
|
| 98 | + * @param null|string|array $query Optional. The query variables. |
|
| 99 | + */ |
|
| 100 | + public function __construct( $query = null ) { |
|
| 101 | + if ( ! is_null( $query ) ) { |
|
| 102 | + $this->prepare_query( $query ); |
|
| 103 | + $this->query(); |
|
| 104 | + } |
|
| 105 | + } |
|
| 106 | + |
|
| 107 | + /** |
|
| 108 | + * Fills in missing query variables with default values. |
|
| 109 | + * |
|
| 110 | + * @since 1.0.19 |
|
| 111 | + * |
|
| 112 | + * @param string|array $args Query vars, as passed to `GetPaid_Subscriptions_Query`. |
|
| 113 | + * @return array Complete query variables with undefined ones filled in with defaults. |
|
| 114 | + */ |
|
| 115 | + public static function fill_query_vars( $args ) { |
|
| 116 | + $defaults = array( |
|
| 117 | + 'status' => 'all', |
|
| 118 | + 'customer_in' => array(), |
|
| 119 | + 'customer_not_in' => array(), |
|
| 120 | + 'product_in' => array(), |
|
| 121 | + 'product_not_in' => array(), |
|
| 122 | + 'include' => array(), |
|
| 123 | + 'exclude' => array(), |
|
| 124 | + 'orderby' => 'id', |
|
| 125 | + 'order' => 'DESC', |
|
| 126 | + 'offset' => '', |
|
| 127 | + 'number' => 10, |
|
| 128 | + 'paged' => 1, |
|
| 129 | + 'count_total' => true, |
|
| 130 | + 'fields' => 'all', |
|
| 131 | + ); |
|
| 132 | + |
|
| 133 | + return wp_parse_args( $args, $defaults ); |
|
| 134 | + } |
|
| 135 | + |
|
| 136 | + /** |
|
| 137 | + * Prepare the query variables. |
|
| 138 | + * |
|
| 139 | + * @since 1.0.19 |
|
| 140 | + * |
|
| 141 | + * @global wpdb $wpdb WordPress database abstraction object. |
|
| 142 | + * |
|
| 143 | + * @param string|array $query { |
|
| 144 | + * Optional. Array or string of Query parameters. |
|
| 145 | + * |
|
| 146 | + * @type string|array $status The subscription status to filter by. Can either be a single status or an array of statuses. |
|
| 147 | + * Default is all. |
|
| 148 | + * @type int[] $customer_in An array of customer ids to filter by. |
|
| 149 | + * @type int[] $customer_not_in An array of customer ids whose subscriptions should be excluded. |
|
| 150 | + * @type int[] $invoice_in An array of invoice ids to filter by. |
|
| 151 | + * @type int[] $invoice_not_in An array of invoice ids whose subscriptions should be excluded. |
|
| 152 | + * @type int[] $product_in An array of product ids to filter by. |
|
| 153 | + * @type int[] $product_not_in An array of product ids whose subscriptions should be excluded. |
|
| 154 | + * @type array $date_created_query A WP_Date_Query compatible array use to filter subscriptions by their date of creation. |
|
| 155 | + * @type array $date_expires_query A WP_Date_Query compatible array use to filter subscriptions by their expiration date. |
|
| 156 | + * @type array $include An array of subscription IDs to include. Default empty array. |
|
| 157 | + * @type array $exclude An array of subscription IDs to exclude. Default empty array. |
|
| 158 | + * @type string|array $orderby Field(s) to sort the retrieved subscription by. May be a single value, |
|
| 159 | + * an array of values, or a multi-dimensional array with fields as |
|
| 160 | + * keys and orders ('ASC' or 'DESC') as values. Accepted values are |
|
| 161 | + * 'id', 'customer_id', 'frequency', 'period', 'initial_amount, |
|
| 162 | + * 'recurring_amount', 'bill_times', 'parent_payment_id', 'created', 'expiration' |
|
| 163 | + * 'transaction_id', 'product_id', 'trial_period', 'include', 'status', 'profile_id'. Default array( 'id' ). |
|
| 164 | + * @type string $order Designates ascending or descending order of subscriptions. Order values |
|
| 165 | + * passed as part of an `$orderby` array take precedence over this |
|
| 166 | + * parameter. Accepts 'ASC', 'DESC'. Default 'DESC'. |
|
| 167 | + * @type int $offset Number of subscriptions to offset in retrieved results. Can be used in |
|
| 168 | + * conjunction with pagination. Default 0. |
|
| 169 | + * @type int $number Number of subscriptions to limit the query for. Can be used in |
|
| 170 | + * conjunction with pagination. Value -1 (all) is supported, but |
|
| 171 | + * should be used with caution on larger sites. |
|
| 172 | + * Default 10. |
|
| 173 | + * @type int $paged When used with number, defines the page of results to return. |
|
| 174 | + * Default 1. |
|
| 175 | + * @type bool $count_total Whether to count the total number of subscriptions found. If pagination |
|
| 176 | + * is not needed, setting this to false can improve performance. |
|
| 177 | + * Default true. |
|
| 178 | + * @type string|array $fields Which fields to return. Single or all fields (string), or array |
|
| 179 | + * of fields. Accepts 'id', 'customer_id', 'frequency', 'period', 'initial_amount, |
|
| 180 | + * 'recurring_amount', 'bill_times', 'parent_payment_id', 'created', 'expiration' |
|
| 181 | + * 'transaction_id', 'product_id', 'trial_period', 'status', 'profile_id'. |
|
| 182 | + * Use 'all' for all fields. Default 'all'. |
|
| 183 | + * } |
|
| 184 | + */ |
|
| 185 | + public function prepare_query( $query = array() ) { |
|
| 186 | + global $wpdb; |
|
| 187 | + |
|
| 188 | + if ( empty( $this->query_vars ) || ! empty( $query ) ) { |
|
| 189 | + $this->query_limit = null; |
|
| 190 | + $this->query_vars = $this->fill_query_vars( $query ); |
|
| 191 | + } |
|
| 192 | + |
|
| 193 | + if ( ! empty( $this->query_vars['fields'] ) && 'all' !== $this->query_vars['fields'] ) { |
|
| 194 | + $this->query_vars['fields'] = wpinv_parse_list( $this->query_vars['fields'] ); |
|
| 195 | + } |
|
| 196 | + |
|
| 197 | + do_action( 'getpaid_pre_get_subscriptions', array( &$this ) ); |
|
| 198 | + |
|
| 199 | + // Ensure that query vars are filled after 'getpaid_pre_get_subscriptions'. |
|
| 200 | + $qv =& $this->query_vars; |
|
| 201 | + $qv = $this->fill_query_vars( $qv ); |
|
| 202 | + $table = $wpdb->prefix . 'wpinv_subscriptions'; |
|
| 203 | + $this->query_from = "FROM $table"; |
|
| 204 | + |
|
| 205 | + // Prepare query fields. |
|
| 206 | + $this->prepare_query_fields( $qv, $table ); |
|
| 207 | + |
|
| 208 | + // Prepare query where. |
|
| 209 | + $this->prepare_query_where( $qv, $table ); |
|
| 210 | + |
|
| 211 | + // Prepare query order. |
|
| 212 | + $this->prepare_query_order( $qv, $table ); |
|
| 213 | + |
|
| 214 | + // limit |
|
| 215 | + if ( isset( $qv['number'] ) && $qv['number'] > 0 ) { |
|
| 216 | + if ( $qv['offset'] ) { |
|
| 217 | + $this->query_limit = $wpdb->prepare( 'LIMIT %d, %d', $qv['offset'], $qv['number'] ); |
|
| 218 | + } else { |
|
| 219 | + $this->query_limit = $wpdb->prepare( 'LIMIT %d, %d', $qv['number'] * ( $qv['paged'] - 1 ), $qv['number'] ); |
|
| 220 | + } |
|
| 221 | + } |
|
| 222 | + |
|
| 223 | + do_action_ref_array( 'getpaid_after_subscriptions_query', array( &$this ) ); |
|
| 224 | + } |
|
| 225 | + |
|
| 226 | + /** |
|
| 227 | + * Prepares the query fields. |
|
| 228 | + * |
|
| 229 | + * @since 1.0.19 |
|
| 230 | + * |
|
| 231 | + * @param array $qv Query vars. |
|
| 232 | + * @param string $table Table name. |
|
| 233 | + */ |
|
| 234 | + protected function prepare_query_fields( &$qv, $table ) { |
|
| 235 | + |
|
| 236 | + if ( is_array( $qv['fields'] ) ) { |
|
| 237 | + $qv['fields'] = array_unique( $qv['fields'] ); |
|
| 238 | + |
|
| 239 | + $query_fields = array(); |
|
| 240 | + foreach ( $qv['fields'] as $field ) { |
|
| 241 | + $field = sanitize_key( $field ); |
|
| 242 | + $query_fields[] = "$table.`$field`"; |
|
| 243 | + } |
|
| 244 | + $this->query_fields = implode( ',', $query_fields ); |
|
| 245 | + } else { |
|
| 246 | + $this->query_fields = "$table.*"; |
|
| 247 | + } |
|
| 248 | + |
|
| 249 | + if ( isset( $qv['count_total'] ) && $qv['count_total'] ) { |
|
| 250 | + $this->query_fields = 'SQL_CALC_FOUND_ROWS ' . $this->query_fields; |
|
| 251 | + } |
|
| 252 | + |
|
| 253 | + } |
|
| 254 | + |
|
| 255 | + /** |
|
| 256 | + * Prepares the query where. |
|
| 257 | + * |
|
| 258 | + * @since 1.0.19 |
|
| 259 | + * |
|
| 260 | + * @param array $qv Query vars. |
|
| 261 | + * @param string $table Table name. |
|
| 262 | + */ |
|
| 263 | + protected function prepare_query_where( &$qv, $table ) { |
|
| 264 | + global $wpdb; |
|
| 265 | + $this->query_where = 'WHERE 1=1'; |
|
| 266 | + |
|
| 267 | + // Status. |
|
| 268 | + if ( 'all' !== $qv['status'] ) { |
|
| 269 | + $statuses = wpinv_clean( wpinv_parse_list( $qv['status'] ) ); |
|
| 270 | + $prepared_statuses = join( ',', array_fill( 0, count( $statuses ), '%s' ) ); |
|
| 271 | + $this->query_where .= $wpdb->prepare( " AND $table.`status` IN ( $prepared_statuses )", $statuses ); |
|
| 272 | + } |
|
| 273 | + |
|
| 274 | + if ( ! empty( $qv['customer_in'] ) ) { |
|
| 275 | + $customer_in = implode( ',', wp_parse_id_list( $qv['customer_in'] ) ); |
|
| 276 | + $this->query_where .= " AND $table.`customer_id` IN ($customer_in)"; |
|
| 277 | + } elseif ( ! empty( $qv['customer_not_in'] ) ) { |
|
| 278 | + $customer_not_in = implode( ',', wp_parse_id_list( $qv['customer_not_in'] ) ); |
|
| 279 | + $this->query_where .= " AND $table.`customer_id` NOT IN ($customer_not_in)"; |
|
| 280 | + } |
|
| 281 | + |
|
| 282 | + if ( ! empty( $qv['product_in'] ) ) { |
|
| 283 | + $product_in = implode( ',', wp_parse_id_list( $qv['product_in'] ) ); |
|
| 284 | + $this->query_where .= " AND $table.`product_id` IN ($product_in)"; |
|
| 285 | + } elseif ( ! empty( $qv['product_not_in'] ) ) { |
|
| 286 | + $product_not_in = implode( ',', wp_parse_id_list( $qv['product_not_in'] ) ); |
|
| 287 | + $this->query_where .= " AND $table.`product_id` NOT IN ($product_not_in)"; |
|
| 288 | + } |
|
| 289 | + |
|
| 290 | + if ( ! empty( $qv['invoice_in'] ) ) { |
|
| 291 | + $invoice_in = implode( ',', wp_parse_id_list( $qv['invoice_in'] ) ); |
|
| 292 | + $this->query_where .= " AND $table.`parent_payment_id` IN ($invoice_in)"; |
|
| 293 | + } elseif ( ! empty( $qv['invoice_not_in'] ) ) { |
|
| 294 | + $invoice_not_in = implode( ',', wp_parse_id_list( $qv['invoice_not_in'] ) ); |
|
| 295 | + $this->query_where .= " AND $table.`parent_payment_id` NOT IN ($invoice_not_in)"; |
|
| 296 | + } |
|
| 297 | + |
|
| 298 | + if ( ! empty( $qv['include'] ) ) { |
|
| 299 | + $include = implode( ',', wp_parse_id_list( $qv['include'] ) ); |
|
| 300 | + $this->query_where .= " AND $table.`id` IN ($include)"; |
|
| 301 | + } elseif ( ! empty( $qv['exclude'] ) ) { |
|
| 302 | + $exclude = implode( ',', wp_parse_id_list( $qv['exclude'] ) ); |
|
| 303 | + $this->query_where .= " AND $table.`id` NOT IN ($exclude)"; |
|
| 304 | + } |
|
| 305 | + |
|
| 306 | + // Date queries are allowed for the subscription creation date. |
|
| 307 | + if ( ! empty( $qv['date_created_query'] ) && is_array( $qv['date_created_query'] ) ) { |
|
| 308 | + $date_created_query = new WP_Date_Query( $qv['date_created_query'], "$table.created" ); |
|
| 309 | + $this->query_where .= $date_created_query->get_sql(); |
|
| 310 | + } |
|
| 311 | + |
|
| 312 | + // Date queries are also allowed for the subscription expiration date. |
|
| 313 | + if ( ! empty( $qv['date_expires_query'] ) && is_array( $qv['date_expires_query'] ) ) { |
|
| 314 | + $date_expires_query = new WP_Date_Query( $qv['date_expires_query'], "$table.expiration" ); |
|
| 315 | + $this->query_where .= $date_expires_query->get_sql(); |
|
| 316 | + } |
|
| 317 | + |
|
| 318 | + } |
|
| 319 | + |
|
| 320 | + /** |
|
| 321 | + * Prepares the query order. |
|
| 322 | + * |
|
| 323 | + * @since 1.0.19 |
|
| 324 | + * |
|
| 325 | + * @param array $qv Query vars. |
|
| 326 | + * @param string $table Table name. |
|
| 327 | + */ |
|
| 328 | + protected function prepare_query_order( &$qv, $table ) { |
|
| 329 | + |
|
| 330 | + // sorting. |
|
| 331 | + $qv['order'] = isset( $qv['order'] ) ? strtoupper( $qv['order'] ) : ''; |
|
| 332 | + $order = $this->parse_order( $qv['order'] ); |
|
| 333 | + |
|
| 334 | + // Default order is by 'id' (latest subscriptions). |
|
| 335 | + if ( empty( $qv['orderby'] ) ) { |
|
| 336 | + $qv['orderby'] = array( 'id' ); |
|
| 337 | + } |
|
| 338 | + |
|
| 339 | + // 'orderby' values may be an array, comma- or space-separated list. |
|
| 340 | + $ordersby = array_filter( wpinv_parse_list( $qv['orderby'] ) ); |
|
| 341 | + |
|
| 342 | + $orderby_array = array(); |
|
| 343 | + foreach ( $ordersby as $_key => $_value ) { |
|
| 344 | + |
|
| 345 | + if ( is_int( $_key ) ) { |
|
| 346 | + // Integer key means this is a flat array of 'orderby' fields. |
|
| 347 | + $_orderby = $_value; |
|
| 348 | + $_order = $order; |
|
| 349 | + } else { |
|
| 350 | + // Non-integer key means that the key is the field and the value is ASC/DESC. |
|
| 351 | + $_orderby = $_key; |
|
| 352 | + $_order = $_value; |
|
| 353 | + } |
|
| 354 | + |
|
| 355 | + $parsed = $this->parse_orderby( $_orderby, $table ); |
|
| 356 | + |
|
| 357 | + if ( $parsed ) { |
|
| 358 | + $orderby_array[] = $parsed . ' ' . $this->parse_order( $_order ); |
|
| 359 | + } |
|
| 360 | + |
|
| 361 | + } |
|
| 362 | + |
|
| 363 | + // If no valid clauses were found, order by id. |
|
| 364 | + if ( empty( $orderby_array ) ) { |
|
| 365 | + $orderby_array[] = "id $order"; |
|
| 366 | + } |
|
| 367 | + |
|
| 368 | + $this->query_orderby = 'ORDER BY ' . implode( ', ', $orderby_array ); |
|
| 369 | + |
|
| 370 | + } |
|
| 371 | + |
|
| 372 | + /** |
|
| 373 | + * Execute the query, with the current variables. |
|
| 374 | + * |
|
| 375 | + * @since 1.0.19 |
|
| 376 | + * |
|
| 377 | + * @global wpdb $wpdb WordPress database abstraction object. |
|
| 378 | + */ |
|
| 379 | + public function query() { |
|
| 380 | + global $wpdb; |
|
| 381 | + |
|
| 382 | + $qv =& $this->query_vars; |
|
| 383 | + |
|
| 384 | + // Return a non-null value to bypass the default GetPaid subscriptions query and remember to set the |
|
| 385 | + // total_subscriptions property. |
|
| 386 | + $this->results = apply_filters_ref_array( 'getpaid_subscriptions_pre_query', array( null, &$this ) ); |
|
| 387 | + |
|
| 388 | + if ( null === $this->results ) { |
|
| 389 | + $this->request = "SELECT $this->query_fields $this->query_from $this->query_where $this->query_orderby $this->query_limit"; |
|
| 390 | + |
|
| 391 | + if ( ( is_array( $qv['fields'] ) && 1 != count( $qv['fields'] ) ) || 'all' == $qv['fields'] ) { |
|
| 392 | + $this->results = $wpdb->get_results( $this->request ); |
|
| 393 | + } else { |
|
| 394 | + $this->results = $wpdb->get_col( $this->request ); |
|
| 395 | + } |
|
| 396 | + |
|
| 397 | + if ( isset( $qv['count_total'] ) && $qv['count_total'] ) { |
|
| 398 | + $found_subscriptions_query = apply_filters( 'getpaid_found_subscriptions_query', 'SELECT FOUND_ROWS()', $this ); |
|
| 399 | + $this->total_subscriptions = (int) $wpdb->get_var( $found_subscriptions_query ); |
|
| 400 | + } |
|
| 401 | + } |
|
| 402 | + |
|
| 403 | + if ( 'all' == $qv['fields'] ) { |
|
| 404 | + foreach ( $this->results as $key => $subscription ) { |
|
| 405 | + wp_cache_set( $subscription->id, $subscription, 'getpaid_subscriptions' ); |
|
| 406 | + wp_cache_set( $subscription->profile_id, $subscription->id, 'getpaid_subscription_profile_ids_to_subscription_ids' ); |
|
| 407 | + wp_cache_set( $subscription->transaction_id, $subscription->id, 'getpaid_subscription_transaction_ids_to_subscription_ids' ); |
|
| 408 | + wp_cache_set( $subscription->transaction_id, $subscription->id, 'getpaid_subscription_transaction_ids_to_subscription_ids' ); |
|
| 409 | + $this->results[ $key ] = new WPInv_Subscription( $subscription ); |
|
| 410 | + } |
|
| 411 | + } |
|
| 412 | + |
|
| 413 | + } |
|
| 414 | + |
|
| 415 | + /** |
|
| 416 | + * Retrieve query variable. |
|
| 417 | + * |
|
| 418 | + * @since 1.0.19 |
|
| 419 | + * |
|
| 420 | + * @param string $query_var Query variable key. |
|
| 421 | + * @return mixed |
|
| 422 | + */ |
|
| 423 | + public function get( $query_var ) { |
|
| 424 | + if ( isset( $this->query_vars[ $query_var ] ) ) { |
|
| 425 | + return $this->query_vars[ $query_var ]; |
|
| 426 | + } |
|
| 427 | + |
|
| 428 | + return null; |
|
| 429 | + } |
|
| 430 | + |
|
| 431 | + /** |
|
| 432 | + * Set query variable. |
|
| 433 | + * |
|
| 434 | + * @since 1.0.19 |
|
| 435 | + * |
|
| 436 | + * @param string $query_var Query variable key. |
|
| 437 | + * @param mixed $value Query variable value. |
|
| 438 | + */ |
|
| 439 | + public function set( $query_var, $value ) { |
|
| 440 | + $this->query_vars[ $query_var ] = $value; |
|
| 441 | + } |
|
| 442 | + |
|
| 443 | + /** |
|
| 444 | + * Return the list of subscriptions. |
|
| 445 | + * |
|
| 446 | + * @since 1.0.19 |
|
| 447 | + * |
|
| 448 | + * @return WPInv_Subscription[]|array Found subscriptions. |
|
| 449 | + */ |
|
| 450 | + public function get_results() { |
|
| 451 | + return $this->results; |
|
| 452 | + } |
|
| 453 | + |
|
| 454 | + /** |
|
| 455 | + * Return the total number of subscriptions for the current query. |
|
| 456 | + * |
|
| 457 | + * @since 1.0.19 |
|
| 458 | + * |
|
| 459 | + * @return int Number of total subscriptions. |
|
| 460 | + */ |
|
| 461 | + public function get_total() { |
|
| 462 | + return $this->total_subscriptions; |
|
| 463 | + } |
|
| 464 | + |
|
| 465 | + /** |
|
| 466 | + * Parse and sanitize 'orderby' keys passed to the subscriptions query. |
|
| 467 | + * |
|
| 468 | + * @since 1.0.19 |
|
| 469 | + * |
|
| 470 | + * @param string $orderby Alias for the field to order by. |
|
| 471 | + * @param string $table The current table. |
|
| 472 | + * @return string Value to use in the ORDER clause, if `$orderby` is valid. |
|
| 473 | + */ |
|
| 474 | + protected function parse_orderby( $orderby, $table ) { |
|
| 475 | + |
|
| 476 | + $_orderby = ''; |
|
| 477 | + if ( in_array( $orderby, array( 'customer_id', 'frequency', 'period', 'initial_amount', 'recurring_amount', 'bill_times', 'transaction_id', 'parent_payment_id', 'product_id', 'created', 'expiration', 'trial_period', 'status', 'profile_id' ) ) ) { |
|
| 478 | + $_orderby = "$table.`$orderby`"; |
|
| 479 | + } elseif ( 'id' === strtolower( $orderby ) ) { |
|
| 480 | + $_orderby = "$table.id"; |
|
| 481 | + } elseif ( 'include' === $orderby && ! empty( $this->query_vars['include'] ) ) { |
|
| 482 | + $include = wp_parse_id_list( $this->query_vars['include'] ); |
|
| 483 | + $include_sql = implode( ',', $include ); |
|
| 484 | + $_orderby = "FIELD( $table.id, $include_sql )"; |
|
| 485 | + } |
|
| 486 | + |
|
| 487 | + return $_orderby; |
|
| 488 | + } |
|
| 489 | + |
|
| 490 | + /** |
|
| 491 | + * Parse an 'order' query variable and cast it to ASC or DESC as necessary. |
|
| 492 | + * |
|
| 493 | + * @since 1.0.19 |
|
| 494 | + * |
|
| 495 | + * @param string $order The 'order' query variable. |
|
| 496 | + * @return string The sanitized 'order' query variable. |
|
| 497 | + */ |
|
| 498 | + protected function parse_order( $order ) { |
|
| 499 | + if ( ! is_string( $order ) || empty( $order ) ) { |
|
| 500 | + return 'DESC'; |
|
| 501 | + } |
|
| 502 | + |
|
| 503 | + if ( 'ASC' === strtoupper( $order ) ) { |
|
| 504 | + return 'ASC'; |
|
| 505 | + } else { |
|
| 506 | + return 'DESC'; |
|
| 507 | + } |
|
| 508 | + } |
|
| 509 | 509 | |
| 510 | 510 | } |
@@ -14,144 +14,144 @@ discard block |
||
| 14 | 14 | */ |
| 15 | 15 | class WPInv_Subscriptions_Widget extends WP_Super_Duper { |
| 16 | 16 | |
| 17 | - /** |
|
| 18 | - * Register the widget with WordPress. |
|
| 19 | - * |
|
| 20 | - */ |
|
| 21 | - public function __construct() { |
|
| 22 | - |
|
| 23 | - $options = array( |
|
| 24 | - 'textdomain' => 'invoicing', |
|
| 25 | - 'block-icon' => 'controls-repeat', |
|
| 26 | - 'block-category'=> 'widgets', |
|
| 27 | - 'block-keywords'=> "['invoicing','subscriptions', 'getpaid']", |
|
| 28 | - 'class_name' => __CLASS__, |
|
| 29 | - 'base_id' => 'wpinv_subscriptions', |
|
| 30 | - 'name' => __( 'GetPaid > Subscriptions', 'invoicing' ), |
|
| 31 | - 'widget_ops' => array( |
|
| 32 | - 'classname' => 'getpaid-subscriptions bsui', |
|
| 33 | - 'description' => esc_html__( "Displays the current user's subscriptions.", 'invoicing' ), |
|
| 34 | - ), |
|
| 35 | - 'arguments' => array( |
|
| 36 | - 'title' => array( |
|
| 37 | - 'title' => __( 'Widget title', 'invoicing' ), |
|
| 38 | - 'desc' => __( 'Enter widget title.', 'invoicing' ), |
|
| 39 | - 'type' => 'text', |
|
| 40 | - 'desc_tip' => true, |
|
| 41 | - 'default' => '', |
|
| 42 | - 'advanced' => false |
|
| 43 | - ), |
|
| 44 | - ) |
|
| 45 | - |
|
| 46 | - ); |
|
| 47 | - |
|
| 48 | - |
|
| 49 | - parent::__construct( $options ); |
|
| 50 | - } |
|
| 51 | - |
|
| 52 | - /** |
|
| 53 | - * Retrieves current user's subscriptions. |
|
| 54 | - * |
|
| 55 | - * @return GetPaid_Subscriptions_Query |
|
| 56 | - */ |
|
| 57 | - public function get_subscriptions() { |
|
| 58 | - |
|
| 59 | - // Prepare license args. |
|
| 60 | - $args = array( |
|
| 61 | - 'customer_in' => get_current_user_id(), |
|
| 62 | - 'paged' => ( get_query_var( 'paged' ) ) ? absint( get_query_var( 'paged' ) ) : 1, |
|
| 63 | - ); |
|
| 64 | - |
|
| 65 | - return new GetPaid_Subscriptions_Query( $args ); |
|
| 66 | - |
|
| 67 | - } |
|
| 68 | - |
|
| 69 | - /** |
|
| 70 | - * The Super block output function. |
|
| 71 | - * |
|
| 72 | - * @param array $args |
|
| 73 | - * @param array $widget_args |
|
| 74 | - * @param string $content |
|
| 75 | - * |
|
| 76 | - * @return mixed|string|bool |
|
| 77 | - */ |
|
| 78 | - public function output( $args = array(), $widget_args = array(), $content = '' ) { |
|
| 79 | - |
|
| 80 | - // Ensure that the user is logged in. |
|
| 81 | - if ( ! is_user_logged_in() ) { |
|
| 82 | - |
|
| 83 | - return aui()->alert( |
|
| 84 | - array( |
|
| 85 | - 'content' => wp_kses_post( __( 'You need to log-in or create an account to view this section.', 'invoicing' ) ), |
|
| 86 | - 'type' => 'error', |
|
| 87 | - ) |
|
| 88 | - ); |
|
| 89 | - |
|
| 90 | - } |
|
| 91 | - |
|
| 92 | - // Are we displaying a single subscription? |
|
| 93 | - if ( isset( $_GET['subscription'] ) ) { |
|
| 94 | - return $this->display_single_subscription( trim( $_GET['subscription'] ) ); |
|
| 95 | - } |
|
| 96 | - |
|
| 97 | - // Retrieve the user's subscriptions. |
|
| 98 | - $subscriptions = $this->get_subscriptions(); |
|
| 99 | - |
|
| 100 | - // Start the output buffer. |
|
| 101 | - ob_start(); |
|
| 102 | - |
|
| 103 | - // Backwards compatibility. |
|
| 104 | - do_action( 'wpinv_before_user_subscriptions' ); |
|
| 105 | - |
|
| 106 | - // Display errors and notices. |
|
| 107 | - wpinv_print_errors(); |
|
| 108 | - |
|
| 109 | - do_action( 'getpaid_license_manager_before_subscriptions', $subscriptions ); |
|
| 110 | - |
|
| 111 | - // Print the table header. |
|
| 112 | - $this->print_table_header(); |
|
| 113 | - |
|
| 114 | - // Print table body. |
|
| 115 | - $this->print_table_body( $subscriptions->get_results() ); |
|
| 116 | - |
|
| 117 | - // Print table footer. |
|
| 118 | - $this->print_table_footer(); |
|
| 119 | - |
|
| 120 | - // Print the navigation. |
|
| 121 | - $this->print_navigation( $subscriptions->get_total() ); |
|
| 122 | - |
|
| 123 | - // Backwards compatibility. |
|
| 124 | - do_action( 'wpinv_after_user_subscriptions' ); |
|
| 125 | - |
|
| 126 | - // Return the output. |
|
| 127 | - return ob_get_clean(); |
|
| 128 | - |
|
| 129 | - } |
|
| 130 | - |
|
| 131 | - /** |
|
| 132 | - * Retrieves the subscription columns. |
|
| 133 | - * |
|
| 134 | - * @return array |
|
| 135 | - */ |
|
| 136 | - public function get_subscriptions_table_columns() { |
|
| 17 | + /** |
|
| 18 | + * Register the widget with WordPress. |
|
| 19 | + * |
|
| 20 | + */ |
|
| 21 | + public function __construct() { |
|
| 22 | + |
|
| 23 | + $options = array( |
|
| 24 | + 'textdomain' => 'invoicing', |
|
| 25 | + 'block-icon' => 'controls-repeat', |
|
| 26 | + 'block-category'=> 'widgets', |
|
| 27 | + 'block-keywords'=> "['invoicing','subscriptions', 'getpaid']", |
|
| 28 | + 'class_name' => __CLASS__, |
|
| 29 | + 'base_id' => 'wpinv_subscriptions', |
|
| 30 | + 'name' => __( 'GetPaid > Subscriptions', 'invoicing' ), |
|
| 31 | + 'widget_ops' => array( |
|
| 32 | + 'classname' => 'getpaid-subscriptions bsui', |
|
| 33 | + 'description' => esc_html__( "Displays the current user's subscriptions.", 'invoicing' ), |
|
| 34 | + ), |
|
| 35 | + 'arguments' => array( |
|
| 36 | + 'title' => array( |
|
| 37 | + 'title' => __( 'Widget title', 'invoicing' ), |
|
| 38 | + 'desc' => __( 'Enter widget title.', 'invoicing' ), |
|
| 39 | + 'type' => 'text', |
|
| 40 | + 'desc_tip' => true, |
|
| 41 | + 'default' => '', |
|
| 42 | + 'advanced' => false |
|
| 43 | + ), |
|
| 44 | + ) |
|
| 45 | + |
|
| 46 | + ); |
|
| 47 | + |
|
| 48 | + |
|
| 49 | + parent::__construct( $options ); |
|
| 50 | + } |
|
| 51 | + |
|
| 52 | + /** |
|
| 53 | + * Retrieves current user's subscriptions. |
|
| 54 | + * |
|
| 55 | + * @return GetPaid_Subscriptions_Query |
|
| 56 | + */ |
|
| 57 | + public function get_subscriptions() { |
|
| 58 | + |
|
| 59 | + // Prepare license args. |
|
| 60 | + $args = array( |
|
| 61 | + 'customer_in' => get_current_user_id(), |
|
| 62 | + 'paged' => ( get_query_var( 'paged' ) ) ? absint( get_query_var( 'paged' ) ) : 1, |
|
| 63 | + ); |
|
| 64 | + |
|
| 65 | + return new GetPaid_Subscriptions_Query( $args ); |
|
| 66 | + |
|
| 67 | + } |
|
| 68 | + |
|
| 69 | + /** |
|
| 70 | + * The Super block output function. |
|
| 71 | + * |
|
| 72 | + * @param array $args |
|
| 73 | + * @param array $widget_args |
|
| 74 | + * @param string $content |
|
| 75 | + * |
|
| 76 | + * @return mixed|string|bool |
|
| 77 | + */ |
|
| 78 | + public function output( $args = array(), $widget_args = array(), $content = '' ) { |
|
| 79 | + |
|
| 80 | + // Ensure that the user is logged in. |
|
| 81 | + if ( ! is_user_logged_in() ) { |
|
| 82 | + |
|
| 83 | + return aui()->alert( |
|
| 84 | + array( |
|
| 85 | + 'content' => wp_kses_post( __( 'You need to log-in or create an account to view this section.', 'invoicing' ) ), |
|
| 86 | + 'type' => 'error', |
|
| 87 | + ) |
|
| 88 | + ); |
|
| 89 | + |
|
| 90 | + } |
|
| 91 | + |
|
| 92 | + // Are we displaying a single subscription? |
|
| 93 | + if ( isset( $_GET['subscription'] ) ) { |
|
| 94 | + return $this->display_single_subscription( trim( $_GET['subscription'] ) ); |
|
| 95 | + } |
|
| 96 | + |
|
| 97 | + // Retrieve the user's subscriptions. |
|
| 98 | + $subscriptions = $this->get_subscriptions(); |
|
| 99 | + |
|
| 100 | + // Start the output buffer. |
|
| 101 | + ob_start(); |
|
| 102 | + |
|
| 103 | + // Backwards compatibility. |
|
| 104 | + do_action( 'wpinv_before_user_subscriptions' ); |
|
| 105 | + |
|
| 106 | + // Display errors and notices. |
|
| 107 | + wpinv_print_errors(); |
|
| 108 | + |
|
| 109 | + do_action( 'getpaid_license_manager_before_subscriptions', $subscriptions ); |
|
| 110 | + |
|
| 111 | + // Print the table header. |
|
| 112 | + $this->print_table_header(); |
|
| 113 | + |
|
| 114 | + // Print table body. |
|
| 115 | + $this->print_table_body( $subscriptions->get_results() ); |
|
| 116 | + |
|
| 117 | + // Print table footer. |
|
| 118 | + $this->print_table_footer(); |
|
| 119 | + |
|
| 120 | + // Print the navigation. |
|
| 121 | + $this->print_navigation( $subscriptions->get_total() ); |
|
| 122 | + |
|
| 123 | + // Backwards compatibility. |
|
| 124 | + do_action( 'wpinv_after_user_subscriptions' ); |
|
| 125 | + |
|
| 126 | + // Return the output. |
|
| 127 | + return ob_get_clean(); |
|
| 128 | + |
|
| 129 | + } |
|
| 130 | + |
|
| 131 | + /** |
|
| 132 | + * Retrieves the subscription columns. |
|
| 133 | + * |
|
| 134 | + * @return array |
|
| 135 | + */ |
|
| 136 | + public function get_subscriptions_table_columns() { |
|
| 137 | 137 | |
| 138 | - $columns = array( |
|
| 139 | - 'subscription' => __( 'Subscription', 'invoicing' ), |
|
| 140 | - 'amount' => __( 'Amount', 'invoicing' ), |
|
| 141 | - 'renewal-date' => __( 'Next payment', 'invoicing' ), |
|
| 142 | - 'status' => __( 'Status', 'invoicing' ), |
|
| 143 | - ); |
|
| 138 | + $columns = array( |
|
| 139 | + 'subscription' => __( 'Subscription', 'invoicing' ), |
|
| 140 | + 'amount' => __( 'Amount', 'invoicing' ), |
|
| 141 | + 'renewal-date' => __( 'Next payment', 'invoicing' ), |
|
| 142 | + 'status' => __( 'Status', 'invoicing' ), |
|
| 143 | + ); |
|
| 144 | 144 | |
| 145 | - return apply_filters( 'getpaid_frontend_subscriptions_table_columns', $columns ); |
|
| 146 | - } |
|
| 145 | + return apply_filters( 'getpaid_frontend_subscriptions_table_columns', $columns ); |
|
| 146 | + } |
|
| 147 | 147 | |
| 148 | - /** |
|
| 149 | - * Displays the table header. |
|
| 150 | - * |
|
| 151 | - */ |
|
| 152 | - public function print_table_header() { |
|
| 148 | + /** |
|
| 149 | + * Displays the table header. |
|
| 150 | + * |
|
| 151 | + */ |
|
| 152 | + public function print_table_header() { |
|
| 153 | 153 | |
| 154 | - ?> |
|
| 154 | + ?> |
|
| 155 | 155 | |
| 156 | 156 | <table class="table table-bordered table-striped"> |
| 157 | 157 | |
@@ -167,120 +167,120 @@ discard block |
||
| 167 | 167 | |
| 168 | 168 | <?php |
| 169 | 169 | |
| 170 | - } |
|
| 170 | + } |
|
| 171 | 171 | |
| 172 | - /** |
|
| 173 | - * Displays the table body. |
|
| 174 | - * |
|
| 175 | - * @param WPInv_Subscription[] $subscriptions |
|
| 176 | - */ |
|
| 177 | - public function print_table_body( $subscriptions ) { |
|
| 172 | + /** |
|
| 173 | + * Displays the table body. |
|
| 174 | + * |
|
| 175 | + * @param WPInv_Subscription[] $subscriptions |
|
| 176 | + */ |
|
| 177 | + public function print_table_body( $subscriptions ) { |
|
| 178 | 178 | |
| 179 | - if ( empty( $subscriptions ) ) { |
|
| 180 | - $this->print_table_body_no_subscriptions(); |
|
| 181 | - } else { |
|
| 182 | - $this->print_table_body_subscriptions( $subscriptions ); |
|
| 183 | - } |
|
| 179 | + if ( empty( $subscriptions ) ) { |
|
| 180 | + $this->print_table_body_no_subscriptions(); |
|
| 181 | + } else { |
|
| 182 | + $this->print_table_body_subscriptions( $subscriptions ); |
|
| 183 | + } |
|
| 184 | 184 | |
| 185 | - } |
|
| 185 | + } |
|
| 186 | 186 | |
| 187 | - /** |
|
| 188 | - * Displays the table body if no subscriptions were found. |
|
| 189 | - * |
|
| 190 | - */ |
|
| 191 | - public function print_table_body_no_subscriptions() { |
|
| 187 | + /** |
|
| 188 | + * Displays the table body if no subscriptions were found. |
|
| 189 | + * |
|
| 190 | + */ |
|
| 191 | + public function print_table_body_no_subscriptions() { |
|
| 192 | 192 | |
| 193 | - ?> |
|
| 193 | + ?> |
|
| 194 | 194 | <tbody> |
| 195 | 195 | |
| 196 | 196 | <tr> |
| 197 | 197 | <td colspan="<?php echo count( $this->get_subscriptions_table_columns() ); ?>"> |
| 198 | 198 | |
| 199 | 199 | <?php |
| 200 | - echo aui()->alert( |
|
| 201 | - array( |
|
| 202 | - 'content' => wp_kses_post( __( 'No subscriptions found.', 'invoicing' ) ), |
|
| 203 | - 'type' => 'warning', |
|
| 204 | - ) |
|
| 205 | - ); |
|
| 206 | - ?> |
|
| 200 | + echo aui()->alert( |
|
| 201 | + array( |
|
| 202 | + 'content' => wp_kses_post( __( 'No subscriptions found.', 'invoicing' ) ), |
|
| 203 | + 'type' => 'warning', |
|
| 204 | + ) |
|
| 205 | + ); |
|
| 206 | + ?> |
|
| 207 | 207 | |
| 208 | 208 | </td> |
| 209 | 209 | </tr> |
| 210 | 210 | |
| 211 | 211 | </tbody> |
| 212 | 212 | <?php |
| 213 | - } |
|
| 213 | + } |
|
| 214 | 214 | |
| 215 | - /** |
|
| 216 | - * Displays the table body if subscriptions were found. |
|
| 217 | - * |
|
| 218 | - * @param WPInv_Subscription[] $subscriptions |
|
| 219 | - */ |
|
| 220 | - public function print_table_body_subscriptions( $subscriptions ) { |
|
| 215 | + /** |
|
| 216 | + * Displays the table body if subscriptions were found. |
|
| 217 | + * |
|
| 218 | + * @param WPInv_Subscription[] $subscriptions |
|
| 219 | + */ |
|
| 220 | + public function print_table_body_subscriptions( $subscriptions ) { |
|
| 221 | 221 | |
| 222 | - ?> |
|
| 222 | + ?> |
|
| 223 | 223 | <tbody> |
| 224 | 224 | |
| 225 | 225 | <?php foreach ( $subscriptions as $subscription ) : ?> |
| 226 | 226 | <tr class="getpaid-subscriptions-table-row subscription-<?php echo (int) $subscription->get_id(); ?>"> |
| 227 | 227 | <?php |
| 228 | - wpinv_get_template( |
|
| 229 | - 'subscriptions/subscriptions-table-row.php', |
|
| 230 | - array( |
|
| 231 | - 'subscription' => $subscription, |
|
| 232 | - 'widget' => $this |
|
| 233 | - ) |
|
| 234 | - ); |
|
| 235 | - ?> |
|
| 228 | + wpinv_get_template( |
|
| 229 | + 'subscriptions/subscriptions-table-row.php', |
|
| 230 | + array( |
|
| 231 | + 'subscription' => $subscription, |
|
| 232 | + 'widget' => $this |
|
| 233 | + ) |
|
| 234 | + ); |
|
| 235 | + ?> |
|
| 236 | 236 | </tr> |
| 237 | 237 | <?php endforeach; ?> |
| 238 | 238 | |
| 239 | 239 | </tbody> |
| 240 | 240 | <?php |
| 241 | - } |
|
| 242 | - |
|
| 243 | - /** |
|
| 244 | - * Adds row actions to a column |
|
| 245 | - * |
|
| 246 | - * @param string $content column content |
|
| 247 | - * @param WPInv_Subscription $subscription |
|
| 248 | - * @since 1.0.0 |
|
| 249 | - * @return string |
|
| 250 | - */ |
|
| 251 | - public function add_row_actions( $content, $subscription ) { |
|
| 252 | - |
|
| 253 | - // Prepare row actions. |
|
| 254 | - $actions = array(); |
|
| 255 | - |
|
| 256 | - // View subscription action. |
|
| 257 | - $view_url = esc_url( add_query_arg( 'subscription', (int) $subscription->get_id(), get_permalink( (int) wpinv_get_option( 'invoice_subscription_page' ) ) ) ); |
|
| 258 | - $actions['view'] = "<a href='$view_url' class='text-decoration-none'>" . __( 'Manage Subscription', 'invoicing' ) . '</a>'; |
|
| 259 | - |
|
| 260 | - // Filter the actions. |
|
| 261 | - $actions = apply_filters( 'getpaid_subscriptions_table_subscription_actions', $actions, $subscription ); |
|
| 262 | - |
|
| 263 | - $sanitized = array(); |
|
| 264 | - foreach ( $actions as $key => $action ) { |
|
| 265 | - $key = sanitize_html_class( $key ); |
|
| 266 | - $action = wp_kses_post( $action ); |
|
| 267 | - $sanitized[] = "<span class='$key'>$action</span>"; |
|
| 268 | - } |
|
| 269 | - |
|
| 270 | - $row_actions = "<small class='form-text getpaid-subscription-item-actions'>"; |
|
| 271 | - $row_actions .= implode( ' | ', $sanitized ); |
|
| 272 | - $row_actions .= '</small>'; |
|
| 273 | - |
|
| 274 | - return $content . $row_actions; |
|
| 275 | - } |
|
| 276 | - |
|
| 277 | - /** |
|
| 278 | - * Displays the table footer. |
|
| 279 | - * |
|
| 280 | - */ |
|
| 281 | - public function print_table_footer() { |
|
| 282 | - |
|
| 283 | - ?> |
|
| 241 | + } |
|
| 242 | + |
|
| 243 | + /** |
|
| 244 | + * Adds row actions to a column |
|
| 245 | + * |
|
| 246 | + * @param string $content column content |
|
| 247 | + * @param WPInv_Subscription $subscription |
|
| 248 | + * @since 1.0.0 |
|
| 249 | + * @return string |
|
| 250 | + */ |
|
| 251 | + public function add_row_actions( $content, $subscription ) { |
|
| 252 | + |
|
| 253 | + // Prepare row actions. |
|
| 254 | + $actions = array(); |
|
| 255 | + |
|
| 256 | + // View subscription action. |
|
| 257 | + $view_url = esc_url( add_query_arg( 'subscription', (int) $subscription->get_id(), get_permalink( (int) wpinv_get_option( 'invoice_subscription_page' ) ) ) ); |
|
| 258 | + $actions['view'] = "<a href='$view_url' class='text-decoration-none'>" . __( 'Manage Subscription', 'invoicing' ) . '</a>'; |
|
| 259 | + |
|
| 260 | + // Filter the actions. |
|
| 261 | + $actions = apply_filters( 'getpaid_subscriptions_table_subscription_actions', $actions, $subscription ); |
|
| 262 | + |
|
| 263 | + $sanitized = array(); |
|
| 264 | + foreach ( $actions as $key => $action ) { |
|
| 265 | + $key = sanitize_html_class( $key ); |
|
| 266 | + $action = wp_kses_post( $action ); |
|
| 267 | + $sanitized[] = "<span class='$key'>$action</span>"; |
|
| 268 | + } |
|
| 269 | + |
|
| 270 | + $row_actions = "<small class='form-text getpaid-subscription-item-actions'>"; |
|
| 271 | + $row_actions .= implode( ' | ', $sanitized ); |
|
| 272 | + $row_actions .= '</small>'; |
|
| 273 | + |
|
| 274 | + return $content . $row_actions; |
|
| 275 | + } |
|
| 276 | + |
|
| 277 | + /** |
|
| 278 | + * Displays the table footer. |
|
| 279 | + * |
|
| 280 | + */ |
|
| 281 | + public function print_table_footer() { |
|
| 282 | + |
|
| 283 | + ?> |
|
| 284 | 284 | |
| 285 | 285 | <tfoot> |
| 286 | 286 | <tr> |
@@ -295,129 +295,129 @@ discard block |
||
| 295 | 295 | </table> |
| 296 | 296 | <?php |
| 297 | 297 | |
| 298 | - } |
|
| 298 | + } |
|
| 299 | 299 | |
| 300 | - /** |
|
| 301 | - * Displays the navigation. |
|
| 302 | - * |
|
| 303 | - * @param int $total |
|
| 304 | - */ |
|
| 305 | - public function print_navigation( $total ) { |
|
| 300 | + /** |
|
| 301 | + * Displays the navigation. |
|
| 302 | + * |
|
| 303 | + * @param int $total |
|
| 304 | + */ |
|
| 305 | + public function print_navigation( $total ) { |
|
| 306 | 306 | |
| 307 | - if ( $total < 1 ) { |
|
| 307 | + if ( $total < 1 ) { |
|
| 308 | 308 | |
| 309 | - // Out-of-bounds, run the query again without LIMIT for total count. |
|
| 310 | - $args = array( |
|
| 311 | - 'customer_in' => get_current_user_id(), |
|
| 312 | - 'fields' => 'id', |
|
| 313 | - ); |
|
| 309 | + // Out-of-bounds, run the query again without LIMIT for total count. |
|
| 310 | + $args = array( |
|
| 311 | + 'customer_in' => get_current_user_id(), |
|
| 312 | + 'fields' => 'id', |
|
| 313 | + ); |
|
| 314 | 314 | |
| 315 | - $count_query = new GetPaid_Subscriptions_Query( $args ); |
|
| 316 | - $total = $count_query->get_total(); |
|
| 317 | - } |
|
| 315 | + $count_query = new GetPaid_Subscriptions_Query( $args ); |
|
| 316 | + $total = $count_query->get_total(); |
|
| 317 | + } |
|
| 318 | 318 | |
| 319 | - // Abort if we do not have pages. |
|
| 320 | - if ( 2 > $total ) { |
|
| 321 | - return; |
|
| 322 | - } |
|
| 319 | + // Abort if we do not have pages. |
|
| 320 | + if ( 2 > $total ) { |
|
| 321 | + return; |
|
| 322 | + } |
|
| 323 | 323 | |
| 324 | - ?> |
|
| 324 | + ?> |
|
| 325 | 325 | |
| 326 | 326 | <div class="getpaid-subscriptions-pagination"> |
| 327 | 327 | <?php |
| 328 | - $big = 999999; |
|
| 329 | - |
|
| 330 | - echo getpaid_paginate_links( |
|
| 331 | - array( |
|
| 332 | - 'base' => str_replace( $big, '%#%', esc_url( get_pagenum_link( $big ) ) ), |
|
| 333 | - 'format' => '?paged=%#%', |
|
| 334 | - 'total' => (int) ceil( $total / 10 ), |
|
| 335 | - ) |
|
| 336 | - ); |
|
| 337 | - ?> |
|
| 328 | + $big = 999999; |
|
| 329 | + |
|
| 330 | + echo getpaid_paginate_links( |
|
| 331 | + array( |
|
| 332 | + 'base' => str_replace( $big, '%#%', esc_url( get_pagenum_link( $big ) ) ), |
|
| 333 | + 'format' => '?paged=%#%', |
|
| 334 | + 'total' => (int) ceil( $total / 10 ), |
|
| 335 | + ) |
|
| 336 | + ); |
|
| 337 | + ?> |
|
| 338 | 338 | </div> |
| 339 | 339 | |
| 340 | 340 | <?php |
| 341 | - } |
|
| 342 | - |
|
| 343 | - /** |
|
| 344 | - * Returns a single subscription's columns. |
|
| 345 | - * |
|
| 346 | - * @param WPInv_Subscription $subscription |
|
| 347 | - * |
|
| 348 | - * @return array |
|
| 349 | - */ |
|
| 350 | - public function get_single_subscription_columns( $subscription ) { |
|
| 351 | - |
|
| 352 | - // Prepare subscription detail columns. |
|
| 353 | - $fields = apply_filters( |
|
| 354 | - 'getpaid_single_subscription_details_fields', |
|
| 355 | - array( |
|
| 356 | - 'status' => __( 'Status', 'invoicing' ), |
|
| 357 | - 'initial_amount' => __( 'Initial amount', 'invoicing' ), |
|
| 358 | - 'recurring_amount' => __( 'Recurring amount', 'invoicing' ), |
|
| 359 | - 'start_date' => __( 'Start date', 'invoicing' ), |
|
| 360 | - 'expiry_date' => __( 'Next payment', 'invoicing' ), |
|
| 361 | - 'payments' => __( 'Payments', 'invoicing' ), |
|
| 362 | - 'item' => __( 'Item', 'invoicing' ), |
|
| 363 | - ), |
|
| 364 | - $subscription |
|
| 365 | - ); |
|
| 366 | - |
|
| 367 | - if ( ! $subscription->is_active() || $subscription->is_last_renewal() ) { |
|
| 368 | - $fields['expiry_date'] = __( 'End date', 'invoicing' ); |
|
| 369 | - } |
|
| 370 | - |
|
| 371 | - if ( $subscription->get_initial_amount() == $subscription->get_recurring_amount() ) { |
|
| 372 | - unset( $fields['initial_amount'] ); |
|
| 373 | - } |
|
| 374 | - |
|
| 375 | - return $fields; |
|
| 376 | - } |
|
| 377 | - |
|
| 378 | - /** |
|
| 379 | - * Displays a single subscription. |
|
| 380 | - * |
|
| 381 | - * @param string $subscription |
|
| 382 | - * |
|
| 383 | - * @return string |
|
| 384 | - */ |
|
| 385 | - public function display_single_subscription( $subscription ) { |
|
| 386 | - |
|
| 387 | - // Fetch the subscription. |
|
| 388 | - $subscription = new WPInv_Subscription( (int) $subscription ); |
|
| 389 | - |
|
| 390 | - if ( ! $subscription->get_id() ) { |
|
| 391 | - |
|
| 392 | - return aui()->alert( |
|
| 393 | - array( |
|
| 394 | - 'content' => wp_kses_post( __( 'Subscription not found.', 'invoicing' ) ), |
|
| 395 | - 'type' => 'error', |
|
| 396 | - ) |
|
| 397 | - ); |
|
| 398 | - |
|
| 399 | - } |
|
| 400 | - |
|
| 401 | - // Ensure that the user owns this subscription key. |
|
| 402 | - if ( get_current_user_id() != $subscription->get_customer_id() ) { |
|
| 403 | - |
|
| 404 | - return aui()->alert( |
|
| 405 | - array( |
|
| 406 | - 'content' => wp_kses_post( __( 'You do not have permission to view this subscription. Ensure that you are logged in to the account that owns the subscription.', 'invoicing' ) ), |
|
| 407 | - 'type' => 'error', |
|
| 408 | - ) |
|
| 409 | - ); |
|
| 410 | - |
|
| 411 | - } |
|
| 412 | - |
|
| 413 | - return wpinv_get_template_html( |
|
| 414 | - 'subscriptions/subscription-details.php', |
|
| 415 | - array( |
|
| 416 | - 'subscription' => $subscription, |
|
| 417 | - 'widget' => $this |
|
| 418 | - ) |
|
| 419 | - ); |
|
| 420 | - |
|
| 421 | - } |
|
| 341 | + } |
|
| 342 | + |
|
| 343 | + /** |
|
| 344 | + * Returns a single subscription's columns. |
|
| 345 | + * |
|
| 346 | + * @param WPInv_Subscription $subscription |
|
| 347 | + * |
|
| 348 | + * @return array |
|
| 349 | + */ |
|
| 350 | + public function get_single_subscription_columns( $subscription ) { |
|
| 351 | + |
|
| 352 | + // Prepare subscription detail columns. |
|
| 353 | + $fields = apply_filters( |
|
| 354 | + 'getpaid_single_subscription_details_fields', |
|
| 355 | + array( |
|
| 356 | + 'status' => __( 'Status', 'invoicing' ), |
|
| 357 | + 'initial_amount' => __( 'Initial amount', 'invoicing' ), |
|
| 358 | + 'recurring_amount' => __( 'Recurring amount', 'invoicing' ), |
|
| 359 | + 'start_date' => __( 'Start date', 'invoicing' ), |
|
| 360 | + 'expiry_date' => __( 'Next payment', 'invoicing' ), |
|
| 361 | + 'payments' => __( 'Payments', 'invoicing' ), |
|
| 362 | + 'item' => __( 'Item', 'invoicing' ), |
|
| 363 | + ), |
|
| 364 | + $subscription |
|
| 365 | + ); |
|
| 366 | + |
|
| 367 | + if ( ! $subscription->is_active() || $subscription->is_last_renewal() ) { |
|
| 368 | + $fields['expiry_date'] = __( 'End date', 'invoicing' ); |
|
| 369 | + } |
|
| 370 | + |
|
| 371 | + if ( $subscription->get_initial_amount() == $subscription->get_recurring_amount() ) { |
|
| 372 | + unset( $fields['initial_amount'] ); |
|
| 373 | + } |
|
| 374 | + |
|
| 375 | + return $fields; |
|
| 376 | + } |
|
| 377 | + |
|
| 378 | + /** |
|
| 379 | + * Displays a single subscription. |
|
| 380 | + * |
|
| 381 | + * @param string $subscription |
|
| 382 | + * |
|
| 383 | + * @return string |
|
| 384 | + */ |
|
| 385 | + public function display_single_subscription( $subscription ) { |
|
| 386 | + |
|
| 387 | + // Fetch the subscription. |
|
| 388 | + $subscription = new WPInv_Subscription( (int) $subscription ); |
|
| 389 | + |
|
| 390 | + if ( ! $subscription->get_id() ) { |
|
| 391 | + |
|
| 392 | + return aui()->alert( |
|
| 393 | + array( |
|
| 394 | + 'content' => wp_kses_post( __( 'Subscription not found.', 'invoicing' ) ), |
|
| 395 | + 'type' => 'error', |
|
| 396 | + ) |
|
| 397 | + ); |
|
| 398 | + |
|
| 399 | + } |
|
| 400 | + |
|
| 401 | + // Ensure that the user owns this subscription key. |
|
| 402 | + if ( get_current_user_id() != $subscription->get_customer_id() ) { |
|
| 403 | + |
|
| 404 | + return aui()->alert( |
|
| 405 | + array( |
|
| 406 | + 'content' => wp_kses_post( __( 'You do not have permission to view this subscription. Ensure that you are logged in to the account that owns the subscription.', 'invoicing' ) ), |
|
| 407 | + 'type' => 'error', |
|
| 408 | + ) |
|
| 409 | + ); |
|
| 410 | + |
|
| 411 | + } |
|
| 412 | + |
|
| 413 | + return wpinv_get_template_html( |
|
| 414 | + 'subscriptions/subscription-details.php', |
|
| 415 | + array( |
|
| 416 | + 'subscription' => $subscription, |
|
| 417 | + 'widget' => $this |
|
| 418 | + ) |
|
| 419 | + ); |
|
| 420 | + |
|
| 421 | + } |
|
| 422 | 422 | |
| 423 | 423 | } |
@@ -6,7 +6,7 @@ discard block |
||
| 6 | 6 | */ |
| 7 | 7 | |
| 8 | 8 | if ( ! defined( 'ABSPATH' ) ) { |
| 9 | - exit; // Exit if accessed directly |
|
| 9 | + exit; // Exit if accessed directly |
|
| 10 | 10 | } |
| 11 | 11 | |
| 12 | 12 | /** |
@@ -15,10 +15,10 @@ discard block |
||
| 15 | 15 | class GetPaid_Meta_Box_Invoice_Subscription { |
| 16 | 16 | |
| 17 | 17 | /** |
| 18 | - * Output the subscription metabox. |
|
| 19 | - * |
|
| 20 | - * @param WP_Post $post |
|
| 21 | - */ |
|
| 18 | + * Output the subscription metabox. |
|
| 19 | + * |
|
| 20 | + * @param WP_Post $post |
|
| 21 | + */ |
|
| 22 | 22 | public static function output( $post ) { |
| 23 | 23 | |
| 24 | 24 | // Fetch the invoice. |
@@ -34,10 +34,10 @@ discard block |
||
| 34 | 34 | } |
| 35 | 35 | |
| 36 | 36 | /** |
| 37 | - * Output the subscription invoices. |
|
| 38 | - * |
|
| 39 | - * @param WP_Post $post |
|
| 40 | - */ |
|
| 37 | + * Output the subscription invoices. |
|
| 38 | + * |
|
| 39 | + * @param WP_Post $post |
|
| 40 | + */ |
|
| 41 | 41 | public static function output_invoices( $post ) { |
| 42 | 42 | |
| 43 | 43 | // Fetch the invoice. |
@@ -40,86 +40,86 @@ discard block |
||
| 40 | 40 | <tr class="wpinv-item wpinv-item-<?php echo $invoice_status = $invoice->get_status(); ?>"> |
| 41 | 41 | <?php |
| 42 | 42 | |
| 43 | - foreach ( wpinv_get_user_invoices_columns() as $column_id => $column_name ) : |
|
| 43 | + foreach ( wpinv_get_user_invoices_columns() as $column_id => $column_name ) : |
|
| 44 | 44 | |
| 45 | - $column_id = sanitize_html_class( $column_id ); |
|
| 46 | - $class = empty( $column_name['class'] ) ? '' : sanitize_html_class( $column_name['class'] ); |
|
| 45 | + $column_id = sanitize_html_class( $column_id ); |
|
| 46 | + $class = empty( $column_name['class'] ) ? '' : sanitize_html_class( $column_name['class'] ); |
|
| 47 | 47 | |
| 48 | - echo "<td class='$column_id $class'>"; |
|
| 49 | - switch ( $column_id ) { |
|
| 48 | + echo "<td class='$column_id $class'>"; |
|
| 49 | + switch ( $column_id ) { |
|
| 50 | 50 | |
| 51 | - case 'invoice-number': |
|
| 52 | - echo wpinv_invoice_link( $invoice ); |
|
| 53 | - break; |
|
| 51 | + case 'invoice-number': |
|
| 52 | + echo wpinv_invoice_link( $invoice ); |
|
| 53 | + break; |
|
| 54 | 54 | |
| 55 | - case 'created-date': |
|
| 56 | - echo getpaid_format_date_value( $invoice->get_date_created() ); |
|
| 57 | - break; |
|
| 55 | + case 'created-date': |
|
| 56 | + echo getpaid_format_date_value( $invoice->get_date_created() ); |
|
| 57 | + break; |
|
| 58 | 58 | |
| 59 | - case 'payment-date': |
|
| 59 | + case 'payment-date': |
|
| 60 | 60 | |
| 61 | - if ( $invoice->needs_payment() ) { |
|
| 62 | - echo "—"; |
|
| 63 | - } else { |
|
| 64 | - echo getpaid_format_date_value( $invoice->get_date_completed() ); |
|
| 65 | - } |
|
| 61 | + if ( $invoice->needs_payment() ) { |
|
| 62 | + echo "—"; |
|
| 63 | + } else { |
|
| 64 | + echo getpaid_format_date_value( $invoice->get_date_completed() ); |
|
| 65 | + } |
|
| 66 | 66 | |
| 67 | - break; |
|
| 67 | + break; |
|
| 68 | 68 | |
| 69 | - case 'invoice-status': |
|
| 70 | - echo $invoice->get_status_label_html(); |
|
| 69 | + case 'invoice-status': |
|
| 70 | + echo $invoice->get_status_label_html(); |
|
| 71 | 71 | |
| 72 | - break; |
|
| 72 | + break; |
|
| 73 | 73 | |
| 74 | - case 'invoice-total': |
|
| 75 | - echo wpinv_price( wpinv_format_amount( $invoice->get_total() ) ); |
|
| 74 | + case 'invoice-total': |
|
| 75 | + echo wpinv_price( wpinv_format_amount( $invoice->get_total() ) ); |
|
| 76 | 76 | |
| 77 | - break; |
|
| 77 | + break; |
|
| 78 | 78 | |
| 79 | - case 'invoice-actions': |
|
| 79 | + case 'invoice-actions': |
|
| 80 | 80 | |
| 81 | - $actions = array( |
|
| 81 | + $actions = array( |
|
| 82 | 82 | |
| 83 | - 'pay' => array( |
|
| 84 | - 'url' => $invoice->get_checkout_payment_url(), |
|
| 85 | - 'name' => __( 'Pay Now', 'invoicing' ), |
|
| 83 | + 'pay' => array( |
|
| 84 | + 'url' => $invoice->get_checkout_payment_url(), |
|
| 85 | + 'name' => __( 'Pay Now', 'invoicing' ), |
|
| 86 | 86 | 'class' => 'btn-success' |
| 87 | - ), |
|
| 87 | + ), |
|
| 88 | 88 | |
| 89 | 89 | 'print' => array( |
| 90 | - 'url' => $invoice->get_view_url(), |
|
| 91 | - 'name' => __( 'View Invoice', 'invoicing' ), |
|
| 90 | + 'url' => $invoice->get_view_url(), |
|
| 91 | + 'name' => __( 'View Invoice', 'invoicing' ), |
|
| 92 | 92 | 'class' => 'btn-secondary', |
| 93 | 93 | 'attrs' => 'target="_blank"' |
| 94 | - ) |
|
| 95 | - ); |
|
| 94 | + ) |
|
| 95 | + ); |
|
| 96 | 96 | |
| 97 | - if ( ! $invoice->needs_payment() ) { |
|
| 98 | - unset( $actions['pay'] ); |
|
| 99 | - } |
|
| 97 | + if ( ! $invoice->needs_payment() ) { |
|
| 98 | + unset( $actions['pay'] ); |
|
| 99 | + } |
|
| 100 | 100 | |
| 101 | - $actions = apply_filters( 'wpinv_user_invoices_actions', $actions, $invoice ); |
|
| 101 | + $actions = apply_filters( 'wpinv_user_invoices_actions', $actions, $invoice ); |
|
| 102 | 102 | |
| 103 | - foreach ( $actions as $key => $action ) { |
|
| 104 | - $class = !empty($action['class']) ? sanitize_html_class($action['class']) : ''; |
|
| 105 | - echo '<a href="' . esc_url( $action['url'] ) . '" class="btn btn-sm btn-block ' . $class . ' ' . sanitize_html_class( $key ) . '" ' . ( !empty($action['attrs']) ? $action['attrs'] : '' ) . '>' . $action['name'] . '</a>'; |
|
| 106 | - } |
|
| 103 | + foreach ( $actions as $key => $action ) { |
|
| 104 | + $class = !empty($action['class']) ? sanitize_html_class($action['class']) : ''; |
|
| 105 | + echo '<a href="' . esc_url( $action['url'] ) . '" class="btn btn-sm btn-block ' . $class . ' ' . sanitize_html_class( $key ) . '" ' . ( !empty($action['attrs']) ? $action['attrs'] : '' ) . '>' . $action['name'] . '</a>'; |
|
| 106 | + } |
|
| 107 | 107 | |
| 108 | - break; |
|
| 108 | + break; |
|
| 109 | 109 | |
| 110 | - default: |
|
| 111 | - do_action( "wpinv_user_invoices_column_$column_id", $invoice ); |
|
| 112 | - break; |
|
| 110 | + default: |
|
| 111 | + do_action( "wpinv_user_invoices_column_$column_id", $invoice ); |
|
| 112 | + break; |
|
| 113 | 113 | |
| 114 | 114 | |
| 115 | - } |
|
| 115 | + } |
|
| 116 | 116 | |
| 117 | - do_action( "wpinv_user_invoices_column_after_$column_id", $invoice ); |
|
| 117 | + do_action( "wpinv_user_invoices_column_after_$column_id", $invoice ); |
|
| 118 | 118 | |
| 119 | - echo '</td>'; |
|
| 119 | + echo '</td>'; |
|
| 120 | 120 | |
| 121 | - endforeach; |
|
| 122 | - ?> |
|
| 121 | + endforeach; |
|
| 122 | + ?> |
|
| 123 | 123 | </tr> |
| 124 | 124 | |
| 125 | 125 | <?php endforeach; ?> |
@@ -132,14 +132,14 @@ discard block |
||
| 132 | 132 | <?php if ( 1 < $invoices->max_num_pages ) : ?> |
| 133 | 133 | <div class="invoicing-Pagination"> |
| 134 | 134 | <?php |
| 135 | - $big = 999999; |
|
| 136 | - |
|
| 137 | - echo paginate_links( array( |
|
| 138 | - 'base' => str_replace( $big, '%#%', esc_url( get_pagenum_link( $big ) ) ), |
|
| 139 | - 'format' => '?paged=%#%', |
|
| 140 | - 'total' => $invoices->max_num_pages, |
|
| 141 | - ) ); |
|
| 142 | - ?> |
|
| 135 | + $big = 999999; |
|
| 136 | + |
|
| 137 | + echo paginate_links( array( |
|
| 138 | + 'base' => str_replace( $big, '%#%', esc_url( get_pagenum_link( $big ) ) ), |
|
| 139 | + 'format' => '?paged=%#%', |
|
| 140 | + 'total' => $invoices->max_num_pages, |
|
| 141 | + ) ); |
|
| 142 | + ?> |
|
| 143 | 143 | </div> |
| 144 | 144 | <?php endif; ?> |
| 145 | 145 | |
@@ -12,186 +12,186 @@ |
||
| 12 | 12 | */ |
| 13 | 13 | class GetPaid_Metaboxes { |
| 14 | 14 | |
| 15 | - /** |
|
| 16 | - * Only save metaboxes once. |
|
| 17 | - * |
|
| 18 | - * @var boolean |
|
| 19 | - */ |
|
| 20 | - private static $saved_meta_boxes = false; |
|
| 15 | + /** |
|
| 16 | + * Only save metaboxes once. |
|
| 17 | + * |
|
| 18 | + * @var boolean |
|
| 19 | + */ |
|
| 20 | + private static $saved_meta_boxes = false; |
|
| 21 | 21 | |
| 22 | 22 | /** |
| 23 | - * Hook in methods. |
|
| 24 | - */ |
|
| 25 | - public static function init() { |
|
| 26 | - |
|
| 27 | - // Register metaboxes. |
|
| 28 | - add_action( 'add_meta_boxes', 'GetPaid_Metaboxes::add_meta_boxes', 5, 2 ); |
|
| 29 | - |
|
| 30 | - // Remove metaboxes. |
|
| 31 | - add_action( 'add_meta_boxes', 'GetPaid_Metaboxes::remove_meta_boxes', 30 ); |
|
| 32 | - |
|
| 33 | - // Rename metaboxes. |
|
| 34 | - add_action( 'add_meta_boxes', 'GetPaid_Metaboxes::rename_meta_boxes', 45 ); |
|
| 35 | - |
|
| 36 | - // Save metaboxes. |
|
| 37 | - add_action( 'save_post', 'GetPaid_Metaboxes::save_meta_boxes', 1, 2 ); |
|
| 38 | - } |
|
| 39 | - |
|
| 40 | - /** |
|
| 41 | - * Register core metaboxes. |
|
| 42 | - */ |
|
| 43 | - public static function add_meta_boxes( $post_type, $post ) { |
|
| 44 | - global $wpinv_euvat; |
|
| 45 | - |
|
| 46 | - // For invoices... |
|
| 47 | - if ( $post_type == 'wpi_invoice' ) { |
|
| 48 | - $invoice = new WPInv_Invoice( $post ); |
|
| 49 | - |
|
| 50 | - // Resend invoice. |
|
| 51 | - if ( ! $invoice->is_draft() && ! $invoice->is_paid() ) { |
|
| 52 | - add_meta_box( 'wpinv-mb-resend-invoice', __( 'Resend Invoice', 'invoicing' ), 'GetPaid_Meta_Box_Resend_Invoice::output', 'wpi_invoice', 'side', 'low' ); |
|
| 53 | - } |
|
| 54 | - |
|
| 55 | - // Subscriptions. |
|
| 56 | - $subscription = getpaid_get_invoice_subscription( $invoice ); |
|
| 57 | - if ( ! empty( $subscription ) ) { |
|
| 58 | - add_meta_box( 'wpinv-mb-subscriptions', __( 'Subscription Details', 'invoicing' ), 'GetPaid_Meta_Box_Invoice_Subscription::output', 'wpi_invoice', 'advanced' ); |
|
| 59 | - add_meta_box( 'wpinv-mb-subscription-invoices', __( 'Related Payments', 'invoicing' ), 'GetPaid_Meta_Box_Invoice_Subscription::output_invoices', 'wpi_invoice', 'advanced' ); |
|
| 60 | - } |
|
| 61 | - |
|
| 62 | - // Invoice details. |
|
| 63 | - add_meta_box( 'wpinv-details', __( 'Invoice Details', 'invoicing' ), 'GetPaid_Meta_Box_Invoice_Details::output', 'wpi_invoice', 'side', 'default' ); |
|
| 23 | + * Hook in methods. |
|
| 24 | + */ |
|
| 25 | + public static function init() { |
|
| 26 | + |
|
| 27 | + // Register metaboxes. |
|
| 28 | + add_action( 'add_meta_boxes', 'GetPaid_Metaboxes::add_meta_boxes', 5, 2 ); |
|
| 29 | + |
|
| 30 | + // Remove metaboxes. |
|
| 31 | + add_action( 'add_meta_boxes', 'GetPaid_Metaboxes::remove_meta_boxes', 30 ); |
|
| 32 | + |
|
| 33 | + // Rename metaboxes. |
|
| 34 | + add_action( 'add_meta_boxes', 'GetPaid_Metaboxes::rename_meta_boxes', 45 ); |
|
| 35 | + |
|
| 36 | + // Save metaboxes. |
|
| 37 | + add_action( 'save_post', 'GetPaid_Metaboxes::save_meta_boxes', 1, 2 ); |
|
| 38 | + } |
|
| 39 | + |
|
| 40 | + /** |
|
| 41 | + * Register core metaboxes. |
|
| 42 | + */ |
|
| 43 | + public static function add_meta_boxes( $post_type, $post ) { |
|
| 44 | + global $wpinv_euvat; |
|
| 45 | + |
|
| 46 | + // For invoices... |
|
| 47 | + if ( $post_type == 'wpi_invoice' ) { |
|
| 48 | + $invoice = new WPInv_Invoice( $post ); |
|
| 49 | + |
|
| 50 | + // Resend invoice. |
|
| 51 | + if ( ! $invoice->is_draft() && ! $invoice->is_paid() ) { |
|
| 52 | + add_meta_box( 'wpinv-mb-resend-invoice', __( 'Resend Invoice', 'invoicing' ), 'GetPaid_Meta_Box_Resend_Invoice::output', 'wpi_invoice', 'side', 'low' ); |
|
| 53 | + } |
|
| 54 | + |
|
| 55 | + // Subscriptions. |
|
| 56 | + $subscription = getpaid_get_invoice_subscription( $invoice ); |
|
| 57 | + if ( ! empty( $subscription ) ) { |
|
| 58 | + add_meta_box( 'wpinv-mb-subscriptions', __( 'Subscription Details', 'invoicing' ), 'GetPaid_Meta_Box_Invoice_Subscription::output', 'wpi_invoice', 'advanced' ); |
|
| 59 | + add_meta_box( 'wpinv-mb-subscription-invoices', __( 'Related Payments', 'invoicing' ), 'GetPaid_Meta_Box_Invoice_Subscription::output_invoices', 'wpi_invoice', 'advanced' ); |
|
| 60 | + } |
|
| 61 | + |
|
| 62 | + // Invoice details. |
|
| 63 | + add_meta_box( 'wpinv-details', __( 'Invoice Details', 'invoicing' ), 'GetPaid_Meta_Box_Invoice_Details::output', 'wpi_invoice', 'side', 'default' ); |
|
| 64 | 64 | |
| 65 | - // Payment details. |
|
| 66 | - if ( ! $invoice->is_draft() ) { |
|
| 67 | - add_meta_box( 'wpinv-payment-meta', __( 'Payment Meta', 'invoicing' ), 'GetPaid_Meta_Box_Invoice_Payment_Meta::output', 'wpi_invoice', 'side', 'default' ); |
|
| 68 | - } |
|
| 65 | + // Payment details. |
|
| 66 | + if ( ! $invoice->is_draft() ) { |
|
| 67 | + add_meta_box( 'wpinv-payment-meta', __( 'Payment Meta', 'invoicing' ), 'GetPaid_Meta_Box_Invoice_Payment_Meta::output', 'wpi_invoice', 'side', 'default' ); |
|
| 68 | + } |
|
| 69 | 69 | |
| 70 | - // Billing details. |
|
| 71 | - add_meta_box( 'wpinv-address', __( 'Billing Details', 'invoicing' ), 'GetPaid_Meta_Box_Invoice_Address::output', 'wpi_invoice', 'normal', 'high' ); |
|
| 70 | + // Billing details. |
|
| 71 | + add_meta_box( 'wpinv-address', __( 'Billing Details', 'invoicing' ), 'GetPaid_Meta_Box_Invoice_Address::output', 'wpi_invoice', 'normal', 'high' ); |
|
| 72 | 72 | |
| 73 | - // Invoice items. |
|
| 74 | - add_meta_box( 'wpinv-items', __( 'Invoice Items', 'invoicing' ), 'GetPaid_Meta_Box_Invoice_Items::output', 'wpi_invoice', 'normal', 'high' ); |
|
| 73 | + // Invoice items. |
|
| 74 | + add_meta_box( 'wpinv-items', __( 'Invoice Items', 'invoicing' ), 'GetPaid_Meta_Box_Invoice_Items::output', 'wpi_invoice', 'normal', 'high' ); |
|
| 75 | 75 | |
| 76 | - // Invoice notes. |
|
| 77 | - add_meta_box( 'wpinv-notes', __( 'Invoice Notes', 'invoicing' ), 'WPInv_Meta_Box_Notes::output', 'wpi_invoice', 'side', 'low' ); |
|
| 76 | + // Invoice notes. |
|
| 77 | + add_meta_box( 'wpinv-notes', __( 'Invoice Notes', 'invoicing' ), 'WPInv_Meta_Box_Notes::output', 'wpi_invoice', 'side', 'low' ); |
|
| 78 | 78 | |
| 79 | - // Payment form information. |
|
| 80 | - if ( ! empty( $post->ID ) && get_post_meta( $post->ID, 'payment_form_data', true ) ) { |
|
| 81 | - add_meta_box( 'wpinv-invoice-payment-form-details', __( 'Payment Form Details', 'invoicing' ), 'WPInv_Meta_Box_Payment_Form::output_details', 'wpi_invoice', 'side', 'high' ); |
|
| 82 | - } |
|
| 83 | - } |
|
| 79 | + // Payment form information. |
|
| 80 | + if ( ! empty( $post->ID ) && get_post_meta( $post->ID, 'payment_form_data', true ) ) { |
|
| 81 | + add_meta_box( 'wpinv-invoice-payment-form-details', __( 'Payment Form Details', 'invoicing' ), 'WPInv_Meta_Box_Payment_Form::output_details', 'wpi_invoice', 'side', 'high' ); |
|
| 82 | + } |
|
| 83 | + } |
|
| 84 | 84 | |
| 85 | - // For payment forms. |
|
| 86 | - if ( $post_type == 'wpi_payment_form' ) { |
|
| 85 | + // For payment forms. |
|
| 86 | + if ( $post_type == 'wpi_payment_form' ) { |
|
| 87 | 87 | |
| 88 | - // Design payment form. |
|
| 89 | - add_meta_box( 'wpinv-payment-form-design', __( 'Payment Form', 'invoicing' ), 'GetPaid_Meta_Box_Payment_Form::output', 'wpi_payment_form', 'normal' ); |
|
| 88 | + // Design payment form. |
|
| 89 | + add_meta_box( 'wpinv-payment-form-design', __( 'Payment Form', 'invoicing' ), 'GetPaid_Meta_Box_Payment_Form::output', 'wpi_payment_form', 'normal' ); |
|
| 90 | 90 | |
| 91 | - // Payment form information. |
|
| 92 | - add_meta_box( 'wpinv-payment-form-info', __( 'Details', 'invoicing' ), 'GetPaid_Meta_Box_Payment_Form_Info::output', 'wpi_payment_form', 'side' ); |
|
| 91 | + // Payment form information. |
|
| 92 | + add_meta_box( 'wpinv-payment-form-info', __( 'Details', 'invoicing' ), 'GetPaid_Meta_Box_Payment_Form_Info::output', 'wpi_payment_form', 'side' ); |
|
| 93 | 93 | |
| 94 | - } |
|
| 94 | + } |
|
| 95 | 95 | |
| 96 | - // For invoice items. |
|
| 97 | - if ( $post_type == 'wpi_item' ) { |
|
| 96 | + // For invoice items. |
|
| 97 | + if ( $post_type == 'wpi_item' ) { |
|
| 98 | 98 | |
| 99 | - // Item details. |
|
| 100 | - add_meta_box( 'wpinv_item_details', __( 'Item Details', 'invoicing' ), 'GetPaid_Meta_Box_Item_Details::output', 'wpi_item', 'normal', 'high' ); |
|
| 99 | + // Item details. |
|
| 100 | + add_meta_box( 'wpinv_item_details', __( 'Item Details', 'invoicing' ), 'GetPaid_Meta_Box_Item_Details::output', 'wpi_item', 'normal', 'high' ); |
|
| 101 | 101 | |
| 102 | - // If taxes are enabled, register the tax metabox. |
|
| 103 | - if ( $wpinv_euvat->allow_vat_rules() || $wpinv_euvat->allow_vat_classes() ) { |
|
| 104 | - add_meta_box( 'wpinv_item_vat', __( 'VAT / Tax', 'invoicing' ), 'GetPaid_Meta_Box_Item_VAT::output', 'wpi_item', 'normal', 'high' ); |
|
| 105 | - } |
|
| 102 | + // If taxes are enabled, register the tax metabox. |
|
| 103 | + if ( $wpinv_euvat->allow_vat_rules() || $wpinv_euvat->allow_vat_classes() ) { |
|
| 104 | + add_meta_box( 'wpinv_item_vat', __( 'VAT / Tax', 'invoicing' ), 'GetPaid_Meta_Box_Item_VAT::output', 'wpi_item', 'normal', 'high' ); |
|
| 105 | + } |
|
| 106 | 106 | |
| 107 | - // Item info. |
|
| 108 | - add_meta_box( 'wpinv_field_item_info', __( 'Item info', 'invoicing' ), 'GetPaid_Meta_Box_Item_Info::output', 'wpi_item', 'side', 'core' ); |
|
| 107 | + // Item info. |
|
| 108 | + add_meta_box( 'wpinv_field_item_info', __( 'Item info', 'invoicing' ), 'GetPaid_Meta_Box_Item_Info::output', 'wpi_item', 'side', 'core' ); |
|
| 109 | 109 | |
| 110 | - } |
|
| 110 | + } |
|
| 111 | 111 | |
| 112 | - // For invoice discounts. |
|
| 113 | - if ( $post_type == 'wpi_discount' ) { |
|
| 114 | - add_meta_box( 'wpinv_discount_details', __( 'Discount Details', 'invoicing' ), 'GetPaid_Meta_Box_Discount_Details::output', 'wpi_discount', 'normal', 'high' ); |
|
| 115 | - } |
|
| 112 | + // For invoice discounts. |
|
| 113 | + if ( $post_type == 'wpi_discount' ) { |
|
| 114 | + add_meta_box( 'wpinv_discount_details', __( 'Discount Details', 'invoicing' ), 'GetPaid_Meta_Box_Discount_Details::output', 'wpi_discount', 'normal', 'high' ); |
|
| 115 | + } |
|
| 116 | 116 | |
| 117 | 117 | |
| 118 | - } |
|
| 118 | + } |
|
| 119 | 119 | |
| 120 | - /** |
|
| 121 | - * Remove some metaboxes. |
|
| 122 | - */ |
|
| 123 | - public static function remove_meta_boxes() { |
|
| 124 | - remove_meta_box( 'wpseo_meta', 'wpi_invoice', 'normal' ); |
|
| 125 | - } |
|
| 120 | + /** |
|
| 121 | + * Remove some metaboxes. |
|
| 122 | + */ |
|
| 123 | + public static function remove_meta_boxes() { |
|
| 124 | + remove_meta_box( 'wpseo_meta', 'wpi_invoice', 'normal' ); |
|
| 125 | + } |
|
| 126 | 126 | |
| 127 | - /** |
|
| 128 | - * Rename other metaboxes. |
|
| 129 | - */ |
|
| 130 | - public static function rename_meta_boxes() { |
|
| 127 | + /** |
|
| 128 | + * Rename other metaboxes. |
|
| 129 | + */ |
|
| 130 | + public static function rename_meta_boxes() { |
|
| 131 | 131 | |
| 132 | - } |
|
| 133 | - |
|
| 134 | - /** |
|
| 135 | - * Check if we're saving, then trigger an action based on the post type. |
|
| 136 | - * |
|
| 137 | - * @param int $post_id Post ID. |
|
| 138 | - * @param object $post Post object. |
|
| 139 | - */ |
|
| 140 | - public static function save_meta_boxes( $post_id, $post ) { |
|
| 141 | - $post_id = absint( $post_id ); |
|
| 142 | - $data = wp_unslash( $_POST ); |
|
| 143 | - |
|
| 144 | - // Do not save for ajax requests. |
|
| 145 | - if ( ( defined( 'DOING_AJAX') && DOING_AJAX ) || isset( $_REQUEST['bulk_edit'] ) ) { |
|
| 146 | - return; |
|
| 147 | - } |
|
| 148 | - |
|
| 149 | - // $post_id and $post are required |
|
| 150 | - if ( empty( $post_id ) || empty( $post ) || self::$saved_meta_boxes ) { |
|
| 151 | - return; |
|
| 152 | - } |
|
| 153 | - |
|
| 154 | - // Dont' save meta boxes for revisions or autosaves. |
|
| 155 | - if ( ( defined( 'DOING_AUTOSAVE' ) && DOING_AUTOSAVE ) || is_int( wp_is_post_revision( $post ) ) || is_int( wp_is_post_autosave( $post ) ) ) { |
|
| 156 | - return; |
|
| 157 | - } |
|
| 158 | - |
|
| 159 | - // Check the nonce. |
|
| 160 | - if ( empty( $data['getpaid_meta_nonce'] ) || ! wp_verify_nonce( $data['getpaid_meta_nonce'], 'getpaid_meta_nonce' ) ) { |
|
| 161 | - return; |
|
| 162 | - } |
|
| 163 | - |
|
| 164 | - // Check the post being saved == the $post_id to prevent triggering this call for other save_post events. |
|
| 165 | - if ( empty( $data['post_ID'] ) || absint( $data['post_ID'] ) !== $post_id ) { |
|
| 166 | - return; |
|
| 167 | - } |
|
| 168 | - |
|
| 169 | - // Check user has permission to edit. |
|
| 170 | - if ( ! current_user_can( 'edit_post', $post_id ) ) { |
|
| 171 | - return; |
|
| 172 | - } |
|
| 173 | - |
|
| 174 | - // Ensure this is our post type. |
|
| 175 | - $post_types_map = array( |
|
| 176 | - 'wpi_invoice' => 'GetPaid_Meta_Box_Invoice_Address', |
|
| 177 | - 'wpi_quote' => 'GetPaid_Meta_Box_Invoice_Address', |
|
| 178 | - 'wpi_item' => 'GetPaid_Meta_Box_Item_Details', |
|
| 179 | - 'wpi_payment_form' => 'GetPaid_Meta_Box_Payment_Form', |
|
| 180 | - 'wpi_discount' => 'GetPaid_Meta_Box_Discount_Details', |
|
| 181 | - ); |
|
| 182 | - |
|
| 183 | - // Is this our post type? |
|
| 184 | - if ( empty( $post->post_type ) || ! isset( $post_types_map[ $post->post_type ] ) ) { |
|
| 185 | - return; |
|
| 186 | - } |
|
| 187 | - |
|
| 188 | - // We need this save event to run once to avoid potential endless loops. |
|
| 189 | - self::$saved_meta_boxes = true; |
|
| 132 | + } |
|
| 133 | + |
|
| 134 | + /** |
|
| 135 | + * Check if we're saving, then trigger an action based on the post type. |
|
| 136 | + * |
|
| 137 | + * @param int $post_id Post ID. |
|
| 138 | + * @param object $post Post object. |
|
| 139 | + */ |
|
| 140 | + public static function save_meta_boxes( $post_id, $post ) { |
|
| 141 | + $post_id = absint( $post_id ); |
|
| 142 | + $data = wp_unslash( $_POST ); |
|
| 143 | + |
|
| 144 | + // Do not save for ajax requests. |
|
| 145 | + if ( ( defined( 'DOING_AJAX') && DOING_AJAX ) || isset( $_REQUEST['bulk_edit'] ) ) { |
|
| 146 | + return; |
|
| 147 | + } |
|
| 148 | + |
|
| 149 | + // $post_id and $post are required |
|
| 150 | + if ( empty( $post_id ) || empty( $post ) || self::$saved_meta_boxes ) { |
|
| 151 | + return; |
|
| 152 | + } |
|
| 153 | + |
|
| 154 | + // Dont' save meta boxes for revisions or autosaves. |
|
| 155 | + if ( ( defined( 'DOING_AUTOSAVE' ) && DOING_AUTOSAVE ) || is_int( wp_is_post_revision( $post ) ) || is_int( wp_is_post_autosave( $post ) ) ) { |
|
| 156 | + return; |
|
| 157 | + } |
|
| 158 | + |
|
| 159 | + // Check the nonce. |
|
| 160 | + if ( empty( $data['getpaid_meta_nonce'] ) || ! wp_verify_nonce( $data['getpaid_meta_nonce'], 'getpaid_meta_nonce' ) ) { |
|
| 161 | + return; |
|
| 162 | + } |
|
| 163 | + |
|
| 164 | + // Check the post being saved == the $post_id to prevent triggering this call for other save_post events. |
|
| 165 | + if ( empty( $data['post_ID'] ) || absint( $data['post_ID'] ) !== $post_id ) { |
|
| 166 | + return; |
|
| 167 | + } |
|
| 168 | + |
|
| 169 | + // Check user has permission to edit. |
|
| 170 | + if ( ! current_user_can( 'edit_post', $post_id ) ) { |
|
| 171 | + return; |
|
| 172 | + } |
|
| 173 | + |
|
| 174 | + // Ensure this is our post type. |
|
| 175 | + $post_types_map = array( |
|
| 176 | + 'wpi_invoice' => 'GetPaid_Meta_Box_Invoice_Address', |
|
| 177 | + 'wpi_quote' => 'GetPaid_Meta_Box_Invoice_Address', |
|
| 178 | + 'wpi_item' => 'GetPaid_Meta_Box_Item_Details', |
|
| 179 | + 'wpi_payment_form' => 'GetPaid_Meta_Box_Payment_Form', |
|
| 180 | + 'wpi_discount' => 'GetPaid_Meta_Box_Discount_Details', |
|
| 181 | + ); |
|
| 182 | + |
|
| 183 | + // Is this our post type? |
|
| 184 | + if ( empty( $post->post_type ) || ! isset( $post_types_map[ $post->post_type ] ) ) { |
|
| 185 | + return; |
|
| 186 | + } |
|
| 187 | + |
|
| 188 | + // We need this save event to run once to avoid potential endless loops. |
|
| 189 | + self::$saved_meta_boxes = true; |
|
| 190 | 190 | |
| 191 | - // Save the post. |
|
| 192 | - $class = $post_types_map[ $post->post_type ]; |
|
| 193 | - $class::save( $post_id, $_POST, $post ); |
|
| 191 | + // Save the post. |
|
| 192 | + $class = $post_types_map[ $post->post_type ]; |
|
| 193 | + $class::save( $post_id, $_POST, $post ); |
|
| 194 | 194 | |
| 195 | - } |
|
| 195 | + } |
|
| 196 | 196 | |
| 197 | 197 | } |
@@ -17,28 +17,28 @@ discard block |
||
| 17 | 17 | */ |
| 18 | 18 | function getpaid_get_subscriptions( $args = array(), $return = 'results' ) { |
| 19 | 19 | |
| 20 | - // Do not retrieve all fields if we just want the count. |
|
| 21 | - if ( 'count' == $return ) { |
|
| 22 | - $args['fields'] = 'id'; |
|
| 23 | - $args['number'] = 1; |
|
| 24 | - } |
|
| 20 | + // Do not retrieve all fields if we just want the count. |
|
| 21 | + if ( 'count' == $return ) { |
|
| 22 | + $args['fields'] = 'id'; |
|
| 23 | + $args['number'] = 1; |
|
| 24 | + } |
|
| 25 | 25 | |
| 26 | - // Do not count all matches if we just want the results. |
|
| 27 | - if ( 'results' == $return ) { |
|
| 28 | - $args['count_total'] = false; |
|
| 29 | - } |
|
| 26 | + // Do not count all matches if we just want the results. |
|
| 27 | + if ( 'results' == $return ) { |
|
| 28 | + $args['count_total'] = false; |
|
| 29 | + } |
|
| 30 | 30 | |
| 31 | - $query = new GetPaid_Subscriptions_Query( $args ); |
|
| 31 | + $query = new GetPaid_Subscriptions_Query( $args ); |
|
| 32 | 32 | |
| 33 | - if ( 'results' == $return ) { |
|
| 34 | - return $query->get_results(); |
|
| 35 | - } |
|
| 33 | + if ( 'results' == $return ) { |
|
| 34 | + return $query->get_results(); |
|
| 35 | + } |
|
| 36 | 36 | |
| 37 | - if ( 'count' == $return ) { |
|
| 38 | - return $query->get_total(); |
|
| 39 | - } |
|
| 37 | + if ( 'count' == $return ) { |
|
| 38 | + return $query->get_total(); |
|
| 39 | + } |
|
| 40 | 40 | |
| 41 | - return $query; |
|
| 41 | + return $query; |
|
| 42 | 42 | } |
| 43 | 43 | |
| 44 | 44 | /** |
@@ -48,18 +48,18 @@ discard block |
||
| 48 | 48 | */ |
| 49 | 49 | function getpaid_get_subscription_statuses() { |
| 50 | 50 | |
| 51 | - return apply_filters( |
|
| 52 | - 'getpaid_get_subscription_statuses', |
|
| 53 | - array( |
|
| 54 | - 'pending' => __( 'Pending', 'invoicing' ), |
|
| 55 | - 'trialling' => __( 'Trialing', 'invoicing' ), |
|
| 56 | - 'active' => __( 'Active', 'invoicing' ), |
|
| 57 | - 'failing' => __( 'Failing', 'invoicing' ), |
|
| 58 | - 'expired' => __( 'Expired', 'invoicing' ), |
|
| 59 | - 'completed' => __( 'Complete', 'invoicing' ), |
|
| 60 | - 'cancelled' => __( 'Cancelled', 'invoicing' ), |
|
| 61 | - ) |
|
| 62 | - ); |
|
| 51 | + return apply_filters( |
|
| 52 | + 'getpaid_get_subscription_statuses', |
|
| 53 | + array( |
|
| 54 | + 'pending' => __( 'Pending', 'invoicing' ), |
|
| 55 | + 'trialling' => __( 'Trialing', 'invoicing' ), |
|
| 56 | + 'active' => __( 'Active', 'invoicing' ), |
|
| 57 | + 'failing' => __( 'Failing', 'invoicing' ), |
|
| 58 | + 'expired' => __( 'Expired', 'invoicing' ), |
|
| 59 | + 'completed' => __( 'Complete', 'invoicing' ), |
|
| 60 | + 'cancelled' => __( 'Cancelled', 'invoicing' ), |
|
| 61 | + ) |
|
| 62 | + ); |
|
| 63 | 63 | |
| 64 | 64 | } |
| 65 | 65 | |
@@ -69,8 +69,8 @@ discard block |
||
| 69 | 69 | * @return string |
| 70 | 70 | */ |
| 71 | 71 | function getpaid_get_subscription_status_label( $status ) { |
| 72 | - $statuses = getpaid_get_subscription_statuses(); |
|
| 73 | - return isset( $statuses[ $status ] ) ? $statuses[ $status ] : ucfirst( sanitize_text_field( $status ) ); |
|
| 72 | + $statuses = getpaid_get_subscription_statuses(); |
|
| 73 | + return isset( $statuses[ $status ] ) ? $statuses[ $status ] : ucfirst( sanitize_text_field( $status ) ); |
|
| 74 | 74 | } |
| 75 | 75 | |
| 76 | 76 | /** |
@@ -80,18 +80,18 @@ discard block |
||
| 80 | 80 | */ |
| 81 | 81 | function getpaid_get_subscription_status_classes() { |
| 82 | 82 | |
| 83 | - return apply_filters( |
|
| 84 | - 'getpaid_get_subscription_status_classes', |
|
| 85 | - array( |
|
| 86 | - 'pending' => 'getpaid-item-status-pending', |
|
| 87 | - 'trialling' => 'getpaid-item-status-trial', |
|
| 88 | - 'active' => 'getpaid-item-status-info', |
|
| 89 | - 'failing' => 'getpaid-item-status-failing', |
|
| 90 | - 'expired' => 'getpaid-item-status-expired', |
|
| 91 | - 'completed' => 'getpaid-item-status-success', |
|
| 92 | - 'cancelled' => 'getpaid-item-status-canceled', |
|
| 93 | - ) |
|
| 94 | - ); |
|
| 83 | + return apply_filters( |
|
| 84 | + 'getpaid_get_subscription_status_classes', |
|
| 85 | + array( |
|
| 86 | + 'pending' => 'getpaid-item-status-pending', |
|
| 87 | + 'trialling' => 'getpaid-item-status-trial', |
|
| 88 | + 'active' => 'getpaid-item-status-info', |
|
| 89 | + 'failing' => 'getpaid-item-status-failing', |
|
| 90 | + 'expired' => 'getpaid-item-status-expired', |
|
| 91 | + 'completed' => 'getpaid-item-status-success', |
|
| 92 | + 'cancelled' => 'getpaid-item-status-canceled', |
|
| 93 | + ) |
|
| 94 | + ); |
|
| 95 | 95 | |
| 96 | 96 | } |
| 97 | 97 | |
@@ -102,15 +102,15 @@ discard block |
||
| 102 | 102 | */ |
| 103 | 103 | function getpaid_get_subscription_status_counts( $args = array() ) { |
| 104 | 104 | |
| 105 | - $statuses = array_keys( getpaid_get_subscription_statuses() ); |
|
| 106 | - $counts = array(); |
|
| 105 | + $statuses = array_keys( getpaid_get_subscription_statuses() ); |
|
| 106 | + $counts = array(); |
|
| 107 | 107 | |
| 108 | - foreach ( $statuses as $status ) { |
|
| 109 | - $_args = wp_parse_args( "status=$status", $args ); |
|
| 110 | - $counts[ $status ] = getpaid_get_subscriptions( $_args, 'count' ); |
|
| 111 | - } |
|
| 108 | + foreach ( $statuses as $status ) { |
|
| 109 | + $_args = wp_parse_args( "status=$status", $args ); |
|
| 110 | + $counts[ $status ] = getpaid_get_subscriptions( $_args, 'count' ); |
|
| 111 | + } |
|
| 112 | 112 | |
| 113 | - return $counts; |
|
| 113 | + return $counts; |
|
| 114 | 114 | |
| 115 | 115 | } |
| 116 | 116 | |
@@ -121,32 +121,32 @@ discard block |
||
| 121 | 121 | */ |
| 122 | 122 | function getpaid_get_subscription_periods() { |
| 123 | 123 | |
| 124 | - return apply_filters( |
|
| 125 | - 'getpaid_get_subscription_periods', |
|
| 126 | - array( |
|
| 124 | + return apply_filters( |
|
| 125 | + 'getpaid_get_subscription_periods', |
|
| 126 | + array( |
|
| 127 | 127 | |
| 128 | - 'day' => array( |
|
| 129 | - 'singular' => __( '%s day', 'invoicing' ), |
|
| 130 | - 'plural' => __( '%d days', 'invoicing' ), |
|
| 131 | - ), |
|
| 128 | + 'day' => array( |
|
| 129 | + 'singular' => __( '%s day', 'invoicing' ), |
|
| 130 | + 'plural' => __( '%d days', 'invoicing' ), |
|
| 131 | + ), |
|
| 132 | 132 | |
| 133 | - 'week' => array( |
|
| 134 | - 'singular' => __( '%s week', 'invoicing' ), |
|
| 135 | - 'plural' => __( '%d weeks', 'invoicing' ), |
|
| 136 | - ), |
|
| 133 | + 'week' => array( |
|
| 134 | + 'singular' => __( '%s week', 'invoicing' ), |
|
| 135 | + 'plural' => __( '%d weeks', 'invoicing' ), |
|
| 136 | + ), |
|
| 137 | 137 | |
| 138 | - 'month' => array( |
|
| 139 | - 'singular' => __( '%s month', 'invoicing' ), |
|
| 140 | - 'plural' => __( '%d months', 'invoicing' ), |
|
| 141 | - ), |
|
| 138 | + 'month' => array( |
|
| 139 | + 'singular' => __( '%s month', 'invoicing' ), |
|
| 140 | + 'plural' => __( '%d months', 'invoicing' ), |
|
| 141 | + ), |
|
| 142 | 142 | |
| 143 | - 'year' => array( |
|
| 144 | - 'singular' => __( '%s year', 'invoicing' ), |
|
| 145 | - 'plural' => __( '%d years', 'invoicing' ), |
|
| 146 | - ), |
|
| 143 | + 'year' => array( |
|
| 144 | + 'singular' => __( '%s year', 'invoicing' ), |
|
| 145 | + 'plural' => __( '%d years', 'invoicing' ), |
|
| 146 | + ), |
|
| 147 | 147 | |
| 148 | - ) |
|
| 149 | - ); |
|
| 148 | + ) |
|
| 149 | + ); |
|
| 150 | 150 | |
| 151 | 151 | } |
| 152 | 152 | |
@@ -157,7 +157,7 @@ discard block |
||
| 157 | 157 | * @return int |
| 158 | 158 | */ |
| 159 | 159 | function getpaid_get_subscription_trial_period_interval( $trial_period ) { |
| 160 | - return (int) preg_replace( '/[^0-9]/', '', $trial_period ); |
|
| 160 | + return (int) preg_replace( '/[^0-9]/', '', $trial_period ); |
|
| 161 | 161 | } |
| 162 | 162 | |
| 163 | 163 | /** |
@@ -167,7 +167,7 @@ discard block |
||
| 167 | 167 | * @return string |
| 168 | 168 | */ |
| 169 | 169 | function getpaid_get_subscription_trial_period_period( $trial_period ) { |
| 170 | - return preg_replace( '/[^a-z]/', '', strtolower( $trial_period ) ); |
|
| 170 | + return preg_replace( '/[^a-z]/', '', strtolower( $trial_period ) ); |
|
| 171 | 171 | } |
| 172 | 172 | |
| 173 | 173 | /** |
@@ -178,8 +178,8 @@ discard block |
||
| 178 | 178 | * @return string |
| 179 | 179 | */ |
| 180 | 180 | function getpaid_get_subscription_period_label( $period, $interval = 1, $singular_prefix = '1' ) { |
| 181 | - $label = (int) $interval > 1 ? getpaid_get_plural_subscription_period_label( $period, $interval ) : getpaid_get_singular_subscription_period_label( $period, $singular_prefix ); |
|
| 182 | - return strtolower( sanitize_text_field( $label ) ); |
|
| 181 | + $label = (int) $interval > 1 ? getpaid_get_plural_subscription_period_label( $period, $interval ) : getpaid_get_singular_subscription_period_label( $period, $singular_prefix ); |
|
| 182 | + return strtolower( sanitize_text_field( $label ) ); |
|
| 183 | 183 | } |
| 184 | 184 | |
| 185 | 185 | /** |
@@ -190,22 +190,22 @@ discard block |
||
| 190 | 190 | */ |
| 191 | 191 | function getpaid_get_singular_subscription_period_label( $period, $singular_prefix = '1' ) { |
| 192 | 192 | |
| 193 | - $periods = getpaid_get_subscription_periods(); |
|
| 194 | - $period = strtolower( $period ); |
|
| 193 | + $periods = getpaid_get_subscription_periods(); |
|
| 194 | + $period = strtolower( $period ); |
|
| 195 | 195 | |
| 196 | - if ( isset( $periods[ $period ] ) ) { |
|
| 197 | - return sprintf( $periods[ $period ]['singular'], $singular_prefix ); |
|
| 198 | - } |
|
| 196 | + if ( isset( $periods[ $period ] ) ) { |
|
| 197 | + return sprintf( $periods[ $period ]['singular'], $singular_prefix ); |
|
| 198 | + } |
|
| 199 | 199 | |
| 200 | - // Backwards compatibility. |
|
| 201 | - foreach ( $periods as $key => $data ) { |
|
| 202 | - if ( strpos( $key, $period ) === 0 ) { |
|
| 203 | - return sprintf( $data['singular'], $singular_prefix ); |
|
| 204 | - } |
|
| 205 | - } |
|
| 200 | + // Backwards compatibility. |
|
| 201 | + foreach ( $periods as $key => $data ) { |
|
| 202 | + if ( strpos( $key, $period ) === 0 ) { |
|
| 203 | + return sprintf( $data['singular'], $singular_prefix ); |
|
| 204 | + } |
|
| 205 | + } |
|
| 206 | 206 | |
| 207 | - // Invalid string. |
|
| 208 | - return ''; |
|
| 207 | + // Invalid string. |
|
| 208 | + return ''; |
|
| 209 | 209 | } |
| 210 | 210 | |
| 211 | 211 | /** |
@@ -217,22 +217,22 @@ discard block |
||
| 217 | 217 | */ |
| 218 | 218 | function getpaid_get_plural_subscription_period_label( $period, $interval ) { |
| 219 | 219 | |
| 220 | - $periods = getpaid_get_subscription_periods(); |
|
| 221 | - $period = strtolower( $period ); |
|
| 220 | + $periods = getpaid_get_subscription_periods(); |
|
| 221 | + $period = strtolower( $period ); |
|
| 222 | 222 | |
| 223 | - if ( isset( $periods[ $period ] ) ) { |
|
| 224 | - return sprintf( $periods[ $period ]['plural'], $interval ); |
|
| 225 | - } |
|
| 223 | + if ( isset( $periods[ $period ] ) ) { |
|
| 224 | + return sprintf( $periods[ $period ]['plural'], $interval ); |
|
| 225 | + } |
|
| 226 | 226 | |
| 227 | - // Backwards compatibility. |
|
| 228 | - foreach ( $periods as $key => $data ) { |
|
| 229 | - if ( strpos( $key, $period ) === 0 ) { |
|
| 230 | - return sprintf( $data['plural'], $interval ); |
|
| 231 | - } |
|
| 232 | - } |
|
| 227 | + // Backwards compatibility. |
|
| 228 | + foreach ( $periods as $key => $data ) { |
|
| 229 | + if ( strpos( $key, $period ) === 0 ) { |
|
| 230 | + return sprintf( $data['plural'], $interval ); |
|
| 231 | + } |
|
| 232 | + } |
|
| 233 | 233 | |
| 234 | - // Invalid string. |
|
| 235 | - return ''; |
|
| 234 | + // Invalid string. |
|
| 235 | + return ''; |
|
| 236 | 236 | } |
| 237 | 237 | |
| 238 | 238 | /** |
@@ -243,50 +243,50 @@ discard block |
||
| 243 | 243 | */ |
| 244 | 244 | function getpaid_get_formatted_subscription_amount( $subscription ) { |
| 245 | 245 | |
| 246 | - $initial = wpinv_price( wpinv_format_amount( $subscription->get_initial_amount() ), $subscription->get_parent_payment()->get_currency() ); |
|
| 247 | - $recurring = wpinv_price( wpinv_format_amount( $subscription->get_recurring_amount() ), $subscription->get_parent_payment()->get_currency() ); |
|
| 248 | - $period = getpaid_get_subscription_period_label( $subscription->get_period(), $subscription->get_frequency(), '' ); |
|
| 246 | + $initial = wpinv_price( wpinv_format_amount( $subscription->get_initial_amount() ), $subscription->get_parent_payment()->get_currency() ); |
|
| 247 | + $recurring = wpinv_price( wpinv_format_amount( $subscription->get_recurring_amount() ), $subscription->get_parent_payment()->get_currency() ); |
|
| 248 | + $period = getpaid_get_subscription_period_label( $subscription->get_period(), $subscription->get_frequency(), '' ); |
|
| 249 | 249 | |
| 250 | - // Trial periods. |
|
| 251 | - if ( $subscription->has_trial_period() ) { |
|
| 250 | + // Trial periods. |
|
| 251 | + if ( $subscription->has_trial_period() ) { |
|
| 252 | 252 | |
| 253 | - $trial_period = getpaid_get_subscription_trial_period_period( $subscription->get_trial_period() ); |
|
| 254 | - $trial_interval = getpaid_get_subscription_trial_period_interval( $subscription->get_trial_period() ); |
|
| 255 | - return sprintf( |
|
| 253 | + $trial_period = getpaid_get_subscription_trial_period_period( $subscription->get_trial_period() ); |
|
| 254 | + $trial_interval = getpaid_get_subscription_trial_period_interval( $subscription->get_trial_period() ); |
|
| 255 | + return sprintf( |
|
| 256 | 256 | |
| 257 | - // translators: $1: is the initial amount, $2: is the trial period, $3: is the recurring amount, $4: is the recurring period |
|
| 258 | - _x( '%1$s trial for %2$s then %3$s / %4$s', 'Subscription amount. (e.g.: $10 trial for 1 month then $120 / year)', 'invoicing' ), |
|
| 259 | - $initial, |
|
| 260 | - getpaid_get_subscription_period_label( $trial_period, $trial_interval ), |
|
| 261 | - $recurring, |
|
| 262 | - $period |
|
| 257 | + // translators: $1: is the initial amount, $2: is the trial period, $3: is the recurring amount, $4: is the recurring period |
|
| 258 | + _x( '%1$s trial for %2$s then %3$s / %4$s', 'Subscription amount. (e.g.: $10 trial for 1 month then $120 / year)', 'invoicing' ), |
|
| 259 | + $initial, |
|
| 260 | + getpaid_get_subscription_period_label( $trial_period, $trial_interval ), |
|
| 261 | + $recurring, |
|
| 262 | + $period |
|
| 263 | 263 | |
| 264 | - ); |
|
| 264 | + ); |
|
| 265 | 265 | |
| 266 | - } |
|
| 266 | + } |
|
| 267 | 267 | |
| 268 | - if ( $initial != $recurring ) { |
|
| 268 | + if ( $initial != $recurring ) { |
|
| 269 | 269 | |
| 270 | - return sprintf( |
|
| 270 | + return sprintf( |
|
| 271 | 271 | |
| 272 | - // translators: $1: is the initial amount, $2: is the recurring amount, $3: is the recurring period |
|
| 273 | - _x( 'Initial payment of %1$s which renews at %2$s / %3$s', 'Subscription amount. (e.g.:Initial payment of $100 which renews at $120 / year)', 'invoicing' ), |
|
| 274 | - $initial, |
|
| 275 | - $recurring, |
|
| 276 | - $period |
|
| 272 | + // translators: $1: is the initial amount, $2: is the recurring amount, $3: is the recurring period |
|
| 273 | + _x( 'Initial payment of %1$s which renews at %2$s / %3$s', 'Subscription amount. (e.g.:Initial payment of $100 which renews at $120 / year)', 'invoicing' ), |
|
| 274 | + $initial, |
|
| 275 | + $recurring, |
|
| 276 | + $period |
|
| 277 | 277 | |
| 278 | - ); |
|
| 278 | + ); |
|
| 279 | 279 | |
| 280 | - } |
|
| 280 | + } |
|
| 281 | 281 | |
| 282 | - return sprintf( |
|
| 282 | + return sprintf( |
|
| 283 | 283 | |
| 284 | - // translators: $1: is the recurring amount, $2: is the recurring period |
|
| 285 | - _x( '%1$s / %2$s', 'Subscription amount. (e.g.: $120 / year)', 'invoicing' ), |
|
| 286 | - $initial, |
|
| 287 | - $period |
|
| 284 | + // translators: $1: is the recurring amount, $2: is the recurring period |
|
| 285 | + _x( '%1$s / %2$s', 'Subscription amount. (e.g.: $120 / year)', 'invoicing' ), |
|
| 286 | + $initial, |
|
| 287 | + $period |
|
| 288 | 288 | |
| 289 | - ); |
|
| 289 | + ); |
|
| 290 | 290 | |
| 291 | 291 | } |
| 292 | 292 | |
@@ -297,7 +297,7 @@ discard block |
||
| 297 | 297 | * @return WPInv_Subscription|bool |
| 298 | 298 | */ |
| 299 | 299 | function getpaid_get_invoice_subscription( $invoice ) { |
| 300 | - return getpaid_subscriptions()->get_invoice_subscription( $invoice ); |
|
| 300 | + return getpaid_subscriptions()->get_invoice_subscription( $invoice ); |
|
| 301 | 301 | } |
| 302 | 302 | |
| 303 | 303 | /** |
@@ -306,10 +306,10 @@ discard block |
||
| 306 | 306 | * @param WPInv_Invoice $invoice |
| 307 | 307 | */ |
| 308 | 308 | function getpaid_activate_invoice_subscription( $invoice ) { |
| 309 | - $subscription = getpaid_get_invoice_subscription( $invoice ); |
|
| 310 | - if ( is_a( $subscription, 'WPInv_Subscription' ) ) { |
|
| 311 | - $subscription->activate(); |
|
| 312 | - } |
|
| 309 | + $subscription = getpaid_get_invoice_subscription( $invoice ); |
|
| 310 | + if ( is_a( $subscription, 'WPInv_Subscription' ) ) { |
|
| 311 | + $subscription->activate(); |
|
| 312 | + } |
|
| 313 | 313 | } |
| 314 | 314 | |
| 315 | 315 | /** |
@@ -318,7 +318,7 @@ discard block |
||
| 318 | 318 | * @return WPInv_Subscriptions |
| 319 | 319 | */ |
| 320 | 320 | function getpaid_subscriptions() { |
| 321 | - return getpaid()->get( 'subscriptions' ); |
|
| 321 | + return getpaid()->get( 'subscriptions' ); |
|
| 322 | 322 | } |
| 323 | 323 | |
| 324 | 324 | /** |
@@ -336,14 +336,14 @@ discard block |
||
| 336 | 336 | return false; |
| 337 | 337 | } |
| 338 | 338 | |
| 339 | - // Fetch the invoiec subscription. |
|
| 340 | - $subscription = getpaid_get_subscriptions( |
|
| 341 | - array( |
|
| 342 | - 'invoice_in' => $invoice->is_renewal() ? $invoice->get_parent_id() : $invoice->get_id(), |
|
| 343 | - 'number' => 1, |
|
| 344 | - ) |
|
| 345 | - ); |
|
| 339 | + // Fetch the invoiec subscription. |
|
| 340 | + $subscription = getpaid_get_subscriptions( |
|
| 341 | + array( |
|
| 342 | + 'invoice_in' => $invoice->is_renewal() ? $invoice->get_parent_id() : $invoice->get_id(), |
|
| 343 | + 'number' => 1, |
|
| 344 | + ) |
|
| 345 | + ); |
|
| 346 | 346 | |
| 347 | - return empty( $subscription ) ? false : $subscription[0]; |
|
| 347 | + return empty( $subscription ) ? false : $subscription[0]; |
|
| 348 | 348 | |
| 349 | 349 | } |
@@ -12,438 +12,438 @@ |
||
| 12 | 12 | */ |
| 13 | 13 | class GetPaid_Invoice_Notification_Emails { |
| 14 | 14 | |
| 15 | - /** |
|
| 16 | - * The array of invoice email actions. |
|
| 17 | - * |
|
| 18 | - * @param array |
|
| 19 | - */ |
|
| 20 | - public $invoice_actions; |
|
| 21 | - |
|
| 22 | - /** |
|
| 23 | - * Class constructor |
|
| 24 | - * |
|
| 25 | - */ |
|
| 26 | - public function __construct() { |
|
| 27 | - |
|
| 28 | - $this->invoice_actions = apply_filters( |
|
| 29 | - 'getpaid_notification_email_invoice_triggers', |
|
| 30 | - array( |
|
| 31 | - 'getpaid_new_invoice' => array( 'new_invoice', 'user_invoice' ), |
|
| 32 | - 'getpaid_invoice_status_wpi-cancelled' => 'cancelled_invoice', |
|
| 33 | - 'getpaid_invoice_status_wpi-failed' => 'failed_invoice', |
|
| 34 | - 'getpaid_invoice_status_wpi-onhold' => 'onhold_invoice', |
|
| 35 | - 'getpaid_invoice_status_wpi-processing' => 'processing_invoice', |
|
| 36 | - 'getpaid_invoice_status_publish' => 'completed_invoice', |
|
| 37 | - 'getpaid_invoice_status_wpi-renewal' => 'completed_invoice', |
|
| 38 | - 'getpaid_invoice_status_wpi-refunded' => 'refunded_invoice', |
|
| 39 | - 'getpaid_new_customer_note' => 'user_note', |
|
| 40 | - 'getpaid_daily_maintenance' => 'overdue', |
|
| 41 | - ) |
|
| 42 | - ); |
|
| 43 | - |
|
| 44 | - $this->init_hooks(); |
|
| 45 | - |
|
| 46 | - } |
|
| 47 | - |
|
| 48 | - /** |
|
| 49 | - * Registers email hooks. |
|
| 50 | - */ |
|
| 51 | - public function init_hooks() { |
|
| 52 | - |
|
| 53 | - add_filter( 'getpaid_get_email_merge_tags', array( $this, 'invoice_merge_tags' ), 10, 2 ); |
|
| 54 | - add_filter( 'getpaid_invoice_email_recipients', array( $this, 'filter_email_recipients' ), 10, 2 ); |
|
| 55 | - |
|
| 56 | - foreach ( $this->invoice_actions as $hook => $email_type ) { |
|
| 57 | - $this->init_email_type_hook( $hook, $email_type ); |
|
| 58 | - } |
|
| 59 | - } |
|
| 60 | - |
|
| 61 | - /** |
|
| 62 | - * Registers an email hook for an invoice action. |
|
| 63 | - * |
|
| 64 | - * @param string $hook |
|
| 65 | - * @param string|array $email_type |
|
| 66 | - */ |
|
| 67 | - public function init_email_type_hook( $hook, $email_type ) { |
|
| 68 | - |
|
| 69 | - $email_type = wpinv_parse_list( $email_type ); |
|
| 70 | - |
|
| 71 | - foreach ( $email_type as $type ) { |
|
| 72 | - |
|
| 73 | - $email = new GetPaid_Notification_Email( $type ); |
|
| 74 | - |
|
| 75 | - // Abort if it is not active. |
|
| 76 | - if ( ! $email->is_active() ) { |
|
| 77 | - continue; |
|
| 78 | - } |
|
| 79 | - |
|
| 80 | - if ( method_exists( $this, $type ) ) { |
|
| 81 | - add_action( $hook, array( $this, $type ), 100, 2 ); |
|
| 82 | - continue; |
|
| 83 | - } |
|
| 84 | - |
|
| 85 | - do_action( 'getpaid_invoice_init_email_type_hook', $type ); |
|
| 86 | - } |
|
| 87 | - |
|
| 88 | - } |
|
| 89 | - |
|
| 90 | - /** |
|
| 91 | - * Filters invoice merge tags. |
|
| 92 | - * |
|
| 93 | - * @param array $merge_tags |
|
| 94 | - * @param mixed|WPInv_Invoice|WPInv_Subscription $object |
|
| 95 | - */ |
|
| 96 | - public function invoice_merge_tags( $merge_tags, $object ) { |
|
| 97 | - |
|
| 98 | - if ( is_a( $object, 'WPInv_Invoice' ) ) { |
|
| 99 | - return array_merge( |
|
| 100 | - $merge_tags, |
|
| 101 | - $this->get_invoice_merge_tags( $object ) |
|
| 102 | - ); |
|
| 103 | - } |
|
| 104 | - |
|
| 105 | - if ( is_a( $object, 'WPInv_Subscription' ) ) { |
|
| 106 | - return array_merge( |
|
| 107 | - $merge_tags, |
|
| 108 | - $this->get_invoice_merge_tags( $object->get_parent_payment() ) |
|
| 109 | - ); |
|
| 110 | - } |
|
| 111 | - |
|
| 112 | - return $merge_tags; |
|
| 113 | - |
|
| 114 | - } |
|
| 115 | - |
|
| 116 | - /** |
|
| 117 | - * Generates invoice merge tags. |
|
| 118 | - * |
|
| 119 | - * @param WPInv_Invoice $invoice |
|
| 120 | - * @return array |
|
| 121 | - */ |
|
| 122 | - public function get_invoice_merge_tags( $invoice ) { |
|
| 123 | - |
|
| 124 | - // Abort if it does not exist. |
|
| 125 | - if ( ! $invoice->get_id() ) { |
|
| 126 | - return array(); |
|
| 127 | - } |
|
| 128 | - |
|
| 129 | - return array( |
|
| 130 | - '{name}' => sanitize_text_field( $invoice->get_user_full_name() ), |
|
| 131 | - '{full_name}' => sanitize_text_field( $invoice->get_user_full_name() ), |
|
| 132 | - '{first_name}' => sanitize_text_field( $invoice->get_first_name() ), |
|
| 133 | - '{last_name}' => sanitize_text_field( $invoice->get_last_name() ), |
|
| 134 | - '{email}' => sanitize_email( $invoice->get_email() ), |
|
| 135 | - '{invoice_number}' => sanitize_text_field( $invoice->get_number() ), |
|
| 136 | - '{invoice_currency}' => sanitize_text_field( $invoice->get_currency() ), |
|
| 137 | - '{invoice_total}' => wpinv_price( wpinv_format_amount( $invoice->get_total() ) ), |
|
| 138 | - '{invoice_link}' => esc_url( $invoice->get_view_url() ), |
|
| 139 | - '{invoice_pay_link}' => esc_url( $invoice->get_checkout_payment_url() ), |
|
| 140 | - '{invoice_receipt_link}'=> esc_url( $invoice->get_receipt_url() ), |
|
| 141 | - '{invoice_date}' => getpaid_format_date_value( $invoice->get_date_created() ), |
|
| 142 | - '{invoice_due_date}' => getpaid_format_date_value( $invoice->get_due_date(), __( 'on receipt', 'invoicing' ) ), |
|
| 143 | - '{invoice_quote}' => sanitize_text_field( $invoice->get_type() ), |
|
| 144 | - '{invoice_label}' => sanitize_text_field( ucfirst( $invoice->get_type() ) ), |
|
| 145 | - '{invoice_description}' => wp_kses_post( $invoice->get_description() ), |
|
| 146 | - '{subscription_name}' => wp_kses_post( $invoice->get_subscription_name() ), |
|
| 147 | - '{is_was}' => strtotime( $invoice->get_due_date() ) < current_time( 'timestamp' ) ? __( 'was', 'invoicing' ) : __( 'is', 'invoicing' ), |
|
| 148 | - ); |
|
| 149 | - |
|
| 150 | - } |
|
| 151 | - |
|
| 152 | - /** |
|
| 153 | - * Helper function to send an email. |
|
| 154 | - * |
|
| 155 | - * @param WPInv_Invoice $invoice |
|
| 156 | - * @param GetPaid_Notification_Email $email |
|
| 157 | - * @param string $type |
|
| 158 | - * @param string|array $recipients |
|
| 159 | - * @param array $extra_args Extra template args. |
|
| 160 | - */ |
|
| 161 | - public function send_email( $invoice, $email, $type, $recipients, $extra_args = array() ) { |
|
| 162 | - |
|
| 163 | - do_action( 'getpaid_before_send_invoice_notification', $type, $invoice, $email ); |
|
| 164 | - |
|
| 165 | - $mailer = new GetPaid_Notification_Email_Sender(); |
|
| 166 | - $merge_tags = $email->get_merge_tags(); |
|
| 167 | - |
|
| 168 | - $result = $mailer->send( |
|
| 169 | - apply_filters( 'getpaid_invoice_email_recipients', wpinv_parse_list( $recipients ), $email ), |
|
| 170 | - $email->add_merge_tags( $email->get_subject(), $merge_tags ), |
|
| 171 | - $email->get_content( $merge_tags, $extra_args ), |
|
| 172 | - $email->get_attachments() |
|
| 173 | - ); |
|
| 174 | - |
|
| 175 | - // Maybe send a copy to the admin. |
|
| 176 | - if ( $email->include_admin_bcc() ) { |
|
| 177 | - $mailer->send( |
|
| 178 | - wpinv_get_admin_email(), |
|
| 179 | - $email->add_merge_tags( $email->get_subject() . __( ' - ADMIN BCC COPY', 'invoicing' ), $merge_tags ), |
|
| 180 | - $email->get_content( $merge_tags ), |
|
| 181 | - $email->get_attachments() |
|
| 182 | - ); |
|
| 183 | - } |
|
| 184 | - |
|
| 185 | - if ( ! $result ) { |
|
| 186 | - $invoice->add_note( sprintf( __( 'Failed sending %s notification email.', 'invoicing' ), sanitize_key( $type ) ), false, false, true ); |
|
| 187 | - } |
|
| 188 | - |
|
| 189 | - do_action( 'getpaid_after_send_invoice_notification', $type, $invoice, $email ); |
|
| 190 | - |
|
| 191 | - return $result; |
|
| 192 | - } |
|
| 193 | - |
|
| 194 | - /** |
|
| 195 | - * Also send emails to any cc users. |
|
| 196 | - * |
|
| 197 | - * @param array $recipients |
|
| 198 | - * @param GetPaid_Notification_Email $email |
|
| 199 | - */ |
|
| 200 | - public function filter_email_recipients( $recipients, $email ) { |
|
| 201 | - |
|
| 202 | - if ( ! $email->is_admin_email() ) { |
|
| 203 | - $cc = $email->object->get_email_cc(); |
|
| 204 | - |
|
| 205 | - if ( ! empty( $cc ) ) { |
|
| 206 | - $cc = array_map( 'sanitize_email', wpinv_parse_list( $cc ) ); |
|
| 207 | - $recipients = array_filter( array_unique( array_merge( $recipients, $cc ) ) ); |
|
| 208 | - } |
|
| 209 | - |
|
| 210 | - } |
|
| 211 | - |
|
| 212 | - return $recipients; |
|
| 213 | - |
|
| 214 | - } |
|
| 215 | - |
|
| 216 | - /** |
|
| 217 | - * Sends a new invoice notification. |
|
| 218 | - * |
|
| 219 | - * @param WPInv_Invoice $invoice |
|
| 220 | - */ |
|
| 221 | - public function new_invoice( $invoice ) { |
|
| 222 | - |
|
| 223 | - $email = new GetPaid_Notification_Email( __FUNCTION__, $invoice ); |
|
| 224 | - $recipient = wpinv_get_admin_email(); |
|
| 225 | - |
|
| 226 | - return $this->send_email( $invoice, $email, __FUNCTION__, $recipient ); |
|
| 227 | - |
|
| 228 | - } |
|
| 229 | - |
|
| 230 | - /** |
|
| 231 | - * Sends a cancelled invoice notification. |
|
| 232 | - * |
|
| 233 | - * @param WPInv_Invoice $invoice |
|
| 234 | - */ |
|
| 235 | - public function cancelled_invoice( $invoice ) { |
|
| 236 | - |
|
| 237 | - $email = new GetPaid_Notification_Email( __FUNCTION__, $invoice ); |
|
| 238 | - $recipient = wpinv_get_admin_email(); |
|
| 15 | + /** |
|
| 16 | + * The array of invoice email actions. |
|
| 17 | + * |
|
| 18 | + * @param array |
|
| 19 | + */ |
|
| 20 | + public $invoice_actions; |
|
| 21 | + |
|
| 22 | + /** |
|
| 23 | + * Class constructor |
|
| 24 | + * |
|
| 25 | + */ |
|
| 26 | + public function __construct() { |
|
| 27 | + |
|
| 28 | + $this->invoice_actions = apply_filters( |
|
| 29 | + 'getpaid_notification_email_invoice_triggers', |
|
| 30 | + array( |
|
| 31 | + 'getpaid_new_invoice' => array( 'new_invoice', 'user_invoice' ), |
|
| 32 | + 'getpaid_invoice_status_wpi-cancelled' => 'cancelled_invoice', |
|
| 33 | + 'getpaid_invoice_status_wpi-failed' => 'failed_invoice', |
|
| 34 | + 'getpaid_invoice_status_wpi-onhold' => 'onhold_invoice', |
|
| 35 | + 'getpaid_invoice_status_wpi-processing' => 'processing_invoice', |
|
| 36 | + 'getpaid_invoice_status_publish' => 'completed_invoice', |
|
| 37 | + 'getpaid_invoice_status_wpi-renewal' => 'completed_invoice', |
|
| 38 | + 'getpaid_invoice_status_wpi-refunded' => 'refunded_invoice', |
|
| 39 | + 'getpaid_new_customer_note' => 'user_note', |
|
| 40 | + 'getpaid_daily_maintenance' => 'overdue', |
|
| 41 | + ) |
|
| 42 | + ); |
|
| 43 | + |
|
| 44 | + $this->init_hooks(); |
|
| 45 | + |
|
| 46 | + } |
|
| 47 | + |
|
| 48 | + /** |
|
| 49 | + * Registers email hooks. |
|
| 50 | + */ |
|
| 51 | + public function init_hooks() { |
|
| 52 | + |
|
| 53 | + add_filter( 'getpaid_get_email_merge_tags', array( $this, 'invoice_merge_tags' ), 10, 2 ); |
|
| 54 | + add_filter( 'getpaid_invoice_email_recipients', array( $this, 'filter_email_recipients' ), 10, 2 ); |
|
| 55 | + |
|
| 56 | + foreach ( $this->invoice_actions as $hook => $email_type ) { |
|
| 57 | + $this->init_email_type_hook( $hook, $email_type ); |
|
| 58 | + } |
|
| 59 | + } |
|
| 60 | + |
|
| 61 | + /** |
|
| 62 | + * Registers an email hook for an invoice action. |
|
| 63 | + * |
|
| 64 | + * @param string $hook |
|
| 65 | + * @param string|array $email_type |
|
| 66 | + */ |
|
| 67 | + public function init_email_type_hook( $hook, $email_type ) { |
|
| 68 | + |
|
| 69 | + $email_type = wpinv_parse_list( $email_type ); |
|
| 70 | + |
|
| 71 | + foreach ( $email_type as $type ) { |
|
| 72 | + |
|
| 73 | + $email = new GetPaid_Notification_Email( $type ); |
|
| 74 | + |
|
| 75 | + // Abort if it is not active. |
|
| 76 | + if ( ! $email->is_active() ) { |
|
| 77 | + continue; |
|
| 78 | + } |
|
| 79 | + |
|
| 80 | + if ( method_exists( $this, $type ) ) { |
|
| 81 | + add_action( $hook, array( $this, $type ), 100, 2 ); |
|
| 82 | + continue; |
|
| 83 | + } |
|
| 84 | + |
|
| 85 | + do_action( 'getpaid_invoice_init_email_type_hook', $type ); |
|
| 86 | + } |
|
| 87 | + |
|
| 88 | + } |
|
| 89 | + |
|
| 90 | + /** |
|
| 91 | + * Filters invoice merge tags. |
|
| 92 | + * |
|
| 93 | + * @param array $merge_tags |
|
| 94 | + * @param mixed|WPInv_Invoice|WPInv_Subscription $object |
|
| 95 | + */ |
|
| 96 | + public function invoice_merge_tags( $merge_tags, $object ) { |
|
| 97 | + |
|
| 98 | + if ( is_a( $object, 'WPInv_Invoice' ) ) { |
|
| 99 | + return array_merge( |
|
| 100 | + $merge_tags, |
|
| 101 | + $this->get_invoice_merge_tags( $object ) |
|
| 102 | + ); |
|
| 103 | + } |
|
| 104 | + |
|
| 105 | + if ( is_a( $object, 'WPInv_Subscription' ) ) { |
|
| 106 | + return array_merge( |
|
| 107 | + $merge_tags, |
|
| 108 | + $this->get_invoice_merge_tags( $object->get_parent_payment() ) |
|
| 109 | + ); |
|
| 110 | + } |
|
| 111 | + |
|
| 112 | + return $merge_tags; |
|
| 113 | + |
|
| 114 | + } |
|
| 115 | + |
|
| 116 | + /** |
|
| 117 | + * Generates invoice merge tags. |
|
| 118 | + * |
|
| 119 | + * @param WPInv_Invoice $invoice |
|
| 120 | + * @return array |
|
| 121 | + */ |
|
| 122 | + public function get_invoice_merge_tags( $invoice ) { |
|
| 123 | + |
|
| 124 | + // Abort if it does not exist. |
|
| 125 | + if ( ! $invoice->get_id() ) { |
|
| 126 | + return array(); |
|
| 127 | + } |
|
| 128 | + |
|
| 129 | + return array( |
|
| 130 | + '{name}' => sanitize_text_field( $invoice->get_user_full_name() ), |
|
| 131 | + '{full_name}' => sanitize_text_field( $invoice->get_user_full_name() ), |
|
| 132 | + '{first_name}' => sanitize_text_field( $invoice->get_first_name() ), |
|
| 133 | + '{last_name}' => sanitize_text_field( $invoice->get_last_name() ), |
|
| 134 | + '{email}' => sanitize_email( $invoice->get_email() ), |
|
| 135 | + '{invoice_number}' => sanitize_text_field( $invoice->get_number() ), |
|
| 136 | + '{invoice_currency}' => sanitize_text_field( $invoice->get_currency() ), |
|
| 137 | + '{invoice_total}' => wpinv_price( wpinv_format_amount( $invoice->get_total() ) ), |
|
| 138 | + '{invoice_link}' => esc_url( $invoice->get_view_url() ), |
|
| 139 | + '{invoice_pay_link}' => esc_url( $invoice->get_checkout_payment_url() ), |
|
| 140 | + '{invoice_receipt_link}'=> esc_url( $invoice->get_receipt_url() ), |
|
| 141 | + '{invoice_date}' => getpaid_format_date_value( $invoice->get_date_created() ), |
|
| 142 | + '{invoice_due_date}' => getpaid_format_date_value( $invoice->get_due_date(), __( 'on receipt', 'invoicing' ) ), |
|
| 143 | + '{invoice_quote}' => sanitize_text_field( $invoice->get_type() ), |
|
| 144 | + '{invoice_label}' => sanitize_text_field( ucfirst( $invoice->get_type() ) ), |
|
| 145 | + '{invoice_description}' => wp_kses_post( $invoice->get_description() ), |
|
| 146 | + '{subscription_name}' => wp_kses_post( $invoice->get_subscription_name() ), |
|
| 147 | + '{is_was}' => strtotime( $invoice->get_due_date() ) < current_time( 'timestamp' ) ? __( 'was', 'invoicing' ) : __( 'is', 'invoicing' ), |
|
| 148 | + ); |
|
| 149 | + |
|
| 150 | + } |
|
| 151 | + |
|
| 152 | + /** |
|
| 153 | + * Helper function to send an email. |
|
| 154 | + * |
|
| 155 | + * @param WPInv_Invoice $invoice |
|
| 156 | + * @param GetPaid_Notification_Email $email |
|
| 157 | + * @param string $type |
|
| 158 | + * @param string|array $recipients |
|
| 159 | + * @param array $extra_args Extra template args. |
|
| 160 | + */ |
|
| 161 | + public function send_email( $invoice, $email, $type, $recipients, $extra_args = array() ) { |
|
| 162 | + |
|
| 163 | + do_action( 'getpaid_before_send_invoice_notification', $type, $invoice, $email ); |
|
| 164 | + |
|
| 165 | + $mailer = new GetPaid_Notification_Email_Sender(); |
|
| 166 | + $merge_tags = $email->get_merge_tags(); |
|
| 167 | + |
|
| 168 | + $result = $mailer->send( |
|
| 169 | + apply_filters( 'getpaid_invoice_email_recipients', wpinv_parse_list( $recipients ), $email ), |
|
| 170 | + $email->add_merge_tags( $email->get_subject(), $merge_tags ), |
|
| 171 | + $email->get_content( $merge_tags, $extra_args ), |
|
| 172 | + $email->get_attachments() |
|
| 173 | + ); |
|
| 174 | + |
|
| 175 | + // Maybe send a copy to the admin. |
|
| 176 | + if ( $email->include_admin_bcc() ) { |
|
| 177 | + $mailer->send( |
|
| 178 | + wpinv_get_admin_email(), |
|
| 179 | + $email->add_merge_tags( $email->get_subject() . __( ' - ADMIN BCC COPY', 'invoicing' ), $merge_tags ), |
|
| 180 | + $email->get_content( $merge_tags ), |
|
| 181 | + $email->get_attachments() |
|
| 182 | + ); |
|
| 183 | + } |
|
| 184 | + |
|
| 185 | + if ( ! $result ) { |
|
| 186 | + $invoice->add_note( sprintf( __( 'Failed sending %s notification email.', 'invoicing' ), sanitize_key( $type ) ), false, false, true ); |
|
| 187 | + } |
|
| 188 | + |
|
| 189 | + do_action( 'getpaid_after_send_invoice_notification', $type, $invoice, $email ); |
|
| 190 | + |
|
| 191 | + return $result; |
|
| 192 | + } |
|
| 193 | + |
|
| 194 | + /** |
|
| 195 | + * Also send emails to any cc users. |
|
| 196 | + * |
|
| 197 | + * @param array $recipients |
|
| 198 | + * @param GetPaid_Notification_Email $email |
|
| 199 | + */ |
|
| 200 | + public function filter_email_recipients( $recipients, $email ) { |
|
| 201 | + |
|
| 202 | + if ( ! $email->is_admin_email() ) { |
|
| 203 | + $cc = $email->object->get_email_cc(); |
|
| 204 | + |
|
| 205 | + if ( ! empty( $cc ) ) { |
|
| 206 | + $cc = array_map( 'sanitize_email', wpinv_parse_list( $cc ) ); |
|
| 207 | + $recipients = array_filter( array_unique( array_merge( $recipients, $cc ) ) ); |
|
| 208 | + } |
|
| 209 | + |
|
| 210 | + } |
|
| 211 | + |
|
| 212 | + return $recipients; |
|
| 213 | + |
|
| 214 | + } |
|
| 215 | + |
|
| 216 | + /** |
|
| 217 | + * Sends a new invoice notification. |
|
| 218 | + * |
|
| 219 | + * @param WPInv_Invoice $invoice |
|
| 220 | + */ |
|
| 221 | + public function new_invoice( $invoice ) { |
|
| 222 | + |
|
| 223 | + $email = new GetPaid_Notification_Email( __FUNCTION__, $invoice ); |
|
| 224 | + $recipient = wpinv_get_admin_email(); |
|
| 225 | + |
|
| 226 | + return $this->send_email( $invoice, $email, __FUNCTION__, $recipient ); |
|
| 227 | + |
|
| 228 | + } |
|
| 229 | + |
|
| 230 | + /** |
|
| 231 | + * Sends a cancelled invoice notification. |
|
| 232 | + * |
|
| 233 | + * @param WPInv_Invoice $invoice |
|
| 234 | + */ |
|
| 235 | + public function cancelled_invoice( $invoice ) { |
|
| 236 | + |
|
| 237 | + $email = new GetPaid_Notification_Email( __FUNCTION__, $invoice ); |
|
| 238 | + $recipient = wpinv_get_admin_email(); |
|
| 239 | 239 | |
| 240 | - return $this->send_email( $invoice, $email, __FUNCTION__, $recipient ); |
|
| 240 | + return $this->send_email( $invoice, $email, __FUNCTION__, $recipient ); |
|
| 241 | 241 | |
| 242 | - } |
|
| 242 | + } |
|
| 243 | 243 | |
| 244 | - /** |
|
| 245 | - * Sends a failed invoice notification. |
|
| 246 | - * |
|
| 247 | - * @param WPInv_Invoice $invoice |
|
| 248 | - */ |
|
| 249 | - public function failed_invoice( $invoice ) { |
|
| 244 | + /** |
|
| 245 | + * Sends a failed invoice notification. |
|
| 246 | + * |
|
| 247 | + * @param WPInv_Invoice $invoice |
|
| 248 | + */ |
|
| 249 | + public function failed_invoice( $invoice ) { |
|
| 250 | 250 | |
| 251 | - $email = new GetPaid_Notification_Email( __FUNCTION__, $invoice ); |
|
| 252 | - $recipient = wpinv_get_admin_email(); |
|
| 253 | - |
|
| 254 | - return $this->send_email( $invoice, $email, __FUNCTION__, $recipient ); |
|
| 251 | + $email = new GetPaid_Notification_Email( __FUNCTION__, $invoice ); |
|
| 252 | + $recipient = wpinv_get_admin_email(); |
|
| 253 | + |
|
| 254 | + return $this->send_email( $invoice, $email, __FUNCTION__, $recipient ); |
|
| 255 | 255 | |
| 256 | - } |
|
| 256 | + } |
|
| 257 | 257 | |
| 258 | - /** |
|
| 259 | - * Sends a notification whenever an invoice is put on hold. |
|
| 260 | - * |
|
| 261 | - * @param WPInv_Invoice $invoice |
|
| 262 | - */ |
|
| 263 | - public function onhold_invoice( $invoice ) { |
|
| 258 | + /** |
|
| 259 | + * Sends a notification whenever an invoice is put on hold. |
|
| 260 | + * |
|
| 261 | + * @param WPInv_Invoice $invoice |
|
| 262 | + */ |
|
| 263 | + public function onhold_invoice( $invoice ) { |
|
| 264 | 264 | |
| 265 | - $email = new GetPaid_Notification_Email( __FUNCTION__, $invoice ); |
|
| 266 | - $recipient = $invoice->get_email(); |
|
| 265 | + $email = new GetPaid_Notification_Email( __FUNCTION__, $invoice ); |
|
| 266 | + $recipient = $invoice->get_email(); |
|
| 267 | 267 | |
| 268 | - return $this->send_email( $invoice, $email, __FUNCTION__, $recipient ); |
|
| 268 | + return $this->send_email( $invoice, $email, __FUNCTION__, $recipient ); |
|
| 269 | 269 | |
| 270 | - } |
|
| 270 | + } |
|
| 271 | 271 | |
| 272 | - /** |
|
| 273 | - * Sends a notification whenever an invoice is marked as processing payment. |
|
| 274 | - * |
|
| 275 | - * @param WPInv_Invoice $invoice |
|
| 276 | - */ |
|
| 277 | - public function processing_invoice( $invoice ) { |
|
| 272 | + /** |
|
| 273 | + * Sends a notification whenever an invoice is marked as processing payment. |
|
| 274 | + * |
|
| 275 | + * @param WPInv_Invoice $invoice |
|
| 276 | + */ |
|
| 277 | + public function processing_invoice( $invoice ) { |
|
| 278 | 278 | |
| 279 | - $email = new GetPaid_Notification_Email( __FUNCTION__, $invoice ); |
|
| 280 | - $recipient = $invoice->get_email(); |
|
| 279 | + $email = new GetPaid_Notification_Email( __FUNCTION__, $invoice ); |
|
| 280 | + $recipient = $invoice->get_email(); |
|
| 281 | 281 | |
| 282 | - return $this->send_email( $invoice, $email, __FUNCTION__, $recipient ); |
|
| 282 | + return $this->send_email( $invoice, $email, __FUNCTION__, $recipient ); |
|
| 283 | 283 | |
| 284 | - } |
|
| 284 | + } |
|
| 285 | 285 | |
| 286 | - /** |
|
| 287 | - * Sends a notification whenever an invoice is paid. |
|
| 288 | - * |
|
| 289 | - * @param WPInv_Invoice $invoice |
|
| 290 | - */ |
|
| 291 | - public function completed_invoice( $invoice ) { |
|
| 286 | + /** |
|
| 287 | + * Sends a notification whenever an invoice is paid. |
|
| 288 | + * |
|
| 289 | + * @param WPInv_Invoice $invoice |
|
| 290 | + */ |
|
| 291 | + public function completed_invoice( $invoice ) { |
|
| 292 | 292 | |
| 293 | - // (Maybe) abort if it is a renewal invoice. |
|
| 294 | - if ( $invoice->is_renewal() && ! wpinv_get_option( 'email_completed_invoice_renewal_active', false ) ) { |
|
| 295 | - return; |
|
| 296 | - } |
|
| 293 | + // (Maybe) abort if it is a renewal invoice. |
|
| 294 | + if ( $invoice->is_renewal() && ! wpinv_get_option( 'email_completed_invoice_renewal_active', false ) ) { |
|
| 295 | + return; |
|
| 296 | + } |
|
| 297 | 297 | |
| 298 | - $email = new GetPaid_Notification_Email( __FUNCTION__, $invoice ); |
|
| 299 | - $recipient = $invoice->get_email(); |
|
| 298 | + $email = new GetPaid_Notification_Email( __FUNCTION__, $invoice ); |
|
| 299 | + $recipient = $invoice->get_email(); |
|
| 300 | 300 | |
| 301 | - return $this->send_email( $invoice, $email, __FUNCTION__, $recipient ); |
|
| 301 | + return $this->send_email( $invoice, $email, __FUNCTION__, $recipient ); |
|
| 302 | 302 | |
| 303 | - } |
|
| 303 | + } |
|
| 304 | 304 | |
| 305 | - /** |
|
| 306 | - * Sends a notification whenever an invoice is refunded. |
|
| 307 | - * |
|
| 308 | - * @param WPInv_Invoice $invoice |
|
| 309 | - */ |
|
| 310 | - public function refunded_invoice( $invoice ) { |
|
| 305 | + /** |
|
| 306 | + * Sends a notification whenever an invoice is refunded. |
|
| 307 | + * |
|
| 308 | + * @param WPInv_Invoice $invoice |
|
| 309 | + */ |
|
| 310 | + public function refunded_invoice( $invoice ) { |
|
| 311 | 311 | |
| 312 | - $email = new GetPaid_Notification_Email( __FUNCTION__, $invoice ); |
|
| 313 | - $recipient = $invoice->get_email(); |
|
| 312 | + $email = new GetPaid_Notification_Email( __FUNCTION__, $invoice ); |
|
| 313 | + $recipient = $invoice->get_email(); |
|
| 314 | 314 | |
| 315 | - return $this->send_email( $invoice, $email, __FUNCTION__, $recipient ); |
|
| 315 | + return $this->send_email( $invoice, $email, __FUNCTION__, $recipient ); |
|
| 316 | 316 | |
| 317 | - } |
|
| 317 | + } |
|
| 318 | 318 | |
| 319 | - /** |
|
| 320 | - * Notifies a user about new invoices |
|
| 321 | - * |
|
| 322 | - * @param WPInv_Invoice $invoice |
|
| 323 | - */ |
|
| 324 | - public function user_invoice( $invoice ) { |
|
| 319 | + /** |
|
| 320 | + * Notifies a user about new invoices |
|
| 321 | + * |
|
| 322 | + * @param WPInv_Invoice $invoice |
|
| 323 | + */ |
|
| 324 | + public function user_invoice( $invoice ) { |
|
| 325 | 325 | |
| 326 | - // Only send this email for invoices created via the admin page. |
|
| 327 | - if ( $this->is_payment_form_invoice( $invoice->get_id() ) ) { |
|
| 328 | - return; |
|
| 329 | - } |
|
| 326 | + // Only send this email for invoices created via the admin page. |
|
| 327 | + if ( $this->is_payment_form_invoice( $invoice->get_id() ) ) { |
|
| 328 | + return; |
|
| 329 | + } |
|
| 330 | 330 | |
| 331 | - $email = new GetPaid_Notification_Email( __FUNCTION__, $invoice ); |
|
| 332 | - $recipient = $invoice->get_email(); |
|
| 331 | + $email = new GetPaid_Notification_Email( __FUNCTION__, $invoice ); |
|
| 332 | + $recipient = $invoice->get_email(); |
|
| 333 | 333 | |
| 334 | - return $this->send_email( $invoice, $email, __FUNCTION__, $recipient ); |
|
| 334 | + return $this->send_email( $invoice, $email, __FUNCTION__, $recipient ); |
|
| 335 | 335 | |
| 336 | - } |
|
| 336 | + } |
|
| 337 | 337 | |
| 338 | - /** |
|
| 339 | - * Checks if an invoice is a payment form invoice. |
|
| 340 | - * |
|
| 341 | - * @param int $invoice |
|
| 342 | - * @return bool |
|
| 343 | - */ |
|
| 344 | - public function is_payment_form_invoice( $invoice ) { |
|
| 345 | - return empty( $_GET['getpaid-admin-action'] ) && 'payment_form' == get_post_meta( $invoice, 'wpinv_created_via', true ); |
|
| 346 | - } |
|
| 338 | + /** |
|
| 339 | + * Checks if an invoice is a payment form invoice. |
|
| 340 | + * |
|
| 341 | + * @param int $invoice |
|
| 342 | + * @return bool |
|
| 343 | + */ |
|
| 344 | + public function is_payment_form_invoice( $invoice ) { |
|
| 345 | + return empty( $_GET['getpaid-admin-action'] ) && 'payment_form' == get_post_meta( $invoice, 'wpinv_created_via', true ); |
|
| 346 | + } |
|
| 347 | 347 | |
| 348 | - /** |
|
| 349 | - * Notifies admin about new invoice notes |
|
| 350 | - * |
|
| 351 | - * @param WPInv_Invoice $invoice |
|
| 352 | - * @param string $note |
|
| 353 | - */ |
|
| 354 | - public function user_note( $invoice, $note ) { |
|
| 348 | + /** |
|
| 349 | + * Notifies admin about new invoice notes |
|
| 350 | + * |
|
| 351 | + * @param WPInv_Invoice $invoice |
|
| 352 | + * @param string $note |
|
| 353 | + */ |
|
| 354 | + public function user_note( $invoice, $note ) { |
|
| 355 | 355 | |
| 356 | - $email = new GetPaid_Notification_Email( __FUNCTION__, $invoice ); |
|
| 357 | - $recipient = $invoice->get_email(); |
|
| 358 | - |
|
| 359 | - return $this->send_email( $invoice, $email, __FUNCTION__, $recipient, array( 'customer_note' => $note ) ); |
|
| 360 | - |
|
| 361 | - } |
|
| 356 | + $email = new GetPaid_Notification_Email( __FUNCTION__, $invoice ); |
|
| 357 | + $recipient = $invoice->get_email(); |
|
| 358 | + |
|
| 359 | + return $this->send_email( $invoice, $email, __FUNCTION__, $recipient, array( 'customer_note' => $note ) ); |
|
| 360 | + |
|
| 361 | + } |
|
| 362 | 362 | |
| 363 | - /** |
|
| 364 | - * (Force) Sends overdue notices. |
|
| 365 | - * |
|
| 366 | - * @param WPInv_Invoice $invoice |
|
| 367 | - */ |
|
| 368 | - public function force_send_overdue_notice( $invoice ) { |
|
| 369 | - $email = new GetPaid_Notification_Email( 'overdue', $invoice ); |
|
| 370 | - return $this->send_email( $invoice, $email, 'overdue', $invoice->get_email() ); |
|
| 371 | - } |
|
| 372 | - |
|
| 373 | - /** |
|
| 374 | - * Sends overdue notices. |
|
| 375 | - * |
|
| 376 | - * @TODO: Create an invoices query class. |
|
| 377 | - */ |
|
| 378 | - public function overdue() { |
|
| 379 | - global $wpdb; |
|
| 380 | - |
|
| 381 | - $email = new GetPaid_Notification_Email( __FUNCTION__ ); |
|
| 382 | - |
|
| 383 | - // Fetch reminder days. |
|
| 384 | - $reminder_days = array_unique( wp_parse_id_list( $email->get_option( 'days' ) ) ); |
|
| 385 | - |
|
| 386 | - // Abort if non is set. |
|
| 387 | - if ( empty( $reminder_days ) ) { |
|
| 388 | - return; |
|
| 389 | - } |
|
| 390 | - |
|
| 391 | - // Retrieve date query. |
|
| 392 | - $date_query = $this->get_date_query( $reminder_days ); |
|
| 393 | - |
|
| 394 | - // Invoices table. |
|
| 395 | - $table = $wpdb->prefix . 'getpaid_invoices'; |
|
| 396 | - |
|
| 397 | - // Fetch invoices. |
|
| 398 | - $invoices = $wpdb->get_col( |
|
| 399 | - "SELECT posts.ID FROM $wpdb->posts as posts |
|
| 363 | + /** |
|
| 364 | + * (Force) Sends overdue notices. |
|
| 365 | + * |
|
| 366 | + * @param WPInv_Invoice $invoice |
|
| 367 | + */ |
|
| 368 | + public function force_send_overdue_notice( $invoice ) { |
|
| 369 | + $email = new GetPaid_Notification_Email( 'overdue', $invoice ); |
|
| 370 | + return $this->send_email( $invoice, $email, 'overdue', $invoice->get_email() ); |
|
| 371 | + } |
|
| 372 | + |
|
| 373 | + /** |
|
| 374 | + * Sends overdue notices. |
|
| 375 | + * |
|
| 376 | + * @TODO: Create an invoices query class. |
|
| 377 | + */ |
|
| 378 | + public function overdue() { |
|
| 379 | + global $wpdb; |
|
| 380 | + |
|
| 381 | + $email = new GetPaid_Notification_Email( __FUNCTION__ ); |
|
| 382 | + |
|
| 383 | + // Fetch reminder days. |
|
| 384 | + $reminder_days = array_unique( wp_parse_id_list( $email->get_option( 'days' ) ) ); |
|
| 385 | + |
|
| 386 | + // Abort if non is set. |
|
| 387 | + if ( empty( $reminder_days ) ) { |
|
| 388 | + return; |
|
| 389 | + } |
|
| 390 | + |
|
| 391 | + // Retrieve date query. |
|
| 392 | + $date_query = $this->get_date_query( $reminder_days ); |
|
| 393 | + |
|
| 394 | + // Invoices table. |
|
| 395 | + $table = $wpdb->prefix . 'getpaid_invoices'; |
|
| 396 | + |
|
| 397 | + // Fetch invoices. |
|
| 398 | + $invoices = $wpdb->get_col( |
|
| 399 | + "SELECT posts.ID FROM $wpdb->posts as posts |
|
| 400 | 400 | LEFT JOIN $table as invoices ON invoices.post_id = posts.ID |
| 401 | 401 | WHERE posts.post_type = 'wpi_invoice' AND posts.post_status = 'wpi-pending' $date_query"); |
| 402 | 402 | |
| 403 | - foreach ( $invoices as $invoice ) { |
|
| 403 | + foreach ( $invoices as $invoice ) { |
|
| 404 | 404 | |
| 405 | - // Only send this email for invoices created via the admin page. |
|
| 406 | - if ( ! $this->is_payment_form_invoice( $invoice ) ) { |
|
| 407 | - $invoice = new WPInv_Invoice( $invoice ); |
|
| 408 | - $email->object = $invoice; |
|
| 405 | + // Only send this email for invoices created via the admin page. |
|
| 406 | + if ( ! $this->is_payment_form_invoice( $invoice ) ) { |
|
| 407 | + $invoice = new WPInv_Invoice( $invoice ); |
|
| 408 | + $email->object = $invoice; |
|
| 409 | 409 | |
| 410 | - if ( $invoice->needs_payment() ) { |
|
| 411 | - $this->send_email( $invoice, $email, __FUNCTION__, $invoice->get_email() ); |
|
| 412 | - } |
|
| 410 | + if ( $invoice->needs_payment() ) { |
|
| 411 | + $this->send_email( $invoice, $email, __FUNCTION__, $invoice->get_email() ); |
|
| 412 | + } |
|
| 413 | 413 | |
| 414 | - } |
|
| 414 | + } |
|
| 415 | 415 | |
| 416 | - } |
|
| 416 | + } |
|
| 417 | 417 | |
| 418 | - } |
|
| 418 | + } |
|
| 419 | 419 | |
| 420 | - /** |
|
| 421 | - * Calculates the date query for an invoices query |
|
| 422 | - * |
|
| 423 | - * @param array $reminder_days |
|
| 424 | - * @return string |
|
| 425 | - */ |
|
| 426 | - public function get_date_query( $reminder_days ) { |
|
| 420 | + /** |
|
| 421 | + * Calculates the date query for an invoices query |
|
| 422 | + * |
|
| 423 | + * @param array $reminder_days |
|
| 424 | + * @return string |
|
| 425 | + */ |
|
| 426 | + public function get_date_query( $reminder_days ) { |
|
| 427 | 427 | |
| 428 | - $date_query = array( |
|
| 429 | - 'relation' => 'OR' |
|
| 430 | - ); |
|
| 428 | + $date_query = array( |
|
| 429 | + 'relation' => 'OR' |
|
| 430 | + ); |
|
| 431 | 431 | |
| 432 | - foreach ( $reminder_days as $days ) { |
|
| 433 | - $date = date_parse( date( 'Y-m-d', strtotime( "-$days days", current_time( 'timestamp' ) ) ) ); |
|
| 432 | + foreach ( $reminder_days as $days ) { |
|
| 433 | + $date = date_parse( date( 'Y-m-d', strtotime( "-$days days", current_time( 'timestamp' ) ) ) ); |
|
| 434 | 434 | |
| 435 | - $date_query[] = array( |
|
| 436 | - 'year' => $date['year'], |
|
| 437 | - 'month' => $date['month'], |
|
| 438 | - 'day' => $date['day'], |
|
| 439 | - ); |
|
| 435 | + $date_query[] = array( |
|
| 436 | + 'year' => $date['year'], |
|
| 437 | + 'month' => $date['month'], |
|
| 438 | + 'day' => $date['day'], |
|
| 439 | + ); |
|
| 440 | 440 | |
| 441 | - } |
|
| 441 | + } |
|
| 442 | 442 | |
| 443 | - $date_query = new WP_Date_Query( $date_query, 'invoices.due_date' ); |
|
| 443 | + $date_query = new WP_Date_Query( $date_query, 'invoices.due_date' ); |
|
| 444 | 444 | |
| 445 | - return $date_query->get_sql(); |
|
| 445 | + return $date_query->get_sql(); |
|
| 446 | 446 | |
| 447 | - } |
|
| 447 | + } |
|
| 448 | 448 | |
| 449 | 449 | } |
@@ -13,30 +13,30 @@ discard block |
||
| 13 | 13 | class GetPaid_Manual_Gateway extends GetPaid_Payment_Gateway { |
| 14 | 14 | |
| 15 | 15 | /** |
| 16 | - * Payment method id. |
|
| 17 | - * |
|
| 18 | - * @var string |
|
| 19 | - */ |
|
| 16 | + * Payment method id. |
|
| 17 | + * |
|
| 18 | + * @var string |
|
| 19 | + */ |
|
| 20 | 20 | public $id = 'manual'; |
| 21 | 21 | |
| 22 | 22 | /** |
| 23 | - * An array of features that this gateway supports. |
|
| 24 | - * |
|
| 25 | - * @var array |
|
| 26 | - */ |
|
| 23 | + * An array of features that this gateway supports. |
|
| 24 | + * |
|
| 25 | + * @var array |
|
| 26 | + */ |
|
| 27 | 27 | protected $supports = array( 'subscription' ); |
| 28 | 28 | |
| 29 | 29 | /** |
| 30 | - * Payment method order. |
|
| 31 | - * |
|
| 32 | - * @var int |
|
| 33 | - */ |
|
| 34 | - public $order = 11; |
|
| 30 | + * Payment method order. |
|
| 31 | + * |
|
| 32 | + * @var int |
|
| 33 | + */ |
|
| 34 | + public $order = 11; |
|
| 35 | 35 | |
| 36 | 36 | /** |
| 37 | - * Class constructor. |
|
| 38 | - */ |
|
| 39 | - public function __construct() { |
|
| 37 | + * Class constructor. |
|
| 38 | + */ |
|
| 39 | + public function __construct() { |
|
| 40 | 40 | parent::__construct(); |
| 41 | 41 | |
| 42 | 42 | $this->title = __( 'Manual Payment', 'invoicing' ); |
@@ -46,15 +46,15 @@ discard block |
||
| 46 | 46 | } |
| 47 | 47 | |
| 48 | 48 | /** |
| 49 | - * Process Payment. |
|
| 50 | - * |
|
| 51 | - * |
|
| 52 | - * @param WPInv_Invoice $invoice Invoice. |
|
| 53 | - * @param array $submission_data Posted checkout fields. |
|
| 54 | - * @param GetPaid_Payment_Form_Submission $submission Checkout submission. |
|
| 55 | - * @return array |
|
| 56 | - */ |
|
| 57 | - public function process_payment( $invoice, $submission_data, $submission ) { |
|
| 49 | + * Process Payment. |
|
| 50 | + * |
|
| 51 | + * |
|
| 52 | + * @param WPInv_Invoice $invoice Invoice. |
|
| 53 | + * @param array $submission_data Posted checkout fields. |
|
| 54 | + * @param GetPaid_Payment_Form_Submission $submission Checkout submission. |
|
| 55 | + * @return array |
|
| 56 | + */ |
|
| 57 | + public function process_payment( $invoice, $submission_data, $submission ) { |
|
| 58 | 58 | |
| 59 | 59 | // Mark it as paid. |
| 60 | 60 | $invoice->mark_paid(); |
@@ -68,13 +68,13 @@ discard block |
||
| 68 | 68 | } |
| 69 | 69 | |
| 70 | 70 | /** |
| 71 | - * (Maybe) renews a manual subscription profile. |
|
| 72 | - * |
|
| 73 | - * |
|
| 74 | - * @param bool $should_expire |
|
| 71 | + * (Maybe) renews a manual subscription profile. |
|
| 72 | + * |
|
| 73 | + * |
|
| 74 | + * @param bool $should_expire |
|
| 75 | 75 | * @param WPInv_Subscription $subscription |
| 76 | - */ |
|
| 77 | - public function maybe_renew_subscription( $should_expire, $subscription ) { |
|
| 76 | + */ |
|
| 77 | + public function maybe_renew_subscription( $should_expire, $subscription ) { |
|
| 78 | 78 | |
| 79 | 79 | // Ensure its our subscription && it's active. |
| 80 | 80 | if ( 'manual' != $subscription->get_gateway() || ! $subscription->has_status( 'active trialling' ) ) { |