// +---------------------------------------------------------------------- namespace app\adminapi\controller\v1\file; use app\adminapi\controller\AuthController; use app\services\system\attachment\SystemAttachmentCategoryServices; use think\facade\App; /** * 图片分类管理类 * Class SystemAttachmentCategory * @package app\adminapi\controller\v1\file */ class SystemAttachmentCategory extends AuthController { /** * @var SystemAttachmentCategoryServices */ protected $service; /** * @param App $app * @param SystemAttachmentCategoryServices $service */ public function __construct(App $app, SystemAttachmentCategoryServices $service) { parent::__construct($app); $this->service = $service; } /** * 显示资源列表 * @return \think\Response * @throws \ReflectionException * @throws \think\db\exception\DataNotFoundException * @throws \think\db\exception\DbException * @throws \think\db\exception\ModelNotFoundException */ public function index() { $where = $this->request->getMore([ ['name', ''], ['pid', 0], ['all', 0] ]); if ($where['name'] != '' || $where['all'] == 1) $where['pid'] = ''; return app('json')->success($this->service->getAll($where)); } /** * 新增表单 * @return mixed * @throws \FormBuilder\Exception\FormBuilderException */ public function create($id) { return app('json')->success($this->service->createForm($id)); } /** * 保存新增 * @return mixed */ public function save() { $data = $this->request->postMore([ ['pid', 0], ['name', ''] ]); if (is_array($data['pid'])) $data['pid'] = end($data['pid']); if (!$data['name']) { return app('json')->fail(400100); } $this->service->save($data); return app('json')->success(100021); } /** * 编辑表单 * @param $id * @return mixed * @throws \FormBuilder\Exception\FormBuilderException */ public function edit($id) { return app('json')->success($this->service->editForm($id)); } /** * 保存更新的资源 * @param $id * @return mixed */ public function update($id) { $data = $this->request->postMore([ ['pid', 0], ['name', ''] ]); if (is_array($data['pid'])) $data['pid'] = end($data['pid']); if (!$data['name']) { return app('json')->fail(400100); } if ($data['pid'] == $id) { return app('json')->fail('上级分类不能是自己'); } $info = $this->service->get($id); $count = $this->service->count(['pid' => $id]); if ($count && $info['pid'] != $data['pid']) return app('json')->fail(400105); $this->service->update($id, $data); return app('json')->success(100001); } /** * 删除指定资源 * @param int $id * @return \think\Response */ public function delete($id) { $this->service->del($id); return app('json')->success(100002); } }