ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
UserCertificateAPI.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
21 namespace ILIAS\Certificate\API;
22 
29 use ilLogger;
32 use ilCronConstants;
33 use ilSetting;
41 
43 {
47  private readonly ilLogger $logger;
49 
50  public function __construct(
51  ?UserDataRepository $user_data_repository = null,
52  ?ilCertificateTemplateRepository $template_repository = null,
53  ?ilCertificateQueueRepository $queue_repository = null,
54  private readonly ilCertificateTypeClassMap $type_class_map = new ilCertificateTypeClassMap(),
55  ?ilLogger $logger = null,
56  ?ilObjectDataCache $object_data_cache = null,
57  ) {
58  global $DIC;
59 
60  $this->logger = $logger ?? $DIC->logger()->cert();
61  $this->object_data_cache = $object_data_cache ?? $DIC['ilObjDataCache'];
62  $this->user_data_repository = $user_data_repository ?? new UserDataRepository(
63  $DIC->database(),
64  $DIC->ctrl()
65  );
66  $this->template_repository = $template_repository ?? new ilCertificateTemplateDatabaseRepository(
67  $DIC->database(),
69  );
70  $this->queue_repository = $queue_repository ?? new ilCertificateQueueRepository(
71  $DIC->database(),
73  );
74  }
75 
76  public function getUserCertificateData(UserDataFilter $filter, array $ilCtrlStack = []): array
77  {
78  return $this->user_data_repository->getUserData($filter, $ilCtrlStack);
79  }
80 
82  {
83  return $this->user_data_repository->getUserCertificateDataMaxCount($filter);
84  }
85 
86  public function certificateCriteriaMetForGivenTemplate(int $usr_id, ilCertificateTemplate $template): void
87  {
88  if (!$template->isCurrentlyActive()) {
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',
91  $usr_id,
92  $template->getObjId(),
93  $template->getObjType(),
94  $template->getId()
95  ));
96  return;
97  }
98 
99  $this->processEntry(
100  $usr_id,
101  $template
102  );
103  }
104 
105  public function certificateCriteriaMet(int $usr_id, int $obj_id): void
106  {
107  $type = $this->object_data_cache->lookupType($obj_id);
108  if (!$this->type_class_map->typeExistsInMap($type)) {
109  throw new ilCertificateConsumerNotSupported(sprintf(
110  "Oject type '%s' is not supported by the certificate component!",
111  $type
112  ));
113  }
114 
115  $template = $this->template_repository->fetchCurrentlyActiveCertificate($obj_id);
116 
117  $this->certificateCriteriaMetForGivenTemplate($usr_id, $template);
118  }
119 
120  public function isActiveCertificateTemplateAvailableFor(int $obj_id): bool
121  {
122  try {
123  return $this->template_repository->fetchCurrentlyActiveCertificate($obj_id)->isCurrentlyActive();
125  return false;
126  }
127  }
128 
135  private function processEntry(
136  int $userId,
137  ilCertificateTemplate $template
138  ): void {
139  $this->logger->debug(sprintf(
140  'Trigger persisting certificate achievement for: usr_id: %s/obj_id: %s/type: %s/template_id: %s',
141  $userId,
142  $template->getObjId(),
143  $template->getObjType(),
144  $template->getId()
145  ));
146 
147  $entry = new ilCertificateQueueEntry(
148  $template->getObjId(),
149  $userId,
150  $this->type_class_map->getPlaceHolderClassNameByType($template->getObjType()),
152  $template->getId(),
153  time()
154  );
155 
156  $mode = (new ilSetting('certificate'))->get(
157  'persistent_certificate_mode',
158  'persistent_certificate_mode_cron'
159  );
160  if ($mode === 'persistent_certificate_mode_instant') {
161  $cronjob = new ilCertificateCron();
162  $cronjob->init();
163  $cronjob->processEntry(0, $entry, []);
164  return;
165  }
166 
167  $this->queue_repository->addToQueue($entry);
168  }
169 }
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
global $DIC
Definition: shib_login.php:22
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