18c2e8227SGreg Roach<?php 23976b470SGreg Roach 38c2e8227SGreg Roach/** 48c2e8227SGreg Roach * webtrees: online genealogy 5d11be702SGreg Roach * Copyright (C) 2023 webtrees development team 68c2e8227SGreg Roach * This program is free software: you can redistribute it and/or modify 78c2e8227SGreg Roach * it under the terms of the GNU General Public License as published by 88c2e8227SGreg Roach * the Free Software Foundation, either version 3 of the License, or 98c2e8227SGreg Roach * (at your option) any later version. 108c2e8227SGreg Roach * This program is distributed in the hope that it will be useful, 118c2e8227SGreg Roach * but WITHOUT ANY WARRANTY; without even the implied warranty of 128c2e8227SGreg Roach * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 138c2e8227SGreg Roach * GNU General Public License for more details. 148c2e8227SGreg Roach * You should have received a copy of the GNU General Public License 1589f7189bSGreg Roach * along with this program. If not, see <https://www.gnu.org/licenses/>. 168c2e8227SGreg Roach */ 17fcfa147eSGreg Roach 18e7f56f2aSGreg Roachdeclare(strict_types=1); 19e7f56f2aSGreg Roach 2076692c8bSGreg Roachnamespace Fisharebest\Webtrees\Module; 2176692c8bSGreg Roach 22*6f4ec3caSGreg Roachuse Fisharebest\Webtrees\DB; 231d1f373cSGreg Roachuse Fisharebest\Webtrees\Http\RequestHandlers\ControlPanel; 240e62c4b8SGreg Roachuse Fisharebest\Webtrees\I18N; 250e62c4b8SGreg Roachuse Fisharebest\Webtrees\Menu; 2650d6f48cSGreg Roachuse Fisharebest\Webtrees\Services\HtmlService; 271d1f373cSGreg Roachuse Fisharebest\Webtrees\Services\TreeService; 28431d5e92SGreg Roachuse Fisharebest\Webtrees\Site; 290e62c4b8SGreg Roachuse Fisharebest\Webtrees\Tree; 30b55cbc6bSGreg Roachuse Fisharebest\Webtrees\Validator; 3177654037SGreg Roachuse Illuminate\Database\Query\Builder; 3277654037SGreg Roachuse Illuminate\Support\Collection; 336ccdf4f0SGreg Roachuse Psr\Http\Message\ResponseInterface; 346ccdf4f0SGreg Roachuse Psr\Http\Message\ServerRequestInterface; 35f3874e19SGreg Roach 3610e06497SGreg Roachuse function in_array; 371d1f373cSGreg Roachuse function redirect; 381d1f373cSGreg Roachuse function route; 398c2e8227SGreg Roach 408c2e8227SGreg Roach/** 418c2e8227SGreg Roach * Class FrequentlyAskedQuestionsModule 428c2e8227SGreg Roach */ 4337eb8894SGreg Roachclass FrequentlyAskedQuestionsModule extends AbstractModule implements ModuleConfigInterface, ModuleMenuInterface 44c1010edaSGreg Roach{ 4549a243cbSGreg Roach use ModuleConfigTrait; 4649a243cbSGreg Roach use ModuleMenuTrait; 4749a243cbSGreg Roach 4843f2f523SGreg Roach private HtmlService $html_service; 4950d6f48cSGreg Roach 5043f2f523SGreg Roach private TreeService $tree_service; 511d1f373cSGreg Roach 5250d6f48cSGreg Roach /** 5350d6f48cSGreg Roach * @param HtmlService $html_service 541d1f373cSGreg Roach * @param TreeService $tree_service 5550d6f48cSGreg Roach */ 561d1f373cSGreg Roach public function __construct(HtmlService $html_service, TreeService $tree_service) 5750d6f48cSGreg Roach { 5850d6f48cSGreg Roach $this->html_service = $html_service; 591d1f373cSGreg Roach $this->tree_service = $tree_service; 6050d6f48cSGreg Roach } 6150d6f48cSGreg Roach 62961ec755SGreg Roach /** 630cfd6963SGreg Roach * How should this module be identified in the control panel, etc.? 64961ec755SGreg Roach * 65961ec755SGreg Roach * @return string 66961ec755SGreg Roach */ 6749a243cbSGreg Roach public function title(): string 68c1010edaSGreg Roach { 69bbb76c12SGreg Roach /* I18N: Name of a module. Abbreviation for “Frequently Asked Questions” */ 70bbb76c12SGreg Roach return I18N::translate('FAQ'); 718c2e8227SGreg Roach } 728c2e8227SGreg Roach 73961ec755SGreg Roach /** 74961ec755SGreg Roach * A sentence describing what this module does. 75961ec755SGreg Roach * 76961ec755SGreg Roach * @return string 77961ec755SGreg Roach */ 7849a243cbSGreg Roach public function description(): string 79c1010edaSGreg Roach { 80bbb76c12SGreg Roach /* I18N: Description of the “FAQ” module */ 81bbb76c12SGreg Roach return I18N::translate('A list of frequently asked questions and answers.'); 828c2e8227SGreg Roach } 838c2e8227SGreg Roach 8476692c8bSGreg Roach /** 8549a243cbSGreg Roach * The default position for this menu. It can be changed in the control panel. 860ee13198SGreg Roach * 870ee13198SGreg Roach * @return int 880ee13198SGreg Roach */ 898f53f488SRico Sonntag public function defaultMenuOrder(): int 90c1010edaSGreg Roach { 91353b36abSGreg Roach return 8; 928c2e8227SGreg Roach } 938c2e8227SGreg Roach 940ee13198SGreg Roach /** 950ee13198SGreg Roach * A menu, to be added to the main application menu. 960ee13198SGreg Roach * 97aee13b6dSGreg Roach * @param Tree $tree 98aee13b6dSGreg Roach * 990ee13198SGreg Roach * @return Menu|null 1000ee13198SGreg Roach */ 10146295629SGreg Roach public function getMenu(Tree $tree): ?Menu 102c1010edaSGreg Roach { 10365cf5706SGreg Roach if ($this->faqsExist($tree, I18N::languageTag())) { 10449a243cbSGreg Roach return new Menu($this->title(), route('module', [ 10526684e68SGreg Roach 'module' => $this->name(), 106c1010edaSGreg Roach 'action' => 'Show', 1079022ab66SGreg Roach 'tree' => $tree->name(), 10808362db4SGreg Roach ]), 'menu-faq'); 1098c2e8227SGreg Roach } 110b2ce94c6SRico Sonntag 111b2ce94c6SRico Sonntag return null; 1128c2e8227SGreg Roach } 113aee13b6dSGreg Roach 114aee13b6dSGreg Roach /** 11557ab2231SGreg Roach * @param ServerRequestInterface $request 116aee13b6dSGreg Roach * 1176ccdf4f0SGreg Roach * @return ResponseInterface 118aee13b6dSGreg Roach */ 11957ab2231SGreg Roach public function getAdminAction(ServerRequestInterface $request): ResponseInterface 120c1010edaSGreg Roach { 121aee13b6dSGreg Roach $this->layout = 'layouts/administration'; 122aee13b6dSGreg Roach 1231d1f373cSGreg Roach // This module can't run without a tree 124b55cbc6bSGreg Roach $tree = Validator::attributes($request)->treeOptional(); 125e218f363SGreg Roach 1261d1f373cSGreg Roach if (!$tree instanceof Tree) { 127431d5e92SGreg Roach $trees = $this->tree_service->all(); 128431d5e92SGreg Roach 129431d5e92SGreg Roach $tree = $trees->get(Site::getPreference('DEFAULT_GEDCOM')) ?? $trees->first(); 130431d5e92SGreg Roach 131e218f363SGreg Roach if ($tree instanceof Tree) { 132e218f363SGreg Roach return redirect(route('module', ['module' => $this->name(), 'action' => 'Admin', 'tree' => $tree->name()])); 133e218f363SGreg Roach } 134e218f363SGreg Roach 1351d1f373cSGreg Roach return redirect(route(ControlPanel::class)); 1361d1f373cSGreg Roach } 1375229eadeSGreg Roach 13826348dcdSGreg Roach $faqs = $this->faqsForTree($tree); 139aee13b6dSGreg Roach 140748dbe15SGreg Roach $min_block_order = (int) DB::table('block') 14126684e68SGreg Roach ->where('module_name', '=', $this->name()) 1420b5fd0a6SGreg Roach ->where(static function (Builder $query) use ($tree): void { 14377654037SGreg Roach $query 14477654037SGreg Roach ->whereNull('gedcom_id') 14577654037SGreg Roach ->orWhere('gedcom_id', '=', $tree->id()); 14677654037SGreg Roach }) 14777654037SGreg Roach ->min('block_order'); 148aee13b6dSGreg Roach 149748dbe15SGreg Roach $max_block_order = (int) DB::table('block') 15026684e68SGreg Roach ->where('module_name', '=', $this->name()) 1510b5fd0a6SGreg Roach ->where(static function (Builder $query) use ($tree): void { 15277654037SGreg Roach $query 15377654037SGreg Roach ->whereNull('gedcom_id') 15477654037SGreg Roach ->orWhere('gedcom_id', '=', $tree->id()); 15577654037SGreg Roach }) 15677654037SGreg Roach ->max('block_order'); 157aee13b6dSGreg Roach 158cc13d6d8SGreg Roach $title = I18N::translate('Frequently asked questions') . ' — ' . $tree->title(); 159aee13b6dSGreg Roach 160aee13b6dSGreg Roach return $this->viewResponse('modules/faq/config', [ 16183615acfSGreg Roach 'action' => route('module', ['module' => $this->name(), 'action' => 'Admin']), 162aee13b6dSGreg Roach 'faqs' => $faqs, 163aee13b6dSGreg Roach 'max_block_order' => $max_block_order, 164aee13b6dSGreg Roach 'min_block_order' => $min_block_order, 16571378461SGreg Roach 'module' => $this->name(), 166aee13b6dSGreg Roach 'title' => $title, 167aee13b6dSGreg Roach 'tree' => $tree, 1681e653452SGreg Roach 'tree_names' => $this->tree_service->titles(), 169aee13b6dSGreg Roach ]); 170aee13b6dSGreg Roach } 171aee13b6dSGreg Roach 172aee13b6dSGreg Roach /** 1736ccdf4f0SGreg Roach * @param ServerRequestInterface $request 174aee13b6dSGreg Roach * 1756ccdf4f0SGreg Roach * @return ResponseInterface 176aee13b6dSGreg Roach */ 177e218f363SGreg Roach public function postAdminAction(ServerRequestInterface $request): ResponseInterface 178e218f363SGreg Roach { 179e218f363SGreg Roach return redirect(route('module', [ 180e218f363SGreg Roach 'module' => $this->name(), 181e218f363SGreg Roach 'action' => 'Admin', 182748dbe15SGreg Roach 'tree' => Validator::parsedBody($request)->string('tree'), 183e218f363SGreg Roach ])); 184e218f363SGreg Roach } 185e218f363SGreg Roach 186e218f363SGreg Roach /** 187e218f363SGreg Roach * @param ServerRequestInterface $request 188e218f363SGreg Roach * 189e218f363SGreg Roach * @return ResponseInterface 190e218f363SGreg Roach */ 19157ab2231SGreg Roach public function postAdminDeleteAction(ServerRequestInterface $request): ResponseInterface 192c1010edaSGreg Roach { 193748dbe15SGreg Roach $block_id = Validator::queryParams($request)->integer('block_id'); 194aee13b6dSGreg Roach 19577654037SGreg Roach DB::table('block_setting')->where('block_id', '=', $block_id)->delete(); 196aee13b6dSGreg Roach 19777654037SGreg Roach DB::table('block')->where('block_id', '=', $block_id)->delete(); 198aee13b6dSGreg Roach 199c1010edaSGreg Roach $url = route('module', [ 20026684e68SGreg Roach 'module' => $this->name(), 201c1010edaSGreg Roach 'action' => 'Admin', 202c1010edaSGreg Roach ]); 203aee13b6dSGreg Roach 2046ccdf4f0SGreg Roach return redirect($url); 205aee13b6dSGreg Roach } 206aee13b6dSGreg Roach 207aee13b6dSGreg Roach /** 2086ccdf4f0SGreg Roach * @param ServerRequestInterface $request 209aee13b6dSGreg Roach * 2106ccdf4f0SGreg Roach * @return ResponseInterface 211aee13b6dSGreg Roach */ 21257ab2231SGreg Roach public function postAdminMoveDownAction(ServerRequestInterface $request): ResponseInterface 213c1010edaSGreg Roach { 214748dbe15SGreg Roach $block_id = Validator::queryParams($request)->integer('block_id'); 215aee13b6dSGreg Roach 21677654037SGreg Roach $block_order = DB::table('block') 21777654037SGreg Roach ->where('block_id', '=', $block_id) 21877654037SGreg Roach ->value('block_order'); 219aee13b6dSGreg Roach 22077654037SGreg Roach $swap_block = DB::table('block') 22126684e68SGreg Roach ->where('module_name', '=', $this->name()) 22277654037SGreg Roach ->where('block_order', '>', $block_order) 223a9866bf2SGreg Roach ->orderBy('block_order') 22477654037SGreg Roach ->first(); 225aee13b6dSGreg Roach 2261d1f373cSGreg Roach if ($block_order !== null && $swap_block !== null) { 22777654037SGreg Roach DB::table('block') 22877654037SGreg Roach ->where('block_id', '=', $block_id) 22977654037SGreg Roach ->update([ 230aee13b6dSGreg Roach 'block_order' => $swap_block->block_order, 231aee13b6dSGreg Roach ]); 23277654037SGreg Roach 23377654037SGreg Roach DB::table('block') 23477654037SGreg Roach ->where('block_id', '=', $swap_block->block_id) 23577654037SGreg Roach ->update([ 236aee13b6dSGreg Roach 'block_order' => $block_order, 237aee13b6dSGreg Roach ]); 238aee13b6dSGreg Roach } 239aee13b6dSGreg Roach 2401d1f373cSGreg Roach return response(); 241aee13b6dSGreg Roach } 242aee13b6dSGreg Roach 243aee13b6dSGreg Roach /** 2446ccdf4f0SGreg Roach * @param ServerRequestInterface $request 245aee13b6dSGreg Roach * 2466ccdf4f0SGreg Roach * @return ResponseInterface 247aee13b6dSGreg Roach */ 24857ab2231SGreg Roach public function postAdminMoveUpAction(ServerRequestInterface $request): ResponseInterface 249c1010edaSGreg Roach { 250748dbe15SGreg Roach $block_id = Validator::queryParams($request)->integer('block_id'); 251aee13b6dSGreg Roach 25277654037SGreg Roach $block_order = DB::table('block') 25377654037SGreg Roach ->where('block_id', '=', $block_id) 25477654037SGreg Roach ->value('block_order'); 255aee13b6dSGreg Roach 25677654037SGreg Roach $swap_block = DB::table('block') 25726684e68SGreg Roach ->where('module_name', '=', $this->name()) 25877654037SGreg Roach ->where('block_order', '<', $block_order) 2591d1f373cSGreg Roach ->orderBy('block_order', 'desc') 26077654037SGreg Roach ->first(); 261aee13b6dSGreg Roach 2621d1f373cSGreg Roach if ($block_order !== null && $swap_block !== null) { 26377654037SGreg Roach DB::table('block') 26477654037SGreg Roach ->where('block_id', '=', $block_id) 26577654037SGreg Roach ->update([ 266aee13b6dSGreg Roach 'block_order' => $swap_block->block_order, 267aee13b6dSGreg Roach ]); 26877654037SGreg Roach 26977654037SGreg Roach DB::table('block') 27077654037SGreg Roach ->where('block_id', '=', $swap_block->block_id) 27177654037SGreg Roach ->update([ 272aee13b6dSGreg Roach 'block_order' => $block_order, 273aee13b6dSGreg Roach ]); 274aee13b6dSGreg Roach } 275aee13b6dSGreg Roach 2761d1f373cSGreg Roach return response(); 277aee13b6dSGreg Roach } 278aee13b6dSGreg Roach 279aee13b6dSGreg Roach /** 2806ccdf4f0SGreg Roach * @param ServerRequestInterface $request 281aee13b6dSGreg Roach * 2826ccdf4f0SGreg Roach * @return ResponseInterface 283aee13b6dSGreg Roach */ 28457ab2231SGreg Roach public function getAdminEditAction(ServerRequestInterface $request): ResponseInterface 285c1010edaSGreg Roach { 286aee13b6dSGreg Roach $this->layout = 'layouts/administration'; 287aee13b6dSGreg Roach 288748dbe15SGreg Roach $block_id = Validator::queryParams($request)->integer('block_id', 0); 289aee13b6dSGreg Roach 290aee13b6dSGreg Roach if ($block_id === 0) { 291aee13b6dSGreg Roach // Creating a new faq 292aee13b6dSGreg Roach $header = ''; 2931e653452SGreg Roach $body = ''; 2941e653452SGreg Roach $gedcom_id = null; 2951e653452SGreg Roach $block_order = 1 + (int) DB::table('block')->where('module_name', '=', $this->name())->max('block_order'); 29677654037SGreg Roach 297aee13b6dSGreg Roach $languages = []; 298aee13b6dSGreg Roach 299aee13b6dSGreg Roach $title = I18N::translate('Add an FAQ'); 300aee13b6dSGreg Roach } else { 301aee13b6dSGreg Roach // Editing an existing faq 302aee13b6dSGreg Roach $header = $this->getBlockSetting($block_id, 'header'); 3031e653452SGreg Roach $body = $this->getBlockSetting($block_id, 'faqbody'); 3041e653452SGreg Roach $gedcom_id = DB::table('block')->where('block_id', '=', $block_id)->value('gedcom_id'); 3051e653452SGreg Roach $block_order = DB::table('block')->where('block_id', '=', $block_id)->value('block_order'); 30677654037SGreg Roach 307aee13b6dSGreg Roach $languages = explode(',', $this->getBlockSetting($block_id, 'languages')); 308aee13b6dSGreg Roach 309aee13b6dSGreg Roach $title = I18N::translate('Edit the FAQ'); 310aee13b6dSGreg Roach } 311aee13b6dSGreg Roach 3121e653452SGreg Roach $gedcom_ids = $this->tree_service->all() 3131e653452SGreg Roach ->mapWithKeys(static function (Tree $tree): array { 3141e653452SGreg Roach return [$tree->id() => $tree->title()]; 3151e653452SGreg Roach }) 3161e653452SGreg Roach ->all(); 3171e653452SGreg Roach 3181e653452SGreg Roach $gedcom_ids = ['' => I18N::translate('All')] + $gedcom_ids; 319b6c326d8SGreg Roach 320aee13b6dSGreg Roach return $this->viewResponse('modules/faq/edit', [ 321aee13b6dSGreg Roach 'block_id' => $block_id, 322aee13b6dSGreg Roach 'block_order' => $block_order, 323aee13b6dSGreg Roach 'header' => $header, 3241e653452SGreg Roach 'body' => $body, 325aee13b6dSGreg Roach 'languages' => $languages, 326aee13b6dSGreg Roach 'title' => $title, 3271e653452SGreg Roach 'gedcom_id' => $gedcom_id, 3281e653452SGreg Roach 'gedcom_ids' => $gedcom_ids, 329aee13b6dSGreg Roach ]); 330aee13b6dSGreg Roach } 331aee13b6dSGreg Roach 332aee13b6dSGreg Roach /** 3336ccdf4f0SGreg Roach * @param ServerRequestInterface $request 334aee13b6dSGreg Roach * 3356ccdf4f0SGreg Roach * @return ResponseInterface 336aee13b6dSGreg Roach */ 33757ab2231SGreg Roach public function postAdminEditAction(ServerRequestInterface $request): ResponseInterface 338c1010edaSGreg Roach { 339748dbe15SGreg Roach $block_id = Validator::queryParams($request)->integer('block_id', 0); 340748dbe15SGreg Roach $body = Validator::parsedBody($request)->string('body'); 341748dbe15SGreg Roach $header = Validator::parsedBody($request)->string('header'); 342748dbe15SGreg Roach $languages = Validator::parsedBody($request)->array('languages'); 343748dbe15SGreg Roach $gedcom_id = Validator::parsedBody($request)->string('gedcom_id'); 344748dbe15SGreg Roach $block_order = Validator::parsedBody($request)->integer('block_order'); 345aee13b6dSGreg Roach 3461e653452SGreg Roach if ($gedcom_id === '') { 3471e653452SGreg Roach $gedcom_id = null; 3481e653452SGreg Roach } 3491e653452SGreg Roach 3501e653452SGreg Roach $body = $this->html_service->sanitize($body); 35150d6f48cSGreg Roach $header = $this->html_service->sanitize($header); 35250d6f48cSGreg Roach 353aee13b6dSGreg Roach if ($block_id !== 0) { 35477654037SGreg Roach DB::table('block') 35577654037SGreg Roach ->where('block_id', '=', $block_id) 35677654037SGreg Roach ->update([ 35777654037SGreg Roach 'gedcom_id' => $gedcom_id, 35877654037SGreg Roach 'block_order' => $block_order, 359aee13b6dSGreg Roach ]); 360aee13b6dSGreg Roach } else { 36177654037SGreg Roach DB::table('block')->insert([ 36277654037SGreg Roach 'gedcom_id' => $gedcom_id, 36326684e68SGreg Roach 'module_name' => $this->name(), 36477654037SGreg Roach 'block_order' => $block_order, 365aee13b6dSGreg Roach ]); 366aee13b6dSGreg Roach 36777654037SGreg Roach $block_id = (int) DB::connection()->getPdo()->lastInsertId(); 368aee13b6dSGreg Roach } 369aee13b6dSGreg Roach 3701e653452SGreg Roach $this->setBlockSetting($block_id, 'faqbody', $body); 371aee13b6dSGreg Roach $this->setBlockSetting($block_id, 'header', $header); 372aee13b6dSGreg Roach $this->setBlockSetting($block_id, 'languages', implode(',', $languages)); 373aee13b6dSGreg Roach 374c1010edaSGreg Roach $url = route('module', [ 37526684e68SGreg Roach 'module' => $this->name(), 376c1010edaSGreg Roach 'action' => 'Admin', 377c1010edaSGreg Roach ]); 378aee13b6dSGreg Roach 3796ccdf4f0SGreg Roach return redirect($url); 380aee13b6dSGreg Roach } 381aee13b6dSGreg Roach 382b998dbceSGreg Roach /** 38357ab2231SGreg Roach * @param ServerRequestInterface $request 384b998dbceSGreg Roach * 3856ccdf4f0SGreg Roach * @return ResponseInterface 386b998dbceSGreg Roach */ 38757ab2231SGreg Roach public function getShowAction(ServerRequestInterface $request): ResponseInterface 388c1010edaSGreg Roach { 389b55cbc6bSGreg Roach $tree = Validator::attributes($request)->tree(); 39057ab2231SGreg Roach 3918de50a4eSGreg Roach // Filter foreign languages. 39277654037SGreg Roach $faqs = $this->faqsForTree($tree) 393f70bcff5SGreg Roach ->filter(static function (object $faq): bool { 39465cf5706SGreg Roach return $faq->languages === '' || in_array(I18N::languageTag(), explode(',', $faq->languages), true); 3958de50a4eSGreg Roach }); 396aee13b6dSGreg Roach 397aee13b6dSGreg Roach return $this->viewResponse('modules/faq/show', [ 3988de50a4eSGreg Roach 'faqs' => $faqs, 399aee13b6dSGreg Roach 'title' => I18N::translate('Frequently asked questions'), 4008de50a4eSGreg Roach 'tree' => $tree, 401aee13b6dSGreg Roach ]); 402aee13b6dSGreg Roach } 40377654037SGreg Roach 40477654037SGreg Roach /** 40577654037SGreg Roach * @param Tree $tree 40677654037SGreg Roach * 40736779af1SGreg Roach * @return Collection<int,object> 40877654037SGreg Roach */ 40977654037SGreg Roach private function faqsForTree(Tree $tree): Collection 41077654037SGreg Roach { 41177654037SGreg Roach return DB::table('block') 41277654037SGreg Roach ->join('block_setting AS bs1', 'bs1.block_id', '=', 'block.block_id') 41377654037SGreg Roach ->join('block_setting AS bs2', 'bs2.block_id', '=', 'block.block_id') 41477654037SGreg Roach ->join('block_setting AS bs3', 'bs3.block_id', '=', 'block.block_id') 41526684e68SGreg Roach ->where('module_name', '=', $this->name()) 41677654037SGreg Roach ->where('bs1.setting_name', '=', 'header') 41777654037SGreg Roach ->where('bs2.setting_name', '=', 'faqbody') 41877654037SGreg Roach ->where('bs3.setting_name', '=', 'languages') 4190b5fd0a6SGreg Roach ->where(static function (Builder $query) use ($tree): void { 42077654037SGreg Roach $query 42177654037SGreg Roach ->whereNull('gedcom_id') 42277654037SGreg Roach ->orWhere('gedcom_id', '=', $tree->id()); 42377654037SGreg Roach }) 42477654037SGreg Roach ->orderBy('block_order') 42577654037SGreg Roach ->select(['block.block_id', 'block_order', 'gedcom_id', 'bs1.setting_value AS header', 'bs2.setting_value AS faqbody', 'bs3.setting_value AS languages']) 426748dbe15SGreg Roach ->get() 427748dbe15SGreg Roach ->map(static function (object $row): object { 428748dbe15SGreg Roach $row->block_id = (int) $row->block_id; 429748dbe15SGreg Roach $row->block_order = (int) $row->block_order; 430748dbe15SGreg Roach $row->gedcom_id = (int) $row->gedcom_id; 431748dbe15SGreg Roach 432748dbe15SGreg Roach return $row; 433748dbe15SGreg Roach }); 43477654037SGreg Roach } 43577654037SGreg Roach 43677654037SGreg Roach /** 43777654037SGreg Roach * @param Tree $tree 43877654037SGreg Roach * @param string $language 43977654037SGreg Roach * 44077654037SGreg Roach * @return bool 44177654037SGreg Roach */ 44277654037SGreg Roach private function faqsExist(Tree $tree, string $language): bool 44377654037SGreg Roach { 44477654037SGreg Roach return DB::table('block') 44577654037SGreg Roach ->join('block_setting', 'block_setting.block_id', '=', 'block.block_id') 44626684e68SGreg Roach ->where('module_name', '=', $this->name()) 44777654037SGreg Roach ->where('setting_name', '=', 'languages') 4480b5fd0a6SGreg Roach ->where(static function (Builder $query) use ($tree): void { 44977654037SGreg Roach $query 45077654037SGreg Roach ->whereNull('gedcom_id') 45177654037SGreg Roach ->orWhere('gedcom_id', '=', $tree->id()); 45277654037SGreg Roach }) 45377654037SGreg Roach ->select(['setting_value AS languages']) 45477654037SGreg Roach ->get() 455f70bcff5SGreg Roach ->filter(static function (object $faq) use ($language): bool { 4560b5fd0a6SGreg Roach return $faq->languages === '' || in_array($language, explode(',', $faq->languages), true); 45777654037SGreg Roach }) 45877654037SGreg Roach ->isNotEmpty(); 45977654037SGreg Roach } 4608c2e8227SGreg Roach} 461