xref: /webtrees/app/Services/UpgradeService.php (revision fbb4b472d1dc1d9fb2549fead562f4eac63bac3c)
1<?php
2/**
3 * webtrees: online genealogy
4 * Copyright (C) 2019 webtrees development team
5 * This program is free software: you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation, either version 3 of the License, or
8 * (at your option) any later version.
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
13 * You should have received a copy of the GNU General Public License
14 * along with this program. If not, see <http://www.gnu.org/licenses/>.
15 */
16declare(strict_types=1);
17
18namespace Fisharebest\Webtrees\Services;
19
20use Carbon\Carbon;
21use Fisharebest\Webtrees\Exceptions\InternalServerErrorException;
22use Fisharebest\Webtrees\I18N;
23use Fisharebest\Webtrees\Site;
24use Fisharebest\Webtrees\Webtrees;
25use GuzzleHttp\Client;
26use GuzzleHttp\Exception\RequestException;
27use Illuminate\Support\Collection;
28use Illuminate\Support\Str;
29use League\Flysystem\Cached\CachedAdapter;
30use League\Flysystem\Cached\Storage\Memory;
31use League\Flysystem\Filesystem;
32use League\Flysystem\ZipArchive\ZipArchiveAdapter;
33use Symfony\Component\HttpFoundation\Response;
34use ZipArchive;
35use function rewind;
36
37/**
38 * Automatic upgrades.
39 */
40class UpgradeService
41{
42    // Options for fetching files using GuzzleHTTP
43    private const GUZZLE_OPTIONS = [
44        'connect_timeout' => 25,
45        'read_timeout'    => 25,
46        'timeout'         => 55,
47    ];
48
49    // Transfer stream data in blocks of this number of bytes.
50    private const READ_BLOCK_SIZE = 65535;
51
52    // Only check the webtrees server once per day.
53    private const CHECK_FOR_UPDATE_INTERVAL = 24 * 60 * 60;
54
55    // Fetch information about upgrades from here.
56    // Note: earlier versions of webtrees used svn.webtrees.net, so we must maintain both URLs.
57    private const UPDATE_URL = 'https://dev.webtrees.net/build/latest-version.txt';
58
59    // Create this file to put the site into maintenance mode.
60    private const LOCK_FILE = 'data/offline.txt';
61
62    // If the update server doesn't respond after this time, give up.
63    private const HTTP_TIMEOUT = 3.0;
64
65    /** @var TimeoutService */
66    private $timeout_service;
67
68    /**
69     * UpgradeService constructor.
70     *
71     * @param TimeoutService $timeout_service
72     */
73    public function __construct(TimeoutService $timeout_service)
74    {
75        $this->timeout_service = $timeout_service;
76    }
77
78    /**
79     * Unpack webtrees.zip.
80     *
81     * @param string $zip_file
82     * @param string $target_folder
83     */
84    public function extractWebtreesZip(string $zip_file, string $target_folder)
85    {
86        // The Flysystem ZIP archive adapter is painfully slow, so use the native PHP library.
87        $zip = new ZipArchive();
88
89        if ($zip->open($zip_file)) {
90            $zip->extractTo($target_folder);
91            $zip->close();
92        } else {
93            throw new InternalServerErrorException('Cannot read ZIP file. Is it corrupt?');
94        }
95    }
96
97    /**
98     * Create a list of all the files in a webtrees .ZIP archive
99     *
100     * @return Collection
101     */
102    public function webtreesZipContents($zip_file): Collection
103    {
104        $zip_adapter    = new ZipArchiveAdapter($zip_file, null, 'webtrees');
105        $zip_filesystem = new Filesystem(new CachedAdapter($zip_adapter, new Memory()));
106        $paths          = new Collection($zip_filesystem->listContents('', true));
107
108        return $paths->filter(function (array $path): bool {
109            return $path['type'] === 'file';
110        })
111            ->map(function (array $path): string {
112                return $path['path'];
113            });
114    }
115
116    /**
117     * Fetch a file from a URL and save it in a filesystem.
118     * Use streams so that we can copy files larger than our available memory.
119     *
120     * @param string     $url
121     * @param Filesystem $filesystem
122     * @param string     $path
123     *
124     * @return int The number of bytes downloaded
125     */
126    public function downloadFile(string $url, Filesystem $filesystem, string $path): int
127    {
128        // Overwrite any previous/partial/failed download.
129        if ($filesystem->has($path)) {
130            $filesystem->delete($path);
131        }
132
133        // We store the data in PHP temporary storage.
134        $tmp = fopen('php://temp', 'w+');
135
136        // Read from the URL
137        $client   = new Client();
138        $response = $client->get($url, self::GUZZLE_OPTIONS);
139        $stream   = $response->getBody();
140
141        // Download the file to temporary storage.
142        while (!$stream->eof()) {
143            fwrite($tmp, $stream->read(self::READ_BLOCK_SIZE));
144
145            if ($this->timeout_service->isTimeNearlyUp()) {
146                throw new InternalServerErrorException(I18N::translate('The server’s time limit has been reached.'));
147            }
148        }
149
150        if (is_resource($stream)) {
151            fclose($stream);
152        }
153
154        // Copy from temporary storage to the file.
155        $bytes = ftell($tmp);
156        rewind($tmp);
157        $filesystem->writeStream($path, $tmp);
158        fclose($tmp);
159
160        return $bytes;
161    }
162
163    /**
164     * Move (copy and delete) all files from one filesystem to another.
165     *
166     * @param Filesystem $source
167     * @param Filesystem $destination
168     */
169    public function moveFiles(Filesystem $source, Filesystem $destination)
170    {
171        foreach ($source->listContents() as $path) {
172            if ($path['type'] === 'file') {
173                $destination->put($path['path'], $source->read($path['path']));
174                $source->delete($path['path']);
175
176                if ($this->timeout_service->isTimeNearlyUp()) {
177                    throw new InternalServerErrorException(I18N::translate('The server’s time limit has been reached.'));
178                }
179            }
180        }
181    }
182
183    /**
184     * Delete files in $destination that aren't in $source.
185     *
186     * @param Filesystem $filesystem
187     * @param Collection $folders_to_clean
188     * @param Collection   $files_to_keep
189     */
190    public function cleanFiles(Filesystem $filesystem, Collection $folders_to_clean, Collection $files_to_keep)
191    {
192        foreach ($folders_to_clean as $folder_to_clean) {
193            foreach ($filesystem->listContents($folder_to_clean, true) as $path) {
194                if ($path['type'] === 'file' && !$files_to_keep->contains($path['path'])) {
195                    $filesystem->delete($path['path']);
196                }
197
198                // If we run out of time, then just stop.
199                if ($this->timeout_service->isTimeNearlyUp()) {
200                    return;
201                }
202            }
203        }
204    }
205
206    /**
207     * @return bool
208     */
209    public function isUpgradeAvailable(): bool
210    {
211        // If the latest version is unavailable, we will have an empty sting which equates to version 0.
212
213        return version_compare(Webtrees::VERSION, $this->fetchLatestVersion()) < 0;
214    }
215
216    /**
217     * What is the latest version of webtrees.
218     *
219     * @return string
220     */
221    public function latestVersion(): string
222    {
223        $latest_version = $this->fetchLatestVersion();
224
225        [$version] = explode('|', $latest_version);
226
227        return $version;
228    }
229
230    /**
231     * Where can we download the latest version of webtrees.
232     *
233     * @return string
234     */
235    public function downloadUrl(): string
236    {
237        $latest_version = $this->fetchLatestVersion();
238
239        [, , $url] = explode('|', $latest_version . '||');
240
241        return $url;
242    }
243
244    public function startMaintenanceMode(): void
245    {
246        $message = I18N::translate('This website is being upgraded. Try again in a few minutes.');
247
248        file_put_contents(WT_ROOT . self::LOCK_FILE, $message);
249    }
250
251    public function endMaintenanceMode(): void
252    {
253        if (file_exists(WT_ROOT . self::LOCK_FILE)) {
254            unlink(WT_ROOT . self::LOCK_FILE);
255        }
256    }
257
258    /**
259     * Check with the webtrees.net server for the latest version of webtrees.
260     * Fetching the remote file can be slow, so check infrequently, and cache the result.
261     * Pass the current versions of webtrees, PHP and MySQL, as the response
262     * may be different for each. The server logs are used to generate
263     * installation statistics which can be found at http://dev.webtrees.net/statistics.html
264     *
265     * @return string
266     */
267    private function fetchLatestVersion(): string
268    {
269        $last_update_timestamp = (int) Site::getPreference('LATEST_WT_VERSION_TIMESTAMP');
270
271        $current_timestamp = Carbon::now()->timestamp;
272
273        if ($last_update_timestamp < $current_timestamp - self::CHECK_FOR_UPDATE_INTERVAL) {
274            try {
275                $client = new Client([
276                    'timeout' => self::HTTP_TIMEOUT,
277                ]);
278
279                $response = $client->get(self::UPDATE_URL, [
280                    'query' => $this->serverParameters(),
281                ]);
282
283                if ($response->getStatusCode() === Response::HTTP_OK) {
284                    Site::setPreference('LATEST_WT_VERSION', $response->getBody()->getContents());
285                    Site::setPreference('LATEST_WT_VERSION_TIMESTAMP', (string) $current_timestamp);
286                }
287            } catch (RequestException $ex) {
288                // Can't connect to the server?
289                // Use the existing information about latest versions.
290            }
291        }
292
293        return Site::getPreference('LATEST_WT_VERSION');
294    }
295
296    /**
297     * The upgrade server needs to know a little about this server.
298     */
299    private function serverParameters(): array
300    {
301        $operating_system = DIRECTORY_SEPARATOR === '/' ? 'u' : 'w';
302
303        return [
304            'w' => Webtrees::VERSION,
305            'p' => PHP_VERSION,
306            'o' => $operating_system,
307        ];
308    }
309}
310