截流自动化的商城平台
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

HfiveLogic.php 3.2KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  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\admin\logic\wechat;
  20. use app\common\basics\Logic;
  21. use app\common\server\ConfigServer;
  22. use think\facade\Env;
  23. class HfiveLogic extends Logic
  24. {
  25. /**
  26. * 获取H5商城设置
  27. */
  28. public static function getConfig()
  29. {
  30. $config = [
  31. 'is_open' => ConfigServer::get('h5', 'is_open', 1),
  32. 'page' => ConfigServer::get('h5', 'page', 1),
  33. 'page_url' => ConfigServer::get('h5', 'page_url', ''),
  34. 'h5_url' => request()->domain() . '/mobile'
  35. ];
  36. return $config;
  37. }
  38. /**
  39. * H5商城设置
  40. */
  41. public static function set($params)
  42. {
  43. ConfigServer::set('h5', 'is_open', $params['is_open']);
  44. ConfigServer::set('h5', 'page', $params['page']);
  45. ConfigServer::set('h5', 'page_url', $params['page_url']);
  46. // 恢复原入口
  47. if(file_exists('./mobile/index_lock.html')) {
  48. // 存在则原商城入口被修改过,先清除修改后的入口
  49. unlink('./mobile/index.html');
  50. // 恢复原入口
  51. rename('./mobile/index_lock.html', './mobile/index.html');
  52. // 删除旧的缓存文件
  53. array_map('unlink', glob('../runtime/index/temp/'.'*.php'));
  54. }
  55. // H5商城关闭 且 显示空白页
  56. if($params['is_open'] == 0 && $params['page'] == 1) {
  57. // 变更文件名
  58. rename('./mobile/index.html', './mobile/index_lock.html');
  59. // 创建新空白文件
  60. $newfile = fopen('./mobile/index.html', 'w');
  61. fclose($newfile);
  62. }
  63. // H5商城关闭 且 跳转指定页
  64. if($params['is_open'] == 0 && $params['page'] == 2 && !empty($params['page_url'])) {
  65. // 变更文件名
  66. rename('./mobile/index.html', './mobile/index_lock.html');
  67. // 创建重定向文件
  68. $newfile = fopen('./mobile/index.html', 'w');
  69. $content = '<script>window.location.href = "' . $params['page_url'] . '";</script>';
  70. fwrite($newfile, $content);
  71. fclose($newfile);
  72. }
  73. }
  74. }