19 declare(strict_types=1);
37 if (
null === $logger) {
39 $logger = $DIC->logger()->cert();
43 if (
null === $objectDataCache) {
45 $objectDataCache = $DIC[
'ilObjDataCache'];
52 $this->
logger->debug(
'START - Save new certificate template');
56 $id = $this->database->nextId(self::TABLE_NAME);
61 'id' => [
'integer',
$id],
62 'obj_id' => [
'integer',
$objId],
63 'obj_type' => [
'text', $certificateTemplate->
getObjType()],
67 'version' => [
'integer', $certificateTemplate->
getVersion()],
71 'deleted' => [
'integer', (
int) $certificateTemplate->
isDeleted()],
77 $this->database->tableColumnExists(
'il_cert_user_cert',
'background_image_path') &&
78 $this->database->tableColumnExists(
'il_cert_user_cert',
'tile_image_path')
84 $this->database->insert(self::TABLE_NAME, $columns);
88 'END - certificate template saved with columns: %s',
89 json_encode($columns, JSON_THROW_ON_ERROR)
96 $sql =
'UPDATE ' . self::TABLE_NAME .
' SET currently_active = ' . $this->database->quote(
102 return $this->database->manipulate($sql);
107 $this->
logger->debug(sprintf(
'START - Fetch certificate template with id: "%s"', $templateId));
111 ' . self::TABLE_NAME .
' 116 $query = $this->database->query($sql);
118 while ($row = $this->database->fetchAssoc($query)) {
130 $this->
logger->debug(sprintf(
'START - Fetch multiple certificate templates for object: "%s"', $objId));
136 self::TABLE_NAME .
' ' .
139 'ORDER BY version ASC' 142 $query = $this->database->query($sql);
144 while ($row = $this->database->fetchAssoc($query)) {
150 'END - Fetching of certificate templates for object: "%s" with "%s" results',
161 $this->
logger->debug(sprintf(
'START - Fetch currently active certificate template for object: "%s"', $objId));
163 $this->database->setLimit(1);
166 SELECT * FROM ' . self::TABLE_NAME .
' 172 $query = $this->database->query($sql);
174 while ($row = $this->database->fetchAssoc($query)) {
175 $this->
logger->debug(sprintf(
'END - Found active certificate for: "%s"', $objId));
180 $this->
logger->debug(sprintf(
'END - Found NO active certificate for: "%s"', $objId));
204 $this->
logger->debug(sprintf(
'START - Fetch currently active certificate template for object: "%s"', $objId));
207 SELECT * FROM ' . self::TABLE_NAME .
' 210 AND currently_active = 1 213 $query = $this->database->query($sql);
215 while ($row = $this->database->fetchAssoc($query)) {
216 $this->
logger->debug(sprintf(
'END - Found active certificate for: "%s"', $objId));
226 $this->
logger->debug(sprintf(
'START - Fetch previous active certificate template for object: "%s"', $objId));
247 foreach ($templates as $template) {
248 if ($template->getVersion() >
$version) {
250 $resultTemplate = $template;
254 $this->
logger->debug(sprintf(
'Latest version active certificate template for object: "%s"', $objId));
256 return $resultTemplate;
263 'START - Set deleted flag for certificate template("%s") for object: "%s"',
270 UPDATE ' . self::TABLE_NAME .
' 271 SET deleted = 1, currently_active = 0 275 $this->database->manipulate($sql);
279 'END - Deleted flag set fo certificate template("%s") for object: "%s"',
288 $this->
logger->debug(sprintf(
'START - Activate previous certificate template for object: "%s"', $objId));
293 $previousCertificate =
null;
294 foreach ($certificates as $certificate) {
295 if (
null === $previousCertificate) {
296 $previousCertificate = $certificate;
297 } elseif ($certificate->getVersion() > $previousCertificate->getVersion()) {
298 $previousCertificate = $certificate;
302 $sql =
'UPDATE ' . self::TABLE_NAME .
' 303 SET currently_active = 1 306 $this->database->manipulate($sql);
308 $this->
logger->debug(sprintf(
'END - Previous certificate updated for object: "%s"', $objId));
310 return $previousCertificate;
314 bool $isGlobalLpEnabled,
315 ?
int $forRefId =
null 318 'START - Fetch all active course certificate templates with disabled learning progress: "%s"' 321 $joinLpSettings =
'';
322 $whereLpSettings =
'';
323 $onSettingsForRefId =
'';
325 if ($isGlobalLpEnabled) {
326 $joinLpSettings =
'LEFT JOIN ut_lp_settings uls ON uls.obj_id = od.obj_id';
327 $whereLpSettings = sprintf(
328 'AND (uls.u_mode IS NULL OR uls.u_mode = %s)',
333 if (is_int($forRefId)) {
334 $onSettingsForRefId =
" AND settings.value IS NOT NULL AND (JSON_CONTAINS(settings.value, '\"{$forRefId}\"', '$') = 1 OR JSON_CONTAINS(settings.value, '{$forRefId}', '$')) ";
338 SELECT ' . self::TABLE_NAME .
'.* 339 FROM ' . self::TABLE_NAME .
' 340 INNER JOIN object_data od ON od.obj_id = ' . self::TABLE_NAME .
".obj_id 341 INNER JOIN settings ON settings.module = %s AND settings.keyword = {$this->database->concat( 343 [$this->database->quote('cert_subitems_', 'text'), 'text'], 344 ['od.obj_id', 'text'] 347 )} $onSettingsForRefId $joinLpSettings 348 WHERE " . self::TABLE_NAME .
'.obj_type = %s 349 AND ' . self::TABLE_NAME .
'.currently_active = %s 350 ' . $whereLpSettings;
351 $query = $this->database->queryF(
353 [
'text',
'text',
'integer'],
358 while ($row = $this->database->fetchAssoc($query)) {
364 'END - All active course certificate templates with disabled learning progress: "%s"',
365 json_encode($result, JSON_THROW_ON_ERROR)
377 $this->
logger->debug(sprintf(
'START - Fetch first create certificate template for object: "%s"', $objId));
379 $this->database->setLimit(1, 0);
382 SELECT * FROM ' . self::TABLE_NAME .
' 387 $query = $this->database->query($sql);
389 while ($row = $this->database->fetchAssoc($query)) {
390 $this->
logger->debug(sprintf(
'END - Found first create certificate template for object: "%s"', $objId));
400 $this->
logger->debug(sprintf(
'START - Deactivate previous certificate template for object: "%s"', $objId));
403 UPDATE ' . self::TABLE_NAME .
' 404 SET currently_active = 0 407 $this->database->manipulate($sql);
409 $this->
logger->debug(sprintf(
'END - Certificate template deactivated for object: "%s"', $objId));
416 'START - Update all default background image paths from "%s" to "%s"',
422 $affected_rows = $this->database->manipulateF(
423 'UPDATE ' . self::TABLE_NAME .
' SET background_image_ident = %s ' .
424 'WHERE currently_active = 1 AND (background_image_ident = %s OR background_image_ident = %s )',
433 '/certificates/default/background.jpg' 439 'END - Updated %s certificate templates using old path',
449 'START - Checking if any certificate template uses resource id "%s"',
450 $relative_image_identification
454 $result = $this->database->queryF(
455 'SELECT EXISTS(SELECT 1 FROM ' . self::TABLE_NAME .
' WHERE 456 (background_image_ident = %s OR tile_image_ident = %s) 457 AND currently_active = 1) AS does_exist',
459 [$relative_image_identification, $relative_image_identification]
462 $exists = (bool) ($this->database->fetchAssoc($result)[
'does_exist'] ??
false);
466 'END - Image path "%s" is ' . $exists ?
'in use' :
'unused',
467 $relative_image_identification
480 (
int) $row[
'obj_id'],
482 $row[
'certificate_content'],
483 $row[
'certificate_hash'],
484 $row[
'template_values'],
485 (
int) $row[
'version'],
486 $row[
'ilias_version'],
487 (
int) $row[
'created_timestamp'],
488 (
bool) $row[
'currently_active'],
489 (
string) ($row[
'background_image_path'] ??
''),
490 (
string) ($row[
'tile_image_path'] ??
''),
491 (
string) ($row[
'background_image_ident'] ??
''),
492 (
string) ($row[
'tile_image_ident'] ??
''),
493 isset($row[
'id']) ? (
int) $row[
'id'] :
null
fetchCertificateTemplatesByObjId(int $objId)
fetchTemplate(int $templateId)
getTileImageIdentification()
fetchActiveCertificateTemplatesForCoursesWithDisabledLearningProgress(bool $isGlobalLpEnabled, ?int $forRefId=null)
updateActivity(ilCertificateTemplate $certificateTemplate, bool $currentlyActive)
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
readonly ilLogger $logger
getBackgroundImageIdentification()
createCertificateTemplate(array $row)
readonly ilObjectDataCache $objectDataCache
fetchPreviousCertificate(int $objId)
const LP_MODE_DEACTIVATED
deactivatePreviousTemplates(int $objId)
isResourceUsed(string $relative_image_identification)
$id
plugin.php for ilComponentBuildPluginInfoObjectiveTest::testAddPlugins
fetchCurrentlyActiveCertificate(int $objId)
fetchFirstCreatedTemplate(int $objId)
updateDefaultBackgroundImagePaths(string $old_relative_path, string $new_relative_path)
deleteTemplate(int $templateId, int $objectId)
save(ilCertificateTemplate $certificateTemplate)
__construct(private readonly ilDBInterface $database, ?ilLogger $logger=null, ?ilObjectDataCache $objectDataCache=null)
activatePreviousCertificate(int $objId)
fetchCurrentlyUsedCertificate(int $objId)