19 declare(strict_types=1);
58 $this->tabs_gui = $DIC->tabs();
59 $this->help_gui = $DIC->help();
60 $this->
lng->loadLanguageModule(
"search");
62 $this->ui_factory = $DIC->ui()->factory();
63 $this->ui_renderer = $DIC->ui()->renderer();
68 $requested_search = (array) ($this->
http->request()->getParsedBody()[
'search'] ?? []);
70 if ($this->
http->wrapper()->post()->has(
'cmd')) {
72 } elseif ($this->
http->wrapper()->query()->has(
'cmd')) {
73 $requested_cmd = (array) $this->
http->wrapper()->query()->retrieve(
75 $this->
refinery->kindlyTo()->string()
77 $requested_cmd = [$requested_cmd[0] =>
"Search"];
81 $new_search = (bool) ($requested_cmd[
"performSearch"] ??
false);
82 $new_filter = (bool) ($requested_cmd[
"performSearchFilter"] ??
false);
83 $new_search_or_filter = $new_search || $new_filter;
85 $requested_filter_type = (array) ($this->search_filter_data[
"search_type"] ?? []);
86 $requested_filter_type = array_flip($requested_filter_type);
87 $requested_filter_type = array_fill_keys(array_keys($requested_filter_type),
"1");
89 foreach ($enabled_types as $type => $pval) {
90 if (isset($requested_filter_type[$type])) {
91 $requested_search[
"details"][
$type] = $requested_filter_type[
$type];
96 $post_term = $this->
http->wrapper()->post()->retrieve(
99 $this->refinery->kindlyTo()->string(),
103 $filter_type_active = (is_null($this->search_filter_data[
"search_type"] ??
null))
105 : self::SEARCH_DETAILS;
106 $filter_scope = $this->search_filter_data[
"search_scope"] ??
ROOT_FOLDER_ID;
112 $requested_search[
"string"] = $post_term;
113 $requested_search[
"type"] = $filter_type_active;
118 $this->
setType((
int) ($requested_search[
'type'] ?? ($session_search[
'type'] ?? self::SEARCH_FAST)));
125 $this->
setString((
string) ($requested_search[
'string'] ?? ($session_search[
'string'] ??
'')));
127 $new_search_or_filter ?
128 ($requested_search[
'details'] ?? []) :
129 ($session_search[
'details'] ?? [])
132 if ($new_search_or_filter) {
134 $requested_search[
'string'] ?? ($session_search[
'string'] ??
'')
148 $next_class = $this->
ctrl->getNextClass($this);
149 $cmd = $this->
ctrl->getCmd();
151 switch ($next_class) {
152 case 'ilobjectcopygui':
154 $this->
ctrl->setReturn($this,
'');
156 $this->
ctrl->forwardCommand($cp);
161 $cmd =
"showSavedResults";
176 $session_search[
'type'] = $this->type = $a_type;
182 return $this->type ?? self::SEARCH_FAST;
191 $session_search[
'combination'] = $this->combination = $a_combination;
196 return $this->combination ?: self::SEARCH_OR;
205 $session_search[
'string'] = $this->
string = $a_str;
219 $session_search[
'details'] = $this->details = $a_details;
224 return $this->details ?? [];
242 if ($this->
http->wrapper()->post()->has(
'root_id')) {
243 $root_id = $this->
http->wrapper()->post()->retrieve(
249 if ($this->
http->wrapper()->post()->has(
'queryString')) {
250 $queryString = $this->
http->wrapper()->post()->retrieve(
252 $this->
refinery->kindlyTo()->string()
266 if ($this->
http->wrapper()->post()->has(
'term')) {
267 $query = $this->
http->wrapper()->post()->retrieve(
269 $this->
refinery->kindlyTo()->string()
271 } elseif ($this->
http->wrapper()->query()->has(
'term')) {
272 $query = $this->
http->wrapper()->query()->retrieve(
274 $this->
refinery->kindlyTo()->string()
278 if ($this->
http->wrapper()->post()->has(
'search_type')) {
279 $search_type = $this->
http->wrapper()->post()->retrieve(
283 } elseif ($this->
http->wrapper()->query()->has(
'search_type')) {
284 $search_type = $this->
http->wrapper()->query()->retrieve(
289 if ((
int) $search_type === -1) {
290 $a_fields = array(
'login',
'firstname',
'lastname',
'email');
291 $result_field =
'login';
297 $auto->setMoreLinkAvailable(
true);
298 $auto->setSearchFields($a_fields);
299 $auto->setResultField($result_field);
300 $auto->enableFieldSearchableCheck(
true);
301 $auto->setUserLimitations(
true);
303 $res = $auto->getList($query);
304 $res_obj = json_decode(
$res);
305 if (is_array($res_obj->items)) {
306 echo json_encode($res_obj->items);
318 $this->tpl->addBlockFile(
'ADM_CONTENT',
'adm_content',
'tpl.search.html',
'components/ILIAS/Search');
333 if (count($result_obj->getResults())) {
334 $this->
addPager($result_obj,
'max_page');
337 $presentation->setResults($result_obj->getResultsForPresentation());
338 $presentation->setSubitemIds($result_obj->getSubitemIds());
339 $presentation->setPreviousNext($this->prev_link, $this->next_link);
340 #$presentation->setSearcher($searcher); 342 if ($presentation->render()) {
343 $this->tpl->setVariable(
'SEARCH_RESULTS', $presentation->getHTML());
359 if (!$page_number and $this->search_mode !=
'in_results') {
361 $this->search_cache->deleteCachedEntries();
363 $this->search_cache->setResultPageNumber($page_number);
365 $this->tpl->setOnScreenMessage(
'info', $this->
lng->txt(
'search_choose_object_type'));
372 $this->tpl->setOnScreenMessage(
'info', $query_parser);
381 $result_meta = $this->
__searchMeta($query_parser,
'keyword');
382 $result->mergeEntries($result_meta);
384 $result_meta = $this->
__searchMeta($query_parser,
'contribute');
385 $result->mergeEntries($result_meta);
387 $result_meta = $this->
__searchMeta($query_parser,
'title');
388 $result->mergeEntries($result_meta);
390 $result_meta = $this->
__searchMeta($query_parser,
'description');
391 $result->mergeEntries($result_meta);
394 if ($this->
getType() == self::SEARCH_DETAILS) {
398 if ($this->search_mode ==
'in_results') {
400 $old_result_obj->
read();
402 $result->diffEntriesFromResult();
416 if (!count($result->getResults())) {
417 $this->tpl->setOnScreenMessage(
'info', $this->
lng->txt(
'search_no_match'));
420 if ($result->isLimitReached()) {
421 #$message = sprintf($this->lng->txt('search_limit_reached'),$this->settings->getMaxHits()); 422 #ilUtil::sendInfo($message); 426 $this->
addPager($result,
'max_page');
429 $presentation->setResults($result->getResultsForPresentation());
430 $presentation->setSubitemIds($result->getSubitemIds());
431 $presentation->setPreviousNext($this->prev_link, $this->next_link);
433 if ($presentation->render()) {
434 $this->tpl->setVariable(
'SEARCH_RESULTS', $presentation->getHTML());
442 parent::prepareOutput();
444 $this->help_gui->setScreenIdComponent(
"src");
446 $this->tabs_gui->addTab(
448 $this->
lng->txt(
"search"),
449 $this->
ctrl->getLinkTarget($this)
452 if (!$this->
settings->getHideAdvancedSearch()) {
453 $this->tabs_gui->addTab(
455 $this->
lng->txt(
"search_advanced"),
456 $this->
ctrl->getLinkTargetByClass(
'iladvancedsearchgui')
460 $this->tabs_gui->activateTab(
"search");
465 foreach ($this->
getDetails() as $type => $enabled) {
473 $crs_search->setFilter(array(
'crs'));
479 $grp_search->setFilter(array(
'grp'));
486 $result->
mergeEntries($content_search->performSearch());
498 $gdf_search->setFilter(array(
'term'));
502 $result->
mergeEntries($gdf_term_search->performSearch());
530 $result->
mergeEntries($mob_search->performKeywordSearch());
557 $query_parser->parse();
559 if (!$query_parser->validate()) {
560 return $query_parser->getMessage();
562 return $query_parser;
570 if ($this->
getType() == self::SEARCH_DETAILS) {
574 return $obj_search->performSearch();
582 if (is_null($date_start) && is_null($date_end)) {
594 if (!($options[
'date_start'] ??
false)) {
603 if (!($options[
'date_end'] ??
false)) {
617 if ($this->
getType() == self::SEARCH_DETAILS) {
622 $meta_search->setMode(
'keyword');
626 $meta_search->setMode(
'contribute');
630 $meta_search->setMode(
'title');
634 $meta_search->setMode(
'description');
637 return $meta_search->performSearch();
645 if ($this->
getType() != self::SEARCH_DETAILS) {
650 foreach ($this->
getDetails() as $key => $detail_type) {
static get(string $a_var)
setString(string $a_str)
Set/get search string public.
parseEndDateFromCreationFilter()
setCreationDateFilterStartDate(?ilDate $day)
read(int $a_type=ilUserSearchCache::DEFAULT_SEARCH)
read search results
__searchMeta(ilQueryParser $query_parser, string $a_type)
Search in object meta data (keyword)
static _getLMContentSearchInstance(ilQueryParser $query_parser)
static _getMediaPoolSearchInstance(ilQueryParser $query_parser)
setCombination(string $a_combination)
Set/get combination of search ('and' or 'or') public.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
__searchObjects(ilQueryParser $query_parser)
Search in obect title,desctiption.
performSearch()
Perform search.
static getList(string $a_str)
GUI class for the workflow of copying objects.
static _getMediacastSearchInstance(ilQueryParser $query_parser)
static stripSlashes(string $a_str, bool $a_strip_html=true, string $a_allow="")
static _getWikiContentSearchInstance(ilQueryParser $query_parser)
__performDetailsSearch(ilQueryParser $query_parser, ilSearchResult $result)
handleCommand(string $a_cmd)
setRootNode(int $a_node_id)
parseStartDateFromCreationFilter()
setType(int $a_type)
Set/get type of search (detail or 'fast' search) public.
static _getExerciseSearchInstance(ilQueryParser $query_parser)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
static _getGlossaryDefinitionSearchInstance(ilQueryParser $query_parser)
static http()
Fetches the global http state from ILIAS.
__parseQueryString()
parse query string, using query parser instance
setCreationDateFilterEndDate(?ilDate $day)
Presentation of search results using object list gui.
static _getForumSearchInstance(ilQueryParser $query_parser)
static _getObjectSearchInstance(ilQueryParser $query_parser)
parseCreationFilter(ilObjectSearch $search)
renderSearch(string $term, int $root_node=0)
__construct()
Constructor public.
static _getTestSearchInstance(ilQueryParser $query_parser)
getStringArrayTransformation()
mergeEntries(ilSearchResult $result_obj)
merge entries of this instance and another result object
addPager($result, string $a_session_key)
__construct(Container $dic, ilPlugin $plugin)
__getFilter()
Get object type for filter (If detail search is enabled)
executeCommand()
Control public.
static _getMetaDataSearchInstance(ilQueryParser $query_parser)
initPageNumberFromQuery()
exit
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
static clear(string $a_var)
static set(string $a_var, $a_val)
Set a value.
setDetails(array $a_details)
Set/get details (object types for details search) public.
autoComplete()
Data resource for autoComplete.