AccountLogic.php 6.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161
  1. <?php
  2. namespace app\admin\logic;
  3. use app\model\AccountBatchLogModel;
  4. use app\model\AccountModel;
  5. use app\model\CommonModel;
  6. use think\Exception;
  7. use think\facade\Config;
  8. use think\facade\Db;
  9. use think\response\Json;
  10. class AccountLogic extends BaseLogic
  11. {
  12. //列表
  13. public static function list(array $data = []): Json
  14. {
  15. $db = AccountModel::alias('a')
  16. ->leftJoin('company b', 'b.id=a.company_id AND b.is_del=' . CommonModel::$del_normal)
  17. ->leftJoin('card c', 'c.id=a.card_id AND c.is_del=' . CommonModel::$del_normal)
  18. ->where('a.is_del', CommonModel::$del_normal);
  19. if ($data['username'] != '') $db->whereLike('a.username', '%' . $data['username'] . '%');
  20. if ($data['name'] != '') $db->whereLike('a.name', '%' . $data['name'] . '%');
  21. if ($data['mobile'] != '') $db->whereLike('a.mobile', '%' . $data['mobile'] . '%');
  22. $count = $db->count('a.id');
  23. $list = $db
  24. ->field('a.id,a.username,a.status,a.name,b.title company_title,c.title card_title,a.mobile,a.remark,a.starttime,a.expiretime')
  25. ->order('a.id', 'desc')
  26. ->page($data['page'], $data['size'])
  27. ->select()
  28. ->toArray();
  29. return json_show(CommonModel::$success, '获取账户列表成功', ['count' => $count, 'list' => $list]);
  30. }
  31. //添加
  32. public static function add(array $data = []): Json
  33. {
  34. $username_prefix = env('account_username_prefix');
  35. $rs = AccountModel::field('id,username')
  36. ->where('is_del', CommonModel::$del_normal)
  37. ->where('username', $username_prefix . $data['username'])
  38. ->findOrEmpty()
  39. ->isEmpty();
  40. if (!$rs) return json_show(CommonModel::$error_param, '该账号已存在');
  41. $pwd = randomkeys(6);
  42. $salt = randomkeys(4);
  43. $date = date('Y-m-d H:i:s');
  44. $res = AccountModel::create([
  45. 'username' => $username_prefix . $data['username'],
  46. 'pwd' => $pwd,
  47. 'salt' => $salt,
  48. 'password' => getPassword($pwd, $salt),
  49. 'company_id' => $data['company_id'],
  50. 'card_id' => $data['card_id'],
  51. 'video_ids' => implode(',', $data['video_ids']),
  52. 'status' => AccountModel::$status_not_active,
  53. 'is_del' => CommonModel::$del_normal,
  54. 'starttime' => $data['starttime'],
  55. 'expiretime' => date('Y-m-d', strtotime($data['expiretime']) + 3600 * 24),
  56. 'createrid' => self::$uid,
  57. 'creater' => self::$uname,
  58. 'addtime' => $date,
  59. 'updaterid' => self::$uid,
  60. 'updater' => self::$uname,
  61. 'updatetime' => $date,
  62. ])->save();
  63. return $res ? json_show(CommonModel::$success, '账户添加成功') : json_show(CommonModel::$error_param, '账户添加失败');
  64. }
  65. //读取
  66. public static function read(int $id = 0): Json
  67. {
  68. $res = AccountModel::field(true)
  69. ->where(['id' => $id, 'is_del' => CommonModel::$del_normal])
  70. ->withAttr('video_ids', function ($val) {
  71. return explode(',', $val);
  72. })
  73. ->findOrEmpty()
  74. ->toArray();
  75. return $res ? json_show(CommonModel::$success, '获取账户详情成功', $res) : json_show(CommonModel::$error_param, '获取账户详情失败');
  76. }
  77. //修改
  78. public static function edit(array $data = []): Json
  79. {
  80. $date = date('Y-m-d H:i:s');
  81. $data['video_ids'] = implode(',', $data['video_ids']);
  82. $res = AccountModel::where(['id' => $data['id'], 'is_del' => CommonModel::$del_normal])
  83. ->save(array_merge($data, [
  84. 'updaterid' => self::$uid,
  85. 'updater' => self::$uname,
  86. 'updatetime' => $date,
  87. ]));
  88. return $res ? json_show(CommonModel::$success, '账户修改成功') : json_show(CommonModel::$error_param, '账户修改失败');
  89. }
  90. //批量添加账户
  91. public static function batchAdd(array $data = []): Json
  92. {
  93. $rs = AccountBatchLogModel::create(array_merge($data, [
  94. 'status' => AccountBatchLogModel::$status_wait_handle,
  95. 'addtime' => date('Y-m-d H:i:s'),
  96. ]))->save();
  97. return $rs ? json_show(CommonModel::$success, '批量添加账户成功') : json_show(CommonModel::$error_param, '批量添加账户失败');
  98. }
  99. //删除
  100. public static function delete(int $id = 0): Json
  101. {
  102. $rs = AccountModel::where(['id' => $id, 'is_del' => CommonModel::$del_normal])
  103. ->where('status', '<>', AccountModel::$status_activated)
  104. ->save(['is_del' => CommonModel::$del_deleted, 'updatetime' => date('Y-m-d H:i:s')]);
  105. return $rs ? json_show(CommonModel::$success, '删除成功') : json_show(CommonModel::$error_param, '删除失败,该账户不存在或不允许删除');
  106. }
  107. //添加账户列表
  108. public static function batchLog(array $data = []): Json
  109. {
  110. $where = [];
  111. if ($data['company_title'] != '') $where[] = ['b.title', 'like', '%' . $data['company_title'] . '%'];
  112. if ($data['card_title'] != '') $where[] = ['c.title', 'like', '%' . $data['card_title'] . '%'];
  113. if ($data['status'] != '') $where[] = ['a.status', '=', $data['status']];
  114. $count = Db::name('account_batch_log')
  115. ->alias('a')
  116. ->leftJoin('company b', 'b.id=a.company_id AND b.is_del=' . CommonModel::$del_normal)
  117. ->leftJoin('card c', 'c.id=a.card_id AND c.is_del=' . CommonModel::$del_normal)
  118. ->where($where)
  119. ->count('a.id');
  120. $list = Db::name('account_batch_log')
  121. ->alias('a')
  122. ->leftJoin('company b', 'b.id=a.company_id AND b.is_del=' . CommonModel::$del_normal)
  123. ->leftJoin('card c', 'c.id=a.card_id AND c.is_del=' . CommonModel::$del_normal)
  124. ->where($where)
  125. ->field('a.id,b.title company_title,c.title card_title,a.username_prefix,a.username_year,a.starttime,a.expiretime,a.status,a.reason,a.addtime')
  126. ->order('a.id', 'desc')
  127. ->page($data['page'], $data['size'])
  128. ->select()
  129. ->toArray();
  130. return json_show(CommonModel::$success, '获取批量添加账户列表成功', ['count' => $count, 'list' => $list]);
  131. }
  132. }