diff options
Diffstat (limited to 'lib/public/User/Events/UserLoggedInEvent.php')
-rw-r--r-- | lib/public/User/Events/UserLoggedInEvent.php | 75 |
1 files changed, 75 insertions, 0 deletions
diff --git a/lib/public/User/Events/UserLoggedInEvent.php b/lib/public/User/Events/UserLoggedInEvent.php new file mode 100644 index 00000000000..53f61073a59 --- /dev/null +++ b/lib/public/User/Events/UserLoggedInEvent.php @@ -0,0 +1,75 @@ +<?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; + } +} |