164ab5140SAndreas Gohr<?php 264ab5140SAndreas Gohr 364ab5140SAndreas Gohrnamespace dokuwiki\Action; 464ab5140SAndreas Gohr 564ab5140SAndreas Gohruse dokuwiki\Action\Exception\ActionAbort; 664ab5140SAndreas Gohr 7ab583a1bSAndreas Gohr/** 8ab583a1bSAndreas Gohr * Class Search 9ab583a1bSAndreas Gohr * 10ab583a1bSAndreas Gohr * Search for pages and content 11ab583a1bSAndreas Gohr * 12ab583a1bSAndreas Gohr * @package dokuwiki\Action 13ab583a1bSAndreas Gohr */ 148c7c53b0SAndreas Gohrclass Search extends AbstractAction 158c7c53b0SAndreas Gohr{ 166723156fSAndreas Gohr protected $pageLookupResults = []; 176723156fSAndreas Gohr protected $fullTextResults = []; 186723156fSAndreas Gohr protected $highlight = []; 196639a152SMichael Große 2064ab5140SAndreas Gohr /** @inheritdoc */ 21*d868eb89SAndreas Gohr public function minimumPermission() 22*d868eb89SAndreas Gohr { 2364ab5140SAndreas Gohr return AUTH_NONE; 2464ab5140SAndreas Gohr } 2564ab5140SAndreas Gohr 2664ab5140SAndreas Gohr /** 2764ab5140SAndreas Gohr * we only search if a search word was given 2864ab5140SAndreas Gohr * 2964ab5140SAndreas Gohr * @inheritdoc 3064ab5140SAndreas Gohr */ 31*d868eb89SAndreas Gohr public function checkPreconditions() 32*d868eb89SAndreas Gohr { 33b2c9cd19SAndreas Gohr parent::checkPreconditions(); 3464ab5140SAndreas Gohr } 3564ab5140SAndreas Gohr 36d09b5b64SMichael Große public function preProcess() 37d09b5b64SMichael Große { 38d22b78c8SMichael Große global $QUERY, $ID, $conf, $INPUT; 39d22b78c8SMichael Große $s = cleanID($QUERY); 40d22b78c8SMichael Große 413286c65dSMichael Große if ($ID !== $conf['start'] && !$INPUT->has('q')) { 42d22b78c8SMichael Große parse_str($INPUT->server->str('QUERY_STRING'), $urlParts); 43d22b78c8SMichael Große $urlParts['q'] = $urlParts['id']; 44918638dcSSchplurtz le Déboulonné unset($urlParts['id']); 45cc21cb50SAndreas Gohr $url = wl($ID, $urlParts, true, '&'); 46d22b78c8SMichael Große send_redirect($url); 47d22b78c8SMichael Große } 48d22b78c8SMichael Große 49d22b78c8SMichael Große if ($s === '') throw new ActionAbort(); 50d09b5b64SMichael Große $this->adjustGlobalQuery(); 51d09b5b64SMichael Große } 52d09b5b64SMichael Große 5364ab5140SAndreas Gohr /** @inheritdoc */ 54d09b5b64SMichael Große public function tplContent() 55d09b5b64SMichael Große { 566639a152SMichael Große $this->execute(); 576639a152SMichael Große 586639a152SMichael Große $search = new \dokuwiki\Ui\Search($this->pageLookupResults, $this->fullTextResults, $this->highlight); 5921fcef82SMichael Große $search->show(); 6064ab5140SAndreas Gohr } 61d09b5b64SMichael Große 626639a152SMichael Große 636639a152SMichael Große /** 646639a152SMichael Große * run the search 656639a152SMichael Große */ 666639a152SMichael Große protected function execute() 676639a152SMichael Große { 686639a152SMichael Große global $INPUT, $QUERY; 69422bbbc6SMichael Große $after = $INPUT->str('min'); 70422bbbc6SMichael Große $before = $INPUT->str('max'); 713850270cSMichael Große $this->pageLookupResults = ft_pageLookup($QUERY, true, useHeading('navigation'), $after, $before); 723850270cSMichael Große $this->fullTextResults = ft_pageSearch($QUERY, $highlight, $INPUT->str('srt'), $after, $before); 736639a152SMichael Große $this->highlight = $highlight; 746639a152SMichael Große } 756639a152SMichael Große 76d09b5b64SMichael Große /** 7713ce475dSAndreas Gohr * Adjust the global query accordingly to the config search_nslimit and search_fragment 78d09b5b64SMichael Große * 79d09b5b64SMichael Große * This will only do something if the search didn't originate from the form on the searchpage itself 80d09b5b64SMichael Große */ 81d09b5b64SMichael Große protected function adjustGlobalQuery() 82d09b5b64SMichael Große { 83340f849aSMichael Große global $conf, $INPUT, $QUERY, $ID; 84d09b5b64SMichael Große 851265b193SMichael Große if ($INPUT->bool('sf')) { 86d09b5b64SMichael Große return; 87d09b5b64SMichael Große } 88d09b5b64SMichael Große 89d09b5b64SMichael Große $Indexer = idx_get_indexer(); 90d09b5b64SMichael Große $parsedQuery = ft_queryParser($Indexer, $QUERY); 91d09b5b64SMichael Große 92d09b5b64SMichael Große if (empty($parsedQuery['ns']) && empty($parsedQuery['notns'])) { 9313ce475dSAndreas Gohr if ($conf['search_nslimit'] > 0) { 94340f849aSMichael Große if (getNS($ID) !== false) { 95340f849aSMichael Große $nsParts = explode(':', getNS($ID)); 9613ce475dSAndreas Gohr $ns = implode(':', array_slice($nsParts, 0, $conf['search_nslimit'])); 97d09b5b64SMichael Große $QUERY .= " @$ns"; 98d09b5b64SMichael Große } 99d09b5b64SMichael Große } 100d09b5b64SMichael Große } 101d09b5b64SMichael Große 10213ce475dSAndreas Gohr if ($conf['search_fragment'] !== 'exact') { 103d09b5b64SMichael Große if (empty(array_diff($parsedQuery['words'], $parsedQuery['and']))) { 104d09b5b64SMichael Große if (strpos($QUERY, '*') === false) { 105d09b5b64SMichael Große $queryParts = explode(' ', $QUERY); 106d09b5b64SMichael Große $queryParts = array_map(function ($part) { 107d09b5b64SMichael Große if (strpos($part, '@') === 0) { 108d09b5b64SMichael Große return $part; 109d09b5b64SMichael Große } 110d09b5b64SMichael Große if (strpos($part, 'ns:') === 0) { 111d09b5b64SMichael Große return $part; 112d09b5b64SMichael Große } 113d09b5b64SMichael Große if (strpos($part, '^') === 0) { 114d09b5b64SMichael Große return $part; 115d09b5b64SMichael Große } 116d09b5b64SMichael Große if (strpos($part, '-ns:') === 0) { 117d09b5b64SMichael Große return $part; 118d09b5b64SMichael Große } 119d09b5b64SMichael Große 120d09b5b64SMichael Große global $conf; 121d09b5b64SMichael Große 12213ce475dSAndreas Gohr if ($conf['search_fragment'] === 'starts_with') { 123d09b5b64SMichael Große return $part . '*'; 124d09b5b64SMichael Große } 12513ce475dSAndreas Gohr if ($conf['search_fragment'] === 'ends_with') { 126d09b5b64SMichael Große return '*' . $part; 127d09b5b64SMichael Große } 128d09b5b64SMichael Große 129d09b5b64SMichael Große return '*' . $part . '*'; 130d09b5b64SMichael Große }, $queryParts); 131d09b5b64SMichael Große $QUERY = implode(' ', $queryParts); 132d09b5b64SMichael Große } 133d09b5b64SMichael Große } 134d09b5b64SMichael Große } 135d09b5b64SMichael Große } 13664ab5140SAndreas Gohr} 137