123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202 |
- <?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\adminapi\controller\v1\file;
- use app\adminapi\controller\AuthController;
- use app\services\system\attachment\SystemAttachmentServices;
- use crmeb\services\CacheService;
- use think\facade\App;
- /**
- * 附件管理类
- * Class SystemAttachment
- * @package app\adminapi\controller\v1\file
- */
- class SystemAttachment extends AuthController
- {
- /**
- * @var SystemAttachmentServices
- */
- protected $service;
- /**
- * @param App $app
- * @param SystemAttachmentServices $service
- */
- public function __construct(App $app, SystemAttachmentServices $service)
- {
- parent::__construct($app);
- $this->service = $service;
- }
- /**
- * 显示列表
- * @return mixed
- */
- public function index()
- {
- $where = $this->request->getMore([
- ['pid', 0],
- ['real_name', '']
- ]);
- return app('json')->success($this->service->getImageList($where));
- }
- /**
- * 删除指定资源
- * @return mixed
- */
- public function delete()
- {
- [$ids] = $this->request->postMore([
- ['ids', '']
- ], true);
- $this->service->del($ids);
- return app('json')->success(100002);
- }
- /**
- * 图片上传
- * @param int $upload_type
- * @param int $type
- * @return mixed
- */
- public function upload($upload_type = 0, $type = 0)
- {
- [$pid, $file, $menuName] = $this->request->postMore([
- ['pid', 0],
- ['file', 'file'],
- ['menu_name', '']
- ], true);
- $res = $this->service->upload((int)$pid, $file, $upload_type, $type, $menuName);
- return app('json')->success(100032, ['src' => $res]);
- }
- /**
- * 移动图片
- * @return mixed
- */
- public function moveImageCate()
- {
- $data = $this->request->postMore([
- ['pid', 0],
- ['images', '']
- ]);
- $this->service->move($data);
- return app('json')->success(100034);
- }
- /**
- * 修改文件名
- * @param $id
- * @return mixed
- */
- public function update($id)
- {
- $realName = $this->request->post('real_name', '');
- if (!$realName) {
- return app('json')->fail(400104);
- }
- $this->service->update($id, ['real_name' => $realName]);
- return app('json')->success(100001);
- }
- /**
- * 获取上传类型
- * @return mixed
- */
- public function uploadType()
- {
- $data['upload_type'] = (string)sys_config('upload_type', 1);
- return app('json')->success($data);
- }
- /**
- * 视频分片上传
- * @return mixed
- */
- public function videoUpload()
- {
- $data = $this->request->postMore([
- ['chunkNumber', 0],//第几分片
- ['currentChunkSize', 0],//分片大小
- ['chunkSize', 0],//总大小
- ['totalChunks', 0],//分片总数
- ['file', 'file'],//文件
- ['md5', ''],//MD5
- ['filename', ''],//文件名称
- ]);
- $res = $this->service->videoUpload($data, $_FILES['file']);
- return app('json')->success($res);
- }
- /**
- * 获取扫码上传页面链接以及参数
- * @return \think\Response
- * @author 吴汐
- * @email 442384644@qq.com
- * @date 2023/06/13
- */
- public function scanUploadQrcode()
- {
- [$pid] = $this->request->getMore([
- ['pid', 0]
- ], true);
- $uploadToken = md5(time());
- CacheService::set('scan_upload', $uploadToken, 600);
- $url = sys_config('site_url') . '/app/upload?pid=' . $pid . '&token=' . $uploadToken;
- return app('json')->success(['url' => $url]);
- }
- /**
- * 删除二维码
- * @return \think\Response
- * @author 等风来
- * @email 136327134@qq.com
- * @date 2023/6/26
- */
- public function removeUploadQrcode()
- {
- CacheService::delete('scan_upload');
- return app('json')->success();
- }
- /**
- * 获取扫码上传的图片数据
- * @param $scan_token
- * @return \think\Response
- * @author 吴汐
- * @email 442384644@qq.com
- * @date 2023/06/13
- */
- public function scanUploadImage($scan_token)
- {
- return app('json')->success($this->service->scanUploadImage($scan_token));
- }
- /**
- * 网络图片上传
- * @return \think\Response
- * @throws \Exception
- * @author 吴汐
- * @email 442384644@qq.com
- * @date 2023/06/13
- */
- public function onlineUpload()
- {
- $data = $this->request->postMore([
- ['pid', 0],
- ['images', []]
- ]);
- $this->service->onlineUpload($data);
- return app('json')->success(100032);
- }
- }
|