123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140 |
- <?php
- // +----------------------------------------------------------------------
- // | ThinkCMF [ WE CAN DO IT MORE SIMPLE ]
- // +----------------------------------------------------------------------
- // | Copyright (c) 2013-2017 http://www.thinkcmf.com All rights reserved.
- // +----------------------------------------------------------------------
- // | Author: pl125 <xskjs888@163.com>
- // +----------------------------------------------------------------------
- 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);
- }
- }
|