설명 없음
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 13KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352
  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\admin\controller;
  14. use think\Db;
  15. use think\Page;
  16. use think\Cache;
  17. class Search extends Base
  18. {
  19. private $searchword_db;
  20. public function _initialize() {
  21. parent::_initialize();
  22. $this->searchword_db = Db::name('search_word');
  23. }
  24. /**
  25. * 搜索主页
  26. */
  27. public function index()
  28. {
  29. $list = array();
  30. $param = input('param.');
  31. $keywords = input('keywords/s');
  32. $keywords = trim($keywords);
  33. $condition = [];
  34. foreach (['keywords'] as $key) {
  35. if (isset($param[$key]) && $param[$key] !== '') {
  36. if ($key == 'keywords') {
  37. $condition['word'] = array('LIKE', "%{$keywords}%");
  38. } else {
  39. $condition[''.$key] = array('eq', trim($param[$key]));
  40. }
  41. }
  42. }
  43. $condition['lang'] = array('eq', $this->admin_lang);
  44. // 自定义排序
  45. $orderby = input('param.orderby/s');
  46. $orderway = input('param.orderway/s');
  47. if (!empty($orderby) && !empty($orderway)) {
  48. $orderby = "{$orderby} {$orderway}, id desc";
  49. } else {
  50. $orderby = "is_hot desc, id desc";
  51. }
  52. $count = $this->searchword_db->where($condition)->count('id');
  53. $Page = $pager = new Page($count, config('paginate.list_rows'));
  54. $list = $this->searchword_db->where($condition)->order($orderby)->limit($Page->firstRow.','.$Page->listRows)->select();
  55. $show = $Page->show();
  56. $this->assign('page',$show);
  57. $this->assign('list',$list);
  58. $this->assign('pager',$pager);
  59. return $this->fetch();
  60. }
  61. public function edit()
  62. {
  63. if (IS_AJAX_POST){
  64. $param = input('param.');
  65. if (empty($param['id'])){
  66. $this->error('缺少id');
  67. }
  68. $update[$param['field']] = $param['value'];
  69. $where['lang'] = array('eq', $this->admin_lang);
  70. $where['id'] = $param['id'];
  71. $r = $this->searchword_db->where($where)->update($update);
  72. if (false !== $r){
  73. $this->success('操作成功');
  74. }
  75. }
  76. $this->error('操作失败');
  77. }
  78. public function del()
  79. {
  80. if (IS_POST) {
  81. $id_arr = input('del_id/a');
  82. $id_arr = eyIntval($id_arr);
  83. if(!empty($id_arr)){
  84. $result = $this->searchword_db->field('word')
  85. ->where([
  86. 'id' => ['IN', $id_arr],
  87. 'lang' => $this->admin_lang,
  88. ])->select();
  89. $title_list = get_arr_column($result, 'word');
  90. $r = $this->searchword_db->where([
  91. 'id' => ['IN', $id_arr],
  92. 'lang' => $this->admin_lang,
  93. ])
  94. ->cache(true, null, "search_word")
  95. ->delete();
  96. if($r !== false){
  97. adminLog('删除搜索关键词:'.implode(',', $title_list));
  98. $this->success('删除成功');
  99. }
  100. }
  101. }
  102. $this->error('删除失败');
  103. }
  104. public function conf()
  105. {
  106. if (IS_POST) {
  107. $param = input('param.');
  108. $param['search_tabu_words'] = htmlspecialchars_decode($param['search_tabu_words']);
  109. $search_tabu_words = explode(PHP_EOL, $param['search_tabu_words']);
  110. foreach ($search_tabu_words as $key => $val) {
  111. $val = trim($val);
  112. if (!empty($val)) {
  113. $search_tabu_words[$key] = $val;
  114. } else {
  115. unset($search_tabu_words[$key]);
  116. }
  117. }
  118. $search_tabu_words = implode(PHP_EOL, $search_tabu_words);
  119. $data = [
  120. 'search_model'=>$param['search_model'],
  121. 'search_second'=>intval($param['search_second']),
  122. 'search_maxnum'=>intval($param['search_maxnum']),
  123. 'search_locking'=>intval($param['search_locking']),
  124. 'title_word_model'=>intval($param['title_word_model']),
  125. 'search_tabu_words'=>$search_tabu_words,
  126. ];
  127. /*多语言*/
  128. if (is_language()) {
  129. $langRow = \think\Db::name('language')->order('id asc')
  130. ->cache(true, EYOUCMS_CACHE_TIME, 'language')
  131. ->select();
  132. foreach ($langRow as $key => $val) {
  133. tpCache('search', $data, $val['mark']);
  134. }
  135. } else {
  136. tpCache('search', $data);
  137. }
  138. /*--end*/
  139. $this->success('操作成功');
  140. }
  141. $search = tpCache('search');
  142. if (!isset($search['search_second'])) {
  143. $search['search_second'] = 60;
  144. }
  145. if (!isset($search['search_maxnum'])) {
  146. $search['search_maxnum'] = 5;
  147. }
  148. if (!isset($search['search_locking'])) {
  149. $search['search_locking'] = 120;
  150. }
  151. if (!isset($search['search_tabu_words'])) {
  152. $search_tabu_words = ['<','>','"',';',',','@','&'];
  153. $search['search_tabu_words'] = implode(PHP_EOL, $search_tabu_words);
  154. }
  155. $this->assign('search',$search);
  156. return $this->fetch();
  157. }
  158. public function batch_add()
  159. {
  160. if (IS_POST) {
  161. $post = input('post.');
  162. $word = trim($post['word']);
  163. if (empty($word)) {
  164. $this->error('关键词列表不能为空!');
  165. }
  166. $wordArr = explode("\r\n", $word);
  167. $wordArr = array_filter($wordArr);//去除数组空值
  168. $wordArr = array_unique($wordArr); //去重
  169. foreach ($wordArr as $key => $val) {
  170. $wordArr[$key] = trim($val);
  171. }
  172. $addData = [];
  173. $wordList = Db::name('search_word')->where([
  174. 'word' => ['IN', $wordArr],
  175. 'lang' => $this->admin_lang,
  176. ])->column('word');
  177. foreach ($wordArr as $key => $val) {
  178. if(empty($val) || in_array($val, $wordList)) continue;
  179. $addData[] = [
  180. 'word' => $val,
  181. 'searchNum' => intval($post['searchNum']),
  182. 'is_hot' => intval($post['is_hot']),
  183. 'lang' => $this->admin_lang,
  184. 'add_time' => getTime(),
  185. 'update_time' => getTime(),
  186. ];
  187. }
  188. if (!empty($addData)) {
  189. $r = Db::name('search_word')->insertAll($addData);
  190. if ($r !== false) {
  191. Cache::clear('search_word');
  192. adminLog('批量新增关键词:'.get_arr_column($addData, 'word'));
  193. $this->success('操作成功!');
  194. } else {
  195. $this->error('操作失败');
  196. }
  197. } else {
  198. $this->success('操作成功!');
  199. }
  200. }
  201. return $this->fetch();
  202. }
  203. // AJAX导出搜索关键词Excel文档
  204. public function ajax_excel_export()
  205. {
  206. // 设置最大内存
  207. ini_set("memory_limit", "-1");
  208. // 防止php超时
  209. function_exists('set_time_limit') && set_time_limit(0);
  210. if (file_exists('./vendor/PHPExcel.zip') && !is_dir('./vendor/PHPExcel/')) {
  211. $zip = new \ZipArchive();//新建一个ZipArchive的对象
  212. if ($zip->open(ROOT_PATH.'vendor'.DS.'PHPExcel.zip') === true) {
  213. $zip->extractTo(ROOT_PATH.'vendor'.DS.'PHPExcel'.DS);
  214. $zip->close();//关闭处理的zip文件
  215. if (is_dir('./vendor/PHPExcel/')) {
  216. @unlink('./vendor/PHPExcel.zip');
  217. }
  218. }
  219. }
  220. // 执行操作
  221. if (IS_AJAX_POST) {
  222. // $post = input('post.');
  223. // 查询条件
  224. $condition['lang'] = $this->admin_lang;
  225. $orderby = "is_hot desc, id desc";
  226. $list = $this->searchword_db->where($condition)->order($orderby)->select();
  227. if (empty($list)) $this->error('没有导出的数据');
  228. // 处理订单导出数据
  229. $ExcelData = [];
  230. foreach ($list as $key => $value) {
  231. // 拼装追加数据
  232. $PushData = [
  233. // 订单信息
  234. 'id' => $value['id'],
  235. 'word' => $value['word'],
  236. 'searchNum' => $value['searchNum'],
  237. 'is_hot' => !empty($value['is_hot']) ? '是' : '否',
  238. 'resultNum' => $value['resultNum'],
  239. 'update_time' => date('Y-m-d H:i:s', $value['update_time']),
  240. ];
  241. // 追加数据,用于导出
  242. array_push($ExcelData, $PushData);
  243. }
  244. // 导出字段设置
  245. $ExcelField = ['id', 'word', 'searchNum', 'is_hot', 'resultNum', 'update_time'];
  246. // 导出标题设置
  247. $ExcelTitle = ['ID', '关键词', '搜索次数', '是否热搜', '搜索结果数量', '最后搜索时间'];
  248. $ResultUrl = $this->PerformExport($ExcelData, $ExcelField, $ExcelTitle);
  249. }
  250. if (!empty($ResultUrl)) {
  251. $this->success('正在下载', $ResultUrl);
  252. } else {
  253. $this->error('导出失败');
  254. }
  255. }
  256. private function PerformExport($ExcelData = [], $ExcelField = [], $ExcelTitle = [])
  257. {
  258. // 引入SDK
  259. vendor("PHPExcel.Classes.PHPExcel");
  260. // Excel表格坐标
  261. $cell_arr = ['A','B','C','D','E','F','G','H','I','J','K','L','M', 'N','O','P','Q','R','S','T','U','V','W','X','Y','Z'];
  262. // 执行导出
  263. $objPHPExcel = new \PHPExcel();
  264. $objPHPExcel->getDefaultStyle()->getFont()->setName('Arial')->setSize(12);
  265. // 设置表格标题栏长度
  266. $objActSheet = $objPHPExcel->getActiveSheet();
  267. $objPHPExcel->getActiveSheet()->getColumnDimension('A')->setWidth(8);
  268. $objPHPExcel->getActiveSheet()->getColumnDimension('B')->setWidth(30);
  269. $objPHPExcel->getActiveSheet()->getColumnDimension('C')->setWidth(8);
  270. $objPHPExcel->getActiveSheet()->getColumnDimension('D')->setWidth(8);
  271. $objPHPExcel->getActiveSheet()->getColumnDimension('E')->setWidth(8);
  272. $objPHPExcel->getActiveSheet()->getColumnDimension('F')->setWidth(18);
  273. // 设置导出表格名称
  274. $FileName = 'search-word-'.date("YmdHis");
  275. // 循环设置表格标题栏数据
  276. $startRow = 1;
  277. if(!empty($ExcelTitle) || count($ExcelTitle) > 0) {
  278. foreach($ExcelTitle as $k => $v) {
  279. $objActSheet->setCellValue($cell_arr[$k] . $startRow, $v);
  280. }
  281. $startRow = 2;
  282. }
  283. // 循环设置表格字段内容数据
  284. foreach($ExcelData as $v) {
  285. foreach($ExcelField as $key => $value) {
  286. $objActSheet->setCellValue($cell_arr[$key] . $startRow, $v[$value]);
  287. }
  288. $startRow++;
  289. }
  290. $objPHPExcel->setActiveSheetIndex(0);
  291. header('Content-Type: application/vnd.ms-excel');
  292. header('Content-Disposition: attachment;filename="' . $FileName . '.xlsx"');
  293. header('Cache-Control: max-age=0');
  294. header('Cache-Control: max-age=1');
  295. header('Expires: Mon, 26 Jul 1997 05:00:00 GMT');
  296. header('Last-Modified: '.gmdate('D, d M Y H:i:s').' GMT');
  297. header('Cache-Control: cache, must-revalidate');
  298. header('Pragma: public');
  299. $objWriter = \PHPExcel_IOFactory::createWriter($objPHPExcel, 'Excel2007');
  300. // 文件目录
  301. $ExcelPath = UPLOAD_PATH . 'excel/';
  302. // 保存前清空删除原先的excel
  303. delFile(UPLOAD_PATH . 'excel/', true);
  304. // 创建文件夹
  305. @mkdir($ExcelPath, 0777, true);
  306. // excel文件路径
  307. $filePath = $ExcelPath . $FileName . '.xlsx';
  308. // 保存excel文件
  309. $objWriter->save($filePath);
  310. // 返回excel文件路径到AJAX下载
  311. return request()->domain() . ROOT_DIR . '/' . $filePath;
  312. }
  313. }