123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190 |
- <?php
- // +----------------------------------------------------------------------
- // | CRMEB [ CRMEB赋能开发者,助力企业发展 ]
- // +----------------------------------------------------------------------
- // | Copyright (c) 2016~2020 https://www.crmeb.com All rights reserved.
- // +----------------------------------------------------------------------
- // | Licensed CRMEB并不是自由软件,未经许可不能去掉CRMEB相关版权
- // +----------------------------------------------------------------------
- // | Author: CRMEB Team <admin@crmeb.com>
- // +----------------------------------------------------------------------
- declare (strict_types=1);
- namespace app\controller\store\user;
- use think\facade\App;
- use app\Request;
- use app\controller\store\AuthController;
- use app\services\user\label\UserLabelCateServices;
- use app\services\user\label\UserLabelServices;
- use app\validate\admin\user\UserLabelCateValidate;
- /**
- * 标签分类
- * Class UserLabelCate
- * @package app\controller\store\user
- */
- class UserLabelCate extends AuthController
- {
- /**
- * UserLabelCate constructor.
- * @param App $app
- * @param UserLabelCateServices $services
- */
- public function __construct(App $app, UserLabelCateServices $services)
- {
- parent::__construct($app);
- $this->services = $services;
- }
- /**
- * 显示资源列表
- *
- * @param Request $request
- * @return \think\Response
- * @throws \think\db\exception\DataNotFoundException
- * @throws \think\db\exception\DbException
- * @throws \think\db\exception\ModelNotFoundException
- */
- public function index(Request $request)
- {
- $where = $request->postMore([
- ['name', '']
- ]);
- $where['type'] = 1;
- $where['relation_id'] = $this->storeId;
- $where['group'] = 0;
- return app('json')->success($this->services->getLabelList($where));
- }
- /**
- * 显示创建资源表单页.
- *
- * @return \think\Response
- */
- public function create()
- {
- return app('json')->success($this->services->createForm());
- }
- /**
- * 保存新建的资源
- *
- * @param \app\Request $request
- * @return \think\Response
- */
- public function save(Request $request)
- {
- $data = $request->postMore([
- ['name', ''],
- ['sort', 0]
- ]);
- $this->validate($data, UserLabelCateValidate::class);
- if ($this->services->count(['name' => $data['name'], 'type' => 1, 'relation_id' => $this->storeId, 'group' => 0])) {
- return app('json')->fail('分类已经存在,请勿重复添加');
- }
- $data['group'] = 0;
- $data['type'] = 1;
- $data['relation_id'] = $this->storeId;
- if ($this->services->save($data)) {
- $this->services->deleteCateCache(1, (int)$this->storeId);
- return app('json')->success('保存分类成功');
- } else {
- return app('json')->fail('保存分类失败');
- }
- }
- /**
- * 显示指定的资源
- *
- * @param int $id
- * @return \think\Response
- */
- public function read($id)
- {
- if (!$id) {
- return app('json')->fail('缺少标签分类id');
- }
- $info = $this->services->get($id);
- if (!$info) {
- return app('json')->fail('获取标签分类失败');
- }
- return app('json')->success($info->toArray());
- }
- /**
- * 显示编辑资源表单页.
- *
- * @param int $id
- * @return \think\Response
- */
- public function edit($id)
- {
- return app('json')->success($this->services->updateForm((int)$id));
- }
- /**
- * 保存更新的资源
- *
- * @param \app\Request $request
- * @param int $id
- * @return \think\Response
- * @throws \Psr\SimpleCache\InvalidArgumentException
- */
- public function update(Request $request, $id)
- {
- $data = $request->postMore([
- ['name', ''],
- ['sort', 0],
- ]);
- $this->validate($data, UserLabelCateValidate::class);
- $cate = $this->services->getOne(['name' => $data['name'], 'type' => 1, 'relation_id' => $this->storeId]);
- if ($cate && $cate['id'] != $id) {
- return app('json')->fail('分类已经存在');
- }
- if ($this->services->update($id, $data)) {
- $this->services->deleteCateCache(1, (int)$this->storeId);
- return app('json')->success('修改成功');
- } else {
- return app('json')->fail('修改失败');
- }
- }
- /**
- * 删除指定资源
- *
- * @param int $id
- * @return \think\Response
- * @throws \Psr\SimpleCache\InvalidArgumentException
- */
- public function delete($id)
- {
- if (!$id || !($info = $this->services->get($id))) {
- return app('json')->fail('删除的数据不存在');
- }
- /** @var UserLabelServices $userLable */
- $userLable = app()->make(UserLabelServices::class);
- if ($userLable->count(['label_cate' => $id])) {
- return app('json')->fail('该分类下有标签数据');
- }
- if ($info->delete()) {
- $this->services->deleteCateCache(1, (int)$this->storeId);
- return app('json')->success('删除成功');
- } else {
- return app('json')->fail('删除失败');
- }
- }
- /**
- * 获取用户标签分类全部
- * @return mixed
- */
- public function getAll()
- {
- return app('json')->success($this->services->getLabelCateAll(1, (int)$this->storeId));
- }
- }
|