3 declare(strict_types=1);
30 include_once
'./webservice/soap/classes/class.ilSoapAdministration.php';
36 return ignore_user_abort(
true);
41 $this->soap_check =
false;
54 $logger = $DIC->logger->wsrv();
60 include_once
'Services/Mail/classes/class.ilMail.php';
61 include_once
'webservice/soap/classes/class.ilSoapMailXmlParser.php';
66 libxml_use_internal_errors(
true);
67 $ok = simplexml_load_string($a_mail_xml);
70 foreach (libxml_get_errors() as $err) {
71 $error .= ($err->message .
' ');
77 $logger->warning($e->getMessage());
78 return $this->
raiseError($e->getMessage(),
'CLIENT');
80 $mails = $parser->getMails();
83 foreach ($mails as $mail) {
84 include_once
'./Services/Mail/classes/class.ilFileDataMail.php';
87 foreach ((array) $mail[
'attachments'] as $attachment) {
93 $mail_obj->setSaveInSentbox(
true);
94 $mail_obj->saveAttachments($attachments);
96 implode(
',', (array) $mail[
'to']),
97 implode(
',', (array) $mail[
'cc']),
98 implode(
',', (array) $mail[
'bcc']),
100 implode(
"\n", (array) $mail[
'body']),
102 (
bool) $mail[
'usePlaceholders']
105 foreach ($attachments as $att) {
106 $file->unlinkFile($att);
108 $mail_obj->persistToStage(
133 include_once
"./Services/MediaObjects/classes/class.ilObjMediaObject.php";
149 include_once
"./Services/MediaObjects/classes/class.ilObjMediaObject.php";
158 if (!$is_initialized) {
169 $ilLog = $DIC[
'ilLog'];
172 include_once(
'Services/CopyWizard/classes/class.ilCopyWizardOptions.php');
176 if (!$cp_options->checkOwner(
$ilUser->getId())) {
182 if (($node = $cp_options->fetchFirstDependenciesNode()) === null) {
183 $cp_options->deleteAll();
189 $options = $cp_options->getOptions((
int) $node[
'child']);
191 switch ($options[
'type']) {
193 ilLoggerFactory::getLogger(
'obj')->debug(
': Omitting node: ' . $node[
'obj_id'] .
', ' . $node[
'title'] .
', ' . $node[
'type']);
198 ilLoggerFactory::getLogger(
'obj')->debug(
': Start cloning dependencies for node: ' . $node[
'obj_id'] .
', ' . $node[
'title'] .
', ' . $node[
'type']);
204 ilLoggerFactory::getLogger(
'obj')->debug(
': Start cloning dependencies: ' . $node[
'obj_id'] .
', ' . $node[
'title'] .
', ' . $node[
'type']);
210 ilLoggerFactory::getLogger(
'obj')->warning(
'No valid action type given for node: ' . $node[
'obj_id'] .
', ' . $node[
'title'] .
', ' . $node[
'type']);
220 public function ilClone(
string $sid,
int $copy_identifier)
233 include_once(
'Services/CopyWizard/classes/class.ilCopyWizardOptions.php');
237 if (!$cp_options->checkOwner(
$ilUser->getId())) {
243 if (($node = $cp_options->fetchFirstNode()) === null) {
248 $options = $cp_options->getOptions((
int) $node[
'child']);
255 ilLoggerFactory::getLogger(
'obj')->debug(
': Omitting node: ' . $node[
'obj_id'] .
', ' . $node[
'title'] .
', ' . $node[
'type']);
257 $cp_options->appendMapping($node[
'child'], 0);
263 ilLoggerFactory::getLogger(
'obj')->debug(
'Start cloning node: ' . $node[
'obj_id'] .
', ' . $node[
'title'] .
', ' . $node[
'type']);
264 $new_ref_id = $this->
cloneNode($node, $cp_options);
269 ilLoggerFactory::getLogger(
'obj')->debug(
'Start linking node: ' . $node[
'obj_id'] .
', ' . $node[
'title'] .
', ' . $node[
'type']);
270 $new_ref_id = $this->
linkNode($node, $cp_options);
274 case \ilCopyWizardOptions::COPY_WIZARD_LINK_TO_TARGET:
275 ilLoggerFactory::getLogger(
'obj')->debug(
'Start creating internal link for: ' . $node[
'obj_id'] .
', ' . $node[
'title'] .
', ' . $node[
'type']);
281 ilLoggerFactory::getLogger(
'obj')->warning(
'No valid action type given for: ' . $node[
'obj_id'] .
', ' . $node[
'title'] .
', ' . $node[
'type']);
292 if (array_key_exists(
'type', $options)) {
293 $default_mode = (
int) $options[
'type'];
296 array_key_exists(
'child', $node) &&
299 return $default_mode;
303 return \ilCopyWizardOptions::COPY_WIZARD_LINK_TO_TARGET;
305 return $default_mode;
312 $logger = $DIC->logger()->obj();
313 $tree = $DIC->repositoryTree();
315 $obj_id = (
int) $node[
'obj_id'];
319 $logger->debug(
'Validating node: ' .
$ref_id .
' and root ' . $root);
320 $logger->dump($DIC->repositoryTree()->getRelation(
$ref_id, $root));
323 $logger->debug(
'Ignoring non child relation');
327 $logger->dump($mappings);
328 if (array_key_exists(
$ref_id, $mappings)) {
329 $logger->debug(
'Found existing mapping for linked node.');
333 $logger->info(
'Nothing found');
341 $ilLog = $DIC->logger()->obj();
346 include_once
'Services/WebServices/SOAP/classes/class.ilSoapClient.php';
348 $soap_client->setResponseTimeout(1);
349 $soap_client->enableWSDL(
true);
350 $soap_client->init();
351 $soap_client->call(
'ilClone', array($sid, $cp_options->
getCopyId()));
355 include_once(
'./webservice/soap/include/inc.soap_functions.php');
366 include_once
'Services/WebServices/SOAP/classes/class.ilSoapClient.php';
368 $soap_client->setResponseTimeout(1);
369 $soap_client->enableWSDL(
true);
370 $soap_client->init();
371 $soap_client->call(
'ilCloneDependencies', array($sid, $cp_options->
getCopyId()));
375 include_once(
'./webservice/soap/include/inc.soap_functions.php');
384 $ilLog = $DIC[
'ilLog'];
385 $tree = $DIC[
'tree'];
386 $ilAccess = $DIC[
'ilAccess'];
387 $rbacreview = $DIC[
'rbacreview'];
388 $source_id = (
int) $node[
'child'];
389 $parent_id = (
int) $node[
'parent'];
390 $options = $cp_options->
getOptions((
int) $node[
'child']);
393 if (!$ilAccess->checkAccess(
'copy',
'', (
int) $node[
'child'])) {
394 ilLoggerFactory::getLogger(
'obj')->error(
'No copy permission granted: ' . $source_id .
', ' . $node[
'title'] .
', ' . $node[
'type']);
397 if (!isset($mappings[$parent_id])) {
398 ilLoggerFactory::getLogger(
'obj')->info(
'Omitting node ' . $source_id .
', ' . $node[
'title'] .
', ' . $node[
'type'] .
'. No target found.');
404 ilLoggerFactory::getLogger(
'obj')->notice(
'Omitting node ' . $source_id .
', ' . $node[
'title'] .
', ' . $node[
'type'] .
'. Object has been deleted.');
411 if (!is_object($new_obj)) {
412 ilLoggerFactory::getLogger(
'obj')->error(
'Error copying ' . $source_id .
', ' . $node[
'title'] .
', ' . $node[
'type'] .
'. No target found.');
417 include_once
"Services/AccessControl/classes/class.ilRbacLog.php";
418 $rbac_log_roles = $rbacreview->getParentRoleIds($new_obj->getRefId(),
false);
423 $cp_options->
appendMapping($source_id, $new_obj->getRefId());
424 return $new_obj->getRefId();
431 $ilLog = $DIC[
'ilLog'];
433 $source_id = (
int) $node[
'child'];
436 if (!isset($mappings[$source_id])) {
437 ilLoggerFactory::getLogger(
'obj')->debug(
'Omitting node ' . $source_id .
', ' . $node[
'title'] .
', ' . $node[
'type'] .
'. No mapping found.');
450 $ilAccess = $DIC->access();
451 $logger = $DIC->logger()->obj();
452 $rbacreview = $DIC->rbac()->review();
453 $tree = $DIC->repositoryTree();
460 $logger->error(
'Cannot create object instance.');
464 $logger->error(
'Cannot create object instance for ref_id: ' . $source_id);
465 $logger->error($e->getMessage());
470 $node_parent = $node[
'parent'];
471 if (!array_key_exists($node_parent, $mappings)) {
472 $logger->error(
'Cannot new parent id for node: ' . $node[
'parent']);
475 $parent_id = $mappings[$node_parent];
477 $new_ref_id = $orig->createReference();
478 $orig->putInTree($parent_id);
479 $orig->setPermissions($parent_id);
481 if (!($new_ref_id)) {
482 $logger->warning(
'Creating internal link failed.');
487 $rbac_log_roles = $rbacreview->getParentRoleIds($new_ref_id,
false);
494 $logger->notice(
'Added mapping for ' . $node[
'child'] .
' ' . $new_ref_id);
502 $ilLog = $DIC[
'ilLog'];
503 $ilAccess = $DIC[
'ilAccess'];
504 $rbacreview = $DIC[
'rbacreview'];
506 $source_id = (
int) $node[
'child'];
507 $parent_id = (
int) $node[
'parent'];
508 $options = $cp_options->
getOptions((
int) $node[
'child']);
511 if (!$ilAccess->checkAccess(
'delete',
'', (
int) $node[
'child'])) {
512 ilLoggerFactory::getLogger(
'obj')->warning(
'No delete permission granted: ' . $source_id .
', ' . $node[
'title'] .
', ' . $node[
'type']);
515 if (!isset($mappings[$parent_id])) {
516 ilLoggerFactory::getLogger(
'obj')->warning(
'Omitting node ' . $source_id .
', ' . $node[
'title'] .
', ' . $node[
'type'] .
'. No target found.');
522 $new_ref_id = $orig->createReference();
526 if (!($new_ref_id)) {
527 ilLoggerFactory::getLogger(
'obj')->error(
'Error linking ' . $source_id .
', ' . $node[
'title'] .
', ' . $node[
'type'] .
'. No target found.');
532 include_once
"Services/AccessControl/classes/class.ilRbacLog.php";
533 $rbac_log_roles = $rbacreview->getParentRoleIds($new_ref_id,
false);
555 $ilDB = $DIC->database();
556 $ilLog = $DIC->logger()->user();
558 $ilLog->debug(
'Started deletion of inactive user objects with expired confirmation hash values (dual opt in) ...');
559 require_once
'Services/Registration/classes/class.ilRegistrationSettings.php';
569 $query .=
'SELECT usr_id, create_date, reg_hash FROM usr_data ' 570 .
'WHERE active = 0 ' 571 .
'AND reg_hash IS NOT NULL ' 572 .
'AND usr_id = ' .
$ilDB->quote($usr_id,
'integer') .
' ';
576 $query .=
'SELECT usr_id, create_date, reg_hash FROM usr_data ' 577 .
'WHERE active = 0 ' 578 .
'AND reg_hash IS NOT NULL ' 579 .
'AND usr_id != ' .
$ilDB->quote($usr_id,
'integer') .
' ';
583 $ilLog->debug(
$ilDB->numRows(
$res) .
' inactive user objects with confirmation hash values (dual opt in) found ...');
591 $num_deleted_users = 0;
597 if (($row[
'reg_hash'] ??
'') ===
'') {
601 if (($row[
'create_date'] ??
'') !==
'' &&
602 $oRegSettigs->getRegistrationHashLifetime() > 0 &&
603 time() - $oRegSettigs->getRegistrationHashLifetime() > strtotime($row[
'create_date'])) {
606 $ilLog->info(
'User ' . $user->getLogin() .
' (obj_id: ' . $user->getId() .
') will be deleted due to an expired registration hash ...');
608 ++$num_deleted_users;
613 $ilLog->info($num_deleted_users .
' inactive user objects with expired confirmation hash values (dual opt in) deleted ...');
614 $ilLog->info(
'Finished deletion of inactive user objects with expired confirmation hash values (dual opt in) ...');
static gatherFaPa(int $a_ref_id, array $a_role_ids, bool $a_add_action=false)
static getLogger(string $a_component_id)
Get component logger.
storeAsAttachment(string $a_filename, string $a_content)
static ilClone(string $sid, int $copy_identifier)
This class handles all operations on files (attachments) in directory ilias_data/mail.
const COPY_WIZARD_UNDEFINED
saveTempFileAsMediaObject(string $sid, string $name, string $tmp_name)
deleteExpiredDualOptInUserObjects(string $sid, int $usr_id)
Method for soap webservice: deleteExpiredDualOptInUserObjects This service will run in background...
const SYSTEM_USER_ID
This file contains constants for PHPStan analyis, see: https://phpstan.org/config-reference#constants...
static _getAllReferences(int $id)
get all reference ids for object ID
ilClone(string $sid, int $copy_identifier)
ilCloneDependencies(string $sid, int $copy_identifier, bool $is_initialized=false)
linkNode(array $node, ilCopyWizardOptions $cp_options)
cloneNode(array $node, ilCopyWizardOptions $cp_options)
raiseError(string $a_message, $a_code)
SaxParserException thrown by ilSaxParser if property throwException is set.
rewriteActionForNode(ilCopyWizardOptions $cpo, array $node, array $options)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
cloneDependencies(array $node, ilCopyWizardOptions $cp_options)
internalLinkNode(array $node, ilCopyWizardOptions $cp_options)
getOptions(int $a_source_id)
Get entry by source public.
isSOAPEnabled()
Check if SOAP calls are disabled.
appendMapping($a_source_id, $a_target_id)
Add mapping of source -> target.
static ilCloneDependencies(string $sid, int $copy_identifier)
static add(int $a_action, int $a_ref_id, array $a_diff, bool $a_source_ref_id=false)
callNextNode(string $sid, ilCopyWizardOptions $cp_options)
getMobsOfObject(string $sid, string $a_type, int $a_id)
XML parser for soap mails.
findMappedReferenceForNode(\ilCopyWizardOptions $cpo, array $node)
checkSession(string $sid)
static getInstanceByRefId(int $ref_id, bool $stop_on_error=true)
get an instance of an Ilias object by reference id
distributeMails(string $sid, string $a_mail_xml)
static _sanitizeFilemame(string $a_filename)
dropFirstDependenciesNode()
Drop first node (for cloneDependencies())
static getInstanceByObjId(?int $obj_id, bool $stop_on_error=true)
get an instance of an Ilias object by object id
Class ilObjAuthSettingsGUI.
callNextDependency(string $sid, ilCopyWizardOptions $cp_options)
isRootNode(int $a_root)
Is root node public.
static _getInstance(int $a_copy_id)
dropFirstNode()
Drop first node (for cloneObject())