19 declare(strict_types=1);
60 $this->
logger = $logger ?? $DIC->logger()->cert();
61 $this->object_data_cache = $object_data_cache ?? $DIC[
'ilObjDataCache'];
78 return $this->user_data_repository->getUserData($filter, $ilCtrlStack);
83 return $this->user_data_repository->getUserCertificateDataMaxCount($filter);
89 $this->
logger->debug(sprintf(
90 'Did not trigger certificate achievement for inactive template: usr_id: %s/obj_id: %s/type: %s/template_id: %s',
107 $type = $this->object_data_cache->lookupType($obj_id);
108 if (!$this->type_class_map->typeExistsInMap($type)) {
110 "Oject type '%s' is not supported by the certificate component!",
115 $template = $this->template_repository->fetchCurrentlyActiveCertificate($obj_id);
123 return $this->template_repository->fetchCurrentlyActiveCertificate($obj_id)->isCurrentlyActive();
139 $this->
logger->debug(sprintf(
140 'Trigger persisting certificate achievement for: usr_id: %s/obj_id: %s/type: %s/template_id: %s',
150 $this->type_class_map->getPlaceHolderClassNameByType($template->
getObjType()),
156 $mode = (
new ilSetting(
'certificate'))->
get(
157 'persistent_certificate_mode',
158 'persistent_certificate_mode_cron' 160 if ($mode ===
'persistent_certificate_mode_instant') {
163 $cronjob->processEntry(0, $entry, []);
167 $this->queue_repository->addToQueue($entry);
isActiveCertificateTemplateAvailableFor(int $obj_id)
certificateCriteriaMet(int $usr_id, int $obj_id)
readonly ilObjectDataCache $object_data_cache
getUserCertificateDataMaxCount(UserDataFilter $filter)
processEntry(int $userId, ilCertificateTemplate $template)
readonly ilCertificateQueueRepository $queue_repository
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
readonly UserDataRepository $user_data_repository
readonly ilLogger $logger
getUserCertificateData(UserDataFilter $filter, array $ilCtrlStack=[])
certificateCriteriaMetForGivenTemplate(int $usr_id, ilCertificateTemplate $template)
__construct(?UserDataRepository $user_data_repository=null, ?ilCertificateTemplateRepository $template_repository=null, ?ilCertificateQueueRepository $queue_repository=null, private readonly ilCertificateTypeClassMap $type_class_map=new ilCertificateTypeClassMap(), ?ilLogger $logger=null, ?ilObjectDataCache $object_data_cache=null,)
readonly ilCertificateTemplateRepository $template_repository