CRMEB/crmeb/app/services/system/admin/SystemAdminServices.php
2026-03-23 14:57:47 +08:00

470 lines
17 KiB
PHP
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<?php
// +----------------------------------------------------------------------
// | CRMEB [ CRMEB赋能开发者助力企业发展 ]
// +----------------------------------------------------------------------
// | Copyright (c) 2016~2026 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\system\log\SystemFileServices;
use app\services\user\UserExtractServices;
use crmeb\exceptions\AdminException;
use app\dao\system\admin\SystemAdminDao;
use app\services\system\SystemMenusServices;
use app\services\other\CacheServices;
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('您已被禁止登录');
}
$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('管理员不存在');
}
if (!$adminInfo->status) {
throw new AdminException('您已被禁止登录');
}
if (!password_verify($password, $adminInfo->file_pwd)) {
throw new AdminException('账号或密码错误');
}
$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]);
}
//自定义事件-管理员登录
event('CustomEventListener', ['admin_login', [
'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'),
'login_time' => date('Y-m-d H:i:s'),
]]);
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'),
'site_func' => sys_config('model_checkbox', ['seckill', 'bargain', 'combination']),
];
}
/**
* 获取登陆前的login等信息
* @return array
*/
public function getLoginInfo()
{
$key = uniqid();
CheckQueueJob::dispatchSecs(1, [$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
];
try {
$cacheServices = app()->make(CacheServices::class);
if (!$cacheServices->checkDbCache('write_md5', get_crmeb_version_vode())) {
// 执行写入数据
app()->make(SystemFileServices::class)->writeMd5();
$cacheServices->setDbCache('write_md5', get_crmeb_version_vode());
}
} catch (\ReflectionException $e) {
}
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('两次输入的密码不一致');
}
unset($data['conf_pwd']);
if (strlen(trim($data['pwd'])) < 6 || strlen(trim($data['pwd'])) > 32) {
throw new AdminException('账号密码必须是在6到32位之间');
}
if ($this->dao->count(['account' => $data['account'], 'is_del' => 0])) {
throw new AdminException('管理员账号已存在');
}
$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('添加失败');
}
});
}
/**
* 修改管理员表单
* @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('管理员不存在');
}
if ($adminInfo->is_del) {
throw new AdminException('管理员已经删除');
}
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('管理员不存在');
}
if ($adminInfo->is_del) {
throw new AdminException('管理员已经删除');
}
//修改密码
if ($data['pwd']) {
if (!$data['conf_pwd']) {
throw new AdminException('请输入确认密码');
}
if ($data['conf_pwd'] != $data['pwd']) {
throw new AdminException('两次输入的密码不一致');
}
if (strlen(trim($data['pwd'])) < 6 || strlen(trim($data['pwd'])) > 32) {
throw new AdminException('账号密码必须是在6到32位之间');
}
$adminInfo->pwd = $this->passwordHash($data['pwd']);
}
//修改账号
if (isset($data['account']) && $data['account'] != $adminInfo->account && $this->dao->isAccountUsable($data['account'], $id)) {
throw new AdminException('管理员账号已存在');
}
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('管理员信息未查到');
if ($adminInfo->is_del) {
throw new AdminException('管理员已经删除');
}
if (!$data['real_name'])
throw new AdminException('管理员姓名不能为空');
if ($data['pwd']) {
if (!password_verify($data['pwd'], $adminInfo['pwd']))
throw new AdminException('原始密码错误');
if (!$data['new_pwd'])
throw new AdminException('请输入新密码');
if (!$data['conf_pwd'])
throw new AdminException('请输入确认密码');
if ($data['new_pwd'] != $data['conf_pwd'])
throw new AdminException('两次输入的密码不一致');
$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('管理员信息未查到');
if ($adminInfo->is_del) {
throw new AdminException('管理员已经删除');
}
if ($data['file_pwd']) {
if ($adminInfo->level != 0) throw new AdminException('没有权限');
if (!$data['conf_file_pwd'])
throw new AdminException('请输入确认密码');
if ($data['file_pwd'] != $data['conf_file_pwd'])
throw new AdminException('两次输入的密码不一致');
$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) {
}
}
}