kopia lustrzana https://github.com/pixelfed/pixelfed
Fixes #1852
rodzic
575c4dd7e5
commit
67a90ee18d
|
@ -193,11 +193,11 @@ class BaseApiController extends Controller
|
||||||
]);
|
]);
|
||||||
}
|
}
|
||||||
|
|
||||||
public function showTempMedia(Request $request, int $profileId, $mediaId, $timestamp)
|
public function showTempMedia(Request $request, $profileId, $mediaId, $timestamp)
|
||||||
{
|
{
|
||||||
abort_if(!$request->user(), 403);
|
abort_if(!$request->user(), 403);
|
||||||
abort_if(!$request->hasValidSignature(), 404);
|
abort_if(!$request->hasValidSignature(), 404);
|
||||||
abort_if(Auth::user()->profile_id !== $profileId, 404);
|
abort_if(Auth::user()->profile_id != $profileId, 404);
|
||||||
$media = Media::whereProfileId(Auth::user()->profile_id)->findOrFail($mediaId);
|
$media = Media::whereProfileId(Auth::user()->profile_id)->findOrFail($mediaId);
|
||||||
$path = storage_path('app/'.$media->media_path);
|
$path = storage_path('app/'.$media->media_path);
|
||||||
return response()->file($path);
|
return response()->file($path);
|
||||||
|
|
Ładowanie…
Reference in New Issue