mirror of
https://github.com/pixelfed/pixelfed.git
synced 2024-11-20 05:21:27 +00:00
43 lines
945 B
PHP
43 lines
945 B
PHP
|
<?php
|
||
|
|
||
|
namespace App\Observers;
|
||
|
|
||
|
use App\Follower;
|
||
|
use App\Services\FollowerService;
|
||
|
|
||
|
class FollowerObserver
|
||
|
{
|
||
|
/**
|
||
|
* Handle the Follower "created" event.
|
||
|
*
|
||
|
* @param \App\Follower $follower
|
||
|
* @return void
|
||
|
*/
|
||
|
public function created(Follower $follower)
|
||
|
{
|
||
|
FollowerService::add($follower->profile_id, $follower->following_id);
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Handle the Follower "deleted" event.
|
||
|
*
|
||
|
* @param \App\Follower $follower
|
||
|
* @return void
|
||
|
*/
|
||
|
public function deleted(Follower $follower)
|
||
|
{
|
||
|
FollowerService::remove($follower->profile_id, (string) $follower->following_id);
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Handle the Follower "force deleted" event.
|
||
|
*
|
||
|
* @param \App\Follower $follower
|
||
|
* @return void
|
||
|
*/
|
||
|
public function forceDeleted(Follower $follower)
|
||
|
{
|
||
|
FollowerService::remove($follower->profile_id, (string) $follower->following_id);
|
||
|
}
|
||
|
}
|