Keine Beschreibung
Du kannst nicht mehr als 25 Themen auswählen Themen müssen mit entweder einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

AjaxLogic.php 7.3KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203
  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\api\logic;
  14. use think\Model;
  15. use think\Db;
  16. /**
  17. * 逻辑定义
  18. * Class CatsLogic
  19. * @package api\Logic
  20. */
  21. class AjaxLogic extends Model
  22. {
  23. /**
  24. * 保存足迹
  25. */
  26. public function footprint_save($aid)
  27. {
  28. $users_id = (int)session('users_id');
  29. if (!empty($aid) && !empty($users_id)) {
  30. //查询标题模型缩略图信息
  31. $arc = Db::name('archives')
  32. ->field('aid,channel,typeid,title,litpic')
  33. ->find($aid);
  34. if (!empty($arc)) {
  35. $count = Db::name('users_footprint')->where([
  36. 'users_id' => $users_id,
  37. 'aid' => $aid,
  38. ])->count();
  39. if (empty($count)) {
  40. // 足迹记录条数限制
  41. $user_footprint_limit = config('global.user_footprint_limit');
  42. $user_footprint_record = Db::name('users_footprint')->where(['users_id'=>$users_id])->count("id");
  43. if ($user_footprint_record == $user_footprint_limit) {
  44. Db::name('users_footprint')->where(['users_id' => $users_id])->order("id ASC")->limit(1)->delete();
  45. }elseif ($user_footprint_record > $user_footprint_limit) {
  46. $del_count = $user_footprint_record-$user_footprint_limit+1;
  47. $del_ids = Db::name('users_footprint')->field("id")->where(['users_id' => $this->users_id])->order("id ASC")->limit($del_count)->select();
  48. $del_ids = get_arr_column($del_ids,'id');
  49. Db::name('users_footprint')->where(['id' => ['IN',$del_ids]])->delete();
  50. }
  51. $arc['users_id'] = $users_id;
  52. $arc['lang'] = get_home_lang();
  53. $arc['add_time'] = getTime();
  54. $arc['update_time'] = getTime();
  55. Db::name('users_footprint')->add($arc);
  56. } else {
  57. Db::name('users_footprint')->where([
  58. 'users_id' => $users_id,
  59. 'aid' => $aid
  60. ])->update([
  61. 'update_time' => getTime(),
  62. ]);
  63. }
  64. return true;
  65. }
  66. } else if (IS_AJAX && !empty($aid) && empty($users_id)) {
  67. return true;
  68. }
  69. return false;
  70. }
  71. /**
  72. * 检验会员登录
  73. */
  74. public function check_userinfo()
  75. {
  76. $users = [];
  77. $users_id = (int)session('users_id');
  78. if (!empty($users_id)) {
  79. $users = GetUsersLatestData($users_id);
  80. // 头像处理
  81. $head_pic = get_head_pic(htmlspecialchars_decode($users['head_pic']), false, $users['sex']);
  82. $users['head_pic'] = func_preg_replace(['http://thirdqq.qlogo.cn'], ['https://thirdqq.qlogo.cn'], $head_pic);
  83. // 注册时间转换时间日期格式
  84. $users['reg_time'] = MyDate('Y-m-d H:i:s', $users['reg_time']);
  85. // 购物车数量
  86. $users['cart_num'] = Db::name('shop_cart')->where(['users_id'=>$users_id])->sum('product_num');
  87. $data = [
  88. 'ey_is_login' => 1,
  89. 'root_dir' => ROOT_DIR,
  90. 'is_mobile' => intval($users['is_mobile']),
  91. ];
  92. }
  93. else {
  94. $data = [
  95. 'ey_is_login' => 0,
  96. 'ey_third_party_login' => $this->is_third_party_login(),
  97. 'ey_third_party_qqlogin' => $this->is_third_party_login('qq'),
  98. 'ey_third_party_wxlogin' => $this->is_third_party_login('wx'),
  99. 'ey_third_party_wblogin' => $this->is_third_party_login('wb'),
  100. 'ey_login_vertify' => $this->is_login_vertify(),
  101. ];
  102. }
  103. // 记录访问足迹
  104. $aid = input('param.aid/d');
  105. $this->footprint_save($aid);
  106. return ['users'=>$users, 'data'=>$data];
  107. }
  108. /**
  109. * 是否启用并开启第三方登录
  110. * @return boolean [description]
  111. */
  112. private function is_third_party_login($type = '')
  113. {
  114. static $result = null;
  115. if (null === $result) {
  116. $result = Db::name('weapp')->field('id,code,data')->where([
  117. 'code' => ['IN', ['QqLogin','WxLogin','Wblogin']],
  118. 'status' => 1,
  119. ])->getAllWithIndex('code');
  120. }
  121. $value = 0;
  122. if (empty($type)) {
  123. $qqlogin = 0;
  124. if (!empty($result['QqLogin']['data'])) {
  125. $qqData = unserialize($result['QqLogin']['data']);
  126. if (!empty($qqData['login_show'])) {
  127. $qqlogin = 1;
  128. }
  129. }
  130. $wxlogin = 0;
  131. if (!empty($result['WxLogin']['data'])) {
  132. $wxData = unserialize($result['WxLogin']['data']);
  133. if (!empty($wxData['login_show'])) {
  134. $wxlogin = 1;
  135. }
  136. }
  137. $wblogin = 0;
  138. if (!empty($result['Wblogin']['data'])) {
  139. $wbData = unserialize($result['Wblogin']['data']);
  140. if (!empty($wbData['login_show'])) {
  141. $wblogin = 1;
  142. }
  143. }
  144. if ($qqlogin == 1 || $wxlogin == 1 || $wblogin == 1) {
  145. $value = 1;
  146. }
  147. } else {
  148. if ('qq' == $type) {
  149. if (!empty($result['QqLogin']['data'])) {
  150. $qqData = unserialize($result['QqLogin']['data']);
  151. if (!empty($qqData['login_show'])) {
  152. $value = 1;
  153. }
  154. }
  155. } else if ('wx' == $type) {
  156. if (!empty($result['WxLogin']['data'])) {
  157. $wxData = unserialize($result['WxLogin']['data']);
  158. if (!empty($wxData['login_show'])) {
  159. $value = 1;
  160. }
  161. }
  162. } else if ('wb' == $type) {
  163. if (!empty($result['Wblogin']['data'])) {
  164. $wbData = unserialize($result['Wblogin']['data']);
  165. if (!empty($wbData['login_show'])) {
  166. $value = 1;
  167. }
  168. }
  169. }
  170. }
  171. return $value;
  172. }
  173. /**
  174. * 是否开启登录图形验证码
  175. * @return boolean [description]
  176. */
  177. private function is_login_vertify()
  178. {
  179. // 默认开启验证码
  180. $is_vertify = 1;
  181. $users_login_captcha = config('captcha.users_login');
  182. if (!function_exists('imagettftext') || empty($users_login_captcha['is_on'])) {
  183. $is_vertify = 0; // 函数不存在,不符合开启的条件
  184. }
  185. return $is_vertify;
  186. }
  187. }