19 declare(strict_types=1);
36 $this->
logger = $DIC->logger()->auth();
43 public function create(
string $a_username): string
45 $this->writer->xmlStartTag(
'Users');
47 $this->writer->xmlStartTag(
'User', array(
'Action' =>
'Insert'));
49 $this->writer->xmlElement(
'Login', array(), $new_name);
52 $this->writer->xmlElement(
55 'Id' => $this->
settings->getDefaultRole(),
57 'Action' =>
'Assign'),
61 $this->writer->xmlElement(
'Active', array(),
"true");
62 $this->writer->xmlElement(
'TimeLimitOwner', array(), 7);
63 $this->writer->xmlElement(
'TimeLimitUnlimited', array(), 1);
64 $this->writer->xmlElement(
'TimeLimitFrom', array(), time());
65 $this->writer->xmlElement(
'TimeLimitUntil', array(), time());
66 $this->writer->xmlElement(
'AuthMode', array(
'type' =>
'cas'),
'cas');
67 $this->writer->xmlElement(
'ExternalAccount', array(), $a_username);
69 $this->writer->xmlEndTag(
'User');
70 $this->writer->xmlEndTag(
'Users');
72 $this->
logger->info(
'CAS: Startet creation of user: ' . $new_name);
75 $importParser->setXMLContent($this->writer->xmlDumpMem(
false));
76 $importParser->setRoleAssignment(
82 $importParser->setFolderId(7);
83 $importParser->startParsing();
static _generateLogin(string $a_login)
generate free login by starting with a default string and adding postfix numbers
CAS user creation helper.
create(string $a_username)
__construct(\ilCASSettings $settings)