mirror of
https://github.com/flarum/framework.git
synced 2024-11-25 02:37:42 +08:00
Only validate and check for suspend permission if suspendUntil attribute is present. fixes flarum/core#826
This commit is contained in:
parent
f0f668938a
commit
a87b51f511
|
@ -10,8 +10,7 @@
|
|||
|
||||
namespace Flarum\Suspend\Listener;
|
||||
|
||||
use Illuminate\Support\Arr;
|
||||
use Carbon\Carbon;
|
||||
use DateTime;
|
||||
use Flarum\Core\Access\AssertPermissionTrait;
|
||||
use Flarum\Event\UserWillBeSaved;
|
||||
use Flarum\Suspend\SuspendValidator;
|
||||
|
@ -51,18 +50,15 @@ class SaveSuspensionToDatabase
|
|||
{
|
||||
$attributes = array_get($event->data, 'attributes', []);
|
||||
|
||||
$suspendUntil = Arr::get($attributes, 'suspendUntil');
|
||||
if ($suspendUntil) {
|
||||
$suspendUntil = new Carbon($suspendUntil);
|
||||
if (array_key_exists('suspendUntil', $attributes)) {
|
||||
$this->validator->assertValid($attributes);
|
||||
|
||||
$user = $event->user;
|
||||
$actor = $event->actor;
|
||||
|
||||
$this->assertCan($actor, 'suspend', $user);
|
||||
|
||||
$user->suspend_until = new DateTime($attributes['suspendUntil']);
|
||||
}
|
||||
|
||||
$this->validator->assertValid($attributes);
|
||||
|
||||
$user = $event->user;
|
||||
$actor = $event->actor;
|
||||
|
||||
$this->assertCan($actor, 'suspend', $user);
|
||||
|
||||
$user->suspend_until = $suspendUntil;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue
Block a user