Users.php 9.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316
  1. <?php
  2. namespace catchAdmin\permissions\model;
  3. use catchAdmin\api\Listen;
  4. use catchAdmin\permissions\model\search\UserSearch;
  5. use catcher\base\CatchModel;
  6. use catcher\exceptions\FailedException;
  7. use catcher\Utils;
  8. use catchAdmin\permissions\model\DataRangScopeTrait;
  9. use think\facade\Db;
  10. class Users extends CatchModel
  11. {
  12. use HasRolesTrait;
  13. use HasJobsTrait;
  14. use UserSearch;
  15. //权限过滤
  16. use DataRangScopeTrait;
  17. protected $name = 'users';
  18. protected $field = [
  19. 'id', //
  20. 'username', // 用户名
  21. 'password', // 用户密码
  22. 'email', // 邮箱 登录
  23. 'avatar', // 头像
  24. 'remember_token',
  25. 'creator_id', // 创建者ID
  26. 'department_id', // 部门ID
  27. 'status', // 用户状态 1 正常 2 禁用
  28. 'last_login_ip', // 最后登录IP
  29. 'last_login_time', // 最后登录时间
  30. 'created_at', // 创建时间
  31. 'updated_at', // 更新时间
  32. 'deleted_at', // 删除状态,0未删除 >0 已删除
  33. 'area_id', // 区域ID
  34. 'phone', // 手机号
  35. 'wxmp_open_id',
  36. 'wx_open_id',
  37. 'wx_union_id',
  38. 'school_id',
  39. 'grade_id',
  40. 'class_id',
  41. 'passive_rfid',
  42. 'realname',
  43. 'idcard',
  44. 'active_rfid',
  45. 'active_rfid_code',
  46. 'rfid_expire_date',
  47. 'student_no',
  48. 'card_status',
  49. 'rules_id',
  50. 'parents_id',
  51. 'sex',
  52. 'age',
  53. 'online_time',
  54. 'alarm_status',
  55. 'last_station_mac',
  56. 'birthday',
  57. 'addr',
  58. 'classes',
  59. 'manage_classes',
  60. 'subjects',
  61. 'card_type',
  62. 'student_type',
  63. 'student_status',
  64. 'voice',
  65. 'voice_size',
  66. 'voice_time',
  67. 'imei',
  68. 'battery_level',
  69. 'accesskey',
  70. 'secretkey',
  71. 'remark',
  72. 'dept_name',
  73. 'asset_admin',
  74. 'wifi_macs',
  75. 'user_no',
  76. //设备密码
  77. 'equ_password'
  78. ];
  79. /**
  80. * set password
  81. *
  82. * @time 2019年12月07日
  83. * @param $value
  84. * @return false|string
  85. */
  86. public function setPasswordAttr($value)
  87. {
  88. return password_hash($value, PASSWORD_DEFAULT);
  89. }
  90. /**
  91. * 用户列表
  92. *
  93. * @time 2019年12月08日
  94. * @throws \think\db\exception\DbException
  95. * @return \think\Paginator
  96. */
  97. public function getList(): \think\Paginator
  98. {
  99. $no_display_roles = Db::table('roles')->whereIn('identify', 'personal,group_card_user,group_badge_user')->column('id');
  100. $user = request()->user();
  101. $res = $this->dataRange()
  102. ->withoutField(['updated_at'], true)
  103. ->catchSearch()
  104. ->alias('u')
  105. ->join('user_has_roles r', 'u.id=r.uid')
  106. // ->distinct(true)
  107. ->group('u.id')
  108. ->where('u.id', '<>', 1) //超级管理员账号不显示
  109. ->where('u.id', '<>', $user->id) //不显示自己
  110. ->whereNotIn('r.role_id', $no_display_roles)
  111. ->catchLeftJoin(Department::class, 'id', 'department_id', ['department_name'])
  112. ->order($this->aliasField('id'), 'desc')
  113. ->paginate();
  114. // var_dump($this->getLastSql());
  115. return $res;
  116. }
  117. /**
  118. * 获取权限
  119. *
  120. * @time 2019年12月12日
  121. * @param $uid
  122. * @throws \think\db\exception\DataNotFoundException
  123. * @throws \think\db\exception\DbException
  124. * @throws \think\db\exception\ModelNotFoundException
  125. * @return array
  126. */
  127. public function getPermissionsBy($uid = 0): array
  128. {
  129. // 获取超级管理配置 超级管理员全部权限
  130. if ($uid == config('catch.permissions.super_admin_id')) {
  131. return Permissions::select()->column('id');
  132. }
  133. $roles = $uid ? $this->findBy($uid)->getRoles() : $this->getRoles();
  134. $permissionIds = [];
  135. foreach ($roles as $role) {
  136. $permissionIds = array_merge($permissionIds, $role->getPermissions()->column('id'));
  137. }
  138. return array_unique($permissionIds);
  139. }
  140. /**
  141. * 后台根据权限标识判断用户是否拥有某个权限
  142. * @param string $permission_mark
  143. * @return bool
  144. * @throws \think\db\exception\DataNotFoundException
  145. * @throws \think\db\exception\DbException
  146. * @throws \think\db\exception\ModelNotFoundException
  147. *
  148. * 用法 request()->user()->can('permission@create');
  149. */
  150. public function can($permission_mark)
  151. {
  152. // 超级管理员直接返回true
  153. if (Utils::isSuperAdmin()) {
  154. return true;
  155. }
  156. // 查询当前用户的权限
  157. return in_array(
  158. Permissions::where('permission_mark', $permission_mark)->value('id') ?: 0,
  159. $this->getPermissionsBy()
  160. );
  161. }
  162. /**
  163. * 获取用户管理区域
  164. */
  165. public function getAreaIdBy()
  166. {
  167. return $this->where('id', request()->user()->id)->value('area_id');
  168. }
  169. /**
  170. * 根据部门获取用户
  171. */
  172. public function getUserByDepart($value)
  173. {
  174. return $this
  175. ->where('department_id', $value)
  176. ->field('id as value,username as text')
  177. ->select();
  178. }
  179. /**
  180. * 根据多个部门ID获取用户Ids
  181. */
  182. public function getUserByDepartIds($value)
  183. {
  184. return $this
  185. ->whereIn('department_id', $value)
  186. ->column('id');
  187. }
  188. /**
  189. * 获取推送用户(除家长、学生)
  190. */
  191. public function getPushUserList()
  192. {
  193. // 查出非家长、学生角色id
  194. $allowed_roles = Db::table('roles')->whereNotIn('identify', ['personal', 'group_card_user', 'group_badge_user'])->column('id');
  195. $allowed_roles_text = join(',', $allowed_roles);
  196. // 查出有这些角色的用户信息
  197. $res = $this->dataRange()
  198. ->catchSearch()
  199. ->alias('u')
  200. ->field('u.*')
  201. ->where('u.id', '<>', 1) //超级管理员账号不显示
  202. ->distinct(true)
  203. ->join('user_has_roles uhr', "uhr.role_id in ({$allowed_roles_text}) and uhr.uid = u.id")
  204. ->select()
  205. ->toArray();
  206. // 非管理员,可能存在是管理员添加的账号,查不到自己,追加自己
  207. // var_dump($this->getLastSql());
  208. if (!Utils::isSuperAdmin()) {
  209. $has_self = false;
  210. foreach ($res as $user) {
  211. if ($user['id'] == request()->user()->id) {
  212. $has_self = true;
  213. }
  214. }
  215. if (!$has_self) {
  216. array_push($res, request()->user());
  217. }
  218. }
  219. return $res;
  220. }
  221. //下发设备
  222. /**
  223. * @Descripttion: 将用户下发给设备
  224. * @name: likang
  225. * @param {*} $user 用户数组
  226. * @return {*}
  227. */
  228. public function equUserUpdate($user)
  229. {
  230. $roleid = [7, 9, 10];
  231. $content = null;
  232. $equ_user = [];
  233. $where = [];
  234. $wheres = [];
  235. $permissions = null;
  236. $where[] = ['uid', '=', $user['id']];
  237. $where[] = ['role_id', 'in', $roleid];
  238. $wheres[] = ['ContentType', '=', 'Users'];
  239. $wheres[] = ['ContentId', '=', $user['id']];
  240. $data = Db::name('user_has_roles')->where($where)->find();
  241. $pubulish = Db::name('publish')->where($wheres)->find();
  242. $time = msectime();
  243. //是否存在该设备
  244. if ($data) {
  245. if ($data['role_id'] == 7) {
  246. $permissions = 10;
  247. } else if ($data['role_id'] == 9) {
  248. $permissions = 11;
  249. } else if ($data['role_id'] == 10) {
  250. $permissions = 12;
  251. }
  252. $equ_user = [
  253. 'id' => intval($user['id']),
  254. 'name' => strval($user['username']),
  255. 'pwd' => strval($user['equ_password']),
  256. 'perm' => intval($permissions)
  257. ];
  258. //判断下发的数据库中是否存在
  259. if ($pubulish) {
  260. $content = [
  261. 'Type' => 'update',
  262. 'ContentType' => 'Users',
  263. 'ContentId' => $user['id'],
  264. 'Version' => $time,
  265. 'Status' => 1,
  266. 'Content' => json_encode($equ_user)
  267. ];
  268. Db::name('publish')->where($wheres)->update($content);
  269. } else {
  270. $content = [
  271. 'Type' => 'add',
  272. 'ContentType' => 'Users',
  273. 'ContentId' => $user['id'],
  274. 'Version' => $time,
  275. 'AddTime' => $time,
  276. 'Status' => 1,
  277. 'Content' => json_encode($equ_user)
  278. ];
  279. Db::name('publish')->save($content);
  280. }
  281. } else {
  282. if ($pubulish) {
  283. $content = [
  284. 'Type' => 'delete',
  285. 'Version' => $time,
  286. 'Status' => 1,
  287. 'Content' => json_encode($data)
  288. ];
  289. Db::name('publish')->where($wheres)->update($content);
  290. }
  291. }
  292. return;
  293. }
  294. }