mirror of
https://github.com/cedar2025/Xboard.git
synced 2025-01-23 11:08:13 -05:00
107 lines
3.0 KiB
PHP
107 lines
3.0 KiB
PHP
<?php
|
|
|
|
namespace App\Http\Controllers\V1\Admin;
|
|
|
|
use App\Exceptions\ApiException;
|
|
use App\Http\Controllers\Controller;
|
|
use App\Http\Requests\Admin\KnowledgeSave;
|
|
use App\Http\Requests\Admin\KnowledgeSort;
|
|
use App\Models\Knowledge;
|
|
use Illuminate\Http\Request;
|
|
use Illuminate\Support\Facades\DB;
|
|
|
|
class KnowledgeController extends Controller
|
|
{
|
|
public function fetch(Request $request)
|
|
{
|
|
if ($request->input('id')) {
|
|
$knowledge = Knowledge::find($request->input('id'))->toArray();
|
|
if (!$knowledge) return $this->fail([400202,'知识不存在']);
|
|
return $this->success($knowledge);
|
|
}
|
|
$data = Knowledge::select(['title', 'id', 'updated_at', 'category', 'show'])
|
|
->orderBy('sort', 'ASC')
|
|
->get();
|
|
return $this->success($data);
|
|
}
|
|
|
|
public function getCategory(Request $request)
|
|
{
|
|
return $this->success(array_keys(Knowledge::get()->groupBy('category')->toArray()));
|
|
}
|
|
|
|
public function save(KnowledgeSave $request)
|
|
{
|
|
$params = $request->validated();
|
|
|
|
if (!$request->input('id')) {
|
|
if (!Knowledge::create($params)) {
|
|
return $this->fail([500,'创建失败']);
|
|
}
|
|
} else {
|
|
try {
|
|
Knowledge::find($request->input('id'))->update($params);
|
|
} catch (\Exception $e) {
|
|
\Log::error($e);
|
|
return $this->fail([500,'创建失败']);
|
|
}
|
|
}
|
|
|
|
return $this->success(true);
|
|
}
|
|
|
|
public function show(Request $request)
|
|
{
|
|
$request->validate([
|
|
'id' => 'required|numeric'
|
|
],[
|
|
'id.required' => '知识库ID不能为空'
|
|
]);
|
|
$knowledge = Knowledge::find($request->input('id'));
|
|
if (!$knowledge) {
|
|
throw new ApiException('知识不存在');
|
|
}
|
|
$knowledge->show = !$knowledge->show;
|
|
if (!$knowledge->save()) {
|
|
throw new ApiException('保存失败');
|
|
}
|
|
|
|
return $this->success(true);
|
|
}
|
|
|
|
public function sort(KnowledgeSort $request)
|
|
{
|
|
try {
|
|
DB::beginTransaction();
|
|
foreach ($request->input('knowledge_ids') as $k => $v) {
|
|
$knowledge = Knowledge::find($v);
|
|
$knowledge->timestamps = false;
|
|
$knowledge->update(['sort' => $k + 1]);
|
|
}
|
|
DB::commit();
|
|
} catch (\Exception $e) {
|
|
DB::rollBack();
|
|
throw new ApiException('保存失败');
|
|
}
|
|
return $this->success(true);
|
|
}
|
|
|
|
public function drop(Request $request)
|
|
{
|
|
$request->validate([
|
|
'id' => 'required|numeric'
|
|
],[
|
|
'id.required' => '知识库ID不能为空'
|
|
]);
|
|
$knowledge = Knowledge::find($request->input('id'));
|
|
if (!$knowledge) {
|
|
return $this->fail([400202,'知识不存在']);
|
|
}
|
|
if (!$knowledge->delete()) {
|
|
return $this->fail([500,'删除失败']);
|
|
}
|
|
|
|
return $this->success(true);
|
|
}
|
|
}
|