|
@@ -0,0 +1,380 @@
|
|
|
+<?php
|
|
|
+
|
|
|
+
|
|
|
+namespace App\Controllers;
|
|
|
+
|
|
|
+
|
|
|
+use GuzzleHttp\Psr7\Stream;
|
|
|
+use Intervention\Image\Constraint;
|
|
|
+use Intervention\Image\ImageManagerStatic as Image;
|
|
|
+use League\Flysystem\FileNotFoundException;
|
|
|
+use League\Flysystem\Filesystem;
|
|
|
+use Psr\Http\Message\ResponseInterface as Response;
|
|
|
+use Psr\Http\Message\ServerRequestInterface as Request;
|
|
|
+use Slim\Exception\HttpBadRequestException;
|
|
|
+use Slim\Exception\HttpNotFoundException;
|
|
|
+use Slim\Exception\HttpUnauthorizedException;
|
|
|
+
|
|
|
+class MediaController extends Controller
|
|
|
+{
|
|
|
+ /**
|
|
|
+ * @param Request $request
|
|
|
+ * @param Response $response
|
|
|
+ * @param string $userCode
|
|
|
+ * @param string $mediaCode
|
|
|
+ * @param string|null $token
|
|
|
+ * @return Response
|
|
|
+ * @throws HttpNotFoundException
|
|
|
+ * @throws \Twig\Error\LoaderError
|
|
|
+ * @throws \Twig\Error\RuntimeError
|
|
|
+ * @throws \Twig\Error\SyntaxError
|
|
|
+ * @throws FileNotFoundException
|
|
|
+ */
|
|
|
+ public function show(Request $request, Response $response, string $userCode, string $mediaCode, string $token = null): Response
|
|
|
+ {
|
|
|
+ $media = $this->getMedia($userCode, $mediaCode);
|
|
|
+
|
|
|
+ if (!$media || (!$media->published && $this->session->get('user_id') !== $media->user_id && !$this->session->get('admin', false))) {
|
|
|
+ throw new HttpNotFoundException($request);
|
|
|
+ }
|
|
|
+
|
|
|
+ $filesystem = $this->storage;
|
|
|
+
|
|
|
+ if (isBot($request->getHeaderLine('User-Agent'))) {
|
|
|
+ return $this->streamMedia($request, $response, $filesystem, $media);
|
|
|
+ } else {
|
|
|
+ try {
|
|
|
+ $media->mimetype = $filesystem->getMimetype($media->storage_path);
|
|
|
+ $size = $filesystem->getSize($media->storage_path);
|
|
|
+
|
|
|
+ $type = explode('/', $media->mimetype)[0];
|
|
|
+ if ($type === 'image' && !isDisplayableImage($media->mimetype)) {
|
|
|
+ $type = 'application';
|
|
|
+ $media->mimetype = 'application/octet-stream';
|
|
|
+ }
|
|
|
+ if ($type === 'text') {
|
|
|
+ if ($size <= (200 * 1024)) { // less than 200 KB
|
|
|
+ $media->text = $filesystem->read($media->storage_path);
|
|
|
+ } else {
|
|
|
+ $type = 'application';
|
|
|
+ $media->mimetype = 'application/octet-stream';
|
|
|
+ }
|
|
|
+ }
|
|
|
+ $media->size = humanFileSize($size);
|
|
|
+
|
|
|
+ } catch (FileNotFoundException $e) {
|
|
|
+ throw new HttpNotFoundException($request);
|
|
|
+ }
|
|
|
+
|
|
|
+ return view()->render($response, 'upload/public.twig', [
|
|
|
+ 'delete_token' => $token,
|
|
|
+ 'media' => $media,
|
|
|
+ 'type' => $type,
|
|
|
+ 'extension' => pathinfo($media->filename, PATHINFO_EXTENSION),
|
|
|
+ ]);
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * @param Request $request
|
|
|
+ * @param Response $response
|
|
|
+ * @param int $id
|
|
|
+ * @return Response
|
|
|
+ * @throws FileNotFoundException
|
|
|
+ * @throws HttpNotFoundException
|
|
|
+ */
|
|
|
+ public function getRawById(Request $request, Response $response, int $id): Response
|
|
|
+ {
|
|
|
+ $media = $this->database->query('SELECT * FROM `uploads` WHERE `id` = ? LIMIT 1', $id)->fetch();
|
|
|
+
|
|
|
+ if (!$media) {
|
|
|
+ throw new HttpNotFoundException($request);
|
|
|
+ }
|
|
|
+
|
|
|
+ return $this->streamMedia($request, $response, $this->storage, $media);
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * @param Request $request
|
|
|
+ * @param Response $response
|
|
|
+ * @param string $userCode
|
|
|
+ * @param string $mediaCode
|
|
|
+ * @param string|null $ext
|
|
|
+ * @return Response
|
|
|
+ * @throws FileNotFoundException
|
|
|
+ * @throws HttpBadRequestException
|
|
|
+ * @throws HttpNotFoundException
|
|
|
+ */
|
|
|
+ public function getRaw(Request $request, Response $response, string $userCode, string $mediaCode, ?string $ext = null): Response
|
|
|
+ {
|
|
|
+ $media = $this->getMedia($userCode, $mediaCode);
|
|
|
+
|
|
|
+ if (!$media || !$media->published && $this->session->get('user_id') !== $media->user_id && !$this->session->get('admin', false)) {
|
|
|
+ throw new HttpNotFoundException($request);
|
|
|
+ }
|
|
|
+
|
|
|
+ if ($ext !== null && pathinfo($media->filename, PATHINFO_EXTENSION) !== $ext) {
|
|
|
+ throw new HttpBadRequestException($request);
|
|
|
+ }
|
|
|
+
|
|
|
+ return $this->streamMedia($request, $response, $this->storage, $media);
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+ /**
|
|
|
+ * @param Request $request
|
|
|
+ * @param Response $response
|
|
|
+ * @param string $userCode
|
|
|
+ * @param string $mediaCode
|
|
|
+ * @return Response
|
|
|
+ * @throws FileNotFoundException
|
|
|
+ * @throws HttpNotFoundException
|
|
|
+ */
|
|
|
+ public function download(Request $request, Response $response, string $userCode, string $mediaCode): Response
|
|
|
+ {
|
|
|
+ $media = $this->getMedia($userCode, $mediaCode);
|
|
|
+
|
|
|
+ if (!$media || !$media->published && $this->session->get('user_id') !== $media->user_id && !$this->session->get('admin', false)) {
|
|
|
+ throw new HttpNotFoundException($request);
|
|
|
+ }
|
|
|
+ return $this->streamMedia($request, $response, $this->storage, $media, 'attachment');
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * @param Request $request
|
|
|
+ * @param Response $response
|
|
|
+ * @param int $id
|
|
|
+ * @return Response
|
|
|
+ * @throws HttpNotFoundException
|
|
|
+ */
|
|
|
+ public function togglePublish(Request $request, Response $response, int $id): Response
|
|
|
+ {
|
|
|
+ if ($this->session->get('admin')) {
|
|
|
+ $media = $this->database->query('SELECT * FROM `uploads` WHERE `id` = ? LIMIT 1', $id)->fetch();
|
|
|
+ } else {
|
|
|
+ $media = $this->database->query('SELECT * FROM `uploads` WHERE `id` = ? AND `user_id` = ? LIMIT 1', [$id, $this->session->get('user_id')])->fetch();
|
|
|
+ }
|
|
|
+
|
|
|
+ if (!$media) {
|
|
|
+ throw new HttpNotFoundException($request);
|
|
|
+ }
|
|
|
+
|
|
|
+ $this->database->query('UPDATE `uploads` SET `published`=? WHERE `id`=?', [$media->published ? 0 : 1, $media->id]);
|
|
|
+
|
|
|
+ return $response;
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * @param Request $request
|
|
|
+ * @param Response $response
|
|
|
+ * @param int $id
|
|
|
+ * @return Response
|
|
|
+ * @throws HttpNotFoundException
|
|
|
+ * @throws HttpUnauthorizedException
|
|
|
+ */
|
|
|
+ public function delete(Request $request, Response $response, int $id): Response
|
|
|
+ {
|
|
|
+ $media = $this->database->query('SELECT * FROM `uploads` WHERE `id` = ? LIMIT 1', $id)->fetch();
|
|
|
+
|
|
|
+ if (!$media) {
|
|
|
+ throw new HttpNotFoundException($request);
|
|
|
+ }
|
|
|
+
|
|
|
+ if ($this->session->get('admin', false) || $media->user_id === $this->session->get('user_id')) {
|
|
|
+ $this->deleteMedia($request, $media->storage_path, $id);
|
|
|
+ $this->logger->info('User '.$this->session->get('username').' deleted a media.', [$id]);
|
|
|
+ $this->session->set('used_space', humanFileSize($this->getUsedSpaceByUser($this->session->get('user_id'))));
|
|
|
+ } else {
|
|
|
+ throw new HttpUnauthorizedException($request);
|
|
|
+ }
|
|
|
+
|
|
|
+ return $response;
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * @param Request $request
|
|
|
+ * @param Response $response
|
|
|
+ * @param string $userCode
|
|
|
+ * @param string $mediaCode
|
|
|
+ * @param string $token
|
|
|
+ * @return Response
|
|
|
+ * @throws HttpNotFoundException
|
|
|
+ * @throws HttpUnauthorizedException
|
|
|
+ */
|
|
|
+ public function deleteByToken(Request $request, Response $response, string $userCode, string $mediaCode, string $token): Response
|
|
|
+ {
|
|
|
+ $media = $this->getMedia($userCode, $mediaCode);
|
|
|
+
|
|
|
+ if (!$media) {
|
|
|
+ throw new HttpNotFoundException($request);
|
|
|
+ }
|
|
|
+
|
|
|
+ $user = $this->database->query('SELECT `id`, `active` FROM `users` WHERE `token` = ? LIMIT 1', $token)->fetch();
|
|
|
+
|
|
|
+ if (!$user) {
|
|
|
+ $this->session->alert(lang('token_not_found'), 'danger');
|
|
|
+ return redirect($response, $request->getHeaderLine('Referer'));
|
|
|
+ }
|
|
|
+
|
|
|
+ if (!$user->active) {
|
|
|
+ $this->session->alert(lang('account_disabled'), 'danger');
|
|
|
+ return redirect($response, $request->getHeaderLine('Referer'));
|
|
|
+ }
|
|
|
+
|
|
|
+ if ($this->session->get('admin', false) || $user->id === $media->user_id) {
|
|
|
+ $this->deleteMedia($request, $media->storage_path, $media->mediaId);
|
|
|
+ $this->logger->info('User '.$user->username.' deleted a media via token.', [$media->mediaId]);
|
|
|
+ } else {
|
|
|
+ throw new HttpUnauthorizedException($request);
|
|
|
+ }
|
|
|
+
|
|
|
+ return redirect($response, route('home'));
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * @param Request $request
|
|
|
+ * @param string $storagePath
|
|
|
+ * @param int $id
|
|
|
+ * @throws HttpNotFoundException
|
|
|
+ */
|
|
|
+ protected function deleteMedia(Request $request, string $storagePath, int $id)
|
|
|
+ {
|
|
|
+ try {
|
|
|
+ $this->storage->delete($storagePath);
|
|
|
+ } catch (FileNotFoundException $e) {
|
|
|
+ throw new HttpNotFoundException($request);
|
|
|
+ } finally {
|
|
|
+ $this->database->query('DELETE FROM `uploads` WHERE `id` = ?', $id);
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * @param $userCode
|
|
|
+ * @param $mediaCode
|
|
|
+ * @return mixed
|
|
|
+ */
|
|
|
+ protected function getMedia($userCode, $mediaCode)
|
|
|
+ {
|
|
|
+ $mediaCode = pathinfo($mediaCode)['filename'];
|
|
|
+
|
|
|
+ $media = $this->database->query('SELECT `uploads`.*, `users`.*, `users`.`id` AS `userId`, `uploads`.`id` AS `mediaId` FROM `uploads` INNER JOIN `users` ON `uploads`.`user_id` = `users`.`id` WHERE `user_code` = ? AND `uploads`.`code` = ? LIMIT 1', [
|
|
|
+ $userCode,
|
|
|
+ $mediaCode,
|
|
|
+ ])->fetch();
|
|
|
+
|
|
|
+ return $media;
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * @param Request $request
|
|
|
+ * @param Response $response
|
|
|
+ * @param Filesystem $storage
|
|
|
+ * @param $media
|
|
|
+ * @param string $disposition
|
|
|
+ * @return Response
|
|
|
+ * @throws FileNotFoundException
|
|
|
+ */
|
|
|
+ protected function streamMedia(Request $request, Response $response, Filesystem $storage, $media, string $disposition = 'inline'): Response
|
|
|
+ {
|
|
|
+ set_time_limit(0);
|
|
|
+ $mime = $storage->getMimetype($media->storage_path);
|
|
|
+
|
|
|
+ if (param($request, 'width') !== null && explode('/', $mime)[0] === 'image') {
|
|
|
+ return $this->makeThumbnail($storage, $media, param($request, 'width'), param($request, 'height'), $disposition);
|
|
|
+ } else {
|
|
|
+ $stream = new Stream($storage->readStream($media->storage_path));
|
|
|
+
|
|
|
+ if (!in_array(explode('/', $mime)[0], ['image', 'video', 'audio']) || $disposition === 'attachment') {
|
|
|
+ return $response->withHeader('Content-Type', $mime)
|
|
|
+ ->withHeader('Content-Disposition', $disposition.'; filename="'.$media->filename.'"')
|
|
|
+ ->withHeader('Content-Length', $stream->getSize())
|
|
|
+ ->withBody($stream);
|
|
|
+ }
|
|
|
+
|
|
|
+ if (isset($request->getServerParams()['HTTP_RANGE'])) {
|
|
|
+ return $this->handlePartialRequest($response, $stream, $request->getServerParams()['HTTP_RANGE'], $disposition, $media, $mime);
|
|
|
+ }
|
|
|
+
|
|
|
+ return $response->withHeader('Content-Type', $mime)
|
|
|
+ ->withHeader('Content-Length', $stream->getSize())
|
|
|
+ ->withHeader('Accept-Ranges', 'bytes')
|
|
|
+ ->withBody($stream);
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * @param Filesystem $storage
|
|
|
+ * @param $media
|
|
|
+ * @param null $width
|
|
|
+ * @param null $height
|
|
|
+ * @param string $disposition
|
|
|
+ * @return Response
|
|
|
+ * @throws FileNotFoundException
|
|
|
+ */
|
|
|
+ protected function makeThumbnail(Filesystem $storage, $media, $width = null, $height = null, string $disposition = 'inline')
|
|
|
+ {
|
|
|
+ return Image::make($storage->readStream($media->storage_path))
|
|
|
+ ->resize($width, $height, function (Constraint $constraint) {
|
|
|
+ $constraint->aspectRatio();
|
|
|
+ })
|
|
|
+ ->resizeCanvas($width, $height, 'center')
|
|
|
+ ->psrResponse('png')
|
|
|
+ ->withHeader('Content-Disposition', $disposition.';filename="scaled-'.pathinfo($media->filename, PATHINFO_FILENAME).'.png"');
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * @param Response $response
|
|
|
+ * @param Stream $stream
|
|
|
+ * @param string $range
|
|
|
+ * @param string $disposition
|
|
|
+ * @param $media
|
|
|
+ * @param $mime
|
|
|
+ * @return Response
|
|
|
+ */
|
|
|
+ protected function handlePartialRequest(Response $response, Stream $stream, string $range, string $disposition, $media, $mime)
|
|
|
+ {
|
|
|
+ $end = $stream->getSize() - 1;
|
|
|
+ list(, $range) = explode('=', $range, 2);
|
|
|
+
|
|
|
+ if (strpos($range, ',') !== false) {
|
|
|
+ return $response->withHeader('Content-Type', $mime)
|
|
|
+ ->withHeader('Content-Disposition', $disposition.'; filename="'.$media->filename.'"')
|
|
|
+ ->withHeader('Content-Length', $stream->getSize())
|
|
|
+ ->withHeader('Accept-Ranges', 'bytes')
|
|
|
+ ->withHeader('Content-Range', "0,{$stream->getSize()}")
|
|
|
+ ->withStatus(416)
|
|
|
+ ->withBody($stream);
|
|
|
+ }
|
|
|
+
|
|
|
+ if ($range === '-') {
|
|
|
+ $start = $stream->getSize() - (int)substr($range, 1);
|
|
|
+ } else {
|
|
|
+ $range = explode('-', $range);
|
|
|
+ $start = (int)$range[0];
|
|
|
+ $end = (isset($range[1]) && is_numeric($range[1])) ? (int)$range[1] : $stream->getSize();
|
|
|
+ }
|
|
|
+
|
|
|
+ $end = ($end > $stream->getSize() - 1) ? $stream->getSize() - 1 : $end;
|
|
|
+ $stream->seek($start);
|
|
|
+
|
|
|
+ header("Content-Type: $mime");
|
|
|
+ header('Content-Length: '.($end - $start + 1));
|
|
|
+ header('Accept-Ranges: bytes');
|
|
|
+ header("Content-Range: bytes $start-$end/{$stream->getSize()}");
|
|
|
+
|
|
|
+ http_response_code(206);
|
|
|
+ ob_end_clean();
|
|
|
+
|
|
|
+ $buffer = 16348;
|
|
|
+ $readed = $start;
|
|
|
+ while ($readed < $end) {
|
|
|
+ if ($readed + $buffer > $end) {
|
|
|
+ $buffer = $end - $readed + 1;
|
|
|
+ }
|
|
|
+ echo $stream->read($buffer);
|
|
|
+ $readed += $buffer;
|
|
|
+ }
|
|
|
+
|
|
|
+ exit(0);
|
|
|
+ }
|
|
|
+}
|