ILIAS  release_5-4 Revision v5.4.26-12-gabc799a52e6
ilBiblFieldFactory Class Reference

Class ilBiblFieldFactory. More...

+ Inheritance diagram for ilBiblFieldFactory:
+ Collaboration diagram for ilBiblFieldFactory:

Public Member Functions

 __construct (\ilBiblTypeInterface $type)
 ilBiblFieldFactory constructor. More...
 
 getType ()
 
Returns
More...
 
 getFieldByTypeAndIdentifier (int $type, string $identifier)
 
Parameters
int$typeMUST be ilBiblTypeFactoryInterface::DATA_TYPE_RIS or ilBiblTypeFactoryInterface::DATA_TYPE_BIBTEX
string$identifier
Exceptions
More...
 
 findOrCreateFieldByTypeAndIdentifier (int $type, string $identifier)
 
Parameters
int$typeMUST be ilBiblTypeFactoryInterface::DATA_TYPE_RIS or ilBiblTypeFactoryInterface::DATA_TYPE_BIBTEX
string$identifier
Exceptions
More...
 
 getAvailableFieldsForObjId (int $obj_id)
 
 filterAllFieldsForType (ilBiblTypeInterface $type, ilBiblTableQueryInfoInterface $queryInfo=null)
 
 filterAllFieldsForTypeAsArray (ilBiblTypeInterface $type, ilBiblTableQueryInfoInterface $queryInfo=null)
 
 findOrCreateFieldOfAttribute (ilBiblAttributeInterface $attribute)
 
 forcePosition (ilBiblFieldInterface $field)
 
- Public Member Functions inherited from ilBiblFieldFactoryInterface
 findById (int $id)
 

Protected Attributes

 $type
 

Private Member Functions

 getNextFreePosition (ilBiblFieldInterface $field)
 
 getARInstance ($type, $identifier)
 
 checkType ($type)
 
 getCollectionForFilter (ilBiblTypeInterface $type, ilBiblTableQueryInfoInterface $queryInfo=null)
 

Detailed Description

Constructor & Destructor Documentation

◆ __construct()

ilBiblFieldFactory::__construct ( \ilBiblTypeInterface  $type)

ilBiblFieldFactory constructor.

Parameters
\ilBiblTypeInterface$type

Definition at line 22 of file class.ilBiblFieldFactory.php.

References $type.

23  {
24  $this->type = $type;
25  }

Member Function Documentation

◆ checkType()

ilBiblFieldFactory::checkType (   $type)
private
Parameters
$type
Exceptions

Definition at line 220 of file class.ilBiblFieldFactory.php.

References $type, ilBiblTypeFactoryInterface\DATA_TYPE_BIBTEX, and ilBiblTypeFactoryInterface\DATA_TYPE_RIS.

Referenced by findOrCreateFieldByTypeAndIdentifier(), and getFieldByTypeAndIdentifier().

221  {
222  switch ($type) {
225  break;
226  default:
227  throw new ilException("bibliografic type not found");
228  }
229  }
+ Here is the caller graph for this function:

◆ filterAllFieldsForType()

ilBiblFieldFactory::filterAllFieldsForType ( ilBiblTypeInterface  $type,
ilBiblTableQueryInfoInterface  $queryInfo = null 
)

Implements ilBiblFieldFactoryInterface.

Definition at line 119 of file class.ilBiblFieldFactory.php.

References getCollectionForFilter().

119  : array
120  {
121  return $this->getCollectionForFilter($type, $queryInfo)->get();
122  }
getCollectionForFilter(ilBiblTypeInterface $type, ilBiblTableQueryInfoInterface $queryInfo=null)
+ Here is the call graph for this function:

◆ filterAllFieldsForTypeAsArray()

ilBiblFieldFactory::filterAllFieldsForTypeAsArray ( ilBiblTypeInterface  $type,
ilBiblTableQueryInfoInterface  $queryInfo = null 
)

Implements ilBiblFieldFactoryInterface.

Definition at line 128 of file class.ilBiblFieldFactory.php.

References getCollectionForFilter().

128  : array
129  {
130  return $this->getCollectionForFilter($type, $queryInfo)->getArray();
131  }
getCollectionForFilter(ilBiblTypeInterface $type, ilBiblTableQueryInfoInterface $queryInfo=null)
+ Here is the call graph for this function:

◆ findOrCreateFieldByTypeAndIdentifier()

ilBiblFieldFactory::findOrCreateFieldByTypeAndIdentifier ( int  $type,
string  $identifier 
)

Parameters
int$typeMUST be ilBiblTypeFactoryInterface::DATA_TYPE_RIS or ilBiblTypeFactoryInterface::DATA_TYPE_BIBTEX
string$identifier
Exceptions

Implements ilBiblFieldFactoryInterface.

Definition at line 73 of file class.ilBiblFieldFactory.php.

References checkType(), getARInstance(), and getType().

Referenced by getAvailableFieldsForObjId().

74  {
75  $this->checkType($type);
76  $inst = $this->getARInstance($type, $identifier);
77  if (!$inst) {
78  $inst = new ilBiblField();
79  $inst->setIdentifier($identifier);
80  $inst->setDataType($type);
81  $inst->setIsStandardField((bool) $this->getType()->isStandardField($identifier));
82  $inst->create();
83  }
84  $inst->setDataType($type);
85  $inst->setIdentifier($identifier);
86  $inst->setIsStandardField((bool) $this->getType()->isStandardField($identifier));
87  $inst->update();
88 
89  return $inst;
90  }
Class ilField.
Interface ilBiblEntryInterface.
getARInstance($type, $identifier)
+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ findOrCreateFieldOfAttribute()

ilBiblFieldFactory::findOrCreateFieldOfAttribute ( ilBiblAttributeInterface  $attribute)

Implements ilBiblFieldFactoryInterface.

Definition at line 137 of file class.ilBiblFieldFactory.php.

References ilBiblAttributeInterface\getName(), and ActiveRecord\where().

138  {
139  $field = ilBiblField::where(['identifier' => $attribute->getName()])->first();
140  if ($field === null) {
141  $field = new ilBiblField();
142  $field->setIdentifier($attribute->getName());
143  $field->setDataType($this->type->getId());
144  $field->setIsStandardField($this->type->isStandardField($attribute->getName()));
145  $field->create();
146  } else {
147  $field->setDataType($this->type->getId());
148  $field->update();
149  }
150 
151  return $field;
152  }
Class ilField.
Interface ilBiblEntryInterface.
static where($where, $operator=null)
+ Here is the call graph for this function:

◆ forcePosition()

ilBiblFieldFactory::forcePosition ( ilBiblFieldInterface  $field)

Implements ilBiblFieldFactoryInterface.

Definition at line 158 of file class.ilBiblFieldFactory.php.

References $DIC, ilBiblFieldInterface\getDataType(), ilBiblFieldInterface\getPosition(), ilBiblFieldInterface\store(), and ilBiblField\TABLE_NAME.

158  : int
159  {
160  global $DIC;
161  $tablename = ilBiblField::TABLE_NAME;
162  $q = "UPDATE {$tablename} SET position = position + 1 WHERE data_type = %s AND position >= %s;";
163  $DIC->database()->manipulateF(
164  $q,
165  ['integer', 'integer'],
166  [
167  $field->getDataType(), $field->getPosition(),
168  ]
169  );
170  $field->store();
171  $DIC->database()->query("SET @i=0");
172  $DIC->database()->manipulateF(
173  "UPDATE {$tablename} SET position = (@i := @i + 1) WHERE data_type = %s ORDER BY position",
174  ['integer'],
175  [
176  $field->getDataType(),
177  ]
178  );
179 
180  return (int) $field->getPosition();
181  }
store()
Stores the Object, creates a newone in Db if non existing or updates an existing. ...
global $DIC
Definition: saml.php:7
+ Here is the call graph for this function:

◆ getARInstance()

ilBiblFieldFactory::getARInstance (   $type,
  $identifier 
)
private
Parameters
int$type
string$identifier
Returns

Definition at line 209 of file class.ilBiblFieldFactory.php.

References $type, and ActiveRecord\where().

Referenced by findOrCreateFieldByTypeAndIdentifier(), and getFieldByTypeAndIdentifier().

210  {
211  return ilBiblField::where(["identifier" => $identifier, "data_type" => $type])->first();
212  }
static where($where, $operator=null)
+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ getAvailableFieldsForObjId()

ilBiblFieldFactory::getAvailableFieldsForObjId ( int  $obj_id)

Implements ilBiblFieldFactoryInterface.

Definition at line 96 of file class.ilBiblFieldFactory.php.

References $d, $data, $DIC, $result, and findOrCreateFieldByTypeAndIdentifier().

96  : array
97  {
98  global $DIC;
99  $sql
100  = "SELECT DISTINCT(il_bibl_attribute.name), il_bibl_data.file_type FROM il_bibl_data
101  JOIN il_bibl_entry ON il_bibl_entry.data_id = il_bibl_data.id
102  JOIN il_bibl_attribute ON il_bibl_attribute.entry_id = il_bibl_entry.id
103  WHERE il_bibl_data.id = %s;";
104 
105  $result = $DIC->database()->queryF($sql, ['integer'], [$obj_id]);
106 
107  $data = [];
108  while ($d = $DIC->database()->fetchObject($result)) {
109  $data[] = $this->findOrCreateFieldByTypeAndIdentifier($d->file_type, $d->name);
110  }
111 
112  return $data;
113  }
$result
global $DIC
Definition: saml.php:7
findOrCreateFieldByTypeAndIdentifier(int $type, string $identifier)
MUST be ilBiblTypeFactoryInterface::DATA_TYPE_RIS or ilBiblTypeFactoryInterface::DATA_TYPE_BIBTEX ...
for($i=6; $i< 13; $i++) for($i=1; $i< 13; $i++) $d
Definition: date.php:296
$data
Definition: bench.php:6
+ Here is the call graph for this function:

◆ getCollectionForFilter()

ilBiblFieldFactory::getCollectionForFilter ( ilBiblTypeInterface  $type,
ilBiblTableQueryInfoInterface  $queryInfo = null 
)
private
Parameters
\ilBiblTypeInterface$type
\ilBiblTableQueryInfoInterface$queryInfo
Returns

Definition at line 238 of file class.ilBiblFieldFactory.php.

References ActiveRecord\getCollection(), and ilBiblTypeInterface\getId().

Referenced by filterAllFieldsForType(), and filterAllFieldsForTypeAsArray().

239  {
240  $collection = ilBiblField::getCollection();
241 
242  $collection->where(array('data_type' => $type->getId()));
243 
244  if ($queryInfo) {
245  $sorting_column = $queryInfo->getSortingColumn() ? $queryInfo->getSortingColumn() : null;
246  $offset = $queryInfo->getOffset() ? $queryInfo->getOffset() : 0;
247  $sorting_direction = $queryInfo->getSortingDirection();
248  $limit = $queryInfo->getLimit();
249  if ($sorting_column) {
250  $collection->orderBy($sorting_column, $sorting_direction);
251  }
252  $collection->limit($offset, $limit);
253 
254  foreach ($queryInfo->getFilters() as $queryFilter) {
255  switch ($queryFilter->getFieldName()) {
256  default:
257  $collection->where(array($queryFilter->getFieldName() => $queryFilter->getFieldValue()), $queryFilter->getOperator());
258  break;
259  }
260  }
261  }
262 
263  return $collection;
264  }
+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ getFieldByTypeAndIdentifier()

ilBiblFieldFactory::getFieldByTypeAndIdentifier ( int  $type,
string  $identifier 
)

Parameters
int$typeMUST be ilBiblTypeFactoryInterface::DATA_TYPE_RIS or ilBiblTypeFactoryInterface::DATA_TYPE_BIBTEX
string$identifier
Exceptions

Implements ilBiblFieldFactoryInterface.

Definition at line 58 of file class.ilBiblFieldFactory.php.

References checkType(), and getARInstance().

59  {
60  $this->checkType($type);
61  $inst = $this->getARInstance($type, $identifier);
62  if (!$inst) {
63  throw new ilException("bibliografic identifier {$identifier} not found");
64  }
65 
66  return $inst;
67  }
Interface ilBiblEntryInterface.
getARInstance($type, $identifier)
+ Here is the call graph for this function:

◆ getNextFreePosition()

ilBiblFieldFactory::getNextFreePosition ( ilBiblFieldInterface  $field)
private
Parameters
ilBiblFieldInterface$field
Returns
int

Definition at line 191 of file class.ilBiblFieldFactory.php.

References $data, $DIC, $res, ilBiblFieldInterface\getDataType(), and ilBiblField\TABLE_NAME.

191  : int
192  {
193  global $DIC;
194  $tablename = ilBiblField::TABLE_NAME;
195  $q = "SELECT MAX(position) + 1 as next_position FROM {$tablename} WHERE data_type = %s;";
196  $res = $DIC->database()->queryF($q, ['integer'], [$field->getDataType()]);
197  $data = $DIC->database()->fetchObject($res);
198 
199  return (int) $data->next_position;
200  }
global $DIC
Definition: saml.php:7
foreach($_POST as $key=> $value) $res
$data
Definition: bench.php:6
+ Here is the call graph for this function:

◆ getType()

ilBiblFieldFactory::getType ( )

Returns

Implements ilBiblFieldFactoryInterface.

Definition at line 31 of file class.ilBiblFieldFactory.php.

References $id, $type, ilBiblFieldFactoryInterface\findById(), and ActiveRecord\findOrFail().

Referenced by findOrCreateFieldByTypeAndIdentifier().

32  {
33  return $this->type;
34  }
Interface ilBiblTypeInterface.
+ Here is the call graph for this function:
+ Here is the caller graph for this function:

Field Documentation

◆ $type

ilBiblFieldFactory::$type
protected

Definition at line 14 of file class.ilBiblFieldFactory.php.

Referenced by __construct(), checkType(), getARInstance(), and getType().


The documentation for this class was generated from the following file: