xref: /webtrees/app/Http/RequestHandlers/RobotsTxt.php (revision d556820b1a7ded827b1d7cc803988e0ebd0451f7)
1<?php
2
3/**
4 * webtrees: online genealogy
5 * Copyright (C) 2022 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 Fisharebest\Webtrees\Http\Middleware\BadBotBlocker;
23use Fisharebest\Webtrees\Module\SiteMapModule;
24use Fisharebest\Webtrees\Services\ModuleService;
25use Fisharebest\Webtrees\Validator;
26use Psr\Http\Message\ResponseInterface;
27use Psr\Http\Message\ServerRequestInterface;
28use Psr\Http\Server\RequestHandlerInterface;
29
30use function response;
31
32use const PHP_URL_PATH;
33
34/**
35 * Generate a robots exclusion file.
36 *
37 * @link https://robotstxt.org
38 */
39class RobotsTxt implements RequestHandlerInterface
40{
41    private const DISALLOWED_PATHS = [
42        'admin',
43        'manager',
44        'moderator',
45        'editor',
46        'account',
47    ];
48
49    private ModuleService $module_service;
50
51    /**
52     * @param ModuleService $module_service
53     */
54    public function __construct(ModuleService $module_service)
55    {
56        $this->module_service = $module_service;
57    }
58
59    /**
60     * @param ServerRequestInterface $request
61     *
62     * @return ResponseInterface
63     */
64    public function handle(ServerRequestInterface $request): ResponseInterface
65    {
66        $base_url = Validator::attributes($request)->string('base_url');
67
68        $data = [
69            'bad_user_agents'  => BadBotBlocker::BAD_ROBOTS,
70            'base_url'         => $base_url,
71            'base_path'        => parse_url($base_url, PHP_URL_PATH) ?? '',
72            'disallowed_paths' => self::DISALLOWED_PATHS,
73            'sitemap_url'      => '',
74        ];
75
76        $sitemap_module = $this->module_service->findByInterface(SiteMapModule::class)->first();
77
78        if ($sitemap_module instanceof SiteMapModule) {
79            $data['sitemap_url'] = route('sitemap-index');
80        }
81
82        return response(view('robots-txt', $data))
83            ->withHeader('Content-type', 'text/plain');
84    }
85}
86