summaryrefslogtreecommitdiff
path: root/app/Http/RequestHandlers/CreateMediaObjectModal.php
diff options
context:
space:
mode:
authorGreg Roach <fisharebest@webtrees.net>2019-10-31 22:57:40 +0000
committerGreg Roach <fisharebest@webtrees.net>2019-10-31 23:00:35 +0000
commitd4265d07c02c7f5ca2855fe55f3ca0b73a86c7a9 (patch)
treee338de68cd9082f96056c578ad7bf7e06f1a9593 /app/Http/RequestHandlers/CreateMediaObjectModal.php
parent852ede8c85e501a9df6f3c9d31e5933428e18cc2 (diff)
downloadwebtrees-d4265d07c02c7f5ca2855fe55f3ca0b73a86c7a9.tar.gz
webtrees-d4265d07c02c7f5ca2855fe55f3ca0b73a86c7a9.tar.bz2
webtrees-d4265d07c02c7f5ca2855fe55f3ca0b73a86c7a9.zip
Refactor controllers as request handlers
Diffstat (limited to 'app/Http/RequestHandlers/CreateMediaObjectModal.php')
-rw-r--r--app/Http/RequestHandlers/CreateMediaObjectModal.php65
1 files changed, 65 insertions, 0 deletions
diff --git a/app/Http/RequestHandlers/CreateMediaObjectModal.php b/app/Http/RequestHandlers/CreateMediaObjectModal.php
new file mode 100644
index 0000000000..d598b00844
--- /dev/null
+++ b/app/Http/RequestHandlers/CreateMediaObjectModal.php
@@ -0,0 +1,65 @@
+<?php
+
+/**
+ * webtrees: online genealogy
+ * Copyright (C) 2019 webtrees development team
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation, either version 3 of the License, or
+ * (at your option) any later version.
+ * This program 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 General Public License for more details.
+ * You should have received a copy of the GNU General Public License
+ * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ */
+
+declare(strict_types=1);
+
+namespace Fisharebest\Webtrees\Http\RequestHandlers;
+
+use Fisharebest\Webtrees\Services\MediaFileService;
+use Fisharebest\Webtrees\Tree;
+use Psr\Http\Message\ResponseInterface;
+use Psr\Http\Message\ServerRequestInterface;
+use Psr\Http\Server\RequestHandlerInterface;
+
+use function assert;
+
+/**
+ * Show a form to create a new media object.
+ */
+class CreateMediaObjectModal implements RequestHandlerInterface
+{
+ /** @var MediaFileService */
+ private $media_file_service;
+
+ /**
+ * CreateMediaObjectModal constructor.
+ *
+ * @param MediaFileService $media_file_service
+ */
+ public function __construct(MediaFileService $media_file_service)
+ {
+ $this->media_file_service = $media_file_service;
+ }
+
+ /**
+ * @param ServerRequestInterface $request
+ *
+ * @return ResponseInterface
+ */
+ public function handle(ServerRequestInterface $request): ResponseInterface
+ {
+ $tree = $request->getAttribute('tree');
+ assert($tree instanceof Tree);
+
+ return response(view('modals/create-media-object', [
+ 'max_upload_size' => $this->media_file_service->maxUploadFilesize(),
+ 'media_types' => $this->media_file_service->mediaTypes(),
+ 'unused_files' => $this->media_file_service->unusedFiles($tree),
+ 'tree' => $tree,
+ ]));
+ }
+}