2018-05-27 02:26:44 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App\Jobs\LikePipeline;
|
|
|
|
|
2024-10-02 05:59:52 +00:00
|
|
|
use App\Jobs\PushNotificationPipeline\LikePushNotifyPipeline;
|
|
|
|
use App\Like;
|
|
|
|
use App\Notification;
|
|
|
|
use App\Services\NotificationAppGatewayService;
|
|
|
|
use App\Services\PushNotificationService;
|
|
|
|
use App\Services\StatusService;
|
|
|
|
use App\Transformer\ActivityPub\Verb\Like as LikeTransformer;
|
|
|
|
use App\User;
|
|
|
|
use App\Util\ActivityPub\Helpers;
|
2018-05-27 02:26:44 +00:00
|
|
|
use Illuminate\Bus\Queueable;
|
|
|
|
use Illuminate\Contracts\Queue\ShouldQueue;
|
|
|
|
use Illuminate\Foundation\Bus\Dispatchable;
|
2018-08-28 03:07:36 +00:00
|
|
|
use Illuminate\Queue\InteractsWithQueue;
|
|
|
|
use Illuminate\Queue\SerializesModels;
|
2019-06-25 02:22:05 +00:00
|
|
|
use League\Fractal;
|
|
|
|
use League\Fractal\Serializer\ArraySerializer;
|
2018-05-27 02:26:44 +00:00
|
|
|
|
|
|
|
class LikePipeline implements ShouldQueue
|
|
|
|
{
|
|
|
|
use Dispatchable, InteractsWithQueue, Queueable, SerializesModels;
|
|
|
|
|
|
|
|
protected $like;
|
2018-08-28 03:07:36 +00:00
|
|
|
|
2019-01-12 22:16:37 +00:00
|
|
|
/**
|
|
|
|
* Delete the job if its models no longer exist.
|
|
|
|
*
|
|
|
|
* @var bool
|
|
|
|
*/
|
|
|
|
public $deleteWhenMissingModels = true;
|
|
|
|
|
2020-05-22 21:53:59 +00:00
|
|
|
public $timeout = 5;
|
2024-10-02 05:59:52 +00:00
|
|
|
|
2020-05-22 21:53:59 +00:00
|
|
|
public $tries = 1;
|
|
|
|
|
2018-05-27 02:26:44 +00:00
|
|
|
/**
|
|
|
|
* Create a new job instance.
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
public function __construct(Like $like)
|
|
|
|
{
|
|
|
|
$this->like = $like;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Execute the job.
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
public function handle()
|
|
|
|
{
|
|
|
|
$like = $this->like;
|
|
|
|
|
|
|
|
$status = $this->like->status;
|
|
|
|
$actor = $this->like->actor;
|
|
|
|
|
2024-10-02 05:59:52 +00:00
|
|
|
if (! $status) {
|
2019-06-25 02:22:05 +00:00
|
|
|
// Ignore notifications to deleted statuses
|
2018-07-12 22:48:19 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2021-10-22 01:02:15 +00:00
|
|
|
StatusService::refresh($status->id);
|
2021-01-30 23:36:58 +00:00
|
|
|
|
2024-10-02 05:59:52 +00:00
|
|
|
if ($status->url && $actor->domain == null) {
|
2019-06-25 02:22:05 +00:00
|
|
|
return $this->remoteLikeDeliver();
|
|
|
|
}
|
|
|
|
|
2018-06-07 06:14:32 +00:00
|
|
|
$exists = Notification::whereProfileId($status->profile_id)
|
2024-10-02 05:59:52 +00:00
|
|
|
->whereActorId($actor->id)
|
|
|
|
->whereAction('like')
|
|
|
|
->whereItemId($status->id)
|
|
|
|
->whereItemType('App\Status')
|
|
|
|
->count();
|
2018-06-07 06:14:32 +00:00
|
|
|
|
2024-10-02 05:59:52 +00:00
|
|
|
if ($actor->id === $status->profile_id || $exists) {
|
2018-05-30 01:47:20 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2024-10-02 05:59:52 +00:00
|
|
|
if ($status->uri === null && $status->object_url === null && $status->url === null) {
|
2024-02-04 14:18:05 +00:00
|
|
|
try {
|
2024-10-02 05:59:52 +00:00
|
|
|
$notification = new Notification;
|
2024-02-04 14:18:05 +00:00
|
|
|
$notification->profile_id = $status->profile_id;
|
|
|
|
$notification->actor_id = $actor->id;
|
|
|
|
$notification->action = 'like';
|
|
|
|
$notification->item_id = $status->id;
|
|
|
|
$notification->item_type = "App\Status";
|
|
|
|
$notification->save();
|
|
|
|
|
|
|
|
} catch (Exception $e) {
|
|
|
|
}
|
2024-10-02 05:59:52 +00:00
|
|
|
|
|
|
|
if (NotificationAppGatewayService::enabled()) {
|
|
|
|
if (PushNotificationService::check('like', $status->profile_id)) {
|
|
|
|
$user = User::whereProfileId($status->profile_id)->first();
|
|
|
|
if ($user && $user->expo_token && $user->notify_enabled) {
|
|
|
|
LikePushNotifyPipeline::dispatchSync($user->expo_token, $actor->username);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2018-05-27 02:26:44 +00:00
|
|
|
}
|
|
|
|
}
|
2019-06-25 02:22:05 +00:00
|
|
|
|
|
|
|
public function remoteLikeDeliver()
|
|
|
|
{
|
|
|
|
$like = $this->like;
|
|
|
|
$status = $this->like->status;
|
|
|
|
$actor = $this->like->actor;
|
|
|
|
|
2024-10-02 05:59:52 +00:00
|
|
|
$fractal = new Fractal\Manager;
|
|
|
|
$fractal->setSerializer(new ArraySerializer);
|
|
|
|
$resource = new Fractal\Resource\Item($like, new LikeTransformer);
|
2019-06-25 02:22:05 +00:00
|
|
|
$activity = $fractal->createData($resource)->toArray();
|
|
|
|
|
|
|
|
$url = $status->profile->sharedInbox ?? $status->profile->inbox_url;
|
|
|
|
|
|
|
|
Helpers::sendSignedObject($actor, $url, $activity);
|
|
|
|
}
|
2018-05-27 02:26:44 +00:00
|
|
|
}
|