mirror of
https://github.com/nextcloud/server.git
synced 2024-12-29 16:38:28 +00:00
b4ec7ca559
Signed-off-by: Ferdinand Thiessen <opensource@fthiessen.de>
76 lines
1.2 KiB
PHP
76 lines
1.2 KiB
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
/**
|
|
* SPDX-FileCopyrightText: 2019 Nextcloud GmbH and Nextcloud contributors
|
|
* SPDX-License-Identifier: AGPL-3.0-or-later
|
|
*/
|
|
namespace OCP\User\Events;
|
|
|
|
use OCP\EventDispatcher\Event;
|
|
use OCP\IUser;
|
|
|
|
/**
|
|
* @since 18.0.0
|
|
*/
|
|
class UserLoggedInEvent extends Event {
|
|
/** @var IUser */
|
|
private $user;
|
|
|
|
/** @var string|null */
|
|
private $password;
|
|
|
|
/** @var bool */
|
|
private $isTokenLogin;
|
|
|
|
/** @var string */
|
|
private $loginName;
|
|
|
|
/**
|
|
* @since 18.0.0
|
|
*/
|
|
public function __construct(IUser $user, string $loginName, ?string $password, bool $isTokenLogin) {
|
|
parent::__construct();
|
|
$this->user = $user;
|
|
$this->password = $password;
|
|
$this->isTokenLogin = $isTokenLogin;
|
|
$this->loginName = $loginName;
|
|
}
|
|
|
|
/**
|
|
* @since 18.0.0
|
|
*/
|
|
public function getUser(): IUser {
|
|
return $this->user;
|
|
}
|
|
|
|
/**
|
|
* @since 31.0.0
|
|
*/
|
|
public function getUid(): string {
|
|
return $this->user->getUID();
|
|
}
|
|
|
|
/**
|
|
* @since 21.0.0
|
|
*/
|
|
public function getLoginName(): string {
|
|
return $this->loginName;
|
|
}
|
|
|
|
/**
|
|
* @since 18.0.0
|
|
*/
|
|
public function getPassword(): ?string {
|
|
return $this->password;
|
|
}
|
|
|
|
/**
|
|
* @since 18.0.0
|
|
*/
|
|
public function isTokenLogin(): bool {
|
|
return $this->isTokenLogin;
|
|
}
|
|
}
|