Auth.php 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  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_Auth extends PhalApi_Model_NotORM {
  12. /*获取认证信息*/
  13. public function getAuth($uid) {
  14. $rs = array(
  15. 'uid'=>$uid,
  16. 'real_name'=>'',
  17. 'mobile'=>'',
  18. 'cer_no'=>'',
  19. 'front_view'=>'',
  20. 'back_view'=>'',
  21. 'handset_view'=>'',
  22. 'status'=>'-1',
  23. );
  24. $info=DI()->notorm->user_auth
  25. ->select("uid,real_name,mobile,cer_no,status,front_view,back_view,handset_view")
  26. ->where('uid=?',$uid)
  27. ->fetchOne();
  28. if($info){
  29. $info['front_view']=get_upload_path($info['front_view']);
  30. $info['back_view']=get_upload_path($info['back_view']);
  31. $info['handset_view']=get_upload_path($info['handset_view']);
  32. $rs = $info;
  33. }
  34. return $rs;
  35. }
  36. public function setAuth($data) {
  37. //认证已存在,则进行更新
  38. $setdata=$data;
  39. $setdata['uptime']=time();
  40. return DI()->notorm->user_auth
  41. ->insert_update(['uid'=>$data['uid']],$data,$setdata);
  42. }
  43. }