3 declare(strict_types=1);
68 $this->
logger = $DIC->logger()->src();
70 $this->db = $DIC->database();
71 $this->tree = $DIC->repositoryTree();
72 $this->
user = $DIC->user();
75 $this->user_id = $a_user_id;
77 $this->user_id = $this->
user->getId();
88 $this->permission = $a_permission;
99 $this->user_id = $a_user_id;
118 $this->max_hits = $a_max_hits;
143 public function addEntry(
int $a_obj_id,
string $a_type, array $found,
int $a_child_id = 0): void
146 if (!isset($this->entries[$a_obj_id])) {
147 $this->entries[$a_obj_id][
'obj_id'] = $a_obj_id;
148 $this->entries[$a_obj_id][
'type'] = $a_type;
149 $this->entries[$a_obj_id][
'found'] = $found;
150 $this->entries[$a_obj_id][
'child'] = [];
152 if ($a_child_id and $a_child_id != $a_obj_id) {
153 $this->entries[$a_obj_id][
'child'][$a_child_id] = $a_child_id;
157 if ($a_child_id and $a_child_id != $a_obj_id) {
158 $this->entries[$a_obj_id][
'child'][$a_child_id] = $a_child_id;
161 foreach ($found as $position) {
163 $this->entries[$a_obj_id][
'found'][$counter] = $position;
188 foreach ($result_obj->
getEntries() as $obj_id => $entry) {
189 $this->
addEntry($entry[
'obj_id'], $entry[
'type'], $entry[
'found']);
201 $this->entries = array();
204 foreach ($this->search_cache->getCheckedItems() as
$ref_id => $obj_id) {
205 if (isset($new_entries[$obj_id])) {
207 $new_entries[$obj_id][
'obj_id'],
208 $new_entries[$obj_id][
'type'],
209 $new_entries[$obj_id][
'found']
212 $new_entries[$obj_id][
'obj_id'],
213 $new_entries[$obj_id][
'child']
226 foreach ($result_obj->
getEntries() as $entry) {
227 $obj_id = $entry[
'obj_id'];
228 if (isset($new_entries[$obj_id])) {
230 $new_entries[$obj_id][
'obj_id'],
231 $new_entries[$obj_id][
'type'],
232 $new_entries[$obj_id][
'found']
236 $new_entries[$obj_id][
'obj_id'],
237 $new_entries[$obj_id][
'child']
243 public function addResult(
int $a_ref_id,
int $a_obj_id,
string $a_type): void
245 $this->results[$a_ref_id][
'ref_id'] = $a_ref_id;
246 $this->results[$a_ref_id][
'obj_id'] = $a_obj_id;
247 $this->results[$a_ref_id][
'type'] = $a_type;
272 $tmp_res[$res_data[
'obj_id']][] =
$ref_id;
286 foreach ($this->results as $result) {
287 if (in_array($result[
'obj_id'], $obj_ids)) {
290 $obj_ids[] = $result[
'obj_id'];
291 $objects[] = $result;
300 if (!is_array($result)) {
304 $res[(
int) $result[
'ref_id']] = (
int) $result[
'obj_id'];
313 $res[$row[
'obj_id']] = $row[
'child'] ?? [];
328 ilDate $creation_filter_date = null,
329 int $creation_filter_operator = null
337 if ($check_and and in_array(0, $entry[
'found'])) {
345 if (is_array($entry[
'child'])) {
346 $counter += count($entry[
'child']);
350 $this->limit_reached =
true;
361 if (!is_null($creation_filter_date) && !is_null($creation_filter_operator)) {
368 $creation_date =
new ilDate(
369 date(
'Y-m-d', strtotime($creation_date_string)),
373 switch ($creation_filter_operator) {
397 if ($this->search_cache->isFailed($ref_id)) {
401 if ($this->search_cache->isChecked($ref_id) and !$this->
isOffsetReached($offset_counter)) {
414 if ($this->
ilAccess->checkAccessOfUser(
422 if ($a_root_node ==
ROOT_FOLDER_ID or $this->tree->isGrandChild($a_root_node, $ref_id)) {
424 #if($this->callListeners($ref_id,$entry)) 426 $this->
addResult($ref_id, $entry[
'obj_id'], $type);
427 $this->search_cache->appendToChecked($ref_id, $entry[
'obj_id']);
435 $this->limit_reached =
true;
436 $this->search_cache->setResults($this->results);
443 $this->search_cache->appendToFailed($ref_id);
446 $this->search_cache->setResults($this->results);
458 $this->results = array();
459 foreach ($tmp_results as $result) {
460 if ($this->tree->isGrandChild($a_root_node, $result[
'ref_id']) && $this->tree->isInTree($result[
'ref_id'])) {
461 $this->
addResult($result[
'ref_id'], $result[
'obj_id'], $result[
'type']);
475 $this->search_cache->save();
485 $this->results = $this->search_cache->getResults();
498 if ($this->entries[$a_obj_id] and is_array($a_childs)) {
499 foreach ($a_childs as $child_id) {
501 $this->entries[$a_obj_id][
'child'][$child_id] = $child_id;
513 if ($this->results[$a_ref_id] and is_array($a_childs)) {
514 foreach ($a_childs as $child_id) {
515 $this->results[$a_ref_id][
'child'][$child_id] = $child_id;
528 $this->
setMaxHits($this->search_settings->getMaxHits());
541 $this->offset = $this->
getMaxHits() * ($this->search_cache->getResultPageNumber() - 1) ;
553 if (null === $a_flag) {
570 public function addObserver(
object $a_class,
string $a_method): bool
572 $this->observers[] = array(
'class' => $a_class,
573 'method' => $a_method);
580 foreach ($this->observers as $observer) {
581 $class = &$observer[
'class'];
582 $method = $observer[
'method'];
584 if (!$class->$method($a_ref_id, $a_data)) {
setMaxHits(int $a_max_hits)
read(int $a_type=ilUserSearchCache::DEFAULT_SEARCH)
read search results
callListeners(int $a_ref_id, array $a_data)
diffEntriesFromResult()
diff entries of this instance and another result object Used for search in results ...
getResultIds()
get result ids
static _before(ilDateTime $start, ilDateTime $end, string $a_compare_field='', string $a_tz='')
compare two dates and check start is before end This method does not consider tz offsets.
const CDATE_OPERATOR_BEFORE
addObserver(object $a_class, string $a_method)
The observer is used to call functions for filtering result.
static _getInstance(int $a_usr_id)
static _getAllReferences(int $id)
get all reference ids for object ID
bool $preventOverwritingMaxhits
initUserSearchCache()
Init user search cache.
ilSearchSettings $search_settings
getResultsForPresentation()
intersectEntries(ilSearchResult $result_obj)
Build intersection of entries (all entries that are present in both result sets)
getUniqueResults()
Get unique results.
const CDATE_OPERATOR_AFTER
addResult(int $a_ref_id, int $a_obj_id, string $a_type)
static _exists(int $id, bool $reference=false, ?string $type=null)
checks if an object exists in object_data
setRequiredPermission(string $a_permission)
Set the required permission for the rbac checks in function 'filter()'.
static _after(ilDateTime $start, ilDateTime $end, string $a_compare_field='', string $a_tz='')
compare two dates and check start is after end This method does not consider tz offsets.
filter(int $a_root_node, bool $check_and, ilDate $creation_filter_date=null, int $creation_filter_operator=null)
Filter search result.
addEntry(int $a_obj_id, string $a_type, array $found, int $a_child_id=0)
add search result entry Entries are stored with 'obj_id'.
__updateResultChilds(int $a_ref_id, array $a_childs)
Update child ids for a specific result.
save(int $a_type=ilUserSearchCache::DEFAULT_SEARCH)
Save search results.
__initSearchSettingsObject()
__construct(int $a_user_id=0)
Constructor public.
isOffsetReached(int $a_counter)
Check if offset is reached.
ilUserSearchCache $search_cache
static _lookupCreationDate(int $obj_id)
mergeEntries(ilSearchResult $result_obj)
merge entries of this instance and another result object
setUserId(int $a_user_id)
Class for storing search result.
$id
plugin.php for ilComponentBuildPluginInfoObjectiveTest::testAddPlugins
numEntries()
Check number of entries public.
static _equals(ilDateTime $start, ilDateTime $end, string $a_compare_field='', string $a_tz='')
Check if two date are equal.
__updateEntryChilds(int $a_obj_id, array $a_childs)
Update childs for a specific entry.
filterResults(int $a_root_node)
Filter search area of result set public.
static _lookupType(int $id, bool $reference=false)
preventOverwritingMaxhits(?bool $a_flag=null)
If you call this function and pass "true" the maxhits setting will not be overwritten in __initSearch...