ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ilObjLinkResource.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
22 
28 {
31 
32  public function __construct(int $a_id = 0, bool $a_call_by_reference = true)
33  {
34  global $DIC;
35 
36  $this->type = "webr";
37  parent::__construct($a_id, $a_call_by_reference);
38 
39  $this->lom_services = $DIC->learningObjectMetadata();
40  }
41 
42  protected function getWebLinkRepo(): ilWebLinkRepository
43  {
44  if (isset($this->repo)) {
45  return $this->repo;
46  }
47  return $this->repo = new ilWebLinkDatabaseRepository($this->getId());
48  }
49 
53  public function create($a_upload = false): int
54  {
55  $new_id = parent::create();
56  if (!$a_upload) {
57  $this->createMetaData();
58  }
59  return $new_id;
60  }
61 
62  public function update(): bool
63  {
64  $this->updateMetaData();
65  return parent::update();
66  }
67 
68  protected function doMDUpdateListener(string $a_element): void
69  {
70  if ($a_element !== 'General') {
71  return;
72  }
73 
74  $paths = $this->lom_services->paths();
75  $reader = $this->lom_services->read(
76  $this->getId(),
77  0,
78  $this->getType(),
79  $paths->custom()->withNextStep('general')->get()
80  );
81 
82  $title = $reader->firstData($paths->title())->value();
83  $description = $reader->firstData($paths->firstDescription())->value();
84 
85  if (
86  !$this->getWebLinkRepo()->doesListExist() &&
87  $this->getWebLinkRepo()->doesOnlyOneItemExist()
88  ) {
89  $item = $this->getWebLinkRepo()->getAllItemsAsContainer()->getFirstItem();
90  $draft = new ilWebLinkDraftItem(
91  $item->isInternal(),
92  $title,
93  $description,
94  $item->getTarget(),
95  $item->isActive(),
96  $item->getParameters()
97  );
98  $this->getWebLinkRepo()->updateItem($item, $draft);
99  }
100  if ($this->getWebLinkRepo()->doesListExist()) {
101  $list = $this->getWebLinkRepo()->getList();
102  $draft = new ilWebLinkDraftList(
103  $title,
104  $description
105  );
106  $this->getWebLinkRepo()->updateList($list, $draft);
107  }
108  }
109 
110  public function delete(): bool
111  {
112  // always call parent delete function first!!
113  if (!parent::delete()) {
114  return false;
115  }
116 
117  // delete items and list
118  $this->getWebLinkRepo()->deleteAllItems();
119  if ($this->getWebLinkRepo()->doesListExist()) {
120  $this->getWebLinkRepo()->deleteList();
121  }
122 
123  // delete meta data
124  $this->deleteMetaData();
125 
126  return true;
127  }
128 
129  public function cloneObject(
130  int $target_id,
131  int $copy_id = 0,
132  bool $omit_tree = false
133  ): ?ilObject {
134  $new_obj = parent::cloneObject($target_id, $copy_id, $omit_tree);
135  $this->cloneMetaData($new_obj);
136 
137  // object created, now copy items and parameters
138  $items = $this->getWebLinkRepo()->getAllItemsAsContainer()->getItems();
140 
141  foreach ($items as $item) {
142  $draft = new ilWebLinkDraftItem(
143  $item->isInternal(),
144  $item->getTitle(),
145  $item->getDescription(),
146  $item->getTarget(),
147  $item->isActive(),
148  $item->getParameters()
149  );
150 
151  $container->addItem($draft);
152  }
153 
154  $new_web_link_repo = new ilWebLinkDatabaseRepository($new_obj->getId());
155  $new_web_link_repo->createAllItemsInDraftContainer($container);
156 
157  // append copy info weblink title
158  if ($new_web_link_repo->doesOnlyOneItemExist(true)) {
159  $item = ilObjLinkResourceAccess::_getFirstLink($new_obj->getId());
160  $draft = new ilWebLinkDraftItem(
161  $item->isInternal(),
162  $new_obj->getTitle(),
163  $new_obj->getDescription(),
164  $item->getTarget(),
165  $item->isActive(),
166  $item->getParameters()
167  );
168  $new_web_link_repo->updateItem($item, $draft);
169  }
170 
171  // make the new object a list if needed
172  if ($this->getWebLinkRepo()->doesListExist()) {
173  $draft_list = new ilWebLinkDraftList(
174  $new_obj->getTitle(),
175  $new_obj->getDescription()
176  );
177  $new_web_link_repo->createList($draft_list);
178  }
179 
180  return $new_obj;
181  }
182 
183  public function toXML(ilXmlWriter $writer, bool $skip_lom = false): void
184  {
185  $attribs = array("obj_id" => "il_" . IL_INST_ID . "_webr_" . $this->getId(
186  )
187  );
188 
189  $writer->xmlStartTag('WebLinks', $attribs);
190 
191  if (!$skip_lom) {
192  // LOM MetaData
193  $md2xml = new ilMD2XML($this->getId(), $this->getId(), 'webr');
194  $md2xml->startExport();
195  $writer->appendXML($md2xml->getXML());
196  }
197 
198  // Sorting
201  $writer->xmlElement(
202  'Sorting',
203  array('type' => 'Manual')
204  );
205  break;
206 
208  default:
209  $writer->xmlElement(
210  'Sorting',
211  array('type' => 'Title')
212  );
213  break;
214  }
215 
216  if ($this->getWebLinkRepo()->doesListExist()) {
217  $writer->xmlStartTag('ListSettings');
218  $writer->xmlElement('ListTitle', [], $this->getTitle());
219  $writer->xmlElement('ListDescription', [], $this->getDescription());
220  $writer->xmlEndTag('ListSettings');
221  }
222 
223  // All items
224  $items = $this->getWebLinkRepo()->getAllItemsAsContainer()
225  ->sort()
226  ->getItems();
227 
228  $position = 0;
229  foreach ($items as $item) {
230  ++$position;
231  $item->toXML($writer, $position);
232  }
233 
234  $writer->xmlEndTag('WebLinks');
235  }
236 }
string $title
createAllItemsInDraftContainer(ilWebLinkDraftItemsContainer $container)
const IL_INST_ID
Definition: constants.php:40
appendXML(string $a_str)
append xml string to document
$container
Definition: wac.php:36
xmlEndTag(string $tag)
Writes an endtag.
cloneObject(int $target_id, int $copy_id=0, bool $omit_tree=false)
cloneMetaData(ilObject $target_obj)
Copy meta data.
global $DIC
Definition: shib_login.php:22
doMDUpdateListener(string $a_element)
Container class for drafted Web Link items.
Draft class for creating or updating a Web Link list.
__construct(Container $dic, ilPlugin $plugin)
toXML(ilXmlWriter $writer, bool $skip_lom=false)
Draft class for creating and updating a Web Link item.
xmlStartTag(string $tag, ?array $attrs=null, bool $empty=false, bool $encode=true, bool $escape=true)
Writes a starttag.
xmlElement(string $tag, $attrs=null, $data=null, $encode=true, $escape=true)
Writes a basic element (no children, just textual content)
ilWebLinkDatabaseRepository $repo
Class ilObjLinkResource.
static _getFirstLink(int $a_webr_id)
Get first link item Check before with _isSingular() if there is more or less than one...
__construct(int $a_id=0, bool $a_call_by_reference=true)