Admin.php 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. <?php
  2. namespace app\admin\model;
  3. use ba\Random;
  4. use think\Model;
  5. use think\facade\Db;
  6. /**
  7. * Admin模型
  8. * @property int $id 管理员ID
  9. * @property string $username 管理员用户名
  10. * @property string $nickname 管理员昵称
  11. * @property string $email 管理员邮箱
  12. * @property string $mobile 管理员手机号
  13. * @property string $last_login_ip 上次登录IP
  14. * @property string $last_login_time 上次登录时间
  15. * @property int $login_failure 登录失败次数
  16. */
  17. class Admin extends Model
  18. {
  19. /**
  20. * @var string 自动写入时间戳
  21. */
  22. protected $autoWriteTimestamp = true;
  23. /**
  24. * 追加属性
  25. */
  26. protected $append = [
  27. 'group_arr',
  28. 'group_name_arr',
  29. ];
  30. public function getGroupArrAttr($value, $row): array
  31. {
  32. return Db::name('admin_group_access')
  33. ->where('uid', $row['id'])
  34. ->column('group_id');
  35. }
  36. public function getGroupNameArrAttr($value, $row): array
  37. {
  38. $groupAccess = Db::name('admin_group_access')
  39. ->where('uid', $row['id'])
  40. ->column('group_id');
  41. return AdminGroup::whereIn('id', $groupAccess)->column('name');
  42. }
  43. public function getAvatarAttr($value): string
  44. {
  45. return full_url($value, false, config('buildadmin.default_avatar'));
  46. }
  47. public function setAvatarAttr($value): string
  48. {
  49. return $value == full_url('', false, config('buildadmin.default_avatar')) ? '' : $value;
  50. }
  51. public function getLastLoginTimeAttr($value): string
  52. {
  53. return $value ? date('Y-m-d H:i:s', $value) : '';
  54. }
  55. /**
  56. * 重置用户密码
  57. * @param int|string $uid 管理员ID
  58. * @param string $newPassword 新密码
  59. * @return int|Admin
  60. */
  61. public function resetPassword(int|string $uid, string $newPassword): int|Admin
  62. {
  63. $salt = Random::build('alnum', 16);
  64. $passwd = encrypt_password($newPassword, $salt);
  65. return $this->where(['id' => $uid])->update(['password' => $passwd, 'salt' => $salt]);
  66. }
  67. }