ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ilLuceneUserSearchGUI.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
31 {
32  protected ilTabsGUI $tabs;
33  protected ilHelpGUI $help;
34 
38  public function __construct()
39  {
40  global $DIC;
41 
42  $this->tabs = $DIC->tabs();
43  $this->help = $DIC->help();
45  $this->initUserSearchCache();
46  }
47 
51  public function executeCommand(): void
52  {
53  $next_class = $this->ctrl->getNextClass($this);
54  $cmd = $this->ctrl->getCmd();
55 
56  $this->prepareOutput();
57  switch ($next_class) {
58  case "ilpublicuserprofilegui":
59 
60  $user_id = 0;
61  if ($this->http->wrapper()->query()->has('user_id')) {
62  $user_id = $this->http->wrapper()->query()->retrieve(
63  'user_id',
64  $this->refinery->kindlyTo()->int()
65  );
66  }
67  $profile = new ilPublicUserProfileGUI($user_id);
68  $profile->setBackUrl($this->ctrl->getLinkTarget($this, 'showSavedResults'));
69  $ret = $this->ctrl->forwardCommand($profile);
70  $this->tpl->setContent($ret);
71  break;
72 
73 
74  default:
76  if (!$cmd) {
77  $cmd = "showSavedResults";
78  }
79  $this->handleCommand($cmd);
80  break;
81  }
82  }
83 
84  public function prepareOutput(): void
85  {
86  parent::prepareOutput();
87  $this->getTabs();
88  }
89 
90 
91 
97  protected function getType(): int
98  {
99  return self::SEARCH_DETAILS;
100  }
101 
106  protected function getDetails(): array
107  {
108  return $this->search_cache->getItemFilter();
109  }
110 
111 
115  protected function remoteSearch(): void
116  {
117  $root_id = 0;
118  if ($this->http->wrapper()->post()->has('root_id')) {
119  $root_id = $this->http->wrapper()->post()->retrieve(
120  'root_id',
121  $this->refinery->kindlyTo()->int()
122  );
123  }
124  $queryString = '';
125  if ($this->http->wrapper()->post()->has('queryString')) {
126  $queryString = $this->http->wrapper()->post()->retrieve(
127  'queryString',
128  $this->refinery->kindlyTo()->string()
129  );
130  }
131  $this->search_cache->setRoot($root_id);
132  $this->search_cache->setQuery($queryString);
133  $this->search_cache->save();
134  $this->search();
135  }
136 
141  protected function showSavedResults(): void
142  {
143  if (strlen($this->search_cache->getQuery())) {
144  $this->performSearch();
145  return;
146  }
147 
148  $this->showSearchForm();
149  }
150 
155  protected function search(): void
156  {
157  if (!$this->form->checkInput()) {
158  $this->search_cache->deleteCachedEntries();
159  // Reset details
161  $this->showSearchForm();
162  return;
163  }
164  ilSession::clear('max_page');
165  $this->search_cache->deleteCachedEntries();
166 
167  // Reset details
169  $this->performSearch();
170  }
171 
175  protected function performSearch(): void
176  {
177  $qp = new ilLuceneQueryParser($this->search_cache->getQuery());
178  $qp->parse();
179  $searcher = ilLuceneSearcher::getInstance($qp);
180  $searcher->setType(ilLuceneSearcher::TYPE_USER);
181  $searcher->search();
182 
183  $this->showSearchForm();
184 
185  $user_table = new ilRepositoryUserResultTableGUI(
186  $this,
187  'performSearch',
188  false,
190  );
191  $user_table->setLuceneResult($searcher->getResult());
192  $user_table->parseUserIds($searcher->getResult()->getCandidates());
193 
194  $this->tpl->setVariable('SEARCH_RESULTS', $user_table->getHTML());
195  }
196 
200  protected function getTabs(): void
201  {
202  $this->help->setScreenIdComponent("src_luc");
203 
204  $this->tabs->addTarget('search', $this->ctrl->getLinkTargetByClass('illucenesearchgui'));
205 
206  if (ilSearchSettings::getInstance()->isLuceneUserSearchEnabled()) {
207  $this->tabs->addTarget('search_user', $this->ctrl->getLinkTargetByClass('illuceneusersearchgui'));
208  }
209 
211 
212  if (
213  !ilSearchSettings::getInstance()->getHideAdvancedSearch() and
214  $fields->getActiveFields()) {
215  $this->tabs->addTarget('search_advanced', $this->ctrl->getLinkTargetByClass('illuceneadvancedsearchgui'));
216  }
217 
218  $this->tabs->setTabActive('search_user');
219  }
220 
224  protected function initUserSearchCache(): void
225  {
226  $this->search_cache = ilUserSearchCache::_getInstance($this->user->getId());
227  $this->search_cache->switchSearchType(ilUserSearchCache::LUCENE_USER_SEARCH);
228  $page_number = $this->initPageNumberFromQuery();
229  if ($page_number) {
230  $this->search_cache->setResultPageNumber($page_number);
231  }
232 
233  if ($this->http->wrapper()->post()->has('term')) {
234  $query = $this->http->wrapper()->post()->retrieve(
235  'term',
236  $this->refinery->kindlyTo()->string()
237  );
238  $this->search_cache->setQuery($query);
239  $this->search_cache->setItemFilter(array());
240  $this->search_cache->setMimeFilter(array());
241  $this->search_cache->save();
242  }
243  }
244 
245 
246 
251  protected function showSearchForm()
252  {
253  $this->tpl->addBlockFile('ADM_CONTENT', 'adm_content', 'tpl.lucene_usr_search.html', 'components/ILIAS/Search');
254  $this->renderSearch($this->search_cache->getQuery());
255 
256  return true;
257  }
258 }
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
parse()
parse query string
search()
Search (button pressed)
static _getInstance(int $a_usr_id)
Help GUI class.
static getInstance(ilLuceneQueryParser $qp)
Get singleton instance.
handleCommand(string $a_cmd)
static resetDetails()
As long as static::resetDetails is not possible this method is final.
initUserSearchCache()
Init user search cache.
GUI class for public user profile presentation.
static http()
Fetches the global http state from ILIAS.
global $DIC
Definition: shib_login.php:22
GUI for Lucene user search
renderSearch(string $term, int $root_node=0)
form( $class_path, string $cmd, string $submit_caption="")
remoteSearch()
Search from main menu.
initStandardSearchForm(int $a_mode)
__construct(Container $dic, ilPlugin $plugin)
static clear(string $a_var)
getType()
Get type of search (details | fast)
showSavedResults()
Show saved results.
getDetails()
Needed for base class search form.