19 declare(strict_types=1);
39 if (
null === $filesystem) {
40 $filesystem = $DIC->filesystem()->storage();
54 $userCertificate = $userCertificateRepository->fetchActiveCertificate($userId, $objectId);
56 $dirPath = self::PERSISTENT_CERTIFICATES_DIRECTORY . $userId .
'/' . $objectId;
63 $pdfScalar = $pdfGenerator->generate($userCertificate->getId());
65 $completePath = $dirPath .
'/' . $objectId .
'_' . self::CERTIFICATE_FILENAME;
70 $this->
filesystem->write($completePath, $pdfScalar);
79 $dirPath = self::PERSISTENT_CERTIFICATES_DIRECTORY . $userId .
'/' . $objectId;
80 $fileName = $objectId .
'_' . self::CERTIFICATE_FILENAME;
82 $completePath = $dirPath .
'/' . $fileName;
86 $userCertificate = $userCertificateRepository->fetchActiveCertificateForPresentation($userId, $objectId);
101 $dirPath = self::PERSISTENT_CERTIFICATES_DIRECTORY . $userId;
114 $dirPath = self::PERSISTENT_CERTIFICATES_DIRECTORY . $userId;
116 $completePath = $dirPath .
'/' . $objectId .
'_' . self::CERTIFICATE_FILENAME;
128 $dirPath = self::PERSISTENT_CERTIFICATES_DIRECTORY . $userId .
'/' . $objectId .
'/';
129 $fileName = $objectId .
'_' . self::CERTIFICATE_FILENAME;
130 $completePath = $dirPath . $fileName;
135 throw new ilException(sprintf(
'Certificate File does not exist in "%s"', $completePath));
deleteCertificateFile(int $userId, int $objectId)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
__construct(?Filesystem $filesystem=null)
deliverCertificate(int $userId, int $objectId)
static getValidFilename(string $a_filename)
const CERTIFICATE_FILENAME
const PERSISTENT_CERTIFICATES_DIRECTORY
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
deleteUserDirectory(int $userId)
createCertificateFile(int $userId, int $objectId)
static deliverFileAttached(string $path_to_file, ?string $download_file_name=null, ?string $mime_type=null, bool $delete_file=false)
createCertificateFilePath(int $userId, int $objectId)
readonly Filesystem $filesystem