1
0
mirror of https://github.com/flarum/core.git synced 2025-08-18 06:11:23 +02:00

Refactor password checker, add extender (#2176)

This commit is contained in:
Alexander Skvortsov
2021-02-22 17:08:36 -05:00
committed by GitHub
parent fa10d794a4
commit 509adf228a
5 changed files with 206 additions and 5 deletions

71
src/Extend/Auth.php Normal file
View File

@@ -0,0 +1,71 @@
<?php
/*
* This file is part of Flarum.
*
* For detailed copyright and license information, please view the
* LICENSE file that was distributed with this source code.
*/
namespace Flarum\Extend;
use Flarum\Extension\Extension;
use Flarum\Foundation\ContainerUtil;
use Illuminate\Contracts\Container\Container;
class Auth implements ExtenderInterface
{
private $addPasswordCheckers = [];
private $removePasswordCheckers = [];
/**
* Add a new password checker.
*
* @param string $identifier: Unique identifier for password checker.
* @param callable|string $callback: A closure or invokable class that contains the logic of the password checker.
* It should return:
* - `true` if the given password is valid.
* - `null` (or not return anything) if the given password is invalid, or this checker does not apply.
* Generally, `null` should be returned instead of `false` so that other
* password checkers can run.
* - `false` if the given password is invalid, and no other checkers should be considered.
* Evaluation will be immediately halted if any checkers return `false`.
* @return self
*/
public function addPasswordChecker(string $identifier, $callback)
{
$this->addPasswordCheckers[$identifier] = $callback;
return $this;
}
/**
* Remove a password checker.
*
* @param string $identifier: The unique identifier of the password checker to remove.
* @return self
*/
public function removePasswordChecker(string $identifier)
{
$this->removePasswordCheckers[] = $identifier;
return $this;
}
public function extend(Container $container, Extension $extension = null)
{
$container->extend('flarum.user.password_checkers', function ($passwordCheckers) use ($container) {
foreach ($this->removePasswordCheckers as $identifier) {
if (array_key_exists($identifier, $passwordCheckers)) {
unset($passwordCheckers[$identifier]);
}
}
foreach ($this->addPasswordCheckers as $identifier => $checker) {
$passwordCheckers[$identifier] = ContainerUtil::wrapCallback($checker, $container);
}
return $passwordCheckers;
});
}
}