mirror of
https://github.com/pixelfed/pixelfed.git
synced 2024-12-26 01:36:43 +00:00
Update BaseApiController
This commit is contained in:
parent
4b1ac4a6ef
commit
60ead2bab3
1 changed files with 23 additions and 7 deletions
|
@ -32,6 +32,7 @@ use App\Jobs\VideoPipeline\{
|
||||||
VideoPostProcess,
|
VideoPostProcess,
|
||||||
VideoThumbnail
|
VideoThumbnail
|
||||||
};
|
};
|
||||||
|
use App\Services\NotificationService;
|
||||||
|
|
||||||
class BaseApiController extends Controller
|
class BaseApiController extends Controller
|
||||||
{
|
{
|
||||||
|
@ -47,6 +48,7 @@ class BaseApiController extends Controller
|
||||||
public function notifications(Request $request)
|
public function notifications(Request $request)
|
||||||
{
|
{
|
||||||
$pid = Auth::user()->profile->id;
|
$pid = Auth::user()->profile->id;
|
||||||
|
if(config('exp.ns') == false) {
|
||||||
$timeago = Carbon::now()->subMonths(6);
|
$timeago = Carbon::now()->subMonths(6);
|
||||||
$notifications = Notification::whereProfileId($pid)
|
$notifications = Notification::whereProfileId($pid)
|
||||||
->whereDate('created_at', '>', $timeago)
|
->whereDate('created_at', '>', $timeago)
|
||||||
|
@ -54,6 +56,20 @@ class BaseApiController extends Controller
|
||||||
->simplePaginate(10);
|
->simplePaginate(10);
|
||||||
$resource = new Fractal\Resource\Collection($notifications, new NotificationTransformer());
|
$resource = new Fractal\Resource\Collection($notifications, new NotificationTransformer());
|
||||||
$res = $this->fractal->createData($resource)->toArray();
|
$res = $this->fractal->createData($resource)->toArray();
|
||||||
|
} else {
|
||||||
|
$this->validate($request, [
|
||||||
|
'page' => 'nullable|integer|min:1',
|
||||||
|
'limit' => 'nullable|integer|min:1|max:10'
|
||||||
|
]);
|
||||||
|
$limit = $request->input('limit') ?? 10;
|
||||||
|
$page = $request->input('page') ?? 1;
|
||||||
|
if($page > 3) {
|
||||||
|
return response()->json([]);
|
||||||
|
}
|
||||||
|
$end = (int) $page * $limit;
|
||||||
|
$start = (int) $end - $limit;
|
||||||
|
$res = NotificationService::get($pid, $start, $end);
|
||||||
|
}
|
||||||
|
|
||||||
return response()->json($res);
|
return response()->json($res);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue