UserCenter.php 58 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353
  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. use think\Exception;
  10. /**
  11. * @title 会员个人中心
  12. * @controller UserCenter
  13. * @group base
  14. */
  15. class UserCenter extends Base
  16. {
  17. public function initialize()
  18. {
  19. parent::initialize();
  20. parent::check_login();
  21. }
  22. /**
  23. * @title 获取个人信息
  24. * @desc 个人信息
  25. * @author Gavin
  26. * @url /api/User_center/getUserInfo
  27. * @method POST
  28. * @tag 个人信息
  29. * @header name:Authorization require:1 desc:Token
  30. * @return name:id type:int default:-- desc:ID(邀请ID)
  31. * @return name:phone type:string default:-- desc:手机号
  32. * @return name:name type:string default:-- desc:昵称
  33. * @return name:headimg type:string default:-- desc:头像地址
  34. * @return name:integral type:int default:-- desc:积分
  35. * @return name:snap_card type:int default:-- desc:抢购卡
  36. * @return name:wallet_address type:int default:-- desc:钱包地址
  37. * @return name:true_name type:string default:-- desc:真实姓名
  38. * @return name:id_card type:string default:-- desc:身份证号
  39. * @return name:is_auth type:int default:-- desc:是否认证(0否1是)
  40. * @return name:auth_at type:string default:-- desc:认证时间
  41. * @return name:vip_name type:int default:-- desc:身份
  42. * @return name:bank_num type:string default:-- desc:银行卡号【判断是否绑定银行卡】
  43. * @return name:bank_user type:string default:-- desc:银行卡持有人
  44. * @return name:is_order_no_paid type:string default:-- desc:是否有未支付订单true:有false:没有
  45. * @return name:is_sign type:string default:-- desc:今日是否已经签到true:已签到false:未签到
  46. * @return name:invite_img type:string default:-- desc:邀请二维码
  47. * @return name:invite_address type:string default:-- desc:邀请地址
  48. * @return name:lucky_number type:int default:-- desc:剩余抽奖次数
  49. * @return name:money type:string default:-- desc:余额
  50. * @return name:share_poster type:string default:-- desc:分享海报
  51. */
  52. public function getUserInfo()
  53. {
  54. $uid = $this->uid;
  55. $user_info = Db::name('store_member')
  56. ->field('password,second_password',true)
  57. ->where('id',$uid)
  58. ->find();
  59. if(empty($user_info)) $this->error('用户信息不正确');
  60. $user_info['vip_name'] = '普通会员';
  61. //是否有待支付订单
  62. $order = Db::name('store_order')->where('status',0)->where('is_deleted',0)->where('mid',$uid)->count();
  63. $user_info['is_order_no_paid'] = $order ? true : false;
  64. $user_info['is_sign'] = false;
  65. //获取每日免费次数
  66. $free_number = getConfigValue('free_lucky_number');
  67. //获取当日免费抽奖记录
  68. $date = date('Y-m-d');
  69. $now_date_count = Db::name('store_blind_box_log')->where('m_id',$this->uid)->where('date',$date)->where('is_free',0)->count();
  70. $lucky_number = $user_info['lottery_number'] + ($free_number-$now_date_count);
  71. $user_info['lucky_number'] =$lucky_number<=0 ? 0 : $lucky_number;
  72. //生成邀请码
  73. if (!$user_info['invite_img'] || !$user_info['invite_address']){
  74. $code = $user_info['invite_code'];
  75. $invite_img = setintivecode($code);
  76. $invite_address = getintiveaddress($code);
  77. Db::name('store_member')->where('id',$this->uid)->update(['invite_img'=>$invite_img,'invite_address'=>$invite_address]);
  78. }
  79. $user_info['invite_img'] = str_replace('http:','https:',$user_info['invite_img']);
  80. $user_info['share_poster'] = sysconf('share_poster');
  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. $account = input('account'); //账号
  162. $real_name = input('real_name'); //真实姓名
  163. if (!$account) $this->error('支付宝账号为空');
  164. if (!$real_name) $this->error('真实姓名为空');
  165. $update_data['zfb_account'] = $account;
  166. $update_data['zfb_real_name'] = $real_name;
  167. $update_data['update_at'] = date('Y-m-d H:i:s');
  168. if (Db::name('store_member')->where('id',$this->uid)->update($update_data)){
  169. setMemberInfoHash($this->uid);
  170. $this->success('绑定成功');
  171. }
  172. $this->error('绑定失败');
  173. }
  174. /**
  175. * @title 绑定【更换绑定】银行卡
  176. * @desc 绑定【更换绑定】银行卡
  177. * @author qc
  178. * @url /api/User_center/bind_bank
  179. * @method POST
  180. * @tag 编辑信息
  181. * @header name:Authorization require:1 desc:Token
  182. *
  183. * @param name:bank_num type:string require:0 default:-- desc:银行卡号
  184. * @param name:bank_user type:string require:0 default:-- desc:姓名
  185. */
  186. public function bind_bank(){
  187. $bank_num = input('bank_num'); //账号
  188. $bank_user = input('bank_user'); //真实姓名
  189. $pay_password = input('pay_password'); //真实姓名
  190. if (!$bank_num) $this->error('银行卡号不能为空');
  191. if (!$bank_user) $this->error('姓名不能为空');
  192. if(check_bankCard($bank_num) != 1) $this->error('银行卡格式错误');
  193. $user_info = Db::name('store_member')->where('id',$this->uid)->find();
  194. if ($user_info['bank_num'] == $bank_num && $user_info['bank_user'] == $bank_user) $this->error('与原绑定信息一致');
  195. $update_data['bank_num'] = $bank_num;
  196. $update_data['bank_user'] = $bank_user;
  197. if (Db::name('store_member')->where('id',$this->uid)->update($update_data)){
  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/userCertification
  210. * @header name:Authorization require:1 desc:Token
  211. * @param name:true_name type:string require:1 default:-- desc:真实姓名
  212. * @param name:id_card type:string require:1 default:-- desc:身份证号
  213. */
  214. public function userCertification(){
  215. $true_name = input('post.true_name');
  216. $id_card = input('post.id_card');
  217. if (!$true_name || !$id_card) $this->error('参数错误');
  218. $check_id_card = isCreditNo($id_card);
  219. if (!$check_id_card) $this->error('身份证号格式错误');
  220. $is_auth = Db::table('store_member')->where('id',$this->uid)->value('is_auth');
  221. if($is_auth) $this->error('已认证');
  222. $check = Db::name('store_member')->where('id_card',$id_card)->count();
  223. if ($check) $this->error('身份证号已经认证过');
  224. if (!identifyCertification($id_card,$true_name)) $this->error('身份证与姓名验证失败');
  225. 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')])){
  226. setMemberInfoHash($this->uid);
  227. $this->success('认证成功');
  228. }
  229. $this->error('认证失败');
  230. }
  231. /**
  232. * @title 修改密码
  233. * @desc 修改密码
  234. * @author Gavin
  235. * @method POST
  236. * @tag 编辑信息
  237. * @url /api/User_center/updatePass
  238. * @header name:Authorization require:1 desc:Token
  239. * @param name:old_password type:string require:1 default:-- desc:旧密码
  240. * @param name:new_password type:string require:1 default:-- desc:新密码
  241. * @param name:confirm_password type:string require:1 default:-- desc:确认密码
  242. */
  243. public function updatePass()
  244. {
  245. $old_password = input('post.old_password');
  246. $new_password = input('post.new_password');
  247. $confirm_password = input('post.confirm_password');
  248. if (!$old_password || !$new_password || !$confirm_password) $this->error('参数错误');
  249. if ($new_password!=$confirm_password) $this->error('密码与确认密码不一致');
  250. if (!preg_match('/^[0-9a-z]{6,12}$/i',$new_password)) $this->error('密码格式错误,请输入6-12位数字+字母');
  251. $member = Db::name('store_member')->where('id',$this->uid)->find();
  252. if ($member['password']!=md5($old_password)) $this->error('旧密码错误');
  253. $data['password'] = md5($new_password);
  254. $data['update_at'] = date('Y-m-d H:i:s');
  255. if (Db::name('store_member')->where('id',$this->uid)->update($data)){
  256. setMemberInfoHash($this->uid);
  257. $this->success('修改成功');
  258. }
  259. $this->error('修改失败');
  260. }
  261. /**
  262. * @title 修改支付密码
  263. * @desc 修改支付密码
  264. * @author Gavin
  265. * @method POST
  266. * @tag 编辑信息
  267. * @url /api/User_center/updateSecondPass
  268. * @header name:Authorization require:1 desc:Token
  269. * @param name:second_password type:string require:1 default:-- desc:支付密码
  270. * @param name:confirm_second_password type:string require:1 default:-- desc:确认密码
  271. */
  272. public function updateSecondPass()
  273. {
  274. $second_password = input('post.second_password');
  275. $confirm_second_password = input('post.confirm_second_password');
  276. $yzm = input('post.yzm');
  277. if (!$second_password || !$confirm_second_password) $this->error('参数错误');
  278. if ($second_password!=$confirm_second_password) $this->error('密码与确认密码不一致');
  279. if (!preg_match('/^[0-9]{6}$/i',$second_password)) $this->error('支付密码格式错误,请输入6位纯数字');
  280. $member = getMemberInfoHash($this->uid); //获取用户信息
  281. //验证短信验证码
  282. // $time = time()-60;
  283. // $sms = Db::name('store_sms')->where(['mobile' => $member['phone'], 'event' => 'forgetpwd'])
  284. // ->where('createtime','>',$time)
  285. // ->order('id', 'DESC')
  286. // ->find();
  287. // if (!$sms || $sms['code'] != $yzm) $this->error('短信验证码不正确!');
  288. $data['second_password'] = md5($second_password);
  289. $data['update_at'] = date('Y-m-d H:i:s');
  290. if (Db::name('store_member')->where('id',$this->uid)->update($data)){
  291. setMemberInfoHash($this->uid);
  292. $this->success('修改成功');
  293. }
  294. $this->error('修改失败');
  295. }
  296. /**
  297. * @title 我的藏品
  298. * @desc 我的藏品
  299. * @author Gavin
  300. * @method POST
  301. * @tag 编辑信息
  302. * @url /api/User_center/myCollection
  303. * @header name:Authorization require:1 desc:Token
  304. * @param name:type type:int require:0 default:1 desc:类型(0全部1:藏品,3:盲盒)
  305. * @return name:id type:int require:0 default:0 desc:藏品ID
  306. * @return name:tag type:string require:0 default:0 desc:唯一标签
  307. * @return name:name type:string require:0 default:0 desc:藏品名称
  308. * @return name:type type:int default:1 desc:类型(1:藏品,3:盲盒)
  309. * @return name:cover type:string require:0 default:0 desc:藏品图片
  310. * @return name:resale_price type:string require:0 default:0 desc:二级市场挂售价格
  311. * @return name:auth_img type:string require:0 default:0 desc:作者头像
  312. * @return name:auth_name type:string require:0 default:0 desc:作者名称
  313. * @return name:resale_status type:string require:0 default:0 desc:1:未挂售2挂售中3已出售
  314. * @return name:is_destruction type:int require:0 default:0 desc:1:盲盒状态1未开启0已开启
  315. * @return name:send_btn type:int require:0 default:0 desc:是否可以赠送1是0否
  316. * @return name:send_time type:string require:0 default:-- desc:可以赠时间【send_btn=1时为空】
  317. */
  318. public function myCollection(){
  319. $type = input('type',1);
  320. $list = Db::name('store_order_info')
  321. ->where('mid',$this->uid)
  322. ->where('status','neq','2')
  323. ->where('is_destruction',1)
  324. ->where('resale_status',1)
  325. ->when($type,function ($query)use($type){ if($type) $query->where('type',$type);})
  326. ->field('id,c_id,tag,pro_info,resale_status,resale_price,type,is_destruction,create_at')
  327. ->order('id desc')
  328. ->select();
  329. foreach ($list as &$v){
  330. $pro_info = json_decode($v['pro_info'],true);
  331. $v['name'] = $pro_info['name'];
  332. $v['cover'] = $pro_info['cover'];
  333. $v['auth_img'] = $pro_info['auth_img'];
  334. $v['auth_name'] = $pro_info['auth_name'];
  335. $goods_info = Db::name('store_collection')->where('id',$v['c_id'])->find();
  336. $log = Db::name('store_collect_examples_log')->where('order_info_id',$v['id'])->find();
  337. $v['send_btn'] = 1;
  338. $v['send_time'] = '';
  339. if (!$log){
  340. if ($goods_info['one_given_day']!=0) {
  341. $exam_time = strtotime($v['create_at'])+($goods_info['one_given_day']*60*60);
  342. if ($exam_time>time()){
  343. $v['send_btn'] = 0;
  344. $v['send_time'] = date('Y-m-d H:i:s',$exam_time);
  345. }
  346. }
  347. }else{
  348. if ($pro_info['other_given_day']!=0){
  349. $exam_time = strtotime($log['create_at'])+($pro_info['other_given_day']*60*60);
  350. if ($exam_time>time()) {
  351. $v['send_btn'] = 0;
  352. $v['send_time'] = date('Y-m-d H:i:s',$exam_time);
  353. }
  354. }
  355. }
  356. unset($v['pro_info']);
  357. }
  358. $this->success('成功',$list);
  359. }
  360. /**
  361. * @title 我的藏品(折叠)
  362. * @desc 我的藏品
  363. * @author QC
  364. * @method POST
  365. * @tag 编辑信息
  366. * @url /api/User_center/myCollectionGroupBy
  367. * @header name:Authorization require:1 desc:Token
  368. * @return name:num type:int default:0 desc:同组下几个藏品【最小是1】
  369. * @return name:jump_id type:int default:0 desc:同组下最新的收藏记录id[只有一个可以用这个作为跳转详情的id]
  370. * @return name:tag type:string default:0 desc:唯一标签
  371. * @return name:name type:string require:0 default:0 desc:藏品名称
  372. * @return name:cover type:string require:0 default:0 desc:藏品图片
  373. * @return name:auth_img type:string require:0 default:0 desc:作者头像
  374. * @return name:auth_name type:string require:0 default:0 desc:作者名称
  375. * @return name:total_num type:int require:0 default:0 desc:总数
  376. */
  377. public function myCollectionGroupBy(){
  378. $type = input('type',1);
  379. $group_list = Db::name('store_order_info')
  380. ->field('c_id,count(id) num ,max(id) jump_id')
  381. ->where('mid',$this->uid)
  382. ->where('status','neq','2')
  383. ->where('is_destruction',1)
  384. ->where('resale_status',1)
  385. ->when($type,function ($query)use($type){ if($type) $query->where('type',$type);})
  386. ->group('c_id')
  387. ->select();
  388. array_walk($group_list,function (&$val){
  389. $min_info = Db::name('store_order_info')->field('tag,pro_info')->where('id',$val['jump_id'])->find();
  390. $pro_info = json_decode($min_info['pro_info'],true);
  391. $val['tag'] = $min_info['tag'];
  392. $val['name'] = $pro_info['name'];
  393. $val['cover'] = $pro_info['cover'];
  394. $val['auth_img'] = $pro_info['auth_img'];
  395. $val['auth_name'] = $pro_info['auth_name'];
  396. });
  397. $this->success('成功',['list'=>$group_list,'total_num'=>!empty($group_list)?array_sum(array_column($group_list,'num')):0]);
  398. }
  399. /**
  400. * @title 我的藏品(展开)
  401. * @desc 我的藏品(展开)
  402. * @author QC
  403. * @method POST
  404. * @tag 编辑信息
  405. * @url /api/User_center/unfoldCollection
  406. * @header name:Authorization require:1 desc:Token
  407. * @param name:c_id type:int require:0 default:1 desc:myCollectionGroupBy接口的c_id[商品id]
  408. * @return name:id type:int require:0 default:0 desc:藏品ID
  409. * @return name:tag type:string require:0 default:0 desc:唯一标签
  410. * @return name:name type:string require:0 default:0 desc:藏品名称
  411. * @return name:type type:int default:1 desc:类型(1:藏品,3:盲盒)
  412. * @return name:cover type:string require:0 default:0 desc:藏品图片
  413. * @return name:resale_price type:string require:0 default:0 desc:二级市场挂售价格
  414. * @return name:auth_img type:string require:0 default:0 desc:作者头像
  415. * @return name:auth_name type:string require:0 default:0 desc:作者名称
  416. */
  417. public function unfoldCollection()
  418. {
  419. $c_id = input('c_id');
  420. $list = Db::name('store_order_info')
  421. ->field('id,tag,pro_info,resale_status,resale_price,type,is_destruction')
  422. ->where('c_id',$c_id)
  423. ->where('mid',$this->uid)
  424. ->where('status','neq','2')
  425. ->where('is_destruction',1)
  426. ->where('resale_status',1)
  427. ->order('id desc')
  428. ->select();
  429. array_walk($list,function (&$val){
  430. $pro_info = json_decode($val['pro_info'],true);
  431. $val['name'] = $pro_info['name'];
  432. $val['cover'] = $pro_info['cover'];
  433. $val['auth_img'] = $pro_info['auth_img'];
  434. $val['auth_name'] = $pro_info['auth_name'];
  435. unset($val['pro_info']);
  436. });
  437. $this->success('ok',$list);
  438. }
  439. /**
  440. * @title 我的盲盒
  441. * @desc 我的盲盒
  442. * @author Gavin
  443. * @method POST
  444. * @tag 编辑信息
  445. * @url /api/User_center/myBoxCollection
  446. * @header name:Authorization require:1 desc:Token
  447. * @return name:id type:int require:0 default:0 desc:藏品ID
  448. * @return name:tag type:string require:0 default:0 desc:唯一标签
  449. * @return name:name type:string require:0 default:0 desc:藏品名称
  450. * @return name:cover type:string require:0 default:0 desc:藏品图片
  451. * @return name:auth_img type:string require:0 default:0 desc:作者头像
  452. * @return name:auth_name type:string require:0 default:0 desc:作者名称
  453. */
  454. public function myBoxCollection(){
  455. $list = Db::name('store_order_info')
  456. ->where('mid',$this->uid)
  457. ->where('status','neq','2')
  458. ->where('type',3)
  459. ->where('is_destruction',1)
  460. ->where('resale_status',1)
  461. ->field('id,tag,pro_info')
  462. ->order('id desc')
  463. ->select();
  464. foreach ($list as &$v){
  465. $pro_info = json_decode($v['pro_info'],true);
  466. $v['name'] = $pro_info['name'];
  467. $v['cover'] = $pro_info['cover'];
  468. $v['auth_img'] = $pro_info['auth_img'];
  469. $v['auth_name'] = $pro_info['auth_name'];
  470. unset($v['pro_info']);
  471. }
  472. $this->success('成功',$list);
  473. }
  474. /**
  475. * @title 藏品详情
  476. * @desc 藏品详情
  477. * @author Gavin
  478. * @method POST
  479. * @tag 编辑信息
  480. * @url /api/User_center/myCollectionDetail
  481. * @header name:Authorization require:1 desc:Token
  482. * @param name:id type:int require:1 default:-- desc:藏品ID
  483. *
  484. * @return name:id type:int require:0 default:0 desc:藏品ID
  485. * @return name:tag type:string require:0 default:0 desc:唯一标签
  486. * @return name:type type:int require:0 default:1 desc:类型1:藏品,3:盲盒
  487. * @return name:collectors_name type:string require:0 default:0 desc:收藏者
  488. * @return name:collectors_hash type:string require:0 default:0 desc:收藏者hash
  489. * @return name:create_at type:string require:0 default:0 desc:收藏时间
  490. * @return name:company type:string require:0 default:0 desc:流转公司
  491. * @return name:send_btn type:int require:0 default:0 desc:是否可以赠送1是0否
  492. * @return name:send_time type:string require:0 default:-- desc:可以赠时间【send_btn=1时为空】
  493. * @return name:company_hash type:string require:0 default:0 desc:流转公司hash
  494. * @return name:contract_address type:string require:0 default:0 desc:合约地址
  495. * @return name:resale_status type:string require:0 default:0 desc:1:未挂售2挂售中3已出售
  496. * @return name:is_destruction type:int require:0 default:0 desc:1:盲盒状态1未开启0已开启
  497. * @return name:resale_price type:float require:0 default:0 desc:二级市场挂售价格
  498. * @return name:examples_illustrate type:string require:0 default:0 desc:转赠说明
  499. * @return name:sell_illustrate type:string require:0 default:0 desc:寄售须知
  500. * @return name:royalties_rate type:string require:0 default:0 desc:上架版税率【版权税】
  501. * @return name:royalties type:string require:0 default:0 desc:上架版税【版权税】
  502. * @return name:service_fee_rate type:string require:0 default:0 desc:服务费率
  503. * @return name:service_fee type:string require:0 default:0 desc:服务费
  504. * @return name:pro_info@name type:string require:0 default:0 desc:藏品名称
  505. * @return name:pro_info@price type:string require:0 default:0 desc:藏品价格
  506. * @return name:pro_info@label type:string require:0 default:0 desc:藏品标签
  507. * @return name:pro_info@cover type:string require:0 default:0 desc:藏品图片
  508. * @return name:pro_info@auth_img type:string require:0 default:0 desc:作者头像
  509. * @return name:pro_info@auth_name type:string require:0 default:0 desc:作者姓名
  510. * @return name:pro_info@warm_prompt type:string require:0 default:0 desc:温馨提示
  511. * @return name:pro_info@share_img type:string require:0 default:0 desc:分享二维码
  512. */
  513. public function myCollectionDetail(){
  514. $id = input('id');
  515. if (!$id) $this->error('参数错误');
  516. $info = Db::name('store_order_info')
  517. ->where('mid',$this->uid)
  518. ->where('id',$id)
  519. ->find();
  520. if (!$info) $this->error('藏品不存在');
  521. $info['pro_info'] = json_decode($info['pro_info'],true);
  522. if (!isset($info['pro_info']['share_img'])){
  523. //$info['pro_info']['share_img'] = Db::name('store_collection')->where('id',$info['pro_info']['id'])->value('share_img');
  524. }
  525. $info['collectors_name'] = Db::name('store_member')->where('id',$this->uid)->value('name');
  526. $info['collectors_hash'] = $info['collectors_hash']=='' ? "发放中" : $info['collectors_hash'];
  527. $info['collectors_hash_time'] = $info['collectors_hash_time']=='' ? "发放中" : $info['collectors_hash_time'];
  528. $info['examples_illustrate'] = Db::table('system_config')->where('name','examples_illustrate')->value('value');
  529. $info['sell_illustrate'] = Db::table('system_config')->where('name','sell_illustrate')->value('value');
  530. $discount = getMemberServiceCharge($this->uid);// 折扣
  531. $service_fee_rate = Db::table('system_config')->where('name','service_fee')->value('value');
  532. $royalties_rate = Db::table('system_config')->where('name','royalties')->value('value');
  533. $info['service_fee_rate'] = bcmul($service_fee_rate,$discount).'%';
  534. $info['royalties_rate'] =bcmul($royalties_rate,$discount).'%';
  535. $info['service_fee'] = sprintf("%.2f", $info['resale_price'] * (bcmul($service_fee_rate,$discount)/100));
  536. $info['royalties'] = sprintf("%.2f", $info['resale_price'] * (bcmul($royalties_rate,$discount)/100));
  537. $info['contract_address'] = '0c214bcd4f1766fdd6d36f127234fc7e7ba883711e19938777f01523c28e74dc';
  538. $goods_info = Db::name('store_collection')->where('id',$info['c_id'])->find();
  539. $log = Db::name('store_collect_examples_log')->where('order_info_id',$info['id'])->find();
  540. $info['send_btn'] = 1;
  541. $info['send_time'] = '';
  542. if (!$log){
  543. if ($goods_info['one_given_day']!=0) {
  544. $exam_time = strtotime($info['create_at'])+($goods_info['one_given_day']*60*60);
  545. if ($exam_time>time()){
  546. $info['send_btn'] = 0;
  547. $info['send_time'] = date('Y-m-d H:i:s',$exam_time);
  548. }
  549. }
  550. }else{
  551. if ($goods_info['other_given_day']!=0){
  552. $exam_time = strtotime($log['create_at'])+($goods_info['other_given_day']*60*60);
  553. if ($exam_time>time()) {
  554. $info['send_btn'] = 0;
  555. $info['send_time'] = date('Y-m-d H:i:s',$exam_time);
  556. }
  557. }
  558. }
  559. $this->success('成功',$info);
  560. }
  561. /**
  562. * @title 转赠
  563. * @desc 转赠
  564. * @author Gavin
  565. * @method POST
  566. * @tag 编辑信息
  567. * @url /api/User_center/examples
  568. * @header name:Authorization require:1 desc:Token
  569. * @param name:id type:int require:1 default:-- desc:藏品ID
  570. * @param name:phone type:string require:1 default:-- desc:手机号
  571. * @param name:second_password type:int require:1 default:-- desc:支付密码
  572. *
  573. */
  574. public function examples(){
  575. //$this->error('暂时未开放...');
  576. $id = input('id');
  577. $redis = new Redis([ 'select'=> 2]);
  578. $redis_value = $redis->get('examples'.$this->uid);
  579. if ($redis_value){
  580. $this->error('请求过快,请稍后重试');
  581. }else{
  582. $redis->set('examples'.$this->uid,1,2);
  583. }
  584. $phone = input('phone');
  585. // $wallet_address = input('wallet_address');
  586. $second_password = input('second_password');
  587. if (!$id || !$phone ) $this->error('参数错误');
  588. $info = Db::name('store_order_info')->where('id',$id)->where('mid',$this->uid)->find();
  589. if (!$info) $this->error('藏品不存在');
  590. if ($info['status']==2) $this->error('藏品已转赠');
  591. $member = Db::name('store_member')->where('phone',$phone)->find();
  592. if (!$member) $this->error('转赠用户不存在');
  593. if($member['id'] == $this->uid){
  594. $this->error('自己无法转赠给自己');
  595. }
  596. //防止两两转赠
  597. //if($info['to_mid'] == $member['id']) $this->error('不可相互转赠');
  598. if (!$info['collectors_hash'] && $info['type'] != 3) $this->error('发放中,无法转赠');
  599. $mem = getMemberInfoHash($this->uid);
  600. if ($mem['second_password']!=md5($second_password)) $this->error('密码错误');
  601. $pro_info = Db::name('store_collection')->where('id',$info['c_id'])->find();
  602. $log = Db::name('store_collect_examples_log')
  603. ->where('order_info_id',$id)
  604. ->find();
  605. if (!$log){
  606. if ($pro_info['one_given_day']!=0){
  607. $exam_time = strtotime($info['create_at'])+($pro_info['one_given_day']*60*60);
  608. if ($exam_time>time()) $this->error('持有时间限制,无法转赠');
  609. }
  610. }else{
  611. if ($pro_info['other_given_day']!=0){
  612. $exam_time = strtotime($log['create_at'])+($pro_info['other_given_day']*60*60);
  613. if ($exam_time>time()) $this->error('持有时间限制,无法转赠');
  614. }
  615. }
  616. $com = true;
  617. Db::startTrans();
  618. try {
  619. Db::name('store_order_info')
  620. ->where('id',$id)
  621. ->update(['status'=>2,'over_time'=>date('Y-m-d H:i:s'),'to_mid'=>$member['id']]);
  622. $to_date = [
  623. 'order_id'=>$info['order_id'],
  624. 'order_no'=>get_order_sn(),
  625. 'tag'=>$info['tag'],
  626. 'mid'=>$member['id'],
  627. 'c_id'=>$info['c_id'],
  628. 'name'=>$pro_info['name'],
  629. 'cover'=>$pro_info['cover'],
  630. 'pro_info'=>$info['pro_info'],
  631. 'status'=>3,
  632. 'type' => $info['type'],
  633. 'to_mid'=>$this->uid,
  634. 'over_time'=>date('Y-m-d H:i:s'),
  635. 'company'=>'象链数藏',
  636. 'company_hash'=>$info['company_hash'],
  637. 'company_hash_time'=>$info['company_hash_time'],
  638. 'ddcid'=>$info['ddcid'],
  639. 'collectors_hash'=>'',
  640. 'collectors_hash_time'=>date('Y-m-d H:i:s')
  641. ];
  642. $new_id = Db::name('store_order_info')->insertGetId($to_date);
  643. $log_date = [
  644. 'order_info_id'=>$new_id,
  645. 'mid'=>$this->uid,
  646. 'to_mid'=>$member['id'],
  647. 'date'=>date('Y-m')
  648. ];
  649. Db::name('store_collect_examples_log')->insert($log_date);
  650. Db::commit();
  651. }catch (\Exception $e){
  652. $com = false;
  653. Db::rollback();
  654. }
  655. if ($com){
  656. if($pro_info['vipid'] > 0){
  657. //转赠成功等级掉级
  658. $otherData = [
  659. 'type' => 2,
  660. 'status' => 0,
  661. 'desc' => '转赠'.$pro_info['name'].'藏品自动掉级',
  662. 'order_table' => 'store_order_info',
  663. 'order_id' => $id,
  664. ];
  665. memberVipChange(0,$this->uid,$otherData);
  666. //转赠成功获赠人等级同步
  667. $otherData = [
  668. 'type' => 2,
  669. 'status' => 1,
  670. 'desc' => '获赠'.$pro_info['name'].'藏品自动同步等级',
  671. 'order_table' => 'store_order_info',
  672. 'order_id' => $new_id,
  673. ];
  674. memberVipChange($pro_info['vipid'],$member['id'],$otherData);
  675. }
  676. $this->success('转赠成功');
  677. }
  678. $this->error('转赠失败');
  679. }
  680. /**
  681. * @title 消息列表[公告]
  682. * @desc 消息列表
  683. * @author Gavin
  684. * @method POST
  685. * @tag 编辑信息
  686. * @url /api/User_center/messageList
  687. * @header name:Authorization require:1 desc:Token
  688. *
  689. * @param name:page type:int : default:1 desc:页数
  690. * @param name:page_num type:int : default:20 desc:每页数
  691. *
  692. * @return name:id type:int require:0 default:0 desc:消息ID
  693. * @return name:title type:string require:0 default:0 desc:标题
  694. * @return name:content type:string require:0 default:0 desc:内容【富文本】
  695. * @return name:create_at type:string require:0 default:0 desc:发布时间
  696. * @return name:is_read type:string require:0 default:0 desc:是否查看true:已查看false:未查看
  697. */
  698. public function messageList(){
  699. $count = Db::name('store_message')->where('is_deleted',0)->count();
  700. $list = Db::name('store_message')
  701. ->field('is_deleted,update_at',true)
  702. ->where('is_deleted',0)
  703. ->order('id desc')
  704. ->limit($this->off_set,$this->page_num)
  705. ->select();
  706. // echo Db::name('store_message')->getLastSql();die;
  707. foreach ($list as &$v){
  708. $is_read = Db::name('store_message_read_log')->where('mid',$this->uid)->where('message_id',$v['id'])->count();
  709. $v['is_read'] = $is_read ? true : false;
  710. }
  711. $this->success('成功',compact('count','list'));
  712. }
  713. /**
  714. * @title 点击消息[公告]
  715. * @desc 点击消息,查看消息
  716. * @author Gavin
  717. * @method POST
  718. * @tag 编辑信息
  719. * @url /api/User_center/readMessage
  720. * @header name:Authorization require:1 desc:Token
  721. * @param name:id type:int : default:1 desc:消息ID
  722. * @return name:id type:int require:0 default:0 desc:消息ID
  723. * @return name:title type:string require:0 default:0 desc:标题
  724. * @return name:content type:string require:0 default:0 desc:内容【富文本】
  725. * @return name:create_at type:string require:0 default:0 desc:发布时间
  726. */
  727. public function readMessage(){
  728. $id = input('id');
  729. if (!$id) $this->error('参数错误');
  730. $log = Db::name('store_message_read_log')->where('message_id',$id)->where('mid',$this->uid)->count();
  731. $detail = Db::name('store_message')->field('is_deleted,update_at',true)->where('id',$id)->find();
  732. if (!$log){
  733. $data = [
  734. 'mid'=>$this->uid,
  735. 'message_id'=>$id
  736. ];
  737. Db::name('store_message_read_log')->insert($data);
  738. }
  739. $this->success('成功',['detail'=>$detail]);
  740. }
  741. /**
  742. * @title 人脸认证sign
  743. * @desc 人脸认证sign
  744. * @author Gavin
  745. * @method POST
  746. * @tag 编辑信息
  747. * @url /api/User_center/getFaceSign
  748. * @header name:Authorization require:1 desc:Token
  749. *
  750. *
  751. * @param name:name type:string default:1 desc:姓名
  752. * @param name:idNo type:string default:1 desc:身份证号
  753. *
  754. * @return name:sign type:string require: default:-- desc:签名
  755. *
  756. */
  757. public function getFaceSign(){
  758. $name = input('name');
  759. $idNo = input('idNo');
  760. if (!$name || !$idNo) $this->error('参数错误');
  761. $userId = $this->uid;
  762. //$userId = get32Str();
  763. $data = getfaceid($name,$idNo,$userId);
  764. $this->success('成功',$data);
  765. }
  766. /**
  767. * @title 邀请记录
  768. * @desc 邀请记录
  769. * @author Gavin
  770. * @method POST
  771. * @tag 编辑信息
  772. * @url /api/User_center/invitedRecord
  773. * @header name:Authorization require:1 desc:Token
  774. *
  775. * @param name:page type:int : default:1 desc:页数
  776. * @param name:page_num type:int : default:20 desc:每页数
  777. *
  778. * @return name:id type:int require:0 default:0 desc:用户ID
  779. * @return name:headimg type:string require:0 default:0 desc:头像
  780. * @return name:name type:string require:0 default:0 desc:名称
  781. * @return name:phone type:string require:0 default:0 desc:手机号
  782. * @return name:create_at type:string require:0 default:0 desc:时间
  783. * @return name:is_auth type:int require:0 default:0 desc:是否认证
  784. */
  785. public function invitedRecord(){
  786. $count = Db::name('store_member')->where('pid',$this->uid)->where('is_auth',1)->count();
  787. $list = Db::name('store_member')
  788. ->field('id,headimg,name,phone,create_at,is_auth')
  789. ->where('pid',$this->uid)
  790. ->where('is_auth',1)
  791. ->order('id desc')
  792. ->limit($this->off_set,$this->page_num)
  793. ->select();
  794. foreach ($list as &$v){
  795. $v['phone'] = substr_replace($v['phone'],'****',3,4);
  796. $v['create_at'] = date('Y-m-d',strtotime($v['create_at']));
  797. }
  798. $this->success('成功',compact('count','list'));
  799. }
  800. /**
  801. * @title 邀请排行榜
  802. * @desc 邀请排行榜
  803. * @author Gavin
  804. * @method POST
  805. * @tag 编辑信息
  806. * @url /api/User_center/invitedList
  807. * @header name:Authorization require:1 desc:Token
  808. *
  809. * @param name:page type:int : default:1 desc:页数
  810. * @param name:page_num type:int : default:20 desc:每页数
  811. *
  812. * @return name:count type:int require:0 default:0 desc:人数
  813. * @return name:id type:int require:0 default:0 desc:用户ID
  814. * @return name:headimg type:string require:0 default:0 desc:头像
  815. * @return name:name type:string require:0 default:0 desc:名称
  816. * @return name:phone type:string require:0 default:0 desc:手机号
  817. * @return name:is_auth type:int require:0 default:0 desc:是否认证
  818. * @return name:create_at type:string require:0 default:0 desc:时间
  819. */
  820. public function invitedList(){
  821. //$this->error('新品发售中,暂时停止访问');
  822. $count = Db::name('store_member')->field('pid,count(*) count')->where('pid','>',0)->where('is_auth',1)->group('pid')->order('count desc')->count();
  823. $list = Db::name('store_member')
  824. ->field('pid,count(*) count')
  825. ->where('pid','>',0)
  826. ->where('is_auth',1)
  827. ->group('pid')
  828. ->order('count desc')
  829. ->limit($this->off_set,$this->page_num)
  830. ->select();
  831. foreach ($list as &$value){
  832. $users_info = Db::name('store_member')->field('headimg,name,is_auth')->where('id',$value['pid'])->find();
  833. $value['name'] = $users_info['name'];
  834. $value['headimg'] = $users_info['headimg'];
  835. $value['is_auth'] = $users_info['is_auth'];
  836. unset($value['pid']);
  837. }
  838. $this->success('成功',compact('count','list'));
  839. }
  840. /**
  841. * @title 签到
  842. * @desc 签到
  843. * @author Gavin
  844. * @method POST
  845. * @tag 编辑信息
  846. * @url /api/User_center/sign
  847. * @header name:Authorization require:1 desc:Token
  848. *
  849. */
  850. public function sign(){
  851. $date = date('Y-m-d');
  852. $log = Db::name('store_member_sign')->where('mid',$this->uid)->where('date',$date)->count();
  853. if ($log) $this->error('今日已签到');
  854. $data = [
  855. 'mid'=>$this->uid,
  856. 'date'=>$date
  857. ];
  858. $com = true;
  859. Db::startTrans();
  860. try {
  861. $id = Db::name('store_member_sign')->insertGetId($data);
  862. $sign_integral = getConfigValue('sign_integral');
  863. if ($sign_integral>0){
  864. memberMoneyChange($sign_integral,1,$this->uid,'签到',1,$id);
  865. }
  866. Db::commit();
  867. }catch (\Exception $e){
  868. $com=false;
  869. Db::rollback();
  870. }
  871. if ($com){
  872. $this->success('签到成功');
  873. }
  874. $this->error('签到失败');
  875. }
  876. /**
  877. * @title 积分记录
  878. * @desc 积分记录
  879. * @author Gavin
  880. * @method POST
  881. * @tag 编辑信息
  882. * @url /api/User_center/integralLog
  883. * @header name:Authorization require:1 desc:Token
  884. *
  885. * @param name:page type:int : default:1 desc:页数
  886. * @param name:page_num type:int : default:20 desc:每页数
  887. *
  888. * @return name:id type:int require:0 default:0 desc:id
  889. * @return name:change type:string require:0 default:0 desc:变动数值
  890. * @return name:title type:string require:0 default:0 desc:标题
  891. * @return name:create_at type:string require:0 default:0 desc:时间
  892. */
  893. public function integralLog(){
  894. $where = [
  895. 'm_id'=>$this->uid,
  896. 'type'=>1
  897. ];
  898. $count = Db::name('store_member_log')->where($where)->count();
  899. $list = Db::name('store_member_log')
  900. ->field('id,pm,change,title,create_at')
  901. ->where($where)
  902. ->order('id desc')
  903. ->limit($this->off_set,$this->page_num)
  904. ->select();
  905. foreach ($list as &$v){
  906. if ($v['pm']==1){
  907. $v['change'] = '+'.$v['change'];
  908. }else{
  909. $v['change'] = '-'.$v['change'];
  910. }
  911. }
  912. $this->success('成功',compact('count','list'));
  913. }
  914. /**
  915. * @title 余额记录
  916. * @desc 余额记录
  917. * @author Gavin
  918. * @method POST
  919. * @tag 编辑信息
  920. * @url /api/User_center/moneyLog
  921. * @header name:Authorization require:1 desc:Token
  922. *
  923. * @param name:page type:int default:1 desc:页数
  924. * @param name:page_num type:int default:20 desc:每页数
  925. * @param name:select_type type:int require:0 default:-1 desc:查询类型[-1全部0减少(支出)1增加(收入),2提现【包含提现申请的减少和拒绝的增加】]
  926. *
  927. * @return name:id type:int require:0 default:0 desc:id
  928. * @return name:change type:string require:0 default:0 desc:变动数值
  929. * @return name:title type:string require:0 default:0 desc:标题
  930. * @return name:create_at type:string require:0 default:0 desc:时间
  931. * @return name:pm type:int require:0 default:0 desc:变更类型[0减少1增加]
  932. * @return name:change_type type:int require:0 default:0 desc:来源1出售佣金2提现3提现拒绝
  933. */
  934. public function moneyLog(){
  935. $select_type = input('select_type',-1);
  936. $where = ['m_id'=>$this->uid, 'type'=>3];
  937. if(in_array($select_type,[0,1]))$where['pm'] = $select_type;
  938. $count = Db::name('store_member_log')->where($where)->when($select_type,function ($query)use($select_type){
  939. if($select_type == 2 ) $query->whereIn('change_type','2,3');
  940. })->count();
  941. $list = Db::name('store_member_log')
  942. ->field('id,pm,change,title,create_at,change_type')
  943. ->where($where)
  944. ->when($select_type,function ($query)use($select_type){
  945. if($select_type == 2 ) $query->whereIn('change_type','2,3');
  946. })->order('id desc')
  947. ->limit($this->off_set,$this->page_num)
  948. ->select();
  949. foreach ($list as &$v){
  950. if ($v['pm']==1){
  951. $v['change'] = '+'.$v['change'];
  952. }else{
  953. $v['change'] = '-'.$v['change'];
  954. }
  955. }
  956. $this->success('成功',compact('count','list'));
  957. }
  958. /**
  959. * @title 提现
  960. * @desc 提现
  961. * @author Gavin
  962. * @method POST
  963. * @tag 编辑信息
  964. * @url /api/User_center/withdraw
  965. * @header name:Authorization require:1 desc:Token
  966. *
  967. * @param name:money type:int default: desc:提现金额
  968. * @param name:withdraw_type type:string default:bank desc:提现方式:wx[微信],zfb[支付宝],bank[银行卡]
  969. * @param name:pay_password type:string default:wx desc:二级密码
  970. *
  971. */
  972. public function withdraw(){
  973. // $this->error('维护中,暂时关闭');
  974. if (redisSetNx('withdraw'.$this->uid,3)){
  975. $v = getConfigValue('withdraw_switch');
  976. if (!$v) $this->error('维护中,暂时关闭');
  977. $redis = new Redis(['select'=>2]);
  978. $redis_value = $redis->get('withdraw'.$this->uid);
  979. if ($redis_value){
  980. $this->error('请求过快,请稍后重试');
  981. }else{
  982. $redis->set('withdraw'.$this->uid,1,3);
  983. }
  984. $money = input('money');
  985. $withdraw_type = input('withdraw_type','bank');
  986. if($withdraw_type != 'bank') $this->error('提现方式错误'.$withdraw_type);
  987. $pay_password = input('pay_password');
  988. if (!$money) $this->error('参数错误');
  989. $user = Db::name('store_member')->where('id',$this->uid)->find();
  990. if ($user['money'] < $money) $this->error('余额不足');
  991. //if ($user['second_password']!=md5($pay_password)) $this->error('密码错误');
  992. $withdraw_min_price = getConfigValue('withdraw_min_price'); //最小提现金额
  993. $withdraw_max_price = getConfigValue('withdraw_max_price'); //最大提现金额
  994. $poundage_proportion = getConfigValue('poundage_proportion'); //手续费百分比
  995. $discount = getMemberServiceCharge($this->uid);// 折扣
  996. $poundage_proportion = bcmul($poundage_proportion,$discount);
  997. if ($money < $withdraw_min_price) $this->error('最低提现'.$withdraw_min_price.'元');
  998. if ($money > $withdraw_max_price) $this->error('最大提现'.$withdraw_max_price.'元');
  999. if($withdraw_type=='zfb' && (!$user['zfb_account'] || !$user['zfb_real_name'])) $this->error('请先绑定支付宝');
  1000. if($withdraw_type == 'wx' && !$user['openid']) $this->error('请先绑定微信');
  1001. if($withdraw_type == 'bank' && !$user['bank_num'])$this->error('请先绑定银行卡');
  1002. Db::startTrans();
  1003. try {
  1004. $data['mid'] = $this->uid;
  1005. $data['withdraw_type'] = $withdraw_type;
  1006. $order_no = get_order_sn();
  1007. $data['order_no'] = $order_no;
  1008. $data['price'] = $money;
  1009. $data['poundage_proportion'] = $poundage_proportion;
  1010. $proportion = sprintf("%.2f", $money*($poundage_proportion/100)); //四舍五入保留两位小数点
  1011. $data['proportion'] = $proportion;
  1012. $real_money = $money-$proportion;
  1013. $data['real_money'] = $real_money;
  1014. switch ($withdraw_type){
  1015. case 'wx':
  1016. $data['account_no'] = $user['openid'];
  1017. $data['account_name']=$user['name'];
  1018. break;
  1019. case 'zfb':
  1020. $data['account_no'] = $user['zfb_account'];
  1021. $data['account_name']=$user['zfb_real_name'];
  1022. break;
  1023. case 'bank':
  1024. $data['account_no'] = $user['bank_num'];
  1025. $data['account_name']=$user['bank_user'];
  1026. break;
  1027. }
  1028. $id =Db::name('store_member_withdraw')->insertGetId($data);
  1029. $res = memberMoneyChange($money,3,$this->uid,'余额提现',0,$id,2);
  1030. if(!$res) throw new Exception('提现失败');
  1031. Db::commit();
  1032. }catch (\Exception $e) {
  1033. Db::rollback();
  1034. $this->error($e->getMessage());
  1035. }
  1036. DelRedisSetNx('withdraw'.$this->uid);
  1037. $this->success('提现申请成功,等待审核!');
  1038. }else{
  1039. $this->error('服务器繁忙,请稍后重试');
  1040. }
  1041. }
  1042. /**
  1043. * @title 打开盲盒
  1044. * @desc 返回值是空就没中奖
  1045. * @author Gavin
  1046. * @method POST
  1047. * @tag 编辑信息
  1048. * @url /api/User_center/openBoxCollection
  1049. * @header name:Authorization require:1 desc:Token
  1050. * @param name:id type:int : default: desc:详情ID
  1051. * @return name:name type:string default: desc:名称
  1052. * @return name:cover type:string default: desc:图片
  1053. * @return name:price type:string default: desc:价格
  1054. * @return name:auth_name type:string default: desc:作者
  1055. * @return name:auth_img type:string default: desc:作者头像
  1056. *
  1057. */
  1058. public function openBoxCollection(){
  1059. //redis原子锁
  1060. if (redisSetNx('openBox'.$this->uid)){
  1061. $id = input('id');
  1062. if (!$id) $this->error('参数错误');
  1063. $info = Db::name('store_order_info')
  1064. ->where('id',$id)
  1065. ->where('mid',$this->uid)
  1066. ->where('status','neq','2')
  1067. ->where('is_destruction',1)
  1068. ->find();
  1069. if (!$info) $this->error('盲盒不存在');
  1070. if ($info['resale_status']!=1) $this->error('盲盒挂售中或已出售');
  1071. $where = 'status = 1 and coll_id = '.$info['c_id'].' and is_del = 1 and residue_num > 0';
  1072. $residue_num_all = Db::name('store_blind_box')->where($where)->sum('residue_num');
  1073. // if($residue_num_all <= 0 )$this->error('对不起,盲盒已没有奖品');
  1074. $com = true;
  1075. Db::startTrans();
  1076. try {
  1077. //销毁
  1078. Db::name('store_order_info')->where('id',$id)->update(['is_destruction'=>0]);
  1079. $win_num = rand(1,$residue_num_all);
  1080. $blind_box_info = Db::name('store_blind_box')->field('id,prize_id,residue_num')->where($where)->select();
  1081. $residue_num = 0;
  1082. $win_prize_id = 0;
  1083. $win_box_id = 0;
  1084. foreach ($blind_box_info as $val) {
  1085. $residue_num += $val['residue_num'];
  1086. if($win_prize_id == 0 && $win_num <= $residue_num){
  1087. $win_prize_id = $val['prize_id'];
  1088. $win_box_id = $val['id'];
  1089. }
  1090. }
  1091. if($win_prize_id){
  1092. $coll_info = getCollectionInfoHash($win_prize_id);
  1093. $json_info = json_encode($coll_info,true);
  1094. $return['name'] = $coll_info['name'];
  1095. $return['cover'] = $coll_info['cover'];
  1096. $return['price'] = $coll_info['price'];
  1097. $return['auth_name'] = $coll_info['auth_name'];
  1098. $return['auth_img'] = $coll_info['auth_img'];
  1099. $data = [
  1100. 'm_id'=>$this->uid,
  1101. 'b_id'=>$win_prize_id,
  1102. 'is_prize'=>1,
  1103. 'name'=>$coll_info['name'],
  1104. 'cover'=>$coll_info['cover'],
  1105. 'info'=>$json_info,
  1106. 'date'=>date('Y-m-d'),
  1107. 'is_free'=>1
  1108. ];
  1109. Db::name('store_blind_box_log')->insert($data);
  1110. //获取排名
  1111. $rank = getRanking($win_prize_id);
  1112. $tag = getTag($win_prize_id,$rank,$coll_info['inventory']);
  1113. saveRanking($win_prize_id);
  1114. $company = '象链数藏';
  1115. $hash = getCompanyHash($win_prize_id);
  1116. $company_hash = $hash['hash'];
  1117. $company_hash_time = $hash['create_at'];
  1118. $tokenid = $hash['tokenid'];
  1119. Db::name('hash')->where('hash',$hash['hash'])->update(['status'=>1]);
  1120. $collectors_hash = '';
  1121. $date = [
  1122. 'order_id'=>0,
  1123. 'order_no'=>get_order_sn(),
  1124. 'tag'=>$tag,
  1125. 'mid'=>$this->uid,
  1126. 'c_id'=>$win_prize_id,
  1127. 'name'=>$coll_info['name'],
  1128. 'cover'=>$coll_info['cover'],
  1129. 'pro_info'=>$json_info,
  1130. 'company'=>$company,
  1131. 'company_hash'=>$company_hash,
  1132. 'company_hash_time'=>$company_hash_time,
  1133. 'ddcid'=>$tokenid,
  1134. 'collectors_hash'=>$collectors_hash,
  1135. // 'collectors_hash_time'=>'',
  1136. 'status'=>1
  1137. ];
  1138. Db::name('store_order_info')->insert($date);
  1139. }
  1140. Db::commit();
  1141. }catch (\Exception $e) {
  1142. $com = false;
  1143. $msg = $e->getMessage();
  1144. Db::rollback();
  1145. }
  1146. if ($com){
  1147. setMemberInfoHash($this->uid);
  1148. //扣减库存
  1149. Db::name('store_blind_box')->where('id',$win_box_id)->setDec('residue_num',1);
  1150. DelRedisSetNx('openBox'.$this->uid);
  1151. $this->success('成功',$win_prize_id ? $return : null);
  1152. }else{
  1153. DelRedisSetNx('openBox'.$this->uid);
  1154. $this->error($msg);
  1155. }
  1156. }else{
  1157. $this->error('请求过快');
  1158. }
  1159. }
  1160. /**
  1161. * @title 验证被更换手机号【更换手机号第一步】
  1162. * @desc 验证已绑定的手机号
  1163. * @author QC
  1164. * @method POST
  1165. * @tag 编辑信息
  1166. * @url /api/User_center/checkPhone
  1167. * @header name:Authorization require:1 desc:Token
  1168. * @param name:phone type:int default: desc:手机号
  1169. * @param name:code type:string default: desc:验证码
  1170. */
  1171. public function checkPhone()
  1172. {
  1173. $phone = input('post.phone');
  1174. $code = input('post.code');
  1175. if(!$phone || !$code) $this->error('参数错误');
  1176. $user_info = Db::name('store_member')->find($this->uid);
  1177. if($user_info['phone'] != $phone) $this->error('已绑定手机号错误');
  1178. // 5 分钟之内的验证码
  1179. $check_code = Db::name('store_sms')
  1180. ->where(['mobile'=>$phone,'event'=>'change','is_use'=>0,'code'=>$code])
  1181. ->where('createtime','>' ,time() - 300)
  1182. ->value('id');
  1183. if(!$check_code) $this->error('验证码错误');
  1184. Db::name('store_sms')->where('id',$check_code)->update(['is_use'=>1]);
  1185. $this->success('验证成功');
  1186. }
  1187. /**
  1188. * @title 更换新的手机号
  1189. * @desc 更换新的手机号
  1190. * @author QC
  1191. * @method POST
  1192. * @tag 更换新的手机号
  1193. * @url /api/User_center/changePhone
  1194. * @header name:Authorization require:1 desc:Token
  1195. * @param name:phone type:int default: desc:手机号
  1196. * @param name:code type:string default: desc:验证码
  1197. */
  1198. public function changePhone()
  1199. {
  1200. $phone = input('post.phone');
  1201. $code = input('post.code');
  1202. if(!$phone || !$code) $this->error('参数错误');
  1203. $user_info = Db::name('store_member')->find($this->uid);
  1204. $check_code = Db::name('store_sms')
  1205. ->where(['mobile'=>$user_info['phone'],'event'=>'change','is_use'=>1])
  1206. ->order('id desc')
  1207. ->find();
  1208. if(!$check_code) $this->error('请验证已绑定手机号');
  1209. if($check_code['createtime'] < time() - 300) $this->error('验证超时,请在5分钟之内更换手机号');
  1210. $check_new = Db::name('store_sms')
  1211. ->where(['mobile'=>$phone,'event'=>'new','is_use'=>0,'code'=>$code])
  1212. ->where('createtime','>' ,time() - 300)
  1213. ->value('id');
  1214. if(!$check_new) $this->error('验证码错误');
  1215. Db::name('store_sms')->where('id',$check_new)->update(['is_use'=>1]);
  1216. Db::name('store_member')->where('id',$this->uid)->update(['phone'=>$phone]);
  1217. setMemberInfoHash($this->uid);
  1218. $this->success('更换成功');
  1219. }
  1220. /**
  1221. * @title 阿里云金融级实名认证初始化
  1222. * @desc 阿里云金融级实名认证初始化
  1223. * @author QC
  1224. * @method POST
  1225. * @tag 编辑信息
  1226. * @url /api/User_center/initFaceVerify
  1227. * @header name:Authorization require:1 desc:Token
  1228. * @param name:name type:string default:1 desc:姓名
  1229. * @param name:id_no type:string default:1 desc:身份证号
  1230. * @param name:MetaInfo type:string default:1 desc:MetaInfo
  1231. * @param name:ReturnUrl type:string default:1 desc:业务页面回跳的目标地址
  1232. * @return name:RequestId type:String default:-- desc:请求ID
  1233. * @return name:Message type:String default:-- desc:返回信息
  1234. * @return name:Code type:String default:-- desc:返返回码:200为成功,其他为失败。【具体的参考阿里云文档】
  1235. * @return name:ResultObject.CertifyId type:String default:-- desc:实人认证唯一标识
  1236. * @return name:ResultObject.CertifyUrl type:String default:-- desc:Web认证URL,认证结束后根据入参ReturnUrl进行进行转赠跳转
  1237. */
  1238. function initFaceVerify(){
  1239. $name = input('name');
  1240. $id_no = input('id_no');
  1241. $MetaInfo = input('MetaInfo');
  1242. $ReturnUrl = input('ReturnUrl');
  1243. $res = Certification::main($name,$id_no,$MetaInfo,$ReturnUrl);
  1244. if(!$res) $this->error('初始化错误');
  1245. $result = json_decode(json_encode($res),true)['body'];
  1246. $result['code'] != 200 ? $this->error($result['message']):$this->success('ok',$result);
  1247. }
  1248. /**
  1249. * @title 保存人脸认证
  1250. * @desc 保存人脸认证
  1251. * @author QC
  1252. * @method POST
  1253. * @tag 编辑信息
  1254. * @url /api/User_center/saveVerify
  1255. * @header name:Authorization require:1 desc:Token
  1256. * @param name:name type:string default:1 desc:姓名
  1257. * @param name:id_no type:string default:1 desc:身份证号
  1258. * @param name:CertifyId type:string default:1 desc:实人认证唯一标识
  1259. */
  1260. function saveVerify()
  1261. {
  1262. $name = input('name');
  1263. $id_no = input('id_no');
  1264. $CertifyId = input('CertifyId');
  1265. if (!$name || !$id_no || !$CertifyId) $this->error('参数错误');
  1266. $check_id_card = isCreditNo($id_no);
  1267. if (!$check_id_card) $this->error('身份证号格式错误');
  1268. $is_auth = Db::table('store_member')->where('id',$this->uid)->value('is_auth');
  1269. if($is_auth) $this->error('已认证');
  1270. $check = Db::name('store_member')->where('id_card',$id_no)->count();
  1271. if ($check) $this->error('身份证号已经认证过');
  1272. // 核验
  1273. $res = Certification::check($CertifyId);
  1274. if(!$res) $this->error('认证失败');
  1275. $result = json_decode(json_encode($res),true)['body'];
  1276. if($result['code'] != 200) $this->error($result['message']);
  1277. Db::table('store_member')->where('id',$this->uid)->update(['is_auth'=>1,'true_name'=>$name,'id_card'=>$id_no,'auth_at'=>date('Y-m-d H:i:s')]);
  1278. setMemberInfoHash($this->uid);
  1279. $this->success('认证成功');
  1280. }
  1281. }