75 if (isset(
$dic[
'lng'])) {
76 $language =
$dic->language();
77 $language->loadLanguageModule(
'certificate');
81 $this->lng = $language;
89 return $this->lng->txt(
'cert_cron_task_title');
97 return $this->lng->txt(
'cert_cron_task_desc');
102 if (null === $this->dic) {
107 $database = $this->dic->database();
109 if (null === $this->logger) {
110 $this->logger = $this->dic->logger()->cert();
113 if (null === $this->queueRepository) {
117 if (null === $this->templateRepository) {
121 if (null === $this->userRepository) {
125 if (null === $this->valueReplacement) {
129 if (null === $this->objectHelper) {
149 $currentMode = $this->
settings->get(
'persistent_certificate_mode',
'persistent_certificate_mode_cron');
150 if ($currentMode !==
'persistent_certificate_mode_cron') {
151 $this->logger->warning(sprintf(
152 'Will not start cron job, because the mode is not set as cron job. Current Mode in settings: "%s"',
158 $this->logger->info(
'START - Begin with cron job to create user certificates from templates');
160 $entries = $this->queueRepository->getAllEntriesFromQueue();
165 $succeededGenerations = [];
166 foreach ($entries as $entry) {
168 $succeededGenerations = $this->processEntry(
171 $succeededGenerations
176 $this->logger->warning($exception->getMessage());
177 $this->logger->warning(
'The user MAY not be able to achieve the certificate based on the adapters settings');
178 $this->logger->warning(
'Due the error, the entry will now be removed from the queue.');
180 $this->queueRepository->removeFromQueue($entry->getId());
184 $this->logger->warning($exception->getMessage());
185 $this->logger->warning(
'Due the error, the entry will now be removed from the queue.');
187 $this->queueRepository->removeFromQueue($entry->getId());
193 if (count($succeededGenerations) > 0) {
195 'Generated %s certificate(s) in run. Result: %s',
196 count($succeededGenerations),
197 implode(
' | ', $succeededGenerations)
200 $result->setMessage(
'0 certificates generated in current run.');
211 return 'certificate';
235 return self::SCHEDULE_TYPE_IN_MINUTES;
255 public function processEntry(
int $entryCounter,
ilCertificateQueueEntry $entry, array $succeededGenerations) : array
257 if ($entryCounter > 0 && $entryCounter % 10 === 0) {
261 $this->logger->debug(
'Entry found will start of processing the entry');
265 $this->logger->debug(
'Adapter class to be executed "' . $class .
'"');
267 $placeholderValueObject =
new $class();
269 throw new ilException(
'The given class ' . $class .
' MUST be an instance of ilCertificateCronAdapter and MUST have an accessible namespace. The class map MAY be reloader.');
276 $this->logger->debug(sprintf(
277 'Fetch certificate template for user id: "%s" and object id: "%s" and template id: "%s"',
283 $template = $this->templateRepository->fetchTemplate($templateId);
285 $object = $this->objectHelper->getInstanceByObjId(
$objId,
false);
288 'The given object id: "%s" could not be referred to an actual object',
293 $type = $object->getType();
295 $userObject = $this->objectHelper->getInstanceByObjId($userId,
false);
296 if (!$userObject || !($userObject instanceof \
ilObjUser)) {
297 throw new ilException(
'The given user id"' . $userId .
'" could not be referred to an actual user');
300 $this->logger->debug(sprintf(
305 $certificateContent = $template->getCertificateContent();
307 $placeholderValues = $placeholderValueObject->getPlaceholderValues($userId,
$objId);
309 $this->logger->debug(sprintf(
310 'Values for placeholders: "%s"',
311 json_encode($placeholderValues)
314 $certificateContent = $this->valueReplacement->replace(
319 $thumbnailImagePath = (string) $template->getThumbnailImagePath();
325 $userObject->getFullname(),
328 json_encode($placeholderValues),
330 $template->getVersion(),
333 $template->getBackgroundImagePath(),
337 $persistedUserCertificate = $this->userRepository->save($userCertificate);
339 $succeededGenerations[] = implode(
'/', [
344 $this->queueRepository->removeFromQueue($entry->
getId());
346 $this->dic->event()->raise(
347 'Services/Certificate',
349 [
'certificate' => $persistedUserCertificate]
352 return $succeededGenerations;
const ILIAS_VERSION_NUMERIC
Cron job application base class.
Class ChatMainBarProvider .
__construct(ilCertificateQueueRepository $queueRepository=null, ilCertificateTemplateRepository $templateRepository=null, ilUserCertificateRepository $userRepository=null, ilCertificateValueReplacement $valueReplacement=null, ilLogger $logger=null, \ILIAS\DI\Container $dic=null, ilLanguage $language=null, ilCertificateObjectHelper $objectHelper=null, ilSetting $setting=null)
const DEFAULT_SCHEDULE_HOURS
$queueRepository
@var ilCertificateQueueRepository
getDefaultScheduleValue()
static ping($a_job_id)
Keep cron job alive.
Cron job result data container.
Component logger with individual log levels by component id.