pixelfed/app/Http/Controllers/Api/BaseApiController.php

244 lines
7.5 KiB
PHP
Raw Normal View History

2018-08-05 19:17:28 +00:00
<?php
namespace App\Http\Controllers\Api;
2018-08-28 03:07:36 +00:00
use Illuminate\Http\Request;
2018-11-05 00:09:45 +00:00
use App\Http\Controllers\{
Controller,
AvatarController
};
use Auth, Cache, URL;
2018-12-03 01:42:55 +00:00
use App\{
Avatar,
Notification,
Media,
Profile
};
2018-11-05 00:09:45 +00:00
use App\Transformer\Api\{
AccountTransformer,
2018-12-03 01:42:55 +00:00
NotificationTransformer,
2018-11-05 00:09:45 +00:00
MediaTransformer,
StatusTransformer
};
2018-08-28 03:07:36 +00:00
use League\Fractal;
2018-08-05 19:17:28 +00:00
use League\Fractal\Serializer\ArraySerializer;
2018-11-05 00:09:45 +00:00
use App\Jobs\AvatarPipeline\AvatarOptimize;
use App\Jobs\ImageOptimizePipeline\ImageOptimize;
use App\Jobs\VideoPipeline\{
VideoOptimize,
VideoPostProcess,
VideoThumbnail
};
2018-08-05 19:17:28 +00:00
class BaseApiController extends Controller
{
protected $fractal;
public function __construct()
{
$this->middleware('auth');
$this->fractal = new Fractal\Manager();
$this->fractal->setSerializer(new ArraySerializer());
}
2018-12-03 01:42:55 +00:00
public function notification(Request $request, $id)
{
$notification = Notification::findOrFail($id);
$resource = new Fractal\Resource\Item($notification, new NotificationTransformer());
$res = $this->fractal->createData($resource)->toArray();
return response()->json($res, 200, [], JSON_PRETTY_PRINT);
}
2018-08-05 19:17:28 +00:00
public function accounts(Request $request, $id)
{
$profile = Profile::findOrFail($id);
2018-08-28 03:07:36 +00:00
$resource = new Fractal\Resource\Item($profile, new AccountTransformer());
2018-08-05 19:17:28 +00:00
$res = $this->fractal->createData($resource)->toArray();
2018-08-28 03:07:36 +00:00
2018-08-05 19:17:28 +00:00
return response()->json($res, 200, [], JSON_PRETTY_PRINT);
}
public function accountFollowers(Request $request, $id)
{
$profile = Profile::findOrFail($id);
$followers = $profile->followers;
2018-08-28 03:07:36 +00:00
$resource = new Fractal\Resource\Collection($followers, new AccountTransformer());
2018-08-05 19:17:28 +00:00
$res = $this->fractal->createData($resource)->toArray();
2018-08-28 03:07:36 +00:00
2018-08-05 19:17:28 +00:00
return response()->json($res, 200, [], JSON_PRETTY_PRINT);
}
public function accountFollowing(Request $request, $id)
{
$profile = Profile::findOrFail($id);
$following = $profile->following;
2018-08-28 03:07:36 +00:00
$resource = new Fractal\Resource\Collection($following, new AccountTransformer());
2018-08-05 19:17:28 +00:00
$res = $this->fractal->createData($resource)->toArray();
2018-08-28 03:07:36 +00:00
2018-08-05 19:17:28 +00:00
return response()->json($res, 200, [], JSON_PRETTY_PRINT);
}
public function accountStatuses(Request $request, $id)
{
$pid = Auth::user()->profile->id;
2018-08-05 19:17:28 +00:00
$profile = Profile::findOrFail($id);
$statuses = $profile->statuses();
if($pid === $profile->id) {
$statuses = $statuses->orderBy('id', 'desc')->paginate(20);
} else {
$statuses = $statuses->whereVisibility('public')->orderBy('id', 'desc')->paginate(20);
}
2018-08-28 03:07:36 +00:00
$resource = new Fractal\Resource\Collection($statuses, new StatusTransformer());
2018-08-05 19:17:28 +00:00
$res = $this->fractal->createData($resource)->toArray();
2018-08-28 03:07:36 +00:00
2018-08-05 19:17:28 +00:00
return response()->json($res, 200, [], JSON_PRETTY_PRINT);
}
public function followSuggestions(Request $request)
{
$followers = Auth::user()->profile->recommendFollowers();
2018-08-28 03:07:36 +00:00
$resource = new Fractal\Resource\Collection($followers, new AccountTransformer());
2018-08-05 19:17:28 +00:00
$res = $this->fractal->createData($resource)->toArray();
2018-08-28 03:07:36 +00:00
2018-08-05 19:17:28 +00:00
return response()->json($res);
}
public function avatarUpdate(Request $request)
{
$this->validate($request, [
'upload' => 'required|mimes:jpeg,png,gif|max:2000',
]);
2018-08-28 03:07:36 +00:00
try {
2018-08-28 03:07:36 +00:00
$user = Auth::user();
$profile = $user->profile;
$file = $request->file('upload');
$path = (new AvatarController())->getPath($user, $file);
$dir = $path['root'];
$name = $path['name'];
$public = $path['storage'];
$currentAvatar = storage_path('app/'.$profile->avatar->media_path);
$loc = $request->file('upload')->storeAs($public, $name);
$avatar = Avatar::whereProfileId($profile->id)->firstOrFail();
$opath = $avatar->media_path;
$avatar->media_path = "$public/$name";
$avatar->thumb_path = null;
$avatar->change_count = ++$avatar->change_count;
$avatar->last_processed_at = null;
$avatar->save();
Cache::forget("avatar:{$profile->id}");
AvatarOptimize::dispatch($user->profile, $currentAvatar);
} catch (Exception $e) {
}
return response()->json([
'code' => 200,
2018-08-28 03:07:36 +00:00
'msg' => 'Avatar successfully updated',
]);
}
2018-10-17 18:22:35 +00:00
2018-10-21 04:27:27 +00:00
public function showTempMedia(Request $request, $profileId, $mediaId)
{
if (!$request->hasValidSignature()) {
abort(401);
}
$profile = Auth::user()->profile;
if($profile->id !== (int) $profileId) {
abort(403);
}
$media = Media::whereProfileId($profile->id)->findOrFail($mediaId);
$path = storage_path('app/'.$media->media_path);
return response()->file($path);
}
2018-10-17 18:22:35 +00:00
public function uploadMedia(Request $request)
{
$this->validate($request, [
'file.*' => function() {
return [
'required',
'mimes:' . config('pixelfed.media_types'),
'max:' . config('pixelfed.max_photo_size'),
];
},
]);
2018-10-21 04:27:27 +00:00
2018-10-17 18:22:35 +00:00
$user = Auth::user();
$profile = $user->profile;
2018-10-21 04:27:27 +00:00
if(config('pixelfed.enforce_account_limit') == true) {
$size = Media::whereUserId($user->id)->sum('size') / 1000;
$limit = (int) config('pixelfed.max_account_size');
if ($size >= $limit) {
abort(403, 'Account size limit reached.');
}
}
$recent = Media::whereProfileId($profile->id)->whereNull('status_id')->count();
if($recent > 50) {
abort(403);
}
2018-10-17 18:22:35 +00:00
$monthHash = hash('sha1', date('Y').date('m'));
$userHash = hash('sha1', $user->id.(string) $user->created_at);
2018-10-21 04:27:27 +00:00
2018-10-17 18:22:35 +00:00
$photo = $request->file('file');
2018-12-03 01:42:55 +00:00
$mimes = explode(',', config('pixelfed.media_types'));
if(in_array($photo->getMimeType(), $mimes) == false) {
return;
}
2018-10-17 18:22:35 +00:00
$storagePath = "public/m/{$monthHash}/{$userHash}";
$path = $photo->store($storagePath);
$hash = \hash_file('sha256', $photo);
$media = new Media();
$media->status_id = null;
$media->profile_id = $profile->id;
$media->user_id = $user->id;
$media->media_path = $path;
$media->original_sha256 = $hash;
2018-12-03 01:42:55 +00:00
$media->size = $photo->getSize();
$media->mime = $photo->getMimeType();
2018-10-17 18:22:35 +00:00
$media->filter_class = null;
$media->filter_name = null;
$media->save();
2018-10-21 04:27:27 +00:00
$url = URL::temporarySignedRoute(
'temp-media', now()->addHours(1), ['profileId' => $profile->id, 'mediaId' => $media->id]
);
2018-11-05 00:09:45 +00:00
switch ($media->mime) {
case 'image/jpeg':
case 'image/png':
ImageOptimize::dispatch($media);
break;
case 'video/mp4':
VideoThumbnail::dispatch($media);
break;
default:
break;
}
2018-10-21 04:27:27 +00:00
$res = [
'id' => $media->id,
'type' => $media->activityVerb(),
'url' => $url,
'remote_url' => null,
'preview_url' => $url,
'text_url' => null,
'meta' => $media->metadata,
'description' => null,
];
2018-10-17 18:22:35 +00:00
return response()->json($res);
}
2018-08-28 03:07:36 +00:00
}