3 declare(strict_types=1);
34 $this->
logger = $DIC->logger()->auth();
41 public function create(
string $a_username): string
43 $this->writer->xmlStartTag(
'Users');
45 $this->writer->xmlStartTag(
'User', array(
'Action' =>
'Insert'));
47 $this->writer->xmlElement(
'Login', array(), $new_name);
50 $this->writer->xmlElement(
53 'Id' => $this->
settings->getDefaultRole(),
55 'Action' =>
'Assign'),
59 $this->writer->xmlElement(
'Active', array(),
"true");
60 $this->writer->xmlElement(
'TimeLimitOwner', array(), 7);
61 $this->writer->xmlElement(
'TimeLimitUnlimited', array(), 1);
62 $this->writer->xmlElement(
'TimeLimitFrom', array(), time());
63 $this->writer->xmlElement(
'TimeLimitUntil', array(), time());
64 $this->writer->xmlElement(
'AuthMode', array(
'type' =>
'cas'),
'cas');
65 $this->writer->xmlElement(
'ExternalAccount', array(), $a_username);
67 $this->writer->xmlEndTag(
'User');
68 $this->writer->xmlEndTag(
'Users');
70 $this->
logger->info(
'CAS: Startet creation of user: ' . $new_name);
73 $importParser->setXMLContent($this->writer->xmlDumpMem(
false));
74 $importParser->setRoleAssignment(
80 $importParser->setFolderId(7);
81 $importParser->startParsing();
static _generateLogin(string $a_login)
generate free login by starting with a default string and adding postfix numbers
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
CAS user creation helper.
create(string $a_username)
__construct(\ilCASSettings $settings)