ILIAS  trunk Revision v11.0_alpha-1702-gfd3ecb7f852
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ilSearchSettings.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
31 {
32  public const LIKE_SEARCH = 0;
33  public const LUCENE_SEARCH = 2;
34 
35  public const OPERATOR_AND = 1;
36  public const OPERATOR_OR = 2;
37 
38  protected static ?ilSearchSettings $instance = null;
39 
40  protected int $default_operator = self::OPERATOR_AND;
41  protected int $fragmentSize = 30;
42  protected int $fragmentCount = 3;
43  protected int $numSubitems = 5;
45  protected bool $lucene_item_filter_enabled = false;
46  protected array $lucene_item_filter = array();
47  protected bool $lucene_offline_filter = true;
48  protected int $auto_complete_length = 10;
49  protected bool $show_inactiv_user = true;
50  protected bool $show_limited_user = true;
51 
52  protected bool $lucene = false;
53  protected bool $hide_adv_search = false;
54  protected bool $lucene_mime_filter_enabled = false;
55  protected array $lucene_mime_filter = array();
56  protected bool $prefix_wildcard = false;
57  protected bool $user_search = false;
58  protected bool $date_filter = false;
59 
60  protected ?ILIAS $ilias = null;
61  protected ilSetting $setting;
62  private int $max_hits = 10;
63 
64  public function __construct()
65  {
66  global $DIC;
67 
68  $this->ilias = $DIC['ilias'];
69  $this->setting = $DIC->settings();
70  $this->__read();
71  }
72 
73  public static function getInstance(): ilSearchSettings
74  {
75  if (self::$instance instanceof ilSearchSettings) {
76  return self::$instance;
77  }
78  return self::$instance = new ilSearchSettings();
79  }
80 
85  public static function getLuceneItemFilterDefinitions(): array
86  {
87  return array(
88  'crs' => array('filter' => 'type:crs','trans' => 'objs_crs'),
89  'grp' => array('filter' => 'type:grp', 'trans' => 'objs_grp'),
90  'lms' => array('filter' => 'type:lm OR type:htlm','trans' => 'obj_lrss'),
91  'glo' => array('filter' => 'type:glo','trans' => 'objs_glo'),
92  'mep' => array('filter' => 'type:mep', 'trans' => 'objs_mep'),
93  'tst' => array('filter' => 'type:tst OR type:svy OR type:qpl OR type:spl','trans' => 'search_tst_svy'),
94  'frm' => array('filter' => 'type:frm','trans' => 'objs_frm'),
95  'exc' => array('filter' => 'type:exc','trans' => 'objs_exc'),
96  'file' => array('filter' => 'type:file','trans' => 'objs_file'),
97  'mcst' => array('filter' => 'type:mcst','trans' => 'objs_mcst'),
98  'wiki' => array('filter' => 'type:wiki','trans' => 'objs_wiki'),
99  'copa' => array('filter' => 'type:copa','trans' => 'objs_copa'),
100  );
101  }
102 
103  public static function getLuceneMimeFilterDefinitions(): array
104  {
105  return array(
106  'pdf' => array('filter' => 'mimeType:pdf','trans' => 'search_mime_pdf'),
107  'word' => array('filter' => 'mimeType:word','trans' => 'search_mime_word'),
108  'excel' => array('filter' => 'mimeType:excel','trans' => 'search_mime_excel'),
109  'powerpoint' => array('filter' => 'mimeType:powerpoint','trans' => 'search_mime_powerpoint'),
110  'image' => array('filter' => 'mimeType:image','trans' => 'search_mime_image')
111  );
112  }
113 
118  public function getEnabledLuceneItemFilterDefinitions(): array
119  {
120  if (!$this->isLuceneItemFilterEnabled()) {
121  return array();
122  }
123 
124  $filter = $this->getLuceneItemFilter();
125  $enabled = array();
126  foreach (self::getLuceneItemFilterDefinitions() as $obj => $def) {
127  if (isset($filter[$obj]) and $filter[$obj]) {
128  $enabled[$obj] = $def;
129  }
130  }
131  return $enabled;
132  }
133 
134  // begin-patch mime_filter
135  public function getEnabledLuceneMimeFilterDefinitions(): array
136  {
137  if (!$this->isLuceneItemFilterEnabled()) {
138  return array();
139  }
140 
141  $filter = $this->getLuceneMimeFilter();
142  $enabled = array();
143  foreach (self::getLuceneMimeFilterDefinitions() as $mime => $def) {
144  if (isset($filter[$mime]) and $filter[$mime]) {
145  $enabled[$mime] = $def;
146  }
147  }
148  return $enabled;
149  }
150 
151  public function enablePrefixWildcardQuery(bool $a_stat): void
152  {
153  $this->prefix_wildcard = $a_stat;
154  }
155 
156  public function isPrefixWildcardQueryEnabled(): bool
157  {
158  return $this->prefix_wildcard;
159  }
160 
164  public static function _getSearchSettingRefId(): int
165  {
166  global $DIC;
167 
168  $ilDB = $DIC->database();
169 
170  static $seas_ref_id = 0;
171 
172  if ($seas_ref_id) {
173  return $seas_ref_id;
174  }
175  $query = "SELECT object_reference.ref_id as ref_id FROM object_reference,tree,object_data " .
176  "WHERE tree.parent = " . $ilDB->quote(SYSTEM_FOLDER_ID, 'integer') . " " .
177  "AND object_data.type = 'seas' " .
178  "AND object_reference.ref_id = tree.child " .
179  "AND object_reference.obj_id = object_data.obj_id";
180 
181  $res = $ilDB->query($query);
182  $row = $res->fetchRow(ilDBConstants::FETCHMODE_OBJECT);
183 
184  return $seas_ref_id = (int) $row->ref_id;
185  }
186 
187  public function enabledLucene(): bool
188  {
189  return $this->lucene;
190  }
191  public function enableLucene(bool $a_status): void
192  {
193  $this->lucene = $a_status;
194  }
195 
196  public function getMaxHits(): int
197  {
198  return $this->max_hits;
199  }
200  public function setMaxHits(int $a_max_hits): void
201  {
202  $this->max_hits = $a_max_hits;
203  }
204 
205  public function getDefaultOperator(): int
206  {
208  }
209 
210  public function setDefaultOperator(int $a_op): void
211  {
212  $this->default_operator = $a_op;
213  }
214 
215  public function setFragmentSize(int $a_size): void
216  {
217  $this->fragmentSize = $a_size;
218  }
219 
220  public function getFragmentSize(): int
221  {
222  return $this->fragmentSize;
223  }
224 
225  public function setFragmentCount(int $a_count): void
226  {
227  $this->fragmentCount = $a_count;
228  }
229 
230  public function getHideAdvancedSearch(): bool
231  {
232  return $this->hide_adv_search;
233  }
234  public function setHideAdvancedSearch(bool $a_status): void
235  {
236  $this->hide_adv_search = $a_status;
237  }
238  public function getAutoCompleteLength(): int
239  {
241  }
242  public function setAutoCompleteLength(int $auto_complete_length): void
243  {
244  $this->auto_complete_length = $auto_complete_length;
245  }
246 
247  public function getFragmentCount(): int
248  {
249  return $this->fragmentCount;
250  }
251 
252  public function setMaxSubitems(int $a_max): void
253  {
254  $this->numSubitems = $a_max;
255  }
256 
257  public function getMaxSubitems(): int
258  {
259  return $this->numSubitems;
260  }
261 
262  public function getLastIndexTime(): ilDateTime
263  {
264  return $this->last_index_date instanceof ilDateTime ?
265  $this->last_index_date :
266  new ilDateTime('2009-01-01 12:00:00', IL_CAL_DATETIME);
267  }
268 
269  public function enableLuceneItemFilter(bool $a_status): void
270  {
271  $this->lucene_item_filter_enabled = $a_status;
272  }
273 
274  public function isLuceneItemFilterEnabled(): bool
275  {
277  }
278 
279  public function getLuceneItemFilter(): array
280  {
282  }
283 
284 
285  public function setLuceneItemFilter(array $a_filter): void
286  {
287  $this->lucene_item_filter = $a_filter;
288  }
289 
290  public function enableLuceneOfflineFilter(bool $a_stat): void
291  {
292  $this->lucene_offline_filter = $a_stat;
293  }
294 
295  public function isLuceneOfflineFilterEnabled(): bool
296  {
298  }
299 
300  public function setLuceneMimeFilter(array $a_filter): void
301  {
302  $this->lucene_mime_filter = $a_filter;
303  }
304 
305  public function getLuceneMimeFilter(): array
306  {
308  }
309 
313  public function isLuceneMimeFilterEnabled(): bool
314  {
316  }
317 
318  public function enableLuceneMimeFilter(bool $a_stat): void
319  {
320  $this->lucene_mime_filter_enabled = $a_stat;
321  }
322 
323 
324  public function setLastIndexTime(?ilDateTime $time): void
325  {
326  $this->last_index_date = $time;
327  }
328 
332  public function isLuceneUserSearchEnabled(): bool
333  {
334  return $this->user_search;
335  }
336 
341  public function enableLuceneUserSearch(bool $a_status): void
342  {
343  $this->user_search = $a_status;
344  }
345 
349  public function showInactiveUser(bool $a_visible): void
350  {
351  $this->show_inactiv_user = $a_visible;
352  }
353 
358  public function isInactiveUserVisible(): bool
359  {
361  }
362 
366  public function showLimitedUser(bool $a_visible): void
367  {
368  $this->show_limited_user = $a_visible;
369  }
370 
371 
372  public function isLimitedUserVisible(): bool
373  {
375  }
376 
377  public function isDateFilterEnabled(): bool
378  {
379  return $this->date_filter;
380  }
381 
382  public function enableDateFilter(bool $a_filter): void
383  {
384  $this->date_filter = $a_filter;
385  }
386 
387  public function update(): void
388  {
389  $this->setting->set('search_max_hits', (string) $this->getMaxHits());
390  $this->setting->set('search_lucene', (string) $this->enabledLucene());
391 
392  $this->setting->set('lucene_default_operator', (string) $this->getDefaultOperator());
393  $this->setting->set('lucene_fragment_size', (string) $this->getFragmentSize());
394  $this->setting->set('lucene_fragment_count', (string) $this->getFragmentCount());
395  $this->setting->set('lucene_max_subitems', (string) $this->getMaxSubitems());
396  $this->setting->set('lucene_last_index_time', (string) $this->getLastIndexTime()->get(IL_CAL_UNIX));
397  $this->setting->set('hide_adv_search', (string) $this->getHideAdvancedSearch());
398  $this->setting->set('auto_complete_length', (string) $this->getAutoCompleteLength());
399  $this->setting->set('lucene_item_filter_enabled', (string) $this->isLuceneItemFilterEnabled());
400  $this->setting->set('lucene_item_filter', serialize($this->getLuceneItemFilter()));
401  $this->setting->set('lucene_offline_filter', (string) $this->isLuceneOfflineFilterEnabled());
402  $this->setting->set('lucene_mime_filter', serialize($this->getLuceneMimeFilter()));
403  $this->setting->set('lucene_mime_filter_enabled', (string) $this->isLuceneMimeFilterEnabled());
404  $this->setting->set('lucene_prefix_wildcard', (string) $this->isPrefixWildcardQueryEnabled());
405  $this->setting->set('lucene_user_search', (string) $this->isLuceneUserSearchEnabled());
406  $this->setting->set('search_show_inactiv_user', (string) $this->isInactiveUserVisible());
407  $this->setting->set('search_show_limited_user', (string) $this->isLimitedUserVisible());
408  $this->setting->set('search_date_filter', (string) $this->isDateFilterEnabled());
409  }
410 
411  // PRIVATE
412  protected function __read()
413  {
414  $this->setMaxHits((int) $this->setting->get('search_max_hits', '10'));
415  $this->enableLucene((bool) $this->setting->get('search_lucene', '0'));
416  $this->setDefaultOperator((int) $this->setting->get('lucene_default_operator', (string) self::OPERATOR_AND));
417  $this->setFragmentSize((int) $this->setting->get('lucene_fragment_size', "50"));
418  $this->setFragmentCount((int) $this->setting->get('lucene_fragment_count', "3"));
419  $this->setMaxSubitems((int) $this->setting->get('lucene_max_subitems', "5"));
420  if ($time = $this->setting->get('lucene_last_index_time', '0')) {
421  $this->setLastIndexTime(new ilDateTime($time, IL_CAL_UNIX));
422  } else {
423  $this->setLastIndexTime(null);
424  }
425  $this->setHideAdvancedSearch((bool) $this->setting->get('hide_adv_search', '0'));
426  $this->setAutoCompleteLength((int) $this->setting->get('auto_complete_length', (string) $this->getAutoCompleteLength()));
427  $this->enableLuceneItemFilter((bool) $this->setting->get('lucene_item_filter_enabled', (string) $this->isLuceneItemFilterEnabled()));
428  $filter = (string) $this->setting->get('lucene_item_filter', serialize($this->getLuceneItemFilter()));
429  $this->setLuceneItemFilter(unserialize($filter));
430  $this->enableLuceneOfflineFilter((bool) $this->setting->get('lucene_offline_filter', (string) $this->isLuceneOfflineFilterEnabled()));
431  $this->enableLuceneMimeFilter((bool) $this->setting->get('lucene_mime_filter_enabled', (string) $this->lucene_item_filter_enabled));
432  $filter = (string) $this->setting->get('lucene_mime_filter', serialize($this->getLuceneMimeFilter()));
433  $this->setLuceneMimeFilter(unserialize($filter));
434  $this->enablePrefixWildcardQuery((bool) $this->setting->get('lucene_prefix_wildcard', (string) $this->prefix_wildcard));
435  $this->enableLuceneUserSearch((bool) $this->setting->get('lucene_user_search', (string) $this->user_search));
436  $this->showInactiveUser((bool) $this->setting->get('search_show_inactiv_user', (string) $this->show_inactiv_user));
437  $this->showLimitedUser((bool) $this->setting->get('search_show_limited_user', (string) $this->show_limited_user));
438  $this->enableDateFilter((bool) $this->setting->get('search_date_filter', (string) $this->date_filter));
439  }
440 }
setHideAdvancedSearch(bool $a_status)
isLuceneMimeFilterEnabled()
Check if lucene mime filter is enabled.
$res
Definition: ltiservices.php:66
static getLuceneItemFilterDefinitions()
Get lucene item filter definitions.
static ilSearchSettings $instance
const IL_CAL_DATETIME
Interface Observer Contains several chained tasks and infos about them.
isInactiveUserVisible()
are inactive user visible in user search
getEnabledLuceneItemFilterDefinitions()
Get lucene item filter definitions.
setLuceneItemFilter(array $a_filter)
const IL_CAL_UNIX
const SYSTEM_FOLDER_ID
Definition: constants.php:35
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
setLastIndexTime(?ilDateTime $time)
setFragmentCount(int $a_count)
setLuceneMimeFilter(array $a_filter)
enablePrefixWildcardQuery(bool $a_stat)
enableLuceneUserSearch(bool $a_status)
Enable lucene user search.
static _getSearchSettingRefId()
Read the ref_id of Search Settings object.
global $DIC
Definition: shib_login.php:22
setAutoCompleteLength(int $auto_complete_length)
Class ilObjForumAdministration.
enableLucene(bool $a_status)
showLimitedUser(bool $a_visible)
show user with limited access in user search
enableLuceneItemFilter(bool $a_status)
enableLuceneOfflineFilter(bool $a_stat)
isLuceneUserSearchEnabled()
Check if user search is enabled.
enableDateFilter(bool $a_filter)
showInactiveUser(bool $a_visible)
show inactive user in user search
enableLuceneMimeFilter(bool $a_stat)
setMaxHits(int $a_max_hits)