Nav apraksta
Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

User.php 50KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298
  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\model\v1;
  14. use think\Db;
  15. use think\Cache;
  16. /**
  17. * 微信小程序个人中心模型
  18. */
  19. load_trait('controller/Jump');
  20. class User extends UserBase
  21. {
  22. use \traits\controller\Jump;
  23. private $token;
  24. //初始化
  25. protected function initialize()
  26. {
  27. // 需要调用`Model`的`initialize`方法
  28. parent::initialize();
  29. }
  30. /**
  31. * 获取用户信息
  32. * @return null|static
  33. * @throws \think\exception\DbException
  34. */
  35. public function getUser()
  36. {
  37. if (empty($this->session)) return false;
  38. $where = [
  39. 'openid' => $this->session['openid'],
  40. 'users_id' => intval($this->session['users_id'])
  41. ];
  42. $users_id = Db::name('wx_users')->where($where)->getField('users_id');
  43. if (empty($users_id)) {
  44. return false;
  45. } else {
  46. $result = GetUsersLatestData($users_id);
  47. $result['head_pic'] = handle_subdir_pic($result['head_pic'], 'img', true);
  48. $address_default = []; // 默认收货地址
  49. $address = Db::name('shop_address')->where(['users_id' => $users_id])->order('is_default desc')->select(); // 收货地址列表
  50. if (!empty($address)) {
  51. foreach ($address as $key => $val) {
  52. if ($val['is_default'] == 1) {
  53. $address_default = $val;
  54. continue;
  55. }
  56. }
  57. }
  58. $result['address_1588820149'] = !empty($address) ? $address : [];
  59. $result['address_default_1588820149'] = $address_default;
  60. }
  61. return $result;
  62. }
  63. /**
  64. * 用户登录
  65. * @param array $post
  66. * @return string
  67. * @throws BaseException
  68. * @throws \think\Exception
  69. * @throws \think\exception\DbException
  70. */
  71. public function login($post)
  72. {
  73. if (self::$provider == 'baidu') {
  74. // 百度登录 获取session_key
  75. $session = $this->bdlogin($post['code']);
  76. // 自动注册用户
  77. $userInfo = [
  78. 'avatarUrl' => !empty($post['avatar_url']) ? $post['avatar_url'] : '',
  79. 'gender' => !empty($post['gender']) ? $post['gender'] : '',
  80. 'nickName' => !empty($post['nick_name']) ? $post['nick_name'] : '',
  81. ];
  82. // 自动注册用户
  83. $users_id = $this->register($session['openid'], $userInfo);
  84. $session['unionid'] = '';
  85. } elseif (self::$provider == 'toutiao') {
  86. $session = $this->ttlogin($post['code']);
  87. $userInfo = !empty($post['user_info']) ? json_decode($post['user_info'], true) : [];
  88. $users_id = $this->register($session['openid'], $userInfo);
  89. $session['unionid'] = '';
  90. } else {
  91. // 微信登录 获取session_key
  92. $session = $this->wxlogin($post['code']);
  93. $userInfo = !empty($post['user_info']) ? json_decode($post['user_info'], true) : [];
  94. $session['unionid'] = !empty($session['unionid']) ? $session['unionid'] : '';
  95. // 自动注册用户
  96. $users_id = $this->register($session['openid'], $userInfo, $session['unionid']);
  97. }
  98. if (!empty($users_id)) {
  99. // 更新会员信息
  100. $update = [
  101. 'last_ip' => clientIP(),
  102. 'last_login' => getTime(),
  103. 'login_count' => Db::raw('login_count+1'),
  104. 'update_time' => getTime(),
  105. ];
  106. // 查询用户信息
  107. $usersData = Db::name('users')->where(['users_id' => $users_id])->find();
  108. // 登录信息中有 unionid 且用户未记录 unionid 则执行
  109. if (!empty($session['unionid']) && empty($usersData['union_id'])) {
  110. $update['union_id'] = $session['unionid'];
  111. }
  112. // 如果有推荐注册的分销商ID信息则查询并绑定
  113. $parentUsersID = !empty($post['parent_users_id']) ? intval($post['parent_users_id']) : 0;
  114. $parentDealerID = !empty($post['parent_dealer_id']) ? intval($post['parent_dealer_id']) : 0;
  115. $parentDealer = [];
  116. if (!empty($parentUsersID) && !empty($parentDealerID)) {
  117. $where = [
  118. 'a.dealer_status' => 1,
  119. 'a.users_id' => $parentUsersID,
  120. 'a.dealer_id' => $parentDealerID,
  121. ];
  122. $field = 'a.*, b.is_dealer, b.parent_users_id, b.parent_dealer_id';
  123. $parentDealer = Db::name('weapp_dealer')->alias('a')->field($field)->where($where)->join('__USERS__ b', 'a.users_id = b.users_id', 'LEFT')->find();
  124. $dealerOpen = getUsersConfigData('dealer.dealer_open');
  125. if ((isset($dealerOpen) && 0 === intval($dealerOpen)) || $usersData['users_id'] == $parentDealer['users_id']) {
  126. $parentDealer = [];
  127. }
  128. }
  129. if (!empty($parentDealer) && empty($usersData['is_dealer'])) {
  130. // 如果当前登录用户没有上级分销商则绑定分销商
  131. if (empty($usersData['parent_users_id']) && empty($usersData['parent_dealer_id'])) {
  132. $update['parent_users_id'] = intval($parentDealer['users_id']);
  133. $update['parent_dealer_id'] = intval($parentDealer['dealer_id']);
  134. $update['bind_dealer_time'] = getTime();
  135. }
  136. // 如果当前用户绑定的上级分销商有上级分销商,有则绑定为顶级分销商
  137. if (!empty($parentDealer['parent_users_id']) && !empty($parentDealer['parent_dealer_id'])) {
  138. $update['top_users_id'] = intval($parentDealer['parent_users_id']);
  139. $update['top_dealer_id'] = intval($parentDealer['parent_dealer_id']);
  140. if (empty($update['bind_dealer_time'])) $update['bind_dealer_time'] = getTime();
  141. }
  142. }
  143. Db::name('users')->where(['users_id' => $users_id])->update($update);
  144. }
  145. // 生成token (session3rd)
  146. $this->token = $this->token($session['unionid'], $session['session_key'], $users_id, $session['openid']);
  147. return $users_id;
  148. }
  149. //头条登录
  150. private function ttlogin($code)
  151. {
  152. $inc = tpSetting("OpenMinicode.conf_toutiao");
  153. $inc = !empty($inc) ? json_decode($inc, true) : [];
  154. $inc = [
  155. 'appid' => !empty($inc['appid']) ? $inc['appid'] : '',
  156. 'secret' => !empty($inc['secret']) ? $inc['secret'] : '',
  157. ];
  158. if (empty($inc['appid']) || empty($inc['secret'])) $this->error('未填写抖音小程序配置');
  159. // 头条登录登录 (获取session_key)
  160. $session = $this->ttUserSessionKey($code, $inc);
  161. if (isset($session['errcode'])) $this->error($session['errmsg']);
  162. return $session;
  163. }
  164. /**
  165. * 获取抖音登录的session_key
  166. * @param $code
  167. * @return array|mixed
  168. */
  169. private function ttUserSessionKey($code, $inc)
  170. {
  171. $url = "https://developer.toutiao.com/api/apps/v2/jscode2session";
  172. $postData = [
  173. 'appid' => !empty($inc['appid']) ? $inc['appid'] : '',
  174. 'secret' => !empty($inc['secret']) ? $inc['secret'] : '',
  175. 'anonymous_code' => "",
  176. 'code' => $code,
  177. ];
  178. $headers = array("content-type: application/json");
  179. $response = httpRequest($url, 'POST', json_encode($postData), $headers);
  180. $params = json_decode($response, true);
  181. if (!empty($params['err_no']) && 'success' != $params['err_tips']) {
  182. $params = [
  183. 'errcode' => "-1",
  184. 'errmsg' => $params['err_no'] . ':' . $params['err_tips'],
  185. ];
  186. return $params;
  187. } else {
  188. return $params['data'];
  189. }
  190. }
  191. /**
  192. * 百度登录
  193. * @param $code
  194. * @return array|mixed
  195. * @throws BaseException
  196. * @throws \think\exception\DbException
  197. */
  198. private function bdlogin($code)
  199. {
  200. $inc = tpSetting("OpenMinicode.conf_baidu", [], self::$lang);
  201. $inc = json_decode($inc, true);
  202. if (empty($inc['appkey'])) {
  203. $this->error('该开源插件未填写百度小程序配置');
  204. }
  205. $inc = [
  206. 'appkey' => !empty($inc['appkey']) ? $inc['appkey'] : '',
  207. 'appsecret' => !empty($inc['appsecret']) ? $inc['appsecret'] : '',
  208. ];
  209. // 百度登录 (获取session_key)
  210. $session = $this->bdUserSessionKey($code, $inc);
  211. if (isset($session['errcode'])) {
  212. $this->error($session['errmsg']);
  213. }
  214. return $session;
  215. }
  216. /**
  217. * 获取百度登录的session_key
  218. * @param $code
  219. * @return array|mixed
  220. */
  221. private function bdUserSessionKey($code, $inc)
  222. {
  223. /**
  224. * code 换取 session_key
  225. * ​这是一个 HTTPS 接口,开发者服务器使用登录凭证 code 获取 session_key 和 openid。
  226. * 其中 session_key 是对用户数据进行加密签名的密钥。为了自身应用安全,session_key 不应该在网络上传输。
  227. */
  228. $url = "https://spapi.baidu.com/oauth/jscode2sessionkey";
  229. $post_data = [
  230. 'code' => $code,
  231. 'client_id' => !empty($inc['appkey']) ? $inc['appkey'] : '',
  232. 'sk' => !empty($inc['appsecret']) ? $inc['appsecret'] : '',
  233. ];
  234. $response = httpRequest($url, 'POST', $post_data);
  235. $params = json_decode($response, true);
  236. if (!empty($params['errno'])) {
  237. $params = [
  238. 'errcode' => "-1",
  239. 'errmsg' => $params['error'],
  240. ];
  241. }
  242. return $params;
  243. }
  244. /**
  245. * 获取token
  246. * @return mixed
  247. */
  248. public function getToken()
  249. {
  250. return $this->token;
  251. }
  252. /**
  253. * 微信登录
  254. * @param $code
  255. * @return array|mixed
  256. * @throws BaseException
  257. * @throws \think\exception\DbException
  258. */
  259. private function wxlogin($code)
  260. {
  261. $inc = tpSetting("OpenMinicode.conf_weixin", [], self::$lang);
  262. $inc = json_decode($inc, true);
  263. if (empty($inc['appid'])) {
  264. $this->error('该开源插件未填写微信小程序配置');
  265. }
  266. // 微信登录 (获取session_key)
  267. $session = $this->wxUserSessionKey($code, $inc);
  268. if (isset($session['errcode'])) {
  269. $this->error($session['errmsg']);
  270. }
  271. return $session;
  272. }
  273. /**
  274. * 获取微信登录的session_key
  275. * @param $code
  276. * @return array|mixed
  277. */
  278. private function wxUserSessionKey($code, $inc)
  279. {
  280. /**
  281. * code 换取 session_key
  282. * ​这是一个 HTTPS 接口,开发者服务器使用登录凭证 code 获取 session_key 和 openid。
  283. * 其中 session_key 是对用户数据进行加密签名的密钥。为了自身应用安全,session_key 不应该在网络上传输。
  284. */
  285. $url = "https://api.weixin.qq.com/sns/jscode2session?appid={$inc['appid']}&secret={$inc['appsecret']}&js_code={$code}&grant_type=authorization_code";
  286. $response = httpRequest($url);
  287. $params = json_decode($response, true);
  288. if (empty($params)) {
  289. $params = [
  290. 'errcode' => "-1",
  291. 'errmsg' => '系统繁忙',
  292. ];
  293. }
  294. return $params;
  295. }
  296. /**
  297. * 生成用户认证的token
  298. * @param $openid
  299. * @return string
  300. */
  301. private function token($unionid = '', $session_key = '', $users_id = '', $openid = 'openid')
  302. {
  303. // 随机串
  304. $randstr1 = get_rand_str(8, 0, 1);
  305. // 随机串
  306. $randstr2 = get_rand_str(8, 0, 0);
  307. // 自定义一个盐
  308. $salt = '_token_salt';
  309. $openid = !empty($openid) ? $openid : 'openid';//为手机号注册登录写的
  310. $session_key = !empty($session_key) ? $session_key : 'session_key';//为手机号注册登录写的
  311. // 用户认证的token
  312. $token = "{$randstr1}eyoucms{$users_id}eyoucms{$openid}eyoucms{$randstr2}eyoucms{$session_key}eyoucms{$salt}";
  313. return mchStrCode($token, 'ENCODE', '#!@diyminipro#!$');
  314. }
  315. /**
  316. * 自动注册用户
  317. * @param $openid
  318. * @param $userInfo
  319. * @return mixed
  320. * @throws \Exception
  321. * @throws \think\exception\DbException
  322. */
  323. private function register($openid = '', $userInfo = '', $unionid = '')
  324. {
  325. if (!empty($unionid)){
  326. $u_where['union_id'] = $w_where['unionid'] = $unionid;
  327. $users_id = Db::name('users')->where($u_where)->value('users_id');
  328. if (!empty($users_id)) return $users_id;
  329. }else{
  330. $w_where['openid'] = $openid;
  331. }
  332. // 查询用户是否已存在
  333. $we_user = Db::name('wx_users')->field('users_id')->where($w_where)->find();
  334. $userInfo['unionid'] = $unionid;
  335. $userInfo['openid'] = $openid;
  336. if (empty($we_user)) {
  337. $users_id = $this->setReg($userInfo);
  338. if (!empty($users_id)) {
  339. //微信用户信息存在表里
  340. $wxuser_id = Db::name('wx_users')->insertGetId([
  341. 'users_id' => $users_id,
  342. 'openid' => $openid,
  343. 'unionid' => $unionid,
  344. 'nickname' => !empty($userInfo['nickName']) ? filterNickname($userInfo['nickName']) : '',
  345. 'headimgurl' => !empty($userInfo['avatarUrl']) ? filterNickname($userInfo['avatarUrl']) : '',
  346. 'add_time' => getTime(),
  347. ]);
  348. if (!empty($wxuser_id)) {
  349. return $users_id;
  350. } else {
  351. Db::name('users')->where(['users_id' => $users_id])->delete();
  352. }
  353. }
  354. $this->error('用户注册失败!');
  355. } else {
  356. $users = Db::name('users')->field('users_id')->where([
  357. 'users_id' => $we_user['users_id'],
  358. ])->find();
  359. if (empty($users)) {
  360. $users_id = $this->setReg($userInfo);
  361. if (!empty($users_id)) {
  362. Db::name('wx_users')->where($w_where)->update([
  363. 'users_id' => $users_id,
  364. 'update_time' => getTime(),
  365. ]);
  366. return $users_id;
  367. } else {
  368. $this->error('用户注册失败!');
  369. }
  370. } else {
  371. return $we_user['users_id'];
  372. }
  373. }
  374. }
  375. /**
  376. * 自动注册users表用户
  377. */
  378. private function setReg($userInfo)
  379. {
  380. // 生成用户名
  381. $username = rand_username('', 'U', 3);
  382. // 用户昵称
  383. $nickname = !empty($userInfo['nickName']) ? filterNickname($userInfo['nickName']) : '';
  384. // 创建用户账号
  385. $addData = [
  386. 'username' => $username,//用户名-生成
  387. 'nickname' => !empty($nickname) ? trim($nickname) : $username,//昵称,同微信用户名
  388. 'level' => 1,
  389. 'thirdparty' => 3,
  390. 'union_id' => !empty($userInfo['unionid']) ? $userInfo['unionid'] : '',
  391. 'register_place' => 2,
  392. 'open_level_time' => getTime(),
  393. 'level_maturity_days' => 0,
  394. 'reg_time' => getTime(),
  395. 'head_pic' => !empty($userInfo['avatarUrl']) ? $userInfo['avatarUrl'] : ROOT_DIR . '/public/static/common/images/dfboy.png',
  396. 'mobile' => !empty($userInfo['mobile']) ? $userInfo['mobile'] : '',
  397. 'is_mobile' => !empty($userInfo['mobile']) ? 1 : 0,
  398. 'lang' => self::$lang,
  399. ];
  400. if (self::$provider == 'baidu') {
  401. $addData['source'] = 5;//1-PC端 2-H5 3-微信公众号/微站点 4-微信小程序 5-百度小程序 6-抖音小程序
  402. } elseif (self::$provider == 'toutiao') {
  403. $addData['source'] = 6;//1-PC端 2-H5 3-微信公众号/微站点 4-微信小程序 5-百度小程序 6-抖音小程序
  404. } else {
  405. $addData['source'] = 4;//1-PC端 2-H5 3-微信公众号/微站点 4-微信小程序 5-百度小程序 6-抖音小程序
  406. }
  407. if (0 == config('global.opencodetype') && !empty($userInfo['password'])) {
  408. $addData['password'] = func_encrypt($userInfo['password'], false, pwd_encry_type('bcrypt'));
  409. }
  410. $users_id = Db::name('users')->insertGetId($addData);
  411. return $users_id;
  412. }
  413. /**
  414. * 自动注册users表用户
  415. */
  416. private function setAccountReg($userInfo)
  417. {
  418. // 生成用户名
  419. $username = $userInfo["username"];
  420. // 创建用户账号
  421. $addData = [
  422. "username" => $username, // 用户名
  423. "nickname" => $username, //昵称,同用户名
  424. "level" => 1,
  425. "thirdparty" => 0,
  426. "union_id" => "",
  427. "register_place" => 2,
  428. "open_level_time" => getTime(),
  429. "level_maturity_days" => 0,
  430. "reg_time" => getTime(),
  431. "head_pic" => !empty($userInfo["avatarUrl"]) ? $userInfo["avatarUrl"] : ROOT_DIR . "/public/static/common/images/dfboy.png",
  432. "mobile" => !empty($userInfo["mobile"]) ? $userInfo["mobile"] : "",
  433. "is_mobile" => !empty($userInfo["mobile"]) ? 1 : 0,
  434. "lang" => self::$lang,
  435. ];
  436. if (0 == config("global.opencodetype")) {
  437. $addData["password"] = func_encrypt($userInfo["password"], false, pwd_encry_type("bcrypt"));
  438. }
  439. $users_id = Db::name("users")->insertGetId($addData);
  440. Db::name("wx_users")->insert([
  441. "users_id" => $users_id,
  442. "openid" => "openid",
  443. "nickname" => $username,
  444. "headimgurl" => !empty($userInfo["avatarUrl"]) ? $userInfo["avatarUrl"] : ROOT_DIR . "/public/static/common/images/dfboy.png",
  445. "add_time" => getTime(),
  446. ]);
  447. return $users_id;
  448. }
  449. /**
  450. * 个人中心菜单列表
  451. * @return array
  452. */
  453. public function getMenus()
  454. {
  455. $menus = [
  456. // 'address' => [
  457. // 'name' => '收货地址',
  458. // 'url' => 'pages/address/index',
  459. // 'icon' => 'map'
  460. // ],
  461. // 'coupon' => [
  462. // 'name' => '领券中心',
  463. // 'url' => 'pages/coupon/coupon',
  464. // 'icon' => 'lingquan'
  465. // ],
  466. // 'my_coupon' => [
  467. // 'name' => '我的优惠券',
  468. // 'url' => 'pages/user/coupon/coupon',
  469. // 'icon' => 'youhuiquan'
  470. // ],
  471. // 'sharing_order' => [
  472. // 'name' => '拼团订单',
  473. // 'url' => 'pages/sharing/order/index',
  474. // 'icon' => 'pintuan'
  475. // ],
  476. // 'my_bargain' => [
  477. // 'name' => '我的砍价',
  478. // 'url' => 'pages/bargain/index/index?tab=1',
  479. // 'icon' => 'kanjia'
  480. // ],
  481. // 'dealer' => [
  482. // 'name' => '分销中心',
  483. // 'url' => 'pages/dealer/index/index',
  484. // 'icon' => 'fenxiaozhongxin'
  485. // ],
  486. // 'help' => [
  487. // 'name' => '我的帮助',
  488. // 'url' => 'pages/user/help/index',
  489. // 'icon' => 'help'
  490. // ],
  491. ];
  492. // 判断分销功能是否开启
  493. // if (DealerSettingModel::isOpen()) {
  494. // $menus['dealer']['name'] = DealerSettingModel::getDealerTitle();
  495. // } else {
  496. // unset($menus['dealer']);
  497. // }
  498. return $menus;
  499. }
  500. /**
  501. * 返回状态给微信服务器
  502. * @param boolean $returnCode
  503. * @param string $msg
  504. */
  505. public function returnCode($returnCode = true, $msg = null)
  506. {
  507. // 返回状态
  508. $return = [
  509. 'return_code' => $returnCode ? 'SUCCESS' : 'FAIL',
  510. 'return_msg' => $msg ?: 'OK',
  511. ];
  512. // 记录日志
  513. // $value = [
  514. // 'describe' => '返回微信支付状态',
  515. // 'data' => $return
  516. // ];
  517. // $msg = is_string($value) ? $value : var_export($value, true);
  518. // \think\Log::record($msg, $type);
  519. die($this->toXml($return));
  520. }
  521. /**
  522. * 格式化参数格式化成url参数
  523. * @param $values
  524. * @return string
  525. */
  526. public function toUrlParams($values)
  527. {
  528. $buff = '';
  529. foreach ($values as $k => $v) {
  530. if ($k != 'sign' && $v != '' && !is_array($v)) {
  531. $buff .= $k . '=' . $v . '&';
  532. }
  533. }
  534. return trim($buff, '&');
  535. }
  536. /**
  537. * 输出xml字符
  538. * @param $values
  539. * @return bool|string
  540. */
  541. public function toXml($values)
  542. {
  543. if (!is_array($values)
  544. || count($values) <= 0
  545. ) {
  546. return false;
  547. }
  548. $xml = "<xml>";
  549. foreach ($values as $key => $val) {
  550. if (is_numeric($val)) {
  551. $xml .= "<" . $key . ">" . $val . "</" . $key . ">";
  552. } else {
  553. $xml .= "<" . $key . "><![CDATA[" . $val . "]]></" . $key . ">";
  554. }
  555. }
  556. $xml .= "</xml>";
  557. return $xml;
  558. }
  559. /**
  560. * 将xml转为array
  561. * @param $xml
  562. * @return mixed
  563. */
  564. public function fromXml($xml)
  565. {
  566. // 禁止引用外部xml实体
  567. libxml_disable_entity_loader(true);
  568. return json_decode(json_encode(simplexml_load_string($xml, 'SimpleXMLElement', LIBXML_NOCDATA)), true);
  569. }
  570. /**
  571. * 生成签名
  572. * @param $values
  573. * @return string 本函数不覆盖sign成员变量,如要设置签名需要调用SetSign方法赋值
  574. */
  575. public function makeSign($values, $apikey = '')
  576. {
  577. if (empty($apikey)) {
  578. $minicode = Db::name('weapp')->where('code', self::$weapp_code)->value('data');
  579. $Setting = json_decode($minicode, true);
  580. $apikey = $Setting['apikey'];
  581. }
  582. //签名步骤一:按字典序排序参数
  583. ksort($values);
  584. $string = $this->toUrlParams($values);
  585. //签名步骤二:在string后加入KEY
  586. $string = $string . '&key=' . $apikey;
  587. //签名步骤三:MD5加密
  588. $string = md5($string);
  589. //签名步骤四:所有字符转为大写
  590. $result = strtoupper($string);
  591. return $result;
  592. }
  593. public function onPaySuccess($order, $payType = 20, $payData = [])
  594. {
  595. if (empty($order)) {
  596. return [
  597. 'code' => 0,
  598. 'msg' => '未找到该订单信息',
  599. ];
  600. }
  601. // 更新付款状态
  602. $status = $this->updatePayStatus($order, $payType, $payData);
  603. return $status;
  604. }
  605. /**
  606. * 更新付款状态
  607. * @param $payType
  608. * @param array $payData
  609. * @return bool
  610. */
  611. private function updatePayStatus($order, $payType, $payData = [])
  612. {
  613. // 验证余额支付时用户余额是否满足
  614. if ($payType == 10) {
  615. $users_money = Db::name('users')->where(['users_id' => $this->users_id])->getField('users_money');
  616. if (strval($users_money) < strval($order['order_amount'])) {
  617. return [
  618. 'code' => 0,
  619. 'msg' => '用户余额不足,无法使用余额支付',
  620. ];
  621. }
  622. }
  623. // 更新订单状态
  624. $Result = $this->updateOrderInfo($order, $payType, $payData);
  625. return $Result;
  626. }
  627. /**
  628. * 更新订单记录
  629. * @param $payType
  630. * @param $payData
  631. * @return false|int
  632. * @throws \Exception
  633. */
  634. private function updateOrderInfo($order, $payType, $payData)
  635. {
  636. $Result = [];
  637. $OrderWhere = [
  638. 'order_id' => $order['order_id'],
  639. 'order_code' => $payData['out_trade_no'],
  640. ];
  641. // 修改会员金额明细表中,对应的订单数据,存入返回的数据,订单已付款
  642. $OrderData = [
  643. 'order_status' => 1,
  644. // 'pay_name' => 'wechat', //微信支付
  645. 'pay_details' => serialize($payData),
  646. 'pay_time' => getTime(),
  647. 'update_time' => getTime(),
  648. ];
  649. $r = Db::name('shop_order')->where($OrderWhere)->update($OrderData);
  650. if (!empty($r)) {
  651. // 添加订单操作记录
  652. AddOrderAction($order['order_id'], $order['users_id'], '0', '1', '0', '1', '支付成功!', '会员使用微信小程序完成支付!');
  653. // $users = Db::name('users')->find($order['users_id']);
  654. // 邮箱发送
  655. // $SmtpConfig = tpCache('smtp');
  656. // $Result['email'] = GetEamilSendData($SmtpConfig, $users, $order, 1, 'wechat');
  657. // 手机发送
  658. // $SmsConfig = tpCache('sms');
  659. // $Result['mobile'] = GetMobileSendData($SmsConfig, $users, $order, 1, 'wechat');
  660. $Result['status'] = 1;
  661. }
  662. return $Result;
  663. }
  664. //获取收藏/喜欢(点赞)列表
  665. public function GetMyCollectList($param = [])
  666. {
  667. $orderby = !empty($orderby) ? $orderby : 'id desc';
  668. $page = !empty($param['page']) ? intval($param['page']) : 1;
  669. $pagesize = empty($param['pagesize']) ? config('paginate.list_rows') : $param['pagesize'];
  670. $type = empty($param['type']) ? 'users_collection' : $param['type'];
  671. $paginate = ['page' => $page];
  672. $pages = Db::name($type)
  673. ->alias('a')
  674. ->field('d.typename,c.*,a.*,c.add_time as arc_add_time')
  675. ->where('a.users_id', $this->users_id)
  676. ->where('a.channel', '>', 0)
  677. ->where('a.aid', '>', 0)
  678. ->join('archives c','a.aid = c.aid','left')
  679. ->join('arctype d', 'a.typeid = d.id','left')
  680. ->orderRaw($orderby)
  681. ->paginate($pagesize, false, $paginate);
  682. $result = $pages->toArray();
  683. $aids = get_arr_column($result['data'],'aid');
  684. if (!empty($result['data'])){
  685. $channel = get_arr_column($result['data'],'channel');
  686. $channelRow = Db::name('channeltype')->field('id,nid,table')
  687. ->where([
  688. 'id' => ['in',$channel],
  689. ])->getAllWithIndex('id');
  690. $count_arr = Db::name($type)->where('aid','in',$aids)->field('aid,count(id) as count')->group('aid')->getAllWithIndex('aid');
  691. foreach ($result['data'] as $key => $val) {
  692. $val['is_litpic'] = 0;
  693. if (!empty($val['litpic'])){
  694. $val['is_litpic'] = 1;
  695. }
  696. $val['litpic'] = $this->get_default_pic($val['litpic']); // 默认封面图
  697. $val['add_time'] = date('Y-m-d H:i:s',$val['add_time']);
  698. $val['arc_add_time_format'] = $this->time_format($val['arc_add_time']);
  699. $val['arc_add_time'] = date('Y-m-d H:i:s',$val['arc_add_time']);
  700. $val['update_time'] = date('Y-m-d H:i:s',$val['update_time']);
  701. $val['count'] = !empty($count_arr[$val['aid']]) ? $count_arr[$val['aid']]['count'] : 0;
  702. // 内容扩展表数据
  703. $tableExt = $channelRow[$val['channel']]['table'] . "_content";
  704. $content = Db::name($tableExt)->where(['aid' => $val['aid']])->value('content');
  705. $content = htmlspecialchars_decode($content);
  706. $val['img_list'] = $this->get_content_img($content);
  707. $result['data'][$key] = $val;
  708. }
  709. }
  710. return $result;
  711. }
  712. //获取内容里所有的图片
  713. private function get_content_img($content = '')
  714. {
  715. $arr = [];
  716. if (!empty($content)) {
  717. preg_match_all('/<img.*(\/)?>/iUs', $content, $imginfo);
  718. $imginfo = !empty($imginfo[0]) ? $imginfo[0] : [];
  719. if (!empty($imginfo)) {
  720. foreach ($imginfo as $key => $imgstr) {
  721. $imgstrNew = $imgstr;
  722. $url = preg_replace("/<img(.*?)src(\s*)=(\s*)[\'|\"](.*?)([^\/\'\"]*)[\'|\"](.*?)[\/]?(\s*)>/i", '${4}${5}', $imgstrNew);
  723. $url = handle_subdir_pic($url,'img',true);
  724. $info = @getimagesize($url);
  725. if ($info[0] >= 375 && $info[0] >= 250){
  726. $arr[] = get_default_pic($url,true);
  727. }
  728. if (count($arr) == 3){
  729. break;
  730. }
  731. }
  732. }
  733. }
  734. return $arr;
  735. }
  736. /**
  737. * 获取小程序全局唯一后台接口调用凭据(access_token)
  738. * @param $code
  739. * @return array|mixed
  740. */
  741. private function getAccessToken()
  742. {
  743. $inc = tpSetting("OpenMinicode.conf_weixin", [], self::$lang);
  744. $inc = json_decode($inc, true);
  745. if (empty($inc['appid'])) {
  746. $this->error('该开源插件未填写微信小程序配置');
  747. }
  748. $url = "https://api.weixin.qq.com/cgi-bin/token?grant_type=client_credential&appid={$inc['appid']}&secret={$inc['appsecret']}";
  749. $response = httpRequest($url);
  750. $params = json_decode($response, true);
  751. if (!empty($params['errcode'])) {
  752. $this->error($params['errmsg']);
  753. }
  754. return $params['access_token'];
  755. }
  756. //code换取用户手机号
  757. public function getPhone($code)
  758. {
  759. $access_token = $this->getAccessToken();
  760. $url = "https://api.weixin.qq.com/wxa/business/getuserphonenumber?access_token={$access_token}";
  761. $response = httpRequest($url,'POST',json_encode(['code'=>$code]));
  762. $params = json_decode($response, true);
  763. if (!empty($params['errcode'])) {
  764. $this->error($params['errmsg']);
  765. }
  766. $this->success('获取成功','',$params['phone_info']);
  767. }
  768. //获取我的足迹列表
  769. public function GetMyFootprintList($param = [])
  770. {
  771. $page = !empty($param['page']) ? intval($param['page']) : 1;
  772. $pagesize = empty($param['pagesize']) ? config('paginate.list_rows') : $param['pagesize'];
  773. $condition['a.users_id'] = $this->users_id;
  774. if (!empty($param['channel'])){
  775. $condition['a.channel'] = $param['channel'];
  776. }
  777. $paginate = ['page' => $page];
  778. $pages = Db::name('users_footprint')
  779. ->field('d.typename,c.*,a.*,c.add_time as arc_add_time')
  780. ->alias('a')
  781. ->join('arctype d', 'a.typeid = d.id','left')
  782. ->join('archives c', 'a.aid = c.aid','left')
  783. ->where($condition)
  784. ->order('a.update_time desc')
  785. ->paginate($pagesize, false, $paginate);
  786. $result = $pages->toArray();
  787. foreach ($result['data'] as $key => $val) {
  788. $val['is_litpic'] = 0;
  789. if (!empty($val['litpic'])){
  790. $val['is_litpic'] = 1;
  791. }
  792. $val['litpic'] = $this->get_default_pic($val['litpic']); // 默认封面图
  793. $val['add_time'] = date('Y-m-d H:i:s',$val['add_time']);
  794. $val['arc_add_time_format'] = $this->time_format($val['arc_add_time']);
  795. $val['arc_add_time'] = date('Y-m-d H:i:s',$val['arc_add_time']);
  796. $val['update_time'] = date('Y-m-d H:i:s',$val['update_time']);
  797. $result['data'][$key] = $val;
  798. }
  799. return $result;
  800. }
  801. public function guestbookList()
  802. {
  803. $param = input('param.');
  804. $page = !empty($param['page']) ? intval($param['page']) : 1;
  805. $pagesize = empty($param['pagesize']) ? config('paginate.list_rows') : 10;
  806. // $typeid = !empty($param['typeid']) ? $param['typeid'] : 0;
  807. if (!empty($param['typeid'])){
  808. $condition['typeid'] = $param['typeid'] ;
  809. }
  810. $condition['users_id'] = $this->users_id;
  811. $condition['lang'] = self::$lang;
  812. $paginate = ['page' => $page];
  813. $pages = Db::name('guestbook')
  814. ->where($condition)
  815. ->order('add_time desc')
  816. ->paginate($pagesize, false, $paginate);
  817. $result = $pages->toArray();
  818. $list = $result['data'];
  819. if (!empty($list)) {
  820. $aid_arr = get_arr_column($result['data'],'aid');
  821. $where = [
  822. 'b.aid' => ['IN', $aid_arr],
  823. 'a.lang' => self::$lang,
  824. 'a.is_del' => 0,
  825. ];
  826. $row = Db::name('guestbook_attribute')
  827. ->field('a.attr_name, b.attr_value, b.aid, b.attr_id,a.attr_input_type')
  828. ->alias('a')
  829. ->join('__GUESTBOOK_ATTR__ b', 'b.attr_id = a.attr_id', 'LEFT')
  830. ->where($where)
  831. ->order('b.aid desc, a.sort_order asc, a.attr_id asc')
  832. ->getAllWithIndex();
  833. $attr_list = array();
  834. foreach ($row as $key => $val) {
  835. if (9 == $val['attr_input_type']){
  836. //如果是区域类型,转换名称
  837. $val['attr_value'] = Db::name('region')->where('id','in',$val['attr_value'])->column('name');
  838. $val['attr_value'] = implode('',$val['attr_value']);
  839. }else if(10 == $val['attr_input_type']){
  840. $val['attr_value'] = date('Y-m-d H:i:s',$val['attr_value']);
  841. }
  842. if (preg_match('/(\.(jpg|gif|png|bmp|jpeg|ico|webp))$/i', $val['attr_value'])) {
  843. if (!stristr($val['attr_value'], '|')) {
  844. $val['attr_value'] = handle_subdir_pic($val['attr_value']);
  845. $val['attr_value'] = "<img src='{$val['attr_value']}' width='60' height='60' style='float: unset;cursor: pointer;' onclick=\"Images('{$val['attr_value']}', 650, 350);\" />";
  846. }
  847. } else {
  848. $val['attr_value'] = str_replace(PHP_EOL, ' | ', $val['attr_value']);
  849. }
  850. $attr_list[$val['aid']][] = $val;
  851. }
  852. foreach ($list as $key => $val) {
  853. $list[$key]['attr_list'] = isset($attr_list[$val['aid']]) ? $attr_list[$val['aid']] : array();
  854. }
  855. $result['data'] = $list;
  856. }
  857. return $result;
  858. }
  859. public function GetMyBookDetail($param)
  860. {
  861. $aid = !empty($param['aid']) ? intval($param['aid']) : 0;
  862. if (empty($aid)){
  863. $this->error('缺少aid');
  864. }
  865. $data = Db::name('guestbook')
  866. ->where(['aid'=>$aid,'users_id'=>$this->users_id])
  867. ->order('add_time desc')
  868. ->find();
  869. $where = [
  870. 'b.aid' => $aid,
  871. 'a.is_del' => 0,
  872. ];
  873. $data['add_time'] = date('Y-m-d H:i:s');
  874. $row = Db::name('guestbook_attribute')
  875. ->field('a.attr_name, b.attr_value, b.aid, b.attr_id,a.attr_input_type')
  876. ->alias('a')
  877. ->join('__GUESTBOOK_ATTR__ b', 'b.attr_id = a.attr_id', 'LEFT')
  878. ->where($where)
  879. ->order(' a.sort_order asc, a.attr_id asc')
  880. ->getAllWithIndex();
  881. foreach ($row as $key => $val) {
  882. if (9 == $val['attr_input_type']){
  883. //如果是区域类型,转换名称
  884. $val['attr_value'] = Db::name('region')->where('id','in',$val['attr_value'])->column('name');
  885. $val['attr_value'] = implode('',$val['attr_value']);
  886. }else if(10 == $val['attr_input_type']){
  887. $val['attr_value'] = date('Y-m-d H:i:s',$val['attr_value']);
  888. }
  889. if (preg_match('/(\.(jpg|gif|png|bmp|jpeg|ico|webp))$/i', $val['attr_value'])) {
  890. if (!stristr($val['attr_value'], '|')) {
  891. $val['attr_value'] = handle_subdir_pic($val['attr_value']);
  892. // $val['attr_value'] = "<img src='{$val['attr_value']}' width='60' height='60' style='float: unset;cursor: pointer;' onclick=\"Images('{$val['attr_value']}', 650, 350);\" />";
  893. }
  894. } else {
  895. $val['attr_value'] = str_replace(PHP_EOL, ' | ', $val['attr_value']);
  896. }
  897. $row[$key] = $val;
  898. }
  899. return ['data'=>$data,'list'=>$row];
  900. }
  901. /**
  902. * 手机号注册
  903. * @param array $post
  904. * @return string
  905. * @throws BaseException
  906. * @throws \think\Exception
  907. * @throws \think\exception\DbException
  908. */
  909. public function mobile_reg($post)
  910. {
  911. if (empty($post['mobile'])) $this->error('手机号不能为空!');
  912. if (!check_mobile($post['mobile'])) $this->error('手机号格式不正确!');
  913. //查询手机号是否已经注册过
  914. $is_reg = Db::name('users')->where(['mobile'=>$post['mobile'],'is_del'=>0])->find();
  915. if (!empty($is_reg)){
  916. $this->error('手机号码已经注册!');
  917. }
  918. if (!empty($post['have_password']) && 1 == $post['have_password']) {
  919. //手机号注册时需要填写密码但是不需要确认密码
  920. if (empty($post['password']) || !trim($post['password'])) $this->error('密码不能为空!');
  921. } elseif (!empty($post['have_password']) && 2 == $post['have_password']){
  922. //手机号注册时需要填写密码并确认密码
  923. if (empty($post['password']) || !trim($post['password'])) $this->error('密码不能为空!');
  924. if (empty($post['confirm_password']) || !trim($post['confirm_password'])) $this->error('确认密码不能为空!');
  925. if ($post['password'] != $post['confirm_password']) $this->error('两次输入密码不一致!');
  926. }
  927. if (empty($post['mobile_code'])) {
  928. $this->error('验证码不能为空!');
  929. }
  930. // 验证验证码
  931. $RecordWhere = [
  932. 'source' => 0,
  933. 'mobile' => $post['mobile'],
  934. 'code' => $post['mobile_code'],
  935. 'is_use' => 0,
  936. 'lang' => self::$lang
  937. ];
  938. $is_verify = Db::name('sms_log')->where($RecordWhere)->find();
  939. if (!empty($is_verify)){
  940. $RecordData = [
  941. 'is_use' => 1,
  942. 'update_time' => getTime()
  943. ];
  944. // 更新数据
  945. Db::name('sms_log')->where($RecordWhere)->update($RecordData);
  946. }else{
  947. $this->error('验证码错误!');
  948. }
  949. $users_id = $this->setReg($post);
  950. if (!empty($users_id)) {
  951. Db::name('users_list')->insert(['users_id'=>$users_id,'para_id'=>1,'info'=>$post['mobile'],'lang'=>self::$lang,'add_time'=>getTime(),'update_time'=>getTime()]);
  952. // 更新会员信息
  953. $update = [
  954. 'last_ip' => clientIP(),
  955. 'last_login' => getTime(),
  956. 'login_count' => Db::raw('login_count+1'),
  957. 'update_time' => getTime(),
  958. ];
  959. // 查询用户信息
  960. $usersData = Db::name('users')->where(['users_id' => $users_id])->find();
  961. // 如果有推荐注册的分销商ID信息则查询并绑定
  962. $parentUsersID = !empty($post['parent_users_id']) ? intval($post['parent_users_id']) : 0;
  963. $parentDealerID = !empty($post['parent_dealer_id']) ? intval($post['parent_dealer_id']) : 0;
  964. $parentDealer = [];
  965. if (!empty($parentUsersID) && !empty($parentDealerID)) {
  966. $where = [
  967. 'a.dealer_status' => 1,
  968. 'a.users_id' => $parentUsersID,
  969. 'a.dealer_id' => $parentDealerID,
  970. ];
  971. $field = 'a.*, b.is_dealer, b.parent_users_id, b.parent_dealer_id';
  972. $parentDealer = Db::name('weapp_dealer')->alias('a')->field($field)->where($where)->join('__USERS__ b', 'a.users_id = b.users_id', 'LEFT')->find();
  973. $dealerOpen = getUsersConfigData('dealer.dealer_open');
  974. if ((isset($dealerOpen) && 0 === intval($dealerOpen)) || $usersData['users_id'] == $parentDealer['users_id']) {
  975. $parentDealer = [];
  976. }
  977. }
  978. if (!empty($parentDealer) && empty($usersData['is_dealer'])) {
  979. // 如果当前登录用户没有上级分销商则绑定分销商
  980. if (empty($usersData['parent_users_id']) && empty($usersData['parent_dealer_id'])) {
  981. $update['parent_users_id'] = intval($parentDealer['users_id']);
  982. $update['parent_dealer_id'] = intval($parentDealer['dealer_id']);
  983. $update['bind_dealer_time'] = getTime();
  984. }
  985. // 如果当前用户绑定的上级分销商有上级分销商,有则绑定为顶级分销商
  986. if (!empty($parentDealer['parent_users_id']) && !empty($parentDealer['parent_dealer_id'])) {
  987. $update['top_users_id'] = intval($parentDealer['parent_users_id']);
  988. $update['top_dealer_id'] = intval($parentDealer['parent_dealer_id']);
  989. if (empty($update['bind_dealer_time'])) $update['bind_dealer_time'] = getTime();
  990. }
  991. }
  992. Db::name('users')->where(['users_id' => $users_id])->update($update);
  993. }
  994. // 生成token (session3rd)
  995. $this->token = $this->token('', 'session_key', $users_id, 'openid');
  996. return $users_id;
  997. }
  998. /**
  999. * 用户注册 用户名注册
  1000. */
  1001. public function account_reg($post)
  1002. {
  1003. if (empty($post["username"])) {
  1004. $this->error("用户名不能为空!");
  1005. }
  1006. // 查询用户名是否已经注册过
  1007. $is_reg = Db::name("users")->where(["username" => $post["username"], "is_del" => 0])->find();
  1008. if (!empty($is_reg)){
  1009. $this->error("用户名已经注册!");
  1010. }
  1011. if (!empty($post["have_password"]) && 1 == $post["have_password"]) {
  1012. // 用户名注册时需要填写密码但是不需要确认密码
  1013. if (empty($post["password"]) || !trim($post["password"])) {
  1014. $this->error("密码不能为空!");
  1015. }
  1016. } elseif (!empty($post["have_password"]) && 2 == $post["have_password"]){
  1017. // 用户名注册时需要填写密码并确认密码
  1018. if (empty($post["password"]) || !trim($post["password"])) {
  1019. $this->error("密码不能为空!");
  1020. }
  1021. if (empty($post["confirm_password"]) || !trim($post["confirm_password"])) {
  1022. $this->error("确认密码不能为空!");
  1023. }
  1024. if ($post["password"] != $post["confirm_password"]) {
  1025. $this->error("两次输入密码不一致!");
  1026. }
  1027. } else {
  1028. // 用户名注册时需要提那些密码但是不需要填写重复密码
  1029. if (empty($post["password"]) || !trim($post["password"])) {
  1030. $this->error("密码不能为空!");
  1031. }
  1032. }
  1033. $users_id = $this->setAccountReg($post);
  1034. if(!empty($users_id)) {
  1035. // 更新会员信息
  1036. $update = [
  1037. "last_ip" => clientIP(),
  1038. "last_login" => getTime(),
  1039. "login_count" => Db::raw("login_count+1"),
  1040. "update_time" => getTime(),
  1041. ];
  1042. // 查询用户信息
  1043. $usersData = Db::name("users")->where(["users_id" => $users_id])->find();
  1044. // 如果有推荐注册的分销商ID信息则查询并绑定
  1045. $parentDealer = [];
  1046. $parentUsersID = !empty($post["parent_users_id"]) ? intval($post["parent_users_id"]) : 0;
  1047. $parentDealerID = !empty($post["parent_dealer_id"]) ? intval($post["parent_dealer_id"]) : 0;
  1048. if (!empty($parentUsersID) && !empty($parentDealerID)) {
  1049. $where = [
  1050. "a.dealer_status" => 1,
  1051. "a.users_id" => $parentUsersID,
  1052. "a.dealer_id" => $parentDealerID,
  1053. ];
  1054. $field = "a.*, b.is_dealer, b.parent_users_id, b.parent_dealer_id";
  1055. $parentDealer = Db::name("weapp_dealer")->alias("a")->field($field)->where($where)->join("__USERS__ b", "a.users_id = b.users_id", "LEFT")->find();
  1056. $dealerOpen = getUsersConfigData("dealer.dealer_open");
  1057. if ((isset($dealerOpen) && 0 === intval($dealerOpen)) || $usersData["users_id"] == $parentDealer["users_id"]) {
  1058. $parentDealer = [];
  1059. }
  1060. }
  1061. if (!empty($parentDealer) && empty($usersData["is_dealer"])) {
  1062. // 如果当前登录用户没有上级分销商则绑定分销商
  1063. if (empty($usersData["parent_users_id"]) && empty($usersData["parent_dealer_id"])) {
  1064. $update["parent_users_id"] = intval($parentDealer["users_id"]);
  1065. $update["parent_dealer_id"] = intval($parentDealer["dealer_id"]);
  1066. $update["bind_dealer_time"] = getTime();
  1067. }
  1068. // 如果当前用户绑定的上级分销商有上级分销商,有则绑定为顶级分销商
  1069. if (!empty($parentDealer["parent_users_id"]) && !empty($parentDealer["parent_dealer_id"])) {
  1070. $update["top_users_id"] = intval($parentDealer["parent_users_id"]);
  1071. $update["top_dealer_id"] = intval($parentDealer["parent_dealer_id"]);
  1072. if (empty($update["bind_dealer_time"])) {
  1073. $update["bind_dealer_time"] = getTime();
  1074. }
  1075. }
  1076. }
  1077. Db::name("users")->where(["users_id" => $users_id])->update($update);
  1078. }
  1079. // 生成token (session3rd)
  1080. $this->token = $this->token('', "session_key", $users_id, "openid");
  1081. return $users_id;
  1082. }
  1083. /**
  1084. * 用户登录 手机号验证码登录/手机号密码登录
  1085. */
  1086. public function mobile_login($post)
  1087. {
  1088. if (empty($post['mobile'])) $this->error('手机号不能为空!');
  1089. if (!check_mobile($post['mobile'])) $this->error('手机号格式不正确!');
  1090. $where['mobile'] = $post['mobile'];
  1091. $where['is_mobile'] = 1;
  1092. $where['is_del'] = 0;
  1093. $users = Db::name('users')->where($where)->find();
  1094. if (empty($users)) $this->error('用户不存在!');
  1095. //验证码登录和密码登录取其一
  1096. if (empty($post['password']) || !trim($post['password'])) {
  1097. if (empty($post['mobile_code'])) {
  1098. $this->error('验证码不能为空!');
  1099. }
  1100. // 验证验证码
  1101. $RecordWhere = [
  1102. 'source' => 2,
  1103. 'mobile' => $post['mobile'],
  1104. 'code' => $post['mobile_code'],
  1105. 'is_use' => 0,
  1106. 'lang' => self::$lang
  1107. ];
  1108. $is_verify = Db::name('sms_log')->where($RecordWhere)->find();
  1109. if (!empty($is_verify)){
  1110. $RecordData = [
  1111. 'is_use' => 1,
  1112. 'update_time' => getTime()
  1113. ];
  1114. // 更新数据
  1115. Db::name('sms_log')->where($RecordWhere)->update($RecordData);
  1116. }else{
  1117. $this->error('验证码错误!');
  1118. }
  1119. $users_id = $users['users_id'];
  1120. } else{
  1121. if (empty($post['password']) || !trim($post['password'])) {
  1122. $this->error('密码不能为空!');
  1123. }
  1124. if (0 == config('global.opencodetype')) {
  1125. $where['password'] = func_encrypt($post['password'], false, pwd_encry_type('bcrypt'));
  1126. }
  1127. $users_id = Db::name('users')->where($where)->value('users_id');
  1128. if (empty($users_id)) $this->error('密码不正确');
  1129. }
  1130. if (!empty($users_id)) {
  1131. // 更新会员信息
  1132. $update = [
  1133. 'last_ip' => clientIP(),
  1134. 'last_login' => getTime(),
  1135. 'login_count' => Db::raw('login_count+1'),
  1136. 'update_time' => getTime(),
  1137. ];
  1138. Db::name('users')->where(['users_id' => $users_id])->update($update);
  1139. }
  1140. // 生成token (session3rd)
  1141. $this->token = $this->token('', 'session_key', $users_id, 'openid');
  1142. return $users_id;
  1143. }
  1144. /**
  1145. * 用户登录 账号密码登录
  1146. */
  1147. public function account_login($post)
  1148. {
  1149. $post["username"] = trim($post["username"]);
  1150. if (empty($post["username"])) {
  1151. $this->error("用户名不能为空!");
  1152. }
  1153. $post["password"] = trim($post["password"]);
  1154. if (empty($post["password"])) {
  1155. $this->error("密码不能为空!");
  1156. }
  1157. $where = [];
  1158. $where["username"] = $post["username"];
  1159. $where["is_del"] = 0;
  1160. $users = Db::name("users")->where($where)->find();
  1161. if (empty($users)) {
  1162. $this->error('该用户名不存在,请注册!');
  1163. }
  1164. if ($users["password"] != func_encrypt($post["password"], false, pwd_encry_type("bcrypt"))) {
  1165. $this->error("密码不正确!");
  1166. }
  1167. if (!empty($users['admin_id'])) {
  1168. // 后台账号不允许在前台通过账号密码登录,只能后台登录时同步到前台
  1169. $this->error('前台禁止管理员登录!');
  1170. }
  1171. if (empty($users['is_activation'])) {
  1172. $this->error('该会员尚未激活,请联系管理员!');
  1173. }
  1174. // 更新会员信息
  1175. $update = [
  1176. "last_ip" => clientIP(),
  1177. "last_login" => getTime(),
  1178. "login_count" => Db::raw("login_count + 1"),
  1179. "update_time" => getTime(),
  1180. ];
  1181. Db::name("users")->where(["users_id" => $users['users_id']])->update($update);
  1182. // 生成token (session3rd)
  1183. $this->token = $this->token('', "session_key", $users['users_id'], "openid");
  1184. return $users['users_id'];
  1185. }
  1186. }