User.php 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394
  1. <?php
  2. // +—————————————————————————————————————————————————————————————————————
  3. // | Created by Yunbao
  4. // +—————————————————————————————————————————————————————————————————————
  5. // | Copyright (c) 2013~2022 http://www.yunbaokj.com All rights reserved.
  6. // +—————————————————————————————————————————————————————————————————————
  7. // | Author: https://gitee.com/yunbaokeji
  8. // +—————————————————————————————————————————————————————————————————————
  9. // | Date: 2022-02-17
  10. // +—————————————————————————————————————————————————————————————————————
  11. class Model_User extends PhalApi_Model_NotORM {
  12. /* 用户全部信息 */
  13. public function getBaseInfo($uid) {
  14. $info=DI()->notorm->user
  15. ->select("id,user_nicename,avatar,avatar_thumb,sex,signature,coin,votes,consumption,votestotal,province,city,birthday,location")
  16. ->where('id=? and user_type="2"',$uid)
  17. ->fetchOne();
  18. if($info){
  19. $info['avatar']=get_upload_path($info['avatar']);
  20. $info['avatar_thumb']=get_upload_path($info['avatar_thumb']);
  21. $info['level']=getLevel($info['consumption']);
  22. $info['level_anchor']=getLevelAnchor($info['votestotal']);
  23. $info['lives']=getLives($uid);
  24. if($info['birthday']){
  25. $info['birthday']=date('Y-m-d',$info['birthday']);
  26. }else{
  27. $info['birthday']='';
  28. }
  29. }
  30. return $info;
  31. }
  32. /* 判断昵称是否重复 */
  33. public function checkName($uid,$name){
  34. $isexist=DI()->notorm->user
  35. ->select('id')
  36. ->where('id!=? and user_nicename=?',$uid,$name)
  37. ->fetchOne();
  38. if($isexist){
  39. return 0;
  40. }else{
  41. return 1;
  42. }
  43. }
  44. /* 修改信息 */
  45. public function userUpdate($uid,$fields){
  46. /* 清除缓存 */
  47. delCache("userinfo_".$uid);
  48. if(!$fields){
  49. return false;
  50. }
  51. return DI()->notorm->user
  52. ->where('id=?',$uid)
  53. ->update($fields);
  54. }
  55. /* 修改密码 */
  56. public function updatePass($uid,$oldpass,$pass){
  57. $userinfo=DI()->notorm->user
  58. ->select("user_pass")
  59. ->where('id=?',$uid)
  60. ->fetchOne();
  61. $oldpass=setPass($oldpass);
  62. if($userinfo['user_pass']!=$oldpass){
  63. return 1003;
  64. }
  65. $newpass=setPass($pass);
  66. return DI()->notorm->user
  67. ->where('id=?',$uid)
  68. ->update( array( "user_pass"=>$newpass ) );
  69. }
  70. /* 我的钻石 */
  71. public function getBalance($uid){
  72. if($uid<0){
  73. return array(
  74. 'coin'=>0,
  75. 'score'=>0
  76. );
  77. }
  78. return DI()->notorm->user
  79. ->select("coin,score")
  80. ->where('id=?',$uid)
  81. ->fetchOne();
  82. }
  83. /* 充值规则 */
  84. public function getChargeRules(){
  85. $rules= DI()->notorm->charge_rules
  86. ->select('id,coin,money,give')
  87. ->order('list_order asc')
  88. ->fetchAll();
  89. return $rules;
  90. }
  91. /* 我的收益 */
  92. public function getProfit($uid){
  93. $info= DI()->notorm->user
  94. ->select("votes,votestotal")
  95. ->where('id=?',$uid)
  96. ->fetchOne();
  97. $config=getConfigPri();
  98. //提现比例
  99. $cash_rate=$config['cash_rate'];
  100. $cash_start=$config['cash_start'];
  101. $cash_end=$config['cash_end'];
  102. $cash_max_times=$config['cash_max_times'];
  103. $cash_take=$config['cash_take'];
  104. //剩余票数
  105. $votes=$info['votes'];
  106. if(!$cash_rate){
  107. $total='0';
  108. }else{
  109. //总可提现数
  110. $total=(string)(floor($votes/$cash_rate)*(100-$cash_take)/100);
  111. }
  112. if($cash_max_times){
  113. $tips='每月'.$cash_start.'-'.$cash_end.'号可进行提现申请,每月只可提现'.$cash_max_times.'次';
  114. }else{
  115. $tips='每月'.$cash_start.'-'.$cash_end.'号可进行提现申请';
  116. }
  117. $rs=array(
  118. "votes"=>$votes,
  119. "votestotal"=>$info['votestotal'],
  120. "total"=>$total,
  121. "cash_rate"=>$cash_rate,
  122. "cash_take"=>$cash_take,
  123. "tips"=>$tips,
  124. );
  125. return $rs;
  126. }
  127. /* 提现 */
  128. public function setCash($data){
  129. $nowtime=time();
  130. $uid=$data['uid'];
  131. $accountid=$data['accountid'];
  132. $cashvote=$data['cashvote'];
  133. $config=getConfigPri();
  134. $cash_start=$config['cash_start'];
  135. $cash_end=$config['cash_end'];
  136. $cash_max_times=$config['cash_max_times'];
  137. $day=(int)date("d",$nowtime);
  138. if($day < $cash_start || $day > $cash_end){
  139. return 1005;
  140. }
  141. //本月第一天
  142. $month=date('Y-m-d',strtotime(date("Ym",$nowtime).'01'));
  143. $month_start=strtotime(date("Ym",$nowtime).'01');
  144. //本月最后一天
  145. $month_end=strtotime("{$month} +1 month");
  146. if($cash_max_times){
  147. $isexist=DI()->notorm->cash_record
  148. ->where('uid=? and addtime > ? and addtime < ?',$uid,$month_start,$month_end)
  149. ->count();
  150. if($isexist >= $cash_max_times){
  151. return 1006;
  152. }
  153. }
  154. $isrz=DI()->notorm->user_auth
  155. ->select("status")
  156. ->where('uid=?',$uid)
  157. ->fetchOne();
  158. if(!$isrz || $isrz['status']!=1){
  159. return 1003;
  160. }
  161. /* 钱包信息 */
  162. $accountinfo=DI()->notorm->cash_account
  163. ->select("*")
  164. ->where('id=? and uid=?',$accountid,$uid)
  165. ->fetchOne();
  166. if(!$accountinfo){
  167. return 1007;
  168. }
  169. //提现比例
  170. $cash_rate=$config['cash_rate'];
  171. /*提现抽成比例*/
  172. $cash_take=$config['cash_take'];
  173. /* 最低额度 */
  174. $cash_min=$config['cash_min'];
  175. //提现钱数
  176. $money=floor($cashvote/$cash_rate);
  177. if($money < $cash_min){
  178. return 1004;
  179. }
  180. $cashvotes=$money*$cash_rate;
  181. $ifok=DI()->notorm->user
  182. ->where('id = ? and votes>=?', $uid,$cashvotes)
  183. ->update(array('votes' => new NotORM_Literal("votes - {$cashvotes}")) );
  184. if(!$ifok){
  185. return 1001;
  186. }
  187. //平台抽成后最终的钱数
  188. $money_take=$money*(1-$cash_take*0.01);
  189. $money=number_format($money_take,2,".","");
  190. $data=array(
  191. "uid"=>$uid,
  192. "money"=>$money,
  193. "votes"=>$cashvotes,
  194. "orderno"=>$uid.'_'.$nowtime.rand(100,999),
  195. "status"=>0,
  196. "addtime"=>$nowtime,
  197. "uptime"=>$nowtime,
  198. "type"=>$accountinfo['type'],
  199. "account_bank"=>$accountinfo['account_bank'],
  200. "account"=>$accountinfo['account'],
  201. "name"=>$accountinfo['name'],
  202. );
  203. $rs=DI()->notorm->cash_record->insert($data);
  204. if(!$rs){
  205. return 1002;
  206. }
  207. return $rs;
  208. }
  209. /* 直播记录 */
  210. public function getLiverecord($touid,$p){
  211. if($p<1){
  212. $p=1;
  213. }
  214. $pnum=50;
  215. $start=($p-1)*$pnum;
  216. $record=DI()->notorm->live_record
  217. ->select("id,uid,nums,starttime,endtime,title,city")
  218. ->where('uid=?',$touid)
  219. ->order("id desc")
  220. ->limit($start,$pnum)
  221. ->fetchAll();
  222. foreach($record as $k=>$v){
  223. $record[$k]['datestarttime']=date("Y.m.d",$v['starttime']);
  224. $record[$k]['dateendtime']=date("Y.m.d",$v['endtime']);
  225. $cha=$v['endtime']-$v['starttime'];
  226. $record[$k]['length']=getSeconds($cha);
  227. }
  228. return $record;
  229. }
  230. /* 个人主页 */
  231. public function getUserHome($uid,$touid){
  232. $info=getUserInfo($touid);
  233. $user_status=$info['user_status'];
  234. /* 直播状态 */
  235. $islive='0';
  236. $isexist=DI()->notorm->live
  237. ->select('uid')
  238. ->where('uid=? and islive=1',$touid)
  239. ->fetchOne();
  240. if($isexist){
  241. $islive='1';
  242. }
  243. $info['islive']=$islive;
  244. /* 直播数 */
  245. $livenums=DI()->notorm->live_record
  246. ->where('uid=?',$touid)
  247. ->count();
  248. $info['livenums']=$livenums;
  249. /* 直播记录 */
  250. $record=array();
  251. $record=DI()->notorm->live_record
  252. ->select("id,uid,nums,starttime,endtime,title,city")
  253. ->where('uid=?',$touid)
  254. ->order("id desc")
  255. ->limit(0,50)
  256. ->fetchAll();
  257. foreach($record as $k=>$v){
  258. $record[$k]['datestarttime']=date("Y.m.d",$v['starttime']);
  259. $record[$k]['dateendtime']=date("Y.m.d",$v['endtime']);
  260. $cha=$v['endtime']-$v['starttime'];
  261. $record[$k]['length']=getSeconds($cha);
  262. }
  263. $info['liverecord']=$record;
  264. return $info;
  265. }
  266. /* 获取关于我们列表 */
  267. public function getPerSetting(){
  268. $rs=array();
  269. $list=DI()->notorm->portal_post
  270. ->select("id,post_title")
  271. ->where("type='2'")
  272. ->order('list_order asc')
  273. ->fetchAll();
  274. foreach($list as $k=>$v){
  275. $rs[]=array('id'=>'0','name'=>$v['post_title'],'thumb'=>'' ,'href'=>get_upload_path("/portal/page/index?id={$v['id']}"));
  276. }
  277. return $rs;
  278. }
  279. /* 提现账号列表 */
  280. public function getUserAccountList($uid){
  281. $list=DI()->notorm->cash_account
  282. ->select("*")
  283. ->where('uid=?',$uid)
  284. ->order("addtime desc")
  285. ->fetchAll();
  286. return $list;
  287. }
  288. /* 账号信息 */
  289. public function getUserAccount($where){
  290. $list=DI()->notorm->cash_account
  291. ->select("*")
  292. ->where($where)
  293. ->order("addtime desc")
  294. ->fetchAll();
  295. return $list;
  296. }
  297. /* 设置提账号 */
  298. public function setUserAccount($data){
  299. $rs=DI()->notorm->cash_account
  300. ->insert($data);
  301. return $rs;
  302. }
  303. /* 删除提账号 */
  304. public function delUserAccount($data){
  305. $rs=DI()->notorm->cash_account
  306. ->where($data)
  307. ->delete();
  308. return $rs;
  309. }
  310. //获取认证信息
  311. public function getAuthInfo($uid){
  312. $info=DI()->notorm->user_auth
  313. ->where("uid=? and status=1",$uid)
  314. ->select("real_name,cer_no")
  315. ->fetchOne();
  316. return $info;
  317. }
  318. }