xref: /webtrees/app/Module/ModuleCustomTrait.php (revision 89f7189b61a494347591c99bdb92afb7d8b66e1b)
149a243cbSGreg Roach<?php
23976b470SGreg Roach
349a243cbSGreg Roach/**
449a243cbSGreg Roach * webtrees: online genealogy
5*89f7189bSGreg Roach * Copyright (C) 2021 webtrees development team
649a243cbSGreg Roach * This program is free software: you can redistribute it and/or modify
749a243cbSGreg Roach * it under the terms of the GNU General Public License as published by
849a243cbSGreg Roach * the Free Software Foundation, either version 3 of the License, or
949a243cbSGreg Roach * (at your option) any later version.
1049a243cbSGreg Roach * This program is distributed in the hope that it will be useful,
1149a243cbSGreg Roach * but WITHOUT ANY WARRANTY; without even the implied warranty of
1249a243cbSGreg Roach * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
1349a243cbSGreg Roach * GNU General Public License for more details.
1449a243cbSGreg Roach * You should have received a copy of the GNU General Public License
15*89f7189bSGreg Roach * along with this program. If not, see <https://www.gnu.org/licenses/>.
1649a243cbSGreg Roach */
17fcfa147eSGreg Roach
1849a243cbSGreg Roachdeclare(strict_types=1);
1949a243cbSGreg Roach
2049a243cbSGreg Roachnamespace Fisharebest\Webtrees\Module;
2149a243cbSGreg Roach
226ccdf4f0SGreg Roachuse Fig\Http\Message\StatusCodeInterface;
23d501c45dSGreg Roachuse Fisharebest\Webtrees\Exceptions\HttpAccessDeniedException;
24d501c45dSGreg Roachuse Fisharebest\Webtrees\Exceptions\HttpNotFoundException;
25e7f16b43SGreg Roachuse Fisharebest\Webtrees\Mime;
26b11d5678SGreg Roachuse Fisharebest\Webtrees\Registry;
2764d12f7bSGreg Roachuse GuzzleHttp\Client;
2864d12f7bSGreg Roachuse GuzzleHttp\Exception\RequestException;
296ccdf4f0SGreg Roachuse Psr\Http\Message\ResponseInterface;
306ccdf4f0SGreg Roachuse Psr\Http\Message\ServerRequestInterface;
313976b470SGreg Roach
32dec352c1SGreg Roachuse function str_contains;
331abbd7e1SGreg Roachuse function strlen;
34249522f1SGreg Roachuse function strtolower;
359ef73392SGreg Roach
3649a243cbSGreg Roach/**
3749a243cbSGreg Roach * Trait ModuleCustomTrait - default implementation of ModuleCustomInterface
3849a243cbSGreg Roach */
3949a243cbSGreg Roachtrait ModuleCustomTrait
4049a243cbSGreg Roach{
4149a243cbSGreg Roach    /**
4249a243cbSGreg Roach     * The person or organisation who created this module.
4349a243cbSGreg Roach     *
4449a243cbSGreg Roach     * @return string
4549a243cbSGreg Roach     */
46cbf4b7faSGreg Roach    public function customModuleAuthorName(): string
47cbf4b7faSGreg Roach    {
48304fefbeSGreg Roach        return '';
4949a243cbSGreg Roach    }
5049a243cbSGreg Roach
5149a243cbSGreg Roach    /**
5249a243cbSGreg Roach     * The version of this module.
5349a243cbSGreg Roach     *
54304fefbeSGreg Roach     * @return string  e.g. '1.2.3'
5549a243cbSGreg Roach     */
56cbf4b7faSGreg Roach    public function customModuleVersion(): string
57cbf4b7faSGreg Roach    {
58304fefbeSGreg Roach        return '';
5949a243cbSGreg Roach    }
6049a243cbSGreg Roach
6149a243cbSGreg Roach    /**
6249a243cbSGreg Roach     * A URL that will provide the latest version of this module.
6349a243cbSGreg Roach     *
6449a243cbSGreg Roach     * @return string
6549a243cbSGreg Roach     */
66cbf4b7faSGreg Roach    public function customModuleLatestVersionUrl(): string
67cbf4b7faSGreg Roach    {
68304fefbeSGreg Roach        return '';
6949a243cbSGreg Roach    }
7049a243cbSGreg Roach
7149a243cbSGreg Roach    /**
7264d12f7bSGreg Roach     * Fetch the latest version of this module.
7364d12f7bSGreg Roach     *
7464d12f7bSGreg Roach     * @return string
7564d12f7bSGreg Roach     */
7664d12f7bSGreg Roach    public function customModuleLatestVersion(): string
7764d12f7bSGreg Roach    {
7864d12f7bSGreg Roach        // No update URL provided.
7964d12f7bSGreg Roach        if ($this->customModuleLatestVersionUrl() === '') {
8064d12f7bSGreg Roach            return $this->customModuleVersion();
8164d12f7bSGreg Roach        }
8264d12f7bSGreg Roach
836b9cb339SGreg Roach        return Registry::cache()->file()->remember($this->name() . '-latest-version', function () {
8464d12f7bSGreg Roach            try {
8564d12f7bSGreg Roach                $client = new Client([
8664d12f7bSGreg Roach                    'timeout' => 3,
8764d12f7bSGreg Roach                ]);
8864d12f7bSGreg Roach
8964d12f7bSGreg Roach                $response = $client->get($this->customModuleLatestVersionUrl());
9064d12f7bSGreg Roach
9164d12f7bSGreg Roach                if ($response->getStatusCode() === StatusCodeInterface::STATUS_OK) {
9264d12f7bSGreg Roach                    $version = $response->getBody()->getContents();
9364d12f7bSGreg Roach
9464d12f7bSGreg Roach                    // Does the response look like a version?
9564d12f7bSGreg Roach                    if (preg_match('/^\d+\.\d+\.\d+/', $version)) {
9664d12f7bSGreg Roach                        return $version;
9764d12f7bSGreg Roach                    }
9864d12f7bSGreg Roach                }
9964d12f7bSGreg Roach            } catch (RequestException $ex) {
10064d12f7bSGreg Roach                // Can't connect to the server?
10164d12f7bSGreg Roach            }
10264d12f7bSGreg Roach
10364d12f7bSGreg Roach            return $this->customModuleVersion();
10464d12f7bSGreg Roach        }, 86400);
10564d12f7bSGreg Roach    }
10664d12f7bSGreg Roach
10764d12f7bSGreg Roach    /**
10864d12f7bSGreg Roach     * Where to get support for this module.  Perhaps a github repository?
10949a243cbSGreg Roach     *
11049a243cbSGreg Roach     * @return string
11149a243cbSGreg Roach     */
112cbf4b7faSGreg Roach    public function customModuleSupportUrl(): string
113cbf4b7faSGreg Roach    {
114304fefbeSGreg Roach        return '';
11549a243cbSGreg Roach    }
116d37db671SGreg Roach
117d37db671SGreg Roach    /**
118d37db671SGreg Roach     * Additional/updated translations.
119d37db671SGreg Roach     *
120d37db671SGreg Roach     * @param string $language
121d37db671SGreg Roach     *
122f4c767fdSGreg Roach     * @return array<string,string>
123d37db671SGreg Roach     */
124d37db671SGreg Roach    public function customTranslations(string $language): array
125d37db671SGreg Roach    {
126d37db671SGreg Roach        return [];
127d37db671SGreg Roach    }
1289ef73392SGreg Roach
1299ef73392SGreg Roach    /**
1309ef73392SGreg Roach     * Create a URL for an asset.
1319ef73392SGreg Roach     *
1329ef73392SGreg Roach     * @param string $asset e.g. "css/theme.css" or "img/banner.png"
1339ef73392SGreg Roach     *
1349ef73392SGreg Roach     * @return string
1359ef73392SGreg Roach     */
1369ef73392SGreg Roach    public function assetUrl(string $asset): string
1379ef73392SGreg Roach    {
13802086832SGreg Roach        $file = $this->resourcesFolder() . $asset;
1399ef73392SGreg Roach
1409ef73392SGreg Roach        // Add the file's modification time to the URL, so we can set long expiry cache headers.
1419ef73392SGreg Roach        $hash = filemtime($file);
1429ef73392SGreg Roach
1439ef73392SGreg Roach        return route('module', [
1449ef73392SGreg Roach            'module' => $this->name(),
145a81abcafSGreg Roach            'action' => 'Asset',
1469ef73392SGreg Roach            'asset'  => $asset,
1479ef73392SGreg Roach            'hash'   => $hash,
1489ef73392SGreg Roach        ]);
1499ef73392SGreg Roach    }
1509ef73392SGreg Roach
1519ef73392SGreg Roach    /**
1529ef73392SGreg Roach     * Serve a CSS/JS file.
1539ef73392SGreg Roach     *
1546ccdf4f0SGreg Roach     * @param ServerRequestInterface $request
1559ef73392SGreg Roach     *
1566ccdf4f0SGreg Roach     * @return ResponseInterface
1579ef73392SGreg Roach     */
1586ccdf4f0SGreg Roach    public function getAssetAction(ServerRequestInterface $request): ResponseInterface
1599ef73392SGreg Roach    {
1609ef73392SGreg Roach        // The file being requested.  e.g. "css/theme.css"
161e106ff43SGreg Roach        $asset = $request->getQueryParams()['asset'];
1629ef73392SGreg Roach
1639ef73392SGreg Roach        // Do not allow requests that try to access parent folders.
164dec352c1SGreg Roach        if (str_contains($asset, '..')) {
165d501c45dSGreg Roach            throw new HttpAccessDeniedException($asset);
1669ef73392SGreg Roach        }
1679ef73392SGreg Roach
1689ef73392SGreg Roach        // Find the file for this asset.
1699ef73392SGreg Roach        // Note that we could also generate CSS files using views/templates.
170249522f1SGreg Roach        // e.g. $file = view(....)
17102086832SGreg Roach        $file = $this->resourcesFolder() . $asset;
1729ef73392SGreg Roach
1739ef73392SGreg Roach        if (!file_exists($file)) {
174249522f1SGreg Roach            throw new HttpNotFoundException(e($file));
1759ef73392SGreg Roach        }
1769ef73392SGreg Roach
1779ef73392SGreg Roach        $content   = file_get_contents($file);
178249522f1SGreg Roach        $extension = strtolower(pathinfo($asset, PATHINFO_EXTENSION));
179e7f16b43SGreg Roach        $mime_type = Mime::TYPES[$extension] ?? Mime::DEFAULT_TYPE;
1809ef73392SGreg Roach
181b11d5678SGreg Roach        return response($content, StatusCodeInterface::STATUS_OK, [
182b11d5678SGreg Roach            'Cache-Control'  => 'public,max-age=31536000',
183b11d5678SGreg Roach            'Content-Length' => (string) strlen($content),
184b11d5678SGreg Roach            'Content-Type'   => $mime_type,
185b11d5678SGreg Roach        ]);
1869ef73392SGreg Roach    }
18749a243cbSGreg Roach}
188