1ddb44b4cSGreg Roach<?php 2ddb44b4cSGreg Roach 3ddb44b4cSGreg Roach/** 4ddb44b4cSGreg Roach * webtrees: online genealogy 5ddb44b4cSGreg Roach * Copyright (C) 2021 webtrees development team 6ddb44b4cSGreg Roach * This program is free software: you can redistribute it and/or modify 7ddb44b4cSGreg Roach * it under the terms of the GNU General Public License as published by 8ddb44b4cSGreg Roach * the Free Software Foundation, either version 3 of the License, or 9ddb44b4cSGreg Roach * (at your option) any later version. 10ddb44b4cSGreg Roach * This program is distributed in the hope that it will be useful, 11ddb44b4cSGreg Roach * but WITHOUT ANY WARRANTY; without even the implied warranty of 12ddb44b4cSGreg Roach * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13ddb44b4cSGreg Roach * GNU General Public License for more details. 14ddb44b4cSGreg Roach * You should have received a copy of the GNU General Public License 1589f7189bSGreg Roach * along with this program. If not, see <https://www.gnu.org/licenses/>. 16ddb44b4cSGreg Roach */ 17ddb44b4cSGreg Roach 18ddb44b4cSGreg Roachdeclare(strict_types=1); 19ddb44b4cSGreg Roach 20ddb44b4cSGreg Roachnamespace Fisharebest\Webtrees\Http\RequestHandlers; 21ddb44b4cSGreg Roach 22ddb44b4cSGreg Roachuse Fisharebest\Webtrees\Services\MediaFileService; 23ddb44b4cSGreg Roachuse Fisharebest\Webtrees\Services\PendingChangesService; 24ddb44b4cSGreg Roachuse Fisharebest\Webtrees\Tree; 25ddb44b4cSGreg Roachuse Psr\Http\Message\ResponseInterface; 26ddb44b4cSGreg Roachuse Psr\Http\Message\ServerRequestInterface; 27ddb44b4cSGreg Roachuse Psr\Http\Server\RequestHandlerInterface; 28ddb44b4cSGreg Roach 29ddb44b4cSGreg Roachuse function assert; 30ddb44b4cSGreg Roach 31ddb44b4cSGreg Roach/** 32ddb44b4cSGreg Roach * Create a new media object. 33ddb44b4cSGreg Roach */ 34ddb44b4cSGreg Roachclass CreateMediaObjectFromFile implements RequestHandlerInterface 35ddb44b4cSGreg Roach{ 36*c4943cffSGreg Roach private MediaFileService $media_file_service; 37ddb44b4cSGreg Roach 38*c4943cffSGreg Roach private PendingChangesService $pending_changes_service; 39ddb44b4cSGreg Roach 40ddb44b4cSGreg Roach /** 41ddb44b4cSGreg Roach * CreateMediaObjectFromFileAction constructor. 42ddb44b4cSGreg Roach * 43ddb44b4cSGreg Roach * @param MediaFileService $media_file_service 44ddb44b4cSGreg Roach * @param PendingChangesService $pending_changes_service 45ddb44b4cSGreg Roach */ 46ddb44b4cSGreg Roach public function __construct(MediaFileService $media_file_service, PendingChangesService $pending_changes_service) 47ddb44b4cSGreg Roach { 48ddb44b4cSGreg Roach $this->media_file_service = $media_file_service; 49ddb44b4cSGreg Roach $this->pending_changes_service = $pending_changes_service; 50ddb44b4cSGreg Roach } 51ddb44b4cSGreg Roach 52ddb44b4cSGreg Roach /** 53ddb44b4cSGreg Roach * @param ServerRequestInterface $request 54ddb44b4cSGreg Roach * 55ddb44b4cSGreg Roach * @return ResponseInterface 56ddb44b4cSGreg Roach */ 57ddb44b4cSGreg Roach public function handle(ServerRequestInterface $request): ResponseInterface 58ddb44b4cSGreg Roach { 59ddb44b4cSGreg Roach $tree = $request->getAttribute('tree'); 60ddb44b4cSGreg Roach assert($tree instanceof Tree); 61ddb44b4cSGreg Roach 62ddb44b4cSGreg Roach $params = (array) $request->getParsedBody(); 63ddb44b4cSGreg Roach $file = $params['file'] ?? ''; 64ddb44b4cSGreg Roach $type = $params['type'] ?? ''; 65ddb44b4cSGreg Roach $title = $params['title'] ?? ''; 66ddb44b4cSGreg Roach $note = $params['note'] ?? ''; 67ddb44b4cSGreg Roach 68ddb44b4cSGreg Roach $gedcom = "0 @@ OBJE\n" . $this->media_file_service->createMediaFileGedcom($file, $type, $title, $note); 69ddb44b4cSGreg Roach 70ddb44b4cSGreg Roach $media_object = $tree->createRecord($gedcom); 71ddb44b4cSGreg Roach 72ddb44b4cSGreg Roach // Accept the new record. Rejecting it would leave the filesystem out-of-sync with the genealogy 73ddb44b4cSGreg Roach $this->pending_changes_service->acceptRecord($media_object); 74ddb44b4cSGreg Roach 75ddb44b4cSGreg Roach return redirect($media_object->url()); 76ddb44b4cSGreg Roach } 77ddb44b4cSGreg Roach} 78