ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ilMDLifecycle.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
28 class ilMDLifecycle extends ilMDBase
29 {
33  private const STATUS_TRANSLATION = [
34  'draft' => 'Draft',
35  'final' => 'Final',
36  'revised' => 'Revised',
37  'unavailable' => 'Unavailable'
38  ];
39 
41  private string $version = "";
42  private string $status = "";
43 
47  public function getPossibleSubelements(): array
48  {
49  $subs['Contribute'] = 'meta_contribute';
50 
51  return $subs;
52  }
53 
57  public function getContributeIds(): array
58  {
59  return ilMDContribute::_getIds($this->getRBACId(), $this->getObjId(), $this->getMetaId(), 'meta_lifecycle');
60  }
61 
62  public function getContribute(int $a_contribute_id): ?ilMDContribute
63  {
64  if (!$a_contribute_id) {
65  return null;
66  }
67  $con = new ilMDContribute();
68  $con->setMetaId($a_contribute_id);
69 
70  return $con;
71  }
72 
73  public function addContribute(): ilMDContribute
74  {
75  $con = new ilMDContribute($this->getRBACId(), $this->getObjId(), $this->getObjType());
76  $con->setParentId($this->getMetaId());
77  $con->setParentType('meta_lifecycle');
78 
79  return $con;
80  }
81 
82  // SET/GET
83  public function setStatus(string $a_status): void
84  {
85  switch ($a_status) {
86  case 'Draft':
87  case 'Final':
88  case 'Revised':
89  case 'Unavailable':
90  $this->status = $a_status;
91  break;
92  }
93  }
94 
95  public function getStatus(): string
96  {
97  return $this->status;
98  }
99 
100  public function setVersion(string $a_version): void
101  {
102  $this->version = $a_version;
103  }
104 
105  public function getVersion(): string
106  {
107  return $this->version;
108  }
109 
110  public function setVersionLanguage(ilMDLanguageItem $lng_obj): void
111  {
112  $this->version_language = $lng_obj;
113  }
114 
116  {
118  }
119 
120  public function getVersionLanguageCode(): string
121  {
122  return is_object($this->version_language) ? $this->version_language->getLanguageCode() : '';
123  }
124 
125  public function save(): int
126  {
127  $fields = $this->__getFields();
128  $fields['meta_lifecycle_id'] = array('integer', $next_id = $this->db->nextId('il_meta_lifecycle'));
129 
130  if ($this->db->insert('il_meta_lifecycle', $fields)) {
131  $this->setMetaId($next_id);
132  return $this->getMetaId();
133  }
134  return 0;
135  }
136 
137  public function update(): bool
138  {
139  return $this->getMetaId() && $this->db->update(
140  'il_meta_lifecycle',
141  $this->__getFields(),
142  array("meta_lifecycle_id" => array('integer', $this->getMetaId()))
143  );
144  }
145 
146  public function delete(): bool
147  {
148  // Delete 'contribute'
149  foreach ($this->getContributeIds() as $id) {
150  $con = $this->getContribute($id);
151  $con->delete();
152  }
153 
154  if ($this->getMetaId()) {
155  $query = "DELETE FROM il_meta_lifecycle " .
156  "WHERE meta_lifecycle_id = " . $this->db->quote($this->getMetaId(), 'integer');
157  $res = $this->db->manipulate($query);
158  return true;
159  }
160  return false;
161  }
162 
166  public function __getFields(): array
167  {
171  $status = (string) array_search(
172  $this->getStatus(),
173  self::STATUS_TRANSLATION
174  );
175 
176  return array(
177  'rbac_id' => array('integer', $this->getRBACId()),
178  'obj_id' => array('integer', $this->getObjId()),
179  'obj_type' => array('text', $this->getObjType()),
180  'lifecycle_status' => array('text', $status),
181  'meta_version' => array('text', $this->getVersion()),
182  'version_language' => array('text', $this->getVersionLanguageCode())
183  );
184  }
185 
186  public function read(): bool
187  {
188  if ($this->getMetaId()) {
189  $query = "SELECT * FROM il_meta_lifecycle " .
190  "WHERE meta_lifecycle_id = " . $this->db->quote($this->getMetaId(), 'integer');
191 
192  $res = $this->db->query($query);
193  while ($row = $res->fetchRow(ilDBConstants::FETCHMODE_OBJECT)) {
197  if (key_exists($row->lifecycle_status ?? '', self::STATUS_TRANSLATION)) {
198  $row->lifecycle_status = self::STATUS_TRANSLATION[$row->lifecycle_status ?? ''];
199  }
200 
201  $this->setRBACId((int) $row->rbac_id);
202  $this->setObjId((int) $row->obj_id);
203  $this->setObjType($row->obj_type ?? '');
204  $this->setStatus($row->lifecycle_status ?? '');
205  $this->setVersion($row->meta_version ?? '');
206  $this->setVersionLanguage(new ilMDLanguageItem($row->version_language ?? ''));
207  }
208  }
209  return true;
210  }
211 
212  public function toXML(ilXmlWriter $writer): void
213  {
214  $writer->xmlStartTag('Lifecycle', array(
215  'Status' => $this->getStatus() ?: 'Draft'
216  ));
217  $writer->xmlElement(
218  'Version',
219  array(
220  'Language' => $this->getVersionLanguageCode() ?: 'en'
221  ),
222  $this->getVersion()
223  );
224 
225  // contribute
226  $contributes = $this->getContributeIds();
227  foreach ($contributes as $id) {
228  $con = $this->getContribute($id);
229  $con->toXML($writer);
230  }
231  if (!count($contributes)) {
232  $con = new ilMDContribute($this->getRBACId(), $this->getObjId());
233  $con->toXML($writer);
234  }
235  $writer->xmlEndTag('Lifecycle');
236  }
237 
238  // STATIC
239  public static function _getId(int $a_rbac_id, int $a_obj_id): int
240  {
241  global $DIC;
242 
243  $ilDB = $DIC->database();
244 
245  $query = "SELECT meta_lifecycle_id FROM il_meta_lifecycle " .
246  "WHERE rbac_id = " . $ilDB->quote($a_rbac_id, 'integer') . " " .
247  "AND obj_id = " . $ilDB->quote($a_obj_id, 'integer');
248 
249  $res = $ilDB->query($query);
250  while ($row = $res->fetchRow(ilDBConstants::FETCHMODE_OBJECT)) {
251  return (int) $row->meta_lifecycle_id;
252  }
253  return 0;
254  }
255 }
$res
Definition: ltiservices.php:66
static _getIds(int $a_rbac_id, int $a_obj_id, int $a_parent_id, string $a_parent_type)
setVersion(string $a_version)
setVersionLanguage(ilMDLanguageItem $lng_obj)
getContribute(int $a_contribute_id)
setRBACId(int $a_id)
const ilMDLanguageItem $version_language
xmlEndTag(string $tag)
Writes an endtag.
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
setObjId(int $a_id)
const STATUS_TRANSLATION
Compatibility fix for legacy MD classes for new db tables.
static _getId(int $a_rbac_id, int $a_obj_id)
global $DIC
Definition: shib_login.php:22
setStatus(string $a_status)
$id
plugin.php for ilComponentBuildPluginInfoObjectiveTest::testAddPlugins
Definition: plugin.php:23
xmlStartTag(string $tag, ?array $attrs=null, bool $empty=false, bool $encode=true, bool $escape=true)
Writes a starttag.
toXML(ilXmlWriter $writer)
xmlElement(string $tag, $attrs=null, $data=null, $encode=true, $escape=true)
Writes a basic element (no children, just textual content)
setMetaId(int $a_meta_id, bool $a_read_data=true)
setObjType(string $a_type)