| @@ -11,9 +11,9 @@ | ||
| 11 | 11 | public function permission_check( WP_REST_Request $request ) { |
| 12 | 12 | $this->request = $request; |
| 13 | 13 | |
| 14 | 14 | $_route = $request->get_route(); |
| 15 | - if( $_route === '/templately/v1/items/favourite' || $_route === '/templately/v1/items/rating' ) { | |
| 15 | + if( $_route === '/templately/v1/items/favourite' ) { | |
| 16 | 16 | return parent::permission_check( $request ); |
| 17 | 17 | } |
| 18 | 18 | |
| 19 | 19 | return true; |
| @@ -22,12 +22,9 @@ | ||
| 22 | 22 | public function register_routes() { |
| 23 | 23 | $this->get( 'items', [ $this, 'get_items' ], [ |
| 24 | 24 | 'type' => [ |
| 25 | 25 | 'default' => 'items', |
| 26 | - 'required' => false, | |
| 27 | - // 'validate_callback' => function( $param, $request, $key ){ | |
| 28 | - // return in_array( $param, [ 'items', 'sections', 'blocks', 'packs', 'pages' ], true ); | |
| 29 | - // } | |
| 26 | + 'required' => false | |
| 30 | 27 | ], |
| 31 | 28 | 'platform' => [ |
| 32 | 29 | 'default' => 'elementor', |
| 33 | 30 | 'required' => false |
| @@ -35,28 +32,10 @@ | ||
| 35 | 32 | 'per_page' => [ |
| 36 | 33 | 'default' => 40, |
| 37 | 34 | 'required' => false |
| 38 | 35 | ], |
| 39 | - 'sort_by' => [ | |
| 40 | - 'default' => 'latest', | |
| 41 | - 'required' => false, | |
| 42 | - 'validate_callback' => function( $param, $request, $key ){ | |
| 43 | - return empty( $param ) || in_array( $param, [ 'latest', 'rating', 'download' ], true ); | |
| 44 | - } | |
| 45 | - ], | |
| 46 | 36 | ] ); |
| 47 | 37 | |
| 48 | - // only number | |
| 49 | - $this->get( 'items/(?P<id>[0-9]+)', [ $this, 'get_item_by_id' ], [ | |
| 50 | - 'id' => [ | |
| 51 | - 'required' => true, | |
| 52 | - ], | |
| 53 | - 'type' => [ | |
| 54 | - 'default' => 'block' | |
| 55 | - ] | |
| 56 | - ] ); | |
| 57 | - | |
| 58 | - // with slug | |
| 59 | 38 | $this->get( 'items/(?P<slug>[a-zA-Z0-9-]+)', [ $this, 'get_item' ], [ |
| 60 | 39 | 'slug' => [ |
| 61 | 40 | 'required' => true, |
| 62 | 41 | ], |
| @@ -77,13 +56,10 @@ | ||
| 77 | 56 | ], |
| 78 | 57 | ] ); |
| 79 | 58 | |
| 80 | 59 | $this->post( 'items/favourite', [ $this, 'set_favourite' ] ); |
| 81 | - $this->post( 'items/rating', [ $this, 'set_rating' ] ); | |
| 82 | 60 | $this->get( 'items-count', [ $this, 'get_counts' ] ); |
| 83 | 61 | $this->get( 'featured-items', [ $this, 'featured_items' ] ); |
| 84 | - $this->get( 'trending-items', [ $this, 'trending_items' ] ); | |
| 85 | - $this->get( 'related-items', [ $this, 'related_items' ]); | |
| 86 | 62 | } |
| 87 | 63 | |
| 88 | 64 | /** |
| 89 | 65 | * @param string $type |
| @@ -90,10 +66,9 @@ | ||
| 90 | 66 | * |
| 91 | 67 | * @return string |
| 92 | 68 | */ |
| 93 | 69 | public function get_query_types( $type = 'blocks' ) { |
| 94 | - $item_types = ( $type === 'blocks' || $type === 'sections' ) ? 'items' : trim( $type ); | |
| 95 | - return in_array( $item_types, [ 'items', 'pages', 'packs' ], true ) ? $item_types : false; | |
| 70 | + return ( $type === 'blocks' || $type === 'sections' ) ? 'items' : trim( $type ); | |
| 96 | 71 | } |
| 97 | 72 | |
| 98 | 73 | public function get_items( WP_REST_Request $request ) { |
| 99 | 74 | $_type = $this->get_param( 'type', 'blocks' ); |
| @@ -101,14 +76,12 @@ | ||
| 101 | 76 | $plan = $this->get_param( 'plan', 'all' ); |
| 102 | 77 | $plan_type = $this->get_plan( $plan ); |
| 103 | 78 | $platform = $this->get_param( 'platform', 'elementor' ); |
| 104 | 79 | $search = $this->get_param( 'search' ); |
| 105 | - $include_search = $this->get_param( 'include_search' ); | |
| 106 | 80 | $page = $this->get_param( 'page', 1, 'intval' ); |
| 107 | 81 | $per_page = $this->get_param( 'per_page', 40, 'intval' ); |
| 108 | 82 | $template_type_id = $this->get_param( 'template_type_id', 0, 'intval' ); |
| 109 | - $categories_raw = $this->get_param( 'categories' ); | |
| 110 | - $sort_by = $this->get_param( 'sort_by', 'latest' ); | |
| 83 | + $category_id = $this->get_param( 'category_id', 0, 'intval' ); | |
| 111 | 84 | |
| 112 | 85 | $dependencies = $request->get_param( 'dependencies' ); |
| 113 | 86 | $tags = $request->get_param( 'tags' ); |
| 114 | 87 | |
| @@ -115,9 +88,8 @@ | ||
| 115 | 88 | $funcArgs = [ |
| 116 | 89 | 'page' => $page, |
| 117 | 90 | 'per_page' => $per_page, |
| 118 | 91 | 'platform' => $platform, |
| 119 | - 'sort_by' => $sort_by, | |
| 120 | 92 | ]; |
| 121 | 93 | |
| 122 | 94 | if ( $plan_type > 1 ) { |
| 123 | 95 | $funcArgs['plan_type'] = $plan_type; |
| @@ -122,13 +94,10 @@ | ||
| 122 | 94 | if ( $plan_type > 1 ) { |
| 123 | 95 | $funcArgs['plan_type'] = $plan_type; |
| 124 | 96 | } |
| 125 | 97 | |
| 126 | - if ( ! empty( $categories_raw ) ) { | |
| 127 | - $decoded = json_decode( $categories_raw, true ); | |
| 128 | - if ( is_array( $decoded ) && ! empty( $decoded ) ) { | |
| 129 | - $funcArgs['categories'] = wp_slash( json_encode( array_values( array_filter( array_map( 'intval', $decoded ) ) ) ) ); | |
| 130 | - } | |
| 98 | + if ( $category_id ) { | |
| 99 | + $funcArgs['category_id'] = $category_id; | |
| 131 | 100 | } |
| 132 | 101 | if ( $template_type_id > 0 ) { |
| 133 | 102 | $funcArgs['template_type_id'] = $template_type_id; |
| 134 | 103 | } |
| @@ -142,37 +111,18 @@ | ||
| 142 | 111 | if ( ! empty( $search ) ) { |
| 143 | 112 | $funcArgs['search'] = $search; |
| 144 | 113 | } |
| 145 | 114 | |
| 146 | - if ( ! empty( $include_search ) ) { | |
| 147 | - $funcArgs['include_search'] = $include_search; | |
| 148 | - } | |
| 149 | - | |
| 150 | - $query = 'total_page, current_page, data { id, fullsite_import, name, price, rating, downloads, type, template_type{ slug }, slug, favourite_count, thumbnail, thumbnail2, thumbnail3, badges }'; | |
| 115 | + $query = 'total_page, current_page, data { id, name, price, rating, downloads, type, template_type{ slug }, slug, favourite_count, thumbnail, thumbnail2, thumbnail3 }'; | |
| 151 | 116 | if( $type !== 'packs' ) { |
| 152 | - $query = 'total_page, current_page, data { id, name, price, rating, downloads, type, template_type{ slug }, slug, favourite_count, dependencies{ id, name, icon, plugin_file, plugin_original_slug, is_pro, link }, thumbnail, pack { id, has_settings }, badges }'; | |
| 117 | + $query = 'total_page, current_page, data { id, name, price, rating, downloads, type, template_type{ slug }, slug, favourite_count, dependencies{ id, name, icon, plugin_file, plugin_original_slug, is_pro, link }, thumbnail }'; | |
| 153 | 118 | } |
| 154 | 119 | |
| 155 | - if( $type === false ) { | |
| 156 | - return $this->error( 'invalid_type_call', __( 'Invalid Type Call', 'templately' ) ); | |
| 157 | - } | |
| 158 | - | |
| 159 | - $transient_key = "_templately_items_" . md5(json_encode([$type, $query, $funcArgs])); | |
| 160 | - $response = false; | |
| 161 | - | |
| 162 | - if ( defined( 'TEMPLATELY_ITEMS_TRANSIENT' ) && constant( 'TEMPLATELY_ITEMS_TRANSIENT' ) ) { | |
| 163 | - $response = Database::get_transient( $transient_key ); | |
| 164 | - } | |
| 165 | - | |
| 166 | - if ( empty( $response ) ) { | |
| 167 | - $response = $this->http()->query( $type, $query, $funcArgs )->post(); | |
| 168 | - | |
| 169 | - if ( ! empty( $response ) && ! is_wp_error( $response ) && defined( 'TEMPLATELY_ITEMS_TRANSIENT' ) && constant( 'TEMPLATELY_ITEMS_TRANSIENT' ) ) { | |
| 170 | - Database::set_transient( $transient_key, $response ); | |
| 171 | - } | |
| 172 | - } | |
| 173 | - | |
| 174 | - return $response; | |
| 120 | + return $this->http()->query( | |
| 121 | + $type, | |
| 122 | + $query, | |
| 123 | + $funcArgs | |
| 124 | + )->post(); | |
| 175 | 125 | } |
| 176 | 126 | |
| 177 | 127 | public function get_item() { |
| 178 | 128 | $slug = $this->get_param( 'slug' ); |
| @@ -187,41 +137,17 @@ | ||
| 187 | 137 | '400' |
| 188 | 138 | ); |
| 189 | 139 | } |
| 190 | 140 | |
| 191 | - if( $type === false ) { | |
| 192 | - return $this->error( 'invalid_type_call', __( 'Invalid Type Call', 'templately' ) ); | |
| 193 | - } | |
| 141 | + $items_params = 'id, name, rating, type, description, slug, price, features, favourite_count, thumbnail, downloads, categories{ id, name, slug }, dependencies{ id, name, icon, plugin_file, plugin_original_slug, is_pro, link }, tags{ name, id }, categories{ name, id }, screenshots{ url }, banner, pack{ id, name, slug, items{ id, price, name, type, slug, thumbnail } }, live_url, template_type{ id, name, slug }'; | |
| 142 | + $params = 'data { ' . $items_params . ' }'; | |
| 194 | 143 | |
| 195 | - $items_params = 'id, name, rating, type, description, slug, price, features, favourite_count, is_favourite, is_reviewed, thumbnail, downloads, categories{ id, name, slug }, dependencies{ id, name, icon, plugin_file, plugin_original_slug, is_pro, link }, tags{ name, id }, categories{ name, id }, screenshots{ url }, banner, published_at, updated_at, is_trending, badges, pack{ id, name, slug, items{ id, price, name, type, slug, thumbnail, badges }, has_settings }, live_url, template_type{ id, name, slug }'; | |
| 196 | - $params = 'data { ' . $items_params . ', variations { name, slug, type, platform } }'; | |
| 197 | - | |
| 198 | 144 | if ( $type == 'packs' ) { |
| 199 | - $params = 'data { id, fullsite_import, ai_compatible, has_settings, has_attachments, name, rating, type, slug, live_url, price, features, favourite_count, is_favourite, is_reviewed, thumbnail, description, tags{ name, id }, banner, published_at, updated_at, is_trending, badges, template_type{ id, name, slug } downloads, categories{ id, name, slug }, items { ' . $items_params . ' }, variations { name, slug, type, platform } }'; | |
| 145 | + $params = 'data { id, name, rating, type, slug, live_url, price, features, favourite_count, thumbnail, downloads, categories{ id, name, slug }, items { ' . $items_params . ' } }'; | |
| 200 | 146 | } |
| 201 | 147 | |
| 202 | - $args = [ | |
| 203 | - 'slug' => $slug, | |
| 204 | - ]; | |
| 205 | - if (!empty($this->api_key)) { | |
| 206 | - $args['api_key'] = $this->api_key; | |
| 207 | - } | |
| 148 | + $response = $this->http()->query( $type, $params, [ 'slug' => $slug ] )->post(); | |
| 208 | 149 | |
| 209 | - $transient_key = "_templately_items_" . md5(json_encode([$type, $params, $args])); | |
| 210 | - $response = false; | |
| 211 | - | |
| 212 | - if ( defined( 'TEMPLATELY_ITEMS_TRANSIENT' ) && constant( 'TEMPLATELY_ITEMS_TRANSIENT' ) ) { | |
| 213 | - $response = Database::get_transient( $transient_key ); | |
| 214 | - } | |
| 215 | - | |
| 216 | - if ( empty( $response ) ) { | |
| 217 | - $response = $this->http()->query( $type, $params, $args )->post(); | |
| 218 | - | |
| 219 | - if ( ! empty( $response ) && ! is_wp_error( $response ) && defined( 'TEMPLATELY_ITEMS_TRANSIENT' ) && constant( 'TEMPLATELY_ITEMS_TRANSIENT' ) ) { | |
| 220 | - Database::set_transient( $transient_key, $response ); | |
| 221 | - } | |
| 222 | - } | |
| 223 | - | |
| 224 | 150 | if ( is_wp_error( $response ) ) { |
| 225 | 151 | return $response; |
| 226 | 152 | } |
| 227 | 153 | |
| @@ -236,58 +162,8 @@ | ||
| 236 | 162 | |
| 237 | 163 | return current( $response['data'] ); |
| 238 | 164 | } |
| 239 | 165 | |
| 240 | - public function get_item_by_id() { | |
| 241 | - $id = (int) $this->get_param( 'id' ); | |
| 242 | - $_type = $this->get_param( 'type', 'blocks' ); | |
| 243 | - $type = $this->get_query_types( $_type ); | |
| 244 | - | |
| 245 | - if ( empty( $id ) ) { | |
| 246 | - return $this->error( | |
| 247 | - 'invalid_item_slug', | |
| 248 | - __( 'Items id cannot be empty.', 'templately' ), | |
| 249 | - 'items/:id', | |
| 250 | - '400' | |
| 251 | - ); | |
| 252 | - } | |
| 253 | - | |
| 254 | - if( $type === false ) { | |
| 255 | - return $this->error( 'invalid_type_call', __( 'Invalid Type Call', 'templately' ) ); | |
| 256 | - } | |
| 257 | - | |
| 258 | - $items_params = 'id, name, rating, type, description, slug, price, features, favourite_count, is_favourite, is_reviewed, thumbnail, downloads, categories{ id, name, slug }, dependencies{ id, name, icon, plugin_file, plugin_original_slug, is_pro, link }, tags{ name, id }, categories{ name, id }, screenshots{ url }, banner, published_at, updated_at, is_trending, badges, pack{ id, name, slug, items{ id, price, name, type, slug, thumbnail, badges }, has_settings }, live_url, template_type{ id, name, slug }'; | |
| 259 | - $params = 'data { ' . $items_params . ', variations { name, slug, type, platform } }'; | |
| 260 | - | |
| 261 | - if ( $type == 'packs' ) { | |
| 262 | - $params = 'data { id, fullsite_import, ai_compatible, has_settings, has_attachments, name, rating, type, slug, live_url, price, features, favourite_count, is_favourite, is_reviewed, thumbnail, description, tags{ name, id }, banner, published_at, updated_at, is_trending, badges, template_type{ id, name, slug } downloads, categories{ id, name, slug }, items { ' . $items_params . ' }, variations { name, slug, type, platform } }'; | |
| 263 | - } | |
| 264 | - | |
| 265 | - $args = [ | |
| 266 | - 'id' => $id, | |
| 267 | - ]; | |
| 268 | - if (!empty($this->api_key)) { | |
| 269 | - $args['api_key'] = $this->api_key; | |
| 270 | - } | |
| 271 | - | |
| 272 | - $response = $this->http()->query( $type, $params, $args )->post(); | |
| 273 | - | |
| 274 | - if ( is_wp_error( $response ) ) { | |
| 275 | - return $response; | |
| 276 | - } | |
| 277 | - | |
| 278 | - if( empty( $response['data'] ) ) { | |
| 279 | - return $this->error( | |
| 280 | - 'invalid_response', | |
| 281 | - __('Item data not found', 'templately'), | |
| 282 | - '/items\/' . $id, | |
| 283 | - '404' | |
| 284 | - ); | |
| 285 | - } | |
| 286 | - | |
| 287 | - return current( $response['data'] ); | |
| 288 | - } | |
| 289 | - | |
| 290 | 166 | public function get_search_results( WP_REST_Request $request ) { |
| 291 | 167 | $keyword = $request->get_param( 'keyword' ); |
| 292 | 168 | $platform = $request->get_param( 'platform' ); |
| 293 | 169 | $query_type = $request->get_param( 'query_type' ); |
| @@ -380,9 +256,9 @@ | ||
| 380 | 256 | 'id' => $id, |
| 381 | 257 | 'type' => $type == 'block' || $type == 'page' ? 'item' : 'pack' |
| 382 | 258 | ]; |
| 383 | 259 | |
| 384 | - if( $response == 1 || $response === false ) { | |
| 260 | + if( $response == 1 ) { | |
| 385 | 261 | $_favourites = $this->utils('options')->get('favourites'); |
| 386 | 262 | $_favourites = $this->utils('helper')->normalizeFavourites( $_temp_data, $_favourites, true ); |
| 387 | 263 | $this->utils('options')->set('favourites', $_favourites); |
| 388 | 264 | |
| @@ -396,56 +272,8 @@ | ||
| 396 | 272 | |
| 397 | 273 | return $_response; |
| 398 | 274 | } |
| 399 | 275 | |
| 400 | - public function set_rating(){ | |
| 401 | - $type_id = $this->get_param( 'type_id', 0, 'intval' ); | |
| 402 | - $itemType = $this->get_param( 'itemType', 'pack' ); | |
| 403 | - $rating = $this->get_param( 'rating', 5, 'intval' ); | |
| 404 | - | |
| 405 | - $query = 'status, message, data'; | |
| 406 | - | |
| 407 | - $funcArgs = [ | |
| 408 | - 'api_key' => $this->api_key, | |
| 409 | - 'type_id' => $type_id, | |
| 410 | - 'type' => $itemType, | |
| 411 | - 'rating' => $rating, | |
| 412 | - ]; | |
| 413 | - | |
| 414 | - $response = $this->http()->mutation( | |
| 415 | - 'review', | |
| 416 | - $query, | |
| 417 | - $funcArgs | |
| 418 | - )->post(); | |
| 419 | - | |
| 420 | - if( is_wp_error( $response ) ) { | |
| 421 | - return $response; | |
| 422 | - } | |
| 423 | - | |
| 424 | - if( empty( $response['data'] ) ) { | |
| 425 | - return $this->error( | |
| 426 | - 'invalid_response', | |
| 427 | - __('Something went wrong.', 'templately'), | |
| 428 | - '/items\/rating', | |
| 429 | - '404' | |
| 430 | - ); | |
| 431 | - } | |
| 432 | - | |
| 433 | - if( ! empty( $response['data'] ) && $response['status'] === 'success' ) { | |
| 434 | - $response['data'] = json_decode( $response['data'], true ); | |
| 435 | - | |
| 436 | - $_ratings = $this->utils('options')->get('reviews', []); | |
| 437 | - // $_reviews = $this->utils( 'helper' )->normalizeReviews( $response['user']['reviews'] ); | |
| 438 | - $_ratings[ $itemType ][ $type_id ] = $rating; | |
| 439 | - $this->utils('options')->set('reviews', $_ratings); | |
| 440 | - | |
| 441 | - $_ratings[ $itemType ][ "avg_$type_id" ] = (float) $response['data']['avg_rating']; | |
| 442 | - $response['data']['reviews'] = $_ratings; | |
| 443 | - } | |
| 444 | - | |
| 445 | - return $response; | |
| 446 | - } | |
| 447 | - | |
| 448 | 276 | public function get_counts(){ |
| 449 | 277 | $defaults = Database::get_transient( 'counts' ); |
| 450 | 278 | if( $defaults ) { |
| 451 | 279 | return $defaults; |
| @@ -537,27 +365,19 @@ | ||
| 537 | 365 | } |
| 538 | 366 | |
| 539 | 367 | /** |
| 540 | 368 | * Get Featured Item List |
| 541 | - * @param WP_REST_Request $request | |
| 542 | 369 | * @return mixed |
| 543 | 370 | */ |
| 544 | - public function featured_items(WP_REST_Request $request){ | |
| 545 | - $platform = $request->get_param( 'platform' ); | |
| 546 | - $defaults = Database::get_transient( "featuredItems_{$platform}" ); | |
| 371 | + public function featured_items(){ | |
| 372 | + $defaults = Database::get_transient( 'featuredItems' ); | |
| 547 | 373 | if( $defaults ) { |
| 548 | 374 | return $defaults; |
| 549 | 375 | } |
| 550 | 376 | |
| 551 | - $funcArgs = [ | |
| 552 | - // 'page' => 1, | |
| 553 | - // 'per_page' => 10, | |
| 554 | - 'platform' => $platform, | |
| 555 | - ]; | |
| 556 | 377 | $response = $this->http()->query( |
| 557 | 378 | 'featuredItems', |
| 558 | - 'data{ id, name, slug, price, type, thumbnail, badges }', | |
| 559 | - $funcArgs | |
| 379 | + 'data{ id, name, slug, price, type, thumbnail }' | |
| 560 | 380 | )->post(); |
| 561 | 381 | |
| 562 | 382 | if( ! is_wp_error( $response ) ) { |
| 563 | 383 | Database::set_transient( 'featuredItems', $response ); |
| @@ -563,85 +383,6 @@ | ||
| 563 | 383 | Database::set_transient( 'featuredItems', $response ); |
| 564 | 384 | } |
| 565 | 385 | |
| 566 | 386 | return $response; |
| 567 | - } | |
| 568 | - | |
| 569 | - /** | |
| 570 | - * Get Trending Item List | |
| 571 | - * @param WP_REST_Request $request | |
| 572 | - * @return mixed | |
| 573 | - */ | |
| 574 | - public function trending_items(WP_REST_Request $request){ | |
| 575 | - $platform = $request->get_param( 'platform' ); | |
| 576 | - $defaults = Database::get_transient( "trendingItems_{$platform}" ); | |
| 577 | - if( $defaults ) { | |
| 578 | - return $defaults; | |
| 579 | - } | |
| 580 | - | |
| 581 | - $funcArgs = [ | |
| 582 | - // 'page' => 1, | |
| 583 | - // 'per_page' => 10, | |
| 584 | - 'platform' => $platform, | |
| 585 | - ]; | |
| 586 | - $response = $this->http()->query( | |
| 587 | - 'trendingItems', | |
| 588 | - 'data{ id, name, slug, price, type, thumbnail, badges }', | |
| 589 | - $funcArgs | |
| 590 | - )->post(); | |
| 591 | - | |
| 592 | - if( ! is_wp_error( $response ) ) { | |
| 593 | - Database::set_transient( 'trendingItems', $response ); | |
| 594 | - } | |
| 595 | - | |
| 596 | - return $response; | |
| 597 | - } | |
| 598 | - | |
| 599 | - /** | |
| 600 | - * Get Related Item List | |
| 601 | - * @param WP_REST_Request $request | |
| 602 | - * @return mixed | |
| 603 | - */ | |
| 604 | - public function related_items(WP_REST_Request $request){ | |
| 605 | - $item_id = (int) $request->get_param( 'item_id' ); | |
| 606 | - $type = $request->get_param( '_type' ); | |
| 607 | - | |
| 608 | - if ( empty( $item_id ) ) { | |
| 609 | - return $this->error( | |
| 610 | - 'invalid_item_id', | |
| 611 | - __( 'Item ID cannot be empty.', 'templately' ), | |
| 612 | - 'related-items', | |
| 613 | - '400' | |
| 614 | - ); | |
| 615 | - } | |
| 616 | - | |
| 617 | - if ( empty( $type ) ) { | |
| 618 | - return $this->error( | |
| 619 | - 'invalid_type', | |
| 620 | - __( 'Type cannot be empty.', 'templately' ), | |
| 621 | - 'related-items', | |
| 622 | - '400' | |
| 623 | - ); | |
| 624 | - } | |
| 625 | - | |
| 626 | - $funcArgs = [ | |
| 627 | - 'id' => $item_id, | |
| 628 | - 'type' => $type, | |
| 629 | - 'limit' => 4, // Limit to 3 related items | |
| 630 | - ]; | |
| 631 | - | |
| 632 | - $response = $this->http()->query( | |
| 633 | - 'relatedItems', | |
| 634 | - 'id, name, slug, price, type, thumbnail, badges', | |
| 635 | - $funcArgs | |
| 636 | - )->post(); | |
| 637 | - | |
| 638 | - if( is_wp_error( $response ) ) { | |
| 639 | - return $response; | |
| 640 | - } | |
| 641 | - | |
| 642 | - return [ | |
| 643 | - 'status' => 'success', | |
| 644 | - 'data' => $response, | |
| 645 | - ]; | |
| 646 | 387 | } |
| 647 | 388 | } |