ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ilGroupXMLWriter.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
30 {
31  public const MODE_SOAP = 1;
32  public const MODE_EXPORT = 2;
33  public const EXPORT_VERSION = 3;
34 
35  private int $mode = self::MODE_SOAP;
36 
37  private ilLogger $logger;
40 
43  private bool $attach_users = true;
44 
45  public function __construct(ilObjGroup $group_obj)
46  {
47  global $DIC;
48 
49  $this->logger = $DIC->logger()->grp();
50  $this->settings = $DIC->settings();
51  $this->access = $DIC->access();
53  $this->group_obj = $group_obj;
54  $this->participants = ilGroupParticipants::_getInstanceByObjId($this->group_obj->getId());
55  }
56 
57  public function setMode(int $a_mode): void
58  {
59  $this->mode = $a_mode;
60  }
61 
62  public function getMode(): int
63  {
64  return $this->mode;
65  }
66 
67  public function start(): void
68  {
69  if ($this->getMode() == self::MODE_SOAP) {
70  $this->logger->debug('Using soap mode');
71  $this->__buildHeader();
72  $this->__buildGroup();
73  $this->__buildMetaData();
74  $this->__buildAdvancedMetaData();
75  $this->__buildTitleDescription();
76  $this->__buildRegistration();
77  $this->__buildExtraSettings();
78  if ($this->attach_users) {
79  $this->__buildAdmin();
80  $this->__buildMember();
81  }
82  ilContainerSortingSettings::_exportContainerSortingSettings($this, $this->group_obj->getId());
83  ilContainer::_exportContainerSettings($this, $this->group_obj->getId());
84  $this->__buildFooter();
85  } elseif ($this->getMode() == self::MODE_EXPORT) {
86  $this->logger->debug('Using export mode');
87  $this->__buildGroup();
88  $this->__buildTitleDescription();
89  $this->__buildRegistration();
90  $this->__buildExtraSettings();
91  $this->__buildPeriod();
92  ilContainerSortingSettings::_exportContainerSortingSettings($this, $this->group_obj->getId());
93  ilContainer::_exportContainerSettings($this, $this->group_obj->getId());
94  $this->__buildFooter();
95  }
96  }
97 
98  public function getXML(): string
99  {
100  return $this->xmlDumpMem(false);
101  }
102 
103  // PRIVATE
104  public function __buildHeader(): bool
105  {
106  $this->xmlSetDtdDef("<!DOCTYPE group PUBLIC \"-//ILIAS//DTD Group//EN\" \"" . ILIAS_HTTP_PATH . "/components/ILIAS/Export/xml/ilias_grp_9_0.xsd\">");
107  $this->xmlSetGenCmt("Export of ILIAS group " . $this->group_obj->getId() . " of installation " . $this->settings->get('inst_id') . ".");
108  $this->xmlHeader();
109  return true;
110  }
111 
112  public function __buildGroup(): void
113  {
114  $attrs["exportVersion"] = self::EXPORT_VERSION;
115  $attrs["id"] = "il_" . $this->settings->get('inst_id') . '_grp_' . $this->group_obj->getId();
116 
117  switch ($this->group_obj->readGroupStatus()) {
119  $attrs['type'] = 'open';
120  break;
121 
123  default:
124  $attrs['type'] = 'closed';
125  break;
126  }
127  $this->xmlStartTag("group", $attrs);
128  }
129 
130  protected function __buildMetaData(): bool
131  {
132  $md2xml = new ilMD2XML($this->group_obj->getId(), $this->group_obj->getId(), 'grp');
133  $md2xml->startExport();
134  $this->appendXML($md2xml->getXML());
135  return true;
136  }
137 
138  private function __buildAdvancedMetaData(): void
139  {
140  ilAdvancedMDValues::_appendXMLByObjId($this, $this->group_obj->getId());
141  }
142 
143 
144  public function __buildTitleDescription(): void
145  {
146  $this->xmlElement('title', null, $this->group_obj->getTitle());
147 
148  if ($desc = $this->group_obj->getDescription()) {
149  $this->xmlElement('description', null, $desc);
150  }
151 
152  $attr['id'] = 'il_' . $this->settings->get('inst_id') . '_usr_' . $this->group_obj->getOwner();
153  $this->xmlElement('owner', $attr);
154 
155  $this->xmlElement('information', null, $this->group_obj->getInformation());
156  }
157 
161  protected function __buildPeriod(): void
162  {
163  if (!$this->group_obj->getStart() || !$this->group_obj->getEnd()) {
164  return;
165  }
166 
167  $this->xmlStartTag(
168  'period',
169  [
170  'withTime' => $this->group_obj->getStartTimeIndication()
171  ]
172  );
173  $this->xmlElement(
174  'start',
175  null,
176  $this->group_obj->getStart() ?
177  $this->group_obj->getStart()->get(IL_CAL_UNIX) :
178  null
179  );
180  $this->xmlElement(
181  'end',
182  null,
183  $this->group_obj->getEnd()->get(IL_CAL_UNIX) ?
184  $this->group_obj->getEnd()->get(IL_CAL_UNIX) :
185  null
186  );
187 
188  $this->xmlEndTag('period');
189  }
190 
191  public function __buildRegistration(): void
192  {
193  // registration type
194  switch ($this->group_obj->getRegistrationType()) {
196  $attrs['type'] = 'direct';
197  break;
199  $attrs['type'] = 'confirmation';
200  break;
202  $attrs['type'] = 'password';
203  break;
204 
205  default:
207  $attrs['type'] = 'disabled';
208  break;
209  }
210  $attrs['waitingList'] = $this->group_obj->isWaitingListEnabled() ? 'Yes' : 'No';
211 
212  $this->xmlStartTag('registration', $attrs);
213 
214  if (strlen($pwd = $this->group_obj->getPassword())) {
215  $this->xmlElement('password', null, $pwd);
216  }
217 
218 
219  // limited registration period
220  if (!$this->group_obj->isRegistrationUnlimited()) {
221  $this->xmlStartTag('temporarilyAvailable');
222  $this->xmlElement('start', null, $this->group_obj->getRegistrationStart()->get(IL_CAL_UNIX));
223  $this->xmlElement('end', null, $this->group_obj->getRegistrationEnd()->get(IL_CAL_UNIX));
224  $this->xmlEndTag('temporarilyAvailable');
225  }
226 
227  // max members
228  $attrs = array();
229  $attrs['enabled'] = $this->group_obj->isMembershipLimited() ? 'Yes' : 'No';
230  $this->xmlElement('maxMembers', $attrs, $this->group_obj->getMaxMembers());
231  $this->xmlElement('minMembers', null, $this->group_obj->getMinMembers());
232  $this->xmlElement('WaitingListAutoFill', null, (int) $this->group_obj->hasWaitingListAutoFill());
233  $this->xmlElement('CancellationEnd', null, ($this->group_obj->getCancellationEnd() && !$this->group_obj->getCancellationEnd()->isNull()) ? $this->group_obj->getCancellationEnd()->get(IL_CAL_UNIX) : null);
234 
235  $this->xmlElement('mailMembersType', null, (string) $this->group_obj->getMailToMembersType());
236 
237  $this->xmlElement(
238  'RegistrationAccessCode',
239  [
240  'enabled' => (int) $this->group_obj->isRegistrationAccessCodeEnabled(),
241  'code' => $this->group_obj->getRegistrationAccessCode()
242  ]
243  );
244 
245  $this->xmlEndTag('registration');
246  }
247 
251  public function __buildExtraSettings(): void
252  {
253  $this->xmlElement('showMembers', null, $this->group_obj->getShowMembers());
254  $this->xmlElement('admissionNotification', null, $this->group_obj->getAutoNotification() ? 1 : 0);
255 
256  $this->xmlElement('ViewMode', null, ilObjGroup::lookupViewMode($this->group_obj->getId()));
257  $this->xmlElement(
258  'SessionLimit',
259  [
260  'active' => $this->group_obj->isSessionLimitEnabled() ? 1 : 0,
261  'previous' => $this->group_obj->getNumberOfPreviousSessions(),
262  'next' => $this->group_obj->getNumberOfNextSessions()
263  ]
264  );
265 
266  $this->xmlElement('GroupMap', [
267  'enabled' => (int) $this->group_obj->getEnableGroupMap(),
268  'latitude' => $this->group_obj->getLatitude(),
269  'longitude' => $this->group_obj->getLongitude(),
270  'location_zoom' => $this->group_obj->getLocationZoom()
271  ]);
272  }
273 
274  public function __buildAdmin(): void
275  {
276  $admins = $this->group_obj->getGroupAdminIds();
277  $admins = $this->access->filterUserIdsByRbacOrPositionOfCurrentUser(
278  'manage_members',
280  $this->group_obj->getRefId(),
281  $admins
282  );
283 
284  foreach ($admins as $id) {
285  $attr['id'] = 'il_' . $this->settings->get('inst_id') . '_usr_' . $id;
286  $attr['notification'] = $this->participants->isNotificationEnabled($id) ? 'Yes' : 'No';
287 
288  $this->xmlElement('admin', $attr);
289  }
290  }
291 
292  public function __buildMember(): void
293  {
294  $members = $this->group_obj->getGroupMemberIds();
295  $members = $this->access->filterUserIdsByRbacOrPositionOfCurrentUser(
296  'manage_members',
298  $this->group_obj->getRefId(),
299  $members
300  );
301  foreach ($members as $id) {
302  if (!$this->group_obj->isAdmin($id)) {
303  $attr['id'] = 'il_' . $this->settings->get('inst_id') . '_usr_' . $id;
304 
305  $this->xmlElement('member', $attr);
306  }
307  }
308  }
309 
310  public function __buildFooter(): void
311  {
312  $this->xmlEndTag('group');
313  }
314 
315  public function setAttachUsers(bool $value)
316  {
317  $this->attach_users = $value;
318  }
319 }
__construct(ilObjGroup $group_obj)
xmlSetGenCmt(string $genCmt)
Sets generated comment.
ilGroupParticipants $participants
appendXML(string $a_str)
append xml string to document
const IL_CAL_UNIX
xmlEndTag(string $tag)
Writes an endtag.
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
xmlSetDtdDef(string $dtdDef)
Sets dtd definition.
static _exportContainerSortingSettings(ilXmlWriter $xml, int $obj_id)
sorting XML-export for all container objects
global $DIC
Definition: shib_login.php:22
xmlHeader()
Writes xml header.
static _exportContainerSettings(ilXmlWriter $a_xml, int $a_obj_id)
__buildPeriod()
Add group period settings to xml.
static _appendXMLByObjId(ilXmlWriter $a_xml_writer, int $a_obj_id)
Get xml of object values.
__buildExtraSettings()
Build extra settings, like "show member list".
static _getInstanceByObjId(int $a_obj_id)
Get singleton instance.
$id
plugin.php for ilComponentBuildPluginInfoObjectiveTest::testAddPlugins
Definition: plugin.php:23
__construct(Container $dic, ilPlugin $plugin)
XML writer class.
xmlStartTag(string $tag, ?array $attrs=null, bool $empty=false, bool $encode=true, bool $escape=true)
Writes a starttag.
Class ilObjGroup.
xmlElement(string $tag, $attrs=null, $data=null, $encode=true, $escape=true)
Writes a basic element (no children, just textual content)
static lookupViewMode($a_obj_id)
xmlDumpMem(bool $format=true)
Returns xml document from memory.