24 require_once(
"./Services/Xml/classes/class.ilSaxParser.php");
25 require_once(
'./Services/User/classes/class.ilObjUser.php');
26 include_once(
'./Services/Calendar/classes/class.ilDateTime.php');
27 include_once(
'./Modules/Group/classes/class.ilGroupParticipants.php');
102 define(
'EXPORT_VERSION', 2);
109 $this->group_obj = $group;
110 $this->log =
$GLOBALS[
'DIC']->logger()->grp();
117 $this->group_obj->getId(),
118 $this->group_obj->getId(),
119 $this->group_obj->getType()
129 $this->parent[] = $a_id;
133 array_pop($this->parent);
139 return $this->parent[count($this->parent) - 1];
151 $this->sax_controller->setHandlers($a_xml_parser);
152 $this->sax_controller->setDefaultElementHandler($this);
155 $this->group_obj->getId()
158 $this->sax_controller->setElementHandler(
159 $this->advanced_md_value_parser,
170 parent::startParsing();
173 return is_object($this->group_obj) ? $this->group_obj->getRefId() :
false;
175 return is_object($this->group_obj) ? $this->group_obj->update() :
false;
189 if ($this->lom_parsing_active) {
190 parent::handlerBeginTag($a_xml_parser, $a_name, $a_attribs);
196 $this->lom_parsing_active =
true;
197 parent::handlerBeginTag($a_xml_parser, $a_name, $a_attribs);
203 $this->group_data[
"admin"] = array();
204 $this->group_data[
"member"] = array();
206 $this->group_data[
"type"] = $a_attribs[
"type"];
207 $this->group_data[
"id"] = $a_attribs[
"id"];
215 $this->group_data[
"owner"] = $a_attribs[
"id"];
219 $this->group_data[
'registration_type'] = $a_attribs[
'type'];
220 $this->group_data[
'waiting_list_enabled'] = $a_attribs[
'waitingList'] ==
'Yes' ? true :
false;
224 $this->in_period =
true;
225 $this->group_data[
'period_with_time'] = $a_attribs[
'withTime'];
229 $this->group_data[
'max_members_enabled'] = $a_attribs[
'enabled'] ==
'Yes' ? true :
false;
233 if (!isset($a_attribs[
'action']) || $a_attribs[
'action'] ==
"Attach") {
234 $this->group_data[
"admin"][
"attach"][] = $a_attribs[
"id"];
235 } elseif (isset($a_attribs[
'action']) || $a_attribs[
'action'] ==
"Detach") {
236 $this->group_data[
"admin"][
"detach"][] = $a_attribs[
"id"];
239 if (isset($a_attribs[
'notification']) and $a_attribs[
'notification'] ==
'Yes') {
240 $this->group_data[
'notifications'][] = $a_attribs[
'id'];
246 if (!isset($a_attribs[
'action']) || $a_attribs[
'action'] ==
"Attach") {
247 $GLOBALS[
'DIC']->logger()->grp()->debug(
'New member with id ' . $a_attribs[
'id']);
248 $this->group_data[
"member"][
"attach"][] = $a_attribs[
"id"];
249 } elseif (isset($a_attribs[
'action']) || $a_attribs[
'action'] ==
"Detach") {
250 $GLOBALS[
'DIC']->logger()->grp()->debug(
'Deprecated member with id ' . $a_attribs[
'id']);
251 $this->group_data[
"member"][
"detach"][] = $a_attribs[
"id"];
256 case 'ContainerSetting':
257 $this->current_container_setting = $a_attribs[
'id'];
262 if ($this->group_imported) {
265 $this->sort = $a_attribs;
270 case 'WaitingListAutoFill':
271 case 'CancellationEnd':
273 case 'mailMembersType':
281 if ($this->lom_parsing_active) {
282 parent::handlerEndTag($a_xml_parser, $a_name);
287 $this->lom_parsing_active =
false;
288 parent::handlerEndTag($a_xml_parser, $a_name);
293 $this->group_data[
"title"] = trim($this->cdata);
297 $this->group_data[
"description"] = trim($this->cdata);
301 $this->group_data[
'information'] = trim($this->cdata);
305 $this->group_data[
'password'] = trim($this->cdata);
309 $this->group_data[
'max_members'] = trim($this->cdata);
313 $this->group_data[
'expiration_end'] = trim($this->cdata);
317 if ($this->in_period) {
318 $this->group_data[
'period_start'] = trim($this->cdata);
320 $this->group_data[
'expiration_start'] = trim($this->cdata);
325 if ($this->in_period) {
326 $this->group_data[
'period_end'] = trim($this->cdata);
328 $this->group_data[
'expiration_end'] = trim($this->cdata);
333 $this->in_period =
false;
341 case 'ContainerSetting':
342 if ($this->current_container_setting) {
344 $this->group_obj->getId(),
351 case 'WaitingListAutoFill':
352 $this->group_data[
'auto_wait'] = trim($this->cdata);
355 case 'CancellationEnd':
356 if ((
int) $this->cdata) {
362 if ((
int) $this->cdata) {
363 $this->group_data[
'min_members'] = (int) $this->cdata;
368 if ((
int) $this->cdata) {
369 $this->group_data[
'show_members'] = (int) $this->cdata;
373 case 'admissionNotification':
374 if ((
int) $this->cdata) {
375 $this->group_data[
'auto_notification'] = (bool) $this->cdata;
379 case 'mailMembersType':
380 $this->group_data[
'mail_members_type'] = (int) $this->cdata;
393 if ($this->lom_parsing_active) {
394 parent::handlerCharacterData($a_xml_parser, $a_data);
397 $a_data = str_replace(
"<",
"<", $a_data);
398 $a_data = str_replace(
">",
">", $a_data);
400 if (!empty($a_data)) {
401 $this->cdata .= $a_data;
408 if ($this->group_imported) {
412 $this->group_obj->setImportId($this->group_data[
"id"]);
413 $this->group_obj->setTitle($this->group_data[
"title"]);
414 $this->group_obj->setDescription($this->group_data[
"description"]);
415 $this->group_obj->setInformation((
string) $this->group_data[
'information']);
418 $this->group_data[
'period_start'] &&
419 $this->group_data[
'period_end']) {
421 if ($this->group_data[
'period_with_time']) {
422 $this->group_obj->setPeriod(
427 $this->group_obj->setPeriod(
433 $this->log->warning(
'Ignoring invalid group period settings: ');
434 $this->log->warning(
'Period start: ' . $this->group_data[
'period_start']);
435 $this->log->warning(
'Period end: ' . $this->group_data[
'period_end']);
439 $ownerChanged =
false;
440 if (isset($this->group_data[
"owner"])) {
441 $owner = $this->group_data[
"owner"];
442 if (!is_numeric($owner)) {
445 if (is_numeric($owner) && $owner > 0) {
446 $this->group_obj->setOwner($owner);
447 $ownerChanged =
true;
455 $this->group_obj->createReference();
459 array_key_exists(
'type', $this->group_data) &&
460 $this->group_data[
'type'] ==
'closed' 466 array_key_exists(
'type', $this->group_data) &&
467 $this->group_data[
'type'] ==
'closed' 471 array_key_exists(
'type', $this->group_data) &&
472 $this->group_data[
'type'] ==
'open' 478 switch ($this->group_data[
'registration_type']) {
499 $this->group_obj->setRegistrationType($flag);
502 $registration_end = null;
503 if ($this->group_data[
'expiration_end']) {
507 $registration_start = null;
508 if ($this->group_data[
'expiration_start']) {
515 $this->group_obj->enableUnlimitedRegistration(
false);
516 $this->group_obj->setRegistrationStart($registration_start);
517 $this->group_obj->setRegistrationEnd($registration_end);
520 $this->group_obj->enableUnlimitedRegistration(
true);
522 $this->group_obj->setPassword($this->group_data[
'password']);
523 $this->group_obj->enableMembershipLimitation($this->group_data[
'max_members_enabled']);
524 $this->group_obj->setMaxMembers($this->group_data[
'max_members'] ? $this->group_data[
'max_members'] : 0);
525 $this->group_obj->enableWaitingList($this->group_data[
'waiting_list_enabled']);
527 $this->group_obj->setWaitingListAutoFill($this->group_data[
'auto_wait']);
528 $this->group_obj->setCancellationEnd($this->group_data[
'cancel_end']);
529 $this->group_obj->setMinMembers($this->group_data[
'min_members']);
530 $this->group_obj->setShowMembers($this->group_data[
'show_members'] ? $this->group_data[
'show_members'] : 0);
531 $this->group_obj->setAutoNotification($this->group_data[
'auto_notification'] ?
true :
false);
532 $this->group_obj->setMailToMembersType((
int) $this->group_data[
'mail_members_type']);
533 $this->group_obj->update();
544 $this->group_imported =
true;
559 $this->participants->updateNotification(
$ilUser->getId(),
$ilSetting->get(
'mail_grp_admin_notification',
true));
562 if (isset($this->group_data[
"admin"][
"attach"]) && count($this->group_data[
"admin"][
"attach"])) {
563 foreach ($this->group_data[
"admin"][
"attach"] as $user) {
564 if ($id_data = $this->
__parseId($user)) {
565 if ($id_data[
'local'] or $id_data[
'imported']) {
566 $this->participants->add($id_data[
'usr_id'],
IL_GRP_ADMIN);
567 if (in_array($user, (array) $this->group_data[
'notifications'])) {
568 $this->participants->updateNotification($id_data[
'usr_id'],
true);
575 if (isset($this->group_data[
"admin"][
"detach"]) && count($this->group_data[
"admin"][
"detach"])) {
576 foreach ($this->group_data[
"admin"][
"detach"] as $user) {
577 if ($id_data = $this->
__parseId($user)) {
578 if ($id_data[
'local'] or $id_data[
'imported']) {
579 if ($this->participants->isAssigned($id_data[
'usr_id'])) {
580 $this->participants->delete($id_data[
'usr_id']);
587 if (isset($this->group_data[
"member"][
"attach"]) && count($this->group_data[
"member"][
"attach"])) {
588 foreach ($this->group_data[
"member"][
"attach"] as $user) {
589 if ($id_data = $this->
__parseId($user)) {
590 if ($id_data[
'local'] or $id_data[
'imported']) {
597 if (isset($this->group_data[
"member"][
"detach"]) && count($this->group_data[
"member"][
"detach"])) {
598 foreach ($this->group_data[
"member"][
"detach"] as $user) {
599 if ($id_data = $this->
__parseId($user)) {
600 if ($id_data[
'local'] or $id_data[
'imported']) {
601 if ($this->participants->isAssigned($id_data[
'usr_id'])) {
602 $this->participants->delete($id_data[
'usr_id']);
617 $fields = explode(
'_', $a_id);
619 if (!is_array($fields) or
620 $fields[0] !=
'il' or
621 !is_numeric($fields[1]) or
622 $fields[2] !=
'usr' or
623 !is_numeric($fields[3])) {
627 return array(
'imported' =>
true,
632 if (strlen($user[
'login'])) {
633 return array(
'imported' =>
false,
635 'usr_id' => $fields[3]);
638 $GLOBALS[
'DIC']->logger()->grp()->warning(
'Parsing id failed: ' . $a_id);
650 include_once
'./Services/Container/classes/class.ilContainerSortingSettings.php';
static _lookupName($a_user_id)
lookup user name
const GRP_REGISTRATION_DEACTIVATED
static _importContainerSortingSettings($attibs, $obj_id)
sorting import for all container objects
const GRP_REGISTRATION_PASSWORD
const GRP_REGISTRATION_REQUEST
add($a_usr_id, $a_role)
Add user to role.
static _getImportedUserId($i2_id)
startParsing()
start the parser
handlerEndTag($a_xml_parser, $a_name)
End element handler.
$advanced_md_value_parser
handlerBeginTag($a_xml_parser, $a_name, $a_attribs)
handler for begin of element
if(!defined('PATH_SEPARATOR')) $GLOBALS['_PEAR_default_error_mode']
__initContainerSorting($a_attribs, $a_group_id)
handlerCharacterData($a_xml_parser, $a_data)
handler for character data
__construct(ilObjGroup $group, $a_xml, $a_parent_id)
Constructor.
Interface definition for sax subset parsers.
Controller class for sax element handlers.
__construct(Container $dic, ilPlugin $plugin)
static _writeContainerSetting($a_id, $a_keyword, $a_value)
setHandlers($a_xml_parser)
set event handlers
const GRP_REGISTRATION_DIRECT
setXMLContent($a_xml_content)
static __extractId($ilias_id, $inst_id)
extract ref id from role title, e.g.
$current_container_setting