render('plugins.Notebook.Admin.Notebook.lists'); } /** * 列表数据 * * @return ResponseInterface */ #[GetMapping(path: 'lists-data')] public function listsData(): ResponseInterface { return Response::json()->success(NotebookService::aop()->lists()); } /** * 创建数据 * * @param NotebookRequest $notebookRequest * * @return ResponseInterface * @throws ApiMessageException */ #[Scene('store')] #[PostMapping(path: 'create')] #[Middlewares([ValidationMiddleware::class])] public function store(NotebookRequest $notebookRequest): ResponseInterface { $model = NotebookService::aop()->store($notebookRequest->post()); $data = $model->setVisible(['id', "title", "content", "create_time", 'update_time'])->toArray(); $data['create_name'] = $model->createAdmin->name; $data['latest_name'] = $model->latestAdmin->name; return Response::json()->success($data); } /** * 更新数据 * * @param NotebookRequest $notebookRequest * * @return ResponseInterface * @throws ApiMessageException */ #[Scene('update')] #[PostMapping(path: 'update')] #[Middlewares([ValidationMiddleware::class])] public function update(NotebookRequest $notebookRequest): ResponseInterface { NotebookService::aop()->update($notebookRequest->post()); return Response::json()->success(); } /** * 删除数据 * * @param NotebookRequest $notebookRequest * * @return ResponseInterface * @throws ApiMessageException */ #[Scene('destroy')] #[PostMapping(path: 'destroy')] #[Middlewares([ValidationMiddleware::class])] public function destroy(NotebookRequest $notebookRequest): ResponseInterface { NotebookService::aop()->destroy($notebookRequest->post('ids')); return Response::json()->success(); } /** * 获取最新内容 * * @return ResponseInterface */ #[GetMapping(path: 'get-latest')] public function getLatest(): ResponseInterface { $data = NotebookService::aop()->getLatest( (int)($this->request->query('id') ?: 0), $this->request->query('update_time') ); return Response::json()->success($data); } /** * 添加协作用户 * * @return ResponseInterface */ #[PostMapping(path: 'add-user')] public function addUser(): ResponseInterface { NotebookService::aop()->addUser( (int)$this->request->post('notebook_id'), (array)$this->request->post('user_ids') ); return Response::json()->success(); } }