General.php 5.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171
  1. <?php
  2. namespace app\api\controller;
  3. use app\common\model\PlatformSwitch;
  4. use app\common\model\UserSearch;
  5. use app\common\model\UserTrack;
  6. use think\Db;
  7. /**
  8. * @title 其他接口(需要登录状态)【多模块共用】
  9. * @controller General
  10. * @group base
  11. */
  12. class General extends Base
  13. {
  14. protected $need_login = [
  15. 'delSearchHistory',
  16. 'switchSet',
  17. 'batchDelSwitch',
  18. 'delTrack',
  19. 'label'
  20. ];
  21. public function initialize()
  22. {
  23. parent::initialize();
  24. parent::setUid();
  25. }
  26. /**
  27. * @title 用户搜索历史
  28. * @desc 用户搜索历史
  29. * @author qc
  30. * @method GET
  31. * @url /api/General/getSearchHistory
  32. * @header name:Authorization require:1 desc:Token
  33. * @param name:page type:int default:1 desc:页数
  34. * @param name:page_num type:int default:20 desc:每页数
  35. * @param name:type type:int default:-- desc:类型0=>"全部",1=>'视频',2=>'资料',3=>'图文',4=>'新闻',5=>'问答',6=>'商品',7=>'活动',8=>'招聘',9=>'供应商',10=>'供应商商品',11=>'需求'
  36. * @return name:title type:string default:-- desc:标题
  37. * @return name:type type:int default:-- desc:类型0全局,1视频,2图文,3资料,4新闻,5需求
  38. */
  39. public function getSearchHistory()
  40. {
  41. $title = input('title');
  42. $type= input('type',-1);
  43. $where= [];
  44. $where [] = ['user_id','=',$this->user_id];
  45. if($title)$where [] = ['title','like','%'.$title.'%'];
  46. if($type > -1)$where [] = ['type','=',$type];
  47. $list = UserSearch::where($where)
  48. ->limit($this->off_set,$this->page_num)
  49. ->order('create_at desc,id desc')
  50. ->select()->toArray();
  51. $this->success('ok',['list'=>$list]);
  52. }
  53. /**
  54. * @title 删除||清空搜索历史
  55. * @desc 删除||清空搜索历史
  56. * @author qc
  57. * @method POST
  58. * @url /api/General/delSearchHistory
  59. * @header name:Authorization require:1 desc:Token
  60. * @param name:id type:string default:0 desc:搜索记录id【不传值清空所有搜索记录】
  61. */
  62. public function delSearchHistory()
  63. {
  64. $id = input('post.id');
  65. $where= [];
  66. $where [] = ['user_id','=',$this->user_id];
  67. if($id)$where [] = ['id','in',$id];
  68. UserSearch::where($where)->delete();
  69. $this->success('删除成功');
  70. }
  71. /**
  72. * @title 以下接口为二期需求
  73. * @desc 以下接口为二期需求
  74. * @author qc
  75. * @url /api/General/secondPhase
  76. * @method
  77. * @return name:1 type:string default:-- desc:以下接口为二期需求
  78. */
  79. public function secondPhase(){}
  80. /**
  81. * @title 开关设置【详情页设置】
  82. * @desc 【追更开关】
  83. * @author qc
  84. * @method POST
  85. * @url /api/General/switchSet
  86. * @header name:Authorization require:1 desc:Token
  87. * @param name:id type:int require:1 default:-- desc:记录id【招聘订阅的是第三级分类id】
  88. * @param name:type type:int require:1 default:-- desc:类型【1=>'问答通知开关',2=>'视频追更',3=>'图文追更',4=>'资料追更',5=>'供应商订阅',6=>'招聘订阅',7=>'视频通知开关',8=>图文通知开关,9=>资料通知开关,10=>新闻通知,11=>供应商通知,12=>需求通知】
  89. * @return name:status type:int default:1 desc:1开启0关闭
  90. */
  91. public function switchSet()
  92. {
  93. $switch_status = PlatformSwitch::userSwitch($this->user_id,input('post.id',0),input('post.type',0));
  94. $switch_status ? $this->success('开启成功',['status'=>1]) : $this->success('关闭成功',['status'=>0]);
  95. }
  96. /**
  97. * @title 批量取消追更【所有模块共用】
  98. * @desc 批量取消追更
  99. * @author qc
  100. * @method POST
  101. * @url /api/General/batchDelSwitch
  102. * @header name:Authorization require:1 desc:Token
  103. * @param name:ids type:string require:1 default:-- desc:追更记录id(多个逗号隔开)
  104. */
  105. public function batchDelSwitch()
  106. {
  107. $ids = input('post.ids');
  108. PlatformSwitch::where('user_id',$this->user_id)->where('id','in',$ids)->delete();
  109. $this->success('取消成功');
  110. }
  111. /**
  112. * @title 批量删除学习历史(浏览记录)【所有模块共用】
  113. * @desc 批量删除学习历史
  114. * @author qc
  115. * @method POST
  116. * @url /api/General/delTrack
  117. * @header name:Authorization require:1 desc:Token
  118. * @param name:ids type:string require:1 default:-- desc:浏览记录id(多个逗号隔开)
  119. */
  120. public function delTrack()
  121. {
  122. UserTrack::delUserTrack($this->user_id,input('post.ids'));
  123. $this->success('删除成功');
  124. }
  125. /**
  126. * @title 用户绑定智能标签
  127. * @desc 用户绑定智能标签
  128. * @author qc
  129. * @url /api/General/label
  130. * @method POST
  131. * @param name:label type:varchar default:-- desc:标签--多个标签用,隔开
  132. */
  133. public function label(){
  134. $data = input();
  135. $uid = $this->user_id;
  136. $label = explode(',',$data['label']);
  137. foreach ($label as $k => $v){
  138. $find = Db::name('user_label')->where('user_id',$uid)->where('label',$v)->find();
  139. if($find){
  140. Db::name('user_label')->where('user_id',$uid)->where('label',$v)->setInc('num');
  141. }else{
  142. $arr = [
  143. 'user_id' => $uid,
  144. 'label' => $v,
  145. 'num' => 1,
  146. 'create_at' => date('Y-m-d H:i:s'),
  147. ];
  148. Db::name('user_label')->insert($arr);
  149. }
  150. }
  151. $this->success('操作成功');
  152. }
  153. }