lihai-oa/app/api/controller/HomeIndex.php

230 lines
8.5 KiB
PHP
Raw Normal View History

2023-10-27 18:06:15 +08:00
<?php
/**
* @copyright Copyright (c) 2021 勾股工作室
* @license https://opensource.org/licenses/GPL-3.0
* @link https://www.gougucms.com
*/
declare (strict_types = 1);
namespace app\api\controller;
use app\api\ApiController;
use app\api\middleware\Auth;
2023-10-28 14:04:45 +08:00
use app\note\model\Note as NoteList;
2023-10-27 18:06:15 +08:00
use app\home\model\AdminLog;
use app\user\validate\AdminCheck;
use think\exception\ValidateException;
use think\facade\Db;
class HomeIndex extends ApiController
{
protected $middleware = [
Auth::class => ['except' => []]
];
2023-10-28 14:04:45 +08:00
//用户信息
2023-10-28 13:44:07 +08:00
public function userinfo()
{
$uid = JWT_UID;
$userInfo = Db::name('Admin')->where(['id' => $uid])->field(['id', 'username', 'name', 'email', 'mobile', 'sex', 'nickname', 'thumb', 'did', 'position_id', 'desc', 'entry_time'])->find();
2023-11-02 15:45:15 +08:00
$userInfo['entry_time'] = date('Y-m-d', $userInfo['entry_time']);
2023-11-03 18:01:11 +08:00
$department = Db::name('Department')->where('id', $userInfo['did'])->column('title', 'id');
$position = Db::name('Position')->where('id', $userInfo['position_id'])->column('title', 'id');
$userInfo['department_name'] = $department[$userInfo['did']] ?? '';
$userInfo['position_name'] = $position[$userInfo['position_id']] ?? '';
2023-10-28 13:44:07 +08:00
$this->apiSuccess('获取成功', $userInfo);
}
2023-10-28 14:04:45 +08:00
//用户数据汇总
2023-10-28 11:51:17 +08:00
public function data_total()
2023-10-27 18:06:15 +08:00
{
2023-11-07 15:13:26 +08:00
$this->uid = JWT_UID;
2023-10-27 18:06:15 +08:00
$total = [];
$noteCount = Db::name('Note')->where('status', '1')->count();
2023-11-07 15:21:12 +08:00
$approveCount = Db::name('Approve')->where([['', 'exp', Db::raw("FIND_IN_SET('{$this->uid}',check_admin_ids)")]])->fetchSql(false)->count();
2023-11-07 15:13:26 +08:00
$expenseCount = Db::name('Expense')->where([['', 'exp', Db::raw("FIND_IN_SET('{$this->uid}',check_admin_ids)")],['delete_time', '=', 0]])->count();
$invoiceCount = Db::name('Invoice')->where([['', 'exp', Db::raw("FIND_IN_SET('{$this->uid}',check_admin_ids)")],['delete_time', '=', 0]])->count();
2023-10-27 18:06:15 +08:00
$total[] = array(
'name' => '公告',
2023-10-28 11:51:17 +08:00
'type' => 'note',
'num' => $noteCount,
2023-10-27 18:06:15 +08:00
);
$total[] = array(
2023-11-07 15:21:12 +08:00
'name' => '待审审批',
2023-10-28 11:51:17 +08:00
'type' => 'approve',
'num' => $approveCount,
2023-10-27 18:06:15 +08:00
);
$total[] = array(
2023-11-07 15:21:12 +08:00
'name' => '待审报销',
2023-10-28 11:51:17 +08:00
'type' => 'expense',
'num' => $expenseCount,
2023-10-27 18:06:15 +08:00
);
$total[] = array(
2023-11-07 15:21:12 +08:00
'name' => '待审发票',
2023-10-28 11:51:17 +08:00
'type' => 'invoice',
'num' => $invoiceCount,
2023-10-27 18:06:15 +08:00
);
2023-11-07 15:13:26 +08:00
2023-10-27 18:06:15 +08:00
$module = Db::name('AdminModule')->column('name');
if (in_array('project', $module)) {
$project_ids = Db::name('ProjectUser')->where(['uid' => $this->uid, 'delete_time' => 0])->column('project_id');
$whereProject = [];
$whereProject[] = ['delete_time', '=', 0];
$whereProject[] = ['id', 'in', $project_ids];
2023-11-07 15:13:26 +08:00
$projectCount = Db::name('Project')->where($whereProject)->fetchSql(false)->count();
2023-10-27 18:06:15 +08:00
$total[] = array(
'name' => '项目',
2023-10-28 11:51:17 +08:00
'type' => 'project',
'num' => $projectCount,
2023-10-27 18:06:15 +08:00
);
2023-11-07 15:13:26 +08:00
$taskCount = Db::name('ProjectTask')->where([['director_uid', '=', $this->uid],['flow_status', '<', 3],['delete_time', '=', 0]])->count();
2023-10-27 18:06:15 +08:00
$total[] = array(
'name' => '任务',
2023-10-28 11:51:17 +08:00
'type' => 'task',
'num' => $taskCount,
2023-10-27 18:06:15 +08:00
);
}
if (in_array('article', $module)) {
$articleCount = Db::name('Article')->where([['delete_time', '=', 0],['uid', '=', $this->uid]])->count();
$total[] = array(
'name' => '文章',
2023-10-28 11:51:17 +08:00
'type' => 'article',
'num' => $articleCount,
2023-10-27 18:06:15 +08:00
);
}
2023-10-28 11:51:17 +08:00
$this->apiSuccess('', $total);
2023-10-27 18:06:15 +08:00
}
//修改个人信息
public function edit_personal()
{
$param = get_params();
$uid = JWT_UID;
Db::name('Admin')->where(['id' => $uid])->strict(false)->field(true)->update($param);
$this->apiSuccess('修改成功');
}
//修改密码
public function edit_password()
{
$param = get_params();
try {
validate(AdminCheck::class)->scene('editPwd')->check($param);
} catch (ValidateException $e) {
// 验证失败 输出错误信息
$this->apiError($e->getError());
}
$uid = JWT_UID;
$admin = Db::name('Admin')->where(['id' => $uid])->find();
$old_psw = set_password($param['old_pwd'], $admin['salt']);
if ($admin['pwd'] != $old_psw) {
$this->apiError('旧密码错误');
}
$salt = set_salt(20);
$new_pwd = set_password($param['pwd'], $salt);
$data = [
'reg_pwd' => '',
'salt' => $salt,
'pwd' => $new_pwd,
'update_time' => time(),
];
Db::name('Admin')->where(['id' => $uid])->strict(false)->field(true)->update($data);
$this->apiSuccess('修改成功');
}
2023-10-28 10:49:28 +08:00
//上传文件
public function upload()
{
$uid = JWT_UID;
$sourse = 'file';
if(isset($param['sourse'])){
$sourse = $param['sourse'];
}
if($sourse == 'file' || $sourse == 'tinymce'){
if(request()->file('file')){
$file = request()->file('file');
}
else{
$this->apiError('没有选择上传文件');
}
}
else{
if (request()->file('editormd-image-file')) {
$file = request()->file('editormd-image-file');
} else {
$this->apiError('没有选择上传文件');
}
}
// 获取上传文件的hash散列值
$sha1 = $file->hash('sha1');
$md5 = $file->hash('md5');
$rule = [
'image' => 'jpg,png,jpeg,gif',
'doc' => 'txt,doc,docx,ppt,pptx,xls,xlsx,pdf',
'file' => 'zip,gz,7z,rar,tar',
'video' => 'mpg,mp4,mpeg,avi,wmv,mov,flv,m4v',
];
$fileExt = $rule['image'] . ',' . $rule['doc'] . ',' . $rule['file'] . ',' . $rule['video'];
//1M=1024*1024=1048576字节
$fileSize = 100 * 1024 * 1024;
if (isset($param['type']) && $param['type']) {
$fileExt = $rule[$param['type']];
}
if (isset($param['size']) && $param['size']) {
$fileSize = $param['size'];
}
$validate = \think\facade\Validate::rule([
'image' => 'require|fileSize:' . $fileSize . '|fileExt:' . $fileExt,
]);
$file_check['image'] = $file;
if (!$validate->check($file_check)) {
$this->apiError($validate->getError());
}
// 日期前綴
$dataPath = date('Ym');
$use = 'thumb';
$filename = \think\facade\Filesystem::disk('public')->putFile($dataPath, $file, function () use ($md5) {
return $md5;
});
if ($filename) {
//写入到附件表
$data = [];
$path = get_config('filesystem.disks.public.url');
$data['filepath'] = $path . '/' . $filename;
$data['name'] = $file->getOriginalName();
$data['mimetype'] = $file->getOriginalMime();
$data['fileext'] = $file->extension();
$data['filesize'] = $file->getSize();
$data['filename'] = $filename;
$data['sha1'] = $sha1;
$data['md5'] = $md5;
$data['module'] = \think\facade\App::initialize()->http->getName();
$data['action'] = app('request')->action();
$data['uploadip'] = app('request')->ip();
$data['create_time'] = time();
$data['user_id'] = $uid;
if ($data['module'] = 'admin') {
//通过后台上传的文件直接审核通过
$data['status'] = 1;
$data['admin_id'] = $data['user_id'];
$data['audit_time'] = time();
}
$data['use'] = request()->has('use') ? request()->param('use') : $use; //附件用处
$res['id'] = Db::name('file')->insertGetId($data);
$res['filepath'] = $data['filepath'];
$res['name'] = $data['name'];
$res['filename'] = $data['filename'];
$res['filesize'] = $data['filesize'];
$res['fileext'] = $data['fileext'];
add_log('upload', $data['user_id'], $data,'文件');
$this->apiSuccess('上传成功', $res);
} else {
$this->apiError('上传失败,请重试');
}
}
2023-10-27 18:06:15 +08:00
}