AccountLogic.php 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125
  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 (getPassword($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. Db::commit();
  45. return json_show(CommonModel::$success, '登录成功', ['token' => $token]);
  46. } catch (Exception $exception) {
  47. Db::rollback();
  48. return json_show(CommonModel::$error_param, $exception->getMessage());
  49. }
  50. }
  51. //登出
  52. public static function logout(): Json
  53. {
  54. $info = AccountTokenModel::where(['accountid' => self::$aid])->save(['token' => '', 'expiretime' => date('Y-m-d H:i:s')]);
  55. return $info ? json_show(CommonModel::$success, '登出成功') : json_show(CommonModel::$error_param, '登出失败');
  56. }
  57. //详情
  58. public static function info(): Json
  59. {
  60. $info = AccountModel::where(['id' => self::$aid])
  61. ->field('id,username,mobile,name,starttime,expiretime')
  62. ->findOrEmpty()
  63. ->toArray();
  64. return $info ? json_show(CommonModel::$success, '获取账户详情成功', $info) : json_show(CommonModel::$error_token, '账户为空');
  65. }
  66. //更改密码
  67. public static function updatePassword(array $data = []): Json
  68. {
  69. $rs = AccountModel::field('id,password,salt')
  70. ->where(['is_del' => CommonModel::$del_normal, 'id' => self::$aid])
  71. ->findOrEmpty()
  72. ->getData();//password,salt这两个字段在模型里定义了隐藏,所以要在这里使用getData方法获取原始数据
  73. if (empty($rs)) return json_show(CommonModel::$error_token, '该账户不存在');
  74. if (getPassword($data['old_password'], $rs['salt']) != $rs['password']) return json_show(CommonModel::$error_param, '密码错误');
  75. $salt = randomkeys(6);
  76. $password = getPassword($data['new_password'], $salt);
  77. $da = [
  78. 'pwd' => $data['new_password'],
  79. 'salt' => $salt,
  80. 'password' => $password,
  81. 'updaterid' => self::$aid,
  82. 'updater' => self::$aname,
  83. 'updatetime' => date('Y-m-d H:i:s'),
  84. ];
  85. $rs = AccountModel::where(['id' => self::$aid, 'is_del' => CommonModel::$del_normal])
  86. ->save($da);
  87. return $rs ? json_show(CommonModel::$error_token, '修改密码成功') : json_show(CommonModel::$error_param, '修改密码失败');
  88. }
  89. }