19 declare(strict_types=1);
51 string $certificatePath,
68 if (null === $fileSystem) {
70 $fileSystem = $DIC->filesystem()->web();
74 if (null === $utilHelper) {
79 if (null === $certificateFileUtilsHelper) {
82 $this->fileUtilsHelper = $certificateFileUtilsHelper;
84 if (null === $legacyPathHelper) {
89 $this->clientId = $clientID;
91 if (null === $tmp_file_system) {
93 $tmp_file_system = $DIC->filesystem()->temp();
115 if (!$this->fileSystem->hasDir($imagepath)) {
119 $backgroundImageTempFilePath = $this->uploadFile($imageTempFilename, $pending_file);
121 $backgroundImagePath = $this->certificatePath .
'background_' . $version .
'.jpg';
123 $this->utilHelper->convertImage(
124 $backgroundImageTempFilePath,
125 $this->rootDirectory . $backgroundImagePath,
131 $this->utilHelper->convertImage(
132 $backgroundImageTempFilePath,
133 $backgroundImageThumbnailPath,
138 $convert_filename = self::BACKGROUND_IMAGE_NAME;
142 $backgroundImageTempFilePath,
144 $this->rootDirectory . $backgroundImagePath
146 throw new ilException(
'Unable to convert the file and the original file');
149 if ($this->fileSystem->has($backgroundImageTempFilePath)) {
150 $this->fileSystem->delete($backgroundImageTempFilePath);
153 if ($this->fileSystem->has($backgroundImagePath)) {
154 return $this->certificatePath .
'background_' . $version .
'.jpg';
157 throw new ilException(
'The given temporary filename is empty');
169 private function uploadFile(
string $temporaryFilename, ?array $pending_file = null):
string 171 if (!$this->fileUpload->hasBeenProcessed()) {
172 $this->fileUpload->process();
175 if (
false === $this->fileUpload->hasUploads()) {
182 $uploadResults = $this->fileUpload->getResults();
183 if (isset($uploadResults[$temporaryFilename])) {
184 $uploadResult = $uploadResults[$temporaryFilename];
185 $processingStatus = $uploadResult->getStatus();
187 throw new ilException($processingStatus->getMessage());
190 $extension = pathinfo($uploadResult->getName(), PATHINFO_EXTENSION);
192 $target_file_name = basename($temp_file_path);
193 $target_file_name = $this->fileUtilsHelper->getValidFilename($target_file_name);
196 $target_directory = $this->
getTargetDir($temp_file_path);
198 $this->fileUpload->moveOneFileTo(
206 return $temp_file_path;
207 } elseif (is_array($pending_file) && $pending_file !== []) {
208 $extension = pathinfo($pending_file[
'name'], PATHINFO_EXTENSION);
211 $target_file_name = basename($temp_file_path);
212 $target_file_name = $this->fileUtilsHelper->getValidFilename($target_file_name);
214 $target_directory = $this->
getTargetDir($temp_file_path);
216 $stream = $this->tmp_file_system->readStream(basename($pending_file[
'tmp_name']));
217 $this->fileSystem->writeStream($target_directory .
'/' . $target_file_name, $stream);
219 return $temp_file_path;
228 case strpos($target, $this->rootDirectory .
'/' . $this->clientId) === 0:
229 case strpos($target,
'./' . $this->rootDirectory .
'/' . $this->clientId) === 0:
230 case strpos($target, $this->rootDirectory) === 0:
231 $targetFilesystem = Location::WEB;
234 $targetFilesystem = Location::TEMPORARY;
237 $targetFilesystem = Location::STORAGE;
239 case strpos($target, ILIAS_ABSOLUTE_PATH .
'/Customizing') === 0:
240 $targetFilesystem = Location::CUSTOMIZING;
243 throw new InvalidArgumentException(
"Can not move files to \"$target\" because path can not be mapped to web, storage or customizing location.");
246 return $targetFilesystem;
251 $absTargetDir = dirname($target);
252 return $this->legacyPathHelper->createRelativePath($absTargetDir);
262 $this->rootDirectory,
263 $this->certificatePath,
264 self::BACKGROUND_TEMPORARY_FILENAME,
275 return $this->rootDirectory . $this->certificatePath . self::BACKGROUND_THUMBNAIL_IMAGE_NAME;
const REJECTED
Upload got rejected by a processor.
Filesystem $tmp_file_system
createBackgroundImageTempfilePath(string $extension)
Returns the filesystem path of the background image temp file during upload.
getTargetFilesystem(string $target)
const BACKGROUND_TEMPORARY_FILENAME
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
static makeDirParents(string $a_dir)
Create a new directory and all parent directories.
ilCertificateUtilHelper $utilHelper
__construct(FileUpload $fileUpload, string $certificatePath, ilLanguage $language, ilLogger $logger, ?Filesystem $fileSystem=null, ?ilCertificateUtilHelper $utilHelper=null, ?ilCertificateFileUtilsHelper $certificateFileUtilsHelper=null, ?LegacyPathHelperHelper $legacyPathHelper=null, string $rootDirectory=CLIENT_WEB_DIR, string $clientID=CLIENT_ID, ?Filesystem $tmp_file_system=null)
const BACKGROUND_IMAGE_NAME
getTargetDir(string $target)
static moveUploadedFile(string $a_file, string $a_name, string $a_target, bool $a_raise_errors=true, string $a_mode="move_uploaded")
move uploaded file
LegacyPathHelperHelper $legacyPathHelper
uploadBackgroundImage(string $imageTempFilename, int $version, ?array $pending_file=null)
Uploads a background image for the certificate.
Just a wrapper class to create Unit Test for other classes.
const BACKGROUND_THUMBNAIL_IMAGE_NAME
createBackgroundImageThumbPath()
Returns the filesystem path of the background image thumbnail.
Class FlySystemFileAccessTest disabled disabled disabled.
ilCertificateFileUtilsHelper $fileUtilsHelper