2020-08-09 01:10:25 +09:00
|
|
|
<?php
|
|
|
|
|
|
|
|
// {{{ License
|
|
|
|
|
|
|
|
// This file is part of GNU social - https://www.gnu.org/software/social
|
|
|
|
//
|
|
|
|
// GNU social is free software: you can redistribute it and/or modify
|
|
|
|
// it under the terms of the GNU Affero General Public License as published by
|
|
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
|
|
// (at your option) any later version.
|
|
|
|
//
|
|
|
|
// GNU social is distributed in the hope that it will be useful,
|
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
// GNU Affero General Public License for more details.
|
|
|
|
//
|
|
|
|
// You should have received a copy of the GNU Affero General Public License
|
|
|
|
// along with GNU social. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
|
|
|
// }}}
|
|
|
|
|
2021-04-18 10:17:57 +09:00
|
|
|
namespace App\Controller;
|
2020-08-09 01:10:25 +09:00
|
|
|
|
|
|
|
use App\Core\Controller;
|
2021-04-19 16:28:53 +09:00
|
|
|
use App\Core\DB\DB;
|
2021-04-29 00:01:40 +09:00
|
|
|
use App\Core\Event;
|
2021-04-19 16:28:53 +09:00
|
|
|
use App\Core\GSFile;
|
2021-04-29 06:25:35 +09:00
|
|
|
use App\Core\Router\Router;
|
2021-04-19 16:28:53 +09:00
|
|
|
use App\Entity\AttachmentThumbnail;
|
|
|
|
use App\Util\Common;
|
2021-04-29 00:01:40 +09:00
|
|
|
use App\Util\Exception\ClientException;
|
2021-04-19 20:20:10 +09:00
|
|
|
use App\Util\Exception\NotFoundException;
|
|
|
|
use App\Util\Exception\ServerException;
|
2021-04-19 16:28:53 +09:00
|
|
|
use Symfony\Component\HttpFoundation\HeaderUtils;
|
2020-08-09 01:10:25 +09:00
|
|
|
use Symfony\Component\HttpFoundation\Request;
|
2021-04-19 20:20:10 +09:00
|
|
|
use Symfony\Component\HttpFoundation\Response;
|
2020-08-09 01:10:25 +09:00
|
|
|
|
2021-04-18 10:17:57 +09:00
|
|
|
class Attachment extends Controller
|
2020-08-09 01:10:25 +09:00
|
|
|
{
|
2021-04-29 06:25:35 +09:00
|
|
|
private function attachment(int $id, callable $handle)
|
2021-04-18 13:47:16 +09:00
|
|
|
{
|
2021-04-29 00:01:40 +09:00
|
|
|
if (Event::handle('AttachmentFileInfo', [$id, &$res]) != Event::stop) {
|
2021-04-29 06:25:35 +09:00
|
|
|
// If no one else claims this attachment, use the default representation
|
2021-04-29 00:01:40 +09:00
|
|
|
$res = GSFile::getAttachmentFileInfo($id);
|
|
|
|
}
|
|
|
|
if (!empty($res)) {
|
2021-04-29 06:25:35 +09:00
|
|
|
return $handle($res);
|
2021-04-29 00:01:40 +09:00
|
|
|
} else {
|
|
|
|
throw new ClientException('No such attachment', 404);
|
|
|
|
}
|
2021-04-18 13:47:16 +09:00
|
|
|
}
|
|
|
|
|
2021-04-29 06:25:35 +09:00
|
|
|
/**
|
|
|
|
* The page where the attachment and it's info is shown
|
|
|
|
*/
|
|
|
|
public function attachment_show(Request $request, int $id)
|
|
|
|
{
|
|
|
|
try {
|
|
|
|
$attachment = DB::findOneBy('attachment', ['id' => $id]);
|
|
|
|
return $this->attachment($id, function ($res) use ($id, $attachment) {
|
|
|
|
return [
|
2021-04-30 09:51:59 +09:00
|
|
|
'_template' => 'attachments/show.html.twig',
|
|
|
|
'title' => $res['title'],
|
|
|
|
'download' => Router::url('attachment_download', ['id' => $id]),
|
|
|
|
'attachment' => $attachment,
|
|
|
|
'right_panel_vars' => ['attachment_id' => $id],
|
2021-04-29 06:25:35 +09:00
|
|
|
];
|
|
|
|
});
|
|
|
|
} catch (NotFoundException) {
|
|
|
|
throw new ClientException('No such attachment', 404);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Display the attachment inline
|
|
|
|
*/
|
2021-04-18 13:47:16 +09:00
|
|
|
public function attachment_view(Request $request, int $id)
|
|
|
|
{
|
2021-04-29 06:25:35 +09:00
|
|
|
return $this->attachment($id, fn (array $res) => GSFile::sendFile($res['filepath'], $res['mimetype'], $res['title'], HeaderUtils::DISPOSITION_INLINE));
|
2021-04-18 13:47:16 +09:00
|
|
|
}
|
|
|
|
|
|
|
|
public function attachment_download(Request $request, int $id)
|
2020-09-05 11:28:50 +09:00
|
|
|
{
|
2021-04-29 06:25:35 +09:00
|
|
|
return $this->attachment($id, fn (array $res) => GSFile::sendFile($res['filepath'], $res['mimetype'], $res['title'], HeaderUtils::DISPOSITION_ATTACHMENT));
|
2021-04-18 13:47:16 +09:00
|
|
|
}
|
|
|
|
|
2021-04-19 20:20:10 +09:00
|
|
|
/**
|
|
|
|
* Controller to produce a thumbnail for a given attachment id
|
|
|
|
*
|
|
|
|
* @param Request $request
|
|
|
|
* @param int $id Attachment ID
|
|
|
|
*
|
|
|
|
* @throws NotFoundException
|
|
|
|
* @throws ServerException
|
|
|
|
*
|
|
|
|
* @return Response
|
|
|
|
*/
|
|
|
|
public function attachment_thumbnail(Request $request, int $id): Response
|
2021-04-18 13:47:16 +09:00
|
|
|
{
|
2021-04-19 16:28:53 +09:00
|
|
|
$attachment = DB::findOneBy('attachment', ['id' => $id]);
|
|
|
|
if (!is_null($attachment->getScope())) {
|
|
|
|
// && ($attachment->scope | VisibilityScope::PUBLIC) != 0
|
|
|
|
// $user = Common::ensureLoggedIn();
|
|
|
|
assert(false, 'Attachment scope not implemented');
|
|
|
|
}
|
|
|
|
|
2021-04-29 06:53:02 +09:00
|
|
|
$default_width = Common::config('thumbnail', 'width');
|
|
|
|
$default_height = Common::config('thumbnail', 'height');
|
|
|
|
$width = $this->int('w') ?: $default_width;
|
|
|
|
$height = $this->int('h') ?: $default_height;
|
|
|
|
$crop = $this->bool('c') ?: false;
|
2021-04-19 16:28:53 +09:00
|
|
|
|
2021-04-29 06:53:02 +09:00
|
|
|
Event::handle('GetAllowedThumbnailSizes', [&$sizes]);
|
|
|
|
if (!in_array(['width' => $width, 'height' => $height], $sizes)) {
|
|
|
|
throw new ClientException('The requested thumbnail dimensions are not allowed', 400); // 400 Bad Request
|
|
|
|
}
|
2021-04-19 16:28:53 +09:00
|
|
|
|
|
|
|
$thumbnail = AttachmentThumbnail::getOrCreate(attachment: $attachment, width: $width, height: $height, crop: $crop);
|
|
|
|
|
|
|
|
$filename = $thumbnail->getFilename();
|
|
|
|
$path = $thumbnail->getPath();
|
|
|
|
|
|
|
|
return GSFile::sendFile(filepath: $path, mimetype: $attachment->getMimetype(), output_filename: $filename, disposition: 'inline');
|
2020-09-05 11:28:50 +09:00
|
|
|
}
|
2020-08-09 01:10:25 +09:00
|
|
|
}
|