24 include_once
'./Services/Search/classes/class.ilSearchSettings.php';
25 include_once
'./Services/Search/classes/class.ilSearchBaseGUI.php';
26 include_once
'./Services/Search/classes/Lucene/class.ilLuceneAdvancedSearchFields.php';
27 include_once
'./Services/Administration/interfaces/interface.ilAdministrationCommandHandling.php';
72 $ilBench->start(
'Lucene',
'0900_executeCommand');
73 $next_class = $this->ctrl->getNextClass($this);
74 $cmd = $this->ctrl->getCmd();
77 switch ($next_class) {
78 case "ilpropertyformgui":
83 $ilCtrl->setReturn($this,
'storeRoot');
87 case 'ilobjectcopygui':
88 $this->ctrl->setReturn($this,
'');
89 include_once
'./Services/Object/classes/class.ilObjectCopyGUI.php';
91 $this->ctrl->forwardCommand($cp);
97 $cmd =
"showSavedResults";
102 $ilBench->stop(
'Lucene',
'0900_executeCommand');
111 parent::prepareOutput();
123 if (count($this->search_cache)) {
136 return (array) $this->search_cache->getItemFilter();
146 return (array) $this->search_cache->getMimeFilter();
156 include_once
'./Services/Search/classes/Lucene/class.ilLuceneQueryParser.php';
158 $qp->parseAutoWildcard();
162 $this->search_cache->setRoot((
int)
$_POST[
'root_id']);
164 $this->search_cache->save();
180 if (!strlen($this->search_cache->getQuery())) {
185 include_once
'./Services/Search/classes/Lucene/class.ilLuceneSearcher.php';
186 include_once
'./Services/Search/classes/Lucene/class.ilLuceneQueryParser.php';
193 include_once
'./Services/Search/classes/Lucene/class.ilLuceneSearchResultFilter.php';
195 $filter->loadFromDb();
198 $searcher->highlight($filter->getResultObjIds());
200 include_once
'./Services/Search/classes/class.ilSearchResultPresentation.php';
202 $presentation->setResults($filter->getResultIds());
204 $presentation->setSearcher($searcher);
207 $this->
addPager($filter,
'max_page');
209 $presentation->setPreviousNext($this->prev_link, $this->next_link);
213 if ($presentation->render()) {
214 $this->tpl->setVariable(
'SEARCH_RESULTS', $presentation->getHTML(
true));
215 } elseif (strlen($this->search_cache->getQuery())) {
216 ilUtil::sendInfo(sprintf($this->lng->txt(
'search_no_match_hint'), $qp->getQuery()));
226 if (!$this->form->checkInput()) {
227 $this->search_cache->deleteCachedEntries();
229 include_once
'./Services/Object/classes/class.ilSubItemListGUI.php';
236 $this->search_cache->deleteCachedEntries();
239 include_once
'./Services/Object/classes/class.ilSubItemListGUI.php';
260 foreach ((array) $this->search_cache->getItemFilter() as $obj => $value) {
261 if (!$filter_query) {
262 $filter_query .=
'+( ';
264 $filter_query .=
'OR';
266 $filter_query .= (
' ' . (string) $filter_settings[$obj][
'filter'] .
' ');
268 $filter_query .=
') ';
274 foreach ($this->search_cache->getMimeFilter() as $mime => $value) {
276 $mime_query .=
'+( ';
280 $mime_query .= (
' ' . (string) $filter_settings[$mime][
'filter'] .
' ');
290 $filter_query = $filter_query .
' ' . $mime_query .
' ' . $cdate_query;
292 include_once
'./Services/Search/classes/Lucene/class.ilLuceneSearcher.php';
293 include_once
'./Services/Search/classes/Lucene/class.ilLuceneQueryParser.php';
295 $query = $this->search_cache->getQuery();
305 include_once
'./Services/Search/classes/Lucene/class.ilLuceneSearchResultFilter.php';
306 include_once
'./Services/Search/classes/Lucene/class.ilLucenePathFilter.php';
309 $filter->setCandidates($searcher->getResult());
312 if ($filter->getResultObjIds()) {
313 $searcher->highlight($filter->getResultObjIds());
319 include_once
'./Services/Search/classes/class.ilSearchResultPresentation.php';
321 $presentation->setResults($filter->getResultIds());
322 $presentation->setSearcher($searcher);
325 $ilBench->start(
'Lucene',
'1500_fo');
326 $this->
addPager($filter,
'max_page');
327 $ilBench->stop(
'Lucene',
'1500_fo');
329 $presentation->setPreviousNext($this->prev_link, $this->next_link);
331 if ($presentation->render()) {
332 $this->tpl->setVariable(
'SEARCH_RESULTS', $presentation->getHTML(
true));
334 ilUtil::sendInfo(sprintf($this->lng->txt(
'search_no_match_hint'), $this->search_cache->getQuery()));
345 $this->root_node = $form->getItemByPostVar(
'area')->getValue();
346 $this->search_cache->setRoot($this->root_node);
347 $this->search_cache->save();
348 $this->search_cache->deleteCachedEntries();
350 include_once
'./Services/Object/classes/class.ilSubItemListGUI.php';
363 $ilHelp = $DIC[
'ilHelp'];
365 $ilHelp->setScreenIdComponent(
"src_luc");
367 $this->tabs_gui->addTarget(
'search', $this->ctrl->getLinkTarget($this));
370 $this->tabs_gui->addTarget(
'search_user', $this->ctrl->getLinkTargetByClass(
'illuceneusersearchgui'));
374 $this->tabs_gui->addTarget(
'search_advanced', $this->ctrl->getLinkTargetByClass(
'illuceneAdvancedSearchgui'));
377 $this->tabs_gui->setTabActive(
'search');
392 include_once(
'Services/Search/classes/class.ilUserSearchCache.php');
395 if ((
int)
$_GET[
'page_number']) {
396 $this->search_cache->setResultPageNumber((
int) $_GET[
'page_number']);
398 if (isset(
$_POST[
'term'])) {
400 if (
$_POST[
'item_filter_enabled']) {
404 $filtered[
$type] = 1;
407 $this->search_cache->setItemFilter($filtered);
416 $this->search_cache->setMimeFilter($mime);
419 if (!
$_POST[
'item_filter_enabled']) {
421 $this->search_cache->setItemFilter(array());
422 $this->search_cache->setMimeFilter(array());
424 if (!
$_POST[
'screation']) {
425 $this->search_cache->setCreationFilter(array());
441 $adm_view_cmp = $adm_cmds = $creation_selector = $adm_view =
false;
444 if ((count((array) $this->admin_panel_commands) > 0)) {
445 foreach ($this->admin_panel_commands as $cmd) {
446 $this->tpl->setCurrentBlock(
"lucene_admin_panel_cmd");
447 $this->tpl->setVariable(
"LUCENE_PANEL_CMD", $cmd[
"cmd"]);
448 $this->tpl->setVariable(
"LUCENE_TXT_PANEL_CMD", $cmd[
"txt"]);
449 $this->tpl->parseCurrentBlock();
455 $this->tpl->setCurrentBlock(
"lucene_adm_view_components");
457 $this->tpl->setVariable(
"LUCENE_ADM_ALT_ARROW",
$lng->txt(
"actions"));
458 $this->tpl->parseCurrentBlock();
459 $adm_view_cmp =
true;
463 if (is_array($this->admin_view_button)) {
464 if (is_array($this->admin_view_button)) {
465 $this->tpl->setCurrentBlock(
"lucene_admin_button");
466 $this->tpl->setVariable(
467 "LUCENE_ADMIN_MODE_LINK",
468 $this->admin_view_button[
"link"]
470 $this->tpl->setVariable(
471 "LUCENE_TXT_ADMIN_MODE",
472 $this->admin_view_button[
"txt"]
474 $this->tpl->parseCurrentBlock();
476 $this->tpl->setCurrentBlock(
"lucene_admin_view");
477 $this->tpl->parseCurrentBlock();
482 if (is_array($this->creation_selector)) {
483 $this->tpl->setCurrentBlock(
"lucene_add_commands");
485 $this->tpl->setVariable(
"LUCENE_ADD_COM_WIDTH",
'width="1"');
487 $this->tpl->setVariable(
488 "LUCENE_SELECT_OBJTYPE_REPOS",
489 $this->creation_selector[
"options"]
491 $this->tpl->setVariable(
492 "LUCENE_BTN_NAME_REPOS",
493 $this->creation_selector[
"command"]
495 $this->tpl->setVariable(
496 "LUCENE_TXT_ADD_REPOS",
497 $this->creation_selector[
"txt"]
499 $this->tpl->parseCurrentBlock();
500 $creation_selector =
true;
502 if ($adm_view || $creation_selector) {
503 $this->tpl->setCurrentBlock(
"lucene_adm_panel");
505 $this->tpl->setVariable(
"LUCENE_ADM_TBL_WIDTH",
'width:"100%";');
507 $this->tpl->parseCurrentBlock();
516 $this->admin_panel_commands[] =
517 array(
"cmd" => $a_cmd,
"txt" => $a_txt);
525 $this->admin_view_button =
526 array(
"link" => $a_link,
"txt" => $a_txt);
531 $this->page_form_action = $a_action;
545 $this->tpl->addBlockFile(
'ADM_CONTENT',
'adm_content',
'tpl.lucene_search.html',
'Services/Search');
548 include_once(
"./Services/UIComponent/Overlay/classes/class.ilOverlayGUI.php");
550 $this->tpl->addJavascript(
"./Services/Search/js/Search.js");
552 include_once(
"./Services/UIComponent/Glyph/classes/class.ilGlyphGUI.php");
554 $this->tpl->setVariable(
"FORM_ACTION",
$ilCtrl->getFormAction($this,
'performSearch'));
556 $this->tpl->setVariable(
"SEARCH_LABEL",
$lng->txt(
"search"));
557 include_once(
"./Services/UIComponent/Button/classes/class.ilSubmitButton.php");
559 $btn->setCommand(
"performSearch");
560 $btn->setCaption(
"search");
561 $this->tpl->setVariable(
"SUBMIT_BTN", $btn->render());
562 $this->tpl->setVariable(
"TXT_OPTIONS",
$lng->txt(
"options"));
564 $this->tpl->setVariable(
"TXT_COMBINATION",
$lng->txt(
"search_term_combination"));
566 $this->tpl->setVariable(
"TXT_AREA",
$lng->txt(
"search_area"));
569 $this->tpl->setCurrentBlock(
"type_sel");
570 $this->tpl->setVariable(
'TXT_TYPE_DEFAULT',
$lng->txt(
"search_off"));
572 $this->tpl->setVariable(
"TXT_FILTER_BY_TYPE",
$lng->txt(
"search_filter_by_type"));
573 $this->tpl->setVariable(
'FORM', $this->form->getHTML());
574 $this->tpl->parseCurrentBlock();
578 $this->tpl->setVariable(
'SEARCH_AREA_FORM', $this->
getSearchAreaForm()->getHTML());
579 $this->tpl->setVariable(
"TXT_CHANGE",
$lng->txt(
"change"));
583 $this->tpl->setVariable(
'TXT_FILTER_BY_CDATE', $this->lng->txt(
'search_filter_cd'));
584 $this->tpl->setVariable(
'TXT_CD_OFF', $this->lng->txt(
'search_off'));
585 $this->tpl->setVariable(
'TXT_CD_ON', $this->lng->txt(
'search_on'));
602 $options = $this->search_cache->getCreationFilter();
604 if (!$options[
'enabled']) {
609 switch ($options[
'ontype']) {
618 return '+(cdate:[* TO ' . $limit->get(
IL_CAL_DATE) .
']) ';
622 return '+(cdate:' . $limit->get(
IL_CAL_DATE) .
'*) ';
showSearchForm()
Show search form.
getType()
Get type of search (details | fast)
static prepareFormOutput($a_str, $a_strip=false)
prepares string output for html forms public
loadCreationFilter()
Load creation date filter.
getSearchAreaForm()
Init standard search form.
remoteSearch()
Search from main menu.
getDetails()
Needed for base class search form.
GUI class for the workflow of copying objects.
parse()
parse query string
static getInstance(ilLuceneQueryParser $qp)
Get singleton instance.
static get($a_glyph, $a_text="")
Get glyph html.
parseCreationFilter()
Parse creation date.
getMimeDetails()
Needed for base class search form.
executeCommand()
Execute Command.
__construct()
Constructor.
prepareOutput()
Add admin panel command.
static resetDetails()
reset details As long as static::resetDetails is not possible this method is final ...
setPageFormAction($a_action)
static sendInfo($a_info="", $a_keep=false)
Send Info Message to Screen.
GUI for simple Lucene search
setAdminViewButton($a_link, $a_txt)
Show admin view button.
showSavedResults()
Show saved results.
static _getInstance($a_usr_id)
Get singleton instance.
static getInstance($a_user_id)
addPager($result, $a_session_key)
Add Pager.
Presentation of search results using object list gui.
static getImagePath($img, $module_path="", $mode="output", $offline=false)
get image path (for images located in a template directory)
initStandardSearchForm($a_mode)
Init standard search form.
addAdminPanelCommand($a_cmd, $a_txt)
Add a command to the admin panel.
performSearch()
Perform search.
handleCommand($a_cmd)
Handle command.
static stripSlashes($a_str, $a_strip_html=true, $a_allow="")
strip slashes if magic qoutes is enabled
search()
Search (button pressed)
storeRoot()
Store new root node.
initUserSearchCache()
Init user search cache.
__construct(Container $dic, ilPlugin $plugin)
fillAdminPanel()
Put admin panel into template:
static getInstance()
Get singleton instance.
static initJavascript()
Init javascript.