X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=actions%2Fnoticesearch.php;h=f1d6d1551640b9d771c780a22f4d7f080d648b5f;hb=3f28b17c86c4cd88d4f39629ea8a89ec3a820790;hp=1f43af800d2194ccdbfbba1b3541b21c4c86ef12;hpb=cd4b23aa399a51744787e580f8dfdb3886bfc8f5;p=quix0rs-gnu-social.git diff --git a/actions/noticesearch.php b/actions/noticesearch.php index 1f43af800d..f1d6d15516 100644 --- a/actions/noticesearch.php +++ b/actions/noticesearch.php @@ -48,10 +48,36 @@ require_once INSTALLDIR.'/lib/searchaction.php'; */ class NoticesearchAction extends SearchAction { - function prepare($args) + protected $q = null; + + function prepare(array $args=array()) { parent::prepare($args); + $this->q = $this->trimmed('q'); + + // FIXME: very dependent on tag format + if (preg_match('/^#([\pL\pN_\-\.]{1,64})/ue', $this->q)) { + common_redirect(common_local_url('tag', + array('tag' => common_canonical_tag(substr($this->q, 1)))), + 303); + } + + if (!empty($this->q)) { + + $profile = Profile::current(); + $stream = new SearchNoticeStream($this->q, $profile); + $page = $this->trimmed('page'); + + if (empty($page)) { + $page = 1; + } else { + $page = (int)$page; + } + + $this->notice = $stream->getNotices((($page-1)*NOTICES_PER_PAGE), NOTICES_PER_PAGE + 1); + } + common_set_returnto($this->selfUrl()); return true; @@ -106,18 +132,25 @@ class NoticesearchAction extends SearchAction */ function showResults($q, $page) { - $notice = new Notice(); - - $search_engine = $notice->getSearchEngine('notice'); - $search_engine->set_sort_mode('chron'); - // Ask for an extra to see if there's more. - $search_engine->limit((($page-1)*NOTICES_PER_PAGE), NOTICES_PER_PAGE + 1); - if (false === $search_engine->query($q)) { - $cnt = 0; - } else { - $cnt = $notice->find(); + if (Event::handle('StartNoticeSearchShowResults', array($this, $q, $this->notice))) { + if ($this->notice->N === 0) { + $this->showEmptyResults($q, $page); + } else { + $terms = preg_split('/[\s,]+/', $q); + $nl = new SearchNoticeList($this->notice, $this, $terms); + $cnt = $nl->show(); + $this->pagination($page > 1, + $cnt > NOTICES_PER_PAGE, + $page, + 'noticesearch', + array('q' => $q)); + } + Event::handle('EndNoticeSearchShowResults', array($this, $q, $this->notice)); } - if ($cnt === 0) { + } + + function showEmptyResults($q, $page) + { // TRANS: Text for notice search results is the query had no results. $this->element('p', 'error', _('No results.')); @@ -137,15 +170,6 @@ class NoticesearchAction extends SearchAction $this->raw(common_markup_to_html($message)); $this->elementEnd('div'); return; - } - if (Event::handle('StartNoticeSearchShowResults', array($this, $q, $notice))) { - $terms = preg_split('/[\s,]+/', $q); - $nl = new SearchNoticeList($notice, $this, $terms); - $cnt = $nl->show(); - $this->pagination($page > 1, $cnt > NOTICES_PER_PAGE, - $page, 'noticesearch', array('q' => $q)); - Event::handle('EndNoticeSearchShowResults', array($this, $q, $notice)); - } } function showScripts() @@ -162,7 +186,7 @@ class SearchNoticeList extends NoticeList { $this->terms = $terms; } - function newListItem($notice) + function newListItem(Notice $notice) { return new SearchNoticeListItem($notice, $this->out, $this->terms); } @@ -178,7 +202,7 @@ class SearchNoticeListItem extends NoticeListItem { function showContent() { // FIXME: URL, image, video, audio - $this->out->elementStart('p', array('class' => 'entry-content')); + $this->out->elementStart('p', array('class' => 'e-content')); if ($this->notice->rendered) { $this->out->raw($this->highlight($this->notice->rendered, $this->terms)); } else {