User.php 27 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789
  1. <?php
  2. namespace app\common\model;
  3. use app\common\model\Sms;
  4. use app\common\library\Email;
  5. use app\common\model\Order;
  6. use Firebase\JWT\JWT;
  7. use phpDocumentor\Reflection\Type;
  8. use app\common\model\UserIntegralLog;
  9. use think\Model;
  10. use app\common\library\Common;
  11. use think\facade\Validate;
  12. use think\Request;
  13. use think\Db;
  14. use function foo\func;
  15. use app\common\library\WxService;
  16. use app\common\library\WxPay;
  17. use app\common\library\AliPay;
  18. use EasyWeChat\Factory;
  19. header('Access-Control-Allow-Origin: *');
  20. /**
  21. * 会员模型
  22. */
  23. class User Extends Model
  24. {
  25. // 开启自动写入时间戳字段
  26. protected $autoWriteTimestamp = 'TIMESTAMP';
  27. // 定义时间戳字段名
  28. protected $createTime = 'create_at';
  29. protected $updateTime = 'update_at';
  30. // 追加属性
  31. protected $append = [
  32. ];
  33. protected $table = 'q_user';
  34. /**
  35. * 注册
  36. */
  37. public static function register($phone,$password,$ver_code){
  38. $phone_use = self::where('phone',$phone)->find();
  39. if ($phone_use){
  40. return Common::return_error('手机号已注册!');
  41. }
  42. //获取最后的验证码
  43. // $time = time()-90;
  44. // $sms = Sms::where(['mobile' => $phone, 'event' => 'register'])
  45. // ->where('createtime','>',$time)
  46. // ->order('id', 'DESC')
  47. // ->find();
  48. // if (!$sms || $sms->code != $ver_code){
  49. // return Common::return_error('短信验证码不正确!');
  50. // }
  51. $data['phone'] = $phone;
  52. $data['password'] = md5($password);
  53. $data['ip'] = request()->ip();
  54. Db::startTrans();
  55. try {
  56. self::create($data);
  57. Db::commit();
  58. return Common::return_success('注册成功');
  59. }catch (Exception $e) {
  60. Db::rollback();
  61. return Common::return_error('注册失败');
  62. }
  63. }
  64. /**
  65. * 登录
  66. */
  67. public static function login($phone,$password,$type,$ver_code){
  68. $phone_use = self::where('phone',$phone)->find();
  69. if (!$phone_use){
  70. return Common::return_error('手机号未注册!');
  71. }
  72. if ($phone_use['status']!=1){
  73. return Common::return_error('账号已禁用!');
  74. }
  75. if ($type==1){
  76. if ($phone_use['password'] != md5($password)){
  77. return Common::return_error('密码错误!');
  78. }
  79. }elseif ($type==2){
  80. //获取最后的验证码
  81. // $time = time()-90;
  82. // $sms = Sms::where(['mobile' => $phone, 'event' => 'login'])
  83. // ->where('createtime','>',$time)
  84. // ->order('id', 'DESC')
  85. // ->find();
  86. // if (!$sms || $sms->code != $ver_code){
  87. // return Common::return_error('短信验证码不正确!');
  88. // }
  89. }
  90. self::where('id',$phone_use['id'])->update(['ip'=>request()->ip()]);
  91. LoginLog::create(['user_id'=>$phone_use['id'],'ip'=>request()->ip()]);
  92. $token = JWT::encode($phone_use,config('jwt.key'));
  93. return Common::return_success('登录成功',['token'=>$token]);
  94. }
  95. /**
  96. * 微信授权登录
  97. * @param $code
  98. */
  99. public static function wechatLogin($code){
  100. $appid = Config::get_values('wechat_appid');
  101. $secret = Config::get_values('wechat_appsecret');
  102. $url = "https://api.weixin.qq.com/sns/oauth2/access_token?appid=$appid&secret=$secret&code=$code&grant_type=authorization_code";
  103. $result = Common::httpcurl($url);
  104. if (isset($result['access_token'])){
  105. $access_token=$result['access_token'];
  106. $openid=$result['openid'];
  107. $urltoc = "https://api.weixin.qq.com/sns/userinfo?access_token=$access_token&openid=$openid&lang=zh_CN";
  108. $resinfos =Common::httpcurl($urltoc);
  109. //数据库是否已注册
  110. $user = self::where('status',1)->where('openid',$resinfos['openid'])->find();
  111. if ($user){
  112. self::where('id',$user['id'])->update(['ip'=>request()->ip()]);
  113. LoginLog::create(['user_id'=>$user['id'],'ip'=>request()->ip()]);
  114. $token = JWT::encode($user,config('jwt.key'));
  115. return Common::return_success('登录成功',['token'=>$token]);
  116. }else{
  117. return Common::return_error('未注册!');
  118. }
  119. }else{
  120. return Common::return_error('获取access_token失败');
  121. }
  122. }
  123. /**
  124. * 获取微信session_key
  125. */
  126. public static function getSessionKey($code){
  127. // $appid = Config::get_values('wechat_appid');
  128. // $secret = Config::get_values('wechat_appsecret');
  129. $appid = Config::get_values('small_wechat_id');
  130. $secret = Config::get_values('small_wechat_appsecret');
  131. $url = "https://api.weixin.qq.com/sns/jscode2session?appid=" . $appid . "&secret=" . $secret . "&js_code=" . $code . "&grant_type=authorization_code";
  132. $session_key = Common::curlRequest($url);
  133. return $session_key;
  134. }
  135. /**
  136. * 微信登录绑定手机号
  137. */
  138. public static function wechatLoginBindPhone($code,$rawData,$phone,$ver_code,$password){
  139. header('Access-Control-Allow-Origin: *');
  140. $phone_use = self::where('phone',$phone)->find();
  141. if ($phone_use && $phone_use['openid']!=''){
  142. return Common::return_error('手机号已被绑定!');
  143. }
  144. if ($phone_use['status']!=1){
  145. return Common::return_error('账号已禁用!');
  146. }
  147. //获取最后的验证码
  148. //$time = time()-90;
  149. // $sms = Sms::where(['mobile' => $phone, 'event' => 'bindwechat'])
  150. // ->where('createtime','>',$time)
  151. // ->order('id', 'DESC')
  152. // ->find();
  153. // if (!$sms || $sms->code != $ver_code){
  154. // return Common::return_error('短信验证码不正确!');
  155. // }
  156. $session_key = self::getSessionKey($code);
  157. if (empty($session_key['session_key'])) {
  158. return Common::return_error('获取session_key失败!');
  159. }
  160. $openid = $session_key['openid'];
  161. if (!$phone_use){
  162. $data['phone'] = $phone;
  163. $data['nickname'] = $rawData['nickName'];
  164. $data['headimg'] = $rawData['avatarUrl'];
  165. $data['openid'] = $openid;
  166. $data['password'] = md5($password);
  167. $data['ip'] = request()->ip();
  168. Db::startTrans();
  169. try {
  170. $user = self::create($data);
  171. Db::commit();
  172. $userId =$user->id;
  173. LoginLog::create(['user_id'=>$userId,'ip'=>request()->ip()]);
  174. $user = self::where('id',$userId)->find();
  175. $token = JWT::encode($user,config('jwt.key'));
  176. return Common::return_success('授权成功',['token'=>$token]);
  177. }catch (Exception $e) {
  178. Db::rollback();
  179. return Common::return_error('失败');
  180. }
  181. }else{
  182. if (self::where('id',$phone_use['id'])->update(['openid'=>$openid])){
  183. LoginLog::create(['user_id'=>$phone_use['id'],'ip'=>request()->ip()]);
  184. $token = JWT::encode($phone_use,config('jwt.key'));
  185. return Common::return_success('绑定成功',['token'=>$token]);
  186. }else{
  187. return Common::return_error('失败');
  188. }
  189. }
  190. }
  191. /**
  192. * 忘记密码
  193. */
  194. public static function forgotPassword($phone,$password,$ver_code){
  195. $phone_use = self::where('phone',$phone)->find();
  196. if (!$phone_use){
  197. return Common::return_error('手机号未注册!');
  198. }
  199. //获取最后的验证码
  200. // $time = time()-90;
  201. // $sms = Sms::where(['mobile' => $phone, 'event' => 'forgetpwd'])
  202. // ->where('createtime','>',$time)
  203. // ->order('id', 'DESC')
  204. // ->find();
  205. // if (!$sms || $sms->code != $ver_code){
  206. // return Common::return_error('短信验证码不正确!');
  207. // }
  208. $phone_use->password = md5($password);
  209. Db::startTrans();
  210. try {
  211. $phone_use->save();
  212. Db::commit();
  213. return Common::return_success('修改成功');
  214. }catch (Exception $e) {
  215. Db::rollback();
  216. return Common::return_error('修改失败');
  217. }
  218. }
  219. /**
  220. * 修改密码
  221. */
  222. public static function changePassword($user_id,$password,$ver_code){
  223. $phone_use = self::where('id',$user_id)->find();
  224. //获取最后的验证码
  225. // $time = time()-90;
  226. // $sms = Sms::where(['mobile' => $phone_use['phone'], 'event' => 'changepwd'])
  227. // ->where('createtime','>',$time)
  228. // ->order('id', 'DESC')
  229. // ->find();
  230. // if (!$sms || $sms->code != $ver_code){
  231. // return Common::return_error('短信验证码不正确!');
  232. // }
  233. $phone_use->password = md5($password);
  234. Db::startTrans();
  235. try {
  236. $phone_use->save();
  237. Db::commit();
  238. return Common::return_success('修改成功');
  239. }catch (Exception $e) {
  240. Db::rollback();
  241. return Common::return_error('修改失败');
  242. }
  243. }
  244. /**
  245. * 我的收货地址列表
  246. */
  247. public static function MyAddress($user_id,$Nowpage,$limits){
  248. $list = Address::where('is_del',0)
  249. ->where('user_id',$user_id)
  250. ->page($Nowpage,$limits)
  251. ->order('is_default desc,id desc')
  252. ->select();
  253. $data['count'] = count($list);
  254. $data['list'] = $list;
  255. return Common::return_success('成功',$data);
  256. }
  257. /**
  258. * 添加,修改收货地址
  259. */
  260. public static function AddEditAddress($user_id,$data,$address_id){
  261. if ($address_id){
  262. $address = Address::where('id',$address_id)->where('user_id',$user_id)->find();
  263. if (!$address) return Common::return_error('地址不存在');
  264. //编辑
  265. if ($address->save($data)){
  266. if ($data['is_default']==1){
  267. Address::where('user_id',$user_id)
  268. ->where('is_del',0)
  269. ->where('id','neq',$address_id)
  270. ->update(['is_default'=>0]);
  271. }
  272. return Common::return_success('编辑成功');
  273. }else{
  274. return Common::return_error('编辑失败');
  275. }
  276. }else{
  277. $data['user_id'] = $user_id;
  278. $addre = Address::create($data);
  279. if ($addre){
  280. $address_id = $addre->id;
  281. if ($data['is_default']==1){
  282. Address::where('user_id',$user_id)
  283. ->where('is_del',0)
  284. ->where('id','neq',$address_id)
  285. ->update(['is_default'=>0]);
  286. }
  287. return Common::return_success('添加成功');
  288. }else{
  289. return Common::return_error('添加失败');
  290. }
  291. }
  292. }
  293. /**
  294. * 设为默认地址
  295. */
  296. public static function SetAddressDefault($user_id,$address_id){
  297. $address = Address::where('id',$address_id)
  298. ->where('user_id',$user_id)
  299. ->find();
  300. if (!$address) return Common::return_error('地址不存在');
  301. if ($address->save(['is_default'=>1])){
  302. Address::where('user_id',$user_id)
  303. ->where('is_del',0)
  304. ->where('id','neq',$address_id)
  305. ->update(['is_default'=>0]);
  306. return Common::return_success('设置成功');
  307. }else{
  308. return Common::return_error('设置失败');
  309. }
  310. }
  311. /**
  312. * 删除收货地址
  313. */
  314. public static function DelAddress($user_id,$address_id){
  315. $address = Address::where('id',$address_id)->where('user_id',$user_id)->find();
  316. if (!$address) return Common::return_error('地址不存在');
  317. if ($address->save(['is_del'=>time()])){
  318. return Common::return_success('删除成功');
  319. }else{
  320. return Common::return_error('删除失败');
  321. }
  322. }
  323. /**
  324. * 编辑用户资料
  325. */
  326. public static function EditUserInfo($user_id,$data){
  327. if (self::where('id',$user_id)->update($data)){
  328. return Common::return_success('编辑成功');
  329. }else{
  330. return Common::return_error('编辑失败');
  331. }
  332. }
  333. /**
  334. * 申请成为设计师
  335. */
  336. public static function applyDesigner($user_id,$data){
  337. $data['type'] = 1;
  338. $data['audit'] = 1;
  339. Db::startTrans();
  340. try {
  341. self::where('id',$user_id)->update($data);
  342. Db::commit();
  343. return Common::return_success('提交成功');
  344. }catch (Exception $e) {
  345. Db::rollback();
  346. return Common::return_error('提交失败');
  347. }
  348. }
  349. /**
  350. * 投诉
  351. */
  352. public static function Message($user_id,$content){
  353. $data['content'] = $content;
  354. $data['user_id'] = $user_id;
  355. if (Message::create($data)) return Common::return_success('提交成功');
  356. return Common::return_error('提交失败');
  357. }
  358. /**
  359. * 时间管理
  360. */
  361. public static function timeList($user_id){
  362. $time = time();
  363. //组合数据
  364. $date = [];
  365. for ($i=1; $i<=7; $i++){
  366. $date[$i] = date('Y-m-d' ,strtotime( $i .' days', $time));
  367. }
  368. $array = [];
  369. foreach ($date as &$v){
  370. $da = UserTime::where('user_id',$user_id)->where('time',$v)->find();
  371. if ($da){
  372. $array2['switch'] = $da['switch'];
  373. }else{
  374. $array2['switch'] = 2;
  375. }
  376. $array2['date'] = $v;
  377. array_push($array,$array2);
  378. }
  379. return Common::return_success('成功',$array);
  380. }
  381. /**
  382. * 时间设置开关
  383. */
  384. public static function timeSwitch($user_id,$date,$switch){
  385. $info = UserTime::where('user_id',$user_id)->where('time',$date)->find();
  386. if ($info){
  387. if (UserTime::where('id',$info['id'])->update(['switch'=>$switch])){
  388. return Common::return_success('成功');
  389. }else{
  390. return Common::return_error('失败');
  391. }
  392. }else{
  393. if (UserTime::create(
  394. [
  395. 'user_id'=>$user_id,
  396. 'time'=>$date,
  397. 'switch'=>$switch,
  398. ]
  399. )){
  400. return Common::return_success('成功');
  401. }else{
  402. return Common::return_error('失败');
  403. }
  404. }
  405. }
  406. /**
  407. * 余额提现
  408. */
  409. public static function userWithdraw($user_id,$money,$withdraw_type){
  410. $userinfo = self::where('id',$user_id)->find();
  411. if ($userinfo['money']<$money)
  412. return Common::return_error('余额不足');
  413. $data['user_id'] = $user_id;
  414. $order_no = Common::getNewOrderId($user_id);
  415. $data['order_no'] = $order_no;
  416. $data['withdraw_type'] = $withdraw_type;
  417. $data['price'] = $money;
  418. Db::startTrans();
  419. try {
  420. UserWithdraw::create($data);
  421. User::money($money,$user_id,$withdraw_type=='weixin' ? '微信提现' : '支付宝提现' .$money.'元');
  422. Db::commit();
  423. return Common::return_success('提交成功');
  424. }catch (Exception $e) {
  425. Db::rollback();
  426. return Common::return_error('提交失败');
  427. }
  428. }
  429. /**
  430. * 提现记录
  431. */
  432. public static function withdrawRecord($user_id,$Nowpage,$limits){
  433. $count = UserWithdraw::where('user_id',$user_id)->count();
  434. if ($count){
  435. $list = UserWithdraw::where('user_id',$user_id)->order('id desc')->page($Nowpage,$limits)->select();
  436. foreach ($list as $k=>$v){
  437. if ($v['pay_time']){
  438. $list[$k]['pay_time'] = date('Y-m-d H:i',$v['pay_time']);
  439. }
  440. }
  441. }else{
  442. $list = [];
  443. }
  444. $data['count'] = $count;
  445. $data['list'] = $list;
  446. return Common::return_success('成功',$data);
  447. }
  448. /**
  449. * 首页设计师列表
  450. */
  451. public static function Designer($user_id,$Nowpage,$limits,$design_classifi,$keywords,$lat,$log,$city,$distance,$price,$evaluation,$date){
  452. $count = self::designerByWhere($user_id,$design_classifi,$keywords,$city,$date)->count();
  453. if ($count){
  454. $field = ['id','phone','name','nickname','headimg','price','design_classifi','skills_label','good_type','good_style','evaluation'];
  455. $field['ROUND(6378.138 * 2 * ASIN(SQRT(POW( SIN( ( ' . $lat . ' * PI( ) / 180 - wd * PI( ) / 180 ) / 2 ), 2 ) + COS( ' . $lat . ' * PI( ) / 180 ) * COS( wd * PI( ) / 180 ) * POW( SIN( ( ' . $log . ' * PI( ) / 180 - jd * PI( ) / 180 ) / 2 ), 2 ))) * 1000)'] = 'distance';
  456. $list = self::designerByWhere($user_id,$design_classifi,$keywords,$city,$date)
  457. ->field($field)
  458. ->when($distance,function ($query) use ($distance){
  459. $query->order('distance '.$distance);
  460. })
  461. ->when($price,function ($query) use ($price){
  462. $query->order('price '.$price);
  463. })
  464. ->when($evaluation,function ($query) use ($evaluation){
  465. $query->order('evaluation '.$evaluation);
  466. })
  467. ->page($Nowpage,$limits)
  468. ->select();
  469. $time = time();
  470. //组合数据
  471. $date = [];
  472. for ($i=1; $i<=7; $i++){
  473. $date[$i] = date('Y-m-d' ,strtotime( $i .' days', $time));
  474. }
  475. foreach ($list as &$v){
  476. $array = [];
  477. foreach ($date as &$a){
  478. $da = UserTime::where('user_id',$user_id)->where('time',$a)->find();
  479. if ($da){
  480. $order = Order::where('designer_id',$v['id'])
  481. ->where('yy_date',$a)
  482. ->where('is_del',1)
  483. ->whereIn('status','1,2')
  484. ->count();
  485. if ($order){
  486. $array2['switch'] = 2;
  487. }else{
  488. $array2['switch'] = $da['switch'];
  489. }
  490. }else{
  491. $array2['switch'] = 2;
  492. }
  493. $array2['date'] = $a;
  494. array_push($array,$array2);
  495. }
  496. $v['date_list'] = $array;
  497. }
  498. }else{
  499. $list = [];
  500. }
  501. return Common::return_success('成功',compact('count','list'));
  502. }
  503. /**
  504. * 首页设计师列表where条件
  505. */
  506. public static function designerByWhere($user_id,$design_classifi,$keywords,$city,$date){
  507. $query = self::where('status',1)
  508. ->when($design_classifi,function ($query) use ($design_classifi){
  509. $query->where('design_classifi',$design_classifi);
  510. })
  511. ->when($keywords,function ($query) use ($keywords){
  512. $query->whereLike('name|nickname|skills_label|design_classifi|good_type|good_style',$keywords);
  513. })
  514. ->when($city,function ($query) use ($city){
  515. $query->where('city',$city);
  516. })
  517. ->when($date,function ($query) use ($date){
  518. $ids1 = UserTime::where('time',$date)
  519. ->where('switch',1)
  520. ->column('user_id');
  521. $ids2 = Order::where('yy_date',$date)
  522. ->where('is_del',1)
  523. ->whereIn('status','1,2')
  524. ->column('designer_id');
  525. $ids = array_diff($ids1,$ids2); //对比两数组差异
  526. $query->whereIn('id',$ids);
  527. })
  528. //->where('id','neq',$user_id)
  529. ->where('type',2);
  530. return $query;
  531. }
  532. /**
  533. * 获取可使用优惠券列表
  534. */
  535. public static function getCouponList($user_id,$money){
  536. CouponUser::couponsTimeOut($user_id);
  537. $list = CouponUser::where('user_id',$user_id)
  538. ->where('use_min_price','<=',$money)
  539. ->where('end_time','>',time())
  540. ->where('status',0)
  541. ->select();
  542. return Common::return_success('成功',$list);
  543. }
  544. /**
  545. * 下单
  546. */
  547. public static function PlaceOrder($user_id,$address_id,$designer_id,$yy_date,$project_name,$coupon_id,$pay_type){
  548. $designer = self::where('id',$designer_id)
  549. ->where('type',2)
  550. ->where('status',1)
  551. ->find();
  552. if (!$designer) Common::return_error('设计师不存在');
  553. $address = Address::where('id',$address_id)
  554. ->where('user_id',$user_id)
  555. ->where('is_del',0)
  556. ->find();
  557. if (!$address) Common::return_error('地址不存在');
  558. $time = UserTime::where('user_id',$user_id)
  559. ->where('time',$yy_date)
  560. ->where('switch',1)
  561. ->find();
  562. $order = Order::where('designer_id',$designer_id)
  563. ->where('is_del',1)
  564. ->whereIn('status','1,2')
  565. ->where('yy_date',$yy_date)
  566. ->find();
  567. if (!$time || $order) Common::return_error('预约日期设计师已接单');
  568. //价格
  569. $price = $designer['price'];
  570. $coupon_price = 0;
  571. $pay_price = $price;
  572. if ($coupon_id){
  573. $coupon = CouponUser::where('id',$coupon_id)
  574. ->where('user_id',$user_id)
  575. ->where('status',0)
  576. ->find();
  577. if (!$coupon) Common::return_error('优惠券不存在');
  578. $coupon_price = $coupon['coupon_price'];
  579. $pay_price = bcsub($pay_price,$coupon_price,2);
  580. }
  581. //服务时间
  582. $servicing_time = Config::get_values('service_start_time').'-'.Config::get_values('service_end_time');
  583. //订单号
  584. $order_no = Common::getNewOrderId($user_id);
  585. $data = [
  586. 'order_no'=>$order_no,
  587. 'user_id'=>$user_id,
  588. 'designer_id'=>$designer_id,
  589. 'address_id'=>$address_id,
  590. 'name'=>$address['name'],
  591. 'phone'=>$address['phone'],
  592. 'province'=>$address['province'],
  593. 'city'=>$address['city'],
  594. 'area'=>$address['area'],
  595. 'address'=>$address['address'],
  596. 'yy_date'=>$yy_date,
  597. 'servicing_time'=>$servicing_time,
  598. 'project_name'=>$project_name,
  599. 'coupon_id'=>$coupon_id,
  600. 'pay_type'=>$pay_type,
  601. 'price'=>$price,
  602. 'coupon_price'=>$coupon_price,
  603. 'pay_price'=>$pay_price,
  604. ];
  605. Db::startTrans();
  606. try {
  607. $order = self::create($data);
  608. $order_id = $order->id;
  609. Common::order_status($order_id,'订单生成');
  610. switch ($pay_type){
  611. case 'weixin':
  612. $wx = new WxPay();//实例化微信torganizationid支付控制器
  613. $body = '订单号' . $order_no;//支付说明
  614. $total_fee = $pay_price * 100;//支付金额(乘以100)
  615. $notify_url = 'https://'.$_SERVER['SERVER_NAME'].'/api/pay/pay_order';//回调地址
  616. $out_trade_no = $order_no;//订单号
  617. $config = $wx->retrunconfig2();
  618. try{
  619. $app = Factory::payment($config);
  620. $result = $app->order->unify([
  621. 'body' => $body,
  622. 'out_trade_no' => $out_trade_no,
  623. 'total_fee' => $total_fee,
  624. 'notify_url' => $notify_url, // 支付结果通知网址,如果不设置则会使用配置里的默认地址
  625. 'trade_type' => 'APP', // 请对应换成你的支付方式对应的值类型
  626. ]);
  627. $jssdk = $app->jssdk;
  628. $order1 = $jssdk->appConfig($result['prepay_id']);
  629. self::where('order_no',$order_no)->update(['wx_order'=>json_encode($order1,true)]);
  630. Db::commit();
  631. $retrun_data['order_no'] = $order_no;
  632. $retrun_data['pay'] = $order1;
  633. return Common::return_success('成功',$retrun_data);
  634. }catch (Exception $e){
  635. Db::rollback();
  636. return Common::return_error($order['return_msg']);
  637. }
  638. break;
  639. case 'zfb':
  640. if ($coupon_id){
  641. $coupon = self::checkCoupon($user['id'],$coupon_id,$price);
  642. if (!$coupon) return Common::return_error('优惠券不可用');
  643. $coupon_price = $coupon['coupon_price'];
  644. $price2 = bcsub($price,$coupon_price,2);
  645. $difference_money = $price2;
  646. }else{
  647. $difference_money = 0;
  648. $coupon_price = 0;
  649. $price2 = $price;
  650. }
  651. self::where('order_no',$order_no)->update(['pay_type'=>$pay_type,'coupon_price'=>$coupon_price,'difference_money'=>$difference_money,'all_money'=>$price]);
  652. $zfb = new AliPay();//实例化支付宝支付控制器
  653. $body = '全民创商品支付';//支付说明
  654. $out_trade_no = $order_no;//订单号
  655. $total_fee = $price2;//支付金额(乘以100)
  656. $notify_url = 'https://'.$_SERVER['SERVER_NAME'].'/api/pay/alipay_order';//回调地址
  657. $order = $zfb->aliPay($body, $total_fee, $out_trade_no, $notify_url);//调用支付宝支付的方法
  658. $retrun_data['order_no'] = $order_no;
  659. $retrun_data['pay'] = $order;
  660. Db::commit();
  661. return Common::return_success('成功',$retrun_data);
  662. break;
  663. }
  664. }catch (Exception $e) {
  665. Db::rollback();
  666. return Common::return_error('失败');
  667. }
  668. }
  669. /**
  670. * 根据手机号获取用户信息
  671. */
  672. public static function getByMobile($phone){
  673. $userinfo = self::where('phone',$phone)->find();
  674. return $userinfo;
  675. }
  676. /**
  677. * 获取用户信息
  678. */
  679. public static function getUserInfo($id){
  680. $info = self::where('id',$id)->field('password',true)->find();
  681. return $info;
  682. }
  683. /**
  684. * 变更会员余额
  685. * @param int $money 余额
  686. * @param int $user_id 会员ID
  687. * @param string $memo 备注
  688. */
  689. public static function money($money, $user_id, $memo, $pm = 0)
  690. {
  691. $user = self::get($user_id);
  692. if ($user)
  693. {
  694. $before = $user->money;
  695. if ($pm==1){
  696. $after = $user->money + $money;
  697. }else{
  698. $after = $user->money - $money;
  699. }
  700. //更新会员信息
  701. $user->save(['money' => $after]);
  702. //写入日志
  703. MoneyLog::create(['user_id' => $user_id,'pm' => $pm, 'change_money' => $money, 'before' => $before, 'after' => $after, 'title' => $memo]);
  704. }
  705. }
  706. }