@@ -18,688 +18,688 @@ |
||
| 18 | 18 | */ |
| 19 | 19 | class GetPaid_REST_Report_Sales_Controller extends GetPaid_REST_Date_Based_Controller { |
| 20 | 20 | |
| 21 | - /** |
|
| 22 | - * Route base. |
|
| 23 | - * |
|
| 24 | - * @var string |
|
| 25 | - */ |
|
| 26 | - protected $rest_base = 'reports/sales'; |
|
| 27 | - |
|
| 28 | - /** |
|
| 29 | - * The report data. |
|
| 30 | - * |
|
| 31 | - * @var stdClass |
|
| 32 | - */ |
|
| 33 | - public $report_data; |
|
| 34 | - |
|
| 35 | - /** |
|
| 36 | - * The report range. |
|
| 37 | - * |
|
| 38 | - * @var array |
|
| 39 | - */ |
|
| 40 | - public $report_range; |
|
| 41 | - |
|
| 42 | - /** |
|
| 43 | - * Registers the routes for the objects of the controller. |
|
| 44 | - * |
|
| 45 | - * @since 2.0.0 |
|
| 46 | - * |
|
| 47 | - * @see register_rest_route() |
|
| 48 | - */ |
|
| 49 | - public function register_namespace_routes( $namespace ) { |
|
| 50 | - |
|
| 51 | - // Get sales report. |
|
| 52 | - register_rest_route( |
|
| 53 | - $namespace, |
|
| 54 | - $this->rest_base, |
|
| 55 | - array( |
|
| 56 | - array( |
|
| 57 | - 'methods' => WP_REST_Server::READABLE, |
|
| 58 | - 'callback' => array( $this, 'get_items' ), |
|
| 59 | - 'permission_callback' => array( $this, 'get_items_permissions_check' ), |
|
| 60 | - 'args' => $this->get_collection_params(), |
|
| 61 | - ), |
|
| 62 | - 'schema' => array( $this, 'get_public_item_schema' ), |
|
| 63 | - ) |
|
| 64 | - ); |
|
| 65 | - |
|
| 66 | - } |
|
| 67 | - |
|
| 68 | - /** |
|
| 69 | - * Makes sure the current user has access to READ the report APIs. |
|
| 70 | - * |
|
| 71 | - * @since 2.0.0 |
|
| 72 | - * @param WP_REST_Request $request Full data about the request. |
|
| 73 | - * @return WP_Error|boolean |
|
| 74 | - */ |
|
| 75 | - public function get_items_permissions_check( $request ) { |
|
| 76 | - |
|
| 77 | - if ( ! wpinv_current_user_can_manage_invoicing() ) { |
|
| 78 | - return new WP_Error( 'rest_cannot_view', __( 'Sorry, you cannot list resources.', 'invoicing' ), array( 'status' => rest_authorization_required_code() ) ); |
|
| 79 | - } |
|
| 80 | - |
|
| 81 | - return true; |
|
| 82 | - } |
|
| 83 | - |
|
| 84 | - /** |
|
| 85 | - * Get sales reports. |
|
| 86 | - * |
|
| 87 | - * @param WP_REST_Request $request |
|
| 88 | - * @return array|WP_Error |
|
| 89 | - */ |
|
| 90 | - public function get_items( $request ) { |
|
| 91 | - $data = array(); |
|
| 92 | - $item = $this->prepare_item_for_response( null, $request ); |
|
| 93 | - $data[] = $this->prepare_response_for_collection( $item ); |
|
| 94 | - |
|
| 95 | - return rest_ensure_response( $data ); |
|
| 96 | - } |
|
| 97 | - |
|
| 98 | - /** |
|
| 99 | - * Prepare a report sales object for serialization. |
|
| 100 | - * |
|
| 101 | - * @param null $_ |
|
| 102 | - * @param WP_REST_Request $request Request object. |
|
| 103 | - * @return WP_REST_Response $response Response data. |
|
| 104 | - */ |
|
| 105 | - public function prepare_item_for_response( $_, $request ) { |
|
| 106 | - |
|
| 107 | - // Set report range. |
|
| 108 | - $this->report_range = $this->get_date_range( $request ); |
|
| 109 | - |
|
| 110 | - $report_data = $this->get_report_data(); |
|
| 111 | - $period_totals = array(); |
|
| 112 | - |
|
| 113 | - // Setup period totals by ensuring each period in the interval has data. |
|
| 114 | - $start_date = strtotime( $this->report_range['after'] ); |
|
| 115 | - |
|
| 116 | - if ( 'month' === $this->groupby ) { |
|
| 117 | - $start_date = strtotime( gmdate( 'Y-m-01', $start_date ) ); |
|
| 118 | - } |
|
| 119 | - |
|
| 120 | - for ( $i = 0; $i < $this->interval; $i++ ) { |
|
| 121 | - |
|
| 122 | - switch ( $this->groupby ) { |
|
| 123 | - case 'day': |
|
| 124 | - $time = gmdate( 'Y-m-d', strtotime( "+{$i} DAY", $start_date ) ); |
|
| 125 | - break; |
|
| 126 | - default: |
|
| 127 | - $time = gmdate( 'Y-m', strtotime( "+{$i} MONTH", $start_date ) ); |
|
| 128 | - break; |
|
| 129 | - } |
|
| 130 | - |
|
| 131 | - // Set the defaults for each period. |
|
| 132 | - $period_totals[ $time ] = array( |
|
| 133 | - 'invoices' => 0, |
|
| 134 | - 'items' => 0, |
|
| 135 | - 'refunded_items' => 0, |
|
| 136 | - 'refunded_tax' => wpinv_round_amount( 0.00 ), |
|
| 137 | - 'subtotal' => wpinv_round_amount( 0.00 ), |
|
| 138 | - 'refunded_subtotal' => wpinv_round_amount( 0.00 ), |
|
| 139 | - 'refunded_fees' => wpinv_round_amount( 0.00 ), |
|
| 140 | - 'discount' => wpinv_round_amount( 0.00 ), |
|
| 141 | - ); |
|
| 142 | - |
|
| 143 | - foreach ( array_keys( wpinv_get_report_graphs() ) as $key ) { |
|
| 144 | - if ( ! isset( $period_totals[ $time ][ $key ] ) ) { |
|
| 145 | - $period_totals[ $time ][ $key ] = wpinv_round_amount( 0.00 ); |
|
| 146 | - } |
|
| 147 | - } |
|
| 148 | - } |
|
| 149 | - |
|
| 150 | - // add total sales, total invoice count, total tax for each period |
|
| 151 | - $date_format = ( 'day' === $this->groupby ) ? 'Y-m-d' : 'Y-m'; |
|
| 152 | - foreach ( $report_data->invoices as $invoice ) { |
|
| 153 | - $time = gmdate( $date_format, strtotime( $invoice->post_date ) ); |
|
| 154 | - |
|
| 155 | - if ( ! isset( $period_totals[ $time ] ) ) { |
|
| 156 | - continue; |
|
| 157 | - } |
|
| 158 | - |
|
| 159 | - $period_totals[ $time ]['sales'] = wpinv_round_amount( $invoice->total_sales ); |
|
| 160 | - $period_totals[ $time ]['tax'] = wpinv_round_amount( $invoice->total_tax ); |
|
| 161 | - $period_totals[ $time ]['subtotal'] = wpinv_round_amount( $invoice->subtotal ); |
|
| 162 | - $period_totals[ $time ]['fees'] = wpinv_round_amount( $invoice->total_fees ); |
|
| 163 | - |
|
| 164 | - } |
|
| 165 | - |
|
| 166 | - foreach ( $report_data->refunds as $invoice ) { |
|
| 167 | - $time = gmdate( $date_format, strtotime( $invoice->post_date ) ); |
|
| 168 | - |
|
| 169 | - if ( ! isset( $period_totals[ $time ] ) ) { |
|
| 170 | - continue; |
|
| 171 | - } |
|
| 172 | - |
|
| 173 | - $period_totals[ $time ]['refunds'] = wpinv_round_amount( $invoice->total_sales ); |
|
| 174 | - $period_totals[ $time ]['refunded_tax'] = wpinv_round_amount( $invoice->total_tax ); |
|
| 175 | - $period_totals[ $time ]['refunded_subtotal'] = wpinv_round_amount( $invoice->subtotal ); |
|
| 176 | - $period_totals[ $time ]['refunded_fees'] = wpinv_round_amount( $invoice->total_fees ); |
|
| 177 | - |
|
| 178 | - } |
|
| 179 | - |
|
| 180 | - foreach ( $report_data->invoice_counts as $invoice ) { |
|
| 181 | - $time = gmdate( $date_format, strtotime( $invoice->post_date ) ); |
|
| 182 | - |
|
| 183 | - if ( isset( $period_totals[ $time ] ) ) { |
|
| 184 | - $period_totals[ $time ]['invoices'] = (int) $invoice->count; |
|
| 185 | - } |
|
| 186 | - } |
|
| 187 | - |
|
| 188 | - // Add total invoice items for each period. |
|
| 189 | - foreach ( $report_data->invoice_items as $invoice_item ) { |
|
| 190 | - $time = ( 'day' === $this->groupby ) ? gmdate( 'Y-m-d', strtotime( $invoice_item->post_date ) ) : gmdate( 'Y-m', strtotime( $invoice_item->post_date ) ); |
|
| 191 | - |
|
| 192 | - if ( isset( $period_totals[ $time ] ) ) { |
|
| 193 | - $period_totals[ $time ]['items'] = (int) $invoice_item->invoice_item_count; |
|
| 194 | - } |
|
| 195 | - } |
|
| 196 | - |
|
| 197 | - // Add total discount for each period. |
|
| 198 | - foreach ( $report_data->coupons as $discount ) { |
|
| 199 | - $time = ( 'day' === $this->groupby ) ? gmdate( 'Y-m-d', strtotime( $discount->post_date ) ) : gmdate( 'Y-m', strtotime( $discount->post_date ) ); |
|
| 200 | - |
|
| 201 | - if ( isset( $period_totals[ $time ] ) ) { |
|
| 202 | - $period_totals[ $time ]['discount'] = wpinv_round_amount( $discount->discount_amount ); |
|
| 203 | - } |
|
| 204 | - } |
|
| 205 | - |
|
| 206 | - // Extra fields. |
|
| 207 | - foreach ( array_keys( wpinv_get_report_graphs() ) as $key ) { |
|
| 208 | - |
|
| 209 | - // Abort unprepared. |
|
| 210 | - if ( ! isset( $report_data->$key ) ) { |
|
| 211 | - continue; |
|
| 212 | - } |
|
| 213 | - |
|
| 214 | - // Abort defaults. |
|
| 215 | - if ( in_array( $key, array( 'sales', 'refunds', 'tax', 'fees', 'discount', 'invoices', 'items' ) ) ) { |
|
| 216 | - continue; |
|
| 217 | - } |
|
| 218 | - |
|
| 219 | - // Set values. |
|
| 220 | - foreach ( $report_data->$key as $item ) { |
|
| 221 | - $time = ( 'day' === $this->groupby ) ? gmdate( 'Y-m-d', strtotime( $item->date ) ) : gmdate( 'Y-m', strtotime( $item->date ) ); |
|
| 222 | - |
|
| 223 | - if ( isset( $period_totals[ $time ] ) ) { |
|
| 224 | - $period_totals[ $time ][ $key ] = wpinv_round_amount( $item->val ); |
|
| 225 | - } |
|
| 226 | - } |
|
| 227 | - |
|
| 228 | - unset( $report_data->$key ); |
|
| 229 | - } |
|
| 230 | - |
|
| 231 | - $report_data->totals = $period_totals; |
|
| 232 | - $report_data->grouped_by = $this->groupby; |
|
| 233 | - $report_data->interval = max( $this->interval, 1 ); |
|
| 234 | - $report_data->currency = wpinv_get_currency(); |
|
| 235 | - $report_data->currency_symbol = wpinv_currency_symbol(); |
|
| 236 | - $report_data->currency_position = wpinv_currency_position(); |
|
| 237 | - $report_data->decimal_places = wpinv_decimals(); |
|
| 238 | - $report_data->thousands_sep = wpinv_thousands_separator(); |
|
| 239 | - $report_data->decimals_sep = wpinv_decimal_separator(); |
|
| 240 | - $report_data->start_date = gmdate( 'Y-m-d', strtotime( $this->report_range['after'] ) ); |
|
| 241 | - $report_data->end_date = gmdate( 'Y-m-d', strtotime( $this->report_range['before'] ) ); |
|
| 242 | - $report_data->start_date_locale = getpaid_format_date( gmdate( 'Y-m-d', strtotime( $this->report_range['after'] ) ) ); |
|
| 243 | - $report_data->end_date_locale = getpaid_format_date( gmdate( 'Y-m-d', strtotime( $this->report_range['before'] ) ) ); |
|
| 244 | - $report_data->decimals_sep = wpinv_decimal_separator(); |
|
| 245 | - |
|
| 246 | - $context = ! empty( $request['context'] ) ? $request['context'] : 'view'; |
|
| 247 | - $data = $report_data; |
|
| 248 | - unset( $data->invoice_counts, $data->invoices, $data->coupons, $data->refunds, $data->invoice_items ); |
|
| 249 | - $data = $this->add_additional_fields_to_object( (array) $data, $request ); |
|
| 250 | - $data = $this->filter_response_by_context( $data, $context ); |
|
| 251 | - |
|
| 252 | - // Wrap the data in a response object. |
|
| 253 | - $response = rest_ensure_response( $data ); |
|
| 254 | - $response->add_links( |
|
| 21 | + /** |
|
| 22 | + * Route base. |
|
| 23 | + * |
|
| 24 | + * @var string |
|
| 25 | + */ |
|
| 26 | + protected $rest_base = 'reports/sales'; |
|
| 27 | + |
|
| 28 | + /** |
|
| 29 | + * The report data. |
|
| 30 | + * |
|
| 31 | + * @var stdClass |
|
| 32 | + */ |
|
| 33 | + public $report_data; |
|
| 34 | + |
|
| 35 | + /** |
|
| 36 | + * The report range. |
|
| 37 | + * |
|
| 38 | + * @var array |
|
| 39 | + */ |
|
| 40 | + public $report_range; |
|
| 41 | + |
|
| 42 | + /** |
|
| 43 | + * Registers the routes for the objects of the controller. |
|
| 44 | + * |
|
| 45 | + * @since 2.0.0 |
|
| 46 | + * |
|
| 47 | + * @see register_rest_route() |
|
| 48 | + */ |
|
| 49 | + public function register_namespace_routes( $namespace ) { |
|
| 50 | + |
|
| 51 | + // Get sales report. |
|
| 52 | + register_rest_route( |
|
| 53 | + $namespace, |
|
| 54 | + $this->rest_base, |
|
| 255 | 55 | array( |
| 256 | - 'about' => array( |
|
| 257 | - 'href' => rest_url( sprintf( '%s/reports', $this->namespace ) ), |
|
| 258 | - ), |
|
| 56 | + array( |
|
| 57 | + 'methods' => WP_REST_Server::READABLE, |
|
| 58 | + 'callback' => array( $this, 'get_items' ), |
|
| 59 | + 'permission_callback' => array( $this, 'get_items_permissions_check' ), |
|
| 60 | + 'args' => $this->get_collection_params(), |
|
| 61 | + ), |
|
| 62 | + 'schema' => array( $this, 'get_public_item_schema' ), |
|
| 259 | 63 | ) |
| 260 | 64 | ); |
| 261 | 65 | |
| 262 | - return apply_filters( 'getpaid_rest_prepare_report_sales', $response, $report_data, $request ); |
|
| 263 | - } |
|
| 264 | - |
|
| 265 | - /** |
|
| 266 | - * Get report data. |
|
| 267 | - * |
|
| 268 | - * @return stdClass |
|
| 269 | - */ |
|
| 270 | - public function get_report_data() { |
|
| 271 | - if ( empty( $this->report_data ) ) { |
|
| 272 | - $this->query_report_data(); |
|
| 273 | - } |
|
| 274 | - return $this->report_data; |
|
| 275 | - } |
|
| 276 | - |
|
| 277 | - /** |
|
| 278 | - * Get all data needed for this report and store in the class. |
|
| 279 | - */ |
|
| 280 | - protected function query_report_data() { |
|
| 281 | - |
|
| 282 | - // Prepare reports. |
|
| 283 | - $this->report_data = (object) array( |
|
| 284 | - 'invoice_counts' => $this->query_invoice_counts(), //count, post_date |
|
| 285 | - 'coupons' => $this->query_coupon_counts(), // discount_amount, post_date |
|
| 286 | - 'invoice_items' => $this->query_item_counts(), // invoice_item_count, post_date |
|
| 287 | - 'refunded_items' => $this->count_refunded_items(), // invoice_item_count, post_date |
|
| 288 | - 'invoices' => $this->query_invoice_totals(), // total_sales, total_tax, total_discount, total_fees, subtotal, post_date |
|
| 289 | - 'refunds' => $this->query_refunded_totals(), // total_sales, total_tax, total_discount, total_fees, subtotal, post_date |
|
| 290 | - 'previous_range' => $this->previous_range, |
|
| 291 | - ); |
|
| 292 | - |
|
| 293 | - // Calculated totals. |
|
| 294 | - $this->report_data->total_tax = wpinv_round_amount( array_sum( wp_list_pluck( $this->report_data->invoices, 'total_tax' ) ) ); |
|
| 295 | - $this->report_data->total_sales = wpinv_round_amount( array_sum( wp_list_pluck( $this->report_data->invoices, 'total_sales' ) ) ); |
|
| 296 | - $this->report_data->total_discount = wpinv_round_amount( array_sum( wp_list_pluck( $this->report_data->invoices, 'total_discount' ) ) ); |
|
| 297 | - $this->report_data->total_fees = wpinv_round_amount( array_sum( wp_list_pluck( $this->report_data->invoices, 'total_fees' ) ) ); |
|
| 298 | - $this->report_data->subtotal = wpinv_round_amount( array_sum( wp_list_pluck( $this->report_data->invoices, 'subtotal' ) ) ); |
|
| 299 | - $this->report_data->net_sales = wpinv_round_amount( $this->report_data->total_sales - max( 0, $this->report_data->total_tax ) ); |
|
| 300 | - $this->report_data->total_refunded_tax = wpinv_round_amount( array_sum( wp_list_pluck( $this->report_data->refunds, 'total_tax' ) ) ); |
|
| 301 | - $this->report_data->total_refunds = wpinv_round_amount( array_sum( wp_list_pluck( $this->report_data->refunds, 'total_sales' ) ) ); |
|
| 302 | - $this->report_data->refunded_discount = wpinv_round_amount( array_sum( wp_list_pluck( $this->report_data->refunds, 'total_discount' ) ) ); |
|
| 303 | - $this->report_data->refunded_fees = wpinv_round_amount( array_sum( wp_list_pluck( $this->report_data->refunds, 'total_fees' ) ) ); |
|
| 304 | - $this->report_data->refunded_subtotal = wpinv_round_amount( array_sum( wp_list_pluck( $this->report_data->refunds, 'subtotal' ) ) ); |
|
| 305 | - $this->report_data->net_refunds = wpinv_round_amount( $this->report_data->total_refunds + max( 0, $this->report_data->total_refunded_tax ) ); |
|
| 306 | - |
|
| 307 | - // Calculate average based on net. |
|
| 308 | - $this->report_data->average_sales = wpinv_round_amount( $this->report_data->net_sales / max( $this->interval, 1 ), 2 ); |
|
| 309 | - $this->report_data->average_total_sales = wpinv_round_amount( $this->report_data->total_sales / max( $this->interval, 1 ), 2 ); |
|
| 310 | - |
|
| 311 | - // Total invoices in this period, even if refunded. |
|
| 312 | - $this->report_data->total_invoices = absint( array_sum( wp_list_pluck( $this->report_data->invoice_counts, 'count' ) ) ); |
|
| 313 | - |
|
| 314 | - // Items invoiced in this period, even if refunded. |
|
| 315 | - $this->report_data->total_items = absint( array_sum( wp_list_pluck( $this->report_data->invoice_items, 'invoice_item_count' ) ) ); |
|
| 316 | - |
|
| 317 | - // 3rd party filtering of report data |
|
| 318 | - $this->report_data = apply_filters( 'getpaid_rest_api_filter_report_data', $this->report_data, $this ); |
|
| 319 | - } |
|
| 320 | - |
|
| 321 | - /** |
|
| 322 | - * Prepares invoice counts. |
|
| 323 | - * |
|
| 324 | - * @return array. |
|
| 325 | - */ |
|
| 326 | - protected function query_invoice_counts() { |
|
| 327 | - |
|
| 328 | - return (array) GetPaid_Reports_Helper::get_invoice_report_data( |
|
| 329 | - array( |
|
| 330 | - 'data' => array( |
|
| 331 | - 'ID' => array( |
|
| 332 | - 'type' => 'post_data', |
|
| 333 | - 'function' => 'COUNT', |
|
| 334 | - 'name' => 'count', |
|
| 335 | - 'distinct' => true, |
|
| 336 | - ), |
|
| 337 | - 'post_date' => array( |
|
| 338 | - 'type' => 'post_data', |
|
| 339 | - 'function' => 'MIN', |
|
| 340 | - 'name' => 'post_date', |
|
| 341 | - ), |
|
| 342 | - ), |
|
| 343 | - 'group_by' => $this->get_group_by_sql( 'posts.post_date' ), |
|
| 344 | - 'order_by' => 'post_date ASC', |
|
| 345 | - 'query_type' => 'get_results', |
|
| 346 | - 'filter_range' => $this->report_range, |
|
| 347 | - 'invoice_status' => array( 'publish', 'wpi-processing', 'wpi-onhold', 'wpi-refunded', 'wpi-renewal' ), |
|
| 348 | - ) |
|
| 349 | - ); |
|
| 350 | - |
|
| 351 | - } |
|
| 352 | - |
|
| 353 | - /** |
|
| 354 | - * Prepares coupon counts. |
|
| 355 | - * |
|
| 356 | - * @return array. |
|
| 357 | - */ |
|
| 358 | - protected function query_coupon_counts() { |
|
| 359 | - |
|
| 360 | - return (array) GetPaid_Reports_Helper::get_invoice_report_data( |
|
| 361 | - array( |
|
| 362 | - 'data' => array( |
|
| 363 | - 'discount' => array( |
|
| 364 | - 'type' => 'invoice_data', |
|
| 365 | - 'function' => 'SUM', |
|
| 366 | - 'name' => 'discount_amount', |
|
| 367 | - ), |
|
| 368 | - 'post_date' => array( |
|
| 369 | - 'type' => 'post_data', |
|
| 370 | - 'function' => 'MIN', |
|
| 371 | - 'name' => 'post_date', |
|
| 372 | - ), |
|
| 373 | - ), |
|
| 374 | - 'group_by' => $this->get_group_by_sql( 'posts.post_date' ), |
|
| 375 | - 'order_by' => 'post_date ASC', |
|
| 376 | - 'query_type' => 'get_results', |
|
| 377 | - 'filter_range' => $this->report_range, |
|
| 378 | - 'invoice_status' => array( 'publish', 'wpi-processing', 'wpi-onhold', 'wpi-refunded', 'wpi-renewal' ), |
|
| 379 | - ) |
|
| 380 | - ); |
|
| 381 | - |
|
| 382 | - } |
|
| 383 | - |
|
| 384 | - /** |
|
| 385 | - * Prepares item counts. |
|
| 386 | - * |
|
| 387 | - * @return array. |
|
| 388 | - */ |
|
| 389 | - protected function query_item_counts() { |
|
| 390 | - |
|
| 391 | - return (array) GetPaid_Reports_Helper::get_invoice_report_data( |
|
| 392 | - array( |
|
| 393 | - 'data' => array( |
|
| 394 | - 'quantity' => array( |
|
| 395 | - 'type' => 'invoice_item', |
|
| 396 | - 'function' => 'SUM', |
|
| 397 | - 'name' => 'invoice_item_count', |
|
| 398 | - ), |
|
| 399 | - 'post_date' => array( |
|
| 400 | - 'type' => 'post_data', |
|
| 401 | - 'function' => 'MIN', |
|
| 402 | - 'name' => 'post_date', |
|
| 403 | - ), |
|
| 404 | - ), |
|
| 405 | - 'group_by' => $this->get_group_by_sql( 'posts.post_date' ), |
|
| 406 | - 'order_by' => 'post_date ASC', |
|
| 407 | - 'query_type' => 'get_results', |
|
| 408 | - 'filter_range' => $this->report_range, |
|
| 409 | - 'invoice_status' => array( 'publish', 'wpi-processing', 'wpi-onhold', 'wpi-refunded', 'wpi-renewal' ), |
|
| 410 | - ) |
|
| 411 | - ); |
|
| 412 | - |
|
| 413 | - } |
|
| 414 | - |
|
| 415 | - /** |
|
| 416 | - * Prepares refunded item counts. |
|
| 417 | - * |
|
| 418 | - * @return array. |
|
| 419 | - */ |
|
| 420 | - protected function count_refunded_items() { |
|
| 421 | - |
|
| 422 | - return (int) GetPaid_Reports_Helper::get_invoice_report_data( |
|
| 423 | - array( |
|
| 424 | - 'data' => array( |
|
| 425 | - 'quantity' => array( |
|
| 426 | - 'type' => 'invoice_item', |
|
| 427 | - 'function' => 'SUM', |
|
| 428 | - 'name' => 'invoice_item_count', |
|
| 429 | - ), |
|
| 430 | - ), |
|
| 431 | - 'query_type' => 'get_var', |
|
| 432 | - 'filter_range' => $this->report_range, |
|
| 433 | - 'invoice_status' => array( 'wpi-refunded' ), |
|
| 434 | - ) |
|
| 435 | - ); |
|
| 436 | - |
|
| 437 | - } |
|
| 438 | - |
|
| 439 | - /** |
|
| 440 | - * Prepares daily invoice totals. |
|
| 441 | - * |
|
| 442 | - * @return array. |
|
| 443 | - */ |
|
| 444 | - protected function query_invoice_totals() { |
|
| 445 | - |
|
| 446 | - return (array) GetPaid_Reports_Helper::get_invoice_report_data( |
|
| 447 | - array( |
|
| 448 | - 'data' => array( |
|
| 449 | - 'total' => array( |
|
| 450 | - 'type' => 'invoice_data', |
|
| 451 | - 'function' => 'SUM', |
|
| 452 | - 'name' => 'total_sales', |
|
| 453 | - ), |
|
| 454 | - 'tax' => array( |
|
| 455 | - 'type' => 'invoice_data', |
|
| 456 | - 'function' => 'SUM', |
|
| 457 | - 'name' => 'total_tax', |
|
| 458 | - ), |
|
| 459 | - 'discount' => array( |
|
| 460 | - 'type' => 'invoice_data', |
|
| 461 | - 'function' => 'SUM', |
|
| 462 | - 'name' => 'total_discount', |
|
| 463 | - ), |
|
| 464 | - 'fees_total' => array( |
|
| 465 | - 'type' => 'invoice_data', |
|
| 466 | - 'function' => 'SUM', |
|
| 467 | - 'name' => 'total_fees', |
|
| 468 | - ), |
|
| 469 | - 'subtotal' => array( |
|
| 470 | - 'type' => 'invoice_data', |
|
| 471 | - 'function' => 'SUM', |
|
| 472 | - 'name' => 'subtotal', |
|
| 473 | - ), |
|
| 474 | - 'post_date' => array( |
|
| 475 | - 'type' => 'post_data', |
|
| 476 | - 'function' => '', |
|
| 477 | - 'name' => 'post_date', |
|
| 478 | - ), |
|
| 479 | - ), |
|
| 480 | - 'group_by' => $this->get_group_by_sql( 'posts.post_date' ), |
|
| 481 | - 'order_by' => 'post_date ASC', |
|
| 482 | - 'query_type' => 'get_results', |
|
| 483 | - 'filter_range' => $this->report_range, |
|
| 484 | - 'invoice_status' => array( 'publish', 'wpi-processing', 'wpi-onhold', 'wpi-renewal' ), |
|
| 485 | - ) |
|
| 486 | - ); |
|
| 487 | - |
|
| 488 | - } |
|
| 489 | - |
|
| 490 | - /** |
|
| 491 | - * Prepares daily invoice totals. |
|
| 492 | - * |
|
| 493 | - * @return array. |
|
| 494 | - */ |
|
| 495 | - protected function query_refunded_totals() { |
|
| 496 | - |
|
| 497 | - return (array) GetPaid_Reports_Helper::get_invoice_report_data( |
|
| 498 | - array( |
|
| 499 | - 'data' => array( |
|
| 500 | - 'total' => array( |
|
| 501 | - 'type' => 'invoice_data', |
|
| 502 | - 'function' => 'SUM', |
|
| 503 | - 'name' => 'total_sales', |
|
| 504 | - ), |
|
| 505 | - 'tax' => array( |
|
| 506 | - 'type' => 'invoice_data', |
|
| 507 | - 'function' => 'SUM', |
|
| 508 | - 'name' => 'total_tax', |
|
| 509 | - ), |
|
| 510 | - 'discount' => array( |
|
| 511 | - 'type' => 'invoice_data', |
|
| 512 | - 'function' => 'SUM', |
|
| 513 | - 'name' => 'total_discount', |
|
| 514 | - ), |
|
| 515 | - 'fees_total' => array( |
|
| 516 | - 'type' => 'invoice_data', |
|
| 517 | - 'function' => 'SUM', |
|
| 518 | - 'name' => 'total_fees', |
|
| 519 | - ), |
|
| 520 | - 'subtotal' => array( |
|
| 521 | - 'type' => 'invoice_data', |
|
| 522 | - 'function' => 'SUM', |
|
| 523 | - 'name' => 'subtotal', |
|
| 524 | - ), |
|
| 525 | - 'post_date' => array( |
|
| 526 | - 'type' => 'post_data', |
|
| 527 | - 'function' => '', |
|
| 528 | - 'name' => 'post_date', |
|
| 529 | - ), |
|
| 530 | - ), |
|
| 531 | - 'group_by' => $this->get_group_by_sql( 'posts.post_date' ), |
|
| 532 | - 'order_by' => 'post_date ASC', |
|
| 533 | - 'query_type' => 'get_results', |
|
| 534 | - 'filter_range' => $this->report_range, |
|
| 535 | - 'invoice_status' => array( 'wpi-refunded' ), |
|
| 536 | - ) |
|
| 537 | - ); |
|
| 538 | - |
|
| 539 | - } |
|
| 540 | - |
|
| 541 | - /** |
|
| 542 | - * Get the Report's schema, conforming to JSON Schema. |
|
| 543 | - * |
|
| 544 | - * @return array |
|
| 545 | - */ |
|
| 546 | - public function get_item_schema() { |
|
| 547 | - |
|
| 548 | - $schema = array( |
|
| 549 | - '$schema' => 'http://json-schema.org/draft-04/schema#', |
|
| 550 | - 'title' => 'sales_report', |
|
| 551 | - 'type' => 'object', |
|
| 552 | - 'properties' => array( |
|
| 553 | - 'total_sales' => array( |
|
| 554 | - 'description' => __( 'Gross sales in the period.', 'invoicing' ), |
|
| 555 | - 'type' => 'string', |
|
| 556 | - 'context' => array( 'view' ), |
|
| 557 | - 'readonly' => true, |
|
| 558 | - ), |
|
| 559 | - 'net_sales' => array( |
|
| 560 | - 'description' => __( 'Net sales in the period.', 'invoicing' ), |
|
| 561 | - 'type' => 'string', |
|
| 562 | - 'context' => array( 'view' ), |
|
| 563 | - 'readonly' => true, |
|
| 564 | - ), |
|
| 565 | - 'average_sales' => array( |
|
| 566 | - 'description' => __( 'Average net daily sales.', 'invoicing' ), |
|
| 567 | - 'type' => 'string', |
|
| 568 | - 'context' => array( 'view' ), |
|
| 569 | - 'readonly' => true, |
|
| 570 | - ), |
|
| 571 | - 'average_total_sales' => array( |
|
| 572 | - 'description' => __( 'Average gross daily sales.', 'invoicing' ), |
|
| 573 | - 'type' => 'string', |
|
| 574 | - 'context' => array( 'view' ), |
|
| 575 | - 'readonly' => true, |
|
| 576 | - ), |
|
| 577 | - 'total_invoices' => array( |
|
| 578 | - 'description' => __( 'Number of paid invoices.', 'invoicing' ), |
|
| 579 | - 'type' => 'integer', |
|
| 580 | - 'context' => array( 'view' ), |
|
| 581 | - 'readonly' => true, |
|
| 582 | - ), |
|
| 583 | - 'total_items' => array( |
|
| 584 | - 'description' => __( 'Number of items purchased.', 'invoicing' ), |
|
| 585 | - 'type' => 'integer', |
|
| 586 | - 'context' => array( 'view' ), |
|
| 587 | - 'readonly' => true, |
|
| 588 | - ), |
|
| 589 | - 'refunded_items' => array( |
|
| 590 | - 'description' => __( 'Number of items refunded.', 'invoicing' ), |
|
| 591 | - 'type' => 'integer', |
|
| 592 | - 'context' => array( 'view' ), |
|
| 593 | - 'readonly' => true, |
|
| 594 | - ), |
|
| 595 | - 'total_tax' => array( |
|
| 596 | - 'description' => __( 'Total charged for taxes.', 'invoicing' ), |
|
| 597 | - 'type' => 'string', |
|
| 598 | - 'context' => array( 'view' ), |
|
| 599 | - 'readonly' => true, |
|
| 600 | - ), |
|
| 601 | - 'total_refunded_tax' => array( |
|
| 602 | - 'description' => __( 'Total refunded for taxes.', 'invoicing' ), |
|
| 603 | - 'type' => 'string', |
|
| 604 | - 'context' => array( 'view' ), |
|
| 605 | - 'readonly' => true, |
|
| 606 | - ), |
|
| 607 | - 'total_fees' => array( |
|
| 608 | - 'description' => __( 'Total fees charged.', 'invoicing' ), |
|
| 609 | - 'type' => 'string', |
|
| 610 | - 'context' => array( 'view' ), |
|
| 611 | - 'readonly' => true, |
|
| 612 | - ), |
|
| 613 | - 'total_refunds' => array( |
|
| 614 | - 'description' => __( 'Total of refunded invoices.', 'invoicing' ), |
|
| 615 | - 'type' => 'integer', |
|
| 616 | - 'context' => array( 'view' ), |
|
| 617 | - 'readonly' => true, |
|
| 618 | - ), |
|
| 619 | - 'net_refunds' => array( |
|
| 620 | - 'description' => __( 'Net of refunded invoices.', 'invoicing' ), |
|
| 621 | - 'type' => 'integer', |
|
| 622 | - 'context' => array( 'view' ), |
|
| 623 | - 'readonly' => true, |
|
| 624 | - ), |
|
| 625 | - 'total_discount' => array( |
|
| 626 | - 'description' => __( 'Total of discounts used.', 'invoicing' ), |
|
| 627 | - 'type' => 'integer', |
|
| 628 | - 'context' => array( 'view' ), |
|
| 629 | - 'readonly' => true, |
|
| 630 | - ), |
|
| 631 | - 'totals' => array( |
|
| 632 | - 'description' => __( 'Totals.', 'invoicing' ), |
|
| 633 | - 'type' => 'array', |
|
| 634 | - 'items' => array( |
|
| 635 | - 'type' => 'array', |
|
| 636 | - ), |
|
| 637 | - 'context' => array( 'view' ), |
|
| 638 | - 'readonly' => true, |
|
| 639 | - ), |
|
| 640 | - 'interval' => array( |
|
| 641 | - 'description' => __( 'Number of months/days in the report period.', 'invoicing' ), |
|
| 642 | - 'type' => 'integer', |
|
| 643 | - 'context' => array( 'view' ), |
|
| 644 | - 'readonly' => true, |
|
| 645 | - ), |
|
| 646 | - 'previous_range' => array( |
|
| 647 | - 'description' => __( 'The previous report period.', 'invoicing' ), |
|
| 648 | - 'type' => 'array', |
|
| 649 | - 'items' => array( |
|
| 650 | - 'type' => 'string', |
|
| 651 | - ), |
|
| 652 | - 'context' => array( 'view' ), |
|
| 653 | - 'readonly' => true, |
|
| 654 | - ), |
|
| 655 | - 'grouped_by' => array( |
|
| 656 | - 'description' => __( 'The period used to group the totals.', 'invoicing' ), |
|
| 657 | - 'type' => 'string', |
|
| 658 | - 'context' => array( 'view' ), |
|
| 659 | - 'enum' => array( 'day', 'month' ), |
|
| 660 | - 'readonly' => true, |
|
| 661 | - ), |
|
| 662 | - 'currency' => array( |
|
| 663 | - 'description' => __( 'The default store currency.', 'invoicing' ), |
|
| 664 | - 'type' => 'string', |
|
| 665 | - 'context' => array( 'view' ), |
|
| 666 | - 'readonly' => true, |
|
| 667 | - ), |
|
| 668 | - 'currency_symbol' => array( |
|
| 669 | - 'description' => __( 'The default store currency symbol.', 'invoicing' ), |
|
| 670 | - 'type' => 'string', |
|
| 671 | - 'context' => array( 'view' ), |
|
| 672 | - 'readonly' => true, |
|
| 673 | - ), |
|
| 674 | - 'currency_position' => array( |
|
| 675 | - 'description' => __( 'The default store currency position.', 'invoicing' ), |
|
| 676 | - 'type' => 'string', |
|
| 677 | - 'context' => array( 'view' ), |
|
| 678 | - 'readonly' => true, |
|
| 679 | - ), |
|
| 680 | - 'decimal_places' => array( |
|
| 681 | - 'description' => __( 'The default store decimal places.', 'invoicing' ), |
|
| 682 | - 'type' => 'string', |
|
| 683 | - 'context' => array( 'view' ), |
|
| 684 | - 'readonly' => true, |
|
| 685 | - ), |
|
| 686 | - 'thousands_sep' => array( |
|
| 687 | - 'description' => __( 'The default store thousands separator.', 'invoicing' ), |
|
| 688 | - 'type' => 'string', |
|
| 689 | - 'context' => array( 'view' ), |
|
| 690 | - 'readonly' => true, |
|
| 691 | - ), |
|
| 692 | - 'decimals_sep' => array( |
|
| 693 | - 'description' => __( 'The default store decimals separator.', 'invoicing' ), |
|
| 694 | - 'type' => 'string', |
|
| 695 | - 'context' => array( 'view' ), |
|
| 696 | - 'readonly' => true, |
|
| 697 | - ), |
|
| 698 | - ), |
|
| 699 | - ); |
|
| 700 | - |
|
| 701 | - return $this->add_additional_fields_schema( $schema ); |
|
| 702 | - |
|
| 703 | - } |
|
| 66 | + } |
|
| 67 | + |
|
| 68 | + /** |
|
| 69 | + * Makes sure the current user has access to READ the report APIs. |
|
| 70 | + * |
|
| 71 | + * @since 2.0.0 |
|
| 72 | + * @param WP_REST_Request $request Full data about the request. |
|
| 73 | + * @return WP_Error|boolean |
|
| 74 | + */ |
|
| 75 | + public function get_items_permissions_check( $request ) { |
|
| 76 | + |
|
| 77 | + if ( ! wpinv_current_user_can_manage_invoicing() ) { |
|
| 78 | + return new WP_Error( 'rest_cannot_view', __( 'Sorry, you cannot list resources.', 'invoicing' ), array( 'status' => rest_authorization_required_code() ) ); |
|
| 79 | + } |
|
| 80 | + |
|
| 81 | + return true; |
|
| 82 | + } |
|
| 83 | + |
|
| 84 | + /** |
|
| 85 | + * Get sales reports. |
|
| 86 | + * |
|
| 87 | + * @param WP_REST_Request $request |
|
| 88 | + * @return array|WP_Error |
|
| 89 | + */ |
|
| 90 | + public function get_items( $request ) { |
|
| 91 | + $data = array(); |
|
| 92 | + $item = $this->prepare_item_for_response( null, $request ); |
|
| 93 | + $data[] = $this->prepare_response_for_collection( $item ); |
|
| 94 | + |
|
| 95 | + return rest_ensure_response( $data ); |
|
| 96 | + } |
|
| 97 | + |
|
| 98 | + /** |
|
| 99 | + * Prepare a report sales object for serialization. |
|
| 100 | + * |
|
| 101 | + * @param null $_ |
|
| 102 | + * @param WP_REST_Request $request Request object. |
|
| 103 | + * @return WP_REST_Response $response Response data. |
|
| 104 | + */ |
|
| 105 | + public function prepare_item_for_response( $_, $request ) { |
|
| 106 | + |
|
| 107 | + // Set report range. |
|
| 108 | + $this->report_range = $this->get_date_range( $request ); |
|
| 109 | + |
|
| 110 | + $report_data = $this->get_report_data(); |
|
| 111 | + $period_totals = array(); |
|
| 112 | + |
|
| 113 | + // Setup period totals by ensuring each period in the interval has data. |
|
| 114 | + $start_date = strtotime( $this->report_range['after'] ); |
|
| 115 | + |
|
| 116 | + if ( 'month' === $this->groupby ) { |
|
| 117 | + $start_date = strtotime( gmdate( 'Y-m-01', $start_date ) ); |
|
| 118 | + } |
|
| 119 | + |
|
| 120 | + for ( $i = 0; $i < $this->interval; $i++ ) { |
|
| 121 | + |
|
| 122 | + switch ( $this->groupby ) { |
|
| 123 | + case 'day': |
|
| 124 | + $time = gmdate( 'Y-m-d', strtotime( "+{$i} DAY", $start_date ) ); |
|
| 125 | + break; |
|
| 126 | + default: |
|
| 127 | + $time = gmdate( 'Y-m', strtotime( "+{$i} MONTH", $start_date ) ); |
|
| 128 | + break; |
|
| 129 | + } |
|
| 130 | + |
|
| 131 | + // Set the defaults for each period. |
|
| 132 | + $period_totals[ $time ] = array( |
|
| 133 | + 'invoices' => 0, |
|
| 134 | + 'items' => 0, |
|
| 135 | + 'refunded_items' => 0, |
|
| 136 | + 'refunded_tax' => wpinv_round_amount( 0.00 ), |
|
| 137 | + 'subtotal' => wpinv_round_amount( 0.00 ), |
|
| 138 | + 'refunded_subtotal' => wpinv_round_amount( 0.00 ), |
|
| 139 | + 'refunded_fees' => wpinv_round_amount( 0.00 ), |
|
| 140 | + 'discount' => wpinv_round_amount( 0.00 ), |
|
| 141 | + ); |
|
| 142 | + |
|
| 143 | + foreach ( array_keys( wpinv_get_report_graphs() ) as $key ) { |
|
| 144 | + if ( ! isset( $period_totals[ $time ][ $key ] ) ) { |
|
| 145 | + $period_totals[ $time ][ $key ] = wpinv_round_amount( 0.00 ); |
|
| 146 | + } |
|
| 147 | + } |
|
| 148 | + } |
|
| 149 | + |
|
| 150 | + // add total sales, total invoice count, total tax for each period |
|
| 151 | + $date_format = ( 'day' === $this->groupby ) ? 'Y-m-d' : 'Y-m'; |
|
| 152 | + foreach ( $report_data->invoices as $invoice ) { |
|
| 153 | + $time = gmdate( $date_format, strtotime( $invoice->post_date ) ); |
|
| 154 | + |
|
| 155 | + if ( ! isset( $period_totals[ $time ] ) ) { |
|
| 156 | + continue; |
|
| 157 | + } |
|
| 158 | + |
|
| 159 | + $period_totals[ $time ]['sales'] = wpinv_round_amount( $invoice->total_sales ); |
|
| 160 | + $period_totals[ $time ]['tax'] = wpinv_round_amount( $invoice->total_tax ); |
|
| 161 | + $period_totals[ $time ]['subtotal'] = wpinv_round_amount( $invoice->subtotal ); |
|
| 162 | + $period_totals[ $time ]['fees'] = wpinv_round_amount( $invoice->total_fees ); |
|
| 163 | + |
|
| 164 | + } |
|
| 165 | + |
|
| 166 | + foreach ( $report_data->refunds as $invoice ) { |
|
| 167 | + $time = gmdate( $date_format, strtotime( $invoice->post_date ) ); |
|
| 168 | + |
|
| 169 | + if ( ! isset( $period_totals[ $time ] ) ) { |
|
| 170 | + continue; |
|
| 171 | + } |
|
| 172 | + |
|
| 173 | + $period_totals[ $time ]['refunds'] = wpinv_round_amount( $invoice->total_sales ); |
|
| 174 | + $period_totals[ $time ]['refunded_tax'] = wpinv_round_amount( $invoice->total_tax ); |
|
| 175 | + $period_totals[ $time ]['refunded_subtotal'] = wpinv_round_amount( $invoice->subtotal ); |
|
| 176 | + $period_totals[ $time ]['refunded_fees'] = wpinv_round_amount( $invoice->total_fees ); |
|
| 177 | + |
|
| 178 | + } |
|
| 179 | + |
|
| 180 | + foreach ( $report_data->invoice_counts as $invoice ) { |
|
| 181 | + $time = gmdate( $date_format, strtotime( $invoice->post_date ) ); |
|
| 182 | + |
|
| 183 | + if ( isset( $period_totals[ $time ] ) ) { |
|
| 184 | + $period_totals[ $time ]['invoices'] = (int) $invoice->count; |
|
| 185 | + } |
|
| 186 | + } |
|
| 187 | + |
|
| 188 | + // Add total invoice items for each period. |
|
| 189 | + foreach ( $report_data->invoice_items as $invoice_item ) { |
|
| 190 | + $time = ( 'day' === $this->groupby ) ? gmdate( 'Y-m-d', strtotime( $invoice_item->post_date ) ) : gmdate( 'Y-m', strtotime( $invoice_item->post_date ) ); |
|
| 191 | + |
|
| 192 | + if ( isset( $period_totals[ $time ] ) ) { |
|
| 193 | + $period_totals[ $time ]['items'] = (int) $invoice_item->invoice_item_count; |
|
| 194 | + } |
|
| 195 | + } |
|
| 196 | + |
|
| 197 | + // Add total discount for each period. |
|
| 198 | + foreach ( $report_data->coupons as $discount ) { |
|
| 199 | + $time = ( 'day' === $this->groupby ) ? gmdate( 'Y-m-d', strtotime( $discount->post_date ) ) : gmdate( 'Y-m', strtotime( $discount->post_date ) ); |
|
| 200 | + |
|
| 201 | + if ( isset( $period_totals[ $time ] ) ) { |
|
| 202 | + $period_totals[ $time ]['discount'] = wpinv_round_amount( $discount->discount_amount ); |
|
| 203 | + } |
|
| 204 | + } |
|
| 205 | + |
|
| 206 | + // Extra fields. |
|
| 207 | + foreach ( array_keys( wpinv_get_report_graphs() ) as $key ) { |
|
| 208 | + |
|
| 209 | + // Abort unprepared. |
|
| 210 | + if ( ! isset( $report_data->$key ) ) { |
|
| 211 | + continue; |
|
| 212 | + } |
|
| 213 | + |
|
| 214 | + // Abort defaults. |
|
| 215 | + if ( in_array( $key, array( 'sales', 'refunds', 'tax', 'fees', 'discount', 'invoices', 'items' ) ) ) { |
|
| 216 | + continue; |
|
| 217 | + } |
|
| 218 | + |
|
| 219 | + // Set values. |
|
| 220 | + foreach ( $report_data->$key as $item ) { |
|
| 221 | + $time = ( 'day' === $this->groupby ) ? gmdate( 'Y-m-d', strtotime( $item->date ) ) : gmdate( 'Y-m', strtotime( $item->date ) ); |
|
| 222 | + |
|
| 223 | + if ( isset( $period_totals[ $time ] ) ) { |
|
| 224 | + $period_totals[ $time ][ $key ] = wpinv_round_amount( $item->val ); |
|
| 225 | + } |
|
| 226 | + } |
|
| 227 | + |
|
| 228 | + unset( $report_data->$key ); |
|
| 229 | + } |
|
| 230 | + |
|
| 231 | + $report_data->totals = $period_totals; |
|
| 232 | + $report_data->grouped_by = $this->groupby; |
|
| 233 | + $report_data->interval = max( $this->interval, 1 ); |
|
| 234 | + $report_data->currency = wpinv_get_currency(); |
|
| 235 | + $report_data->currency_symbol = wpinv_currency_symbol(); |
|
| 236 | + $report_data->currency_position = wpinv_currency_position(); |
|
| 237 | + $report_data->decimal_places = wpinv_decimals(); |
|
| 238 | + $report_data->thousands_sep = wpinv_thousands_separator(); |
|
| 239 | + $report_data->decimals_sep = wpinv_decimal_separator(); |
|
| 240 | + $report_data->start_date = gmdate( 'Y-m-d', strtotime( $this->report_range['after'] ) ); |
|
| 241 | + $report_data->end_date = gmdate( 'Y-m-d', strtotime( $this->report_range['before'] ) ); |
|
| 242 | + $report_data->start_date_locale = getpaid_format_date( gmdate( 'Y-m-d', strtotime( $this->report_range['after'] ) ) ); |
|
| 243 | + $report_data->end_date_locale = getpaid_format_date( gmdate( 'Y-m-d', strtotime( $this->report_range['before'] ) ) ); |
|
| 244 | + $report_data->decimals_sep = wpinv_decimal_separator(); |
|
| 245 | + |
|
| 246 | + $context = ! empty( $request['context'] ) ? $request['context'] : 'view'; |
|
| 247 | + $data = $report_data; |
|
| 248 | + unset( $data->invoice_counts, $data->invoices, $data->coupons, $data->refunds, $data->invoice_items ); |
|
| 249 | + $data = $this->add_additional_fields_to_object( (array) $data, $request ); |
|
| 250 | + $data = $this->filter_response_by_context( $data, $context ); |
|
| 251 | + |
|
| 252 | + // Wrap the data in a response object. |
|
| 253 | + $response = rest_ensure_response( $data ); |
|
| 254 | + $response->add_links( |
|
| 255 | + array( |
|
| 256 | + 'about' => array( |
|
| 257 | + 'href' => rest_url( sprintf( '%s/reports', $this->namespace ) ), |
|
| 258 | + ), |
|
| 259 | + ) |
|
| 260 | + ); |
|
| 261 | + |
|
| 262 | + return apply_filters( 'getpaid_rest_prepare_report_sales', $response, $report_data, $request ); |
|
| 263 | + } |
|
| 264 | + |
|
| 265 | + /** |
|
| 266 | + * Get report data. |
|
| 267 | + * |
|
| 268 | + * @return stdClass |
|
| 269 | + */ |
|
| 270 | + public function get_report_data() { |
|
| 271 | + if ( empty( $this->report_data ) ) { |
|
| 272 | + $this->query_report_data(); |
|
| 273 | + } |
|
| 274 | + return $this->report_data; |
|
| 275 | + } |
|
| 276 | + |
|
| 277 | + /** |
|
| 278 | + * Get all data needed for this report and store in the class. |
|
| 279 | + */ |
|
| 280 | + protected function query_report_data() { |
|
| 281 | + |
|
| 282 | + // Prepare reports. |
|
| 283 | + $this->report_data = (object) array( |
|
| 284 | + 'invoice_counts' => $this->query_invoice_counts(), //count, post_date |
|
| 285 | + 'coupons' => $this->query_coupon_counts(), // discount_amount, post_date |
|
| 286 | + 'invoice_items' => $this->query_item_counts(), // invoice_item_count, post_date |
|
| 287 | + 'refunded_items' => $this->count_refunded_items(), // invoice_item_count, post_date |
|
| 288 | + 'invoices' => $this->query_invoice_totals(), // total_sales, total_tax, total_discount, total_fees, subtotal, post_date |
|
| 289 | + 'refunds' => $this->query_refunded_totals(), // total_sales, total_tax, total_discount, total_fees, subtotal, post_date |
|
| 290 | + 'previous_range' => $this->previous_range, |
|
| 291 | + ); |
|
| 292 | + |
|
| 293 | + // Calculated totals. |
|
| 294 | + $this->report_data->total_tax = wpinv_round_amount( array_sum( wp_list_pluck( $this->report_data->invoices, 'total_tax' ) ) ); |
|
| 295 | + $this->report_data->total_sales = wpinv_round_amount( array_sum( wp_list_pluck( $this->report_data->invoices, 'total_sales' ) ) ); |
|
| 296 | + $this->report_data->total_discount = wpinv_round_amount( array_sum( wp_list_pluck( $this->report_data->invoices, 'total_discount' ) ) ); |
|
| 297 | + $this->report_data->total_fees = wpinv_round_amount( array_sum( wp_list_pluck( $this->report_data->invoices, 'total_fees' ) ) ); |
|
| 298 | + $this->report_data->subtotal = wpinv_round_amount( array_sum( wp_list_pluck( $this->report_data->invoices, 'subtotal' ) ) ); |
|
| 299 | + $this->report_data->net_sales = wpinv_round_amount( $this->report_data->total_sales - max( 0, $this->report_data->total_tax ) ); |
|
| 300 | + $this->report_data->total_refunded_tax = wpinv_round_amount( array_sum( wp_list_pluck( $this->report_data->refunds, 'total_tax' ) ) ); |
|
| 301 | + $this->report_data->total_refunds = wpinv_round_amount( array_sum( wp_list_pluck( $this->report_data->refunds, 'total_sales' ) ) ); |
|
| 302 | + $this->report_data->refunded_discount = wpinv_round_amount( array_sum( wp_list_pluck( $this->report_data->refunds, 'total_discount' ) ) ); |
|
| 303 | + $this->report_data->refunded_fees = wpinv_round_amount( array_sum( wp_list_pluck( $this->report_data->refunds, 'total_fees' ) ) ); |
|
| 304 | + $this->report_data->refunded_subtotal = wpinv_round_amount( array_sum( wp_list_pluck( $this->report_data->refunds, 'subtotal' ) ) ); |
|
| 305 | + $this->report_data->net_refunds = wpinv_round_amount( $this->report_data->total_refunds + max( 0, $this->report_data->total_refunded_tax ) ); |
|
| 306 | + |
|
| 307 | + // Calculate average based on net. |
|
| 308 | + $this->report_data->average_sales = wpinv_round_amount( $this->report_data->net_sales / max( $this->interval, 1 ), 2 ); |
|
| 309 | + $this->report_data->average_total_sales = wpinv_round_amount( $this->report_data->total_sales / max( $this->interval, 1 ), 2 ); |
|
| 310 | + |
|
| 311 | + // Total invoices in this period, even if refunded. |
|
| 312 | + $this->report_data->total_invoices = absint( array_sum( wp_list_pluck( $this->report_data->invoice_counts, 'count' ) ) ); |
|
| 313 | + |
|
| 314 | + // Items invoiced in this period, even if refunded. |
|
| 315 | + $this->report_data->total_items = absint( array_sum( wp_list_pluck( $this->report_data->invoice_items, 'invoice_item_count' ) ) ); |
|
| 316 | + |
|
| 317 | + // 3rd party filtering of report data |
|
| 318 | + $this->report_data = apply_filters( 'getpaid_rest_api_filter_report_data', $this->report_data, $this ); |
|
| 319 | + } |
|
| 320 | + |
|
| 321 | + /** |
|
| 322 | + * Prepares invoice counts. |
|
| 323 | + * |
|
| 324 | + * @return array. |
|
| 325 | + */ |
|
| 326 | + protected function query_invoice_counts() { |
|
| 327 | + |
|
| 328 | + return (array) GetPaid_Reports_Helper::get_invoice_report_data( |
|
| 329 | + array( |
|
| 330 | + 'data' => array( |
|
| 331 | + 'ID' => array( |
|
| 332 | + 'type' => 'post_data', |
|
| 333 | + 'function' => 'COUNT', |
|
| 334 | + 'name' => 'count', |
|
| 335 | + 'distinct' => true, |
|
| 336 | + ), |
|
| 337 | + 'post_date' => array( |
|
| 338 | + 'type' => 'post_data', |
|
| 339 | + 'function' => 'MIN', |
|
| 340 | + 'name' => 'post_date', |
|
| 341 | + ), |
|
| 342 | + ), |
|
| 343 | + 'group_by' => $this->get_group_by_sql( 'posts.post_date' ), |
|
| 344 | + 'order_by' => 'post_date ASC', |
|
| 345 | + 'query_type' => 'get_results', |
|
| 346 | + 'filter_range' => $this->report_range, |
|
| 347 | + 'invoice_status' => array( 'publish', 'wpi-processing', 'wpi-onhold', 'wpi-refunded', 'wpi-renewal' ), |
|
| 348 | + ) |
|
| 349 | + ); |
|
| 350 | + |
|
| 351 | + } |
|
| 352 | + |
|
| 353 | + /** |
|
| 354 | + * Prepares coupon counts. |
|
| 355 | + * |
|
| 356 | + * @return array. |
|
| 357 | + */ |
|
| 358 | + protected function query_coupon_counts() { |
|
| 359 | + |
|
| 360 | + return (array) GetPaid_Reports_Helper::get_invoice_report_data( |
|
| 361 | + array( |
|
| 362 | + 'data' => array( |
|
| 363 | + 'discount' => array( |
|
| 364 | + 'type' => 'invoice_data', |
|
| 365 | + 'function' => 'SUM', |
|
| 366 | + 'name' => 'discount_amount', |
|
| 367 | + ), |
|
| 368 | + 'post_date' => array( |
|
| 369 | + 'type' => 'post_data', |
|
| 370 | + 'function' => 'MIN', |
|
| 371 | + 'name' => 'post_date', |
|
| 372 | + ), |
|
| 373 | + ), |
|
| 374 | + 'group_by' => $this->get_group_by_sql( 'posts.post_date' ), |
|
| 375 | + 'order_by' => 'post_date ASC', |
|
| 376 | + 'query_type' => 'get_results', |
|
| 377 | + 'filter_range' => $this->report_range, |
|
| 378 | + 'invoice_status' => array( 'publish', 'wpi-processing', 'wpi-onhold', 'wpi-refunded', 'wpi-renewal' ), |
|
| 379 | + ) |
|
| 380 | + ); |
|
| 381 | + |
|
| 382 | + } |
|
| 383 | + |
|
| 384 | + /** |
|
| 385 | + * Prepares item counts. |
|
| 386 | + * |
|
| 387 | + * @return array. |
|
| 388 | + */ |
|
| 389 | + protected function query_item_counts() { |
|
| 390 | + |
|
| 391 | + return (array) GetPaid_Reports_Helper::get_invoice_report_data( |
|
| 392 | + array( |
|
| 393 | + 'data' => array( |
|
| 394 | + 'quantity' => array( |
|
| 395 | + 'type' => 'invoice_item', |
|
| 396 | + 'function' => 'SUM', |
|
| 397 | + 'name' => 'invoice_item_count', |
|
| 398 | + ), |
|
| 399 | + 'post_date' => array( |
|
| 400 | + 'type' => 'post_data', |
|
| 401 | + 'function' => 'MIN', |
|
| 402 | + 'name' => 'post_date', |
|
| 403 | + ), |
|
| 404 | + ), |
|
| 405 | + 'group_by' => $this->get_group_by_sql( 'posts.post_date' ), |
|
| 406 | + 'order_by' => 'post_date ASC', |
|
| 407 | + 'query_type' => 'get_results', |
|
| 408 | + 'filter_range' => $this->report_range, |
|
| 409 | + 'invoice_status' => array( 'publish', 'wpi-processing', 'wpi-onhold', 'wpi-refunded', 'wpi-renewal' ), |
|
| 410 | + ) |
|
| 411 | + ); |
|
| 412 | + |
|
| 413 | + } |
|
| 414 | + |
|
| 415 | + /** |
|
| 416 | + * Prepares refunded item counts. |
|
| 417 | + * |
|
| 418 | + * @return array. |
|
| 419 | + */ |
|
| 420 | + protected function count_refunded_items() { |
|
| 421 | + |
|
| 422 | + return (int) GetPaid_Reports_Helper::get_invoice_report_data( |
|
| 423 | + array( |
|
| 424 | + 'data' => array( |
|
| 425 | + 'quantity' => array( |
|
| 426 | + 'type' => 'invoice_item', |
|
| 427 | + 'function' => 'SUM', |
|
| 428 | + 'name' => 'invoice_item_count', |
|
| 429 | + ), |
|
| 430 | + ), |
|
| 431 | + 'query_type' => 'get_var', |
|
| 432 | + 'filter_range' => $this->report_range, |
|
| 433 | + 'invoice_status' => array( 'wpi-refunded' ), |
|
| 434 | + ) |
|
| 435 | + ); |
|
| 436 | + |
|
| 437 | + } |
|
| 438 | + |
|
| 439 | + /** |
|
| 440 | + * Prepares daily invoice totals. |
|
| 441 | + * |
|
| 442 | + * @return array. |
|
| 443 | + */ |
|
| 444 | + protected function query_invoice_totals() { |
|
| 445 | + |
|
| 446 | + return (array) GetPaid_Reports_Helper::get_invoice_report_data( |
|
| 447 | + array( |
|
| 448 | + 'data' => array( |
|
| 449 | + 'total' => array( |
|
| 450 | + 'type' => 'invoice_data', |
|
| 451 | + 'function' => 'SUM', |
|
| 452 | + 'name' => 'total_sales', |
|
| 453 | + ), |
|
| 454 | + 'tax' => array( |
|
| 455 | + 'type' => 'invoice_data', |
|
| 456 | + 'function' => 'SUM', |
|
| 457 | + 'name' => 'total_tax', |
|
| 458 | + ), |
|
| 459 | + 'discount' => array( |
|
| 460 | + 'type' => 'invoice_data', |
|
| 461 | + 'function' => 'SUM', |
|
| 462 | + 'name' => 'total_discount', |
|
| 463 | + ), |
|
| 464 | + 'fees_total' => array( |
|
| 465 | + 'type' => 'invoice_data', |
|
| 466 | + 'function' => 'SUM', |
|
| 467 | + 'name' => 'total_fees', |
|
| 468 | + ), |
|
| 469 | + 'subtotal' => array( |
|
| 470 | + 'type' => 'invoice_data', |
|
| 471 | + 'function' => 'SUM', |
|
| 472 | + 'name' => 'subtotal', |
|
| 473 | + ), |
|
| 474 | + 'post_date' => array( |
|
| 475 | + 'type' => 'post_data', |
|
| 476 | + 'function' => '', |
|
| 477 | + 'name' => 'post_date', |
|
| 478 | + ), |
|
| 479 | + ), |
|
| 480 | + 'group_by' => $this->get_group_by_sql( 'posts.post_date' ), |
|
| 481 | + 'order_by' => 'post_date ASC', |
|
| 482 | + 'query_type' => 'get_results', |
|
| 483 | + 'filter_range' => $this->report_range, |
|
| 484 | + 'invoice_status' => array( 'publish', 'wpi-processing', 'wpi-onhold', 'wpi-renewal' ), |
|
| 485 | + ) |
|
| 486 | + ); |
|
| 487 | + |
|
| 488 | + } |
|
| 489 | + |
|
| 490 | + /** |
|
| 491 | + * Prepares daily invoice totals. |
|
| 492 | + * |
|
| 493 | + * @return array. |
|
| 494 | + */ |
|
| 495 | + protected function query_refunded_totals() { |
|
| 496 | + |
|
| 497 | + return (array) GetPaid_Reports_Helper::get_invoice_report_data( |
|
| 498 | + array( |
|
| 499 | + 'data' => array( |
|
| 500 | + 'total' => array( |
|
| 501 | + 'type' => 'invoice_data', |
|
| 502 | + 'function' => 'SUM', |
|
| 503 | + 'name' => 'total_sales', |
|
| 504 | + ), |
|
| 505 | + 'tax' => array( |
|
| 506 | + 'type' => 'invoice_data', |
|
| 507 | + 'function' => 'SUM', |
|
| 508 | + 'name' => 'total_tax', |
|
| 509 | + ), |
|
| 510 | + 'discount' => array( |
|
| 511 | + 'type' => 'invoice_data', |
|
| 512 | + 'function' => 'SUM', |
|
| 513 | + 'name' => 'total_discount', |
|
| 514 | + ), |
|
| 515 | + 'fees_total' => array( |
|
| 516 | + 'type' => 'invoice_data', |
|
| 517 | + 'function' => 'SUM', |
|
| 518 | + 'name' => 'total_fees', |
|
| 519 | + ), |
|
| 520 | + 'subtotal' => array( |
|
| 521 | + 'type' => 'invoice_data', |
|
| 522 | + 'function' => 'SUM', |
|
| 523 | + 'name' => 'subtotal', |
|
| 524 | + ), |
|
| 525 | + 'post_date' => array( |
|
| 526 | + 'type' => 'post_data', |
|
| 527 | + 'function' => '', |
|
| 528 | + 'name' => 'post_date', |
|
| 529 | + ), |
|
| 530 | + ), |
|
| 531 | + 'group_by' => $this->get_group_by_sql( 'posts.post_date' ), |
|
| 532 | + 'order_by' => 'post_date ASC', |
|
| 533 | + 'query_type' => 'get_results', |
|
| 534 | + 'filter_range' => $this->report_range, |
|
| 535 | + 'invoice_status' => array( 'wpi-refunded' ), |
|
| 536 | + ) |
|
| 537 | + ); |
|
| 538 | + |
|
| 539 | + } |
|
| 540 | + |
|
| 541 | + /** |
|
| 542 | + * Get the Report's schema, conforming to JSON Schema. |
|
| 543 | + * |
|
| 544 | + * @return array |
|
| 545 | + */ |
|
| 546 | + public function get_item_schema() { |
|
| 547 | + |
|
| 548 | + $schema = array( |
|
| 549 | + '$schema' => 'http://json-schema.org/draft-04/schema#', |
|
| 550 | + 'title' => 'sales_report', |
|
| 551 | + 'type' => 'object', |
|
| 552 | + 'properties' => array( |
|
| 553 | + 'total_sales' => array( |
|
| 554 | + 'description' => __( 'Gross sales in the period.', 'invoicing' ), |
|
| 555 | + 'type' => 'string', |
|
| 556 | + 'context' => array( 'view' ), |
|
| 557 | + 'readonly' => true, |
|
| 558 | + ), |
|
| 559 | + 'net_sales' => array( |
|
| 560 | + 'description' => __( 'Net sales in the period.', 'invoicing' ), |
|
| 561 | + 'type' => 'string', |
|
| 562 | + 'context' => array( 'view' ), |
|
| 563 | + 'readonly' => true, |
|
| 564 | + ), |
|
| 565 | + 'average_sales' => array( |
|
| 566 | + 'description' => __( 'Average net daily sales.', 'invoicing' ), |
|
| 567 | + 'type' => 'string', |
|
| 568 | + 'context' => array( 'view' ), |
|
| 569 | + 'readonly' => true, |
|
| 570 | + ), |
|
| 571 | + 'average_total_sales' => array( |
|
| 572 | + 'description' => __( 'Average gross daily sales.', 'invoicing' ), |
|
| 573 | + 'type' => 'string', |
|
| 574 | + 'context' => array( 'view' ), |
|
| 575 | + 'readonly' => true, |
|
| 576 | + ), |
|
| 577 | + 'total_invoices' => array( |
|
| 578 | + 'description' => __( 'Number of paid invoices.', 'invoicing' ), |
|
| 579 | + 'type' => 'integer', |
|
| 580 | + 'context' => array( 'view' ), |
|
| 581 | + 'readonly' => true, |
|
| 582 | + ), |
|
| 583 | + 'total_items' => array( |
|
| 584 | + 'description' => __( 'Number of items purchased.', 'invoicing' ), |
|
| 585 | + 'type' => 'integer', |
|
| 586 | + 'context' => array( 'view' ), |
|
| 587 | + 'readonly' => true, |
|
| 588 | + ), |
|
| 589 | + 'refunded_items' => array( |
|
| 590 | + 'description' => __( 'Number of items refunded.', 'invoicing' ), |
|
| 591 | + 'type' => 'integer', |
|
| 592 | + 'context' => array( 'view' ), |
|
| 593 | + 'readonly' => true, |
|
| 594 | + ), |
|
| 595 | + 'total_tax' => array( |
|
| 596 | + 'description' => __( 'Total charged for taxes.', 'invoicing' ), |
|
| 597 | + 'type' => 'string', |
|
| 598 | + 'context' => array( 'view' ), |
|
| 599 | + 'readonly' => true, |
|
| 600 | + ), |
|
| 601 | + 'total_refunded_tax' => array( |
|
| 602 | + 'description' => __( 'Total refunded for taxes.', 'invoicing' ), |
|
| 603 | + 'type' => 'string', |
|
| 604 | + 'context' => array( 'view' ), |
|
| 605 | + 'readonly' => true, |
|
| 606 | + ), |
|
| 607 | + 'total_fees' => array( |
|
| 608 | + 'description' => __( 'Total fees charged.', 'invoicing' ), |
|
| 609 | + 'type' => 'string', |
|
| 610 | + 'context' => array( 'view' ), |
|
| 611 | + 'readonly' => true, |
|
| 612 | + ), |
|
| 613 | + 'total_refunds' => array( |
|
| 614 | + 'description' => __( 'Total of refunded invoices.', 'invoicing' ), |
|
| 615 | + 'type' => 'integer', |
|
| 616 | + 'context' => array( 'view' ), |
|
| 617 | + 'readonly' => true, |
|
| 618 | + ), |
|
| 619 | + 'net_refunds' => array( |
|
| 620 | + 'description' => __( 'Net of refunded invoices.', 'invoicing' ), |
|
| 621 | + 'type' => 'integer', |
|
| 622 | + 'context' => array( 'view' ), |
|
| 623 | + 'readonly' => true, |
|
| 624 | + ), |
|
| 625 | + 'total_discount' => array( |
|
| 626 | + 'description' => __( 'Total of discounts used.', 'invoicing' ), |
|
| 627 | + 'type' => 'integer', |
|
| 628 | + 'context' => array( 'view' ), |
|
| 629 | + 'readonly' => true, |
|
| 630 | + ), |
|
| 631 | + 'totals' => array( |
|
| 632 | + 'description' => __( 'Totals.', 'invoicing' ), |
|
| 633 | + 'type' => 'array', |
|
| 634 | + 'items' => array( |
|
| 635 | + 'type' => 'array', |
|
| 636 | + ), |
|
| 637 | + 'context' => array( 'view' ), |
|
| 638 | + 'readonly' => true, |
|
| 639 | + ), |
|
| 640 | + 'interval' => array( |
|
| 641 | + 'description' => __( 'Number of months/days in the report period.', 'invoicing' ), |
|
| 642 | + 'type' => 'integer', |
|
| 643 | + 'context' => array( 'view' ), |
|
| 644 | + 'readonly' => true, |
|
| 645 | + ), |
|
| 646 | + 'previous_range' => array( |
|
| 647 | + 'description' => __( 'The previous report period.', 'invoicing' ), |
|
| 648 | + 'type' => 'array', |
|
| 649 | + 'items' => array( |
|
| 650 | + 'type' => 'string', |
|
| 651 | + ), |
|
| 652 | + 'context' => array( 'view' ), |
|
| 653 | + 'readonly' => true, |
|
| 654 | + ), |
|
| 655 | + 'grouped_by' => array( |
|
| 656 | + 'description' => __( 'The period used to group the totals.', 'invoicing' ), |
|
| 657 | + 'type' => 'string', |
|
| 658 | + 'context' => array( 'view' ), |
|
| 659 | + 'enum' => array( 'day', 'month' ), |
|
| 660 | + 'readonly' => true, |
|
| 661 | + ), |
|
| 662 | + 'currency' => array( |
|
| 663 | + 'description' => __( 'The default store currency.', 'invoicing' ), |
|
| 664 | + 'type' => 'string', |
|
| 665 | + 'context' => array( 'view' ), |
|
| 666 | + 'readonly' => true, |
|
| 667 | + ), |
|
| 668 | + 'currency_symbol' => array( |
|
| 669 | + 'description' => __( 'The default store currency symbol.', 'invoicing' ), |
|
| 670 | + 'type' => 'string', |
|
| 671 | + 'context' => array( 'view' ), |
|
| 672 | + 'readonly' => true, |
|
| 673 | + ), |
|
| 674 | + 'currency_position' => array( |
|
| 675 | + 'description' => __( 'The default store currency position.', 'invoicing' ), |
|
| 676 | + 'type' => 'string', |
|
| 677 | + 'context' => array( 'view' ), |
|
| 678 | + 'readonly' => true, |
|
| 679 | + ), |
|
| 680 | + 'decimal_places' => array( |
|
| 681 | + 'description' => __( 'The default store decimal places.', 'invoicing' ), |
|
| 682 | + 'type' => 'string', |
|
| 683 | + 'context' => array( 'view' ), |
|
| 684 | + 'readonly' => true, |
|
| 685 | + ), |
|
| 686 | + 'thousands_sep' => array( |
|
| 687 | + 'description' => __( 'The default store thousands separator.', 'invoicing' ), |
|
| 688 | + 'type' => 'string', |
|
| 689 | + 'context' => array( 'view' ), |
|
| 690 | + 'readonly' => true, |
|
| 691 | + ), |
|
| 692 | + 'decimals_sep' => array( |
|
| 693 | + 'description' => __( 'The default store decimals separator.', 'invoicing' ), |
|
| 694 | + 'type' => 'string', |
|
| 695 | + 'context' => array( 'view' ), |
|
| 696 | + 'readonly' => true, |
|
| 697 | + ), |
|
| 698 | + ), |
|
| 699 | + ); |
|
| 700 | + |
|
| 701 | + return $this->add_additional_fields_schema( $schema ); |
|
| 702 | + |
|
| 703 | + } |
|
| 704 | 704 | |
| 705 | 705 | } |
@@ -16,496 +16,496 @@ |
||
| 16 | 16 | */ |
| 17 | 17 | class GetPaid_REST_Date_Based_Controller extends GetPaid_REST_Controller { |
| 18 | 18 | |
| 19 | - /** |
|
| 20 | - * Group response items by day or month. |
|
| 21 | - * |
|
| 22 | - * @var string |
|
| 23 | - */ |
|
| 24 | - public $groupby = 'day'; |
|
| 25 | - |
|
| 26 | - /** |
|
| 27 | - * Returns an array with arguments to request the previous report. |
|
| 28 | - * |
|
| 29 | - * @var array |
|
| 30 | - */ |
|
| 31 | - public $previous_range = array(); |
|
| 32 | - |
|
| 33 | - /** |
|
| 34 | - * The period interval. |
|
| 35 | - * |
|
| 36 | - * @var int |
|
| 37 | - */ |
|
| 38 | - public $interval; |
|
| 39 | - |
|
| 40 | - /** |
|
| 41 | - * Retrieves the before and after dates. |
|
| 42 | - * |
|
| 43 | - * @param WP_REST_Request $request Request object. |
|
| 44 | - * @return array The appropriate date range. |
|
| 45 | - */ |
|
| 46 | - public function get_date_range( $request ) { |
|
| 47 | - |
|
| 48 | - // Check if the period is x_days. |
|
| 49 | - if ( preg_match( '/^(\d+)_days$/', $request['period'], $matches ) ) { |
|
| 50 | - $date_range = $this->get_x_days_date_range( absint( $matches[1] ) ); |
|
| 51 | - } elseif ( is_callable( array( $this, 'get_' . $request['period'] . '_date_range' ) ) ) { |
|
| 52 | - $date_range = call_user_func( array( $this, 'get_' . $request['period'] . '_date_range' ), $request ); |
|
| 53 | - } else { |
|
| 54 | - $request['period'] = '7_days'; |
|
| 55 | - $date_range = $this->get_x_days_date_range(); |
|
| 56 | - } |
|
| 57 | - |
|
| 58 | - // 3 months max for day view. |
|
| 59 | - $before = strtotime( $date_range['before'] ); |
|
| 60 | - $after = strtotime( $date_range['after'] ); |
|
| 61 | - if ( floor( ( $before - $after ) / MONTH_IN_SECONDS ) > 2 ) { |
|
| 62 | - $this->groupby = 'month'; |
|
| 63 | - } |
|
| 64 | - |
|
| 65 | - $this->prepare_interval( $date_range ); |
|
| 66 | - |
|
| 67 | - return $date_range; |
|
| 68 | - |
|
| 69 | - } |
|
| 70 | - |
|
| 71 | - /** |
|
| 72 | - * Groups by month or days. |
|
| 73 | - * |
|
| 74 | - * @param array $range Date range. |
|
| 75 | - * @return array The appropriate date range. |
|
| 76 | - */ |
|
| 77 | - public function prepare_interval( $range ) { |
|
| 78 | - |
|
| 79 | - $before = strtotime( $range['before'] ); |
|
| 80 | - $after = strtotime( $range['after'] ); |
|
| 81 | - if ( 'day' === $this->groupby ) { |
|
| 82 | - $difference = max( DAY_IN_SECONDS, ( DAY_IN_SECONDS + $before - $after ) ); // Prevent division by 0; |
|
| 83 | - $this->interval = absint( ceil( max( 1, $difference / DAY_IN_SECONDS ) ) ); |
|
| 84 | - return; |
|
| 85 | - } |
|
| 86 | - |
|
| 87 | - $this->interval = 0; |
|
| 88 | - $min_date = strtotime( gmdate( 'Y-m-01', $after ) ); |
|
| 89 | - |
|
| 90 | - while ( $min_date <= $before ) { |
|
| 91 | - $this->interval ++; |
|
| 92 | - $min_date = strtotime( '+1 MONTH', $min_date ); |
|
| 93 | - } |
|
| 94 | - |
|
| 95 | - $this->interval = max( 1, $this->interval ); |
|
| 96 | - |
|
| 97 | - } |
|
| 98 | - |
|
| 99 | - /** |
|
| 100 | - * Retrieves a custom date range. |
|
| 101 | - * |
|
| 102 | - * @param WP_REST_Request $request Request object. |
|
| 103 | - * @return array The appropriate date range. |
|
| 104 | - */ |
|
| 105 | - public function get_custom_date_range( $request ) { |
|
| 106 | - |
|
| 107 | - $after = max( strtotime( '-20 years' ), strtotime( sanitize_text_field( $request['after'] ) ) ); |
|
| 108 | - $before = gmdate( 'Y-m-d' ); |
|
| 109 | - |
|
| 110 | - if ( ! empty( $request['before'] ) ) { |
|
| 111 | - $before = min( $before, strtotime( sanitize_text_field( $request['before'] ) ) ); |
|
| 112 | - } |
|
| 113 | - |
|
| 114 | - // Set the previous date range. |
|
| 115 | - $difference = $before - $after; |
|
| 116 | - $this->previous_range = array( |
|
| 117 | - 'period' => 'custom', |
|
| 118 | - 'before' => gmdate( 'Y-m-d', $before - $difference - DAY_IN_SECONDS ), |
|
| 119 | - 'after' => gmdate( 'Y-m-d', $after - $difference - DAY_IN_SECONDS ), |
|
| 120 | - ); |
|
| 121 | - |
|
| 122 | - // Generate the report. |
|
| 123 | - return array( |
|
| 124 | - 'before' => gmdate( 'Y-m-d', $before ), |
|
| 125 | - 'after' => gmdate( 'Y-m-d', $after ), |
|
| 126 | - ); |
|
| 127 | - |
|
| 128 | - } |
|
| 129 | - |
|
| 130 | - /** |
|
| 131 | - * Retrieves todays date range. |
|
| 132 | - * |
|
| 133 | - * @return array The appropriate date range. |
|
| 134 | - */ |
|
| 135 | - public function get_today_date_range() { |
|
| 136 | - |
|
| 137 | - // Set the previous date range. |
|
| 138 | - $this->previous_range = array( |
|
| 139 | - 'period' => 'yesterday', |
|
| 140 | - ); |
|
| 141 | - |
|
| 142 | - // Generate the report. |
|
| 143 | - return array( |
|
| 144 | - 'before' => gmdate( 'Y-m-d' ), |
|
| 145 | - 'after' => gmdate( 'Y-m-d' ), |
|
| 146 | - ); |
|
| 147 | - |
|
| 148 | - } |
|
| 149 | - |
|
| 150 | - /** |
|
| 151 | - * Retrieves yesterdays date range. |
|
| 152 | - * |
|
| 153 | - * @return array The appropriate date range. |
|
| 154 | - */ |
|
| 155 | - public function get_yesterday_date_range() { |
|
| 156 | - |
|
| 157 | - // Set the previous date range. |
|
| 158 | - $this->previous_range = array( |
|
| 159 | - 'period' => 'custom', |
|
| 160 | - 'before' => gmdate( 'Y-m-d', strtotime( '-2 days' ) ), |
|
| 161 | - 'after' => gmdate( 'Y-m-d', strtotime( '-2 days' ) ), |
|
| 162 | - ); |
|
| 163 | - |
|
| 164 | - // Generate the report. |
|
| 165 | - return array( |
|
| 166 | - 'before' => gmdate( 'Y-m-d', strtotime( '-1 day' ) ), |
|
| 167 | - 'after' => gmdate( 'Y-m-d', strtotime( '-1 day' ) ), |
|
| 168 | - ); |
|
| 169 | - |
|
| 170 | - } |
|
| 171 | - |
|
| 172 | - /** |
|
| 173 | - * Retrieves this week's date range. |
|
| 174 | - * |
|
| 175 | - * @return array The appropriate date range. |
|
| 176 | - */ |
|
| 177 | - public function get_week_date_range() { |
|
| 178 | - |
|
| 179 | - // Set the previous date range. |
|
| 180 | - $this->previous_range = array( |
|
| 181 | - 'period' => 'last_week', |
|
| 182 | - ); |
|
| 183 | - |
|
| 184 | - // Generate the report. |
|
| 185 | - $week_starts = absint( get_option( 'start_of_week' ) ); |
|
| 186 | - return array( |
|
| 187 | - 'before' => gmdate( 'Y-m-d' ), |
|
| 188 | - 'after' => gmdate( 'Y-m-d', strtotime( 'next Sunday -' . ( 7 - $week_starts ) . ' days' ) ), |
|
| 189 | - ); |
|
| 190 | - } |
|
| 191 | - |
|
| 192 | - /** |
|
| 193 | - * Retrieves last week's date range. |
|
| 194 | - * |
|
| 195 | - * @return array The appropriate date range. |
|
| 196 | - */ |
|
| 197 | - public function get_last_week_date_range() { |
|
| 198 | - |
|
| 199 | - $week_starts = absint( get_option( 'start_of_week' ) ); |
|
| 200 | - $week_starts = strtotime( 'last Sunday -' . ( 7 - $week_starts ) . ' days' ); |
|
| 201 | - $date_range = array( |
|
| 202 | - 'before' => gmdate( 'Y-m-d', $week_starts + 6 * DAY_IN_SECONDS ), |
|
| 203 | - 'after' => gmdate( 'Y-m-d', $week_starts ), |
|
| 204 | - ); |
|
| 205 | - |
|
| 206 | - // Set the previous date range. |
|
| 207 | - $week_starts = $week_starts - 7 * DAY_IN_SECONDS; |
|
| 208 | - $this->previous_range = array( |
|
| 209 | - 'period' => 'custom', |
|
| 210 | - 'before' => gmdate( 'Y-m-d', $week_starts + 6 * DAY_IN_SECONDS ), |
|
| 211 | - 'after' => gmdate( 'Y-m-d', $week_starts ), |
|
| 212 | - ); |
|
| 213 | - |
|
| 214 | - // Generate the report. |
|
| 215 | - return $date_range; |
|
| 216 | - } |
|
| 217 | - |
|
| 218 | - /** |
|
| 219 | - * Retrieves last x days date range. |
|
| 220 | - * |
|
| 221 | - * @return array The appropriate date range. |
|
| 222 | - */ |
|
| 223 | - public function get_x_days_date_range( $days = 7 ) { |
|
| 224 | - |
|
| 225 | - $days--; |
|
| 226 | - |
|
| 227 | - $date_range = array( |
|
| 228 | - 'before' => gmdate( 'Y-m-d' ), |
|
| 229 | - 'after' => gmdate( 'Y-m-d', strtotime( "-$days days" ) ), |
|
| 230 | - ); |
|
| 231 | - |
|
| 232 | - $days++; |
|
| 233 | - |
|
| 234 | - // Set the previous date range. |
|
| 235 | - $this->previous_range = array( |
|
| 236 | - 'period' => 'custom', |
|
| 237 | - 'before' => gmdate( 'Y-m-d', strtotime( $date_range['before'] ) - $days * DAY_IN_SECONDS ), |
|
| 238 | - 'after' => gmdate( 'Y-m-d', strtotime( $date_range['after'] ) - $days * DAY_IN_SECONDS ), |
|
| 239 | - ); |
|
| 240 | - |
|
| 241 | - // Generate the report. |
|
| 242 | - return $date_range; |
|
| 243 | - } |
|
| 244 | - |
|
| 245 | - /** |
|
| 246 | - * Retrieves this month date range. |
|
| 247 | - * |
|
| 248 | - * @return array The appropriate date range. |
|
| 249 | - */ |
|
| 250 | - public function get_month_date_range() { |
|
| 251 | - |
|
| 252 | - // Set the previous date range. |
|
| 253 | - $this->previous_range = array( |
|
| 254 | - 'period' => 'last_month', |
|
| 255 | - ); |
|
| 256 | - |
|
| 257 | - // Generate the report. |
|
| 258 | - return array( |
|
| 259 | - 'after' => gmdate( 'Y-m-01' ), |
|
| 260 | - 'before' => gmdate( 'Y-m-t' ), |
|
| 261 | - ); |
|
| 262 | - |
|
| 263 | - } |
|
| 264 | - |
|
| 265 | - /** |
|
| 266 | - * Retrieves last month's date range. |
|
| 267 | - * |
|
| 268 | - * @return array The appropriate date range. |
|
| 269 | - */ |
|
| 270 | - public function get_last_month_date_range() { |
|
| 271 | - |
|
| 272 | - // Set the previous date range. |
|
| 273 | - $this->previous_range = array( |
|
| 274 | - 'period' => 'custom', |
|
| 275 | - 'after' => gmdate( 'Y-m-01', strtotime( '-2 months' ) ), |
|
| 276 | - 'before' => gmdate( 'Y-m-t', strtotime( '-2 months' ) ), |
|
| 277 | - ); |
|
| 278 | - |
|
| 279 | - // Generate the report. |
|
| 280 | - return array( |
|
| 281 | - 'after' => gmdate( 'Y-m-01', strtotime( 'last month' ) ), |
|
| 282 | - 'before' => gmdate( 'Y-m-t', strtotime( 'last month' ) ), |
|
| 283 | - ); |
|
| 284 | - |
|
| 285 | - } |
|
| 286 | - |
|
| 287 | - /** |
|
| 288 | - * Retrieves this quarter date range. |
|
| 289 | - * |
|
| 290 | - * @return array The available quarters. |
|
| 291 | - */ |
|
| 292 | - public function get_quarters() { |
|
| 293 | - |
|
| 294 | - $year = (int) gmdate( 'Y' ); |
|
| 295 | - $last_year = (int) $year - 1; |
|
| 296 | - return array( |
|
| 297 | - |
|
| 298 | - // Third quarter of previous year: July 1st to September 30th |
|
| 299 | - array( |
|
| 300 | - 'before' => "{$last_year}-09-30", |
|
| 301 | - 'after' => "{$last_year}-07-01", |
|
| 302 | - ), |
|
| 303 | - |
|
| 304 | - // Last quarter of previous year: October 1st to December 31st |
|
| 305 | - array( |
|
| 306 | - 'before' => "{$last_year}-12-31", |
|
| 307 | - 'after' => "{$last_year}-10-01", |
|
| 308 | - ), |
|
| 309 | - |
|
| 310 | - // First quarter: January 1st to March 31st |
|
| 311 | - array( |
|
| 312 | - 'before' => "{$year}-03-31", |
|
| 313 | - 'after' => "{$year}-01-01", |
|
| 314 | - ), |
|
| 315 | - |
|
| 316 | - // Second quarter: April 1st to June 30th |
|
| 317 | - array( |
|
| 318 | - 'before' => "{$year}-06-30", |
|
| 319 | - 'after' => "{$year}-04-01", |
|
| 320 | - ), |
|
| 321 | - |
|
| 322 | - // Third quarter: July 1st to September 30th |
|
| 323 | - array( |
|
| 324 | - 'before' => "{$year}-09-30", |
|
| 325 | - 'after' => "{$year}-07-01", |
|
| 326 | - ), |
|
| 327 | - |
|
| 328 | - // Fourth quarter: October 1st to December 31st |
|
| 329 | - array( |
|
| 330 | - 'before' => "{$year}-12-31", |
|
| 331 | - 'after' => "{$year}-10-01", |
|
| 332 | - ), |
|
| 333 | - ); |
|
| 334 | - } |
|
| 335 | - |
|
| 336 | - /** |
|
| 337 | - * Retrieves the current quater. |
|
| 338 | - * |
|
| 339 | - * @return int The current quarter. |
|
| 340 | - */ |
|
| 341 | - public function get_quarter() { |
|
| 342 | - |
|
| 343 | - $month = (int) gmdate( 'n' ); |
|
| 344 | - $quarters = array( 1, 1, 1, 2, 2, 2, 3, 3, 3, 4, 4, 4 ); |
|
| 345 | - return $quarters[ $month - 1 ]; |
|
| 346 | - |
|
| 347 | - } |
|
| 348 | - |
|
| 349 | - /** |
|
| 350 | - * Retrieves this quarter date range. |
|
| 351 | - * |
|
| 352 | - * @return array The appropriate date range. |
|
| 353 | - */ |
|
| 354 | - public function get_quarter_date_range() { |
|
| 355 | - |
|
| 356 | - // Set the previous date range. |
|
| 357 | - $this->previous_range = array( |
|
| 358 | - 'period' => 'last_quarter', |
|
| 359 | - ); |
|
| 360 | - |
|
| 361 | - // Generate the report. |
|
| 362 | - $quarter = $this->get_quarter(); |
|
| 363 | - $quarters = $this->get_quarters(); |
|
| 364 | - return $quarters[ $quarter + 1 ]; |
|
| 365 | - |
|
| 366 | - } |
|
| 367 | - |
|
| 368 | - /** |
|
| 369 | - * Retrieves last quarter's date range. |
|
| 370 | - * |
|
| 371 | - * @return array The appropriate date range. |
|
| 372 | - */ |
|
| 373 | - public function get_last_quarter_date_range() { |
|
| 374 | - |
|
| 375 | - $quarters = $this->get_quarters(); |
|
| 376 | - $quarter = $this->get_quarter(); |
|
| 377 | - |
|
| 378 | - // Set the previous date range. |
|
| 379 | - $this->previous_range = array_merge( |
|
| 380 | - $quarters[ $quarter - 1 ], |
|
| 381 | - array( 'period' => 'custom' ) |
|
| 382 | - ); |
|
| 383 | - |
|
| 384 | - // Generate the report. |
|
| 385 | - return $quarters[ $quarter ]; |
|
| 386 | - |
|
| 387 | - } |
|
| 388 | - |
|
| 389 | - /** |
|
| 390 | - * Retrieves this year date range. |
|
| 391 | - * |
|
| 392 | - * @return array The appropriate date range. |
|
| 393 | - */ |
|
| 394 | - public function get_year_date_range() { |
|
| 395 | - |
|
| 396 | - // Set the previous date range. |
|
| 397 | - $this->previous_range = array( |
|
| 398 | - 'period' => 'last_year', |
|
| 399 | - ); |
|
| 400 | - |
|
| 401 | - // Generate the report. |
|
| 402 | - return array( |
|
| 403 | - 'after' => gmdate( 'Y-01-01' ), |
|
| 404 | - 'before' => gmdate( 'Y-12-31' ), |
|
| 405 | - ); |
|
| 406 | - |
|
| 407 | - } |
|
| 408 | - |
|
| 409 | - /** |
|
| 410 | - * Retrieves last year date range. |
|
| 411 | - * |
|
| 412 | - * @return array The appropriate date range. |
|
| 413 | - */ |
|
| 414 | - public function get_last_year_date_range() { |
|
| 415 | - |
|
| 416 | - // Set the previous date range. |
|
| 417 | - $this->previous_range = array( |
|
| 418 | - 'period' => 'custom', |
|
| 419 | - 'after' => gmdate( 'Y-01-01', strtotime( '-2 years' ) ), |
|
| 420 | - 'before' => gmdate( 'Y-12-31', strtotime( '-2 years' ) ), |
|
| 421 | - ); |
|
| 422 | - |
|
| 423 | - // Generate the report. |
|
| 424 | - return array( |
|
| 425 | - 'after' => gmdate( 'Y-01-01', strtotime( 'last year' ) ), |
|
| 426 | - 'before' => gmdate( 'Y-12-31', strtotime( 'last year' ) ), |
|
| 427 | - ); |
|
| 428 | - |
|
| 429 | - } |
|
| 430 | - |
|
| 431 | - /** |
|
| 432 | - * Prepare a the request date for SQL usage. |
|
| 433 | - * |
|
| 434 | - * @param WP_REST_Request $request Request object. |
|
| 435 | - * @param string $date_field The date field. |
|
| 436 | - * @return string The appropriate SQL. |
|
| 437 | - */ |
|
| 438 | - public function get_date_range_sql( $request, $date_field ) { |
|
| 439 | - global $wpdb; |
|
| 440 | - |
|
| 441 | - $sql = '1=1'; |
|
| 442 | - $range = $this->get_date_range( $request ); |
|
| 443 | - |
|
| 444 | - if ( ! empty( $range['after'] ) ) { |
|
| 445 | - $sql .= ' AND ' . $wpdb->prepare( |
|
| 446 | - "$date_field >= %s", |
|
| 447 | - $range['after'] |
|
| 448 | - ); |
|
| 449 | - } |
|
| 450 | - |
|
| 451 | - if ( ! empty( $range['before'] ) ) { |
|
| 452 | - $sql .= ' AND ' . $wpdb->prepare( |
|
| 453 | - "$date_field <= %s", |
|
| 454 | - $range['before'] |
|
| 455 | - ); |
|
| 456 | - } |
|
| 457 | - |
|
| 458 | - return $sql; |
|
| 459 | - |
|
| 460 | - } |
|
| 461 | - |
|
| 462 | - /** |
|
| 463 | - * Prepares a group by query. |
|
| 464 | - * |
|
| 465 | - * @param string $date_field The date field. |
|
| 466 | - * @return string The appropriate SQL. |
|
| 467 | - */ |
|
| 468 | - public function get_group_by_sql( $date_field ) { |
|
| 469 | - |
|
| 470 | - if ( 'day' === $this->groupby ) { |
|
| 471 | - return "YEAR($date_field), MONTH($date_field), DAY($date_field)"; |
|
| 472 | - } |
|
| 473 | - |
|
| 474 | - return "YEAR($date_field), MONTH($date_field)"; |
|
| 475 | - } |
|
| 476 | - |
|
| 477 | - /** |
|
| 478 | - * Get the query params for collections. |
|
| 479 | - * |
|
| 480 | - * @return array |
|
| 481 | - */ |
|
| 482 | - public function get_collection_params() { |
|
| 483 | - return array( |
|
| 484 | - 'context' => $this->get_context_param( array( 'default' => 'view' ) ), |
|
| 485 | - 'period' => array( |
|
| 486 | - 'description' => __( 'Limit to results of a specific period.', 'invoicing' ), |
|
| 487 | - 'type' => 'string', |
|
| 488 | - 'enum' => array( 'custom', 'today', 'yesterday', 'week', 'last_week', '7_days', '30_days', '60_days', '90_days', '180_days', 'month', 'last_month', 'quarter', 'last_quarter', 'year', 'last_year', 'quarter', 'last_quarter' ), |
|
| 489 | - 'validate_callback' => 'rest_validate_request_arg', |
|
| 490 | - 'sanitize_callback' => 'sanitize_text_field', |
|
| 491 | - 'default' => '7_days', |
|
| 492 | - ), |
|
| 493 | - 'after' => array( |
|
| 494 | - /* translators: %s: date format */ |
|
| 495 | - 'description' => sprintf( __( 'Limit to results after a specific date, the date needs to be in the %s format.', 'invoicing' ), 'YYYY-MM-DD' ), |
|
| 496 | - 'type' => 'string', |
|
| 497 | - 'validate_callback' => 'rest_validate_request_arg', |
|
| 498 | - 'sanitize_callback' => 'sanitize_text_field', |
|
| 499 | - 'default' => gmdate( 'Y-m-d', strtotime( '-7 days' ) ), |
|
| 500 | - ), |
|
| 501 | - 'before' => array( |
|
| 502 | - /* translators: %s: date format */ |
|
| 503 | - 'description' => sprintf( __( 'Limit to results before a specific date, the date needs to be in the %s format.', 'invoicing' ), 'YYYY-MM-DD' ), |
|
| 504 | - 'type' => 'string', |
|
| 505 | - 'validate_callback' => 'rest_validate_request_arg', |
|
| 506 | - 'sanitize_callback' => 'sanitize_text_field', |
|
| 507 | - 'default' => gmdate( 'Y-m-d' ), |
|
| 508 | - ), |
|
| 509 | - ); |
|
| 510 | - } |
|
| 19 | + /** |
|
| 20 | + * Group response items by day or month. |
|
| 21 | + * |
|
| 22 | + * @var string |
|
| 23 | + */ |
|
| 24 | + public $groupby = 'day'; |
|
| 25 | + |
|
| 26 | + /** |
|
| 27 | + * Returns an array with arguments to request the previous report. |
|
| 28 | + * |
|
| 29 | + * @var array |
|
| 30 | + */ |
|
| 31 | + public $previous_range = array(); |
|
| 32 | + |
|
| 33 | + /** |
|
| 34 | + * The period interval. |
|
| 35 | + * |
|
| 36 | + * @var int |
|
| 37 | + */ |
|
| 38 | + public $interval; |
|
| 39 | + |
|
| 40 | + /** |
|
| 41 | + * Retrieves the before and after dates. |
|
| 42 | + * |
|
| 43 | + * @param WP_REST_Request $request Request object. |
|
| 44 | + * @return array The appropriate date range. |
|
| 45 | + */ |
|
| 46 | + public function get_date_range( $request ) { |
|
| 47 | + |
|
| 48 | + // Check if the period is x_days. |
|
| 49 | + if ( preg_match( '/^(\d+)_days$/', $request['period'], $matches ) ) { |
|
| 50 | + $date_range = $this->get_x_days_date_range( absint( $matches[1] ) ); |
|
| 51 | + } elseif ( is_callable( array( $this, 'get_' . $request['period'] . '_date_range' ) ) ) { |
|
| 52 | + $date_range = call_user_func( array( $this, 'get_' . $request['period'] . '_date_range' ), $request ); |
|
| 53 | + } else { |
|
| 54 | + $request['period'] = '7_days'; |
|
| 55 | + $date_range = $this->get_x_days_date_range(); |
|
| 56 | + } |
|
| 57 | + |
|
| 58 | + // 3 months max for day view. |
|
| 59 | + $before = strtotime( $date_range['before'] ); |
|
| 60 | + $after = strtotime( $date_range['after'] ); |
|
| 61 | + if ( floor( ( $before - $after ) / MONTH_IN_SECONDS ) > 2 ) { |
|
| 62 | + $this->groupby = 'month'; |
|
| 63 | + } |
|
| 64 | + |
|
| 65 | + $this->prepare_interval( $date_range ); |
|
| 66 | + |
|
| 67 | + return $date_range; |
|
| 68 | + |
|
| 69 | + } |
|
| 70 | + |
|
| 71 | + /** |
|
| 72 | + * Groups by month or days. |
|
| 73 | + * |
|
| 74 | + * @param array $range Date range. |
|
| 75 | + * @return array The appropriate date range. |
|
| 76 | + */ |
|
| 77 | + public function prepare_interval( $range ) { |
|
| 78 | + |
|
| 79 | + $before = strtotime( $range['before'] ); |
|
| 80 | + $after = strtotime( $range['after'] ); |
|
| 81 | + if ( 'day' === $this->groupby ) { |
|
| 82 | + $difference = max( DAY_IN_SECONDS, ( DAY_IN_SECONDS + $before - $after ) ); // Prevent division by 0; |
|
| 83 | + $this->interval = absint( ceil( max( 1, $difference / DAY_IN_SECONDS ) ) ); |
|
| 84 | + return; |
|
| 85 | + } |
|
| 86 | + |
|
| 87 | + $this->interval = 0; |
|
| 88 | + $min_date = strtotime( gmdate( 'Y-m-01', $after ) ); |
|
| 89 | + |
|
| 90 | + while ( $min_date <= $before ) { |
|
| 91 | + $this->interval ++; |
|
| 92 | + $min_date = strtotime( '+1 MONTH', $min_date ); |
|
| 93 | + } |
|
| 94 | + |
|
| 95 | + $this->interval = max( 1, $this->interval ); |
|
| 96 | + |
|
| 97 | + } |
|
| 98 | + |
|
| 99 | + /** |
|
| 100 | + * Retrieves a custom date range. |
|
| 101 | + * |
|
| 102 | + * @param WP_REST_Request $request Request object. |
|
| 103 | + * @return array The appropriate date range. |
|
| 104 | + */ |
|
| 105 | + public function get_custom_date_range( $request ) { |
|
| 106 | + |
|
| 107 | + $after = max( strtotime( '-20 years' ), strtotime( sanitize_text_field( $request['after'] ) ) ); |
|
| 108 | + $before = gmdate( 'Y-m-d' ); |
|
| 109 | + |
|
| 110 | + if ( ! empty( $request['before'] ) ) { |
|
| 111 | + $before = min( $before, strtotime( sanitize_text_field( $request['before'] ) ) ); |
|
| 112 | + } |
|
| 113 | + |
|
| 114 | + // Set the previous date range. |
|
| 115 | + $difference = $before - $after; |
|
| 116 | + $this->previous_range = array( |
|
| 117 | + 'period' => 'custom', |
|
| 118 | + 'before' => gmdate( 'Y-m-d', $before - $difference - DAY_IN_SECONDS ), |
|
| 119 | + 'after' => gmdate( 'Y-m-d', $after - $difference - DAY_IN_SECONDS ), |
|
| 120 | + ); |
|
| 121 | + |
|
| 122 | + // Generate the report. |
|
| 123 | + return array( |
|
| 124 | + 'before' => gmdate( 'Y-m-d', $before ), |
|
| 125 | + 'after' => gmdate( 'Y-m-d', $after ), |
|
| 126 | + ); |
|
| 127 | + |
|
| 128 | + } |
|
| 129 | + |
|
| 130 | + /** |
|
| 131 | + * Retrieves todays date range. |
|
| 132 | + * |
|
| 133 | + * @return array The appropriate date range. |
|
| 134 | + */ |
|
| 135 | + public function get_today_date_range() { |
|
| 136 | + |
|
| 137 | + // Set the previous date range. |
|
| 138 | + $this->previous_range = array( |
|
| 139 | + 'period' => 'yesterday', |
|
| 140 | + ); |
|
| 141 | + |
|
| 142 | + // Generate the report. |
|
| 143 | + return array( |
|
| 144 | + 'before' => gmdate( 'Y-m-d' ), |
|
| 145 | + 'after' => gmdate( 'Y-m-d' ), |
|
| 146 | + ); |
|
| 147 | + |
|
| 148 | + } |
|
| 149 | + |
|
| 150 | + /** |
|
| 151 | + * Retrieves yesterdays date range. |
|
| 152 | + * |
|
| 153 | + * @return array The appropriate date range. |
|
| 154 | + */ |
|
| 155 | + public function get_yesterday_date_range() { |
|
| 156 | + |
|
| 157 | + // Set the previous date range. |
|
| 158 | + $this->previous_range = array( |
|
| 159 | + 'period' => 'custom', |
|
| 160 | + 'before' => gmdate( 'Y-m-d', strtotime( '-2 days' ) ), |
|
| 161 | + 'after' => gmdate( 'Y-m-d', strtotime( '-2 days' ) ), |
|
| 162 | + ); |
|
| 163 | + |
|
| 164 | + // Generate the report. |
|
| 165 | + return array( |
|
| 166 | + 'before' => gmdate( 'Y-m-d', strtotime( '-1 day' ) ), |
|
| 167 | + 'after' => gmdate( 'Y-m-d', strtotime( '-1 day' ) ), |
|
| 168 | + ); |
|
| 169 | + |
|
| 170 | + } |
|
| 171 | + |
|
| 172 | + /** |
|
| 173 | + * Retrieves this week's date range. |
|
| 174 | + * |
|
| 175 | + * @return array The appropriate date range. |
|
| 176 | + */ |
|
| 177 | + public function get_week_date_range() { |
|
| 178 | + |
|
| 179 | + // Set the previous date range. |
|
| 180 | + $this->previous_range = array( |
|
| 181 | + 'period' => 'last_week', |
|
| 182 | + ); |
|
| 183 | + |
|
| 184 | + // Generate the report. |
|
| 185 | + $week_starts = absint( get_option( 'start_of_week' ) ); |
|
| 186 | + return array( |
|
| 187 | + 'before' => gmdate( 'Y-m-d' ), |
|
| 188 | + 'after' => gmdate( 'Y-m-d', strtotime( 'next Sunday -' . ( 7 - $week_starts ) . ' days' ) ), |
|
| 189 | + ); |
|
| 190 | + } |
|
| 191 | + |
|
| 192 | + /** |
|
| 193 | + * Retrieves last week's date range. |
|
| 194 | + * |
|
| 195 | + * @return array The appropriate date range. |
|
| 196 | + */ |
|
| 197 | + public function get_last_week_date_range() { |
|
| 198 | + |
|
| 199 | + $week_starts = absint( get_option( 'start_of_week' ) ); |
|
| 200 | + $week_starts = strtotime( 'last Sunday -' . ( 7 - $week_starts ) . ' days' ); |
|
| 201 | + $date_range = array( |
|
| 202 | + 'before' => gmdate( 'Y-m-d', $week_starts + 6 * DAY_IN_SECONDS ), |
|
| 203 | + 'after' => gmdate( 'Y-m-d', $week_starts ), |
|
| 204 | + ); |
|
| 205 | + |
|
| 206 | + // Set the previous date range. |
|
| 207 | + $week_starts = $week_starts - 7 * DAY_IN_SECONDS; |
|
| 208 | + $this->previous_range = array( |
|
| 209 | + 'period' => 'custom', |
|
| 210 | + 'before' => gmdate( 'Y-m-d', $week_starts + 6 * DAY_IN_SECONDS ), |
|
| 211 | + 'after' => gmdate( 'Y-m-d', $week_starts ), |
|
| 212 | + ); |
|
| 213 | + |
|
| 214 | + // Generate the report. |
|
| 215 | + return $date_range; |
|
| 216 | + } |
|
| 217 | + |
|
| 218 | + /** |
|
| 219 | + * Retrieves last x days date range. |
|
| 220 | + * |
|
| 221 | + * @return array The appropriate date range. |
|
| 222 | + */ |
|
| 223 | + public function get_x_days_date_range( $days = 7 ) { |
|
| 224 | + |
|
| 225 | + $days--; |
|
| 226 | + |
|
| 227 | + $date_range = array( |
|
| 228 | + 'before' => gmdate( 'Y-m-d' ), |
|
| 229 | + 'after' => gmdate( 'Y-m-d', strtotime( "-$days days" ) ), |
|
| 230 | + ); |
|
| 231 | + |
|
| 232 | + $days++; |
|
| 233 | + |
|
| 234 | + // Set the previous date range. |
|
| 235 | + $this->previous_range = array( |
|
| 236 | + 'period' => 'custom', |
|
| 237 | + 'before' => gmdate( 'Y-m-d', strtotime( $date_range['before'] ) - $days * DAY_IN_SECONDS ), |
|
| 238 | + 'after' => gmdate( 'Y-m-d', strtotime( $date_range['after'] ) - $days * DAY_IN_SECONDS ), |
|
| 239 | + ); |
|
| 240 | + |
|
| 241 | + // Generate the report. |
|
| 242 | + return $date_range; |
|
| 243 | + } |
|
| 244 | + |
|
| 245 | + /** |
|
| 246 | + * Retrieves this month date range. |
|
| 247 | + * |
|
| 248 | + * @return array The appropriate date range. |
|
| 249 | + */ |
|
| 250 | + public function get_month_date_range() { |
|
| 251 | + |
|
| 252 | + // Set the previous date range. |
|
| 253 | + $this->previous_range = array( |
|
| 254 | + 'period' => 'last_month', |
|
| 255 | + ); |
|
| 256 | + |
|
| 257 | + // Generate the report. |
|
| 258 | + return array( |
|
| 259 | + 'after' => gmdate( 'Y-m-01' ), |
|
| 260 | + 'before' => gmdate( 'Y-m-t' ), |
|
| 261 | + ); |
|
| 262 | + |
|
| 263 | + } |
|
| 264 | + |
|
| 265 | + /** |
|
| 266 | + * Retrieves last month's date range. |
|
| 267 | + * |
|
| 268 | + * @return array The appropriate date range. |
|
| 269 | + */ |
|
| 270 | + public function get_last_month_date_range() { |
|
| 271 | + |
|
| 272 | + // Set the previous date range. |
|
| 273 | + $this->previous_range = array( |
|
| 274 | + 'period' => 'custom', |
|
| 275 | + 'after' => gmdate( 'Y-m-01', strtotime( '-2 months' ) ), |
|
| 276 | + 'before' => gmdate( 'Y-m-t', strtotime( '-2 months' ) ), |
|
| 277 | + ); |
|
| 278 | + |
|
| 279 | + // Generate the report. |
|
| 280 | + return array( |
|
| 281 | + 'after' => gmdate( 'Y-m-01', strtotime( 'last month' ) ), |
|
| 282 | + 'before' => gmdate( 'Y-m-t', strtotime( 'last month' ) ), |
|
| 283 | + ); |
|
| 284 | + |
|
| 285 | + } |
|
| 286 | + |
|
| 287 | + /** |
|
| 288 | + * Retrieves this quarter date range. |
|
| 289 | + * |
|
| 290 | + * @return array The available quarters. |
|
| 291 | + */ |
|
| 292 | + public function get_quarters() { |
|
| 293 | + |
|
| 294 | + $year = (int) gmdate( 'Y' ); |
|
| 295 | + $last_year = (int) $year - 1; |
|
| 296 | + return array( |
|
| 297 | + |
|
| 298 | + // Third quarter of previous year: July 1st to September 30th |
|
| 299 | + array( |
|
| 300 | + 'before' => "{$last_year}-09-30", |
|
| 301 | + 'after' => "{$last_year}-07-01", |
|
| 302 | + ), |
|
| 303 | + |
|
| 304 | + // Last quarter of previous year: October 1st to December 31st |
|
| 305 | + array( |
|
| 306 | + 'before' => "{$last_year}-12-31", |
|
| 307 | + 'after' => "{$last_year}-10-01", |
|
| 308 | + ), |
|
| 309 | + |
|
| 310 | + // First quarter: January 1st to March 31st |
|
| 311 | + array( |
|
| 312 | + 'before' => "{$year}-03-31", |
|
| 313 | + 'after' => "{$year}-01-01", |
|
| 314 | + ), |
|
| 315 | + |
|
| 316 | + // Second quarter: April 1st to June 30th |
|
| 317 | + array( |
|
| 318 | + 'before' => "{$year}-06-30", |
|
| 319 | + 'after' => "{$year}-04-01", |
|
| 320 | + ), |
|
| 321 | + |
|
| 322 | + // Third quarter: July 1st to September 30th |
|
| 323 | + array( |
|
| 324 | + 'before' => "{$year}-09-30", |
|
| 325 | + 'after' => "{$year}-07-01", |
|
| 326 | + ), |
|
| 327 | + |
|
| 328 | + // Fourth quarter: October 1st to December 31st |
|
| 329 | + array( |
|
| 330 | + 'before' => "{$year}-12-31", |
|
| 331 | + 'after' => "{$year}-10-01", |
|
| 332 | + ), |
|
| 333 | + ); |
|
| 334 | + } |
|
| 335 | + |
|
| 336 | + /** |
|
| 337 | + * Retrieves the current quater. |
|
| 338 | + * |
|
| 339 | + * @return int The current quarter. |
|
| 340 | + */ |
|
| 341 | + public function get_quarter() { |
|
| 342 | + |
|
| 343 | + $month = (int) gmdate( 'n' ); |
|
| 344 | + $quarters = array( 1, 1, 1, 2, 2, 2, 3, 3, 3, 4, 4, 4 ); |
|
| 345 | + return $quarters[ $month - 1 ]; |
|
| 346 | + |
|
| 347 | + } |
|
| 348 | + |
|
| 349 | + /** |
|
| 350 | + * Retrieves this quarter date range. |
|
| 351 | + * |
|
| 352 | + * @return array The appropriate date range. |
|
| 353 | + */ |
|
| 354 | + public function get_quarter_date_range() { |
|
| 355 | + |
|
| 356 | + // Set the previous date range. |
|
| 357 | + $this->previous_range = array( |
|
| 358 | + 'period' => 'last_quarter', |
|
| 359 | + ); |
|
| 360 | + |
|
| 361 | + // Generate the report. |
|
| 362 | + $quarter = $this->get_quarter(); |
|
| 363 | + $quarters = $this->get_quarters(); |
|
| 364 | + return $quarters[ $quarter + 1 ]; |
|
| 365 | + |
|
| 366 | + } |
|
| 367 | + |
|
| 368 | + /** |
|
| 369 | + * Retrieves last quarter's date range. |
|
| 370 | + * |
|
| 371 | + * @return array The appropriate date range. |
|
| 372 | + */ |
|
| 373 | + public function get_last_quarter_date_range() { |
|
| 374 | + |
|
| 375 | + $quarters = $this->get_quarters(); |
|
| 376 | + $quarter = $this->get_quarter(); |
|
| 377 | + |
|
| 378 | + // Set the previous date range. |
|
| 379 | + $this->previous_range = array_merge( |
|
| 380 | + $quarters[ $quarter - 1 ], |
|
| 381 | + array( 'period' => 'custom' ) |
|
| 382 | + ); |
|
| 383 | + |
|
| 384 | + // Generate the report. |
|
| 385 | + return $quarters[ $quarter ]; |
|
| 386 | + |
|
| 387 | + } |
|
| 388 | + |
|
| 389 | + /** |
|
| 390 | + * Retrieves this year date range. |
|
| 391 | + * |
|
| 392 | + * @return array The appropriate date range. |
|
| 393 | + */ |
|
| 394 | + public function get_year_date_range() { |
|
| 395 | + |
|
| 396 | + // Set the previous date range. |
|
| 397 | + $this->previous_range = array( |
|
| 398 | + 'period' => 'last_year', |
|
| 399 | + ); |
|
| 400 | + |
|
| 401 | + // Generate the report. |
|
| 402 | + return array( |
|
| 403 | + 'after' => gmdate( 'Y-01-01' ), |
|
| 404 | + 'before' => gmdate( 'Y-12-31' ), |
|
| 405 | + ); |
|
| 406 | + |
|
| 407 | + } |
|
| 408 | + |
|
| 409 | + /** |
|
| 410 | + * Retrieves last year date range. |
|
| 411 | + * |
|
| 412 | + * @return array The appropriate date range. |
|
| 413 | + */ |
|
| 414 | + public function get_last_year_date_range() { |
|
| 415 | + |
|
| 416 | + // Set the previous date range. |
|
| 417 | + $this->previous_range = array( |
|
| 418 | + 'period' => 'custom', |
|
| 419 | + 'after' => gmdate( 'Y-01-01', strtotime( '-2 years' ) ), |
|
| 420 | + 'before' => gmdate( 'Y-12-31', strtotime( '-2 years' ) ), |
|
| 421 | + ); |
|
| 422 | + |
|
| 423 | + // Generate the report. |
|
| 424 | + return array( |
|
| 425 | + 'after' => gmdate( 'Y-01-01', strtotime( 'last year' ) ), |
|
| 426 | + 'before' => gmdate( 'Y-12-31', strtotime( 'last year' ) ), |
|
| 427 | + ); |
|
| 428 | + |
|
| 429 | + } |
|
| 430 | + |
|
| 431 | + /** |
|
| 432 | + * Prepare a the request date for SQL usage. |
|
| 433 | + * |
|
| 434 | + * @param WP_REST_Request $request Request object. |
|
| 435 | + * @param string $date_field The date field. |
|
| 436 | + * @return string The appropriate SQL. |
|
| 437 | + */ |
|
| 438 | + public function get_date_range_sql( $request, $date_field ) { |
|
| 439 | + global $wpdb; |
|
| 440 | + |
|
| 441 | + $sql = '1=1'; |
|
| 442 | + $range = $this->get_date_range( $request ); |
|
| 443 | + |
|
| 444 | + if ( ! empty( $range['after'] ) ) { |
|
| 445 | + $sql .= ' AND ' . $wpdb->prepare( |
|
| 446 | + "$date_field >= %s", |
|
| 447 | + $range['after'] |
|
| 448 | + ); |
|
| 449 | + } |
|
| 450 | + |
|
| 451 | + if ( ! empty( $range['before'] ) ) { |
|
| 452 | + $sql .= ' AND ' . $wpdb->prepare( |
|
| 453 | + "$date_field <= %s", |
|
| 454 | + $range['before'] |
|
| 455 | + ); |
|
| 456 | + } |
|
| 457 | + |
|
| 458 | + return $sql; |
|
| 459 | + |
|
| 460 | + } |
|
| 461 | + |
|
| 462 | + /** |
|
| 463 | + * Prepares a group by query. |
|
| 464 | + * |
|
| 465 | + * @param string $date_field The date field. |
|
| 466 | + * @return string The appropriate SQL. |
|
| 467 | + */ |
|
| 468 | + public function get_group_by_sql( $date_field ) { |
|
| 469 | + |
|
| 470 | + if ( 'day' === $this->groupby ) { |
|
| 471 | + return "YEAR($date_field), MONTH($date_field), DAY($date_field)"; |
|
| 472 | + } |
|
| 473 | + |
|
| 474 | + return "YEAR($date_field), MONTH($date_field)"; |
|
| 475 | + } |
|
| 476 | + |
|
| 477 | + /** |
|
| 478 | + * Get the query params for collections. |
|
| 479 | + * |
|
| 480 | + * @return array |
|
| 481 | + */ |
|
| 482 | + public function get_collection_params() { |
|
| 483 | + return array( |
|
| 484 | + 'context' => $this->get_context_param( array( 'default' => 'view' ) ), |
|
| 485 | + 'period' => array( |
|
| 486 | + 'description' => __( 'Limit to results of a specific period.', 'invoicing' ), |
|
| 487 | + 'type' => 'string', |
|
| 488 | + 'enum' => array( 'custom', 'today', 'yesterday', 'week', 'last_week', '7_days', '30_days', '60_days', '90_days', '180_days', 'month', 'last_month', 'quarter', 'last_quarter', 'year', 'last_year', 'quarter', 'last_quarter' ), |
|
| 489 | + 'validate_callback' => 'rest_validate_request_arg', |
|
| 490 | + 'sanitize_callback' => 'sanitize_text_field', |
|
| 491 | + 'default' => '7_days', |
|
| 492 | + ), |
|
| 493 | + 'after' => array( |
|
| 494 | + /* translators: %s: date format */ |
|
| 495 | + 'description' => sprintf( __( 'Limit to results after a specific date, the date needs to be in the %s format.', 'invoicing' ), 'YYYY-MM-DD' ), |
|
| 496 | + 'type' => 'string', |
|
| 497 | + 'validate_callback' => 'rest_validate_request_arg', |
|
| 498 | + 'sanitize_callback' => 'sanitize_text_field', |
|
| 499 | + 'default' => gmdate( 'Y-m-d', strtotime( '-7 days' ) ), |
|
| 500 | + ), |
|
| 501 | + 'before' => array( |
|
| 502 | + /* translators: %s: date format */ |
|
| 503 | + 'description' => sprintf( __( 'Limit to results before a specific date, the date needs to be in the %s format.', 'invoicing' ), 'YYYY-MM-DD' ), |
|
| 504 | + 'type' => 'string', |
|
| 505 | + 'validate_callback' => 'rest_validate_request_arg', |
|
| 506 | + 'sanitize_callback' => 'sanitize_text_field', |
|
| 507 | + 'default' => gmdate( 'Y-m-d' ), |
|
| 508 | + ), |
|
| 509 | + ); |
|
| 510 | + } |
|
| 511 | 511 | } |
@@ -12,294 +12,294 @@ |
||
| 12 | 12 | */ |
| 13 | 13 | class GetPaid_Reports_Helper { |
| 14 | 14 | |
| 15 | - /** |
|
| 16 | - * Get report totals such as invoice totals and discount amounts. |
|
| 17 | - * |
|
| 18 | - * Data example: |
|
| 19 | - * |
|
| 20 | - * 'subtotal' => array( |
|
| 21 | - * 'type' => 'invoice_data', |
|
| 22 | - * 'function' => 'SUM', |
|
| 23 | - * 'name' => 'subtotal' |
|
| 24 | - * ) |
|
| 25 | - * |
|
| 26 | - * @param array $args |
|
| 27 | - * @return mixed depending on query_type |
|
| 28 | - */ |
|
| 29 | - public static function get_invoice_report_data( $args = array() ) { |
|
| 30 | - global $wpdb; |
|
| 31 | - |
|
| 32 | - $default_args = array( |
|
| 33 | - 'data' => array(), // The data to retrieve. |
|
| 34 | - 'where' => array(), // An array of where queries. |
|
| 35 | - 'query_type' => 'get_row', // wpdb query to run. |
|
| 36 | - 'group_by' => '', // What to group results by. |
|
| 37 | - 'order_by' => '', // What to order by. |
|
| 38 | - 'limit' => '', // Results limit. |
|
| 39 | - 'filter_range' => array(), // An array of before and after dates to limit results by. |
|
| 40 | - 'invoice_types' => array( 'wpi_invoice' ), // An array of post types to retrieve. |
|
| 41 | - 'invoice_status' => array( 'publish', 'wpi-processing', 'wpi-onhold' ), |
|
| 42 | - 'parent_invoice_status' => false, // Optionally filter by parent invoice status. |
|
| 43 | - ); |
|
| 44 | - |
|
| 45 | - $args = apply_filters( 'getpaid_reports_get_invoice_report_data_args', $args ); |
|
| 46 | - $args = wp_parse_args( $args, $default_args ); |
|
| 47 | - |
|
| 48 | - extract( $args ); |
|
| 49 | - |
|
| 50 | - if ( empty( $data ) ) { |
|
| 51 | - return ''; |
|
| 52 | - } |
|
| 53 | - |
|
| 54 | - $query = array(); |
|
| 55 | - $query['select'] = 'SELECT ' . implode( ',', self::prepare_invoice_data( $data ) ); |
|
| 56 | - $query['from'] = "FROM {$wpdb->posts} AS posts"; |
|
| 57 | - $query['join'] = implode( ' ', self::prepare_invoice_joins( $data + $where, ! empty( $parent_invoice_status ) ) ); |
|
| 58 | - |
|
| 59 | - $query['where'] = " |
|
| 15 | + /** |
|
| 16 | + * Get report totals such as invoice totals and discount amounts. |
|
| 17 | + * |
|
| 18 | + * Data example: |
|
| 19 | + * |
|
| 20 | + * 'subtotal' => array( |
|
| 21 | + * 'type' => 'invoice_data', |
|
| 22 | + * 'function' => 'SUM', |
|
| 23 | + * 'name' => 'subtotal' |
|
| 24 | + * ) |
|
| 25 | + * |
|
| 26 | + * @param array $args |
|
| 27 | + * @return mixed depending on query_type |
|
| 28 | + */ |
|
| 29 | + public static function get_invoice_report_data( $args = array() ) { |
|
| 30 | + global $wpdb; |
|
| 31 | + |
|
| 32 | + $default_args = array( |
|
| 33 | + 'data' => array(), // The data to retrieve. |
|
| 34 | + 'where' => array(), // An array of where queries. |
|
| 35 | + 'query_type' => 'get_row', // wpdb query to run. |
|
| 36 | + 'group_by' => '', // What to group results by. |
|
| 37 | + 'order_by' => '', // What to order by. |
|
| 38 | + 'limit' => '', // Results limit. |
|
| 39 | + 'filter_range' => array(), // An array of before and after dates to limit results by. |
|
| 40 | + 'invoice_types' => array( 'wpi_invoice' ), // An array of post types to retrieve. |
|
| 41 | + 'invoice_status' => array( 'publish', 'wpi-processing', 'wpi-onhold' ), |
|
| 42 | + 'parent_invoice_status' => false, // Optionally filter by parent invoice status. |
|
| 43 | + ); |
|
| 44 | + |
|
| 45 | + $args = apply_filters( 'getpaid_reports_get_invoice_report_data_args', $args ); |
|
| 46 | + $args = wp_parse_args( $args, $default_args ); |
|
| 47 | + |
|
| 48 | + extract( $args ); |
|
| 49 | + |
|
| 50 | + if ( empty( $data ) ) { |
|
| 51 | + return ''; |
|
| 52 | + } |
|
| 53 | + |
|
| 54 | + $query = array(); |
|
| 55 | + $query['select'] = 'SELECT ' . implode( ',', self::prepare_invoice_data( $data ) ); |
|
| 56 | + $query['from'] = "FROM {$wpdb->posts} AS posts"; |
|
| 57 | + $query['join'] = implode( ' ', self::prepare_invoice_joins( $data + $where, ! empty( $parent_invoice_status ) ) ); |
|
| 58 | + |
|
| 59 | + $query['where'] = " |
|
| 60 | 60 | WHERE posts.post_type IN ( '" . implode( "','", $invoice_types ) . "' ) |
| 61 | 61 | "; |
| 62 | 62 | |
| 63 | - if ( ! empty( $invoice_status ) ) { |
|
| 64 | - $query['where'] .= " |
|
| 63 | + if ( ! empty( $invoice_status ) ) { |
|
| 64 | + $query['where'] .= " |
|
| 65 | 65 | AND posts.post_status IN ( '" . implode( "','", $invoice_status ) . "' ) |
| 66 | 66 | "; |
| 67 | - } |
|
| 68 | - |
|
| 69 | - if ( ! empty( $parent_invoice_status ) ) { |
|
| 70 | - if ( ! empty( $invoice_status ) ) { |
|
| 71 | - $query['where'] .= " AND ( parent.post_status IN ( '" . implode( "','", $parent_invoice_status ) . "' ) OR parent.ID IS NULL ) "; |
|
| 72 | - } else { |
|
| 73 | - $query['where'] .= " AND parent.post_status IN ( '" . implode( "','", $parent_invoice_status ) . "' ) "; |
|
| 74 | - } |
|
| 75 | - } |
|
| 76 | - |
|
| 77 | - if ( ! empty( $filter_range['before'] ) ) { |
|
| 78 | - $query['where'] .= " |
|
| 67 | + } |
|
| 68 | + |
|
| 69 | + if ( ! empty( $parent_invoice_status ) ) { |
|
| 70 | + if ( ! empty( $invoice_status ) ) { |
|
| 71 | + $query['where'] .= " AND ( parent.post_status IN ( '" . implode( "','", $parent_invoice_status ) . "' ) OR parent.ID IS NULL ) "; |
|
| 72 | + } else { |
|
| 73 | + $query['where'] .= " AND parent.post_status IN ( '" . implode( "','", $parent_invoice_status ) . "' ) "; |
|
| 74 | + } |
|
| 75 | + } |
|
| 76 | + |
|
| 77 | + if ( ! empty( $filter_range['before'] ) ) { |
|
| 78 | + $query['where'] .= " |
|
| 79 | 79 | AND posts.post_date <= '" . gmdate( 'Y-m-d 23:59:59', strtotime( $filter_range['before'] ) ) . "' |
| 80 | 80 | "; |
| 81 | - } |
|
| 81 | + } |
|
| 82 | 82 | |
| 83 | - if ( ! empty( $filter_range['after'] ) ) { |
|
| 84 | - $query['where'] .= " |
|
| 83 | + if ( ! empty( $filter_range['after'] ) ) { |
|
| 84 | + $query['where'] .= " |
|
| 85 | 85 | AND posts.post_date >= '" . gmdate( 'Y-m-d 00:00:00', strtotime( $filter_range['after'] ) ) . "' |
| 86 | 86 | "; |
| 87 | - } |
|
| 87 | + } |
|
| 88 | 88 | |
| 89 | - if ( ! empty( $where ) ) { |
|
| 89 | + if ( ! empty( $where ) ) { |
|
| 90 | 90 | |
| 91 | - foreach ( $where as $value ) { |
|
| 91 | + foreach ( $where as $value ) { |
|
| 92 | 92 | |
| 93 | - if ( strtolower( $value['operator'] ) === 'in' || strtolower( $value['operator'] ) === 'not in' ) { |
|
| 94 | - |
|
| 95 | - if ( is_array( $value['value'] ) ) { |
|
| 96 | - $value['value'] = implode( "','", $value['value'] ); |
|
| 97 | - } |
|
| 98 | - |
|
| 99 | - if ( ! empty( $value['value'] ) ) { |
|
| 100 | - $where_value = "{$value['operator']} ('{$value['value']}')"; |
|
| 101 | - } |
|
| 102 | - } else { |
|
| 103 | - $where_value = "{$value['operator']} '{$value['value']}'"; |
|
| 104 | - } |
|
| 105 | - |
|
| 106 | - if ( ! empty( $where_value ) ) { |
|
| 107 | - $query['where'] .= " AND {$value['key']} {$where_value}"; |
|
| 108 | - } |
|
| 109 | - } |
|
| 110 | - } |
|
| 111 | - |
|
| 112 | - if ( $group_by ) { |
|
| 113 | - $query['group_by'] = "GROUP BY {$group_by}"; |
|
| 114 | - } |
|
| 115 | - |
|
| 116 | - if ( $order_by ) { |
|
| 117 | - $query['order_by'] = "ORDER BY {$order_by}"; |
|
| 118 | - } |
|
| 119 | - |
|
| 120 | - if ( $limit ) { |
|
| 121 | - $query['limit'] = "LIMIT {$limit}"; |
|
| 122 | - } |
|
| 123 | - |
|
| 124 | - $query = apply_filters( 'getpaid_reports_get_invoice_report_query', $query, $data ); |
|
| 125 | - $query = implode( ' ', $query ); |
|
| 126 | - |
|
| 127 | - return self::execute( $query_type, $query ); |
|
| 128 | - |
|
| 129 | - } |
|
| 130 | - |
|
| 131 | - /** |
|
| 132 | - * Prepares the data to select. |
|
| 133 | - * |
|
| 134 | - * |
|
| 135 | - * @param array $data |
|
| 136 | - * @return array |
|
| 137 | - */ |
|
| 138 | - public static function prepare_invoice_data( $data ) { |
|
| 139 | - |
|
| 140 | - $prepared = array(); |
|
| 141 | - |
|
| 142 | - foreach ( $data as $raw_key => $value ) { |
|
| 143 | - $key = sanitize_key( $raw_key ); |
|
| 144 | - $distinct = ''; |
|
| 145 | - |
|
| 146 | - if ( isset( $value['distinct'] ) ) { |
|
| 147 | - $distinct = 'DISTINCT'; |
|
| 148 | - } |
|
| 149 | - |
|
| 150 | - $get_key = self::get_invoice_table_key( $key, $value['type'] ); |
|
| 151 | - |
|
| 152 | - if ( false === $get_key ) { |
|
| 153 | - // Skip to the next foreach iteration else the query will be invalid. |
|
| 154 | - continue; |
|
| 155 | - } |
|
| 156 | - |
|
| 157 | - if ( ! empty( $value['function'] ) ) { |
|
| 158 | - $get = "{$value['function']}({$distinct} {$get_key})"; |
|
| 159 | - } else { |
|
| 160 | - $get = "{$distinct} {$get_key}"; |
|
| 161 | - } |
|
| 162 | - |
|
| 163 | - $prepared[] = "{$get} as {$value['name']}"; |
|
| 164 | - } |
|
| 165 | - |
|
| 166 | - return $prepared; |
|
| 167 | - |
|
| 168 | - } |
|
| 169 | - |
|
| 170 | - /** |
|
| 171 | - * Prepares the joins to use. |
|
| 172 | - * |
|
| 173 | - * |
|
| 174 | - * @param array $data |
|
| 175 | - * @param bool $with_parent |
|
| 176 | - * @return array |
|
| 177 | - */ |
|
| 178 | - public static function prepare_invoice_joins( $data, $with_parent ) { |
|
| 179 | - global $wpdb; |
|
| 180 | - |
|
| 181 | - $prepared = array(); |
|
| 182 | - |
|
| 183 | - foreach ( $data as $raw_key => $value ) { |
|
| 184 | - $join_type = isset( $value['join_type'] ) ? $value['join_type'] : 'INNER'; |
|
| 185 | - $type = isset( $value['type'] ) ? $value['type'] : false; |
|
| 186 | - $key = sanitize_key( $raw_key ); |
|
| 187 | - |
|
| 188 | - switch ( $type ) { |
|
| 189 | - case 'meta': |
|
| 190 | - $prepared[ "meta_{$key}" ] = "{$join_type} JOIN {$wpdb->postmeta} AS meta_{$key} ON ( posts.ID = meta_{$key}.post_id AND meta_{$key}.meta_key = '{$raw_key}' )"; |
|
| 191 | - break; |
|
| 192 | - case 'parent_meta': |
|
| 193 | - $prepared[ "parent_meta_{$key}" ] = "{$join_type} JOIN {$wpdb->postmeta} AS parent_meta_{$key} ON (posts.post_parent = parent_meta_{$key}.post_id) AND (parent_meta_{$key}.meta_key = '{$raw_key}')"; |
|
| 194 | - break; |
|
| 195 | - case 'invoice_data': |
|
| 196 | - $prepared['invoices'] = "{$join_type} JOIN {$wpdb->prefix}getpaid_invoices AS invoices ON posts.ID = invoices.post_id"; |
|
| 197 | - break; |
|
| 198 | - case 'invoice_item': |
|
| 199 | - $prepared['invoice_items'] = "{$join_type} JOIN {$wpdb->prefix}getpaid_invoice_items AS invoice_items ON posts.ID = invoice_items.post_id"; |
|
| 200 | - break; |
|
| 201 | - } |
|
| 202 | - } |
|
| 203 | - |
|
| 204 | - if ( $with_parent ) { |
|
| 205 | - $prepared['parent'] = "LEFT JOIN {$wpdb->posts} AS parent ON posts.post_parent = parent.ID"; |
|
| 206 | - } |
|
| 207 | - |
|
| 208 | - return $prepared; |
|
| 209 | - |
|
| 210 | - } |
|
| 211 | - |
|
| 212 | - /** |
|
| 213 | - * Retrieves the appropriate table key to use. |
|
| 214 | - * |
|
| 215 | - * |
|
| 216 | - * @param string $key |
|
| 217 | - * @param string $table |
|
| 218 | - * @return string|false |
|
| 219 | - */ |
|
| 220 | - public static function get_invoice_table_key( $key, $table ) { |
|
| 221 | - |
|
| 222 | - $keys = array( |
|
| 223 | - 'meta' => "meta_{$key}.meta_value", |
|
| 224 | - 'parent_meta' => "parent_meta_{$key}.meta_value", |
|
| 225 | - 'post_data' => "posts.{$key}", |
|
| 226 | - 'invoice_data' => "invoices.{$key}", |
|
| 227 | - 'invoice_item' => "invoice_items.{$key}", |
|
| 228 | - ); |
|
| 229 | - |
|
| 230 | - return isset( $keys[ $table ] ) ? $keys[ $table ] : false; |
|
| 231 | - |
|
| 232 | - } |
|
| 233 | - |
|
| 234 | - /** |
|
| 235 | - * Executes a query and caches the result for a minute. |
|
| 236 | - * |
|
| 237 | - * |
|
| 238 | - * @param string $query_type |
|
| 239 | - * @param string $query |
|
| 240 | - * @return mixed depending on query_type |
|
| 241 | - */ |
|
| 242 | - public static function execute( $query_type, $query ) { |
|
| 243 | - global $wpdb; |
|
| 244 | - |
|
| 245 | - $query_hash = md5( $query_type . $query ); |
|
| 246 | - $result = self::get_cached_query( $query_hash ); |
|
| 247 | - if ( $result === false ) { |
|
| 248 | - self::enable_big_selects(); |
|
| 249 | - |
|
| 250 | - $result = $wpdb->$query_type( $query ); |
|
| 251 | - self::set_cached_query( $query_hash, $result ); |
|
| 252 | - } |
|
| 253 | - |
|
| 254 | - return $result; |
|
| 255 | - |
|
| 256 | - } |
|
| 257 | - |
|
| 258 | - /** |
|
| 259 | - * Enables big mysql selects for reports, just once for this session. |
|
| 260 | - */ |
|
| 261 | - protected static function enable_big_selects() { |
|
| 262 | - static $big_selects = false; |
|
| 263 | - |
|
| 264 | - global $wpdb; |
|
| 265 | - |
|
| 266 | - if ( ! $big_selects ) { |
|
| 267 | - $wpdb->query( 'SET SESSION SQL_BIG_SELECTS=1' ); |
|
| 268 | - $big_selects = true; |
|
| 269 | - } |
|
| 270 | - } |
|
| 271 | - |
|
| 272 | - /** |
|
| 273 | - * Get the cached query result or null if it's not in the cache. |
|
| 274 | - * |
|
| 275 | - * @param string $query_hash The query hash. |
|
| 276 | - * |
|
| 277 | - * @return mixed|false The cache contents on success, false on failure to retrieve contents. |
|
| 278 | - */ |
|
| 279 | - protected static function get_cached_query( $query_hash ) { |
|
| 280 | - |
|
| 281 | - return wp_cache_get( |
|
| 282 | - $query_hash, |
|
| 283 | - strtolower( __CLASS__ ) |
|
| 284 | - ); |
|
| 285 | - |
|
| 286 | - } |
|
| 287 | - |
|
| 288 | - /** |
|
| 289 | - * Set the cached query result. |
|
| 290 | - * |
|
| 291 | - * @param string $query_hash The query hash. |
|
| 292 | - * @param mixed $data The data to cache. |
|
| 293 | - */ |
|
| 294 | - protected static function set_cached_query( $query_hash, $data ) { |
|
| 295 | - |
|
| 296 | - wp_cache_set( |
|
| 297 | - $query_hash, |
|
| 298 | - $data, |
|
| 299 | - strtolower( __CLASS__ ), |
|
| 300 | - MINUTE_IN_SECONDS |
|
| 301 | - ); |
|
| 302 | - |
|
| 303 | - } |
|
| 93 | + if ( strtolower( $value['operator'] ) === 'in' || strtolower( $value['operator'] ) === 'not in' ) { |
|
| 94 | + |
|
| 95 | + if ( is_array( $value['value'] ) ) { |
|
| 96 | + $value['value'] = implode( "','", $value['value'] ); |
|
| 97 | + } |
|
| 98 | + |
|
| 99 | + if ( ! empty( $value['value'] ) ) { |
|
| 100 | + $where_value = "{$value['operator']} ('{$value['value']}')"; |
|
| 101 | + } |
|
| 102 | + } else { |
|
| 103 | + $where_value = "{$value['operator']} '{$value['value']}'"; |
|
| 104 | + } |
|
| 105 | + |
|
| 106 | + if ( ! empty( $where_value ) ) { |
|
| 107 | + $query['where'] .= " AND {$value['key']} {$where_value}"; |
|
| 108 | + } |
|
| 109 | + } |
|
| 110 | + } |
|
| 111 | + |
|
| 112 | + if ( $group_by ) { |
|
| 113 | + $query['group_by'] = "GROUP BY {$group_by}"; |
|
| 114 | + } |
|
| 115 | + |
|
| 116 | + if ( $order_by ) { |
|
| 117 | + $query['order_by'] = "ORDER BY {$order_by}"; |
|
| 118 | + } |
|
| 119 | + |
|
| 120 | + if ( $limit ) { |
|
| 121 | + $query['limit'] = "LIMIT {$limit}"; |
|
| 122 | + } |
|
| 123 | + |
|
| 124 | + $query = apply_filters( 'getpaid_reports_get_invoice_report_query', $query, $data ); |
|
| 125 | + $query = implode( ' ', $query ); |
|
| 126 | + |
|
| 127 | + return self::execute( $query_type, $query ); |
|
| 128 | + |
|
| 129 | + } |
|
| 130 | + |
|
| 131 | + /** |
|
| 132 | + * Prepares the data to select. |
|
| 133 | + * |
|
| 134 | + * |
|
| 135 | + * @param array $data |
|
| 136 | + * @return array |
|
| 137 | + */ |
|
| 138 | + public static function prepare_invoice_data( $data ) { |
|
| 139 | + |
|
| 140 | + $prepared = array(); |
|
| 141 | + |
|
| 142 | + foreach ( $data as $raw_key => $value ) { |
|
| 143 | + $key = sanitize_key( $raw_key ); |
|
| 144 | + $distinct = ''; |
|
| 145 | + |
|
| 146 | + if ( isset( $value['distinct'] ) ) { |
|
| 147 | + $distinct = 'DISTINCT'; |
|
| 148 | + } |
|
| 149 | + |
|
| 150 | + $get_key = self::get_invoice_table_key( $key, $value['type'] ); |
|
| 151 | + |
|
| 152 | + if ( false === $get_key ) { |
|
| 153 | + // Skip to the next foreach iteration else the query will be invalid. |
|
| 154 | + continue; |
|
| 155 | + } |
|
| 156 | + |
|
| 157 | + if ( ! empty( $value['function'] ) ) { |
|
| 158 | + $get = "{$value['function']}({$distinct} {$get_key})"; |
|
| 159 | + } else { |
|
| 160 | + $get = "{$distinct} {$get_key}"; |
|
| 161 | + } |
|
| 162 | + |
|
| 163 | + $prepared[] = "{$get} as {$value['name']}"; |
|
| 164 | + } |
|
| 165 | + |
|
| 166 | + return $prepared; |
|
| 167 | + |
|
| 168 | + } |
|
| 169 | + |
|
| 170 | + /** |
|
| 171 | + * Prepares the joins to use. |
|
| 172 | + * |
|
| 173 | + * |
|
| 174 | + * @param array $data |
|
| 175 | + * @param bool $with_parent |
|
| 176 | + * @return array |
|
| 177 | + */ |
|
| 178 | + public static function prepare_invoice_joins( $data, $with_parent ) { |
|
| 179 | + global $wpdb; |
|
| 180 | + |
|
| 181 | + $prepared = array(); |
|
| 182 | + |
|
| 183 | + foreach ( $data as $raw_key => $value ) { |
|
| 184 | + $join_type = isset( $value['join_type'] ) ? $value['join_type'] : 'INNER'; |
|
| 185 | + $type = isset( $value['type'] ) ? $value['type'] : false; |
|
| 186 | + $key = sanitize_key( $raw_key ); |
|
| 187 | + |
|
| 188 | + switch ( $type ) { |
|
| 189 | + case 'meta': |
|
| 190 | + $prepared[ "meta_{$key}" ] = "{$join_type} JOIN {$wpdb->postmeta} AS meta_{$key} ON ( posts.ID = meta_{$key}.post_id AND meta_{$key}.meta_key = '{$raw_key}' )"; |
|
| 191 | + break; |
|
| 192 | + case 'parent_meta': |
|
| 193 | + $prepared[ "parent_meta_{$key}" ] = "{$join_type} JOIN {$wpdb->postmeta} AS parent_meta_{$key} ON (posts.post_parent = parent_meta_{$key}.post_id) AND (parent_meta_{$key}.meta_key = '{$raw_key}')"; |
|
| 194 | + break; |
|
| 195 | + case 'invoice_data': |
|
| 196 | + $prepared['invoices'] = "{$join_type} JOIN {$wpdb->prefix}getpaid_invoices AS invoices ON posts.ID = invoices.post_id"; |
|
| 197 | + break; |
|
| 198 | + case 'invoice_item': |
|
| 199 | + $prepared['invoice_items'] = "{$join_type} JOIN {$wpdb->prefix}getpaid_invoice_items AS invoice_items ON posts.ID = invoice_items.post_id"; |
|
| 200 | + break; |
|
| 201 | + } |
|
| 202 | + } |
|
| 203 | + |
|
| 204 | + if ( $with_parent ) { |
|
| 205 | + $prepared['parent'] = "LEFT JOIN {$wpdb->posts} AS parent ON posts.post_parent = parent.ID"; |
|
| 206 | + } |
|
| 207 | + |
|
| 208 | + return $prepared; |
|
| 209 | + |
|
| 210 | + } |
|
| 211 | + |
|
| 212 | + /** |
|
| 213 | + * Retrieves the appropriate table key to use. |
|
| 214 | + * |
|
| 215 | + * |
|
| 216 | + * @param string $key |
|
| 217 | + * @param string $table |
|
| 218 | + * @return string|false |
|
| 219 | + */ |
|
| 220 | + public static function get_invoice_table_key( $key, $table ) { |
|
| 221 | + |
|
| 222 | + $keys = array( |
|
| 223 | + 'meta' => "meta_{$key}.meta_value", |
|
| 224 | + 'parent_meta' => "parent_meta_{$key}.meta_value", |
|
| 225 | + 'post_data' => "posts.{$key}", |
|
| 226 | + 'invoice_data' => "invoices.{$key}", |
|
| 227 | + 'invoice_item' => "invoice_items.{$key}", |
|
| 228 | + ); |
|
| 229 | + |
|
| 230 | + return isset( $keys[ $table ] ) ? $keys[ $table ] : false; |
|
| 231 | + |
|
| 232 | + } |
|
| 233 | + |
|
| 234 | + /** |
|
| 235 | + * Executes a query and caches the result for a minute. |
|
| 236 | + * |
|
| 237 | + * |
|
| 238 | + * @param string $query_type |
|
| 239 | + * @param string $query |
|
| 240 | + * @return mixed depending on query_type |
|
| 241 | + */ |
|
| 242 | + public static function execute( $query_type, $query ) { |
|
| 243 | + global $wpdb; |
|
| 244 | + |
|
| 245 | + $query_hash = md5( $query_type . $query ); |
|
| 246 | + $result = self::get_cached_query( $query_hash ); |
|
| 247 | + if ( $result === false ) { |
|
| 248 | + self::enable_big_selects(); |
|
| 249 | + |
|
| 250 | + $result = $wpdb->$query_type( $query ); |
|
| 251 | + self::set_cached_query( $query_hash, $result ); |
|
| 252 | + } |
|
| 253 | + |
|
| 254 | + return $result; |
|
| 255 | + |
|
| 256 | + } |
|
| 257 | + |
|
| 258 | + /** |
|
| 259 | + * Enables big mysql selects for reports, just once for this session. |
|
| 260 | + */ |
|
| 261 | + protected static function enable_big_selects() { |
|
| 262 | + static $big_selects = false; |
|
| 263 | + |
|
| 264 | + global $wpdb; |
|
| 265 | + |
|
| 266 | + if ( ! $big_selects ) { |
|
| 267 | + $wpdb->query( 'SET SESSION SQL_BIG_SELECTS=1' ); |
|
| 268 | + $big_selects = true; |
|
| 269 | + } |
|
| 270 | + } |
|
| 271 | + |
|
| 272 | + /** |
|
| 273 | + * Get the cached query result or null if it's not in the cache. |
|
| 274 | + * |
|
| 275 | + * @param string $query_hash The query hash. |
|
| 276 | + * |
|
| 277 | + * @return mixed|false The cache contents on success, false on failure to retrieve contents. |
|
| 278 | + */ |
|
| 279 | + protected static function get_cached_query( $query_hash ) { |
|
| 280 | + |
|
| 281 | + return wp_cache_get( |
|
| 282 | + $query_hash, |
|
| 283 | + strtolower( __CLASS__ ) |
|
| 284 | + ); |
|
| 285 | + |
|
| 286 | + } |
|
| 287 | + |
|
| 288 | + /** |
|
| 289 | + * Set the cached query result. |
|
| 290 | + * |
|
| 291 | + * @param string $query_hash The query hash. |
|
| 292 | + * @param mixed $data The data to cache. |
|
| 293 | + */ |
|
| 294 | + protected static function set_cached_query( $query_hash, $data ) { |
|
| 295 | + |
|
| 296 | + wp_cache_set( |
|
| 297 | + $query_hash, |
|
| 298 | + $data, |
|
| 299 | + strtolower( __CLASS__ ), |
|
| 300 | + MINUTE_IN_SECONDS |
|
| 301 | + ); |
|
| 302 | + |
|
| 303 | + } |
|
| 304 | 304 | |
| 305 | 305 | } |