18 declare(strict_types=1);
32 protected string $uri =
'';
44 $this->
logger = $DIC->logger()->auth();
46 $this->rbacAdmin = $DIC->rbac()->admin();
53 $this->server_host = (string) $this->
settings->get(
'soap_auth_server',
'');
54 $this->server_port = (string) $this->
settings->get(
'soap_auth_port',
'');
55 $this->server_uri = (string) $this->
settings->get(
'soap_auth_uri',
'');
56 $this->server_nms = (string) $this->
settings->get(
'soap_auth_namespace',
'');
57 $this->server_https = (bool) $this->
settings->get(
'soap_auth_use_https',
'0');
58 $this->use_dot_net = (bool) $this->
settings->get(
'use_dotnet',
'0');
60 $this->uri = $this->server_https ?
'https://' :
'http://';
63 if ($this->server_port > 0) {
66 if ($this->server_uri) {
70 require_once
'./webservice/soap/lib/nusoap.php';
83 $this->
getLogger()->error($e->getMessage());
88 $this->
logger->info(
'Successfully authenticated user via SOAP: ' . $this->
getCredentials()->getUsername());
102 $this->
logger->debug(sprintf(
103 'Login observer called for SOAP authentication request of ext_account "%s" and auth_mode "%s".',
107 $this->
logger->debug(sprintf(
108 'Trying to find ext_account "%s" for auth_mode "%s".',
119 if (
'' === $internalLogin || null === $internalLogin) {
125 if ($this->use_dot_net) {
126 $soapAction = $this->server_nms .
'/isValidSession';
130 $valid = $this->client->call(
135 $nspref .
'new_user' => $isNewUser
142 $valid = [
'valid' =>
false];
145 if (
$valid[
'valid'] !==
true) {
159 if (!$this->
settings->get(
'soap_auth_create_users')) {
169 $usrData[
'firstname'] =
$valid[
'firstname'];
170 $usrData[
'lastname'] =
$valid[
'lastname'];
171 $usrData[
'email'] =
$valid[
'email'];
172 $usrData[
'login'] = $internalLogin;
173 $usrData[
'passwd'] =
'';
177 if ($this->
settings->get(
'soap_auth_allow_local')) {
179 $password = $passwords[0];
180 $usrData[
'passwd'] = $password;
184 $usrData[
'auth_mode'] =
'soap';
186 $usrData[
'profile_incomplete'] = 1;
188 $userObj->assignData($usrData);
189 $userObj->setTitle($userObj->getFullname());
190 $userObj->setDescription($userObj->getEmail());
191 $userObj->setLanguage($this->
language->getDefaultLanguage());
194 $userObj->setTimeLimitUnlimited(
true);
195 $userObj->setTimeLimitFrom(time());
196 $userObj->setTimeLimitUntil(time());
197 $userObj->setOwner(0);
199 $userObj->setActive(
true);
200 $userObj->updateOwner();
201 $userObj->saveAsNew();
202 $userObj->writePrefs();
204 $this->rbacAdmin->assignUser(
205 (
int) $this->
settings->get(
'soap_auth_user_default_role',
'4'),
209 if ($this->
settings->get(
'soap_auth_account_mail',
'0')) {
211 $registrationSettings->setPasswordGenerationStatus(
true);
214 $registrationSettings,
219 ->withDirectRegistrationMode()
220 ->send($userObj, $password,
false);
static _generateLogin(string $a_login)
generate free login by starting with a default string and adding postfix numbers
Interface of auth credentials.
const STATUS_AUTHENTICATION_FAILED
handleSoapAuth(ilAuthStatus $status)
static _lookupId($a_user_str)
__construct(ilAuthCredentials $credentials)
Class ilAuthProviderSoap.
static _checkExternalAuthAccount(string $a_auth, string $a_account, bool $tryFallback=true)
check whether external account and authentication method matches with a user
getAuthenticatedUserId()
Get authenticated user id.
Base class for authentication providers (ldap, apache, ...)
Class ilAccountRegistrationMail.
setStatus(int $a_status)
Set auth status.
ilAuthCredentials $credentials
[nu]soapclient higher level class for easy usage.
doAuthentication(ilAuthStatus $status)
static generatePasswords(int $a_number)
Generate a number of passwords.
const STATUS_AUTHENTICATED
Class ilObjAuthSettingsGUI.
__construct(Container $dic, ilPlugin $plugin)
setTranslatedReason(string $a_reason)
Set translated reason.
setReason(string $a_reason)
Set reason.
setAuthenticatedUserId(int $a_id)
Class ilRbacAdmin Core functions for role based access control.
Auth status implementation.
static set(string $a_var, $a_val)
Set a value.