Ejemplo n.º 1
0
 public function searchthreadAction()
 {
     list($page, $perpage, $keyword, $created_username, $time_start, $time_end, $fid, $digest, $created_userid, $created_ip, $hits_start, $hits_end, $replies_start, $replies_end) = $this->getInput(array('page', 'perpage', 'keyword', 'created_username', 'time_start', 'time_end', 'fid', 'digest', 'created_userid', 'created_ip', 'hits_start', 'hits_end', 'replies_start', 'replies_end'));
     if ($created_username) {
         $user = $this->_getUserDs()->getUserByName($created_username);
         if (!$user) {
             $this->showError(array('USER:exists.not', array('{username}' => $created_username)));
         }
         if ($created_userid) {
             $created_userid != $user['uid'] && $this->showError('USER:username.notequal.uid');
         }
         $created_userid = $user['uid'];
     }
     // dm条件
     Wind::import('SRV:forum.vo.PwThreadSo');
     $dm = new PwThreadSo();
     $keyword && $dm->setKeywordOfTitleOrContent($keyword);
     if ($fid) {
         $forum = Wekit::load('forum.PwForum')->getForum($fid);
         if ($forum['type'] != 'category') {
             $dm->setFid($fid);
         } else {
             $srv = Wekit::load('forum.srv.PwForumService');
             $fids = array(0);
             $forums = $srv->getForumsByLevel($fid, $srv->getForumMap());
             foreach ($forums as $value) {
                 $fids[] = $value['fid'];
             }
             $dm->setFid($fids);
         }
     }
     $created_userid && $dm->setAuthorId($created_userid);
     $time_start && $dm->setCreateTimeStart(Pw::str2time($time_start));
     $time_end && $dm->setCreateTimeEnd(Pw::str2time($time_end));
     $digest && $dm->setDigest($digest);
     $hits_start && $dm->setHitsStart($hits_start);
     $hits_end && $dm->setHitsEnd($hits_end);
     $replies_start && $dm->setRepliesStart($replies_start);
     $replies_end && $dm->setRepliesEnd($replies_end);
     $created_ip && $dm->setCreatedIp($created_ip);
     $dm->setDisabled(0)->orderbyCreatedTime(false);
     $count = $this->_getThreadDs()->countSearchThread($dm);
     if ($count) {
         $page = $page ? $page : 1;
         $perpage = $perpage ? $perpage : $this->perpage;
         list($start, $limit) = Pw::page2limit($page, $perpage);
         $threads = $this->_getThreadDs()->searchThread($dm, $limit, $start);
     }
     $this->setOutput($count, 'count');
     $this->setOutput($page, 'page');
     $this->setOutput($perpage, 'perpage');
     $this->setOutput(array('keyword' => $keyword, 'created_username' => $created_username, 'time_start' => $time_start, 'time_end' => $time_end, 'fid' => $fid, 'digest' => $digest, 'created_userid' => $created_userid, 'created_ip' => $created_ip, 'hits_start' => $hits_start, 'hits_end' => $hits_end, 'replies_start' => $replies_start, 'replies_end' => $replies_end), 'args');
     $this->setOutput($this->_getFroumService()->getForumList($fid), 'forumList');
     $this->setOutput($this->_getFroumService()->getForumOption($fid), 'option_html');
     $this->setOutput($threads, 'threads');
 }