mirror of
https://github.com/pixelfed/pixelfed.git
synced 2024-11-10 00:34:50 +00:00
Update ApiController, add pe support to like/unlike endpoints
This commit is contained in:
parent
3c6b9e6641
commit
679ef677b7
2 changed files with 466 additions and 453 deletions
|
@ -1352,7 +1352,8 @@ class ApiV1Controller extends Controller
|
||||||
$user = $request->user();
|
$user = $request->user();
|
||||||
abort_if($user->has_roles && ! UserRoleService::can('can-like', $user->id), 403, 'Invalid permissions for this action');
|
abort_if($user->has_roles && ! UserRoleService::can('can-like', $user->id), 403, 'Invalid permissions for this action');
|
||||||
|
|
||||||
$status = StatusService::getMastodon($id, false);
|
$napi = $request->has(self::PF_API_ENTITY_KEY);
|
||||||
|
$status = $napi ? StatusService::get($id, false) : StatusService::getMastodon($id, false);
|
||||||
|
|
||||||
abort_unless($status, 404);
|
abort_unless($status, 404);
|
||||||
|
|
||||||
|
@ -1420,34 +1421,47 @@ class ApiV1Controller extends Controller
|
||||||
$user = $request->user();
|
$user = $request->user();
|
||||||
abort_if($user->has_roles && ! UserRoleService::can('can-like', $user->id), 403, 'Invalid permissions for this action');
|
abort_if($user->has_roles && ! UserRoleService::can('can-like', $user->id), 403, 'Invalid permissions for this action');
|
||||||
|
|
||||||
|
$napi = $request->has(self::PF_API_ENTITY_KEY);
|
||||||
|
$status = $napi ? StatusService::get($id, false) : StatusService::getMastodon($id, false);
|
||||||
|
|
||||||
|
abort_unless($status && isset($status['account']), 404);
|
||||||
|
|
||||||
|
if ($status && isset($status['account'], $status['account']['acct']) && strpos($status['account']['acct'], '@') != -1) {
|
||||||
|
$domain = parse_url($status['account']['url'], PHP_URL_HOST);
|
||||||
|
abort_if(in_array($domain, InstanceService::getBannedDomains()), 404);
|
||||||
|
}
|
||||||
|
|
||||||
|
$spid = $status['account']['id'];
|
||||||
|
|
||||||
AccountService::setLastActive($user->id);
|
AccountService::setLastActive($user->id);
|
||||||
|
|
||||||
$status = Status::findOrFail($id);
|
if (intval($spid) !== intval($user->profile_id)) {
|
||||||
|
if ($status['visibility'] == 'private') {
|
||||||
if (intval($status->profile_id) !== intval($user->profile_id)) {
|
abort_if(! FollowerService::follows($user->profile_id, $spid), 403);
|
||||||
if ($status->scope == 'private') {
|
|
||||||
abort_if(! $status->profile->followedBy($user->profile), 403);
|
|
||||||
} else {
|
} else {
|
||||||
abort_if(! in_array($status->scope, ['public', 'unlisted']), 403);
|
abort_if(! in_array($status['visibility'], ['public', 'unlisted']), 403);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
$like = Like::whereProfileId($user->profile_id)
|
$like = Like::whereProfileId($user->profile_id)
|
||||||
->whereStatusId($status->id)
|
->whereStatusId($status['id'])
|
||||||
->first();
|
->first();
|
||||||
|
|
||||||
if ($like) {
|
if ($like) {
|
||||||
$like->forceDelete();
|
$like->forceDelete();
|
||||||
$status->likes_count = $status->likes_count > 1 ? $status->likes_count - 1 : 0;
|
$ogStatus = Status::find($status['id']);
|
||||||
$status->save();
|
if ($ogStatus) {
|
||||||
|
$ogStatus->likes_count = $ogStatus->likes_count > 1 ? $ogStatus->likes_count - 1 : 0;
|
||||||
|
$ogStatus->save();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
StatusService::del($status->id);
|
StatusService::del($status['id']);
|
||||||
|
|
||||||
$res = StatusService::getMastodon($status->id, false);
|
$status['favourited'] = false;
|
||||||
$res['favourited'] = false;
|
$status['favourites_count'] = isset($ogStatus) ? $ogStatus->likes_count : $status['favourites_count'] - 1;
|
||||||
|
|
||||||
return $this->json($res);
|
return $this->json($status);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
File diff suppressed because it is too large
Load diff
Loading…
Reference in a new issue