mirror of
https://github.com/crmeb/CRMEB.git
synced 2025-12-10 17:42:50 +00:00
166 lines
4.7 KiB
PHP
166 lines
4.7 KiB
PHP
<?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\kefu;
|
||
|
||
use app\Request;
|
||
use think\facade\App;
|
||
use app\adminapi\controller\AuthController;
|
||
use app\services\kefu\service\StoreServiceSpeechcraftServices;
|
||
use app\adminapi\validate\service\StoreServiceSpeechcraftValidata;
|
||
|
||
/**
|
||
* 话术空控制器
|
||
* Class StoreServiceSpeechcraft
|
||
* @package app\adminapi\controller\v1\application\wechat
|
||
*/
|
||
class StoreServiceSpeechcraft extends AuthController
|
||
{
|
||
/**
|
||
* StoreServiceSpeechcraft constructor.
|
||
* @param App $app
|
||
* @param StoreServiceSpeechcraftServices $services
|
||
*/
|
||
public function __construct(App $app, StoreServiceSpeechcraftServices $services)
|
||
{
|
||
parent::__construct($app);
|
||
$this->services = $services;
|
||
}
|
||
|
||
/**
|
||
* 显示资源列表
|
||
* @param Request $request
|
||
* @return mixed
|
||
* @throws \think\db\exception\DataNotFoundException
|
||
* @throws \think\db\exception\DbException
|
||
* @throws \think\db\exception\ModelNotFoundException
|
||
*/
|
||
public function index(Request $request)
|
||
{
|
||
$where = $request->getMore([
|
||
['title', ''],
|
||
['message', ''],
|
||
[['cate_id', 'd'], ''],
|
||
]);
|
||
$where['kefu_id'] = 0;
|
||
return app('json')->success($this->services->getSpeechcraftList($where));
|
||
}
|
||
|
||
/**
|
||
* 显示创建资源表单页
|
||
* @return mixed
|
||
*/
|
||
public function create()
|
||
{
|
||
return app('json')->success($this->services->createForm());
|
||
}
|
||
|
||
/**
|
||
* 保存新建的资源
|
||
* @param Request $request
|
||
* @return \think\Response
|
||
*/
|
||
public function save(Request $request)
|
||
{
|
||
$data = $request->postMore([
|
||
['title', ''],
|
||
['message', ''],
|
||
[['cate_id', 'd'], 0],
|
||
['sort', 0],
|
||
]);
|
||
|
||
$this->validate($data, StoreServiceSpeechcraftValidata::class);
|
||
$data['add_time'] = time();
|
||
$data['kefu_id'] = 0;
|
||
if ($this->services->count(['message' => $data['message']])) {
|
||
return app('json')->fail(400269);
|
||
}
|
||
if ($this->services->save($data)) {
|
||
return app('json')->success(400270);
|
||
} else {
|
||
return app('json')->fail(400271);
|
||
}
|
||
}
|
||
|
||
/**
|
||
* 显示指定的资源
|
||
* @param int $id
|
||
* @return \think\Response
|
||
*/
|
||
public function read($id)
|
||
{
|
||
$info = $this->services->get($id);
|
||
if (!$info) {
|
||
return app('json')->fail(100026);
|
||
}
|
||
return app('json')->success($info);
|
||
}
|
||
|
||
/**
|
||
* 显示编辑资源表单页
|
||
* @param $id
|
||
* @return mixed
|
||
* @throws \FormBuilder\Exception\FormBuilderException
|
||
* @throws \think\db\exception\DataNotFoundException
|
||
* @throws \think\db\exception\DbException
|
||
* @throws \think\db\exception\ModelNotFoundException
|
||
*/
|
||
public function edit($id)
|
||
{
|
||
return app('json')->success($this->services->updateForm((int)$id));
|
||
}
|
||
|
||
/**
|
||
* 保存更新的资源
|
||
* @param Request $request
|
||
* @param int $id
|
||
* @return \think\Response
|
||
*/
|
||
public function update(Request $request, $id)
|
||
{
|
||
$data = $request->postMore([
|
||
['title', ''],
|
||
['message', ''],
|
||
['sort', 0],
|
||
[['cate_id', 'd'], 0],
|
||
]);
|
||
|
||
$this->validate($data, StoreServiceSpeechcraftValidata::class);
|
||
$message = $this->services->get(['message' => $data['message']]);
|
||
if ($message && $message['id'] != $id) {
|
||
return app('json')->fail(400269);
|
||
}
|
||
if ($this->services->update($id, $data)) {
|
||
return app('json')->success(100001);
|
||
} else {
|
||
return app('json')->fail(100007);
|
||
}
|
||
|
||
}
|
||
|
||
/**
|
||
* 删除指定资源
|
||
* @param int $id
|
||
* @return \think\Response
|
||
*/
|
||
public function delete($id)
|
||
{
|
||
if (!$id || !($info = $this->services->get($id))) {
|
||
return app('json')->fail(400272);
|
||
}
|
||
if ($info->delete()) {
|
||
return app('json')->success(100002);
|
||
} else {
|
||
return app('json')->fail(100008);
|
||
}
|
||
}
|
||
}
|