mirror of
https://github.com/pixelfed/pixelfed.git
synced 2024-11-09 16:24:51 +00:00
Update web routes
This commit is contained in:
parent
a64aef6726
commit
772352903b
2 changed files with 21 additions and 0 deletions
|
@ -89,6 +89,26 @@ class PublicApiController extends Controller
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public function getStatus(Request $request, $id)
|
||||||
|
{
|
||||||
|
abort_if(!$request->user(), 403);
|
||||||
|
$status = StatusService::get($id, false);
|
||||||
|
abort_if(!$status, 404);
|
||||||
|
if(in_array($status['visibility'], ['public', 'unlisted'])) {
|
||||||
|
return $status;
|
||||||
|
}
|
||||||
|
$pid = $request->user()->profile_id;
|
||||||
|
if($status['account']['id'] == $pid) {
|
||||||
|
return $status;
|
||||||
|
}
|
||||||
|
if($status['visibility'] == 'private') {
|
||||||
|
if(FollowerService::follows($pid, $status['account']['id'])) {
|
||||||
|
return $status;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
abort(404);
|
||||||
|
}
|
||||||
|
|
||||||
public function status(Request $request, $username, int $postid)
|
public function status(Request $request, $username, int $postid)
|
||||||
{
|
{
|
||||||
$profile = Profile::whereUsername($username)->whereNull('status')->firstOrFail();
|
$profile = Profile::whereUsername($username)->whereNull('status')->firstOrFail();
|
||||||
|
|
|
@ -163,6 +163,7 @@ Route::domain(config('pixelfed.domain.app'))->middleware(['validemail', 'twofact
|
||||||
Route::get('accounts/{id}/followers', 'PublicApiController@accountFollowers');
|
Route::get('accounts/{id}/followers', 'PublicApiController@accountFollowers');
|
||||||
Route::post('accounts/{id}/block', 'Api\ApiV1Controller@accountBlockById');
|
Route::post('accounts/{id}/block', 'Api\ApiV1Controller@accountBlockById');
|
||||||
Route::post('accounts/{id}/unblock', 'Api\ApiV1Controller@accountUnblockById');
|
Route::post('accounts/{id}/unblock', 'Api\ApiV1Controller@accountUnblockById');
|
||||||
|
Route::get('statuses/{id}', 'PublicApiController@getStatus');
|
||||||
Route::get('accounts/{id}', 'PublicApiController@account');
|
Route::get('accounts/{id}', 'PublicApiController@account');
|
||||||
Route::post('avatar/update', 'ApiController@avatarUpdate');
|
Route::post('avatar/update', 'ApiController@avatarUpdate');
|
||||||
Route::get('custom_emojis', 'Api\ApiV1Controller@customEmojis');
|
Route::get('custom_emojis', 'Api\ApiV1Controller@customEmojis');
|
||||||
|
|
Loading…
Reference in a new issue