UPGRADE NOTE: Do not edit or add to this file if you wish to upgrade AbanteCart to newer versions in the future. If you wish to customize AbanteCart for your needs please refer to http://www.AbanteCart.com for more information. ------------------------------------------------------------------------------*/ if (! defined ( 'DIR_CORE' )) { header ( 'Location: static_pages/' ); } class ControllerApiProductReview extends AControllerAPI { public function get() { $this->extensions->hk_InitData($this,__FUNCTION__); $product_id = $this->request->get['product_id']; if ( !$product_id ) { $this->rest->setResponseData( array('Error' => 'Missing product ID as a required parameter') ); $this->rest->sendResponse(200); return null; } if ( !$this->config->get('enable_reviews')) { $this->rest->setResponseData( array('Error' => 'Reviews for products are disabled') ); $this->rest->sendResponse(200); return null; } $this->loadModel('catalog/review'); $total_reviews = $this->model_catalog_review->getTotalReviewsByProductId( $product_id ); $average = $this->model_catalog_review->getAverageRating( $product_id ); if (isset($this->request->get['page'])) { $page = $this->request->get['page']; } else { $page = 1; } if (isset($this->request->get['rows'])) { $rows = $this->request->get['rows']; } else { $rows = 5; } if( $total_reviews > 0 && $rows > 0 ) { $total_pages = ceil($total_reviews / $rows ); } else { $total_pages = 0; } $reviews = array(); $results = $this->model_catalog_review->getReviewsByProductId($product_id, ($page - 1) * $rows, $rows); foreach ($results as $result) { $reviews[] = array( 'author' => $result['author'], 'rating' => $result['rating'], 'text' => strip_tags($result['text']), 'date_added' => dateISO2Display($result['date_added'], $this->language->get('date_format_short')) ); } //init controller data $this->extensions->hk_UpdateData($this,__FUNCTION__); $this->rest->setResponseData( array( 'average' => $average, 'records' => $total_reviews, 'page' => $page, 'total' => $total_pages, 'rows' => $reviews) ); $this->rest->sendResponse(200); } public function put() { //Allow to review only for logged in customers. if (!$this->customer->isLoggedWithToken( $this->request->get['token'] )) { $this->rest->setResponseData( array( 'error' => 'Login attempt failed!' ) ); $this->rest->sendResponse(401); return null; } } }