// +---------------------------------------------------------------------- namespace api\portal\controller; use cmf\controller\RestUserBaseController; use api\portal\logic\PortalPostModel; class UserArticlesController extends RestUserBaseController { /** * 显示资源列表 */ public function index() { $params = $this->request->get(); $userId = $this->getUserId(); $postModel = new PortalPostModel(); $dates = $postModel->getUserArticles($userId, $params); $this->success('请求成功!', $dates); } /** * 保存新建的资源 */ public function save() { $dates = $this->request->post(); $dates['user_id'] = $this->getUserId(); $result = $this->validate($dates, 'Articles.article'); if ($result !== true) { $this->error($result); } if (empty($dates['published_time'])) { $dates['published_time'] = time(); } $postModel = new PortalPostModel(); $postModel->addArticle($dates); $this->success('添加成功!'); } /** * 显示指定的资源 * @param $id */ public function read($id) { if (empty($id)) { $this->error('无效的文章id'); } $params = $this->request->get(); $params['id'] = $id; $userId = $this->getUserId(); $postModel = new PortalPostModel(); $dates = $postModel->getUserArticles($userId, $params); $this->success('请求成功!', $dates); } /** * 保存更新的资源 * @param $id */ public function update($id) { $data = $this->request->put(); $result = $this->validate($data, 'Articles.article'); if ($result !== true) { $this->error($result); } if (empty($id)) { $this->error('无效的文章id'); } $postModel = new PortalPostModel(); $result = $postModel->editArticle($data, $id, $this->getUserId()); if ($result === false) { $this->error('编辑失败!'); } else { $this->success('编辑成功!'); } } /** * 删除指定资源 * @param $id */ public function delete($id) { if (empty($id)) { $this->error('无效的文章id'); } $postModel = new PortalPostModel(); $result = $postModel->deleteArticle($id, $this->getUserId()); if ($result == -1) { $this->error('文章已删除'); } if ($result) { $this->success('删除成功!'); } else { $this->error('删除失败!'); } } /** * 批量删除文章 */ public function deletes() { $ids = $this->request->post('ids/a'); if (empty($ids)) { $this->error('文章id不能为空'); } $postModel = new PortalPostModel(); $result = $postModel->deleteArticle($ids, $this->getUserId()); if ($result == -1) { $this->error('文章已删除'); } if ($result) { $this->success('删除成功!'); } else { $this->error('删除失败!'); } } /** * 我的文章列表 */ public function my() { $params = $this->request->get(); $userId = $this->getUserId(); $postModel = new PortalPostModel(); $data = $postModel->getUserArticles($userId, $params); $this->success('请求成功!', $data); } }