123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124 |
- <?php
- namespace addons\cms\controller\api;
- use addons\cms\model\Collection as CollectionModel;
- use addons\cms\model\Modelx;
- use think\Db;
- use think\Exception;
- /**
- * 会员文档
- */
- class Collection extends Base
- {
- protected $layout = 'default';
- protected $noNeedLogin = [];
- protected $noNeedRight = ['*'];
- /**
- * 我的收藏
- */
- public function index()
- {
- $collection = new CollectionModel;
- $model = null;
- $type = (int)$this->request->param('type');
- $q = $this->request->param('q');
- $config = ['query' => []];
- // 指定模型
- if ($type) {
- $model = Modelx::get($type);
- if ($model) {
- $collection->where('type', $type);
- $config['query']['type'] = $type;
- }
- }
- // 搜索关键字
- if ($q) {
- $collection->where('title|keywords|description', 'like', '%' . $q . '%');
- $config['query']['q'] = $q;
- }
- $user_id = $this->auth->id;
- $collectionList = $collection->where('user_id', $user_id)
- ->order('id', 'desc')
- ->paginate(10, null, $config);
- return $this->success('获取成功', [
- 'collectionList' => $collectionList,
- 'model' => $model
- ]);
- }
- /**
- * 添加收藏
- */
- public function create()
- {
-
- $type = $this->request->post("type");
- $aid = $this->request->post("aid/d");
- if (!in_array($type, ['archives', 'page', 'special', 'diyform'])) {
- $this->error("参数不正确");
- }
- $model = call_user_func_array(['\\addons\\cms\\model\\' . ucfirst($type), "get"], [$aid]);
- if (!$model) {
- $this->error("未找到指定数据");
- }
- Db::startTrans();
- try {
- $collection = CollectionModel::lock(true)->where(['type' => $type, 'aid' => $aid])->find();
- if ($collection) {
- throw new \think\Exception("请勿重复收藏");
- }
- $title = $model->title;
- $url = $model->fullurl;
- $image = $model->image;
- $data = [
- 'user_id' => $this->auth->id,
- 'type' => $type,
- 'aid' => $aid,
- 'title' => $title,
- 'url' => $url,
- 'image' => $image
- ];
- CollectionModel::create($data);
- Db::commit();
- } catch (\think\Exception $e) {
- Db::rollback();
- $this->error($e->getMessage());
- } catch (\Exception $e) {
- Db::rollback();
- $this->error("收藏失败");
- }
- $this->success("收藏成功");
- }
- /**
- * 删除收藏
- */
- public function delete()
- {
- $id = (int)$this->request->post('id/d');
- if (!$id) {
- $this->error("参数不正确");
- }
- $collection = \addons\cms\model\Collection::where('id', $id)->where('user_id', $this->auth->id)->find();
- if (!$collection) {
- $this->error("未找到指定的收藏");
- }
- Db::startTrans();
- try {
- $collection->delete();
- Db::commit();
- } catch (Exception $e) {
- Db::rollback();
- $this->error("移除收藏失败");
- }
- $this->success("移除收藏成功");
- }
- }
|