19 declare(strict_types=1);
39 $this->data_dir = $DIC->
iliasIni()->readVariable(
'clients',
'datadir');
50 return 'test_exp_option_arc';
60 $this->
lng->loadLanguageModule(
'assessment');
61 return $this->
lng->txt(
'ass_create_export_test_archive');
65 ilExportHandlerConsumerContextInterface
$context,
66 ilExportHandlerConsumerFileIdentifierCollectionInterface $file_identifiers
68 $object_id =
new ObjectId($context->exportObject()->getId());
69 foreach ($file_identifiers as $file_identifier) {
70 $file = explode(
":", $file_identifier->getIdentifier());
71 $file[1] = basename($file[1]);
72 $export_dir = $this->
getDirectory($object_id, $context->exportObject()->getType());
73 $exp_file = $export_dir .
"/" . str_replace(
"..",
"", $file[1]);
74 $exp_dir = $export_dir .
"/" . substr($file[1], 0, strlen($file[1]) - 4);
75 if (is_file($exp_file)) {
80 count(scandir($exp_dir)) === 2
88 ilExportHandlerConsumerContextInterface
$context,
89 ilExportHandlerConsumerFileIdentifierCollectionInterface $file_identifiers
91 $object_id =
new ObjectId($context->exportObject()->getId());
92 foreach ($file_identifiers as $file_identifier) {
93 $file = explode(
":", trim($file_identifier->getIdentifier()));
94 $export_dir = $this->
getDirectory($object_id, $context->exportObject()->getType());
95 $file[1] = basename($file[1]);
97 $export_dir .
"/" . $file[1],
105 ilExportHandlerConsumerFileIdentifierInterface $file_identifier
109 $file = explode(
":", trim($file_identifier->getIdentifier()));
111 $file[1] = basename($file[1]);
113 $export_dir .
"/" . $file[1],
119 ilExportHandlerConsumerContextInterface
$context 120 ): ilExportHandlerFileInfoCollectionInterface {
121 $collection_builder = $context->fileCollectionBuilder();
122 $object_id =
new ObjectId($context->exportObject()->getId());
123 $dir = $this->
getDirectory($object_id, $context->exportObject()->getType());
125 foreach ($file_infos as $file_name => $file_info) {
126 $collection_builder = $collection_builder->withSPLFileInfo(
127 new SplFileInfo($dir . DIRECTORY_SEPARATOR . $file_info[
"file"]),
132 return $collection_builder->collection();
136 ilExportHandlerConsumerContextInterface
$context 138 $context->exportGUIObject()->createTestArchiveExport();
146 foreach (scandir($directory) as $file) {
148 in_array($file, [
'.',
'..']) ||
149 !str_ends_with($file,
".zip")
153 $files[$file] = [
"file" => $file];
163 string $export_object_type
165 return $this->data_dir
166 . DIRECTORY_SEPARATOR .
CLIENT_ID . DIRECTORY_SEPARATOR .
'tst_data' . DIRECTORY_SEPARATOR
getDirectory(ObjectId $object_id, string $export_object_type)
getSupportedRepositoryObjectTypes()
getExportFiles(string $directory)
onDeleteFiles(ilExportHandlerConsumerContextInterface $context, ilExportHandlerConsumerFileIdentifierCollectionInterface $file_identifiers)
onExportOptionSelected(ilExportHandlerConsumerContextInterface $context)
Customizing of pimple-DIC for ILIAS.
static deliverFileLegacy(string $a_file, ?string $a_filename=null, ?string $a_mime=null, ?bool $isInline=false, ?bool $removeAfterDelivery=false, ?bool $a_exit_after=true)
static delDir(string $a_dir, bool $a_clean_only=false)
removes a dir and all its content (subdirs and files) recursively
language()
Get interface to the i18n service.
onDownloadFiles(ilExportHandlerConsumerContextInterface $context, ilExportHandlerConsumerFileIdentifierCollectionInterface $file_identifiers)
getFiles(ilExportHandlerConsumerContextInterface $context)
static _lookupType(int $id, bool $reference=false)
onDownloadWithLink(ReferenceId $reference_id, ilExportHandlerConsumerFileIdentifierInterface $file_identifier)