| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798 |
- <?php
- // +----------------------------------------------------------------------
- // | ThinkCMF [ WE CAN DO IT MORE SIMPLE ]
- // +----------------------------------------------------------------------
- // | Copyright (c) 2013-present http://www.thinkcmf.com All rights reserved.
- // +----------------------------------------------------------------------
- // | Licensed ( http://www.apache.org/licenses/LICENSE-2.0 )
- // +----------------------------------------------------------------------
- // | Author: Powerless < wzxaini9@gmail.com>
- // +----------------------------------------------------------------------
- namespace app\user\controller;
- use cmf\controller\UserBaseController;
- use app\user\model\UserFavoriteModel;
- class FavoriteController extends UserBaseController
- {
- /**
- * 个人中心我的收藏列表
- */
- public function index()
- {
- $userFavoriteModel = new UserFavoriteModel();
- $data = $userFavoriteModel->favorites();
- $user = cmf_get_current_user();
- $this->assign($user);
- $this->assign("page", $data['page']);
- $this->assign("lists", $data['lists']);
- return $this->fetch();
- }
- /**
- * 用户取消收藏
- */
- public function delete()
- {
- if ($this->request->isPost()) {
- $id = $this->request->param("id", 0, "intval");
- $userFavoriteModel = new UserFavoriteModel();
- $data = $userFavoriteModel->deleteFavorite($id);
- if ($data) {
- $this->success("取消收藏成功!");
- } else {
- $this->error("取消收藏失败!");
- }
- }
- }
- /**
- * 用户收藏
- */
- public function add()
- {
- if (!$this->request->isPost()) {
- $this->error('非法请求!');
- }
- $data = $this->request->param();
- $result = $this->validate($data, 'Favorite');
- if ($result !== true) {
- $this->error($result);
- }
- $id = $this->request->param('id', 0, 'intval');
- $table = $this->request->param('table');
- $findFavoriteCount = UserFavoriteModel::where([
- 'object_id' => $id,
- 'table_name' => $table,
- 'user_id' => cmf_get_current_user_id()
- ])->count();
- if ($findFavoriteCount > 0) {
- $this->error("您已收藏过啦");
- }
- $title = base64_decode($this->request->param('title'));
- $url = $this->request->param('url');
- $url = base64_decode($url);
- $description = $this->request->param('description', '', 'base64_decode');
- $description = empty($description) ? $title : $description;
- UserFavoriteModel::insert([
- 'user_id' => cmf_get_current_user_id(),
- 'title' => $title,
- 'description' => $description,
- 'url' => $url,
- 'object_id' => $id,
- 'table_name' => $table,
- 'create_time' => time()
- ]);
- $this->success('收藏成功');
- }
- }
|