AccountLogic.php 7.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182
  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::$success, '更改密码成功') : json_show(CommonModel::$error_param, '更改密码失败');
  88. }
  89. //视频列表
  90. public static function getVideoList(array $data = []): Json
  91. {
  92. $rs = AccountModel::field('id,video_ids')
  93. ->where(['id' => self::$aid, 'is_del' => CommonModel::$del_normal])
  94. ->findOrEmpty()
  95. ->toArray();
  96. if (empty($rs)) return json_show(CommonModel::$error_param, '该账户不存在');
  97. $db = VideoModel::where(['is_del' => CommonModel::$del_normal, 'status' => CommonModel::$status_normal])
  98. ->whereIn('id', $rs['video_ids']);
  99. $count = $db->count('id');
  100. $list = $db
  101. ->field('id,video_sn,video_name,video_url,video_img')
  102. ->page($data['page'], $data['size'])
  103. ->order(['weight' => 'desc', 'id' => 'desc'])
  104. ->select()
  105. ->toArray();
  106. return json_show(CommonModel::$success, '获取视频列表成功', ['count' => $count, 'list' => $list]);
  107. }
  108. //手机主题
  109. public static function theme(): Json
  110. {
  111. $group_id = GroupModel::where(['is_del' => CommonModel::$del_normal, 'company_id' => self::$company_id, 'card_id' => self::$card_id])
  112. ->value('id', 0);
  113. if (!$group_id) return json_show(CommonModel::$error_param, '该账户所对应的分组不存在');
  114. $rs = ThemeModel::field('id,code')
  115. ->where(['is_del' => CommonModel::$del_normal, 'group_id' => $group_id, 'status' => CommonModel::$status_normal])
  116. ->append(['modular'])
  117. ->withAttr('modular', function ($val, $data) {
  118. return Db::name('theme_modular')
  119. ->field('id,title,type')
  120. ->where(['is_del' => CommonModel::$del_normal, 'theme_id' => $data['id'], 'status' => CommonModel::$status_normal])
  121. ->order(['addtime' => 'desc', 'id' => 'desc'])
  122. ->append(['data'])
  123. ->withAttr('data', function ($v, $d) {
  124. return Db::name('theme_modular_data')
  125. ->field('id,img,jump_type,jump_param,good_name,good_id,style_type')
  126. ->where(['is_del' => CommonModel::$del_normal, 'theme_modular_id' => $d['id']])
  127. ->order(['addtime' => 'desc', 'id' => 'desc'])
  128. ->select()
  129. ->toArray();
  130. })
  131. ->select()
  132. ->toArray();
  133. })
  134. ->findOrEmpty()
  135. ->toArray();
  136. return empty($rs) ? json_show(CommonModel::$error_param, '该手机主题不存在') : json_show(CommonModel::$success, '获取手机主题成功', $rs);
  137. }
  138. }