SearchAction.class.php 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105
  1. <?php
  2. /**
  3. *
  4. * SearchAction.class.php (前台搜索功能)
  5. *
  6. */
  7. if(!defined("Ainaphp")) exit("Access Denied");
  8. class SearchAction extends BaseAction
  9. {
  10. function _initialize()
  11. {
  12. parent::_initialize();
  13. }
  14. public function index()
  15. {
  16. //搜索
  17. $_REQUEST['id'] = $catid = intval($_REQUEST['id']);
  18. $p= max(intval($_REQUEST[C('VAR_PAGE')]),1);
  19. $_REQUEST['keyword'] = $keyword = get_safe_replace($_REQUEST['keyword']);
  20. $_REQUEST['module'] = $module = get_safe_replace($_REQUEST['module']);
  21. $module = $module ? $module : 'Article' ;
  22. $this->assign($_REQUEST);
  23. $this->assign('bcid',0);
  24. $where = " status=1 ";
  25. if(APP_LANG){
  26. $lang = LANG_NAME;
  27. $langid= LANG_ID;
  28. $where .=" and lang= $langid";
  29. $this->assign('lang',$lang);
  30. $this->assign('langid',$langid);
  31. }
  32. if($catid){
  33. $cat = $this->categorys[$catid];
  34. $bcid = explode(",",$cat['arrparentid']);
  35. $bcid = $bcid[1];
  36. if($bcid == '') $bcid=intval($catid);
  37. if(empty($module))$module=$cat['module'];
  38. unset($cat['id']);
  39. $this->assign($cat);
  40. $cat['id']=$catid;
  41. $this->assign('catid',$catid);
  42. $this->assign('bcid',$bcid);
  43. if($cat['child']){
  44. $where .= " and catid in(".$cat['arrchildid'].")";
  45. }else{
  46. $where .= " and catid=".$catid;
  47. }
  48. }
  49. $seo_title = $cat['title'] ? $cat['title'] : $cat['catname'];
  50. $this->assign ('seo_title',$keyword.' '.$seo_title);
  51. $this->assign ('seo_keywords',$keyword.$cat['keywords']);
  52. $this->assign ('seo_description',$keyword.$cat['description']);
  53. if($keyword){
  54. if(strstr($keyword,'or')){
  55. $keydo = ' or ';
  56. $keyword_arr= explode('or',$keyword);
  57. }elseif(strstr($keyword,' ')){
  58. $keydo = ' AND ';
  59. $keyword_arr= explode(' ',$keyword);
  60. }
  61. if(count($keyword_arr)>1){
  62. foreach($keyword_arr as $key =>$keywordz){
  63. $keyword_arr[$key] = ' title like "%'.trim($keywordz).'%" ';
  64. }
  65. $where .= ' AND ('.implode($keydo,$keyword_arr).')';
  66. }else{
  67. $where .= ' AND title like "%'.$keyword.'%" ';
  68. }
  69. }
  70. $this->dao= M($module);
  71. $count = $this->dao->where($where)->count();
  72. $this->assign('count',$count);
  73. if($count){
  74. import ( "@.ORG.Page_home" );
  75. $listRows = !empty($cat['pagesize']) ? $cat['pagesize'] : C('PAGE_LISTROWS');
  76. $page = new Page_home ( $count, $listRows );
  77. $_REQUEST['p'] = '{$page}';
  78. $page->urlrule = URL('Home-Search/index',$_REQUEST);
  79. $pages = $page->show();
  80. $field = $this->module[$cat['moduleid']]['listfields'];
  81. $field = $field ? $field : 'id,catid,userid,url,username,title,title_style,keywords,description,thumb,createtime,hits';
  82. $list = $this->dao->field($field)->where($where)->order('id desc')->limit($page->firstRow . ',' . $page->listRows)->select();
  83. $this->assign('pages',$pages);
  84. $this->assign('list',$list);
  85. }
  86. $this->display();
  87. }
  88. }
  89. ?>