1
0
mirror of https://github.com/flarum/core.git synced 2025-10-11 23:14:29 +02:00
Files
php-flarum/src/User/UserMetadataUpdater.php
2018-08-24 22:13:06 +09:30

85 lines
2.1 KiB
PHP

<?php
/*
* This file is part of Flarum.
*
* (c) Toby Zerner <toby.zerner@gmail.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Flarum\User;
use Flarum\Discussion\Discussion;
use Flarum\Discussion\Event\Deleted as DiscussionDeleted;
use Flarum\Discussion\Event\Started;
use Flarum\Post\Event\Deleted as PostDeleted;
use Flarum\Post\Event\Posted;
use Flarum\Post\Post;
use Illuminate\Contracts\Events\Dispatcher;
class UserMetadataUpdater
{
/**
* @param Dispatcher $events
*/
public function subscribe(Dispatcher $events)
{
$events->listen(Posted::class, [$this, 'whenPostWasPosted']);
$events->listen(PostDeleted::class, [$this, 'whenPostWasDeleted']);
$events->listen(Started::class, [$this, 'whenDiscussionWasStarted']);
$events->listen(DiscussionDeleted::class, [$this, 'whenDiscussionWasDeleted']);
}
/**
* @param \Flarum\Post\Event\Posted $event
*/
public function whenPostWasPosted(Posted $event)
{
$this->updateCommentsCount($event->post);
}
/**
* @param \Flarum\Post\Event\Deleted $event
*/
public function whenPostWasDeleted(PostDeleted $event)
{
$this->updateCommentsCount($event->post);
}
/**
* @param \Flarum\Discussion\Event\Started $event
*/
public function whenDiscussionWasStarted(Started $event)
{
$this->updateDiscussionsCount($event->discussion);
}
/**
* @param \Flarum\Discussion\Event\Deleted $event
*/
public function whenDiscussionWasDeleted(DiscussionDeleted $event)
{
$this->updateDiscussionsCount($event->discussion);
}
private function updateCommentsCount(Post $post)
{
$user = $post->user;
if ($user && $user->exists) {
$user->refreshCommentCount()->save();
}
}
private function updateDiscussionsCount(Discussion $discussion)
{
$user = $discussion->user;
if ($user && $user->exists) {
$user->refreshDiscussionCount()->save();
}
}
}