UserCenter.php 50 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254
  1. <?php
  2. namespace app\api\controller;
  3. use AlibabaCloud\Client\AlibabaCloud;
  4. use AlibabaCloud\Client\Exception\ClientException;
  5. use AlibabaCloud\Client\Exception\ServerException;
  6. use app\common\library\AliPay;
  7. use app\common\library\AliPay2;
  8. use app\common\library\Shande;
  9. use EasyWeChat\Factory;
  10. use think\cache\driver\Redis;
  11. use think\Db;
  12. use think\facade\Validate;
  13. /**
  14. * @title 会员个人中心
  15. * @controller UserCenter
  16. * @group base
  17. */
  18. class UserCenter extends Base
  19. {
  20. public function initialize()
  21. {
  22. parent::initialize();
  23. parent::check_login();
  24. }
  25. /**
  26. * @title 获取个人信息
  27. * @desc 个人信息
  28. * @author Gavin
  29. * @url /api/User_center/getUserInfo
  30. * @method POST
  31. * @tag 个人信息
  32. * @header name:Authorization require:1 desc:Token
  33. * @return name:id type:int default:-- desc:ID(邀请ID)
  34. * @return name:phone type:string default:-- desc:手机号
  35. * @return name:name type:string default:-- desc:昵称
  36. * @return name:headimg type:string default:-- desc:头像地址
  37. * @return name:integral type:int default:-- desc:积分
  38. * @return name:snap_card type:int default:-- desc:抢购卡
  39. * @return name:wallet_address type:int default:-- desc:钱包地址
  40. * @return name:true_name type:string default:-- desc:真实姓名
  41. * @return name:id_card type:string default:-- desc:身份证号
  42. * @return name:is_auth type:int default:-- desc:是否认证(0否1是)
  43. * @return name:auth_at type:string default:-- desc:认证时间
  44. * @return name:vip_name type:int default:-- desc:身份
  45. * @return name:is_order_no_paid type:string default:-- desc:是否有未支付订单true:有false:没有
  46. * @return name:is_sign type:string default:-- desc:今日是否已经签到true:已签到false:未签到
  47. * @return name:invite_img type:string default:-- desc:邀请二维码
  48. * @return name:invite_address type:string default:-- desc:邀请地址
  49. * @return name:lucky_number type:int default:-- desc:剩余抽奖次数
  50. * @return name:money type:string default:-- desc:余额
  51. * @return name:is_password type:string default:-- desc:是否设置二级密码
  52. */
  53. public function getUserInfo()
  54. {
  55. $uid = $this->uid;
  56. $user_info = Db::name('store_member')
  57. ->field('password',true)
  58. ->where('id',$uid)
  59. ->find();
  60. if(empty($user_info)) $this->error('用户信息不正确');
  61. $user_info['vip_name'] = $user_info['vip']==1 ? "藏友" : "创世勋章";
  62. //是否有待支付订单
  63. $order = Db::name('store_order')->where('status',0)->where('is_deleted',0)->where('mid',$uid)->count();
  64. $user_info['is_order_no_paid'] = $order ? true : false;
  65. //今日是否签到
  66. $date = date('Y-m-d');
  67. $sign = Db::name('store_member_sign')->where('mid',$uid)->where('date',$date)->count();
  68. $user_info['is_sign'] = $sign ? true : false;
  69. //获取每日免费次数
  70. $free_number = getConfigValue('free_lucky_number');
  71. //获取当日免费抽奖记录
  72. $date = date('Y-m-d');
  73. $now_date_count = Db::name('store_blind_box_log')->where('m_id',$this->uid)->where('date',$date)->where('is_free',0)->count();
  74. if (!$user_info['invite_img'] || !$user_info['invite_address']){
  75. $code = $user_info['invite_code'];
  76. $invite_img = setintivecode($code);
  77. $invite_address = getintiveaddress($code);
  78. Db::name('store_member')->where('id',$this->uid)->update(['invite_img'=>$invite_img,'invite_address'=>$invite_address]);
  79. }
  80. $user_info['invite_img'] = str_replace('http:','https:',$user_info['invite_img']);
  81. $lucky_number = $user_info['lottery_number'] + ($free_number-$now_date_count);
  82. $user_info['lucky_number'] =$lucky_number<=0 ? 0 : $lucky_number;
  83. $user_info['is_password'] = !empty($user_info['second_password']) ? 1 : 0;
  84. unset($user_info['second_password']);
  85. $this->success('获取成功',$user_info);
  86. }
  87. /**
  88. * @title 绑定opendid
  89. * @desc 绑定opendid
  90. * @author Gavin
  91. * @url /api/User_center/bindOpenid
  92. * @method POST
  93. * @tag 编辑信息
  94. * @header name:Authorization require:1 desc:Token
  95. *
  96. * @param name:code type:string require:0 default:-- desc:code
  97. */
  98. public function bindOpenid()
  99. {
  100. $this->success('绑定成功');
  101. $code = input('code');
  102. if(empty($code)) $this->error('参数错误');
  103. $appid = 'wxb5a55711e16751c4';
  104. $secret = 'aa959279388afa034c32081ed05ed07b';
  105. $res = http_get('https://api.weixin.qq.com/sns/oauth2/access_token?appid='.$appid.'&secret='.$secret.'&code='.$code.'&grant_type=authorization_code');
  106. $res = json_decode($res,true);
  107. if (isset($res['openid'])){
  108. $update_data['openid'] = $res['openid'];
  109. $update_data['update_at'] = date('Y-m-d H:i:s');
  110. if (Db::name('store_member')->where('id',$this->uid)->update($update_data)){
  111. setMemberInfoHash($this->uid);
  112. $this->success('绑定成功');
  113. }
  114. $this->error('绑定失败');
  115. }else{
  116. $this->error('获取openid失败');
  117. }
  118. }
  119. /**
  120. * @title 编辑个人信息
  121. * @desc 编辑个人信息
  122. * @author Gavin
  123. * @url /api/User_center/updateUserInfo
  124. * @method POST
  125. * @tag 编辑信息
  126. * @header name:Authorization require:1 desc:Token
  127. *
  128. * @param name:name type:string require:0 default:-- desc:姓名
  129. * @param name:headimg type:string require:0 default:-- desc:头像地址
  130. */
  131. public function updateUserInfo()
  132. {
  133. $headimg = input('post.headimg');
  134. $name = trim(input('post.name',''));
  135. if(!$headimg && !$name) $this->error('参数错误');
  136. $update_data= [];
  137. if($name) $update_data['name'] = $name;
  138. if ($headimg) $update_data['headimg'] = $headimg;
  139. if($name){
  140. $check_member = Db::name('store_member')
  141. ->where('name',$name)
  142. ->where('id','<>',$this->uid)
  143. ->count();
  144. if($check_member) $this->error('该用户名已被占用');
  145. }
  146. $update_data['update_at'] = date('Y-m-d H:i:s');
  147. if (Db::name('store_member')->where('id',$this->uid)->update($update_data)){
  148. setMemberInfoHash($this->uid);
  149. $this->success('编辑成功');
  150. }
  151. $this->error('编辑失败');
  152. }
  153. /**
  154. * @title 绑定支付宝
  155. * @desc 绑定支付宝
  156. * @author Gavin
  157. * @url /api/User_center/bind_zfb
  158. * @method POST
  159. * @tag 编辑信息
  160. * @header name:Authorization require:1 desc:Token
  161. *
  162. * @param name:account type:string require:0 default:-- desc:支付宝账号
  163. * @param name:zfb_real_name type:string require:0 default:-- desc:真实姓名
  164. */
  165. public function bind_zfb(){
  166. $this->check_login();
  167. $account = input('account'); //账号
  168. $real_name = input('real_name'); //真实姓名
  169. if (!$account) $this->error('支付宝账号为空');
  170. if (!$real_name) $this->error('真实姓名为空');
  171. $update_data['zfb_account'] = $account;
  172. $update_data['zfb_real_name'] = $real_name;
  173. $update_data['update_at'] = date('Y-m-d H:i:s');
  174. if (Db::name('store_member')->where('id',$this->uid)->update($update_data)){
  175. setMemberInfoHash($this->uid);
  176. $this->success('绑定成功');
  177. }
  178. $this->error('绑定失败');
  179. }
  180. /**
  181. * @title 实名认证
  182. * @desc 实名认证
  183. * @author Gavin
  184. * @method POST
  185. * @tag 编辑信息
  186. * @url /api/User_center/userCertification
  187. * @header name:Authorization require:1 desc:Token
  188. * @param name:true_name type:string require:1 default:-- desc:真实姓名
  189. * @param name:phone type:string require:1 default:-- desc:手机号
  190. * @param name:id_card type:string require:1 default:-- desc:身份证号
  191. */
  192. public function userCertification(){
  193. $true_name = input('post.true_name');
  194. $id_card = input('post.id_card');
  195. $phone = input('post.phone');
  196. if (!$true_name || !$id_card || !$phone) $this->error('参数错误');
  197. if (!$true_name || !$id_card ) $this->error('参数错误');
  198. $check_id_card = isCreditNo($id_card);
  199. if (!$check_id_card) $this->error('身份证号格式错误');
  200. if (!Validate::regex($phone, "^1\d{10}$")) {
  201. $this->error('手机号格式错误');
  202. }
  203. $is_auth = Db::table('store_member')->where('id',$this->uid)->value('is_auth');
  204. if($is_auth) $this->error('已认证');
  205. $check = Db::name('store_member')->where('id_card',$id_card)->count();
  206. if ($check) $this->error('身份证号已经认证过');
  207. if (!userThreecertification($id_card,$true_name,$phone)) $this->error('身份证与姓名与手机号验证失败');
  208. // if (!identifyCertification($id_card,$true_name)) $this->error('身份证与姓名验证失败');
  209. if (Db::table('store_member')->where('id',$this->uid)->update(['is_auth'=>1,'true_name'=>$true_name,'id_card'=>$id_card,'true_phone'=>$phone,'auth_at'=>date('Y-m-d H:i:s')])){
  210. setMemberInfoHash($this->uid);
  211. $this->success('认证成功');
  212. }
  213. $this->error('认证失败');
  214. }
  215. /**
  216. * @title 修改密码
  217. * @desc 修改密码
  218. * @author Gavin
  219. * @method POST
  220. * @tag 编辑信息
  221. * @url /api/User_center/updatePass
  222. * @header name:Authorization require:1 desc:Token
  223. * @param name:old_password type:string require:1 default:-- desc:旧密码
  224. * @param name:new_password type:string require:1 default:-- desc:新密码
  225. * @param name:confirm_password type:string require:1 default:-- desc:确认密码
  226. */
  227. public function updatePass()
  228. {
  229. $old_password = input('post.old_password');
  230. $new_password = input('post.new_password');
  231. $confirm_password = input('post.confirm_password');
  232. // $yzm = input('post.yzm');
  233. // if (!$old_password || !$new_password || !$confirm_password || !$yzm) $this->error('参数错误');
  234. if (!$old_password || !$new_password || !$confirm_password) $this->error('参数错误');
  235. if ($new_password!=$confirm_password) $this->error('密码与确认密码不一致');
  236. if (!preg_match('/^[0-9a-z]{6,12}$/i',$new_password)) $this->error('密码格式错误,请输入6-12位数字+字母');
  237. $member = Db::name('store_member')->where('id',$this->uid)->find();
  238. //验证短信验证码
  239. /*$time = time()-60;
  240. $sms = Db::name('store_sms')->where(['mobile' => $member['phone'], 'event' => 'forgetpwd'])
  241. ->where('createtime','>',$time)
  242. ->order('id', 'DESC')
  243. ->find();
  244. if (!$sms || $sms['code'] != $yzm) $this->error('短信验证码不正确!');*/
  245. if ($member['password']!=md5($old_password)) $this->error('旧密码错误');
  246. $data['password'] = md5($new_password);
  247. $data['update_at'] = date('Y-m-d H:i:s');
  248. if (Db::name('store_member')->where('id',$this->uid)->update($data)){
  249. setMemberInfoHash($this->uid);
  250. $this->success('修改成功');
  251. }
  252. $this->error('修改失败');
  253. }
  254. /**
  255. * @title 修改二级密码
  256. * @desc 修改二级密码
  257. * @author Gavin
  258. * @method POST
  259. * @tag 编辑信息
  260. * @url /api/User_center/updateSecondPass
  261. * @header name:Authorization require:1 desc:Token
  262. * @param name:second_password type:string require:1 default:-- desc:二级密码
  263. * @param name:confirm_second_password type:string require:1 default:-- desc:确认密码
  264. */
  265. public function updateSecondPass()
  266. {
  267. $second_password = input('post.second_password');
  268. $confirm_second_password = input('post.confirm_second_password');
  269. $yzm = input('post.yzm');
  270. if (!$second_password || !$confirm_second_password) $this->error('参数错误');
  271. if ($second_password!=$confirm_second_password) $this->error('密码与确认密码不一致');
  272. if (!preg_match('/^[0-9]{6}$/i',$second_password)) $this->error('支付密码格式错误,请输入6位纯数字');
  273. $member = getMemberInfoHash($this->uid); //获取用户信息
  274. //验证短信验证码
  275. // $time = time()-60;
  276. // $sms = Db::name('store_sms')->where(['mobile' => $member['phone'], 'event' => 'forgetpwd'])
  277. // ->where('createtime','>',$time)
  278. // ->order('id', 'DESC')
  279. // ->find();
  280. // if (!$sms || $sms['code'] != $yzm) $this->error('短信验证码不正确!');
  281. $data['second_password'] = md5($second_password);
  282. $data['update_at'] = date('Y-m-d H:i:s');
  283. if (Db::name('store_member')->where('id',$this->uid)->update($data)){
  284. setMemberInfoHash($this->uid);
  285. $this->success('修改成功');
  286. }
  287. $this->error('修改失败');
  288. }
  289. /**
  290. * @title 我的藏品
  291. * @desc 我的藏品
  292. * @author Gavin
  293. * @method POST
  294. * @tag 编辑信息
  295. * @url /api/User_center/myCollection
  296. * @header name:Authorization require:1 desc:Token
  297. *
  298. * @param name:type type:int require:1 default:0 desc:类型0全部;1藏品;3盲盒
  299. *
  300. * @return name:id type:int require:0 default:0 desc:藏品ID
  301. * @return name:tag type:string require:0 default:0 desc:唯一标签
  302. * @return name:name type:string require:0 default:0 desc:藏品名称
  303. * @return name:cover type:string require:0 default:0 desc:藏品图片
  304. * @return name:auth_img type:string require:0 default:0 desc:作者头像
  305. * @return name:auth_name type:string require:0 default:0 desc:作者名称
  306. * @return name:num type:int require:0 default:0 desc:藏品数量
  307. * @return name:type type:int require:0 default:0 desc:藏品类型1藏品3盲盒
  308. * @return name:buy_num type:int require:0 default:0 desc:寄售中
  309. * @return name:hold_num type:int require:0 default:0 desc:持有
  310. */
  311. public function myCollection(){
  312. $type = input('post.type');
  313. switch ($type){
  314. case 0: $type = "1,3,4";break;
  315. case 1: $type = "1,4";break;
  316. case 3: $type = "3";break;
  317. }
  318. $list = Db::name('store_order_info')
  319. ->where('mid',$this->uid)
  320. ->where('status','neq','2')
  321. ->where('is_destruction',1)
  322. ->where('resale_status','neq',3)
  323. ->whereIn('type',$type)
  324. ->field('id,tag,pro_info,count(c_id) as num,type,c_id')
  325. ->group('c_id')
  326. ->order('id desc')
  327. ->select();
  328. foreach ($list as &$v){
  329. $pro_info = json_decode($v['pro_info'],true);
  330. $v['name'] = $pro_info['name'];
  331. $v['cover'] = $pro_info['cover'];
  332. $v['auth_img'] = $pro_info['auth_img'];
  333. $v['auth_name'] = $pro_info['auth_name'];
  334. //查询持有、寄售
  335. $countData = [
  336. 'uid' => $this->uid,
  337. 'c_id' => $v['c_id'],
  338. 'type' => $type,
  339. 'resale_status' => 1,
  340. ];
  341. $v['hold_num'] = $this->getStatusCollectionCount($countData);
  342. $countData['resale_status'] = 2;
  343. $v['buy_num'] = $this->getStatusCollectionCount($countData);
  344. unset($v['pro_info']);
  345. }
  346. $this->success('成功',$list);
  347. }
  348. /**
  349. * @title 藏品列表
  350. * @desc 藏品列表
  351. * @author Gavin
  352. * @method POST
  353. * @tag 编辑信息
  354. * @url /api/User_center/myCollectionList
  355. * @header name:Authorization require:1 desc:Token
  356. *
  357. * @param name:cid type:int require:1 default:0 desc:藏品id
  358. * @param name:type type:int require:1 default:0 desc:类型0全部;1藏品;3盲盒
  359. *
  360. * @return name:id type:int require:0 default:0 desc:藏品ID
  361. * @return name:tag type:string require:0 default:0 desc:唯一标签
  362. * @return name:name type:string require:0 default:0 desc:藏品名称
  363. * @return name:cover type:string require:0 default:0 desc:藏品图片
  364. * @return name:auth_img type:string require:0 default:0 desc:作者头像
  365. * @return name:auth_name type:string require:0 default:0 desc:作者名称
  366. * @return name:type type:int require:0 default:0 desc:藏品类型1藏品3盲盒
  367. * @return name:resale_status type:int require:0 default:0 desc:持有状态1持有中2挂售中
  368. // * @return name:buy_num type:int require:0 default:0 desc:寄售中
  369. // * @return name:hold_num type:int require:0 default:0 desc:持有
  370. */
  371. public function myCollectionList(){
  372. $cid = input('post.cid');
  373. if(empty($cid)) $this->error('参数错误');
  374. $type = input('post.type');
  375. switch ($type){
  376. case 0: $type = "1,3,4";break;
  377. case 1: $type = "1,4";break;
  378. case 3: $type = "3";break;
  379. }
  380. $list = Db::name('store_order_info')
  381. ->where('mid',$this->uid)
  382. ->where('status','neq','2')
  383. ->where('is_destruction',1)
  384. ->where('resale_status','neq',3)
  385. ->where('c_id',$cid)
  386. ->whereIn('type',$type)
  387. ->field('id,tag,pro_info,type,resale_status')
  388. ->order('resale_status asc,id desc')
  389. ->select();
  390. foreach ($list as &$v){
  391. $pro_info = json_decode($v['pro_info'],true);
  392. $v['name'] = $pro_info['name'];
  393. $v['cover'] = $pro_info['cover'];
  394. $v['auth_img'] = $pro_info['auth_img'];
  395. $v['auth_name'] = $pro_info['auth_name'];
  396. unset($v['pro_info']);
  397. }
  398. $this->success('成功',$list);
  399. }
  400. /**
  401. * 获取对于状态藏品数量
  402. * @param $result
  403. * @return bool
  404. */
  405. function getStatusCollectionCount($result){
  406. return Db::name('store_order_info')
  407. ->where('mid',$result['uid'])
  408. ->where('status','neq','2')
  409. ->where('is_destruction',1)
  410. ->where('resale_status','eq',$result['resale_status'])
  411. ->where('c_id',$result['c_id'])
  412. ->whereIn('type',$result['type'])
  413. ->order('id desc')
  414. ->count('c_id');
  415. }
  416. /**
  417. * @title 我的盲盒
  418. * @desc 我的盲盒
  419. * @author Gavin
  420. * @method POST
  421. * @tag 编辑信息
  422. * @url /api/User_center/myBoxCollection
  423. * @header name:Authorization require:1 desc:Token
  424. *
  425. * @return name:id type:int require:0 default:0 desc:藏品ID
  426. * @return name:tag type:string require:0 default:0 desc:唯一标签
  427. * @return name:name type:string require:0 default:0 desc:藏品名称
  428. * @return name:cover type:string require:0 default:0 desc:藏品图片
  429. * @return name:auth_img type:string require:0 default:0 desc:作者头像
  430. * @return name:auth_name type:string require:0 default:0 desc:作者名称
  431. */
  432. public function myBoxCollection(){
  433. parent::check_login();
  434. $list = Db::name('store_order_info')
  435. ->where('mid',$this->uid)
  436. ->where('status','neq','2')
  437. ->where('type',3)
  438. ->where('is_destruction',1)
  439. ->where('resale_status',1)
  440. ->field('id,tag,pro_info')
  441. ->order('id desc')
  442. ->select();
  443. foreach ($list as &$v){
  444. $pro_info = json_decode($v['pro_info'],true);
  445. $v['name'] = $pro_info['name'];
  446. $v['cover'] = $pro_info['cover'];
  447. $v['auth_img'] = $pro_info['auth_img'];
  448. $v['auth_name'] = $pro_info['auth_name'];
  449. unset($v['pro_info']);
  450. }
  451. $this->success('成功',$list);
  452. }
  453. /**
  454. * @title 藏品详情
  455. * @desc 藏品详情
  456. * @author Gavin
  457. * @method POST
  458. * @tag 编辑信息
  459. * @url /api/User_center/myCollectionDetail
  460. * @header name:Authorization require:1 desc:Token
  461. * @param name:id type:int require:1 default:-- desc:藏品ID
  462. *
  463. * @return name:id type:int require:0 default:0 desc:藏品ID
  464. * @return name:tag type:string require:0 default:0 desc:唯一标签
  465. * @return name:collectors_name type:string require:0 default:0 desc:收藏者
  466. * @return name:collectors_hash type:string require:0 default:0 desc:收藏者hash
  467. * @return name:create_at type:string require:0 default:0 desc:收藏时间
  468. * @return name:company type:string require:0 default:0 desc:流转公司
  469. * @return name:company_hash type:string require:0 default:0 desc:流转公司hash
  470. * @return name:examples_illustrate type:string require:0 default:0 desc:转赠说明
  471. * @return name:pro_info@name type:string require:0 default:0 desc:藏品名称
  472. * @return name:pro_info@price type:string require:0 default:0 desc:藏品价格
  473. * @return name:pro_info@label type:string require:0 default:0 desc:藏品标签
  474. * @return name:pro_info@cover type:string require:0 default:0 desc:藏品图片
  475. * @return name:pro_info@auth_img type:string require:0 default:0 desc:作者头像
  476. * @return name:pro_info@auth_name type:string require:0 default:0 desc:作者姓名
  477. * @return name:pro_info@warm_prompt type:string require:0 default:0 desc:温馨提示
  478. * @return name:pro_info@share_img type:string require:0 default:0 desc:分享二维码
  479. */
  480. public function myCollectionDetail(){
  481. $id = input('id');
  482. if (!$id) $this->error('参数错误');
  483. $info = Db::name('store_order_info')
  484. ->where('mid',$this->uid)
  485. ->where('id',$id)
  486. ->find();
  487. if (!$info) $this->error('藏品不存在');
  488. $info['pro_info'] = json_decode($info['pro_info'],true);
  489. if (!isset($info['pro_info']['share_img'])){
  490. $info['pro_info']['share_img'] = Db::name('store_collection')->where('id',$info['pro_info']['id'])->value('share_img');
  491. }
  492. $info['collectors_name'] = Db::name('store_member')->where('id',$this->uid)->value('name');
  493. $info['collectors_hash'] = $info['collectors_hash']=='' ? "发放中" : $info['collectors_hash'];
  494. $info['collectors_hash_time'] = $info['collectors_hash_time']=='' ? "发放中" : $info['collectors_hash_time'];
  495. $info['examples_illustrate'] = Db::table('system_config')->where('name','examples_illustrate')->value('value');
  496. $info['contract_address'] = "dd82c57d4b7389a688f9f2247f84e455e76a8da9bb5a7272a1b6b0a83ba25bff";
  497. $this->success('成功',$info);
  498. }
  499. /**
  500. * @title 转赠
  501. * @desc 转赠
  502. * @author Gavin
  503. * @method POST
  504. * @tag 编辑信息
  505. * @url /api/User_center/examples
  506. * @header name:Authorization require:1 desc:Token
  507. * @param name:id type:int require:1 default:-- desc:藏品ID
  508. * @param name:phone type:string require:1 default:-- desc:手机号
  509. * @param name:wallet_address type:int require:1 default:-- desc:钱包地址
  510. * @param name:second_password type:int require:1 default:-- desc:二级密码
  511. *
  512. */
  513. public function examples(){
  514. $this->error('暂时关闭');
  515. $id = input('id');
  516. $redis = new Redis([ 'select'=> 2]);
  517. $redis_value = $redis->get('examples'.$this->uid);
  518. if ($redis_value){
  519. $this->error('请求过快,请稍后重试');
  520. }else{
  521. $redis->set('examples'.$this->uid,1,2);
  522. }
  523. $phone = input('phone');
  524. $wallet_address = input('wallet_address');
  525. $second_password = input('second_password');
  526. if (!$id || !$phone || !$wallet_address) $this->error('参数错误');
  527. $info = Db::name('store_order_info')->where('id',$id)->where('mid',$this->uid)->find();
  528. if (!$info) $this->error('藏品不存在');
  529. if ($info['status']==2) $this->error('藏品已转赠');
  530. $member = Db::name('store_member')->where('phone',$phone)->where('wallet_address',$wallet_address)->find();
  531. if (!$member) $this->error('转赠用户不存在');
  532. if (!$info['collectors_hash']) $this->error('发放中,无法转赠');
  533. $mem = getMemberInfoHash($this->uid);
  534. if ($mem['second_password']!=md5($second_password)) $this->error('密码错误');
  535. $pro_info = Db::name('store_collection')->where('id',$info['c_id'])->find();
  536. $log = Db::name('store_collect_examples_log')
  537. ->where('order_info_id',$id)
  538. ->find();
  539. if (!$log){
  540. if ($pro_info['one_given_day']!=0){
  541. $exam_time = strtotime($info['create_at'])+($pro_info['one_given_day']*24*60*60);
  542. if ($exam_time>time()) $this->error('持有时间限制,无法转赠');
  543. }
  544. }else{
  545. if ($pro_info['other_given_day']!=0){
  546. $exam_time = strtotime($log['create_at'])+($pro_info['other_given_day']*24*60*60);
  547. if ($exam_time>time()) $this->error('持有时间限制,无法转赠');
  548. }
  549. }
  550. $com = true;
  551. Db::startTrans();
  552. try {
  553. Db::name('store_order_info')
  554. ->where('id',$id)
  555. ->update(['status'=>2,'over_time'=>date('Y-m-d H:i:s'),'to_mid'=>$member['id']]);
  556. $to_date = [
  557. 'order_id'=>$info['order_id'],
  558. 'order_no'=>get_order_sn(),
  559. 'tag'=>$info['tag'],
  560. 'mid'=>$member['id'],
  561. 'c_id'=>$info['c_id'],
  562. 'name'=>$pro_info['name'],
  563. 'cover'=>$pro_info['cover'],
  564. 'pro_info'=>$info['pro_info'],
  565. 'status'=>3,
  566. 'to_mid'=>$this->uid,
  567. 'over_time'=>date('Y-m-d H:i:s'),
  568. 'company'=>'南宁中科数艺科技有限公司',
  569. 'company_hash'=>$info['company_hash'],
  570. 'company_hash_time'=>$info['company_hash_time'],
  571. 'ddcid'=>$info['ddcid'],
  572. 'collectors_hash'=>'',
  573. 'collectors_hash_time'=>date('Y-m-d H:i:s')
  574. ];
  575. $new_id = Db::name('store_order_info')->insertGetId($to_date);
  576. $log_date = [
  577. 'order_info_id'=>$new_id,
  578. 'mid'=>$this->uid,
  579. 'to_mid'=>$member['id'],
  580. 'date'=>date('Y-m')
  581. ];
  582. Db::name('store_collect_examples_log')->insert($log_date);
  583. Db::commit();
  584. }catch (\Exception $e){
  585. $com = false;
  586. Db::rollback();
  587. }
  588. if ($com){
  589. $this->success('转赠成功');
  590. }
  591. $this->error('转赠失败');
  592. }
  593. /**
  594. * @title 消息列表
  595. * @desc 消息列表
  596. * @author Gavin
  597. * @method POST
  598. * @tag 编辑信息
  599. * @url /api/User_center/messageList
  600. * @header name:Authorization require:1 desc:Token
  601. *
  602. * @param name:page type:int : default:1 desc:页数
  603. * @param name:page_num type:int : default:20 desc:每页数
  604. *
  605. * @return name:id type:int require:0 default:0 desc:消息ID
  606. * @return name:title type:string require:0 default:0 desc:标题
  607. * @return name:content type:string require:0 default:0 desc:内容
  608. * @return name:create_at type:string require:0 default:0 desc:发布时间
  609. * @return name:is_read type:string require:0 default:0 desc:是否查看true:已查看false:未查看
  610. */
  611. public function messageList(){
  612. $count = Db::name('store_message')->where('is_deleted',0)->count();
  613. $list = Db::name('store_message')
  614. ->field('is_deleted,update_at',true)
  615. ->where('is_deleted',0)
  616. ->order('id desc')
  617. ->limit($this->off_set,$this->page_num)
  618. ->select();
  619. // echo Db::name('store_message')->getLastSql();die;
  620. foreach ($list as &$v){
  621. $is_read = Db::name('store_message_read_log')->where('mid',$this->uid)->where('message_id',$v['id'])->count();
  622. $v['is_read'] = $is_read ? true : false;
  623. }
  624. $this->success('成功',compact('count','list'));
  625. }
  626. /**
  627. * @title 点击消息
  628. * @desc 点击消息,查看消息
  629. * @author Gavin
  630. * @method POST
  631. * @tag 编辑信息
  632. * @url /api/User_center/readMessage
  633. * @header name:Authorization require:1 desc:Token
  634. *
  635. * @param name:id type:int : default:1 desc:消息ID
  636. *
  637. */
  638. public function readMessage(){
  639. $id = input('id');
  640. if (!$id) $this->error('参数错误');
  641. $log = Db::name('store_message_read_log')->where('message_id',$id)->where('mid',$this->uid)->count();
  642. if (!$log){
  643. $data = [
  644. 'mid'=>$this->uid,
  645. 'message_id'=>$id
  646. ];
  647. Db::name('store_message_read_log')->insert($data);
  648. }
  649. $this->success('成功');
  650. }
  651. /**
  652. * @title 人脸认证sign
  653. * @desc 人脸认证sign
  654. * @author Gavin
  655. * @method POST
  656. * @tag 编辑信息
  657. * @url /api/User_center/getFaceSign
  658. * @header name:Authorization require:1 desc:Token
  659. *
  660. *
  661. * @param name:name type:string default:1 desc:姓名
  662. * @param name:idNo type:string default:1 desc:身份证号
  663. *
  664. * @return name:sign type:string require: default:-- desc:签名
  665. *
  666. */
  667. public function getFaceSign(){
  668. $name = input('name');
  669. $idNo = input('idNo');
  670. if (!$name || !$idNo) $this->error('参数错误');
  671. $userId = $this->uid;
  672. //$userId = get32Str();
  673. $data = getfaceid($name,$idNo,$userId);
  674. $this->success('成功',$data);
  675. }
  676. /**
  677. * @title 邀请记录
  678. * @desc 邀请记录
  679. * @author Gavin
  680. * @method POST
  681. * @tag 编辑信息
  682. * @url /api/User_center/invitedRecord
  683. * @header name:Authorization require:1 desc:Token
  684. *
  685. * @param name:page type:int : default:1 desc:页数
  686. * @param name:page_num type:int : default:20 desc:每页数
  687. *
  688. * @return name:id type:int require:0 default:0 desc:用户ID
  689. * @return name:headimg type:string require:0 default:0 desc:头像
  690. * @return name:name type:string require:0 default:0 desc:名称
  691. * @return name:phone type:string require:0 default:0 desc:手机号
  692. * @return name:create_at type:string require:0 default:0 desc:时间
  693. */
  694. public function invitedRecord(){
  695. $count = Db::name('store_member')->where('pid',$this->uid)->count();
  696. $list = Db::name('store_member')
  697. ->field('id,headimg,name,phone,create_at')
  698. ->where('pid',$this->uid)
  699. ->order('id desc')
  700. ->limit($this->off_set,$this->page_num)
  701. ->select();
  702. foreach ($list as &$v){
  703. $v['phone'] = substr_replace($v['phone'],'****',3,4);
  704. $v['create_at'] = date('Y-m-d',strtotime($v['create_at']));
  705. }
  706. $this->success('成功',compact('count','list'));
  707. }
  708. /**
  709. * @title 邀请排行榜
  710. * @desc 邀请排行榜
  711. * @author Gavin
  712. * @method POST
  713. * @tag 编辑信息
  714. * @url /api/User_center/invitedList
  715. * @header name:Authorization require:1 desc:Token
  716. *
  717. * @param name:page type:int : default:1 desc:页数
  718. * @param name:page_num type:int : default:20 desc:每页数
  719. *
  720. * @return name:id type:int require:0 default:0 desc:用户ID
  721. * @return name:headimg type:string require:0 default:0 desc:头像
  722. * @return name:name type:string require:0 default:0 desc:名称
  723. * @return name:phone type:string require:0 default:0 desc:手机号
  724. * @return name:create_at type:string require:0 default:0 desc:时间
  725. */
  726. public function invitedList(){
  727. $count = Db::name('store_member as a')
  728. ->field('a.id,a.name,a.headimg,a.phone,a.pid,(select count(b.id) from store_member as b where b.pid=a.id) as count')
  729. ->group('a.id')
  730. ->having('count>0')
  731. ->count();
  732. $list = Db::name('store_member as a')
  733. ->field('a.id,a.name,a.headimg,a.phone,a.pid,(select count(b.id) from store_member as b where b.pid=a.id) as count')
  734. ->group('a.id')
  735. ->having('count>0')
  736. ->order('count desc')
  737. ->limit($this->off_set,$this->page_num)
  738. ->select();
  739. $this->success('成功',compact('count','list'));
  740. }
  741. /**
  742. * @title 签到
  743. * @desc 签到
  744. * @author Gavin
  745. * @method POST
  746. * @tag 编辑信息
  747. * @url /api/User_center/sign
  748. * @header name:Authorization require:1 desc:Token
  749. *
  750. */
  751. public function sign(){
  752. $date = date('Y-m-d');
  753. $log = Db::name('store_member_sign')->where('mid',$this->uid)->where('date',$date)->count();
  754. if ($log) $this->error('今日已签到');
  755. $data = [
  756. 'mid'=>$this->uid,
  757. 'date'=>$date
  758. ];
  759. $com = true;
  760. Db::startTrans();
  761. try {
  762. $id = Db::name('store_member_sign')->insertGetId($data);
  763. $sign_integral = getConfigValue('sign_integral');
  764. if ($sign_integral>0){
  765. memberMoneyChange($sign_integral,1,$this->uid,'签到',1,$id);
  766. }
  767. Db::commit();
  768. }catch (\Exception $e){
  769. $com=false;
  770. Db::rollback();
  771. }
  772. if ($com){
  773. $this->success('签到成功');
  774. }
  775. $this->error('签到失败');
  776. }
  777. /**
  778. * @title 积分记录
  779. * @desc 积分记录
  780. * @author Gavin
  781. * @method POST
  782. * @tag 编辑信息
  783. * @url /api/User_center/integralLog
  784. * @header name:Authorization require:1 desc:Token
  785. *
  786. * @param name:page type:int : default:1 desc:页数
  787. * @param name:page_num type:int : default:20 desc:每页数
  788. *
  789. * @return name:id type:int require:0 default:0 desc:id
  790. * @return name:change type:string require:0 default:0 desc:变动数值
  791. * @return name:title type:string require:0 default:0 desc:标题
  792. * @return name:create_at type:string require:0 default:0 desc:时间
  793. */
  794. public function integralLog(){
  795. $where = [
  796. 'm_id'=>$this->uid,
  797. 'type'=>1
  798. ];
  799. $count = Db::name('store_member_log')->where($where)->count();
  800. $list = Db::name('store_member_log')
  801. ->field('id,pm,change,title,create_at')
  802. ->where($where)
  803. ->order('id desc')
  804. ->limit($this->off_set,$this->page_num)
  805. ->select();
  806. foreach ($list as &$v){
  807. if ($v['pm']==1){
  808. $v['change'] = '+'.$v['change'];
  809. }else{
  810. $v['change'] = '-'.$v['change'];
  811. }
  812. }
  813. $this->success('成功',compact('count','list'));
  814. }
  815. /**
  816. * @title 余额记录
  817. * @desc 余额记录
  818. * @author Gavin
  819. * @method POST
  820. * @tag 编辑信息
  821. * @url /api/User_center/moneyLog
  822. * @header name:Authorization require:1 desc:Token
  823. *
  824. * @param name:source type:int : default:0 desc:类型0全部;1消费;2充值;3提现;4出售佣金
  825. * @param name:page type:int : default:1 desc:页数
  826. * @param name:page_num type:int : default:20 desc:每页数
  827. *
  828. * @return name:id type:int require:0 default:0 desc:id
  829. * @return name:change type:string require:0 default:0 desc:变动数值
  830. * @return name:title type:string require:0 default:0 desc:标题
  831. * @return name:create_at type:string require:0 default:0 desc:时间
  832. */
  833. public function moneyLog(){
  834. $where = [
  835. 'm_id'=>$this->uid,
  836. 'type'=>3
  837. ];
  838. $type = input('post.type');
  839. if(!empty($type)) $where['source'] = $type;
  840. $count = Db::name('store_member_log')->where($where)->count();
  841. $list = Db::name('store_member_log')
  842. ->field('id,pm,change,title,create_at')
  843. ->where($where)
  844. ->order('id desc')
  845. ->limit($this->off_set,$this->page_num)
  846. ->select();
  847. foreach ($list as &$v){
  848. if ($v['pm']==1){
  849. $v['change'] = '+'.$v['change'];
  850. }else{
  851. $v['change'] = '-'.$v['change'];
  852. }
  853. }
  854. $this->success('成功',compact('count','list'));
  855. }
  856. /**
  857. * @title 提现
  858. * @desc 提现
  859. * @author Gavin
  860. * @method POST
  861. * @tag 编辑信息
  862. * @url /api/User_center/withdraw
  863. * @header name:Authorization require:1 desc:Token
  864. *
  865. * @param name:money type:int : default: desc:提现金额
  866. * @param name:withdraw_type type:int : default: desc:提现方式
  867. * @param name:withdraw_bank type:int : default: desc:银行卡号
  868. * @param name:withdraw_name type:int : default: desc:姓名
  869. *
  870. */
  871. public function withdraw(){
  872. $v = getConfigValue('withdraw_switch');
  873. if (!$v) $this->error('维护中,暂时关闭');
  874. $redis = new Redis(['select'=>2]);
  875. $redis_value = $redis->get('withdraw'.$this->uid);
  876. if ($redis_value){
  877. $this->error('请求过快,请稍后重试');
  878. }else{
  879. $redis->set('withdraw'.$this->uid,1,3);
  880. }
  881. $money = input('money');
  882. $withdraw_type = input('withdraw_type','wx');
  883. $withdraw_bank = input('withdraw_bank','');
  884. $withdraw_name = input('withdraw_name','');
  885. if (!$money || !$withdraw_bank || !$withdraw_name) $this->error('参数错误');
  886. $user = Db::name('store_member')->where('id',$this->uid)->find();
  887. if ($user['money']<$money) $this->error('余额不足');
  888. $withdraw_min_price = getConfigValue('withdraw_min_price'); //最小提现金额
  889. $withdraw_max_price = getConfigValue('withdraw_max_price'); //最大提现金额
  890. $poundage_proportion = getConfigValue('poundage_proportion'); //手续费百分比
  891. if ($money < $withdraw_min_price)
  892. $this->error('最低提现'.$withdraw_min_price.'元');
  893. if ($money > $withdraw_max_price)
  894. $this->error('最大提现'.$withdraw_min_price.'元');
  895. if ($withdraw_type=='bank'){
  896. if (!$withdraw_bank || !$withdraw_name) $this->error('请输入提现银行卡信息');
  897. }
  898. $data['mid'] = $this->uid;
  899. $order_no = get_order_sn();
  900. $data['order_no'] = $order_no;
  901. $data['price'] = $money;
  902. $data['poundage_proportion'] = $poundage_proportion;
  903. $proportion = sprintf("%.2f", $money*($poundage_proportion/100)); //四舍五入保留两位小数点
  904. $data['proportion'] = $proportion;
  905. $real_money = $money-$proportion;
  906. $data['real_money'] = $real_money;
  907. $data['withdraw_type'] = $withdraw_type;
  908. $data['withdraw_bank'] = $withdraw_bank;
  909. $data['withdraw_name'] = $withdraw_name;
  910. $id =Db::name('store_member_withdraw')->insertGetId($data);
  911. if ($id){
  912. Db::startTrans();
  913. try {
  914. //减少用户余额
  915. $res = memberMoneyChange($money,3,$this->uid,'余额提现',0,$id,['source'=>3]);
  916. //更新用户信息
  917. setMemberInfoHash($this->uid);
  918. Db::commit();
  919. $this->success('提现成功');
  920. }catch (Exception $e) {
  921. Db::rollback();
  922. $this->error('提现失败,请稍后重试1');
  923. }
  924. }else{
  925. $this->error('提现失败,请稍后重试2');
  926. }
  927. }
  928. /**
  929. * @title 充值余额设置
  930. * @desc 充值余额设置
  931. * @author Gavin
  932. * @method POST
  933. * @tag
  934. * @url /api/User_center/rechargeBalanceSet
  935. * @header name:Authorization require:1 desc:Token
  936. *
  937. *
  938. */
  939. public function rechargeBalanceSet(){
  940. $recharge_min_price = getConfigValue('recharge_min_price'); //最小充值金额
  941. $recharge_service_charge = getConfigValue('recharge_service_charge'); //手续费百分比
  942. $retrun_data['min_price'] = $recharge_min_price;
  943. $retrun_data['service_charge'] = $recharge_service_charge;
  944. $this->success('成功',$retrun_data);
  945. }
  946. /**
  947. * @title 充值余额
  948. * @desc 充值余额
  949. * @author Gavin
  950. * @method POST
  951. * @tag
  952. * @url /api/User_center/rechargeBalance
  953. * @header name:Authorization require:1 desc:Token
  954. *
  955. * @param name:money type:int : default: desc:充值金额
  956. * @param name:pay_type type:string require:1 default:wx desc:wx:微信zfb:支付宝
  957. * @param name:from type:string require:1 default:wx desc:wx:微信公众号h5:网页
  958. *
  959. */
  960. public function rechargeBalance(){
  961. $v = getConfigValue('recharge_switch');
  962. if (!$v) $this->error('维护中,暂时关闭');
  963. $redis = new Redis(['select'=>2]);
  964. $redis_value = $redis->get('recharge'.$this->uid);
  965. if ($redis_value){
  966. $this->error('请求过快,请稍后重试');
  967. }else{
  968. $redis->set('recharge'.$this->uid,1,3);
  969. }
  970. $money = input('money');
  971. $pay_type = input('pay_type','wx');
  972. $from = input('from','wx');
  973. if (!$money) $this->error('参数错误');
  974. $user = Db::name('store_member')->where('id',$this->uid)->find();
  975. if ($from == 'wx'){
  976. if (!$user['openid']) $this->error('微信未授权,无法购买');
  977. }
  978. if ($from == 'h5'){
  979. $this->error('微信h5未开通');
  980. }
  981. if ($pay_type == 'zfb'){
  982. $this->error('支付宝暂未开通');
  983. }
  984. $recharge_min_price = getConfigValue('recharge_min_price'); //最小充值金额
  985. $recharge_service_charge = getConfigValue('recharge_service_charge'); //手续费百分比
  986. if ($money < $recharge_min_price)
  987. $this->error('最低充值'.$recharge_min_price.'元');
  988. $body = "会员充值余额";
  989. $order_no = get_order_sn();
  990. $redis_data = [
  991. 'uid' => $this->uid,
  992. 'order_no' => $order_no,
  993. 'create_at' => date('Y-m-d H:i:s'),
  994. 'pay_price' => $money,
  995. 'pay_type' => $pay_type,
  996. 'status' => 0,
  997. 'remark' => $body
  998. ];
  999. $redis_data['service_charge'] = $recharge_service_charge;
  1000. $fee = sprintf("%.2f", $money*($recharge_service_charge/100)); //四舍五入保留两位小数点
  1001. $redis_data['fee'] = $fee;
  1002. $real_money = $money-$fee;
  1003. $redis_data['real_money'] = $real_money;
  1004. $order_id = Db::name('store_recharge_order')->insertGetId($redis_data);
  1005. $com = true;
  1006. $total_fee = $money;
  1007. switch ($pay_type){
  1008. case 'wx':
  1009. $config = retrunWxConfig();
  1010. $total_fee = $total_fee * 100;
  1011. $config['notify_url'] = $this->request->root(true).'/api/Pay/WxRechargeOrderNotify';
  1012. $app = Factory::payment($config);
  1013. $post_data = [
  1014. 'body' => $body,
  1015. 'out_trade_no' => $order_no,
  1016. 'total_fee' => $total_fee,
  1017. 'attach'=>$this->uid, //自定义传值
  1018. ];
  1019. //trade_type SAPI--JSAPI支付(或小程序支付)、NATIVE--Native支付、APP--app支付,MWEB--H5支付
  1020. if ($from=='wx'){
  1021. $post_data['openid'] = $user['openid'];
  1022. $post_data['trade_type'] = 'JSAPI';
  1023. }elseif ($from=='h5'){
  1024. $post_data['trade_type'] = 'MWEB';
  1025. }
  1026. $result = $app->order->unify($post_data);
  1027. debug($result);
  1028. if ($result['return_msg']=='OK'){
  1029. if ($result['result_code']=='FAIL'){
  1030. $com = false;
  1031. }else{
  1032. $order1 = $app->jssdk->bridgeConfig($result['prepay_id']);//执行二次签名返回参数
  1033. $retrun_data['order_no'] = $order_no;
  1034. $retrun_data['pay'] = json_decode($order1,true);
  1035. }
  1036. }else{
  1037. $com = false;
  1038. }
  1039. break;
  1040. case 'zfb':
  1041. $zfb = new AliPay();
  1042. $notify_url = $this->request->root(true).'/api/Pay/alipayRechargeOrderNotify?attach='.$this->uid;//回调地址
  1043. $order = $zfb->ali_pay_pc($body, $total_fee, $order_no, $notify_url,'https://'.$_SERVER['SERVER_NAME'].'/web/h5/pages/mine/order-list?num=1');//调用支付宝支付的方法
  1044. $retrun_data['order_no'] = $order_no;
  1045. $retrun_data['pay'] = $order;
  1046. break;
  1047. case 'sd':
  1048. $client = new Shande();
  1049. $notify_url = 'https://'.$_SERVER['SERVER_NAME'].'/api/Pay/shandeRechargeOrderNotify';//回调地址
  1050. $total_fee = $total_fee*100;
  1051. $lenth = strlen($total_fee);
  1052. $total_fee = get0number($lenth).$total_fee;
  1053. $result = $client->orderPay($order_no.'S'.$this->uid,$total_fee,$body,$notify_url,'https://'.$_SERVER['SERVER_NAME'].'/pages/mine/mine');
  1054. $retrun_data['order_no'] = $order_no;
  1055. $retrun_data['pay'] = json_decode($result['data'],true);
  1056. Db::commit();
  1057. break;
  1058. }
  1059. if ($com){
  1060. // $redis = new Redis();
  1061. // $redis->hMSet('rechargeorder_not_pay_'.$this->uid,[$order_no=>json_encode($redis_data)]); //存入redis
  1062. $this->success('成功',$retrun_data);
  1063. }else{
  1064. $this->error('服务器繁忙,请稍后重试');
  1065. }
  1066. }
  1067. /**
  1068. * @title 打开盲盒
  1069. * @desc 打开盲盒
  1070. * @author Gavin
  1071. * @method POST
  1072. * @tag 编辑信息
  1073. * @url /api/User_center/openBoxCollection
  1074. * @header name:Authorization require:1 desc:Token
  1075. *
  1076. * @param name:id type:int : default: desc:藏品ID
  1077. *
  1078. */
  1079. public function openBoxCollection(){
  1080. //redis原子锁
  1081. if (redisSetNx('openBox'.$this->uid,3)){
  1082. $id = input('id');
  1083. if (!$id) $this->error('参数错误');
  1084. $info = Db::name('store_order_info')
  1085. ->where('id',$id)
  1086. ->where('mid',$this->uid)
  1087. ->where('is_destruction',1)
  1088. ->find();
  1089. if (!$info) $this->error('盲盒不存在');
  1090. if ($info['resale_status']!=1) $this->error('盲盒挂售中或已出售');
  1091. $com = true;
  1092. Db::startTrans();
  1093. try {
  1094. //销毁
  1095. Db::name('store_order_info')->where('id',$id)->update(['is_destruction'=>0]);
  1096. $prize_arr = Db::name('store_box')
  1097. ->where('status',1)
  1098. ->where('coll_id',$info['c_id'])
  1099. ->where('is_del',1)
  1100. ->field('id,rate')
  1101. ->select();
  1102. foreach ($prize_arr as $key => $val) {
  1103. $arr[$val['id']] = $val['rate'];//概率数组
  1104. }
  1105. $rid = get_rand($arr); //根据概率获取奖项id
  1106. $pr_info = Db::name('store_box')->where('id',$rid)->field('id,title,prize,is_prize')->find();
  1107. $return = [
  1108. 'is_prize'=>$pr_info['is_prize']
  1109. ];
  1110. $coll_info = getCollectionInfoHash($pr_info['prize']);
  1111. if ($pr_info['is_prize']==1){
  1112. $json_info = json_encode($coll_info,true);
  1113. $return['name'] = $pr_info['title'];
  1114. $return['cover'] = $coll_info['cover'];
  1115. }else{
  1116. $json_info = '';
  1117. $return['name'] = '未中奖';
  1118. $return['cover'] = '';
  1119. }
  1120. $data = [
  1121. 'm_id'=>$this->uid,
  1122. 'b_id'=>$rid,
  1123. 'is_prize'=>$pr_info['is_prize'],
  1124. 'name'=>$return['name'],
  1125. 'cover'=>$return['cover'],
  1126. 'info'=>$json_info,
  1127. 'date'=>date('Y-m-d'),
  1128. 'is_free'=>1
  1129. ];
  1130. Db::name('store_blind_box_log')->insert($data);
  1131. if ($pr_info['is_prize']==1){
  1132. //获取排名
  1133. $rank = getRanking($pr_info['prize'])+1;
  1134. $tag = getTag($pr_info['prize'],$rank,$coll_info['inventory']);
  1135. saveRanking($pr_info['prize']);
  1136. $company = '奥艺数字文创购买藏品';
  1137. $hash = getCompanyHash($pr_info['prize']);
  1138. $company_hash = $hash['hash'];
  1139. $company_hash_time = $hash['create_at'];
  1140. $tokenid = $hash['tokenid'];
  1141. Db::name('hash')->where('hash',$hash['hash'])->update(['status'=>1]);
  1142. $collectors_hash = '';
  1143. $date = [
  1144. 'order_id'=>0,
  1145. 'order_no'=>get_order_sn(),
  1146. 'tag'=>$tag,
  1147. 'mid'=>$this->uid,
  1148. 'c_id'=>$pr_info['prize'],
  1149. 'name'=>$coll_info['name'],
  1150. 'cover'=>$coll_info['cover'],
  1151. 'pro_info'=>$json_info,
  1152. 'company'=>$company,
  1153. 'company_hash'=>$company_hash,
  1154. 'company_hash_time'=>$company_hash_time,
  1155. 'ddcid'=>$tokenid,
  1156. 'collectors_hash'=>$collectors_hash,
  1157. 'collectors_hash_time'=>'',
  1158. 'status'=>1
  1159. ];
  1160. Db::name('store_order_info')->insert($date);
  1161. }
  1162. Db::commit();
  1163. }catch (Exception $e) {
  1164. $com = false;
  1165. Db::rollback();
  1166. }
  1167. if ($com){
  1168. setMemberInfoHash($this->uid);
  1169. if ($pr_info['is_prize']==1){
  1170. //减掉库存
  1171. loseCollectionInventory($pr_info['prize'],1);
  1172. }
  1173. DelRedisSetNx('openBox'.$this->uid);
  1174. $this->success('成功',$return);
  1175. }else{
  1176. DelRedisSetNx('openBox'.$this->uid);
  1177. $this->error('开启失败,请稍后重试');
  1178. }
  1179. }else{
  1180. $this->error('请求过快');
  1181. }
  1182. }
  1183. }