123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109 |
- <?php
- /**
- * Index.php
- * Niushop商城系统 - 团队十年电商经验汇集巨献!
- * =========================================================
- * Copy right 2015-2025 山西牛酷信息科技有限公司, 保留所有权利。
- * ----------------------------------------------
- * 官方网址: http://www.niushop.com.cn
- * 这不是一个自由软件!您只能在不用于商业目的的前提下对程序代码进行修改和使用。
- * 任何企业和个人不允许对程序代码以任何形式任何目的再发布。
- * =========================================================
- * @author : niuteam
- * @date : 2015.1.17
- * @version : v1.0.0.0
- */
- namespace app\api\controller;
- use app\model\shop\Shop as ShopModel;
- use app\model\web\WebSite;
- class Shop extends BaseApi
- {
-
- /**
- * 基础信息
- */
- public function info()
- {
- $site_id = isset($this->params['site_id']) ? $this->params['site_id'] : 0;
- if (empty($site_id)) {
- return $this->response($this->error('', 'REQUEST_SITE_ID'));
- }
- $shop = new ShopModel();
- $field = 'site_id,expire_time,site_name,website_id,is_own,level_name,category_name,shop_status,start_time,logo,avatar,banner,
- seo_description,qq,ww,telephone,shop_desccredit,shop_servicecredit,shop_deliverycredit,workingtime,shop_baozh,shop_baozhopen,shop_baozhrmb,
- shop_qtian,shop_zhping,shop_erxiaoshi,shop_tuihuo,shop_shiyong,shop_shiti,shop_xiaoxie,shop_free_time,shop_sales,shop_adv,work_week,address,full_address,longitude,latitude,sub_num';
- $info = $shop->getShopInfo([ [ 'site_id', '=', $site_id ] ], $field);
- return $this->response($info);
- }
-
- public function page()
- {
- $page = isset($this->params['page']) ? $this->params['page'] : 1;
- $page_size = isset($this->params['page_size']) ? $this->params['page_size'] : PAGE_LIST_ROWS;
- $keyword = isset($this->params['keyword']) ? $this->params['keyword'] : '';//关键词
- $order = isset($this->params['order']) ? $this->params['order'] : "site_id";//排序(综合、销量、信用)
- $sort = isset($this->params['sort']) ? $this->params['sort'] : "desc";//升序、降序
- $web_city = isset($this->params['web_city']) ? $this->params['web_city'] : "";
- $lat = isset($this->params['lat']) ? $this->params['lat'] : ""; // 纬度
- $lng = isset($this->params['lng']) ? $this->params['lng'] : ""; // 经度
-
- $shop = new ShopModel();
- $condition = [
- [ 'shop_status', '=', 1 ],
- [ 'cert_id', '<>', 0 ]
- ];
-
- if (!empty($keyword)) {
- $condition[] = [ 'site_name', 'like', '%' . $keyword . '%' ];
- }
-
- // 非法参数进行过滤
- if ($sort != "desc" && $sort != "asc") {
- $sort = "";
- }
-
- // 非法参数进行过滤
- if ($order != '') {
- if ($order != "shop_sales" && $order != "shop_desccredit") {
- $order = 'site_id';
- }
- $order_by = $order . ' ' . $sort;
- } else {
- $order_by = 'is_recommend desc,sort desc,site_id desc';
- }
-
- // 查询是否存在城市分站
- if (addon_is_exit('city') && !empty($web_city)) {
- $website_model = new WebSite();
- $website_info = $website_model->getWebSite([ [ 'site_area_id', '=', $web_city ] ], 'site_id');
- if (!empty($website_info['data'])) {
- $order_by = "INSTR('{$website_info['data']['site_id']}', website_id) desc," . $order_by;
- }
- }
- $list = $shop->getShopPageList($condition, $page, $page_size, $order_by, 'site_id,site_name,category_name,group_name,logo,avatar,banner,seo_description,shop_desccredit,shop_servicecredit,shop_deliverycredit,shop_sales,sub_num,is_own,longitude,latitude,telephone,address,full_address');
-
- if (!empty($list['data']['list'])) {
- foreach ($list['data']['list'] as $k => $item) {
- if ($item['longitude'] && $item['latitude'] && $lng && $lat) {
- $list['data']['list'][ $k ]['distance'] = round(getDistance((float) $item['longitude'], (float) $item['latitude'], (float) $lng, (float) $lat));
- } else {
- $list['data']['list'][ $k ]['distance'] = 0;
- }
- }
- }
-
- return $this->response($list);
- }
-
- /**
- * 是否显示店铺相关功能,用于审核小程序
- */
- public function isShow()
- {
- $res = 1;// 0 隐藏,1 显示
- return $this->response($this->success($res));
- }
- }
|