2018-11-29 06:51:47 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App\Transformer\Api;
|
|
|
|
|
2021-10-07 09:27:13 +00:00
|
|
|
use App\Notification;
|
|
|
|
use App\Services\AccountService;
|
2020-12-14 00:28:33 +00:00
|
|
|
use App\Services\HashidService;
|
2021-10-20 01:49:44 +00:00
|
|
|
use App\Services\RelationshipService;
|
2021-10-07 09:27:13 +00:00
|
|
|
use App\Services\StatusService;
|
2018-11-29 06:51:47 +00:00
|
|
|
use League\Fractal;
|
|
|
|
|
|
|
|
class NotificationTransformer extends Fractal\TransformerAbstract
|
|
|
|
{
|
|
|
|
public function transform(Notification $notification)
|
|
|
|
{
|
2021-10-07 09:27:13 +00:00
|
|
|
$res = [
|
2019-01-28 02:40:36 +00:00
|
|
|
'id' => (string) $notification->id,
|
2018-11-29 06:51:47 +00:00
|
|
|
'type' => $this->replaceTypeVerb($notification->action),
|
2022-05-20 19:22:59 +00:00
|
|
|
'created_at' => (string) str_replace('+00:00', 'Z', $notification->created_at->format(DATE_RFC3339_EXTENDED)),
|
2018-11-29 06:51:47 +00:00
|
|
|
];
|
|
|
|
|
2021-10-07 09:27:13 +00:00
|
|
|
$n = $notification;
|
|
|
|
|
|
|
|
if($n->actor_id) {
|
|
|
|
$res['account'] = AccountService::get($n->actor_id);
|
2021-10-20 01:49:44 +00:00
|
|
|
$res['relationship'] = RelationshipService::get($n->actor_id, $n->profile_id);
|
2021-10-07 09:27:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if($n->item_id && $n->item_type == 'App\Status') {
|
|
|
|
$res['status'] = StatusService::get($n->item_id, false);
|
|
|
|
}
|
|
|
|
|
|
|
|
if($n->item_id && $n->item_type == 'App\ModLog') {
|
|
|
|
$ml = $n->item;
|
2022-11-18 04:53:25 +00:00
|
|
|
if($ml && $ml->object_uid) {
|
|
|
|
$res['modlog'] = [
|
|
|
|
'id' => $ml->object_uid,
|
|
|
|
'url' => url('/i/admin/users/modlogs/' . $ml->object_uid)
|
|
|
|
];
|
|
|
|
}
|
2021-10-07 09:27:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if($n->item_id && $n->item_type == 'App\MediaTag') {
|
|
|
|
$ml = $n->item;
|
2022-11-18 04:53:25 +00:00
|
|
|
if($ml && $ml->tagged_username) {
|
|
|
|
$res['tagged'] = [
|
|
|
|
'username' => $ml->tagged_username,
|
|
|
|
'post_url' => '/p/'.HashidService::encode($ml->status_id)
|
|
|
|
];
|
|
|
|
}
|
2021-10-07 09:27:13 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return $res;
|
2018-11-29 06:51:47 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public function replaceTypeVerb($verb)
|
|
|
|
{
|
|
|
|
$verbs = [
|
2020-11-18 21:19:02 +00:00
|
|
|
'dm' => 'direct',
|
2018-11-29 06:51:47 +00:00
|
|
|
'follow' => 'follow',
|
|
|
|
'mention' => 'mention',
|
|
|
|
'reblog' => 'share',
|
2019-01-15 05:34:27 +00:00
|
|
|
'share' => 'share',
|
2018-11-29 06:51:47 +00:00
|
|
|
'like' => 'favourite',
|
2021-10-07 09:27:13 +00:00
|
|
|
'group:like' => 'favourite',
|
2018-12-10 19:00:50 +00:00
|
|
|
'comment' => 'comment',
|
2020-07-15 16:37:37 +00:00
|
|
|
'admin.user.modlog.comment' => 'modlog',
|
2021-09-04 03:23:43 +00:00
|
|
|
'tagged' => 'tagged',
|
|
|
|
'group:comment' => 'group:comment',
|
|
|
|
'story:react' => 'story:react',
|
2021-10-07 09:27:13 +00:00
|
|
|
'story:comment' => 'story:comment',
|
|
|
|
'group:join:approved' => 'group:join:approved',
|
|
|
|
'group:join:rejected' => 'group:join:rejected'
|
2018-11-29 06:51:47 +00:00
|
|
|
];
|
2021-10-07 09:27:13 +00:00
|
|
|
|
|
|
|
if(!isset($verbs[$verb])) {
|
|
|
|
return $verb;
|
|
|
|
}
|
|
|
|
|
2018-11-29 06:51:47 +00:00
|
|
|
return $verbs[$verb];
|
|
|
|
}
|
|
|
|
}
|