mirror of
https://github.com/pixelfed/pixelfed.git
synced 2024-11-22 14:31:26 +00:00
Update ApiV1Controller, add support for notification filter types[]
This commit is contained in:
parent
bf9df06fc8
commit
f61159a15a
1 changed files with 27 additions and 2 deletions
|
@ -211,6 +211,7 @@ class ApiV1Controller extends Controller
|
||||||
abort_if(! $request->user() || ! $request->user()->token(), 403);
|
abort_if(! $request->user() || ! $request->user()->token(), 403);
|
||||||
abort_unless($request->user()->tokenCan('read'), 403);
|
abort_unless($request->user()->tokenCan('read'), 403);
|
||||||
|
|
||||||
|
$withInstanceMeta = $request->has('_wim');
|
||||||
$res = $request->has(self::PF_API_ENTITY_KEY) ? AccountService::get($id, true) : AccountService::getMastodon($id, true);
|
$res = $request->has(self::PF_API_ENTITY_KEY) ? AccountService::get($id, true) : AccountService::getMastodon($id, true);
|
||||||
if (! $res) {
|
if (! $res) {
|
||||||
return response()->json(['error' => 'Record not found'], 404);
|
return response()->json(['error' => 'Record not found'], 404);
|
||||||
|
@ -752,7 +753,15 @@ class ApiV1Controller extends Controller
|
||||||
|
|
||||||
$dir = $min_id ? '>' : '<';
|
$dir = $min_id ? '>' : '<';
|
||||||
$id = $min_id ?? $max_id;
|
$id = $min_id ?? $max_id;
|
||||||
$res = Status::whereProfileId($profile['id'])
|
$res = Status::select(
|
||||||
|
'profile_id',
|
||||||
|
'in_reply_to_id',
|
||||||
|
'reblog_of_id',
|
||||||
|
'type',
|
||||||
|
'id',
|
||||||
|
'scope'
|
||||||
|
)
|
||||||
|
->whereProfileId($profile['id'])
|
||||||
->whereNull('in_reply_to_id')
|
->whereNull('in_reply_to_id')
|
||||||
->whereNull('reblog_of_id')
|
->whereNull('reblog_of_id')
|
||||||
->whereIn('type', $scope)
|
->whereIn('type', $scope)
|
||||||
|
@ -2272,14 +2281,17 @@ class ApiV1Controller extends Controller
|
||||||
'max_id' => 'nullable|integer|min:1|max:'.PHP_INT_MAX,
|
'max_id' => 'nullable|integer|min:1|max:'.PHP_INT_MAX,
|
||||||
'since_id' => 'nullable|integer|min:1|max:'.PHP_INT_MAX,
|
'since_id' => 'nullable|integer|min:1|max:'.PHP_INT_MAX,
|
||||||
'types[]' => 'sometimes|array',
|
'types[]' => 'sometimes|array',
|
||||||
|
'types[].*' => 'string|in:mention,reblog,follow,favourite',
|
||||||
'type' => 'sometimes|string|in:mention,reblog,follow,favourite',
|
'type' => 'sometimes|string|in:mention,reblog,follow,favourite',
|
||||||
'_pe' => 'sometimes',
|
'_pe' => 'sometimes',
|
||||||
]);
|
]);
|
||||||
|
|
||||||
$pid = $request->user()->profile_id;
|
$pid = $request->user()->profile_id;
|
||||||
$limit = $request->input('limit', 20);
|
$limit = $request->input('limit', 20);
|
||||||
|
$ogLimit = $request->input('limit', 20);
|
||||||
if ($limit > 40) {
|
if ($limit > 40) {
|
||||||
$limit = 40;
|
$limit = 40;
|
||||||
|
$ogLimit = 40;
|
||||||
}
|
}
|
||||||
|
|
||||||
$since = $request->input('since_id');
|
$since = $request->input('since_id');
|
||||||
|
@ -2297,6 +2309,10 @@ class ApiV1Controller extends Controller
|
||||||
|
|
||||||
$types = $request->input('types');
|
$types = $request->input('types');
|
||||||
|
|
||||||
|
if ($request->has('types')) {
|
||||||
|
$limit = 150;
|
||||||
|
}
|
||||||
|
|
||||||
$maxId = null;
|
$maxId = null;
|
||||||
$minId = null;
|
$minId = null;
|
||||||
AccountService::setLastActive($request->user()->id);
|
AccountService::setLastActive($request->user()->id);
|
||||||
|
@ -2361,7 +2377,16 @@ class ApiV1Controller extends Controller
|
||||||
}
|
}
|
||||||
|
|
||||||
return true;
|
return true;
|
||||||
})->values();
|
})
|
||||||
|
->filter(function ($n) use ($types) {
|
||||||
|
if (! $types) {
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
return in_array($n['type'], $types);
|
||||||
|
})
|
||||||
|
->take($ogLimit)
|
||||||
|
->values();
|
||||||
|
|
||||||
if ($maxId) {
|
if ($maxId) {
|
||||||
$link = '<'.$baseUrl.'max_id='.$minId.'>; rel="next"';
|
$link = '<'.$baseUrl.'max_id='.$minId.'>; rel="next"';
|
||||||
|
|
Loading…
Reference in a new issue