1<?php 2 3/** 4 * webtrees: online genealogy 5 * Copyright (C) 2021 webtrees development team 6 * This program is free software: you can redistribute it and/or modify 7 * it under the terms of the GNU General Public License as published by 8 * the Free Software Foundation, either version 3 of the License, or 9 * (at your option) any later version. 10 * This program is distributed in the hope that it will be useful, 11 * but WITHOUT ANY WARRANTY; without even the implied warranty of 12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13 * GNU General Public License for more details. 14 * You should have received a copy of the GNU General Public License 15 * along with this program. If not, see <https://www.gnu.org/licenses/>. 16 */ 17 18declare(strict_types=1); 19 20namespace Fisharebest\Webtrees\Http\RequestHandlers; 21 22use Fig\Http\Message\StatusCodeInterface; 23use Fisharebest\Flysystem\Adapter\ChrootAdapter; 24use Fisharebest\Webtrees\Exceptions\HttpServerErrorException; 25use Fisharebest\Webtrees\I18N; 26use Fisharebest\Webtrees\Registry; 27use Fisharebest\Webtrees\Services\GedcomExportService; 28use Fisharebest\Webtrees\Services\TreeService; 29use Fisharebest\Webtrees\Services\UpgradeService; 30use Fisharebest\Webtrees\Tree; 31use Fisharebest\Webtrees\Webtrees; 32use Illuminate\Database\Capsule\Manager as DB; 33use Illuminate\Support\Collection; 34use League\Flysystem\Filesystem; 35use League\Flysystem\FilesystemOperator; 36use Psr\Http\Message\ResponseInterface; 37use Psr\Http\Message\ServerRequestInterface; 38use Psr\Http\Server\RequestHandlerInterface; 39use RuntimeException; 40use Throwable; 41 42use function assert; 43use function date; 44use function e; 45use function fclose; 46use function fopen; 47use function fseek; 48use function intdiv; 49use function microtime; 50use function response; 51use function route; 52use function version_compare; 53use function view; 54 55/** 56 * Upgrade to a new version of webtrees. 57 */ 58class UpgradeWizardStep implements RequestHandlerInterface 59{ 60 // We make the upgrade in a number of small steps to keep within server time limits. 61 private const STEP_CHECK = 'Check'; 62 private const STEP_PREPARE = 'Prepare'; 63 private const STEP_PENDING = 'Pending'; 64 private const STEP_EXPORT = 'Export'; 65 private const STEP_DOWNLOAD = 'Download'; 66 private const STEP_UNZIP = 'Unzip'; 67 private const STEP_COPY = 'Copy'; 68 69 // Where to store our temporary files. 70 private const UPGRADE_FOLDER = 'data/tmp/upgrade/'; 71 72 // Where to store the downloaded ZIP archive. 73 private const ZIP_FILENAME = 'data/tmp/webtrees.zip'; 74 75 // The ZIP archive stores everything inside this top-level folder. 76 private const ZIP_FILE_PREFIX = 'webtrees'; 77 78 // Cruft can accumulate after upgrades. 79 private const FOLDERS_TO_CLEAN = [ 80 'app', 81 'resources', 82 'vendor', 83 ]; 84 85 /** @var GedcomExportService */ 86 private $gedcom_export_service; 87 88 /** @var UpgradeService */ 89 private $upgrade_service; 90 91 /** @var TreeService */ 92 private $tree_service; 93 94 /** 95 * UpgradeController constructor. 96 * 97 * @param GedcomExportService $gedcom_export_service 98 * @param TreeService $tree_service 99 * @param UpgradeService $upgrade_service 100 */ 101 public function __construct( 102 GedcomExportService $gedcom_export_service, 103 TreeService $tree_service, 104 UpgradeService $upgrade_service 105 ) { 106 $this->gedcom_export_service = $gedcom_export_service; 107 $this->tree_service = $tree_service; 108 $this->upgrade_service = $upgrade_service; 109 } 110 111 /** 112 * Perform one step of the wizard 113 * 114 * @param ServerRequestInterface $request 115 * 116 * @return ResponseInterface 117 */ 118 public function handle(ServerRequestInterface $request): ResponseInterface 119 { 120 $root_filesystem = Registry::filesystem()->root(); 121 $data_filesystem = Registry::filesystem()->data(); 122 123 // Somewhere to unpack a .ZIP file 124 $temporary_filesystem = new Filesystem(new ChrootAdapter($root_filesystem, self::UPGRADE_FOLDER)); 125 126 $zip_file = Webtrees::ROOT_DIR . self::ZIP_FILENAME; 127 $zip_folder = Webtrees::ROOT_DIR . self::UPGRADE_FOLDER; 128 129 130 $step = $request->getQueryParams()['step'] ?? self::STEP_CHECK; 131 132 switch ($step) { 133 case self::STEP_CHECK: 134 return $this->wizardStepCheck(); 135 136 case self::STEP_PREPARE: 137 return $this->wizardStepPrepare($root_filesystem); 138 139 case self::STEP_PENDING: 140 return $this->wizardStepPending(); 141 142 case self::STEP_EXPORT: 143 $tree_name = $request->getQueryParams()['tree'] ?? ''; 144 $tree = $this->tree_service->all()[$tree_name]; 145 assert($tree instanceof Tree); 146 147 return $this->wizardStepExport($tree, $data_filesystem); 148 149 case self::STEP_DOWNLOAD: 150 return $this->wizardStepDownload($root_filesystem); 151 152 case self::STEP_UNZIP: 153 return $this->wizardStepUnzip($zip_file, $zip_folder); 154 155 case self::STEP_COPY: 156 return $this->wizardStepCopyAndCleanUp($zip_file, $root_filesystem, $temporary_filesystem); 157 158 default: 159 return response('', StatusCodeInterface::STATUS_NO_CONTENT); 160 } 161 } 162 163 /** 164 * @return ResponseInterface 165 */ 166 private function wizardStepCheck(): ResponseInterface 167 { 168 $latest_version = $this->upgrade_service->latestVersion(); 169 170 if ($latest_version === '') { 171 throw new HttpServerErrorException(I18N::translate('No upgrade information is available.')); 172 } 173 174 if (version_compare(Webtrees::VERSION, $latest_version) >= 0) { 175 $message = I18N::translate('This is the latest version of webtrees. No upgrade is available.'); 176 throw new HttpServerErrorException($message); 177 } 178 179 /* I18N: %s is a version number, such as 1.2.3 */ 180 $alert = I18N::translate('Upgrade to webtrees %s.', e($latest_version)); 181 182 return response(view('components/alert-success', [ 183 'alert' => $alert, 184 ])); 185 } 186 187 /** 188 * Make sure the temporary folder exists. 189 * 190 * @param FilesystemOperator $root_filesystem 191 * 192 * @return ResponseInterface 193 */ 194 private function wizardStepPrepare(FilesystemOperator $root_filesystem): ResponseInterface 195 { 196 $root_filesystem->deleteDirectory(self::UPGRADE_FOLDER); 197 $root_filesystem->createDirectory(self::UPGRADE_FOLDER); 198 199 return response(view('components/alert-success', [ 200 'alert' => I18N::translate('The folder %s has been created.', e(self::UPGRADE_FOLDER)), 201 ])); 202 } 203 204 /** 205 * @return ResponseInterface 206 */ 207 private function wizardStepPending(): ResponseInterface 208 { 209 $changes = DB::table('change')->where('status', '=', 'pending')->exists(); 210 211 if ($changes) { 212 return response(view('components/alert-danger', [ 213 'alert' => I18N::translate('You should accept or reject all pending changes before upgrading.'), 214 ]), StatusCodeInterface::STATUS_INTERNAL_SERVER_ERROR); 215 } 216 217 return response(view('components/alert-success', [ 218 'alert' => I18N::translate('There are no pending changes.'), 219 ])); 220 } 221 222 /** 223 * @param Tree $tree 224 * @param FilesystemOperator $data_filesystem 225 * 226 * @return ResponseInterface 227 */ 228 private function wizardStepExport(Tree $tree, FilesystemOperator $data_filesystem): ResponseInterface 229 { 230 // We store the data in PHP temporary storage. 231 $stream = fopen('php://temp', 'wb+'); 232 233 if ($stream === false) { 234 throw new RuntimeException('Failed to create temporary stream'); 235 } 236 237 $filename = $tree->name() . date('-Y-m-d') . '.ged'; 238 239 $this->gedcom_export_service->export($tree, $stream); 240 241 fseek($stream, 0); 242 $data_filesystem->writeStream($tree->name() . date('-Y-m-d') . '.ged', $stream); 243 fclose($stream); 244 245 return response(view('components/alert-success', [ 246 'alert' => I18N::translate('The family tree has been exported to %s.', e($filename)), 247 ])); 248 } 249 250 /** 251 * @param FilesystemOperator $root_filesystem 252 * 253 * @return ResponseInterface 254 */ 255 private function wizardStepDownload(FilesystemOperator $root_filesystem): ResponseInterface 256 { 257 $start_time = microtime(true); 258 $download_url = $this->upgrade_service->downloadUrl(); 259 260 try { 261 $bytes = $this->upgrade_service->downloadFile($download_url, $root_filesystem, self::ZIP_FILENAME); 262 } catch (Throwable $exception) { 263 throw new HttpServerErrorException($exception->getMessage()); 264 } 265 266 $kb = I18N::number(intdiv($bytes + 1023, 1024)); 267 $end_time = microtime(true); 268 $seconds = I18N::number($end_time - $start_time, 2); 269 270 return response(view('components/alert-success', [ 271 'alert' => I18N::translate('%1$s KB were downloaded in %2$s seconds.', $kb, $seconds), 272 ])); 273 } 274 275 /** 276 * For performance reasons, we use direct filesystem access for this step. 277 * 278 * @param string $zip_file 279 * @param string $zip_folder 280 * 281 * @return ResponseInterface 282 */ 283 private function wizardStepUnzip(string $zip_file, string $zip_folder): ResponseInterface 284 { 285 $start_time = microtime(true); 286 $this->upgrade_service->extractWebtreesZip($zip_file, $zip_folder); 287 $count = $this->upgrade_service->webtreesZipContents($zip_file)->count(); 288 $end_time = microtime(true); 289 $seconds = I18N::number($end_time - $start_time, 2); 290 291 /* I18N: …from the .ZIP file, %2$s is a (fractional) number of seconds */ 292 $alert = I18N::plural('%1$s file was extracted in %2$s seconds.', '%1$s files were extracted in %2$s seconds.', $count, I18N::number($count), $seconds); 293 294 return response(view('components/alert-success', [ 295 'alert' => $alert, 296 ])); 297 } 298 299 /** 300 * @param string $zip_file 301 * @param FilesystemOperator $root_filesystem 302 * @param FilesystemOperator $temporary_filesystem 303 * 304 * @return ResponseInterface 305 */ 306 private function wizardStepCopyAndCleanUp( 307 string $zip_file, 308 FilesystemOperator $root_filesystem, 309 FilesystemOperator $temporary_filesystem 310 ): ResponseInterface { 311 $source_filesystem = new Filesystem(new ChrootAdapter($temporary_filesystem, self::ZIP_FILE_PREFIX)); 312 313 $this->upgrade_service->startMaintenanceMode(); 314 $this->upgrade_service->moveFiles($source_filesystem, $root_filesystem); 315 $this->upgrade_service->endMaintenanceMode(); 316 317 // While we have time, clean up any old files. 318 $files_to_keep = $this->upgrade_service->webtreesZipContents($zip_file); 319 $folders_to_clean = new Collection(self::FOLDERS_TO_CLEAN); 320 321 $this->upgrade_service->cleanFiles($root_filesystem, $folders_to_clean, $files_to_keep); 322 323 $url = route(ControlPanel::class); 324 $alert = I18N::translate('The upgrade is complete.'); 325 $button = '<a href="' . e($url) . '" class="btn btn-primary">' . I18N::translate('continue') . '</a>'; 326 327 return response(view('components/alert-success', [ 328 'alert' => $alert . ' ' . $button, 329 ])); 330 } 331} 332