123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212 |
- <?php
- namespace App\Http\Controllers;
- use Illuminate\Http\Request;
- use App\{
- DirectMessage,
- Hashtag,
- Follower,
- Like,
- Media,
- Notification,
- Profile,
- StatusHashtag,
- Status,
- UserFilter,
- };
- use Auth,Cache;
- use Carbon\Carbon;
- use League\Fractal;
- use App\Transformer\Api\{
- AccountTransformer,
- StatusTransformer,
- };
- use App\Jobs\StatusPipeline\NewStatusPipeline;
- use League\Fractal\Serializer\ArraySerializer;
- use League\Fractal\Pagination\IlluminatePaginatorAdapter;
- class InternalApiController extends Controller
- {
- protected $fractal;
- public function __construct()
- {
- $this->middleware('auth');
- $this->fractal = new Fractal\Manager();
- $this->fractal->setSerializer(new ArraySerializer());
- }
- public function compose(Request $request)
- {
- $this->validate($request, [
- 'caption' => 'nullable|string',
- 'media.*' => 'required',
- 'media.*.id' => 'required|integer|min:1',
- 'media.*.filter' => 'nullable|string|max:30',
- 'media.*.license' => 'nullable|string|max:80',
- 'visibility' => 'required|string|in:public,private|min:2|max:10'
- ]);
- $profile = Auth::user()->profile;
- $visibility = $request->input('visibility');
- $medias = $request->input('media');
- $attachments = [];
- $status = new Status;
- foreach($medias as $k => $media) {
- $m = Media::findOrFail($media['id']);
- if($m->profile_id !== $profile->id || $m->status_id) {
- abort(403, 'Invalid media id');
- }
- $m->filter_class = $media['filter'];
- $m->license = $media['license'];
- $m->caption = strip_tags($media['alt']);
- $m->order = isset($media['cursor']) && is_int($media['cursor']) ? (int) $media['cursor'] : $k;
- if($media['cw'] == true) {
- $m->is_nsfw = true;
- $status->is_nsfw = true;
- }
- $m->save();
- $attachments[] = $m;
- }
- $status->caption = strip_tags($request->caption);
- $status->visibility = 'draft';
- $status->scope = 'draft';
- $status->profile_id = $profile->id;
- $status->save();
- foreach($attachments as $media) {
- $media->status_id = $status->id;
- $media->save();
- }
- $status->visibility = $visibility;
- $status->scope = $visibility;
- $status->save();
- NewStatusPipeline::dispatch($status);
- return $status->url();
- }
- public function notifications(Request $request)
- {
- $this->validate($request, [
- 'page' => 'nullable|min:1|max:3',
- ]);
- $profile = Auth::user()->profile;
- $timeago = Carbon::now()->subMonths(6);
- $notifications = Notification::with('actor')
- ->whereProfileId($profile->id)
- ->whereDate('created_at', '>', $timeago)
- ->orderBy('id', 'desc')
- ->simplePaginate(30);
- $notifications = $notifications->map(function($k, $v) {
- return [
- 'id' => $k->id,
- 'action' => $k->action,
- 'message' => $k->message,
- 'rendered' => $k->rendered,
- 'actor' => [
- 'avatar' => $k->actor->avatarUrl(),
- 'username' => $k->actor->username,
- 'url' => $k->actor->url(),
- ],
- 'url' => $k->item->url(),
- 'read_at' => $k->read_at,
- ];
- });
- return response()->json($notifications, 200, [], JSON_PRETTY_PRINT);
- }
- public function discover(Request $request)
- {
- $profile = Auth::user()->profile;
- $pid = $profile->id;
- //$following = Cache::get('feature:discover:following:'.$profile->id, []);
- $following = Follower::whereProfileId($pid)->pluck('following_id');
- $filtered = UserFilter::whereUserId($pid)
- ->whereFilterableType('App\Profile')
- ->whereIn('filter_type', ['mute', 'block'])
- ->pluck('filterable_id')->toArray();
- $following = array_merge($following->push($pid)->toArray(), $filtered);
- $people = Profile::select('id', 'name', 'username')
- ->with('avatar')
- ->inRandomOrder()
- ->whereHas('statuses')
- ->whereNull('domain')
- ->whereNotIn('id', $following)
- ->whereIsPrivate(false)
- ->take(3)
- ->get();
- $posts = Status::select('id', 'caption', 'profile_id')
- ->whereHas('media')
- ->whereHas('profile', function($q) {
- $q->where('is_private', false);
- })
- ->whereIsNsfw(false)
- ->whereVisibility('public')
- ->whereNotIn('profile_id', $following)
- ->withCount(['comments', 'likes'])
- ->orderBy('created_at', 'desc')
- ->take(21)
- ->get();
- $res = [
- 'people' => $people->map(function($profile) {
- return [
- 'avatar' => $profile->avatarUrl(),
- 'name' => $profile->name,
- 'username' => $profile->username,
- 'url' => $profile->url(),
- ];
- }),
- 'posts' => $posts->map(function($post) {
- return [
- 'url' => $post->url(),
- 'thumb' => $post->thumb(),
- 'comments_count' => $post->comments_count,
- 'likes_count' => $post->likes_count,
- ];
- })
- ];
- return response()->json($res, 200, [], JSON_PRETTY_PRINT);
- }
- public function directMessage(Request $request, $profileId, $threadId)
- {
- $profile = Auth::user()->profile;
- if($profileId != $profile->id) {
- abort(403);
- }
- $msg = DirectMessage::whereToId($profile->id)
- ->orWhere('from_id',$profile->id)
- ->findOrFail($threadId);
- $thread = DirectMessage::with('status')->whereIn('to_id', [$profile->id, $msg->from_id])
- ->whereIn('from_id', [$profile->id,$msg->from_id])
- ->orderBy('created_at', 'asc')
- ->paginate(30);
- return response()->json(compact('msg', 'profile', 'thread'), 200, [], JSON_PRETTY_PRINT);
- }
- public function notificationMarkAllRead(Request $request)
- {
- $profile = Auth::user()->profile;
- $notifications = Notification::whereProfileId($profile->id)->get();
- foreach($notifications as $n) {
- $n->read_at = Carbon::now();
- $n->save();
- }
- return;
- }
- }
|