AccountLogic.php 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144
  1. <?php
  2. namespace app\mobile\logic;
  3. use app\model\AccountModel;
  4. use app\model\AccountTokenModel;
  5. use app\model\CommonModel;
  6. use app\model\GroupModel;
  7. use app\model\ThemeModel;
  8. use app\model\VideoModel;
  9. use think\Exception;
  10. use think\facade\Config;
  11. use think\facade\Db;
  12. use think\response\Json;
  13. class AccountLogic extends BaseLogic
  14. {
  15. //登录
  16. public static function login(array $data = []): Json
  17. {
  18. Db::startTrans();
  19. try {
  20. $rs = AccountModel::field('id,username,name,password,salt,starttime,expiretime,status')
  21. ->where(['is_del' => CommonModel::$del_normal, 'username' => $data['username']])
  22. ->findOrEmpty();
  23. if ($rs->isEmpty()) throw new Exception('该卡号不存在,请仔细核对');
  24. if (get_password($data['password'], $rs->salt) != $rs->password) throw new Exception('密码错误');
  25. $date = date('Y-m-d H:i:s');
  26. if (($date < $rs->starttime) || ($date > $rs->expiretime)) throw new Exception('该卡不在有效期内');
  27. $update_data = ['updaterid' => $rs->id, 'updater' => $rs->name, 'updatetime' => $date];
  28. if ($rs->status == AccountModel::$status_not_active) {
  29. //处理激活信息
  30. $update_data['status'] = AccountModel::$status_activated;
  31. $update_data['activetime'] = $date;
  32. }
  33. //更新账户相关信息
  34. AccountModel::where(['is_del' => CommonModel::$del_normal, 'id' => $rs->id])->save($update_data);
  35. //维护token
  36. $token = base64_encode($rs->username . $rs->salt . (string)time());
  37. $res = AccountTokenModel::field('id')
  38. ->where('accountid', $rs->id)
  39. ->findOrEmpty()
  40. ->isEmpty();
  41. $expire = Config::get('common.expire');
  42. if ($res) AccountTokenModel::create(['token' => $token, 'expiretime' => date('Y-m-d H:i:s', time() + $expire), 'accountid' => $rs->id]);
  43. else AccountTokenModel::where(['accountid' => $rs->id])->update(['token' => $token, 'expiretime' => date('Y-m-d H:i:s', time() + $expire)]);
  44. //获取微信网页授权URL
  45. $url = '';
  46. if ($data['callback_url'] != '') $url = WechatLogic::getOauthRedirect($data['callback_url'], $token);
  47. Db::commit();
  48. return json_show($url ? CommonModel::$error_jump : CommonModel::$success, '登录成功', ['token' => $token, 'url' => $url]);
  49. } catch (Exception $exception) {
  50. Db::rollback();
  51. return json_show(CommonModel::$error_param, $exception->getMessage());
  52. }
  53. }
  54. //登出
  55. public static function logout(): Json
  56. {
  57. $info = AccountTokenModel::where(['accountid' => self::$aid])->save(['token' => '', 'expiretime' => date('Y-m-d H:i:s')]);
  58. return $info ? json_show(CommonModel::$success, '登出成功') : json_show(CommonModel::$error_param, '登出失败');
  59. }
  60. //详情
  61. public static function info(): Json
  62. {
  63. $info = AccountModel::where(['id' => self::$aid])
  64. ->field('id,username,mobile,name,starttime,expiretime')
  65. ->findOrEmpty()
  66. ->toArray();
  67. return $info ? json_show(CommonModel::$success, '获取账户详情成功', $info) : json_show(CommonModel::$error_token, '账户为空');
  68. }
  69. //更改密码
  70. public static function updatePassword(array $data = []): Json
  71. {
  72. $rs = AccountModel::field('id,password,salt')
  73. ->where(['is_del' => CommonModel::$del_normal, 'id' => self::$aid])
  74. ->findOrEmpty()
  75. ->getData();//password,salt这两个字段在模型里定义了隐藏,所以要在这里使用getData方法获取原始数据
  76. if (empty($rs)) return json_show(CommonModel::$error_token, '该账户不存在');
  77. if (get_password($data['old_password'], $rs['salt']) != $rs['password']) return json_show(CommonModel::$error_param, '密码错误');
  78. $salt = randomkeys(6);
  79. $password = get_password($data['new_password'], $salt);
  80. $da = [
  81. 'pwd' => $data['new_password'],
  82. 'salt' => $salt,
  83. 'password' => $password,
  84. 'updaterid' => self::$aid,
  85. 'updater' => self::$aname,
  86. 'updatetime' => date('Y-m-d H:i:s'),
  87. ];
  88. $rs = AccountModel::where(['id' => self::$aid, 'is_del' => CommonModel::$del_normal])
  89. ->save($da);
  90. return $rs ? json_show(CommonModel::$error_token, '修改密码成功') : json_show(CommonModel::$error_param, '修改密码失败');
  91. }
  92. //通过微信端code绑定账户
  93. public static function bindAccountByCode(): Json
  94. {
  95. $openId = WechatLogic::getOauthAccessToken();
  96. $rs = AccountModel::where('id', self::$aid)
  97. ->save(['wx_openId' => $openId, 'updaterid' => self::$aid, 'updater' => self::$aname, 'updatetime' => date('Y-m-d H:i:s')]);
  98. return $rs ? json_show(CommonModel::$success, '绑定成功') : json_show(CommonModel::$error_param, '绑定失败');
  99. }
  100. }