123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444 |
- <?php
- // +----------------------------------------------------------------------
- // | CRMEB [ CRMEB赋能开发者,助力企业发展 ]
- // +----------------------------------------------------------------------
- // | Copyright (c) 2016~2023 https://www.crmeb.com All rights reserved.
- // +----------------------------------------------------------------------
- // | Licensed CRMEB并不是自由软件,未经许可不能去掉CRMEB相关版权
- // +----------------------------------------------------------------------
- // | Author: CRMEB Team <admin@crmeb.com>
- // +----------------------------------------------------------------------
- namespace app\services\system\admin;
- use app\jobs\CheckQueueJob;
- use app\services\BaseServices;
- use app\services\order\StoreOrderServices;
- use app\services\product\product\StoreProductReplyServices;
- use app\services\product\product\StoreProductServices;
- use app\services\user\UserExtractServices;
- use crmeb\exceptions\AdminException;
- use app\dao\system\admin\SystemAdminDao;
- use app\services\system\SystemMenusServices;
- use crmeb\services\CacheService;
- use crmeb\services\FormBuilder;
- use crmeb\services\workerman\ChannelService;
- use think\facade\Config;
- use think\facade\Event;
- use think\Model;
- /**
- * 管理员service
- * Class SystemAdminServices
- * @package app\services\system\admin
- * @method getAdminIds(int $level) 根据管理员等级获取管理员id
- * @method getOrdAdmin(string $field, int $level) 获取低于等级的管理员名称和id
- */
- class SystemAdminServices extends BaseServices
- {
- /**
- * form表单创建
- * @var FormBuilder
- */
- protected $builder;
- /**
- * SystemAdminServices constructor.
- * @param SystemAdminDao $dao
- */
- public function __construct(SystemAdminDao $dao, FormBuilder $builder)
- {
- $this->dao = $dao;
- $this->builder = $builder;
- }
- /**
- * 管理员登陆
- * @param string $account
- * @param string $password
- * @return array|bool|Model
- * @throws \think\db\exception\DataNotFoundException
- * @throws \think\db\exception\DbException
- * @throws \think\db\exception\ModelNotFoundException
- */
- public function verifyLogin(string $account, string $password)
- {
- $adminInfo = $this->dao->accountByAdmin($account);
- if (!$adminInfo || !password_verify($password, $adminInfo->pwd)) return false;
- if (!$adminInfo->status) {
- throw new AdminException(400595);
- }
- $adminInfo->last_time = time();
- $adminInfo->last_ip = app('request')->ip();
- $adminInfo->login_count++;
- $adminInfo->save();
- return $adminInfo;
- }
- /**
- * 文件管理员登陆
- * @param string $account
- * @param string $password
- * @return array|Model
- * @throws \think\db\exception\DataNotFoundException
- * @throws \think\db\exception\DbException
- * @throws \think\db\exception\ModelNotFoundException
- */
- public function verifyFileLogin(string $account, string $password)
- {
- $adminInfo = $this->dao->accountByAdmin($account);
- if (!$adminInfo) {
- throw new AdminException(400594);
- }
- if (!$adminInfo->status) {
- throw new AdminException(400595);
- }
- if (!password_verify($password, $adminInfo->file_pwd)) {
- throw new AdminException(400140);
- }
- $adminInfo->last_time = time();
- $adminInfo->last_ip = app('request')->ip();
- $adminInfo->login_count++;
- $adminInfo->save();
- return $adminInfo;
- }
- /**
- * 后台登陆获取菜单获取token
- * @param string $account
- * @param string $password
- * @param string $type
- * @return array|bool
- * @throws \think\db\exception\DataNotFoundException
- * @throws \think\db\exception\DbException
- * @throws \think\db\exception\ModelNotFoundException
- */
- public function login(string $account, string $password, string $type, string $key = '')
- {
- $adminInfo = $this->verifyLogin($account, $password);
- if (!$adminInfo) return false;
- $tokenInfo = $this->createToken($adminInfo->id, $type, $adminInfo->pwd);
- /** @var SystemMenusServices $services */
- $services = app()->make(SystemMenusServices::class);
- [$menus, $uniqueAuth] = $services->getMenusList($adminInfo->roles, (int)$adminInfo['level']);
- $remind = Config::get('app.console_remind', false);
- if ($remind) {
- [$queue, $timer] = Event::until('AdminLoginListener', [$key]);
- }
- return [
- 'token' => $tokenInfo['token'],
- 'expires_time' => $tokenInfo['params']['exp'],
- 'menus' => $menus,
- 'unique_auth' => $uniqueAuth,
- 'user_info' => [
- 'id' => $adminInfo->getData('id'),
- 'account' => $adminInfo->getData('account'),
- 'head_pic' => get_file_link($adminInfo->getData('head_pic')),
- 'level' => $adminInfo->getData('level'),
- 'real_name' => $adminInfo->getData('real_name'),
- ],
- 'logo' => sys_config('site_logo'),
- 'logo_square' => sys_config('site_logo_square'),
- 'version' => get_crmeb_version(),
- 'newOrderAudioLink' => get_file_link(sys_config('new_order_audio_link', '')),
- 'queue' => $queue ?? true,
- 'timer' => $timer ?? true,
- 'site_name' => sys_config('site_name'),
- ];
- }
- /**
- * 获取登陆前的login等信息
- * @return array
- */
- public function getLoginInfo()
- {
- $key = uniqid();
- CheckQueueJob::dispatch([$key]);
- $data = [
- 'slide' => sys_data('admin_login_slide') ?? [],
- 'logo_square' => sys_config('site_logo_square'),//透明
- 'logo_rectangle' => sys_config('site_logo'),//方形
- 'login_logo' => sys_config('login_logo'),//登陆
- 'site_name' => sys_config('site_name'),
- 'copyright' => sys_config('nncnL_crmeb_copyright', ''),
- 'version' => get_crmeb_version(),
- 'key' => $key,
- 'login_captcha' => 0
- ];
- if (CacheService::get('login_captcha', 1) > 1) {
- $data['login_captcha'] = 1;
- }
- return $data;
- }
- /**
- * 管理员列表
- * @param array $where
- * @return array
- */
- public function getAdminList(array $where)
- {
- [$page, $limit] = $this->getPageValue();
- $list = $this->dao->getList($where, $page, $limit);
- $count = $this->dao->count($where);
- /** @var SystemRoleServices $service */
- $service = app()->make(SystemRoleServices::class);
- $allRole = $service->getRoleArray();
- foreach ($list as &$item) {
- if ($item['roles']) {
- $roles = [];
- foreach ($item['roles'] as $id) {
- if (isset($allRole[$id])) $roles[] = $allRole[$id];
- }
- if ($roles) {
- $item['roles'] = implode(',', $roles);
- } else {
- $item['roles'] = '';
- }
- }
- $item['_add_time'] = date('Y-m-d H:i:s', $item['add_time']);
- $item['_last_time'] = $item['last_time'] ? date('Y-m-d H:i:s', $item['last_time']) : '';
- }
- return compact('list', 'count');
- }
- /**
- * 创建管理员表单
- * @param int $level
- * @param array $formData
- * @return mixed
- * @throws \FormBuilder\Exception\FormBuilderException
- */
- public function createAdminForm(int $level, array $formData = [])
- {
- $f[] = $this->builder->input('account', '管理员账号', $formData['account'] ?? '')->required('请填写管理员账号');
- if (empty($formData)) {
- $f[] = $this->builder->input('pwd', '管理员密码')->type('password')->required('请填写管理员密码');
- $f[] = $this->builder->input('conf_pwd', '确认密码')->type('password')->required('请输入确认密码');
- } else {
- $f[] = $this->builder->input('pwd', '管理员密码')->type('password');
- $f[] = $this->builder->input('conf_pwd', '确认密码')->type('password');
- }
- $f[] = $this->builder->input('real_name', '管理员姓名', $formData['real_name'] ?? '')->required('请输入管理员姓名');
- /** @var SystemRoleServices $service */
- $service = app()->make(SystemRoleServices::class);
- $options = $service->getRoleFormSelect($level);
- if (isset($formData['roles'])) {
- foreach ($formData['roles'] as &$item) {
- $item = intval($item);
- }
- }
- $f[] = $this->builder->select('roles', '管理员角色', $formData['roles'] ?? [])->setOptions(FormBuilder::setOptions($options))->multiple(true)->required('请选择管理员角色');
- $f[] = $this->builder->radio('status', '状态', $formData['status'] ?? 1)->options([['label' => '开启', 'value' => 1], ['label' => '关闭', 'value' => 0]]);
- return $f;
- }
- /**
- * 添加管理员form表单获取
- * @param int $level
- * @return array
- * @throws \FormBuilder\Exception\FormBuilderException
- */
- public function createForm(int $level)
- {
- return create_form('管理员添加', $this->createAdminForm($level), $this->url('/setting/admin'));
- }
- /**
- * 创建管理员
- * @param array $data
- * @return bool
- */
- public function create(array $data)
- {
- if ($data['conf_pwd'] != $data['pwd']) {
- throw new AdminException(400264);
- }
- unset($data['conf_pwd']);
- if (strlen(trim($data['pwd'])) < 6 || strlen(trim($data['pwd'])) > 32) {
- throw new AdminException(400762);
- }
- if ($this->dao->count(['account' => $data['account'], 'is_del' => 0])) {
- throw new AdminException(400596);
- }
- $data['pwd'] = $this->passwordHash($data['pwd']);
- $data['add_time'] = time();
- $data['roles'] = implode(',', $data['roles']);
- $data['head_pic'] = '/statics/system_images/admin_head_pic.png';
- return $this->transaction(function () use ($data) {
- if ($this->dao->save($data)) {
- return true;
- } else {
- throw new AdminException(100022);
- }
- });
- }
- /**
- * 修改管理员表单
- * @param int $level
- * @param int $id
- * @return array
- * @throws \FormBuilder\Exception\FormBuilderException
- */
- public function updateForm(int $level, int $id)
- {
- $adminInfo = $this->dao->get($id);
- if (!$adminInfo) {
- throw new AdminException(400594);
- }
- if ($adminInfo->is_del) {
- throw new AdminException(400452);
- }
- return create_form('管理员修改', $this->createAdminForm($level, $adminInfo->toArray()), $this->url('/setting/admin/' . $id), 'PUT');
- }
- /**
- * 修改管理员
- * @param int $id
- * @param array $data
- * @return bool
- */
- public function save(int $id, array $data)
- {
- if (!$adminInfo = $this->dao->get($id)) {
- throw new AdminException(400594);
- }
- if ($adminInfo->is_del) {
- throw new AdminException(400452);
- }
- //修改密码
- if ($data['pwd']) {
- if (!$data['conf_pwd']) {
- throw new AdminException(400263);
- }
- if ($data['conf_pwd'] != $data['pwd']) {
- throw new AdminException(400264);
- }
- if (strlen(trim($data['pwd'])) < 6 || strlen(trim($data['pwd'])) > 32) {
- throw new AdminException(400762);
- }
- $adminInfo->pwd = $this->passwordHash($data['pwd']);
- }
- //修改账号
- if (isset($data['account']) && $data['account'] != $adminInfo->account && $this->dao->isAccountUsable($data['account'], $id)) {
- throw new AdminException(400596);
- }
- if (isset($data['roles'])) {
- $adminInfo->roles = implode(',', $data['roles']);
- }
- $adminInfo->real_name = $data['real_name'] ?? $adminInfo->real_name;
- $adminInfo->account = $data['account'] ?? $adminInfo->account;
- $adminInfo->status = $data['status'];
- if ($adminInfo->save()) {
- return true;
- } else {
- return false;
- }
- }
- /**
- * 修改当前管理员信息
- * @param int $id
- * @param array $data
- * @return bool
- */
- public function updateAdmin(int $id, array $data)
- {
- $adminInfo = $this->dao->get($id);
- if (!$adminInfo)
- throw new AdminException(400451);
- if ($adminInfo->is_del) {
- throw new AdminException(400452);
- }
- if (!$data['real_name'])
- throw new AdminException(400453);
- if ($data['pwd']) {
- if (!password_verify($data['pwd'], $adminInfo['pwd']))
- throw new AdminException(400597);
- if (!$data['new_pwd'])
- throw new AdminException(400598);
- if (!$data['conf_pwd'])
- throw new AdminException(400263);
- if ($data['new_pwd'] != $data['conf_pwd'])
- throw new AdminException(400264);
- $adminInfo->pwd = $this->passwordHash($data['new_pwd']);
- }
- $adminInfo->real_name = $data['real_name'];
- $adminInfo->head_pic = $data['head_pic'];
- if ($adminInfo->save()) {
- CacheService::clear();
- return true;
- } else {
- return false;
- }
- }
- /**
- * 设置当前管理员文件管理密码
- * @param int $id
- * @param array $data
- * @return bool
- */
- public function setFilePassword(int $id, array $data)
- {
- $adminInfo = $this->dao->get($id);
- if (!$adminInfo)
- throw new AdminException(400451);
- if ($adminInfo->is_del) {
- throw new AdminException(400452);
- }
- if ($data['file_pwd']) {
- if ($adminInfo->level != 0) throw new AdminException(400611);
- if (!$data['conf_file_pwd'])
- throw new AdminException(400263);
- if ($data['file_pwd'] != $data['conf_file_pwd'])
- throw new AdminException(400264);
- $adminInfo->file_pwd = $this->passwordHash($data['file_pwd']);
- }
- if ($adminInfo->save())
- return true;
- else
- return false;
- }
- /** 后台订单下单,评论,支付成功,后台消息提醒
- * @param $event
- */
- public function adminNewPush()
- {
- try {
- /** @var StoreOrderServices $orderServices */
- $orderServices = app()->make(StoreOrderServices::class);
- $data['ordernum'] = $orderServices->count(['is_del' => 0, 'status' => 1, 'shipping_type' => 1]);
- /** @var StoreProductServices $productServices */
- $productServices = app()->make(StoreProductServices::class);
- $data['inventory'] = $productServices->count(['type' => 5]);
- /** @var StoreProductReplyServices $replyServices */
- $replyServices = app()->make(StoreProductReplyServices::class);
- $data['commentnum'] = $replyServices->count(['is_reply' => 0]);
- /** @var UserExtractServices $extractServices */
- $extractServices = app()->make(UserExtractServices::class);
- $data['reflectnum'] = $extractServices->getCount(['status' => 0]);//提现
- $data['msgcount'] = intval($data['ordernum']) + intval($data['inventory']) + intval($data['commentnum']) + intval($data['reflectnum']);
- ChannelService::instance()->send('ADMIN_NEW_PUSH', $data);
- } catch (\Exception $e) {
- }
- }
- }
|