ILIAS  trunk Revision v11.0_alpha-1702-gfd3ecb7f852
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ilCASAttributeToUser.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
27 {
28  private ilLogger $logger;
31 
32  public function __construct(\ilCASSettings $settings)
33  {
34  global $DIC;
35 
36  $this->logger = $DIC->logger()->auth();
37 
38  $this->writer = new ilXmlWriter();
39 
40  $this->settings = $settings;
41  }
42 
43  public function create(string $a_username): string
44  {
45  $this->writer->xmlStartTag('Users');
46 
47  $this->writer->xmlStartTag('User', array('Action' => 'Insert'));
48  $new_name = ilAuthUtils::_generateLogin($a_username);
49  $this->writer->xmlElement('Login', array(), $new_name);
50 
51  // Assign to role only for new users
52  $this->writer->xmlElement(
53  'Role',
54  array(
55  'Id' => $this->settings->getDefaultRole(),
56  'Type' => 'Global',
57  'Action' => 'Assign'),
58  ''
59  );
60 
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);
68 
69  $this->writer->xmlEndTag('User');
70  $this->writer->xmlEndTag('Users');
71 
72  $this->logger->info('CAS: Startet creation of user: ' . $new_name);
73 
74  $importParser = new ilUserImportParser();
75  $importParser->setXMLContent($this->writer->xmlDumpMem(false));
76  $importParser->setRoleAssignment(
77  array(
78  $this->settings->getDefaultRole() => $this->settings->getDefaultRole()
79  )
80  );
81  //TODO check if there is a constant
82  $importParser->setFolderId(7);
83  $importParser->startParsing();
84 
85  return $new_name;
86  }
87 }
static _generateLogin(string $a_login)
generate free login by starting with a default string and adding postfix numbers
CAS user creation helper.
global $DIC
Definition: shib_login.php:22
__construct(\ilCASSettings $settings)