65 $this->
logger = $DIC->logger()->src();
67 $this->db = $DIC->database();
68 $this->tree = $DIC->repositoryTree();
69 $this->
user = $DIC->user();
72 $this->user_id = $a_user_id;
74 $this->user_id = $this->
user->getId();
85 $this->permission = $a_permission;
96 $this->user_id = $a_user_id;
115 $this->max_hits = $a_max_hits;
140 public function addEntry(
int $a_obj_id,
string $a_type, array $found,
int $a_child_id = 0): void
143 if (!isset($this->entries[$a_obj_id])) {
144 $this->entries[$a_obj_id][
'obj_id'] = $a_obj_id;
145 $this->entries[$a_obj_id][
'type'] = $a_type;
146 $this->entries[$a_obj_id][
'found'] = $found;
147 $this->entries[$a_obj_id][
'child'] = [];
149 if ($a_child_id and $a_child_id != $a_obj_id) {
150 $this->entries[$a_obj_id][
'child'][$a_child_id] = $a_child_id;
154 if ($a_child_id and $a_child_id != $a_obj_id) {
155 $this->entries[$a_obj_id][
'child'][$a_child_id] = $a_child_id;
158 foreach ($found as $position) {
160 $this->entries[$a_obj_id][
'found'][$counter] = $position;
185 foreach ($result_obj->
getEntries() as $obj_id => $entry) {
186 $this->
addEntry($entry[
'obj_id'], $entry[
'type'], $entry[
'found']);
198 $this->entries = array();
201 foreach ($this->search_cache->getCheckedItems() as
$ref_id => $obj_id) {
202 if (isset($new_entries[$obj_id])) {
204 $new_entries[$obj_id][
'obj_id'],
205 $new_entries[$obj_id][
'type'],
206 $new_entries[$obj_id][
'found']
209 $new_entries[$obj_id][
'obj_id'],
210 $new_entries[$obj_id][
'child']
223 foreach ($result_obj->
getEntries() as $entry) {
224 $obj_id = $entry[
'obj_id'];
225 if (isset($new_entries[$obj_id])) {
227 $new_entries[$obj_id][
'obj_id'],
228 $new_entries[$obj_id][
'type'],
229 $new_entries[$obj_id][
'found']
233 $new_entries[$obj_id][
'obj_id'],
234 $new_entries[$obj_id][
'child']
240 public function addResult(
int $a_ref_id,
int $a_obj_id,
string $a_type): void
242 $this->results[$a_ref_id][
'ref_id'] = $a_ref_id;
243 $this->results[$a_ref_id][
'obj_id'] = $a_obj_id;
244 $this->results[$a_ref_id][
'type'] = $a_type;
269 $tmp_res[$res_data[
'obj_id']][] =
$ref_id;
283 foreach ($this->results as $result) {
284 if (in_array($result[
'obj_id'], $obj_ids)) {
287 $obj_ids[] = $result[
'obj_id'];
288 $objects[] = $result;
297 if (!is_array($result)) {
301 $res[(
int) $result[
'ref_id']] = (
int) $result[
'obj_id'];
310 $res[$row[
'obj_id']] = $row[
'child'] ?? [];
333 if ($check_and and in_array(0, $entry[
'found'])) {
338 if ($type ==
'rolt' or $type ==
'usr' or $type ==
'role') {
340 $this->
addResult($entry[
'obj_id'], $entry[
'obj_id'], $type);
341 if (is_array($entry[
'child'])) {
342 $counter += count($entry[
'child']);
346 $this->limit_reached =
true;
357 if (!is_null($creation_filter_date_start) || !is_null($creation_filter_date_end)) {
364 $creation_date =
new ilDate(
365 date(
'Y-m-d', strtotime($creation_date_string)),
369 if ($creation_filter_date_start && is_null($creation_filter_date_end)) {
370 if (!
ilDate::_after($creation_date, $creation_filter_date_start)) {
373 } elseif ($creation_filter_date_end && is_null($creation_filter_date_start)) {
378 if (!
ilDate::_within($creation_date, $creation_filter_date_start, $creation_filter_date_end)) {
387 if ($this->search_cache->isFailed($ref_id)) {
391 if ($this->search_cache->isChecked($ref_id) and !$this->
isOffsetReached($offset_counter)) {
404 if ($this->
ilAccess->checkAccessOfUser(
412 if ($a_root_node ==
ROOT_FOLDER_ID or $this->tree->isGrandChild($a_root_node, $ref_id)) {
414 #if($this->callListeners($ref_id,$entry)) 416 $this->
addResult($ref_id, $entry[
'obj_id'], $type);
417 $this->search_cache->appendToChecked($ref_id, $entry[
'obj_id']);
425 $this->limit_reached =
true;
426 $this->search_cache->setResults($this->results);
433 $this->search_cache->appendToFailed($ref_id);
436 $this->search_cache->setResults($this->results);
448 $this->results = array();
449 foreach ($tmp_results as $result) {
450 if (isset($result[
'ref_id']) && $this->tree->isGrandChild($a_root_node, $result[
'ref_id']) && $this->tree->isInTree($result[
'ref_id'])) {
451 $this->
addResult($result[
'ref_id'], $result[
'obj_id'], $result[
'type']);
465 $this->search_cache->save();
475 $this->results = $this->search_cache->getResults();
488 if ($this->entries[$a_obj_id] and is_array($a_childs)) {
489 foreach ($a_childs as $child_id) {
491 $this->entries[$a_obj_id][
'child'][$child_id] = $child_id;
503 if ($this->results[$a_ref_id] and is_array($a_childs)) {
504 foreach ($a_childs as $child_id) {
505 $this->results[$a_ref_id][
'child'][$child_id] = $child_id;
518 $this->
setMaxHits($this->search_settings->getMaxHits());
531 $this->offset = $this->
getMaxHits() * ($this->search_cache->getResultPageNumber() - 1) ;
543 if (
null === $a_flag) {
560 public function addObserver(
object $a_class,
string $a_method): bool
562 $this->observers[] = array(
'class' => $a_class,
563 'method' => $a_method);
570 foreach ($this->observers as $observer) {
571 $class = &$observer[
'class'];
572 $method = $observer[
'method'];
574 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.
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.
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
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.
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
$id
plugin.php for ilComponentBuildPluginInfoObjectiveTest::testAddPlugins
setUserId(int $a_user_id)
Class for storing search result.
numEntries()
Check number of entries public.
filter(int $a_root_node, bool $check_and, ?ilDate $creation_filter_date_start=null, ?ilDate $creation_filter_date_end=null)
Filter search result.
__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...
static _within(ilDateTime $dt, ilDateTime $start, ilDateTime $end, string $a_compare_field='', string $a_tz='')
Check whether an date is within a date duration given by start and end.