84 $filesystem = $DIC[
"filesystem"];
98 if (!function_exists(
'mb_detect_encoding') || !function_exists(
'mb_detect_order')
99 || !function_exists(
"mb_convert_encoding")
104 $mb_detect_encoding = mb_detect_encoding($string);
105 mb_detect_order(array(self::ENCODING_UTF_8, self::ENCODING_ISO_8859_1));
106 switch ($mb_detect_encoding) {
107 case self::ENCODING_UTF_8:
109 case self::ENCODING_ASCII:
110 $string = utf8_encode(iconv(self::ENCODING_ASCII,
'UTF-8//IGNORE', $string));
113 $string = mb_convert_encoding($string, self::ENCODING_UTF_8, $mb_detect_encoding);
158 $entry_instances = [];
160 foreach ($entries_from_file as $file_entry) {
163 $parsed_entry = array();
164 foreach ($file_entry as $key => $attribute) {
165 $key = $this->secure($key);
166 if (is_string($attribute)) {
167 $attribute = $this->secure($attribute);
170 if (is_array($attribute)) {
171 $attribute = array_map(
function (
string $a) :
string {
172 return $this->secure($a);
174 $attribute = implode(
", ", $attribute);
178 if (
ilStr::strLen($attribute) > self::ATTRIBUTE_VALUE_MAXIMAL_TEXT_LENGTH) {
180 $attribute =
ilStr::subStr($attribute, 0, self::ATTRIBUTE_VALUE_MAXIMAL_TEXT_LENGTH - 3) .
'...';
183 if (strtolower($key) ==
'ty' || strtolower($key) ==
'entrytype') {
189 $parsed_entry[$x][
'name'] = $key;
190 $parsed_entry[$x][
'value'] = $attribute;
199 $entry_model->setType(
$type);
200 $entry_model->setDataId($bib->
getId());
201 $entry_model->store();
202 foreach ($parsed_entry as $entry) {
203 $this->
getAttributeFactory()->createAttribute($entry[
'name'], $entry[
'value'], $entry_model->getId());
206 $entry_instances[] = $entry_model;
209 return $entry_instances;
Interface ilBiblFileReaderInterface.
const ENCODING_ISO_8859_1
__construct(ilBiblEntryFactoryInterface $entry_factory, ilBiblFieldFactoryInterface $field_factory, ilBiblAttributeFactoryInterface $attribute_factory)
ilBiblFileReaderBase constructor.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
static subStr($a_str, $a_start, $a_length=null)
getEntryFactory()
ilBiblEntryFactoryInterface
Interface ilBiblEntryFactoryInterface.
getId()
get object id public
setFileContent($file_content)
const ATTRIBUTE_VALUE_MAXIMAL_TEXT_LENGTH
readContent($path_to_file)
Interface ilBiblFieldFactoryInterface.
convertStringToUTF8($string)
Interface ilBiblAttributeFactoryInterface.
setPathToFile($path_to_file)
$a
thx to https://mlocati.github.io/php-cs-fixer-configurator for the examples
getFieldFactory()
ilBiblFieldFactoryInterface
Class ilObjBibliographic.