UserCenter.php 45 KB

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