55 $this->storage = $DIC[
"resource_storage"];
61 $stream = $this->storage->consume()->stream($identification)->getStream();
92 $this->entry_factory->deleteEntriesById($bib->
getId());
95 $entry_instances = [];
98 foreach ($entries_from_file as $file_entry) {
102 foreach ($file_entry as $key => $attribute) {
103 $key = $this->secure($key);
104 if (is_string($attribute)) {
105 $attribute = $this->secure($attribute);
108 if (is_array($attribute)) {
109 $attribute =
array_map(fn(
string $a):
string => $this->secure($a), $attribute);
110 $attribute = implode(
", ", $attribute);
114 if (
ilStr::strLen($attribute) > self::ATTRIBUTE_VALUE_MAXIMAL_TEXT_LENGTH) {
116 $attribute =
ilStr::subStr($attribute, 0, self::ATTRIBUTE_VALUE_MAXIMAL_TEXT_LENGTH - 3) .
'...';
119 if (strtolower($key) ===
'ty' || strtolower($key) ===
'entrytype') {
125 $parsed_entry[$x][
'name'] = $key;
126 $parsed_entry[$x][
'value'] = $attribute;
130 if ($type ===
null) {
135 $entry_model = $entry_factory->getEmptyInstance();
136 $entry_model->setType($type);
137 $entry_model->setDataId($bib->
getId());
138 $entry_model->store();
139 foreach ($parsed_entry as $entry) {
140 $this->
getAttributeFactory()->createAttribute($entry[
'name'], $entry[
'value'], $entry_model->getId());
142 $entry_instances[] = $entry_model;
145 return $entry_instances;
153 return $this->entry_factory;
161 return $this->field_factory;
169 return $this->attribute_factory;
Interface ilBiblFileReaderInterface.
const ENCODING_ISO_8859_1
__construct(protected \ilBiblEntryFactoryInterface $entry_factory, protected \ilBiblFieldFactoryInterface $field_factory, protected \ilBiblAttributeFactoryInterface $attribute_factory)
ilBiblFileReaderBase constructor.
static subStr(string $a_str, int $a_start, ?int $a_length=null)
Class ilBiblFileReaderBase.
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
static strLen(string $a_string)
Interface ilBiblEntryFactoryInterface.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
const ATTRIBUTE_VALUE_MAXIMAL_TEXT_LENGTH
Class ResourceIdentification.
setFileContent(string $file_content)
parseContentToEntries(ilObjBibliographic $bib)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
readContent(ResourceIdentification $identification)
$a
thx to https://mlocati.github.io/php-cs-fixer-configurator for the examples
convertStringToUTF8(string $string)
Class ilObjBibliographic.