截流自动化的商城平台
Ви не можете вибрати більше 25 тем Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | likeshop开源商城系统
  4. // +----------------------------------------------------------------------
  5. // | 欢迎阅读学习系统程序代码,建议反馈是我们前进的动力
  6. // | gitee下载:https://gitee.com/likeshop_gitee
  7. // | github下载:https://github.com/likeshop-github
  8. // | 访问官网:https://www.likeshop.cn
  9. // | 访问社区:https://home.likeshop.cn
  10. // | 访问手册:http://doc.likeshop.cn
  11. // | 微信公众号:likeshop技术社区
  12. // | likeshop系列产品在gitee、github等公开渠道开源版本可免费商用,未经许可不能去除前后端官方版权标识
  13. // | likeshop系列产品收费版本务必购买商业授权,购买去版权授权后,方可去除前后端官方版权标识
  14. // | 禁止对系统程序代码以任何目的,任何形式的再发布
  15. // | likeshop团队版权所有并拥有最终解释权
  16. // +----------------------------------------------------------------------
  17. // | author: likeshop.cn.team
  18. // +----------------------------------------------------------------------
  19. namespace app\shop\controller;
  20. use app\common\basics\ShopBase;
  21. use app\common\model\shop\ShopRole;
  22. use app\common\server\ConfigServer;
  23. use app\common\server\JsonServer;
  24. use app\shop\logic\content\ClosureCategoryLogic;
  25. use app\shop\logic\content\EquiCategoryLogic;
  26. use app\shop\logic\content\ClosureLogic;
  27. use app\shop\logic\content\IndustryCategoryLogic;
  28. use app\shop\logic\index\StatLogic;
  29. use app\shop\server\MenuServer;
  30. use think\facade\Config;
  31. class Index extends ShopBase
  32. {
  33. /**
  34. * 后台前端全局界面
  35. * @return mixed
  36. */
  37. public function index()
  38. {
  39. return view('', [
  40. 'config' => [
  41. 'name' => ConfigServer::get('website', 'name'),
  42. 'web_favicon' => ConfigServer::get('website', 'web_favicon'),
  43. 'backstage_logo' => ConfigServer::get('website_shop', 'shop_admin_logo'),//主页左上角logo
  44. ],
  45. 'menu' => MenuServer::getMenuTree($this->shop['role_id']), // 菜单渲染
  46. 'view_app_trace' => Config::get('app.app_trace'), // 开启右上角前端示例
  47. 'admin_name' => $this->shop['name'],//管理员名称
  48. 'shop_name' => $this->shop_name,//门店名称
  49. 'role_name' => (new ShopRole())->getRoleName($this->shop['role_id']), // 角色名称
  50. ]);
  51. }
  52. /**
  53. * 工作台
  54. * @return mixed
  55. */
  56. public function stat()
  57. {
  58. if($this->request->isAjax()){
  59. return JsonServer::success('', StatLogic::graphData($this->shop_id));
  60. }
  61. /*
  62. * 判断站点是否存在
  63. */
  64. $url = "http://localhost";
  65. $res = file_get_contents($url);
  66. //dump($res);
  67. $is_inPage = 1;
  68. if (strpos($res,"没有找到站点") !== false) {
  69. $is_inPage = 0;
  70. }
  71. /*
  72. * 执行初始化操作
  73. */
  74. //行业分类
  75. $shop_id = $this->shop_id;
  76. IndustryCategoryLogic::insertDefault($shop_id);
  77. //应用分类
  78. ClosureCategoryLogic::insertDefault($shop_id);
  79. //初始化一个默认配置
  80. ClosureLogic::insertDefault($shop_id);
  81. //初始化设备
  82. EquiCategoryLogic::insertDefault($shop_id);
  83. return view('', [
  84. 'res' => StatLogic::stat($this->shop_id),
  85. "is_in_page" => $is_inPage,
  86. ]);
  87. }
  88. /**
  89. * 检测网址连接是否可用
  90. **/
  91. public function check_url($url){
  92. $httpcode = 0;
  93. $ch = curl_init();
  94. $timeout = 1; // 设置超时的时间[单位:秒]
  95. curl_setopt($ch,CURLOPT_FOLLOWLOCATION,1);
  96. curl_setopt($ch,CURLOPT_RETURNTRANSFER,1);
  97. curl_setopt($ch, CURLOPT_HEADER, 1);
  98. curl_setopt ($ch, CURLOPT_CONNECTTIMEOUT, $timeout);
  99. curl_setopt($ch,CURLOPT_URL,$url);
  100. curl_exec($ch);
  101. # 获取状态码赋值
  102. $httpcode = curl_getinfo($ch,CURLINFO_HTTP_CODE);
  103. curl_close($ch);
  104. if($httpcode == 200){
  105. return true;
  106. }else{
  107. return false;
  108. }
  109. }
  110. /**
  111. * 工作台商品数据
  112. * @return mixed
  113. */
  114. public function shop()
  115. {
  116. if ($this->request->isAjax()) {
  117. $get = $this->request->get();
  118. return JsonServer::success('', StatLogic::goodsLists($get,$this->shop_id));
  119. }
  120. }
  121. }