mirror of https://github.com/pixelfed/pixelfed
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
52 lines
1.3 KiB
PHTML
52 lines
1.3 KiB
PHTML
1 year ago
|
<?php
|
||
|
|
||
|
namespace App\Observers;
|
||
|
|
||
|
use App\HashtagFollow;
|
||
|
use App\Services\HashtagFollowService;
|
||
|
use App\Jobs\HomeFeedPipeline\HashtagUnfollowPipeline;
|
||
|
use Illuminate\Contracts\Events\ShouldHandleEventsAfterCommit;
|
||
|
|
||
|
class HashtagFollowObserver implements ShouldHandleEventsAfterCommit
|
||
|
{
|
||
|
/**
|
||
|
* Handle the HashtagFollow "created" event.
|
||
|
*/
|
||
|
public function created(HashtagFollow $hashtagFollow): void
|
||
|
{
|
||
|
HashtagFollowService::add($hashtagFollow->hashtag_id, $hashtagFollow->profile_id);
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Handle the HashtagFollow "updated" event.
|
||
|
*/
|
||
|
public function updated(HashtagFollow $hashtagFollow): void
|
||
|
{
|
||
|
//
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Handle the HashtagFollow "deleting" event.
|
||
|
*/
|
||
|
public function deleting(HashtagFollow $hashtagFollow): void
|
||
|
{
|
||
|
HashtagFollowService::unfollow($hashtagFollow->hashtag_id, $hashtagFollow->profile_id);
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Handle the HashtagFollow "restored" event.
|
||
|
*/
|
||
|
public function restored(HashtagFollow $hashtagFollow): void
|
||
|
{
|
||
|
//
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Handle the HashtagFollow "force deleted" event.
|
||
|
*/
|
||
|
public function forceDeleted(HashtagFollow $hashtagFollow): void
|
||
|
{
|
||
|
HashtagFollowService::unfollow($hashtagFollow->hashtag_id, $hashtagFollow->profile_id);
|
||
|
}
|
||
|
}
|