. */ declare(strict_types=1); namespace Fisharebest\Webtrees\Http\RequestHandlers; use Fisharebest\Webtrees\Auth; use Fisharebest\Webtrees\GedcomRecord; use Fisharebest\Webtrees\Http\ViewResponseTrait; use Fisharebest\Webtrees\Registry; use Fisharebest\Webtrees\Services\GedcomExportService; use Fisharebest\Webtrees\Tree; use Illuminate\Database\Capsule\Manager as DB; use League\Flysystem\Filesystem; use League\Flysystem\FilesystemException; use League\Flysystem\ZipArchive\FilesystemZipArchiveProvider; use League\Flysystem\ZipArchive\ZipArchiveAdapter; use Psr\Http\Message\ResponseFactoryInterface; use Psr\Http\Message\ResponseInterface; use Psr\Http\Message\ServerRequestInterface; use Psr\Http\Message\StreamFactoryInterface; use Psr\Http\Server\RequestHandlerInterface; use RuntimeException; use function addcslashes; use function app; use function assert; use function fclose; use function fopen; use function pathinfo; use function rewind; use function strtolower; use function tmpfile; use const PATHINFO_EXTENSION; /** * Download a GEDCOM file to the client. */ class ExportGedcomClient implements RequestHandlerInterface { use ViewResponseTrait; /** @var GedcomExportService */ private $gedcom_export_service; /** * ExportGedcomServer constructor. * * @param GedcomExportService $gedcom_export_service */ public function __construct(GedcomExportService $gedcom_export_service) { $this->gedcom_export_service = $gedcom_export_service; } /** * @param ServerRequestInterface $request * * @return ResponseInterface * @throws FilesystemException */ public function handle(ServerRequestInterface $request): ResponseInterface { $tree = $request->getAttribute('tree'); assert($tree instanceof Tree); $data_filesystem = Registry::filesystem()->data(); $params = (array) $request->getParsedBody(); $convert = (bool) ($params['convert'] ?? false); $zip = (bool) ($params['zip'] ?? false); $media = (bool) ($params['media'] ?? false); $media_path = $params['media-path'] ?? ''; $privatize_export = $params['privatize_export']; $access_levels = [ 'gedadmin' => Auth::PRIV_NONE, 'user' => Auth::PRIV_USER, 'visitor' => Auth::PRIV_PRIVATE, 'none' => Auth::PRIV_HIDE, ]; $access_level = $access_levels[$privatize_export]; $encoding = $convert ? 'ANSI' : 'UTF-8'; // What to call the downloaded file $download_filename = $tree->name(); // Force a ".ged" suffix if (strtolower(pathinfo($download_filename, PATHINFO_EXTENSION)) !== 'ged') { $download_filename .= '.ged'; } if ($zip || $media) { // Export the GEDCOM to an in-memory stream. $tmp_stream = fopen('php://temp', 'wb+'); if ($tmp_stream === false) { throw new RuntimeException('Failed to create temporary stream'); } $this->gedcom_export_service->export($tree, $tmp_stream, true, $encoding, $access_level, $media_path); rewind($tmp_stream); $path = $tree->getPreference('MEDIA_DIRECTORY', 'media/'); // Create a new/empty .ZIP file $temp_zip_file = stream_get_meta_data(tmpfile())['uri']; $zip_provider = new FilesystemZipArchiveProvider($temp_zip_file, 0755); $zip_adapter = new ZipArchiveAdapter($zip_provider); $zip_filesystem = new Filesystem($zip_adapter); $zip_filesystem->writeStream($download_filename, $tmp_stream); fclose($tmp_stream); if ($media) { $media_filesystem = $tree->mediaFilesystem($data_filesystem); $records = DB::table('media') ->where('m_file', '=', $tree->id()) ->get() ->map(Registry::mediaFactory()->mapper($tree)) ->filter(GedcomRecord::accessFilter()); foreach ($records as $record) { foreach ($record->mediaFiles() as $media_file) { $from = $media_file->filename(); $to = $path . $media_file->filename(); if (!$media_file->isExternal() && $media_filesystem->fileExists($from) && !$zip_filesystem->fileExists($to)) { $zip_filesystem->writeStream($to, $media_filesystem->readStream($from)); } } } } // Use a stream, so that we do not have to load the entire file into memory. $stream_factory = app(StreamFactoryInterface::class); assert($stream_factory instanceof StreamFactoryInterface); $http_stream = $stream_factory->createStreamFromFile($temp_zip_file); $filename = addcslashes($download_filename, '"') . '.zip'; /** @var ResponseFactoryInterface $response_factory */ $response_factory = app(ResponseFactoryInterface::class); return $response_factory->createResponse() ->withBody($http_stream) ->withHeader('Content-Type', 'application/zip') ->withHeader('Content-Disposition', 'attachment; filename="' . $filename . '"'); } $resource = fopen('php://temp', 'wb+'); if ($resource === false) { throw new RuntimeException('Failed to create temporary stream'); } $this->gedcom_export_service->export($tree, $resource, true, $encoding, $access_level, $media_path); rewind($resource); $charset = $convert ? 'ISO-8859-1' : 'UTF-8'; $stream_factory = app(StreamFactoryInterface::class); assert($stream_factory instanceof StreamFactoryInterface); $http_stream = $stream_factory->createStreamFromResource($resource); /** @var ResponseFactoryInterface $response_factory */ $response_factory = app(ResponseFactoryInterface::class); return $response_factory->createResponse() ->withBody($http_stream) ->withHeader('Content-Type', 'text/x-gedcom; charset=' . $charset) ->withHeader('Content-Disposition', 'attachment; filename="' . addcslashes($download_filename, '"') . '"'); } }