No Description
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

Search.php 12KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278
  1. <?php
  2. /**
  3. * 易优CMS
  4. * ============================================================================
  5. * 版权所有 2016-2028 海南赞赞网络科技有限公司,并保留所有权利。
  6. * 网站地址: http://www.eyoucms.com
  7. * ----------------------------------------------------------------------------
  8. * 如果商业用途务必到官方购买正版授权, 以免引起不必要的法律纠纷.
  9. * ============================================================================
  10. * Author: 小虎哥 <1105415366@qq.com>
  11. * Date: 2018-4-3
  12. */
  13. namespace app\home\controller;
  14. use think\Db;
  15. class Search extends Base
  16. {
  17. private $searchword_db;
  18. public function _initialize() {
  19. parent::_initialize();
  20. $this->searchword_db = Db::name('search_word');
  21. }
  22. /**
  23. * 搜索主页
  24. */
  25. public function index()
  26. {
  27. $result = [];
  28. $result = $param = input('param.');
  29. $result['pageurl'] = request()->url(true); // 获取当前页面URL
  30. $result['pageurl_m'] = pc_to_mobile_url($result['pageurl']); // 获取当前页面对应的移动端URL
  31. // 移动端域名
  32. $result['mobile_domain'] = '';
  33. if (!empty($this->eyou['global']['web_mobile_domain_open']) && !empty($this->eyou['global']['web_mobile_domain'])) {
  34. $result['mobile_domain'] = $this->eyou['global']['web_mobile_domain'] . '.' . $this->request->rootDomain();
  35. }
  36. !isset($result['keywords']) && $result['keywords'] = '';
  37. $eyou = array(
  38. 'field' => $result,
  39. );
  40. $this->eyou = array_merge($this->eyou, $eyou);
  41. $this->assign('eyou', $this->eyou);
  42. $viewfile = 'index_search';
  43. if (config('city_switch_on') && !empty($this->home_site)) { // 多站点内置模板文件名
  44. $viewfilepath = TEMPLATE_PATH.$this->theme_style_path.DS.$viewfile.".".$this->view_suffix;
  45. if (!file_exists($viewfilepath)) {
  46. $viewfilepath = TEMPLATE_PATH.$this->theme_style_path.DS.$this->home_site;
  47. $viewfilepath2 = TEMPLATE_PATH.$this->theme_style_path.DS.'city'.DS.$this->home_site;
  48. if (file_exists($viewfilepath2) && !empty($this->eyou['global']['site_template'])) {
  49. $viewfile = "city/{$this->home_site}/{$viewfile}";
  50. } else if (file_exists($viewfilepath) && !empty($this->eyou['global']['site_template'])) {
  51. $viewfile = "{$this->home_site}/{$viewfile}";
  52. } else {
  53. return $this->lists();
  54. }
  55. }
  56. } else if (config('lang_switch_on') && !empty($this->home_lang)) { // 多语言内置模板文件名
  57. $viewfilepath = TEMPLATE_PATH.$this->theme_style_path.DS.$viewfile.".".$this->view_suffix;
  58. if (!file_exists($viewfilepath)) {
  59. $viewfilepath = TEMPLATE_PATH.$this->theme_style_path.DS.$viewfile."_{$this->home_lang}.".$this->view_suffix;
  60. if (file_exists($viewfilepath)) {
  61. $viewfile .= "_{$this->home_lang}";
  62. } else {
  63. return $this->lists();
  64. }
  65. }
  66. } else {
  67. $viewfilepath = TEMPLATE_PATH.$this->theme_style_path.DS.$viewfile.".".$this->view_suffix;
  68. if (!file_exists($viewfilepath)) {
  69. return $this->lists();
  70. }
  71. }
  72. return $this->fetch(":{$viewfile}");
  73. }
  74. /**
  75. * 搜索列表
  76. */
  77. public function lists()
  78. {
  79. $param = input('param.');
  80. $users = session('?users') ? session('users') : [];
  81. $users_id = !empty($users['users_id']) ? intval($users['users_id']) : 0;
  82. $admin_id = !empty($users['admin_id']) ? intval($users['admin_id']) : 0;
  83. $nowTime = getTime();
  84. /*记录搜索词*/
  85. if (!isset($param['keywords'])) {
  86. die('标签调用错误:缺少属性 name="keywords",请查看标签教程修正 <a href="https://www.eyoucms.com/plus/view.php?aid=521" target="_blank">前往查看</a>');
  87. }
  88. $word = $this->request->param('keywords');
  89. if(empty($word)){
  90. $this->error('关键词不能为空!');
  91. }
  92. $page = $this->request->param('page');
  93. if(!empty($word) && 2 > $page)
  94. {
  95. $word_decode = htmlspecialchars_decode($word);
  96. $searchConf = tpCache('search');
  97. if (!isset($searchConf['search_tabu_words'])) {
  98. $searchConf['search_tabu_words'] = ['<','>','"',';',',','@','&','#','\\','*'];
  99. } else {
  100. $searchConf['search_tabu_words'] = explode(PHP_EOL, $searchConf['search_tabu_words']);
  101. }
  102. /*前台禁止搜索开始*/
  103. if (!empty($searchConf['search_tabu_words'])) {
  104. foreach ($searchConf['search_tabu_words'] as $key => $val) {
  105. if (strstr($word_decode, $val)) {
  106. $this->error('含有敏感词,禁止搜索!');
  107. }
  108. }
  109. }
  110. /*if (is_dir('./weapp/Wordfilter/')) {
  111. $wordfilterRow = Db::name('weapp')->where(['code'=>'Wordfilter', 'status'=>1])->find();
  112. if(!empty($wordfilterRow['data'])){
  113. $wordfilterRow['data'] = json_decode($wordfilterRow['data'], true);
  114. if ($wordfilterRow['data']['search'] == 3){
  115. $wordfilter = Db::name('weapp_wordfilter')->where(['title'=>$word, 'status'=>1])->find();
  116. if(!empty($wordfilter)){
  117. $this->error('包含敏感关键词,禁止搜索!');
  118. }
  119. }
  120. }
  121. }*/
  122. /*前台禁止搜索结束*/
  123. // 如果tag标签有,默认跳到tag列表页
  124. /*$tagInfo = Db::name('tagindex')
  125. ->alias('a')
  126. ->field('a.id AS tagid')
  127. ->join('taglist b','a.id=b.tid','left')
  128. ->where(['a.tag'=>$word,'b.arcrank'=>['egt',0]])
  129. ->find();
  130. if (!empty($tagInfo)) {
  131. $city_switch_on = config('city_switch_on');
  132. $domain = preg_replace('/^(http(s)?:)?(\/\/)?([^\/\:]*)(.*)$/i', '${1}${3}${4}', tpCache('web.web_basehost'));
  133. if (empty($city_switch_on)) {
  134. $tagurl = tagurl('home/Tags/lists', array('tagid'=>$tagInfo['tagid']));
  135. } else {
  136. $tagurl = tagurl('home/Tags/lists', array('tagid'=>$tagInfo['tagid']), true, $domain);
  137. }
  138. $this->redirect($tagurl);
  139. exit;
  140. }*/
  141. $word = addslashes($word);
  142. $method = input('param.method/d');
  143. if (!empty($method)) {
  144. /*搜索频率限制 start*/
  145. if (!isset($searchConf['search_second'])) {
  146. $searchConf['search_second'] = 60;
  147. }
  148. if (!isset($searchConf['search_maxnum'])) {
  149. $searchConf['search_maxnum'] = 5;
  150. }
  151. if (!isset($searchConf['search_locking'])) {
  152. $searchConf['search_locking'] = 120;
  153. }
  154. if (empty($admin_id) && 0 < $searchConf['search_second']) {
  155. $where = [];
  156. if (!empty($users_id)) {
  157. $where['users_id'] = $users_id;
  158. } else {
  159. $where['ip'] = clientIP();
  160. }
  161. $where2 = [
  162. 'update_time' => ['gt', $nowTime - $searchConf['search_second']],
  163. ];
  164. $searchTotal = Db::name('search_word')->where($where)->where($where2)->count();
  165. $lockingInfo = Db::name('search_locking')->where($where)->find();
  166. if ($searchTotal >= intval($searchConf['search_maxnum'])) {
  167. if (empty($lockingInfo)) {
  168. $lockingInfo = [
  169. 'users_id' => $users_id,
  170. 'ip' => clientIP(),
  171. 'locking_time' => $nowTime,
  172. 'add_time' => $nowTime,
  173. 'update_time' => $nowTime,
  174. ];
  175. $insertId = Db::name('search_locking')->insertGetId($lockingInfo);
  176. $lockingInfo['id'] = $insertId;
  177. } else {
  178. if (($lockingInfo['locking_time'] + $searchConf['search_locking']) < $nowTime) {
  179. Db::name('search_locking')->where(['id'=>$lockingInfo['id']])->update([
  180. 'locking_time' => $nowTime,
  181. 'update_time' => $nowTime,
  182. ]);
  183. $lockingInfo['locking_time'] = $nowTime;
  184. }
  185. }
  186. }
  187. if (!empty($lockingInfo)) {
  188. $locking_time = !empty($lockingInfo['locking_time']) ? $lockingInfo['locking_time'] : 0;
  189. $surplus_time = $locking_time + $searchConf['search_locking'] - $nowTime;
  190. if ($surplus_time > 0) {
  191. $minute = ceil($surplus_time/60);
  192. $this->error("过度频繁搜索,离解禁还有".$minute."分钟!", null, [], $surplus_time);
  193. }
  194. }
  195. }
  196. /*搜索频率限制 end*/
  197. /*记录搜索词*/
  198. $row = $this->searchword_db->field('id')->where(['word'=>$word, 'lang'=>$this->home_lang])->find();
  199. if(empty($row))
  200. {
  201. $this->searchword_db->insert([
  202. 'word' => $word,
  203. 'sort_order' => 100,
  204. 'users_id' => $users_id,
  205. 'ip' => clientIP(),
  206. 'lang' => $this->home_lang,
  207. 'add_time' => $nowTime,
  208. 'update_time' => $nowTime,
  209. ]);
  210. }else{
  211. $this->searchword_db->where(['id'=>$row['id']])->update([
  212. 'searchNum' => Db::raw('searchNum+1'),
  213. 'users_id' => $users_id,
  214. 'ip' => clientIP(),
  215. 'update_time' => $nowTime,
  216. ]);
  217. }
  218. }
  219. }
  220. /*--end*/
  221. $result = $param;
  222. !isset($result['keywords']) && $result['keywords'] = '';
  223. $eyou = array(
  224. 'field' => $result,
  225. );
  226. $this->eyou = array_merge($this->eyou, $eyou);
  227. $this->assign('eyou', $this->eyou);
  228. /*模板文件*/
  229. $viewfile = 'lists_search';
  230. $channelid = input('param.channelid/d');
  231. if (!empty($channelid)) {
  232. $viewfilepath = TEMPLATE_PATH.$this->theme_style_path.DS.$viewfile."_{$channelid}.".$this->view_suffix;
  233. if (file_exists($viewfilepath)) {
  234. $viewfile .= "_{$channelid}";
  235. }
  236. }
  237. /*--end*/
  238. if (config('city_switch_on') && !empty($this->home_site)) { // 多站点内置模板文件名
  239. $viewfilepath = TEMPLATE_PATH.$this->theme_style_path.DS.$this->home_site;
  240. $viewfilepath2 = TEMPLATE_PATH.$this->theme_style_path.DS.'city'.DS.$this->home_site;
  241. if (!empty($this->eyou['global']['site_template'])) {
  242. if (file_exists($viewfilepath2)) {
  243. $viewfile = "city/{$this->home_site}/{$viewfile}";
  244. } else if (file_exists($viewfilepath)) {
  245. $viewfile = "{$this->home_site}/{$viewfile}";
  246. }
  247. }
  248. } else if (config('lang_switch_on') && !empty($this->home_lang)) { // 多语言内置模板文件名
  249. $viewfilepath = TEMPLATE_PATH.$this->theme_style_path.DS.$viewfile."_{$this->home_lang}.".$this->view_suffix;
  250. if (file_exists($viewfilepath)) {
  251. $viewfile .= "_{$this->home_lang}";
  252. }
  253. }
  254. return $this->fetch(":{$viewfile}");
  255. }
  256. }