* * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Flarum\User\Command; use Flarum\Foundation\DispatchEventsTrait; use Flarum\User\AssertPermissionTrait; use Flarum\User\AvatarUploader; use Flarum\User\Event\AvatarDeleting; use Flarum\User\UserRepository; use Illuminate\Contracts\Events\Dispatcher; class DeleteAvatarHandler { use DispatchEventsTrait; use AssertPermissionTrait; /** * @var UserRepository */ protected $users; /** * @var AvatarUploader */ protected $uploader; /** * @param Dispatcher $events * @param UserRepository $users * @param AvatarUploader $uploader */ public function __construct(Dispatcher $events, UserRepository $users, AvatarUploader $uploader) { $this->events = $events; $this->users = $users; $this->uploader = $uploader; } /** * @param DeleteAvatar $command * @return \Flarum\User\User * @throws \Flarum\User\Exception\PermissionDeniedException */ public function handle(DeleteAvatar $command) { $actor = $command->actor; $user = $this->users->findOrFail($command->userId); if ($actor->id !== $user->id) { $this->assertCan($actor, 'edit', $user); } $this->uploader->remove($user); $this->events->fire( new AvatarDeleting($user, $actor) ); $user->save(); $this->dispatchEventsFor($user, $actor); return $user; } }