| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114 |
- <?php
- // +----------------------------------------------------------------------
- // | CRMEB [ CRMEB赋能开发者,助力企业发展 ]
- // +----------------------------------------------------------------------
- // | Copyright (c) 2016~2020 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 think\facade\App;
- /**
- * 图片管理类
- * Class SystemAttachment
- * @package app\adminapi\controller\v1\file
- */
- class SystemAttachment extends AuthController
- {
- protected $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]
- ]);
- return app('json')->success($this->service->getImageList($where));
- }
- /**
- * 删除指定资源
- *
- * @param string $ids
- * @return \think\Response
- */
- public function delete()
- {
- [$ids] = $this->request->postMore([
- ['ids', '']
- ], true);
- $this->service->del($ids);
- return app('json')->success('删除成功');
- }
- /**
- * 图片上传
- * @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('上传成功', ['src' => $res]);
- }
- /**
- * 移动图片
- * @return mixed
- */
- public function moveImageCate()
- {
- $data = $this->request->postMore([
- ['pid', 0],
- ['images', '']
- ]);
- $this->service->move($data);
- return app('json')->success('移动成功');
- }
- /**
- * 修改文件名
- * @param $id
- * @return mixed
- */
- public function update($id)
- {
- $realName = $this->request->post('real_name', '');
- if (!$realName) {
- return app('json')->fail('文件名称不能为空');
- }
- $this->service->update($id, ['real_name' => $realName]);
- return app('json')->success('修改成功');
- }
- /**
- * 获取上传类型
- * @return mixed
- */
- public function uploadType()
- {
- $data['upload_type'] = sys_config('upload_type', 1);
- return app('json')->success($data);
- }
- }
|