123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817 |
- <?php
- namespace App\Http\Controllers;
- use App\Follower;
- use App\Profile;
- use App\Services\AccountService;
- use App\Services\BookmarkService;
- use App\Services\FollowerService;
- use App\Services\InstanceService;
- use App\Services\LikeService;
- use App\Services\NetworkTimelineService;
- use App\Services\PublicTimelineService;
- use App\Services\ReblogService;
- use App\Services\RelationshipService;
- use App\Services\SnowflakeService;
- use App\Services\StatusService;
- use App\Services\UserFilterService;
- use App\Status;
- use App\Transformer\Api\StatusStatelessTransformer;
- use Auth;
- use Cache;
- use Illuminate\Http\Request;
- use League\Fractal;
- use League\Fractal\Pagination\IlluminatePaginatorAdapter;
- use League\Fractal\Serializer\ArraySerializer;
- class PublicApiController extends Controller
- {
- protected $fractal;
- public function __construct()
- {
- $this->fractal = new Fractal\Manager;
- $this->fractal->setSerializer(new ArraySerializer);
- }
- protected function getUserData($user)
- {
- if (! $user) {
- return [];
- } else {
- return AccountService::get($user->profile_id);
- }
- }
- 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)
- {
- $profile = Profile::whereUsername($username)->whereNull('status')->firstOrFail();
- $status = Status::whereProfileId($profile->id)->findOrFail($postid);
- $this->scopeCheck($profile, $status);
- if (! $request->user()) {
- $cached = StatusService::get($status->id, false);
- abort_if(! in_array($cached['visibility'], ['public', 'unlisted']), 403);
- $res = ['status' => $cached];
- } else {
- $item = new Fractal\Resource\Item($status, new StatusStatelessTransformer);
- $res = [
- 'status' => $this->fractal->createData($item)->toArray(),
- ];
- }
- return response()->json($res);
- }
- public function statusState(Request $request, $username, int $postid)
- {
- $profile = Profile::whereUsername($username)->whereNull('status')->firstOrFail();
- $status = Status::whereProfileId($profile->id)->findOrFail($postid);
- $this->scopeCheck($profile, $status);
- if (! Auth::check()) {
- $res = [
- 'user' => [],
- 'likes' => [],
- 'shares' => [],
- 'reactions' => [
- 'liked' => false,
- 'shared' => false,
- 'bookmarked' => false,
- ],
- ];
- return response()->json($res);
- }
- $res = [
- 'user' => $this->getUserData($request->user()),
- 'likes' => [],
- 'shares' => [],
- 'reactions' => [
- 'liked' => (bool) $status->liked(),
- 'shared' => (bool) $status->shared(),
- 'bookmarked' => (bool) $status->bookmarked(),
- ],
- ];
- return response()->json($res);
- }
- public function statusComments(Request $request, $username, int $postId)
- {
- $this->validate($request, [
- 'min_id' => 'nullable|integer|min:1',
- 'max_id' => 'nullable|integer|min:1|max:'.PHP_INT_MAX,
- 'limit' => 'nullable|integer|min:5|max:50',
- ]);
- $limit = $request->limit ?? 10;
- $profile = Profile::whereNull('status')->findOrFail($username);
- $status = Status::whereProfileId($profile->id)->whereCommentsDisabled(false)->findOrFail($postId);
- $this->scopeCheck($profile, $status);
- if (Auth::check()) {
- $p = Auth::user()->profile;
- $scope = $p->id == $status->profile_id || FollowerService::follows($p->id, $profile->id) ? ['public', 'private', 'unlisted'] : ['public', 'unlisted'];
- } else {
- $scope = ['public', 'unlisted'];
- }
- if ($request->filled('min_id') || $request->filled('max_id')) {
- if ($request->filled('min_id')) {
- $replies = $status->comments()
- ->whereNull('reblog_of_id')
- ->whereIn('scope', $scope)
- ->select('id', 'caption', 'local', 'visibility', 'scope', 'is_nsfw', 'profile_id', 'in_reply_to_id', 'type', 'reply_count', 'created_at')
- ->where('id', '>=', $request->min_id)
- ->orderBy('id', 'desc')
- ->paginate($limit);
- }
- if ($request->filled('max_id')) {
- $replies = $status->comments()
- ->whereNull('reblog_of_id')
- ->whereIn('scope', $scope)
- ->select('id', 'caption', 'local', 'visibility', 'scope', 'is_nsfw', 'profile_id', 'in_reply_to_id', 'type', 'reply_count', 'created_at')
- ->where('id', '<=', $request->max_id)
- ->orderBy('id', 'desc')
- ->paginate($limit);
- }
- } else {
- $replies = Status::whereInReplyToId($status->id)
- ->whereNull('reblog_of_id')
- ->whereIn('scope', $scope)
- ->select('id', 'caption', 'local', 'visibility', 'scope', 'is_nsfw', 'profile_id', 'in_reply_to_id', 'type', 'reply_count', 'created_at')
- ->orderBy('id', 'desc')
- ->paginate($limit);
- }
- $resource = new Fractal\Resource\Collection($replies, new StatusStatelessTransformer, 'data');
- $resource->setPaginator(new IlluminatePaginatorAdapter($replies));
- $res = $this->fractal->createData($resource)->toArray();
- return response()->json($res, 200, [], JSON_PRETTY_PRINT);
- }
- protected function scopeCheck(Profile $profile, Status $status)
- {
- if ($profile->is_private == true && Auth::check() == false) {
- abort(404);
- }
- switch ($status->scope) {
- case 'public':
- case 'unlisted':
- break;
- case 'private':
- $user = Auth::check() ? Auth::user() : false;
- if (! $user) {
- abort(403);
- } else {
- $follows = FollowerService::follows($profile->id, $user->profile_id);
- if ($follows == false && $profile->id !== $user->profile_id && $user->is_admin == false) {
- abort(404);
- }
- }
- break;
- case 'direct':
- abort(404);
- break;
- case 'draft':
- abort(404);
- break;
- default:
- abort(404);
- break;
- }
- }
- public function publicTimelineApi(Request $request)
- {
- $this->validate($request, [
- 'page' => 'nullable|integer|max:40',
- 'min_id' => 'nullable|integer|min:0|max:'.PHP_INT_MAX,
- 'max_id' => 'nullable|integer|min:0|max:'.PHP_INT_MAX,
- 'limit' => 'nullable|integer|max:30',
- ]);
- if (! $request->user()) {
- return response('', 403);
- }
- $page = $request->input('page');
- $min = $request->input('min_id');
- $max = $request->input('max_id');
- $limit = $request->input('limit') ?? 3;
- $user = $request->user();
- $filtered = $user ? UserFilterService::filters($user->profile_id) : [];
- $hideNsfw = config('instance.hide_nsfw_on_public_feeds');
- if (config('exp.cached_public_timeline') == false) {
- if ($min || $max) {
- $dir = $min ? '>' : '<';
- $id = $min ?? $max;
- $timeline = Status::select(
- 'id',
- 'profile_id',
- 'type',
- 'scope',
- 'local'
- )
- ->where('id', $dir, $id)
- ->whereNull(['in_reply_to_id', 'reblog_of_id'])
- ->whereIn('type', ['photo', 'photo:album', 'video', 'video:album', 'photo:video:album'])
- ->whereLocal(true)
- ->when($hideNsfw, function ($q, $hideNsfw) {
- return $q->where('is_nsfw', false);
- })
- ->whereScope('public')
- ->orderBy('id', 'desc')
- ->limit($limit)
- ->get()
- ->map(function ($s) use ($user) {
- $status = StatusService::getFull($s->id, $user->profile_id);
- if (! $status) {
- return false;
- }
- $status['favourited'] = (bool) LikeService::liked($user->profile_id, $s->id);
- $status['bookmarked'] = (bool) BookmarkService::get($user->profile_id, $s->id);
- $status['reblogged'] = (bool) ReblogService::get($user->profile_id, $s->id);
- return $status;
- })
- ->filter(function ($s) use ($filtered) {
- return $s && isset($s['account']) && in_array($s['account']['id'], $filtered) == false;
- })
- ->values();
- $res = $timeline->toArray();
- } else {
- $timeline = Status::select(
- 'id',
- 'uri',
- 'caption',
- 'profile_id',
- 'type',
- 'in_reply_to_id',
- 'reblog_of_id',
- 'is_nsfw',
- 'scope',
- 'local',
- 'reply_count',
- 'comments_disabled',
- 'created_at',
- 'place_id',
- 'likes_count',
- 'reblogs_count',
- 'updated_at'
- )
- ->whereNull(['in_reply_to_id', 'reblog_of_id'])
- ->whereIn('type', ['photo', 'photo:album', 'video', 'video:album', 'photo:video:album'])
- ->whereLocal(true)
- ->when($hideNsfw, function ($q, $hideNsfw) {
- return $q->where('is_nsfw', false);
- })
- ->whereScope('public')
- ->orderBy('id', 'desc')
- ->limit($limit)
- ->get()
- ->map(function ($s) use ($user) {
- $status = StatusService::getFull($s->id, $user->profile_id);
- if (! $status) {
- return false;
- }
- $status['favourited'] = (bool) LikeService::liked($user->profile_id, $s->id);
- $status['bookmarked'] = (bool) BookmarkService::get($user->profile_id, $s->id);
- $status['reblogged'] = (bool) ReblogService::get($user->profile_id, $s->id);
- return $status;
- })
- ->filter(function ($s) use ($filtered) {
- return $s && isset($s['account']) && in_array($s['account']['id'], $filtered) == false;
- })
- ->values();
- $res = $timeline->toArray();
- }
- } else {
- Cache::remember('api:v1:timelines:public:cache_check', 10368000, function () {
- if (PublicTimelineService::count() == 0) {
- PublicTimelineService::warmCache(true, 400);
- }
- });
- if ($max) {
- $feed = PublicTimelineService::getRankedMaxId($max, $limit);
- } elseif ($min) {
- $feed = PublicTimelineService::getRankedMinId($min, $limit);
- } else {
- $feed = PublicTimelineService::get(0, $limit);
- }
- $res = collect($feed)
- ->take($limit)
- ->map(function ($k) use ($user) {
- $status = StatusService::get($k);
- if ($status && isset($status['account']) && $user) {
- $status['favourited'] = (bool) LikeService::liked($user->profile_id, $k);
- $status['bookmarked'] = (bool) BookmarkService::get($user->profile_id, $k);
- $status['reblogged'] = (bool) ReblogService::get($user->profile_id, $k);
- $status['relationship'] = RelationshipService::get($user->profile_id, $status['account']['id']);
- }
- return $status;
- })
- ->filter(function ($s) use ($filtered) {
- return $s && isset($s['account']) && in_array($s['account']['id'], $filtered) == false;
- })
- ->values()
- ->toArray();
- }
- return response()->json($res);
- }
- public function homeTimelineApi(Request $request)
- {
- if (! $request->user()) {
- return response('', 403);
- }
- $this->validate($request, [
- 'page' => 'nullable|integer|max:40',
- 'min_id' => 'nullable|integer|min:0|max:'.PHP_INT_MAX,
- 'max_id' => 'nullable|integer|min:0|max:'.PHP_INT_MAX,
- 'limit' => 'nullable|integer|max:40',
- 'recent_feed' => 'nullable',
- 'recent_min' => 'nullable|integer',
- ]);
- $recentFeed = $request->input('recent_feed') == 'true';
- $recentFeedMin = $request->input('recent_min');
- $page = $request->input('page');
- $min = $request->input('min_id');
- $max = $request->input('max_id');
- $limit = $request->input('limit') ?? 3;
- $user = $request->user();
- $key = 'user:last_active_at:id:'.$user->id;
- if (Cache::get($key) == null) {
- $user->last_active_at = now();
- $user->save();
- Cache::put($key, true, 43200);
- }
- $pid = $user->profile_id;
- $following = Cache::remember('profile:following:'.$pid, 1209600, function () use ($pid) {
- $following = Follower::whereProfileId($pid)->pluck('following_id');
- return $following->push($pid)->toArray();
- });
- $filtered = $user ? UserFilterService::filters($user->profile_id) : [];
- $types = ['photo', 'photo:album', 'video', 'video:album', 'photo:video:album'];
- // $types = ['photo', 'photo:album', 'video', 'video:album', 'photo:video:album', 'text'];
- $textOnlyReplies = false;
- if ($min || $max) {
- $dir = $min ? '>' : '<';
- $id = $min ?? $max;
- return Status::select(
- 'id',
- 'uri',
- 'caption',
- 'profile_id',
- 'type',
- 'in_reply_to_id',
- 'reblog_of_id',
- 'is_nsfw',
- 'scope',
- 'local',
- 'reply_count',
- 'comments_disabled',
- 'place_id',
- 'likes_count',
- 'reblogs_count',
- 'created_at',
- 'updated_at'
- )
- ->whereIn('type', $types)
- ->when(! $textOnlyReplies, function ($q, $textOnlyReplies) {
- return $q->whereNull('in_reply_to_id');
- })
- ->where('id', $dir, $id)
- ->whereIn('profile_id', $following)
- ->whereIn('visibility', ['public', 'unlisted', 'private'])
- ->orderBy('created_at', 'desc')
- ->limit($limit)
- ->get()
- ->map(function ($s) use ($user) {
- try {
- $status = StatusService::get($s->id, false);
- if (! $status) {
- return false;
- }
- } catch (\Exception $e) {
- return false;
- }
- $status['favourited'] = (bool) LikeService::liked($user->profile_id, $s->id);
- $status['bookmarked'] = (bool) BookmarkService::get($user->profile_id, $s->id);
- $status['reblogged'] = (bool) ReblogService::get($user->profile_id, $s->id);
- return $status;
- })
- ->filter(function ($s) use ($filtered) {
- return $s && in_array($s['account']['id'], $filtered) == false;
- })
- ->values()
- ->toArray();
- } else {
- return Status::select(
- 'id',
- 'uri',
- 'caption',
- 'profile_id',
- 'type',
- 'in_reply_to_id',
- 'reblog_of_id',
- 'is_nsfw',
- 'scope',
- 'local',
- 'reply_count',
- 'comments_disabled',
- 'place_id',
- 'likes_count',
- 'reblogs_count',
- 'created_at',
- 'updated_at'
- )
- ->whereIn('type', $types)
- ->when(! $textOnlyReplies, function ($q, $textOnlyReplies) {
- return $q->whereNull('in_reply_to_id');
- })
- ->whereIn('profile_id', $following)
- ->whereIn('visibility', ['public', 'unlisted', 'private'])
- ->orderBy('created_at', 'desc')
- ->limit($limit)
- ->get()
- ->map(function ($s) use ($user) {
- try {
- $status = StatusService::get($s->id, false);
- if (! $status) {
- return false;
- }
- } catch (\Exception $e) {
- return false;
- }
- $status['favourited'] = (bool) LikeService::liked($user->profile_id, $s->id);
- $status['bookmarked'] = (bool) BookmarkService::get($user->profile_id, $s->id);
- $status['reblogged'] = (bool) ReblogService::get($user->profile_id, $s->id);
- return $status;
- })
- ->filter(function ($s) use ($filtered) {
- return $s && in_array($s['account']['id'], $filtered) == false;
- })
- ->values()
- ->toArray();
- }
- }
- public function networkTimelineApi(Request $request)
- {
- if (! $request->user()) {
- return response('', 403);
- }
- abort_if(config('federation.network_timeline') == false, 404);
- $this->validate($request, [
- 'page' => 'nullable|integer|max:40',
- 'min_id' => 'nullable|integer|min:0|max:'.PHP_INT_MAX,
- 'max_id' => 'nullable|integer|min:0|max:'.PHP_INT_MAX,
- 'limit' => 'nullable|integer|max:30',
- ]);
- $page = $request->input('page');
- $min = $request->input('min_id');
- $max = $request->input('max_id');
- $limit = $request->input('limit') ?? 3;
- $user = $request->user();
- $amin = SnowflakeService::byDate(now()->subDays(config('federation.network_timeline_days_falloff')));
- $filtered = $user ? UserFilterService::filters($user->profile_id) : [];
- $hideNsfw = config('instance.hide_nsfw_on_public_feeds');
- if (config('instance.timeline.network.cached') == false) {
- if ($min || $max) {
- $dir = $min ? '>' : '<';
- $id = $min ?? $max;
- $timeline = Status::select(
- 'id',
- 'uri',
- 'type',
- 'scope',
- 'created_at',
- )
- ->where('id', $dir, $id)
- ->when($hideNsfw, function ($q, $hideNsfw) {
- return $q->where('is_nsfw', false);
- })
- ->whereNull(['in_reply_to_id', 'reblog_of_id'])
- ->whereNotIn('profile_id', $filtered)
- ->whereIn('type', ['photo', 'photo:album', 'video', 'video:album', 'photo:video:album'])
- ->whereNotNull('uri')
- ->whereScope('public')
- ->where('id', '>', $amin)
- ->orderBy('created_at', 'desc')
- ->limit($limit)
- ->get()
- ->map(function ($s) use ($user) {
- $status = StatusService::get($s->id);
- $status['favourited'] = (bool) LikeService::liked($user->profile_id, $s->id);
- $status['bookmarked'] = (bool) BookmarkService::get($user->profile_id, $s->id);
- $status['reblogged'] = (bool) ReblogService::get($user->profile_id, $s->id);
- return $status;
- });
- $res = $timeline->toArray();
- } else {
- $timeline = Status::select(
- 'id',
- 'uri',
- 'type',
- 'scope',
- 'created_at',
- )
- ->whereNull(['in_reply_to_id', 'reblog_of_id'])
- ->whereNotIn('profile_id', $filtered)
- ->when($hideNsfw, function ($q, $hideNsfw) {
- return $q->where('is_nsfw', false);
- })
- ->whereIn('type', ['photo', 'photo:album', 'video', 'video:album', 'photo:video:album'])
- ->whereNotNull('uri')
- ->whereScope('public')
- ->where('id', '>', $amin)
- ->orderBy('created_at', 'desc')
- ->limit($limit)
- ->get()
- ->map(function ($s) use ($user) {
- $status = StatusService::get($s->id);
- $status['favourited'] = (bool) LikeService::liked($user->profile_id, $s->id);
- $status['bookmarked'] = (bool) BookmarkService::get($user->profile_id, $s->id);
- $status['reblogged'] = (bool) ReblogService::get($user->profile_id, $s->id);
- return $status;
- });
- $res = $timeline->toArray();
- }
- } else {
- Cache::remember('api:v1:timelines:network:cache_check', 10368000, function () {
- if (NetworkTimelineService::count() == 0) {
- NetworkTimelineService::warmCache(true, 400);
- }
- });
- if ($max) {
- $feed = NetworkTimelineService::getRankedMaxId($max, $limit);
- } elseif ($min) {
- $feed = NetworkTimelineService::getRankedMinId($min, $limit);
- } else {
- $feed = NetworkTimelineService::get(0, $limit);
- }
- $res = collect($feed)
- ->take($limit)
- ->map(function ($k) use ($user) {
- $status = StatusService::get($k);
- if ($status && isset($status['account']) && $user) {
- $status['favourited'] = (bool) LikeService::liked($user->profile_id, $k);
- $status['bookmarked'] = (bool) BookmarkService::get($user->profile_id, $k);
- $status['reblogged'] = (bool) ReblogService::get($user->profile_id, $k);
- $status['relationship'] = RelationshipService::get($user->profile_id, $status['account']['id']);
- }
- return $status;
- })
- ->filter(function ($s) use ($filtered) {
- return $s && isset($s['account']) && in_array($s['account']['id'], $filtered) == false;
- })
- ->values()
- ->toArray();
- }
- return response()->json($res);
- }
- public function relationships(Request $request)
- {
- if (! Auth::check()) {
- return response()->json([]);
- }
- $pid = $request->user()->profile_id;
- $this->validate($request, [
- 'id' => 'required|array|min:1|max:20',
- 'id.*' => 'required|integer',
- ]);
- $ids = collect($request->input('id'));
- $res = $ids->filter(function ($v) use ($pid) {
- return $v != $pid;
- })
- ->map(function ($id) use ($pid) {
- return RelationshipService::get($pid, $id);
- });
- return response()->json($res);
- }
- public function account(Request $request, $id)
- {
- $res = AccountService::get($id);
- if ($res && isset($res['local'], $res['url']) && ! $res['local']) {
- $domain = parse_url($res['url'], PHP_URL_HOST);
- abort_if(in_array($domain, InstanceService::getBannedDomains()), 404);
- }
- return response()->json($res);
- }
- public function accountStatuses(Request $request, $id)
- {
- $this->validate($request, [
- 'only_media' => 'nullable',
- 'pinned' => 'nullable',
- 'exclude_replies' => 'nullable',
- 'limit' => 'nullable|integer|min:1|max:24',
- 'cursor' => 'nullable',
- ]);
- $user = $request->user();
- $profile = AccountService::get($id);
- abort_if(! $profile, 404);
- if ($profile && isset($profile['local'], $profile['url']) && ! $profile['local']) {
- $domain = parse_url($profile['url'], PHP_URL_HOST);
- abort_if(in_array($domain, InstanceService::getBannedDomains()), 404);
- }
- $limit = $request->limit ?? 9;
- $scope = ['photo', 'photo:album', 'video', 'video:album'];
- $onlyMedia = $request->input('only_media', true);
- $pinned = $request->filled('pinned') && $request->boolean('pinned') == true;
- $hasCursor = $request->filled('cursor');
- $visibility = $this->determineVisibility($profile, $user);
- if (empty($visibility)) {
- return response()->json([]);
- }
- $result = collect();
- $remainingLimit = $limit;
- if ($pinned && ! $hasCursor) {
- $pinnedStatuses = Status::whereProfileId($profile['id'])
- ->whereNotNull('pinned_order')
- ->orderBy('pinned_order')
- ->get();
- $pinnedResult = $this->processStatuses($pinnedStatuses, $user, $onlyMedia);
- $result = $pinnedResult;
- $remainingLimit = max(1, $limit - $pinnedResult->count());
- }
- $paginator = Status::whereProfileId($profile['id'])
- ->whereNull('in_reply_to_id')
- ->whereNull('reblog_of_id')
- ->when($pinned, function ($query) {
- return $query->whereNull('pinned_order');
- })
- ->whereIn('type', $scope)
- ->whereIn('scope', $visibility)
- ->orderByDesc('id')
- ->cursorPaginate($remainingLimit)
- ->withQueryString();
- $headers = $this->generatePaginationHeaders($paginator);
- $regularStatuses = $this->processStatuses($paginator->items(), $user, $onlyMedia);
- $result = $result->concat($regularStatuses);
- return response()->json($result, 200, $headers);
- }
- private function determineVisibility($profile, $user)
- {
- if ($profile['id'] == $user->profile_id) {
- return ['public', 'unlisted', 'private'];
- }
- if ($profile['locked']) {
- if (! $user) {
- return [];
- }
- $pid = $user->profile_id;
- $isFollowing = Follower::whereProfileId($pid)
- ->whereFollowingId($profile['id'])
- ->exists();
- return $isFollowing ? ['public', 'unlisted', 'private'] : ['public'];
- } else {
- if ($user) {
- $pid = $user->profile_id;
- $isFollowing = Follower::whereProfileId($pid)
- ->whereFollowingId($profile['id'])
- ->exists();
- return $isFollowing ? ['public', 'unlisted', 'private'] : ['public', 'unlisted'];
- } else {
- return ['public', 'unlisted'];
- }
- }
- }
- private function processStatuses($statuses, $user, $onlyMedia)
- {
- return collect($statuses)->map(function ($status) use ($user) {
- try {
- $mastodonStatus = StatusService::getMastodon($status->id, false);
- if (! $mastodonStatus) {
- return null;
- }
- if ($user) {
- $mastodonStatus['favourited'] = (bool) LikeService::liked($user->profile_id, $status->id);
- }
- return $mastodonStatus;
- } catch (\Exception $e) {
- return null;
- }
- })
- ->filter(function ($status) use ($onlyMedia) {
- if (! $status) {
- return false;
- }
- if ($onlyMedia) {
- return isset($status['media_attachments']) &&
- is_array($status['media_attachments']) &&
- ! empty($status['media_attachments']);
- }
- return true;
- })
- ->values();
- }
- /**
- * Generate pagination link headers from paginator
- */
- private function generatePaginationHeaders($paginator)
- {
- $link = null;
- if ($paginator->onFirstPage()) {
- if ($paginator->hasMorePages()) {
- $link = '<'.$paginator->nextPageUrl().'>; rel="prev"';
- }
- } else {
- if ($paginator->previousPageUrl()) {
- $link = '<'.$paginator->previousPageUrl().'>; rel="next"';
- }
- if ($paginator->hasMorePages()) {
- $link .= ($link ? ', ' : '').'<'.$paginator->nextPageUrl().'>; rel="prev"';
- }
- }
- return isset($link) ? ['Link' => $link] : [];
- }
- }
|