No Description
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.

Base.php 9.1KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214
  1. <?php
  2. /**
  3. * 易优CMS
  4. * ============================================================================
  5. * 版权所有 2016-2028 海南赞赞网络科技有限公司,并保留所有权利。
  6. * 网站地址: http://www.eyoucms.com
  7. * ----------------------------------------------------------------------------
  8. * 如果商业用途务必到官方购买正版授权, 以免引起不必要的法律纠纷.
  9. * ============================================================================
  10. * Author: 小虎哥 <1105415366@qq.com>
  11. * Date: 2018-4-3
  12. */
  13. namespace app\user\controller;
  14. use think\Controller;
  15. use app\common\controller\Common;
  16. use think\Cookie;
  17. use think\Db;
  18. class Base extends Common {
  19. public $usersTplVersion = '';
  20. public $usersTpl2xVersion = '';
  21. /**
  22. * 初始化操作
  23. */
  24. public function _initialize() {
  25. parent::_initialize();
  26. $default_lang = config('ey_config.system_home_default_lang');
  27. if (!empty($default_lang) && $default_lang != 'cn'){
  28. $this->error("主体语言不是中文,不支持会员中心");
  29. }
  30. $assignName2 = $this->arrJoinStr(['cGhwX3Nlcn','ZpY2VtZWFs']);
  31. $assignValue2 = tpCache('php.'.$assignName2);
  32. $this->assign($assignName2, $assignValue2);
  33. $this->usersTplVersion = getUsersTplVersion();
  34. $this->assign('usersTplVersion', $this->usersTplVersion);
  35. $this->usersTpl2xVersion = getUsersTpl2xVersion();
  36. $this->assign('usersTpl2xVersion', $this->usersTpl2xVersion);
  37. $users_id = session('users_id');
  38. if (!empty($users_id)) {
  39. $users = GetUsersLatestData($users_id);
  40. if (empty($users)) {
  41. session('users_id', null);
  42. session('users', null);
  43. cookie('users_id', null);
  44. $this->redirect('user/Users/login');
  45. }
  46. $users_lock_model = config('global.users_lock_model');
  47. $users_lock_model_msg = !empty($users_lock_model[$users['is_lock']]) ? $users_lock_model[$users['is_lock']]['msg'] : '';
  48. $users_lock_model_name = !empty($users_lock_model[$users['is_lock']]) ? $users_lock_model[$users['is_lock']]['name'] : '正常用户';
  49. if (0 > $users['is_lock'] && IS_POST) {
  50. $this->error($users_lock_model_msg);
  51. }
  52. $users['lock_model_name'] = $users_lock_model_name;
  53. $this->users = $users;
  54. $this->users_id = $users['users_id'];
  55. $this->assign('users', $users);
  56. $this->assign('users_id', $this->users_id);
  57. $this->assign('nickname', !empty($this->users['nickname']) ? $this->users['nickname'] : $this->users['username']);
  58. } else {
  59. //过滤不需要登陆的行为
  60. $ctl_all = CONTROLLER_NAME.'@*';
  61. $ctl_act = CONTROLLER_NAME.'@'.ACTION_NAME;
  62. $filter_login_action = config('filter_login_action');
  63. if ('v3' == $this->usersTplVersion && $this->is_mobile) {
  64. $filter_login_action[] = 'Users@index';
  65. }
  66. $dealerParam = input('param.dealerParam/s', '');
  67. if (!empty($dealerParam)) {
  68. cookie('dealerParam', null);
  69. session('dealerParam', null);
  70. cookie('dealerParam', $dealerParam);
  71. session('dealerParam', $dealerParam);
  72. $filter_login_action[] = 'Users@index';
  73. }
  74. if (!in_array($ctl_act, $filter_login_action) && !in_array($ctl_all, $filter_login_action)) {
  75. $resource = input('param.resource/s');
  76. if ('Uploadify@*' == $ctl_all) {
  77. // 注册时上传图片不验证登录行为
  78. $is_uploads = Db::name('users_parameter')->where(['dtype'=>['IN',['file','img','imgs']],'is_hidden'=>0, 'is_reg'=>1])->count();
  79. $resource = empty($is_uploads) ? '' : $resource;
  80. }
  81. if ('Uploadify@*' == $ctl_all && 'reg' == $resource) {
  82. } else {
  83. if (IS_AJAX) {
  84. $this->error('请先登录!', null, ['url'=>url('user/Users/login')]);
  85. } else {
  86. if (isWeixin()) {
  87. //微信端
  88. $this->redirect(url('user/Users/users_select_login', ['is_ajax'=>0]));
  89. } else {
  90. // 其他端
  91. $this->redirect('user/Users/login');
  92. }
  93. }
  94. }
  95. }
  96. }
  97. // 订单超过 get_shop_order_validity 设定的时间,则修改订单为已取消状态,无需返回数据
  98. // if ('v3' == $this->usersTplVersion) model('Shop')->UpdateShopOrderData($this->users_id);
  99. // 会员功能是否开启
  100. $logut_redirect_url = '';
  101. $logut_redirect_url_test = "";
  102. $web_users_switch = tpCache('web.web_users_switch');
  103. if (empty($web_users_switch) || isset($this->usersConfig['users_open_register']) && $this->usersConfig['users_open_register'] == 1) {
  104. // 前台会员中心已关闭
  105. $logut_redirect_url = ROOT_DIR.'/';
  106. $logut_redirect_url_test = "会员中心已关闭";
  107. } else if (session('?users_id') && empty($this->users)) {
  108. // 登录的会员被后台删除,立马退出会员中心
  109. $logut_redirect_url = url('user/Users/centre');
  110. $logut_redirect_url_test = "会员不存在";
  111. }
  112. // 是否开启会员注册功能
  113. if (isset($this->usersConfig['users_open_reg']) && $this->usersConfig['users_open_reg'] == 1 && 'reg' == request()->action()) {
  114. $logut_redirect_url = ROOT_DIR.'/';
  115. $logut_redirect_url_test = "会员注册功能已关闭";
  116. }
  117. if (!empty($logut_redirect_url)) {
  118. // 清理session并回到首页
  119. session('users_id', null);
  120. session('users', null);
  121. cookie('users_id', null);
  122. $this->error($logut_redirect_url_test, $logut_redirect_url);
  123. //$this->redirect($logut_redirect_url);
  124. }
  125. // --end
  126. // 是否为手机端,1手机端,2其他端
  127. $this->assign('is_mobile', isMobile() ? 1 : 2);
  128. // 是否为端微信,1微信端,2其他端
  129. $this->assign('is_wechat', isWeixin() ? 1 : 2);
  130. // 是否为微信端小程序,1在微信小程序中,0不在微信小程序中
  131. $this->assign('is_wechat_applets', isWeixinApplets() ? 1 : 0);
  132. // 站内消息
  133. if ($this->usersTplVersion != 'v1' && !empty($this->users_id)) {
  134. // 从notice表里同步新的数据到notice_read表
  135. $this->update_notice_data();
  136. // 查询会员站内通知数据
  137. $where = [
  138. 'is_del' => 0,
  139. 'lang' => $this->home_lang,
  140. 'users_id' => $this->users_id,
  141. ];
  142. $usersNoticeNum = Db::name('users_notice_read')->field('id, is_read')->where($where)->select();
  143. $result = [
  144. // 未读消息数
  145. 'unread_num' => 0,
  146. // 总消息数
  147. 'allNotice_num' => 0,
  148. ];
  149. foreach ($usersNoticeNum as $key => $value) {
  150. $result['allNotice_num']++;
  151. if (0 === intval($value['is_read'])) $result['unread_num']++;
  152. }
  153. $this->assign($result);
  154. }
  155. //积分名称
  156. $score_name = getUsersConfigData('score.score_name');
  157. $score_name = $score_name?:'积分';
  158. $this->assign('score_name',$score_name);
  159. // 子目录
  160. $this->assign('RootDir', ROOT_DIR);
  161. $this->assign('eyou', $this->eyou);
  162. // 订单预处理 (自动关闭未付款订单 发货后自动确认收货 收货后超过维权时间则关闭维权入口 消费赠送)
  163. if (!empty($this->users_id)) {
  164. // 调用传参
  165. // users_id 会员ID,传入则处理指定会员的订单数据,为空则处理所有会员订单数据
  166. // usersConfig 配置信息,为空则在后续处理中自动查询
  167. model('OrderPreHandle')->eyou_shopOrderPreHandle($this->users_id, $this->usersConfig);
  168. }
  169. }
  170. // 从notice表里同步新的数据到notice_read表
  171. public function update_notice_data()
  172. {
  173. //查接收消息通知的会员id
  174. $users_id = $this->users_id;
  175. $last_read_notice_id = Db::name('users_notice_read')
  176. ->where(['users_id'=>$users_id])
  177. ->max("notice_id");
  178. $no_add_data = Db::name('users_notice')
  179. ->field("id as notice_id,lang,add_time,update_time")
  180. ->where("users_id = '' OR users_id = '{$users_id}' OR FIND_IN_SET('{$users_id}', users_id)")
  181. ->where(['id'=>['GT',$last_read_notice_id]])
  182. ->order("id ASC")
  183. ->select();
  184. if (!empty($no_add_data)) {
  185. foreach ($no_add_data as $k=>$v) {
  186. $no_add_data[$k]['users_id'] = $users_id;
  187. }
  188. Db::name('users_notice_read')->insertAll($no_add_data);
  189. }
  190. }
  191. }