Opencart Rest API generation

Deadly 提交于 2019-12-12 18:13:36

问题


I tried to generate Rest Api of my whole categories, products and all others to use it into my mobile application but I can't get any solution. Can anyone tell me that in opencart 3.0.2.0, otherwise if opencart can't give this solution then give me other framework by which I can easily create APIs for my data?


回答1:


this worked out for me

I made a custom controller in the OpenCart api folder

<?php
class ControllerApiAllproducts extends Controller {
    private $error = array();

   public function index()
   {
        $products = array();
        $this->load->language('catalog/product');
        $this->load->model('catalog/product');
        $this->load->model('api/product');
        $this->load->model('tool/image');

        $error[]['no_json']= "No JSON";

        // preg_match("/[^\/]+$/", $_SERVER['REQUEST_URI'], $matches);
       //    $last_word = $matches[0];
        $product_total = $this->model_catalog_product->getTotalProducts();

        $results = $this->model_catalog_product->getProducts();

        foreach ($results as $result) {
            if (is_file(DIR_IMAGE . $result['image'])) {
                $image = $this->model_tool_image->resize($result['image'], 40, 40);
            } else {
                $image = $this->model_tool_image->resize('no_image.png', 40, 40);
            }

            $special = false;

            $product_specials = $this->model_api_product->getProductSpecials($result['product_id']);

            foreach ($product_specials  as $product_special) {
                if (($product_special['date_start'] == '0000-00-00' || strtotime($product_special['date_start']) < time()) && ($product_special['date_end'] == '0000-00-00' || strtotime($product_special['date_end']) > time())) {
                    $special = $product_special['price'];

                    break;
                }
            }

            $shop_products['shop_products'][] = array(
                'product_id' => $result['product_id'],
                'image'      => $image,
                'name'       => $result['name'],
                'model'      => $result['model'],
                'price'      => $result['price'],
                'special'    => $special,
                'quantity'   => $result['quantity'],
                'status'     => $result['status']
            );
        }


        if (isset($this->request->get['json'])) {
            echo json_encode($shop_products);
            die;
        } else {
            $this->response->setOutput(json_encode($error));
        }  
   }

   public function product()
   {

    $this->load->language('catalog/product');
    $this->load->model('catalog/product');
    $this->load->model('api/product');
    $this->load->model('tool/image');

     $product_details = array();
     $error['fail'] = 'Failed';
    if (isset($this->request->get['product_id'])) {
         //$product_details['product_id'] = $this->request->get['product_id'];
         $product_details = $this->model_catalog_product->getProduct($this->request->get['product_id']);

            echo json_encode($product_details);
            die;
        } else {
            $this->response->setOutput(json_encode($error));
        }
   }

   public function categories()
   { 
      $shop_categories = array();
      $this->load->model('catalog/category');


       $error['fail'] = 'Failed';
    if (isset($this->request->get['json'])) {
         $shop_categories =$this->model_catalog_category->getCategories();
            echo json_encode($shop_categories);
            die;
        } else {
            $this->response->setOutput(json_encode($error));
        }
   }
}

Get the categories http://yourdomain/index.php?route=api/allproducts/categories&json

Get all the products http://yourdomain/index.php?route=api/allproducts&json



来源:https://stackoverflow.com/questions/46756937/opencart-rest-api-generation

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!