forked from thorsten/phpMyFAQ
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsearch.php
executable file
·175 lines (150 loc) · 6.57 KB
/
search.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
<?php
/**
* The fulltext search page
*
* PHP Version 5.3
*
* This Source Code Form is subject to the terms of the Mozilla Public License,
* v. 2.0. If a copy of the MPL was not distributed with this file, You can
* obtain one at http://mozilla.org/MPL/2.0/.
*
* @category phpMyFAQ
* @package Frontend
* @author Thorsten Rinne <[email protected]>
* @copyright 2002-2012 phpMyFAQ Team
* @license http://www.mozilla.org/MPL/2.0/ Mozilla Public License Version 2.0
* @link http://www.phpmyfaq.de
* @since 2002-09-16
*/
if (!defined('IS_VALID_PHPMYFAQ')) {
header('Location: http://'.$_SERVER['HTTP_HOST'].dirname($_SERVER['SCRIPT_NAME']));
exit();
}
$faqsession->userTracking('fulltext_search', 0);
// Get possible user input
$inputLanguage = PMF_Filter::filterInput(INPUT_GET, 'langs', FILTER_SANITIZE_STRING);
$inputCategory = PMF_Filter::filterInput(INPUT_GET, 'searchcategory', FILTER_VALIDATE_INT, '%');
$inputTag = PMF_Filter::filterInput(INPUT_GET, 'tagging_id', FILTER_VALIDATE_INT);
$inputSearchTerm = PMF_Filter::filterInput(INPUT_GET, 'suchbegriff', FILTER_SANITIZE_STRIPPED);
$search = PMF_Filter::filterInput(INPUT_GET, 'search', FILTER_SANITIZE_STRIPPED);
$page = PMF_Filter::filterInput(INPUT_GET, 'seite', FILTER_VALIDATE_INT, 1);
// Search only on current language (default)
if (!is_null($inputLanguage)) {
$allLanguages = true;
$languages = '&langs=all';
} else {
$allLanguages = false;
$languages = '';
}
// HACK: (re)evaluate the Category object w/o passing the user language
// so the result set of a Search will have the Category Path
// for any of the multilanguage faq records and the Category list
// on the left pane will not be affected
if ($allLanguages) {
$category = new PMF_Category($faqConfig);
$category->transform(0);
}
if (is_null($user)) {
$user = new PMF_User_CurrentUser($faqConfig);
}
$faqSearch = new PMF_Search($faqConfig);
$faqSearchResult = new PMF_Search_Resultset($user, $faq, $faqConfig);
$tagSearch = false;
//
// Handle the Tagging ID
//
if (!is_null($inputTag)) {
$tagSearch = true;
$tagging = new PMF_Tags($faqConfig);
$recordIds = $tagging->getRecordsByTagId($inputTag);
$searchResult = $faq->showAllRecordsByIds($recordIds);
} else {
$searchResult = '';
}
//
// Handle the full text search stuff
//
if (!is_null($inputSearchTerm) || !is_null($search)) {
if (!is_null($inputSearchTerm)) {
$inputSearchTerm = $faqConfig->getDb()->escape(strip_tags($inputSearchTerm));
}
if (!is_null($search)) {
$inputSearchTerm = $faqConfig->getDb()->escape(strip_tags($search));
}
$faqSearch->setCategory($category);
$faqSearch->setCategoryId($inputCategory);
$searchResults = $faqSearch->search($inputSearchTerm, $allLanguages);
$faqSearchResult->reviewResultset($searchResults);
$inputSearchTerm = stripslashes($inputSearchTerm);
$faqSearch->logSearchTerm($inputSearchTerm);
}
// Change a little bit the $searchCategory value;
$inputCategory = ('%' == $inputCategory) ? 0 : $inputCategory;
$faqsession->userTracking('fulltext_search', $inputSearchTerm);
if (is_numeric($inputSearchTerm) && PMF_SOLUTION_ID_START_VALUE <= $inputSearchTerm &&
0 < $faqSearchResult->getNumberOfResults()) {
// Before a redirection we must force the PHP session update for preventing data loss
session_write_close();
if ($faqConfig->get('main.enableRewriteRules')) {
header('Location: ' . $faqConfig->get('main.referenceURL') . '/solution_id_' . $inputSearchTerm . '.html');
} else {
header('Location: ' . $faqConfig->get('main.referenceURL') . '/index.php?solution_id=' . $inputSearchTerm);
}
exit();
}
$category->buildTree();
$mostPopularSearchData = $faqSearch->getMostPopularSearches($faqConfig->get('search.numberSearchTerms'));
// Set base URL scheme
if ($faqConfig->get('main.enableRewriteRules')) {
$baseUrl = sprintf("%ssearch.html?search=%s&seite=%d%s&searchcategory=%d",
PMF_Link::getSystemRelativeUri('index.php'),
urlencode($inputSearchTerm),
$page,
$languages,
$inputCategory);
} else {
$baseUrl = sprintf('%s?%saction=search&search=%s&seite=%d%s&searchcategory=%d',
PMF_Link::getSystemRelativeUri(),
empty($sids) ? '' : '$sids&',
urlencode($inputSearchTerm),
$page,
$languages,
$inputCategory);
}
// Pagination options
$options = array(
'baseUrl' => $baseUrl,
'total' => $faqSearchResult->getNumberOfResults(),
'perPage' => $faqConfig->get('records.numberOfRecordsPerPage'),
'pageParamName' => 'seite',
'nextPageLinkTpl' => '<a href="{LINK_URL}">' . $PMF_LANG['msgNext'] . '</a>',
'prevPageLinkTpl' => '<a href="{LINK_URL}">' . $PMF_LANG['msgPrevious'] . '</a>',
'layoutTpl' => '<p align="center"><strong>{LAYOUT_CONTENT}</strong></p>');
$faqPagination = new PMF_Pagination($faqConfig, $options);
$categoryHelper = new PMF_Helper_Category();
$categoryHelper->setCategory($category);
$searchHelper = new PMF_Helper_Search($faqConfig);
$searchHelper->setSearchterm($inputSearchTerm);
$searchHelper->setCategory($category);
$searchHelper->setPagination($faqPagination);
$searchHelper->setPlurals($plr);
$searchHelper->setSessionId($sids);
if ('' == $searchResult && !is_null($inputSearchTerm)) {
$searchResult = $searchHelper->renderSearchResult($faqSearchResult, $page);
}
$tpl->parse('writeContent', array(
'msgAdvancedSearch' => ($tagSearch ? $PMF_LANG['msgTagSearch'] : $PMF_LANG['msgAdvancedSearch']),
'msgSearch' => $PMF_LANG['msgSearch'],
'searchString' => PMF_String::htmlspecialchars($inputSearchTerm, ENT_QUOTES, 'utf-8'),
'searchOnAllLanguages' => $PMF_LANG['msgSearchOnAllLanguages'],
'checkedAllLanguages' => $allLanguages ? ' checked="checked"' : '',
'selectCategories' => $PMF_LANG['msgSelectCategories'],
'allCategories' => $PMF_LANG['msgAllCategories'],
'printCategoryOptions' => $categoryHelper->renderOptions($inputCategory),
'writeSendAdress' => '?'.$sids.'action=search',
'msgSearchWord' => $PMF_LANG['msgSearchWord'],
'printResult' => $searchResult,
'openSearchLink' => $searchHelper->renderOpenSearchLink(),
'msgMostPopularSearches' => $PMF_LANG['msgMostPopularSearches'],
'printMostPopularSearches' => $searchHelper->renderMostPopularSearches($mostPopularSearchData)));
$tpl->merge('writeContent', 'index');