截流自动化的商城平台
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.

UserLogic.php 5.2KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131
  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\setting;
  20. use app\common\basics\Logic;
  21. use app\common\server\ConfigServer;
  22. use app\common\server\FileServer;
  23. use app\common\server\UrlServer;
  24. use think\facade\Db;
  25. /**
  26. * 用户设置逻辑层
  27. * Class UserLogic
  28. * @package app\admin\logic\setting
  29. */
  30. class UserLogic extends Logic
  31. {
  32. /**
  33. * @notes 获取用户配置
  34. * @return array
  35. * @author Tab
  36. * @date 2021/9/1 10:07
  37. */
  38. public static function getConfig()
  39. {
  40. $config = [
  41. // 邀请下级 0-关闭 1-开启(默认)
  42. 'is_open' => ConfigServer::get('invite', 'is_open', 1),
  43. // 邀请下级资格 1-全部用户(默认) 2-分销会员
  44. 'qualifications' => ConfigServer::get('invite', 'qualifications', [1]),
  45. // 成为下级条件 1-邀请码(默认)
  46. 'condition' => ConfigServer::get('invite', 'condition', 1),
  47. // 自定义邀请海报
  48. 'poster' => ConfigServer::get('invite', 'poster', '/images/share/share_user_bg.png'),
  49. //指定会员
  50. 'invite_appoint_user' => ConfigServer::get('invite', 'invite_appoint_user', []),
  51. ];
  52. $config['poster'] = empty($config['poster']) ? $config['poster'] : UrlServer::getFileUrl($config['poster']);
  53. return $config;
  54. }
  55. /**
  56. * @notes 用户设置
  57. * @param $params
  58. * @throws \think\db\exception\DataNotFoundException
  59. * @throws \think\db\exception\DbException
  60. * @throws \think\db\exception\ModelNotFoundException
  61. * @author Tab
  62. * @date 2021/9/1 10:33
  63. */
  64. public static function set($params)
  65. {
  66. try {
  67. if(!isset($params['poster'])) {
  68. throw new \Exception('请选择自定义海报');
  69. }
  70. if(!isset($params['qualifications'])) {
  71. throw new \Exception('请至少选择一种分销资格');
  72. }
  73. //兼容以前版本,保存数据格式
  74. $params['qualifications'] = [$params['qualifications']];
  75. if(count($params['qualifications']) >= 2){
  76. throw new \Exception('分销资格只能选择一种');
  77. }
  78. $allowFields = ['is_open', 'qualifications', 'condition', 'poster','invite_appoint_user'];
  79. if(in_array(2,$params['qualifications'])){
  80. if(!isset($params['invite_appoint_user']) || empty($params['invite_appoint_user'])){
  81. throw new \Exception('请选择指定会员等级');
  82. }
  83. $user_level = self::getUserLevel();
  84. $user_level = array_column($user_level,'id');
  85. $ids = [];
  86. foreach ($params['invite_appoint_user'] as $id =>$val) {
  87. if(!in_array($id,$user_level)){
  88. throw new \Exception('用户等级错误,请刷新页面');
  89. }
  90. $ids[] = $id;
  91. }
  92. $params['invite_appoint_user'] = $ids;
  93. }else{
  94. $params['invite_appoint_user'] = [];
  95. }
  96. foreach ($allowFields as $field) {
  97. if(isset($params[$field])) {
  98. $params[$field] = is_array($params[$field]) ? json_encode($params[$field], JSON_UNESCAPED_UNICODE) : $params[$field];
  99. $params[$field] = $field == 'poster' ? UrlServer::setFileUrl($params[$field]) : $params[$field];
  100. ConfigServer::set('invite', $field, $params[$field]);
  101. }
  102. }
  103. return true;
  104. } catch (\Exception $e) {
  105. self::$error = $e->getMessage();
  106. return false;
  107. }
  108. }
  109. /**
  110. * @notes
  111. * @return \think\Collection
  112. * @throws \think\db\exception\DataNotFoundException
  113. * @throws \think\db\exception\DbException
  114. * @throws \think\db\exception\ModelNotFoundException
  115. * @author cjhao
  116. * @date 2022/2/28 10:34
  117. */
  118. public static function getUserLevel(){
  119. $user_level = Db::name('user_level')
  120. ->where(['del'=>0])
  121. ->field('id,name')
  122. ->select()->toArray();
  123. return $user_level;
  124. }
  125. }