18c2e8227SGreg Roach<?php 28c2e8227SGreg Roach/** 38c2e8227SGreg Roach * webtrees: online genealogy 48fcd0d32SGreg Roach * Copyright (C) 2019 webtrees development team 58c2e8227SGreg Roach * This program is free software: you can redistribute it and/or modify 68c2e8227SGreg Roach * it under the terms of the GNU General Public License as published by 78c2e8227SGreg Roach * the Free Software Foundation, either version 3 of the License, or 88c2e8227SGreg Roach * (at your option) any later version. 98c2e8227SGreg Roach * This program is distributed in the hope that it will be useful, 108c2e8227SGreg Roach * but WITHOUT ANY WARRANTY; without even the implied warranty of 118c2e8227SGreg Roach * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 128c2e8227SGreg Roach * GNU General Public License for more details. 138c2e8227SGreg Roach * You should have received a copy of the GNU General Public License 148c2e8227SGreg Roach * along with this program. If not, see <http://www.gnu.org/licenses/>. 158c2e8227SGreg Roach */ 16e7f56f2aSGreg Roachdeclare(strict_types=1); 17e7f56f2aSGreg Roach 1876692c8bSGreg Roachnamespace Fisharebest\Webtrees\Module; 1976692c8bSGreg Roach 204459dc9aSGreg Roachuse Fisharebest\Webtrees\Carbon; 21a5f7ed67SGreg Roachuse Fisharebest\Webtrees\FlashMessages; 22a5f7ed67SGreg Roachuse Fisharebest\Webtrees\GedcomRecord; 23b1b85189SGreg Roachuse Fisharebest\Webtrees\Html; 240e62c4b8SGreg Roachuse Fisharebest\Webtrees\I18N; 250e62c4b8SGreg Roachuse Fisharebest\Webtrees\Individual; 260e62c4b8SGreg Roachuse Fisharebest\Webtrees\Media; 270e62c4b8SGreg Roachuse Fisharebest\Webtrees\Note; 280e62c4b8SGreg Roachuse Fisharebest\Webtrees\Repository; 290e62c4b8SGreg Roachuse Fisharebest\Webtrees\Source; 300e62c4b8SGreg Roachuse Fisharebest\Webtrees\Tree; 31fa17fb66SGreg Roachuse Illuminate\Database\Capsule\Manager as DB; 32886b77daSGreg Roachuse Illuminate\Support\Collection; 33a5f7ed67SGreg Roachuse Symfony\Component\HttpFoundation\RedirectResponse; 34a5f7ed67SGreg Roachuse Symfony\Component\HttpFoundation\Request; 35a5f7ed67SGreg Roachuse Symfony\Component\HttpFoundation\Response; 36a5f7ed67SGreg Roachuse Symfony\Component\HttpKernel\Exception\NotFoundHttpException; 378c2e8227SGreg Roach 388c2e8227SGreg Roach/** 398c2e8227SGreg Roach * Class SiteMapModule 408c2e8227SGreg Roach */ 4137eb8894SGreg Roachclass SiteMapModule extends AbstractModule implements ModuleConfigInterface 42c1010edaSGreg Roach{ 4349a243cbSGreg Roach use ModuleConfigTrait; 4449a243cbSGreg Roach 4516d6367aSGreg Roach private const RECORDS_PER_VOLUME = 500; // Keep sitemap files small, for memory, CPU and max_allowed_packet limits. 4616d6367aSGreg Roach private const CACHE_LIFE = 1209600; // Two weeks 478c2e8227SGreg Roach 48a5f7ed67SGreg Roach /** 490cfd6963SGreg Roach * How should this module be identified in the control panel, etc.? 50a5f7ed67SGreg Roach * 51a5f7ed67SGreg Roach * @return string 52a5f7ed67SGreg Roach */ 5349a243cbSGreg Roach public function title(): string 54c1010edaSGreg Roach { 55bbb76c12SGreg Roach /* I18N: Name of a module - see http://en.wikipedia.org/wiki/Sitemaps */ 56bbb76c12SGreg Roach return I18N::translate('Sitemaps'); 578c2e8227SGreg Roach } 588c2e8227SGreg Roach 59a5f7ed67SGreg Roach /** 60a5f7ed67SGreg Roach * A sentence describing what this module does. 61a5f7ed67SGreg Roach * 62a5f7ed67SGreg Roach * @return string 63a5f7ed67SGreg Roach */ 6449a243cbSGreg Roach public function description(): string 65c1010edaSGreg Roach { 66bbb76c12SGreg Roach /* I18N: Description of the “Sitemaps” module */ 67bbb76c12SGreg Roach return I18N::translate('Generate sitemap files for search engines.'); 688c2e8227SGreg Roach } 698c2e8227SGreg Roach 7076692c8bSGreg Roach /** 71a5f7ed67SGreg Roach * @return Response 728c2e8227SGreg Roach */ 7336e59714SGreg Roach public function getAdminAction(): Response 74c1010edaSGreg Roach { 75a5f7ed67SGreg Roach $this->layout = 'layouts/administration'; 76a5f7ed67SGreg Roach 77c1010edaSGreg Roach $sitemap_url = route('module', [ 7826684e68SGreg Roach 'module' => $this->name(), 79c1010edaSGreg Roach 'action' => 'Index', 80c1010edaSGreg Roach ]); 81a5f7ed67SGreg Roach 82a5f7ed67SGreg Roach // This list comes from http://en.wikipedia.org/wiki/Sitemaps 83a5f7ed67SGreg Roach $submit_urls = [ 84a5f7ed67SGreg Roach 'Bing/Yahoo' => Html::url('https://www.bing.com/webmaster/ping.aspx', ['siteMap' => $sitemap_url]), 85a5f7ed67SGreg Roach 'Google' => Html::url('https://www.google.com/webmasters/tools/ping', ['sitemap' => $sitemap_url]), 86a5f7ed67SGreg Roach ]; 87a5f7ed67SGreg Roach 88291c1b19SGreg Roach return $this->viewResponse('modules/sitemap/config', [ 898b67c11aSGreg Roach 'all_trees' => Tree::all(), 90a5f7ed67SGreg Roach 'sitemap_url' => $sitemap_url, 91a5f7ed67SGreg Roach 'submit_urls' => $submit_urls, 9249a243cbSGreg Roach 'title' => $this->title(), 93a5f7ed67SGreg Roach ]); 948c2e8227SGreg Roach } 958c2e8227SGreg Roach 968c2e8227SGreg Roach /** 97a5f7ed67SGreg Roach * @param Request $request 98a5f7ed67SGreg Roach * 99a5f7ed67SGreg Roach * @return RedirectResponse 1008c2e8227SGreg Roach */ 101c1010edaSGreg Roach public function postAdminAction(Request $request): RedirectResponse 102c1010edaSGreg Roach { 1038b67c11aSGreg Roach foreach (Tree::all() as $tree) { 10472cf66d4SGreg Roach $include_in_sitemap = (bool) $request->get('sitemap' . $tree->id()); 105a5f7ed67SGreg Roach $tree->setPreference('include_in_sitemap', (string) $include_in_sitemap); 1068c2e8227SGreg Roach } 107a5f7ed67SGreg Roach 10849a243cbSGreg Roach FlashMessages::addMessage(I18N::translate('The preferences for the module “%s” have been updated.', $this->title()), 'success'); 109a5f7ed67SGreg Roach 110a5f7ed67SGreg Roach return new RedirectResponse($this->getConfigLink()); 1118c2e8227SGreg Roach } 1128c2e8227SGreg Roach 1138c2e8227SGreg Roach /** 114a5f7ed67SGreg Roach * @return Response 1158c2e8227SGreg Roach */ 11636e59714SGreg Roach public function getIndexAction(): Response 117c1010edaSGreg Roach { 118a5f7ed67SGreg Roach $timestamp = (int) $this->getPreference('sitemap.timestamp'); 119a5f7ed67SGreg Roach 1204459dc9aSGreg Roach if ($timestamp > Carbon::now()->subSeconds(self::CACHE_LIFE)->unix()) { 121a5f7ed67SGreg Roach $content = $this->getPreference('sitemap.xml'); 1228c2e8227SGreg Roach } else { 123fa17fb66SGreg Roach $count_individuals = DB::table('individuals') 124fa17fb66SGreg Roach ->groupBy('i_file') 125fa17fb66SGreg Roach ->select([DB::raw('COUNT(*) AS total'), 'i_file']) 126fa17fb66SGreg Roach ->pluck('total', 'i_file'); 127a5f7ed67SGreg Roach 128fa17fb66SGreg Roach $count_media = DB::table('media') 129fa17fb66SGreg Roach ->groupBy('m_file') 130fa17fb66SGreg Roach ->select([DB::raw('COUNT(*) AS total'), 'm_file']) 131fa17fb66SGreg Roach ->pluck('total', 'm_file'); 132a5f7ed67SGreg Roach 133fa17fb66SGreg Roach $count_notes = DB::table('other') 134fa17fb66SGreg Roach ->where('o_type', '=', 'NOTE') 135fa17fb66SGreg Roach ->groupBy('o_file') 136fa17fb66SGreg Roach ->select([DB::raw('COUNT(*) AS total'), 'o_file']) 137fa17fb66SGreg Roach ->pluck('total', 'o_file'); 138a5f7ed67SGreg Roach 139fa17fb66SGreg Roach $count_repositories = DB::table('other') 140fa17fb66SGreg Roach ->where('o_type', '=', 'REPO') 141fa17fb66SGreg Roach ->groupBy('o_file') 142fa17fb66SGreg Roach ->select([DB::raw('COUNT(*) AS total'), 'o_file']) 143fa17fb66SGreg Roach ->pluck('total', 'o_file'); 144a5f7ed67SGreg Roach 145fa17fb66SGreg Roach $count_sources = DB::table('sources') 146fa17fb66SGreg Roach ->groupBy('s_file') 147fa17fb66SGreg Roach ->select([DB::raw('COUNT(*) AS total'), 's_file']) 148fa17fb66SGreg Roach ->pluck('total', 's_file'); 149a5f7ed67SGreg Roach 150a37bbafbSGreg Roach $content = view('modules/sitemap/sitemap-index.xml', [ 1518b67c11aSGreg Roach 'all_trees' => Tree::all(), 152a5f7ed67SGreg Roach 'count_individuals' => $count_individuals, 153a5f7ed67SGreg Roach 'count_media' => $count_media, 154a5f7ed67SGreg Roach 'count_notes' => $count_notes, 155a5f7ed67SGreg Roach 'count_repositories' => $count_repositories, 156a5f7ed67SGreg Roach 'count_sources' => $count_sources, 157a5f7ed67SGreg Roach 'last_mod' => date('Y-m-d'), 158a5f7ed67SGreg Roach 'records_per_volume' => self::RECORDS_PER_VOLUME, 159a5f7ed67SGreg Roach ]); 160a5f7ed67SGreg Roach 161a5f7ed67SGreg Roach $this->setPreference('sitemap.xml', $content); 162a5f7ed67SGreg Roach } 163a5f7ed67SGreg Roach 164a5f7ed67SGreg Roach return new Response($content, Response::HTTP_OK, [ 165a5f7ed67SGreg Roach 'Content-Type' => 'application/xml', 166a5f7ed67SGreg Roach ]); 167a5f7ed67SGreg Roach } 168a5f7ed67SGreg Roach 169a5f7ed67SGreg Roach /** 170a5f7ed67SGreg Roach * @param Request $request 171a5f7ed67SGreg Roach * 172a5f7ed67SGreg Roach * @return Response 173a5f7ed67SGreg Roach */ 174c1010edaSGreg Roach public function getFileAction(Request $request): Response 175c1010edaSGreg Roach { 176a5f7ed67SGreg Roach $file = $request->get('file', ''); 177a5f7ed67SGreg Roach 178a5f7ed67SGreg Roach if (!preg_match('/^(\d+)-([imnrs])-(\d+)$/', $file, $match)) { 179a5f7ed67SGreg Roach throw new NotFoundHttpException('Bad sitemap file'); 180a5f7ed67SGreg Roach } 181a5f7ed67SGreg Roach 182a5f7ed67SGreg Roach $timestamp = (int) $this->getPreference('sitemap-' . $file . '.timestamp'); 1834459dc9aSGreg Roach $expiry_time = Carbon::now()->subSeconds(self::CACHE_LIFE)->unix(); 184a5f7ed67SGreg Roach 185ad98d39dSGreg Roach if ($timestamp > $expiry_time) { 186a5f7ed67SGreg Roach $content = $this->getPreference('sitemap-' . $file . '.xml'); 187a5f7ed67SGreg Roach } else { 188a5f7ed67SGreg Roach $tree = Tree::findById((int) $match[1]); 189a5f7ed67SGreg Roach 190a5f7ed67SGreg Roach if ($tree === null) { 191a5f7ed67SGreg Roach throw new NotFoundHttpException('No such tree'); 192a5f7ed67SGreg Roach } 193a5f7ed67SGreg Roach 194bdb3725aSGreg Roach $records = $this->sitemapRecords($tree, $match[2], self::RECORDS_PER_VOLUME, self::RECORDS_PER_VOLUME * $match[3]); 195a5f7ed67SGreg Roach 196a37bbafbSGreg Roach $content = view('modules/sitemap/sitemap-file.xml', ['records' => $records]); 197a5f7ed67SGreg Roach 198a5f7ed67SGreg Roach $this->setPreference('sitemap.xml', $content); 199a5f7ed67SGreg Roach } 200a5f7ed67SGreg Roach 201a5f7ed67SGreg Roach return new Response($content, Response::HTTP_OK, [ 202a5f7ed67SGreg Roach 'Content-Type' => 'application/xml', 203a5f7ed67SGreg Roach ]); 204a5f7ed67SGreg Roach } 205a5f7ed67SGreg Roach 206a5f7ed67SGreg Roach /** 207a5f7ed67SGreg Roach * @param Tree $tree 208a5f7ed67SGreg Roach * @param string $type 209a5f7ed67SGreg Roach * @param int $limit 210a5f7ed67SGreg Roach * @param int $offset 211a5f7ed67SGreg Roach * 212*54c7f8dfSGreg Roach * @return Collection 213*54c7f8dfSGreg Roach * @return GedcomRecord[] 214a5f7ed67SGreg Roach */ 215886b77daSGreg Roach private function sitemapRecords(Tree $tree, string $type, int $limit, int $offset): Collection 216c1010edaSGreg Roach { 217a5f7ed67SGreg Roach switch ($type) { 2188c2e8227SGreg Roach case 'i': 219a5f7ed67SGreg Roach $records = $this->sitemapIndividuals($tree, $limit, $offset); 220a5f7ed67SGreg Roach break; 221a5f7ed67SGreg Roach 222a5f7ed67SGreg Roach case 'm': 223a5f7ed67SGreg Roach $records = $this->sitemapMedia($tree, $limit, $offset); 224a5f7ed67SGreg Roach break; 225a5f7ed67SGreg Roach 226a5f7ed67SGreg Roach case 'n': 227a5f7ed67SGreg Roach $records = $this->sitemapNotes($tree, $limit, $offset); 228a5f7ed67SGreg Roach break; 229a5f7ed67SGreg Roach 230a5f7ed67SGreg Roach case 'r': 231a5f7ed67SGreg Roach $records = $this->sitemapRepositories($tree, $limit, $offset); 232a5f7ed67SGreg Roach break; 233a5f7ed67SGreg Roach 234a5f7ed67SGreg Roach case 's': 235a5f7ed67SGreg Roach $records = $this->sitemapSources($tree, $limit, $offset); 236a5f7ed67SGreg Roach break; 237a5f7ed67SGreg Roach 238a5f7ed67SGreg Roach default: 239a5f7ed67SGreg Roach throw new NotFoundHttpException('Invalid record type: ' . $type); 240a5f7ed67SGreg Roach } 241a5f7ed67SGreg Roach 242a5f7ed67SGreg Roach // Skip private records. 2434146fabcSGreg Roach $records = $records->filter(GedcomRecord::accessFilter()); 244a5f7ed67SGreg Roach 245a5f7ed67SGreg Roach return $records; 246a5f7ed67SGreg Roach } 247a5f7ed67SGreg Roach 248a5f7ed67SGreg Roach /** 249a5f7ed67SGreg Roach * @param Tree $tree 250a5f7ed67SGreg Roach * @param int $limit 251a5f7ed67SGreg Roach * @param int $offset 252a5f7ed67SGreg Roach * 253*54c7f8dfSGreg Roach * @return Collection 254*54c7f8dfSGreg Roach * @return Individual[] 255a5f7ed67SGreg Roach */ 256886b77daSGreg Roach private function sitemapIndividuals(Tree $tree, int $limit, int $offset): Collection 257c1010edaSGreg Roach { 258886b77daSGreg Roach return DB::table('individuals') 259fa17fb66SGreg Roach ->where('i_file', '=', $tree->id()) 260fa17fb66SGreg Roach ->orderBy('i_id') 261fa17fb66SGreg Roach ->skip($offset) 262fa17fb66SGreg Roach ->take($limit) 263886b77daSGreg Roach ->get() 264c0804649SGreg Roach ->map(Individual::rowMapper()); 2658c2e8227SGreg Roach } 266a5f7ed67SGreg Roach 267a5f7ed67SGreg Roach /** 268a5f7ed67SGreg Roach * @param Tree $tree 269a5f7ed67SGreg Roach * @param int $limit 270a5f7ed67SGreg Roach * @param int $offset 271a5f7ed67SGreg Roach * 272*54c7f8dfSGreg Roach * @return Collection 273*54c7f8dfSGreg Roach * @return Media[] 274a5f7ed67SGreg Roach */ 275886b77daSGreg Roach private function sitemapMedia(Tree $tree, int $limit, int $offset): Collection 276c1010edaSGreg Roach { 277886b77daSGreg Roach return DB::table('media') 278fa17fb66SGreg Roach ->where('m_file', '=', $tree->id()) 279fa17fb66SGreg Roach ->orderBy('m_id') 280fa17fb66SGreg Roach ->skip($offset) 281fa17fb66SGreg Roach ->take($limit) 282886b77daSGreg Roach ->get() 283c0804649SGreg Roach ->map(Media::rowMapper()); 2848c2e8227SGreg Roach } 2858c2e8227SGreg Roach 2868c2e8227SGreg Roach /** 287a5f7ed67SGreg Roach * @param Tree $tree 288a5f7ed67SGreg Roach * @param int $limit 289a5f7ed67SGreg Roach * @param int $offset 290a5f7ed67SGreg Roach * 291*54c7f8dfSGreg Roach * @return Collection 292*54c7f8dfSGreg Roach * @return Note[] 2938c2e8227SGreg Roach */ 294886b77daSGreg Roach private function sitemapNotes(Tree $tree, int $limit, int $offset): Collection 295c1010edaSGreg Roach { 296886b77daSGreg Roach return DB::table('other') 297fa17fb66SGreg Roach ->where('o_file', '=', $tree->id()) 298fa17fb66SGreg Roach ->where('o_type', '=', 'NOTE') 299fa17fb66SGreg Roach ->orderBy('o_id') 300fa17fb66SGreg Roach ->skip($offset) 301fa17fb66SGreg Roach ->take($limit) 302886b77daSGreg Roach ->get() 303c0804649SGreg Roach ->map(Note::rowMapper()); 3048c2e8227SGreg Roach } 3058c2e8227SGreg Roach 306a5f7ed67SGreg Roach /** 307a5f7ed67SGreg Roach * @param Tree $tree 308a5f7ed67SGreg Roach * @param int $limit 309a5f7ed67SGreg Roach * @param int $offset 310a5f7ed67SGreg Roach * 311*54c7f8dfSGreg Roach * @return Collection 312*54c7f8dfSGreg Roach * @return Repository[] 313a5f7ed67SGreg Roach */ 314886b77daSGreg Roach private function sitemapRepositories(Tree $tree, int $limit, int $offset): Collection 315c1010edaSGreg Roach { 316886b77daSGreg Roach return DB::table('other') 317fa17fb66SGreg Roach ->where('o_file', '=', $tree->id()) 318fa17fb66SGreg Roach ->where('o_type', '=', 'REPO') 319fa17fb66SGreg Roach ->orderBy('o_id') 320fa17fb66SGreg Roach ->skip($offset) 321fa17fb66SGreg Roach ->take($limit) 322886b77daSGreg Roach ->get() 323c0804649SGreg Roach ->map(Repository::rowMapper()); 324a5f7ed67SGreg Roach } 325a5f7ed67SGreg Roach 326a5f7ed67SGreg Roach /** 327a5f7ed67SGreg Roach * @param Tree $tree 328a5f7ed67SGreg Roach * @param int $limit 329a5f7ed67SGreg Roach * @param int $offset 330a5f7ed67SGreg Roach * 331*54c7f8dfSGreg Roach * @return Collection 332*54c7f8dfSGreg Roach * @return Source[] 333a5f7ed67SGreg Roach */ 334886b77daSGreg Roach private function sitemapSources(Tree $tree, int $limit, int $offset): Collection 335c1010edaSGreg Roach { 336886b77daSGreg Roach return DB::table('sources') 337fa17fb66SGreg Roach ->where('s_file', '=', $tree->id()) 338fa17fb66SGreg Roach ->orderBy('s_id') 339fa17fb66SGreg Roach ->skip($offset) 340fa17fb66SGreg Roach ->take($limit) 341886b77daSGreg Roach ->get() 342c0804649SGreg Roach ->map(Source::rowMapper()); 3438c2e8227SGreg Roach } 3448c2e8227SGreg Roach} 345