19 declare(strict_types=1);
43 private readonly
int $forum_ref_id,
44 private readonly
bool $is_moderator,
49 $this->http_wrapper = $http_wrapper ?? $DIC->http()->wrapper();
50 $this->
refinery = $refinery ?? $DIC->refinery();
60 'is_moderator' => $this->is_moderator,
62 'order_column' => $sortation->field(),
63 'order_direction' => $sortation->direction()
72 if (
$data[
'items'] === [] && $page > 0) {
82 $items =
$data[
'items'];
86 foreach ($items as $thread) {
88 $thread_ids[] = $thread->getId();
89 if ($thread->getDisplayUserId() > 0) {
90 $user_ids[$thread->getDisplayUserId()] = $thread->getDisplayUserId();
94 $user_ids = array_merge(
108 if ($query_thread_sortation !==
null) {
109 $this->
setSessionKeyValue($this->forum_ref_id, self::KEY_THREAD_SORTATION, $query_thread_sortation);
110 return ThreadSortation::tryFrom($query_thread_sortation);
115 self::KEY_THREAD_SORTATION,
116 ThreadSortation::DEFAULT_SORTATION->value
119 return ThreadSortation::tryFrom(
120 $session_thread_sortation
128 if ($query_thread_page !==
null) {
129 $this->
setSessionKeyValue($this->forum_ref_id, self::KEY_THREAD_PAGE, $query_thread_page);
130 return $query_thread_page;
135 self::KEY_THREAD_PAGE,
142 return $this->http_wrapper->query()->retrieve(
145 $this->refinery->kindlyTo()->int(),
154 if ($session_value ===
null) {
155 $session_value = $default;
158 return $session_value;
168 return "frm_{$refId}_$key";
static get(string $a_var)
__construct(private readonly int $forum_ref_id, private readonly bool $is_moderator, ?WrapperFactory $http_wrapper=null, ?Factory $refinery=null)
if(! $DIC->user() ->getId()||!ilLTIConsumerAccess::hasCustomProviderCreationAccess()) $params
WrapperFactory $http_wrapper
static getUserIdsOfLastPostsByRefIdAndThreadIds(int $ref_id, array $thread_ids)
buildSessionKey(int $refId, string $key)
const string KEY_THREAD_SORTATION
getKeyValueFromSession(int $refId, string $key, mixed $default=null)
setSessionKeyValue(int $refId, string $key, mixed $value)
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
const PAGE_SIZE_THREAD_OVERVIEW
getAllThreads(int $a_topic_id, array $params=[], int $limit=0, int $offset=0)
getKeyValueFromQuery(string $key, ?int $default=null)
const string KEY_THREAD_PAGE
static set(string $a_var, $a_val)
Set a value.