-
-
Notifications
You must be signed in to change notification settings - Fork 4.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #18348 from nextcloud/enhancement/typed-user-event…
…s-II Add typed events for all user hooks and legacy events
- Loading branch information
Showing
16 changed files
with
903 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,82 @@ | ||
<?php declare(strict_types=1); | ||
|
||
/** | ||
* @copyright 2019 Christoph Wurst <christoph@winzerhof-wurst.at> | ||
* | ||
* @author 2019 Christoph Wurst <christoph@winzerhof-wurst.at> | ||
* | ||
* @license GNU AGPL version 3 or any later version | ||
* | ||
* This program is free software: you can redistribute it and/or modify | ||
* it under the terms of the GNU Affero General Public License as | ||
* published by the Free Software Foundation, either version 3 of the | ||
* License, or (at your option) any later version. | ||
* | ||
* This program is distributed in the hope that it will be useful, | ||
* but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
* GNU Affero General Public License for more details. | ||
* | ||
* You should have received a copy of the GNU Affero General Public License | ||
* along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
*/ | ||
|
||
namespace OCP\User\Events; | ||
|
||
use OCP\EventDispatcher\Event; | ||
use OCP\IUser; | ||
|
||
/** | ||
* @since 18.0.0 | ||
*/ | ||
class BeforePasswordUpdatedEvent extends Event { | ||
|
||
/** @var IUser */ | ||
private $user; | ||
|
||
/** @var string */ | ||
private $password; | ||
|
||
/** @var string|null */ | ||
private $recoveryPassword; | ||
|
||
/** | ||
* @param IUser $user | ||
* @param string $password | ||
* @param string|null $recoveryPassword | ||
* @since 18.0.0 | ||
*/ | ||
public function __construct(IUser $user, | ||
string $password, | ||
string $recoveryPassword = null) { | ||
parent::__construct(); | ||
$this->user = $user; | ||
$this->password = $password; | ||
$this->recoveryPassword = $recoveryPassword; | ||
} | ||
|
||
/** | ||
* @return IUser | ||
* @since 18.0.0 | ||
*/ | ||
public function getUser(): IUser { | ||
return $this->user; | ||
} | ||
|
||
/** | ||
* @return string | ||
* @since 18.0.0 | ||
*/ | ||
public function getPassword(): string { | ||
return $this->password; | ||
} | ||
|
||
/** | ||
* @return string|null | ||
* @since 18.0.0 | ||
*/ | ||
public function getRecoveryPassword(): ?string { | ||
return $this->recoveryPassword; | ||
} | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,66 @@ | ||
<?php | ||
|
||
declare(strict_types=1); | ||
|
||
/** | ||
* @copyright 2019 Christoph Wurst <christoph@winzerhof-wurst.at> | ||
* | ||
* @author Christoph Wurst <christoph@winzerhof-wurst.at> | ||
* | ||
* @license GNU AGPL version 3 or any later version | ||
* | ||
* This program is free software: you can redistribute it and/or modify | ||
* it under the terms of the GNU Affero General Public License as | ||
* published by the Free Software Foundation, either version 3 of the | ||
* License, or (at your option) any later version. | ||
* | ||
* This program is distributed in the hope that it will be useful, | ||
* but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
* GNU Affero General Public License for more details. | ||
* | ||
* You should have received a copy of the GNU Affero General Public License | ||
* along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
* | ||
*/ | ||
|
||
namespace OCP\User\Events; | ||
|
||
use OCP\EventDispatcher\Event; | ||
|
||
/** | ||
* @since 18.0.0 | ||
*/ | ||
class BeforeUserCreatedEvent extends Event { | ||
|
||
/** @var string */ | ||
private $uid; | ||
|
||
/** @var string */ | ||
private $password; | ||
|
||
/** | ||
* @since 18.0.0 | ||
*/ | ||
public function __construct(string $uid, | ||
string $password) { | ||
parent::__construct(); | ||
$this->uid = $uid; | ||
$this->password = $password; | ||
} | ||
|
||
/** | ||
* @since 18.0.0 | ||
*/ | ||
public function getUid(): string { | ||
return $this->uid; | ||
} | ||
|
||
/** | ||
* @since 18.0.0 | ||
*/ | ||
public function getPassword(): string { | ||
return $this->password; | ||
} | ||
|
||
} |
Oops, something went wrong.