From 56c4a57ef17bcc0be48a957d8c839a2527f441f2 Mon Sep 17 00:00:00 2001 From: gongfuxiang Date: Wed, 22 Jun 2022 22:14:06 +0800 Subject: [PATCH] del --- app/hljapi/config/route.php | 19 --- app/hljapi/controller/AccessToken.php | 39 ------ app/hljapi/controller/Common.php | 170 -------------------------- app/hljapi/controller/Order.php | 95 -------------- app/hljapi/controller/Product.php | 95 -------------- app/hljapi/index.html | 0 6 files changed, 418 deletions(-) delete mode 100644 app/hljapi/config/route.php delete mode 100644 app/hljapi/controller/AccessToken.php delete mode 100644 app/hljapi/controller/Common.php delete mode 100644 app/hljapi/controller/Order.php delete mode 100644 app/hljapi/controller/Product.php delete mode 100644 app/hljapi/index.html diff --git a/app/hljapi/config/route.php b/app/hljapi/config/route.php deleted file mode 100644 index e7b10631f..000000000 --- a/app/hljapi/config/route.php +++ /dev/null @@ -1,19 +0,0 @@ - MyFileConfig('home_seo_url_html_suffix', '', 'html', true), -]; -?> \ No newline at end of file diff --git a/app/hljapi/controller/AccessToken.php b/app/hljapi/controller/AccessToken.php deleted file mode 100644 index 9f5f11c5b..000000000 --- a/app/hljapi/controller/AccessToken.php +++ /dev/null @@ -1,39 +0,0 @@ -GetClassVars()); - return ApiService::ApiDataReturn($ret['data']); - } -} -?> \ No newline at end of file diff --git a/app/hljapi/controller/Common.php b/app/hljapi/controller/Common.php deleted file mode 100644 index 0baac3216..000000000 --- a/app/hljapi/controller/Common.php +++ /dev/null @@ -1,170 +0,0 @@ -data_post = input('post.'); - $this->data_get = input('get.'); - $this->data_request = input(); - - // 系统运行开始 - SystemService::SystemBegin($this->data_request); - - // 系统初始化 - $this->SystemInit(); - - // 公共数据初始化 - $this->CommonInit(); - } - - /** - * 析构函数 - * @author Devil - * @blog http://gong.gg/ - * @version 1.0.0 - * @date 2019-03-18 - * @desc description - */ - public function __destruct() - { - // 系统运行结束 - SystemService::SystemEnd($this->data_request); - } - - /** - * 系统初始化 - * @author Devil - * @blog http://gong.gg/ - * @version 1.0.0 - * @date 2018-12-07 - * @desc description - */ - private function SystemInit() - { - // 配置信息初始化 - ConfigService::ConfigInit(); - } - - /** - * 公共数据初始化 - * @author Devil - * @blog http://gong.gg/ - * @version 0.0.1 - * @datetime 2017-03-09T11:43:48+0800 - */ - private function CommonInit() - { - // 当前系统操作名称 - $this->module_name = RequestModule(); - $this->controller_name = RequestController(); - $this->action_name = RequestAction(); - - // 当前插件操作名称, 兼容插件模块名称 - if(empty($this->data_request['pluginsname'])) - { - $this->plugins_module_name = ''; - $this->plugins_controller_name = ''; - $this->plugins_action_name = ''; - } else { - $this->plugins_module_name = $this->data_request['pluginsname']; - $this->plugins_controller_name = empty($this->data_request['pluginscontrol']) ? 'index' : $this->data_request['pluginscontrol']; - $this->plugins_action_name = empty($this->data_request['pluginsaction']) ? 'index' : $this->data_request['pluginsaction']; - } - - // 分页信息 - $this->page = max(1, isset($this->data_request['page']) ? intval($this->data_request['page']) : 1); - $this->page_size = 10; - } - - /** - * 空方法响应 - * @author Devil - * @blog http://gong.gg/ - * @version 1.0.0 - * @date 2018-11-30 - * @desc description - * @param [string] $method [方法名称] - * @param [array] $args [参数] - */ - public function __call($method, $args) - { - return ApiService::ApiDataReturn('{"success":false,"resultMsg":"'.$method.'非法访问'.'","resultCode":"07","result":""}'); - } - - /** - * 获取类属性数据 - * @author Devil - * @blog http://gong.gg/ - * @version 1.0.0 - * @date 2020-06-07 - * @desc description - */ - public function GetClassVars() - { - $data = []; - $vers = get_class_vars(get_class()); - foreach($vers as $k=>$v) - { - if(property_exists($this, $k)) - { - $data[$k] = $this->$k; - } - } - return $data; - } -} -?> \ No newline at end of file diff --git a/app/hljapi/controller/Order.php b/app/hljapi/controller/Order.php deleted file mode 100644 index 5889ee643..000000000 --- a/app/hljapi/controller/Order.php +++ /dev/null @@ -1,95 +0,0 @@ -GetClassVars()); - return ApiService::ApiDataReturn($ret['data']); - } - - /** - * 确认预占订单 - * @author Devil - * @blog http://gong.gg/ - * @version 1.0.0 - * @date 2020-01-02 - * @desc description - */ - public function confirmPreOrder() - { - $ret = PluginsService::PluginsControlCall('govpurheilongjiang', 'order', 'confirm', 'api', $this->GetClassVars()); - return ApiService::ApiDataReturn($ret['data']); - } - - /** - * 取消预占订单 - * @author Devil - * @blog http://gong.gg/ - * @version 1.0.0 - * @date 2020-01-02 - * @desc description - */ - public function cancelPreOrder() - { - $ret = PluginsService::PluginsControlCall('govpurheilongjiang', 'order', 'cancel', 'api', $this->GetClassVars()); - return ApiService::ApiDataReturn($ret['data']); - } - - /** - * 确认收货 - * @author Devil - * @blog http://gong.gg/ - * @version 1.0.0 - * @date 2020-01-02 - * @desc description - */ - public function confirmReceipt() - { - $ret = PluginsService::PluginsControlCall('govpurheilongjiang', 'order', 'collect', 'api', $this->GetClassVars()); - return ApiService::ApiDataReturn($ret['data']); - } - - /** - * 订单物流查询 - * @author Devil - * @blog http://gong.gg/ - * @version 1.0.0 - * @date 2020-01-02 - * @desc description - */ - public function getOrderLogisticsInfo() - { - $ret = PluginsService::PluginsControlCall('govpurheilongjiang', 'order', 'express', 'api', $this->GetClassVars()); - return ApiService::ApiDataReturn($ret['data']); - } -} -?> \ No newline at end of file diff --git a/app/hljapi/controller/Product.php b/app/hljapi/controller/Product.php deleted file mode 100644 index 4137dd7ed..000000000 --- a/app/hljapi/controller/Product.php +++ /dev/null @@ -1,95 +0,0 @@ -GetClassVars()); - return ApiService::ApiDataReturn($ret['data']); - } - - /** - * 商品库存查询 - * @author Devil - * @blog http://gong.gg/ - * @version 1.0.0 - * @date 2020-01-02 - * @desc description - */ - public function getStock() - { - $ret = PluginsService::PluginsControlCall('govpurheilongjiang', 'goods', 'inventory', 'api', $this->GetClassVars()); - return ApiService::ApiDataReturn($ret['data']); - } - - /** - * 商品可售查询 - * @author Devil - * @blog http://gong.gg/ - * @version 1.0.0 - * @date 2020-01-02 - * @desc description - */ - public function saleCheck() - { - $ret = PluginsService::PluginsControlCall('govpurheilongjiang', 'goods', 'issales', 'api', $this->GetClassVars()); - return ApiService::ApiDataReturn($ret['data']); - } - - /** - * 商品上下架通知 - * @author Devil - * @blog http://gong.gg/ - * @version 1.0.0 - * @date 2020-01-02 - * @desc description - */ - public function shelfUpdateNotice() - { - $ret = PluginsService::PluginsControlCall('govpurheilongjiang', 'goods', 'shelves', 'api', $this->GetClassVars()); - return ApiService::ApiDataReturn($ret['data']); - } - - /** - * 商品是否支持货到付款 - * @author Devil - * @blog http://gong.gg/ - * @version 1.0.0 - * @date 2020-01-02 - * @desc description - */ - public function checkIsCod() - { - $ret = PluginsService::PluginsControlCall('govpurheilongjiang', 'goods', 'iscod', 'api', $this->GetClassVars()); - return ApiService::ApiDataReturn($ret['data']); - } -} -?> \ No newline at end of file diff --git a/app/hljapi/index.html b/app/hljapi/index.html deleted file mode 100644 index e69de29bb..000000000