1e2a378d3SGreg Roach<?php 2e2a378d3SGreg Roach/** 3e2a378d3SGreg Roach * webtrees: online genealogy 48fcd0d32SGreg Roach * Copyright (C) 2019 webtrees development team 5e2a378d3SGreg Roach * This program is free software: you can redistribute it and/or modify 6e2a378d3SGreg Roach * it under the terms of the GNU General Public License as published by 7e2a378d3SGreg Roach * the Free Software Foundation, either version 3 of the License, or 8e2a378d3SGreg Roach * (at your option) any later version. 9e2a378d3SGreg Roach * This program is distributed in the hope that it will be useful, 10e2a378d3SGreg Roach * but WITHOUT ANY WARRANTY; without even the implied warranty of 11e2a378d3SGreg Roach * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 12e2a378d3SGreg Roach * GNU General Public License for more details. 13e2a378d3SGreg Roach * You should have received a copy of the GNU General Public License 14e2a378d3SGreg Roach * along with this program. If not, see <http://www.gnu.org/licenses/>. 15e2a378d3SGreg Roach */ 16e7f56f2aSGreg Roachdeclare(strict_types=1); 17e7f56f2aSGreg Roach 1876692c8bSGreg Roachnamespace Fisharebest\Webtrees\Module; 1976692c8bSGreg Roach 200e62c4b8SGreg Roachuse Fisharebest\Webtrees\Auth; 210e62c4b8SGreg Roachuse Fisharebest\Webtrees\Tree; 223f412448SGreg Roachuse Illuminate\Database\Capsule\Manager as DB; 2349a243cbSGreg Roachuse Illuminate\Support\Collection; 2449a243cbSGreg Roachuse stdClass; 25e2ae4578SGreg Roachuse Symfony\Component\HttpFoundation\Response; 26e2a378d3SGreg Roach 27e2a378d3SGreg Roach/** 28e2a378d3SGreg Roach * Class AbstractModule - common functions for blocks 29e2a378d3SGreg Roach */ 3049a243cbSGreg Roachabstract class AbstractModule implements ModuleInterface 31c1010edaSGreg Roach{ 3249a243cbSGreg Roach /** @var string A unique internal name for this module (based on the installation folder). */ 3349a243cbSGreg Roach private $name = ''; 34e2a378d3SGreg Roach 3549a243cbSGreg Roach /** @var int The default access level for this module. It can be changed in the control panel. */ 3649a243cbSGreg Roach protected $access_level = Auth::PRIV_PRIVATE; 3749a243cbSGreg Roach 3849a243cbSGreg Roach /** @var bool The default status for this module. It can be changed in the control panel. */ 3949a243cbSGreg Roach private $enabled = true; 40e2a378d3SGreg Roach 4187503df0SGreg Roach /** @var string For custom modules - optional (recommended) version number */ 4216d6367aSGreg Roach public const CUSTOM_VERSION = ''; 4387503df0SGreg Roach 4487503df0SGreg Roach /** @var string For custom modules - link for support, upgrades, etc. */ 4516d6367aSGreg Roach public const CUSTOM_WEBSITE = ''; 4687503df0SGreg Roach 4749a243cbSGreg Roach /** @var string How to render view responses */ 48e2ae4578SGreg Roach protected $layout = 'layouts/default'; 49e2ae4578SGreg Roach 50*c1afbf58SGreg Roach /** 51*c1afbf58SGreg Roach * How should this module be labelled on tabs, menus, etc.? 52*c1afbf58SGreg Roach * 53*c1afbf58SGreg Roach * @return string 54*c1afbf58SGreg Roach */ 55*c1afbf58SGreg Roach public function title(): string 56*c1afbf58SGreg Roach { 57*c1afbf58SGreg Roach return 'Module name goes here'; 58*c1afbf58SGreg Roach } 59*c1afbf58SGreg Roach 60*c1afbf58SGreg Roach /** 61*c1afbf58SGreg Roach * A sentence describing what this module does. 62*c1afbf58SGreg Roach * 63*c1afbf58SGreg Roach * @return string 64*c1afbf58SGreg Roach */ 6549a243cbSGreg Roach public function description(): string 66c1010edaSGreg Roach { 67*c1afbf58SGreg Roach return $this->title(); 68e2a378d3SGreg Roach } 69e2a378d3SGreg Roach 70e2a378d3SGreg Roach /** 7176692c8bSGreg Roach * Get a block setting. 7276692c8bSGreg Roach * 7349a243cbSGreg Roach * Originally, this was just used for the home-page blocks. Now, it is used by any 7449a243cbSGreg Roach * module that has repeated blocks of content on the same page. 7549a243cbSGreg Roach * 76cbc1590aSGreg Roach * @param int $block_id 77e2a378d3SGreg Roach * @param string $setting_name 7883c7613eSGreg Roach * @param string $default 79e2a378d3SGreg Roach * 8072ac996dSGreg Roach * @return string 81e2a378d3SGreg Roach */ 8249a243cbSGreg Roach protected function getBlockSetting(int $block_id, string $setting_name, string $default = ''): string 83c1010edaSGreg Roach { 8449a243cbSGreg Roach $settings = app('cache.array')->rememberForever('block_setting' . $block_id, function () use ($block_id): array { 8583c7613eSGreg Roach return DB::table('block_setting') 8632a20a8cSGreg Roach ->where('block_id', '=', $block_id) 8783c7613eSGreg Roach ->pluck('setting_value', 'setting_name') 8883c7613eSGreg Roach ->all(); 8983c7613eSGreg Roach }); 90e2a378d3SGreg Roach 9183c7613eSGreg Roach return $settings[$setting_name] ?? $default; 92e2a378d3SGreg Roach } 93e2a378d3SGreg Roach 94e2a378d3SGreg Roach /** 9576692c8bSGreg Roach * Set a block setting. 9676692c8bSGreg Roach * 97cbc1590aSGreg Roach * @param int $block_id 98e2a378d3SGreg Roach * @param string $setting_name 9920ac4041SGreg Roach * @param string $setting_value 100e2a378d3SGreg Roach * 101e2a378d3SGreg Roach * @return $this 102e2a378d3SGreg Roach */ 10349a243cbSGreg Roach protected function setBlockSetting(int $block_id, string $setting_name, string $setting_value): self 104c1010edaSGreg Roach { 10532a20a8cSGreg Roach DB::table('block_setting')->updateOrInsert([ 106e2a378d3SGreg Roach 'block_id' => $block_id, 107e2a378d3SGreg Roach 'setting_name' => $setting_name, 10832a20a8cSGreg Roach ], [ 109e2a378d3SGreg Roach 'setting_value' => $setting_value, 11013abd6f3SGreg Roach ]); 111e2a378d3SGreg Roach 112e2a378d3SGreg Roach return $this; 113e2a378d3SGreg Roach } 114e2a378d3SGreg Roach 115e2a378d3SGreg Roach /** 11649a243cbSGreg Roach * A unique internal name for this module (based on the installation folder). 117e2a378d3SGreg Roach * 11849a243cbSGreg Roach * @param string $name 119e2a378d3SGreg Roach * 12049a243cbSGreg Roach * @return ModuleInterface 121e2a378d3SGreg Roach */ 12249a243cbSGreg Roach public function setName(string $name): ModuleInterface 123c1010edaSGreg Roach { 12449a243cbSGreg Roach $this->name = $name; 12549a243cbSGreg Roach 12649a243cbSGreg Roach return $this; 127e2a378d3SGreg Roach } 128e2a378d3SGreg Roach 129e2a378d3SGreg Roach /** 13049a243cbSGreg Roach * A unique internal name for this module (based on the installation folder). 131e2a378d3SGreg Roach * 132e2a378d3SGreg Roach * @return string 133e2a378d3SGreg Roach */ 1348f53f488SRico Sonntag public function getName(): string 135c1010edaSGreg Roach { 13649a243cbSGreg Roach return $this->name; 137e2a378d3SGreg Roach } 138e2a378d3SGreg Roach 139e2a378d3SGreg Roach /** 14049a243cbSGreg Roach * Modules are either enabled or disabled. 141e2a378d3SGreg Roach * 14249a243cbSGreg Roach * @param bool $enabled 14318d7a90dSGreg Roach * 14449a243cbSGreg Roach * @return ModuleInterface 145e2a378d3SGreg Roach */ 14649a243cbSGreg Roach public function setEnabled(bool $enabled): ModuleInterface 147c1010edaSGreg Roach { 14849a243cbSGreg Roach $this->enabled = $enabled; 14949a243cbSGreg Roach 15049a243cbSGreg Roach return $this; 151e2a378d3SGreg Roach } 15249a243cbSGreg Roach 15349a243cbSGreg Roach /** 15449a243cbSGreg Roach * Modules are either enabled or disabled. 15549a243cbSGreg Roach * 15649a243cbSGreg Roach * @return bool 15749a243cbSGreg Roach */ 15849a243cbSGreg Roach public function isEnabled(): bool 15949a243cbSGreg Roach { 16049a243cbSGreg Roach return $this->enabled; 161e2a378d3SGreg Roach } 162e2a378d3SGreg Roach 163e2a378d3SGreg Roach /** 164e2a378d3SGreg Roach * Get a module setting. Return a default if the setting is not set. 165e2a378d3SGreg Roach * 166e2a378d3SGreg Roach * @param string $setting_name 167e2a378d3SGreg Roach * @param string $default 168e2a378d3SGreg Roach * 16915d603e7SGreg Roach * @return string 170e2a378d3SGreg Roach */ 17149a243cbSGreg Roach public function getPreference($setting_name, $default = ''): string 172c1010edaSGreg Roach { 17349a243cbSGreg Roach return DB::table('module_setting') 17449a243cbSGreg Roach ->where('module_name', '=', $this->getName()) 17549a243cbSGreg Roach ->where('setting_name', '=', $setting_name) 17649a243cbSGreg Roach ->value('setting_value') ?? $default; 177e2a378d3SGreg Roach } 178e2a378d3SGreg Roach 179e2a378d3SGreg Roach /** 180e2a378d3SGreg Roach * Set a module setting. 181e2a378d3SGreg Roach * 182e2a378d3SGreg Roach * Since module settings are NOT NULL, setting a value to NULL will cause 183e2a378d3SGreg Roach * it to be deleted. 184e2a378d3SGreg Roach * 185e2a378d3SGreg Roach * @param string $setting_name 186e2a378d3SGreg Roach * @param string $setting_value 18715d603e7SGreg Roach * 18815d603e7SGreg Roach * @return $this 189e2a378d3SGreg Roach */ 1908f53f488SRico Sonntag public function setPreference($setting_name, $setting_value): self 191c1010edaSGreg Roach { 19232a20a8cSGreg Roach DB::table('module_setting')->updateOrInsert([ 19332a20a8cSGreg Roach 'module_name' => $this->getName(), 19432a20a8cSGreg Roach 'setting_name' => $setting_name, 19532a20a8cSGreg Roach ], [ 19632a20a8cSGreg Roach 'setting_value' => $setting_value, 197c1010edaSGreg Roach ]); 198b7ee5e66SCarmen Pijpers 19915d603e7SGreg Roach return $this; 200e2a378d3SGreg Roach } 201e2a378d3SGreg Roach 202e2a378d3SGreg Roach /** 203e2a378d3SGreg Roach * Get a the current access level for a module 204e2a378d3SGreg Roach * 205e2a378d3SGreg Roach * @param Tree $tree 206cbc1590aSGreg Roach * @param string $component tab, block, menu, etc 207e2a378d3SGreg Roach * 208cbc1590aSGreg Roach * @return int 209e2a378d3SGreg Roach */ 21049a243cbSGreg Roach public function accessLevel(Tree $tree, string $component): int 211c1010edaSGreg Roach { 21249a243cbSGreg Roach $access_levels = app('cache.array') 21349a243cbSGreg Roach ->rememberForever('module_privacy' . $tree->id(), function () use ($tree): Collection { 21449a243cbSGreg Roach return DB::table('module_privacy') 21532a20a8cSGreg Roach ->where('gedcom_id', '=', $tree->id()) 21649a243cbSGreg Roach ->get(); 21749a243cbSGreg Roach }); 218e2a378d3SGreg Roach 21949a243cbSGreg Roach $row = $access_levels->filter(function (stdClass $row) use ($component): bool { 22049a243cbSGreg Roach return $row->component === $component && $row->module_name === $this->getName(); 22149a243cbSGreg Roach })->first(); 222b2ce94c6SRico Sonntag 22349a243cbSGreg Roach return $row ? (int) $row->access_level : $this->access_level; 224e2a378d3SGreg Roach } 225e2ae4578SGreg Roach 226e2ae4578SGreg Roach /** 227e2ae4578SGreg Roach * Create a response object from a view. 228e2ae4578SGreg Roach * 229e2ae4578SGreg Roach * @param string $view_name 230e2ae4578SGreg Roach * @param mixed[] $view_data 231e2ae4578SGreg Roach * @param int $status 232e2ae4578SGreg Roach * 233e2ae4578SGreg Roach * @return Response 234e2ae4578SGreg Roach */ 235c1010edaSGreg Roach protected function viewResponse($view_name, $view_data, $status = Response::HTTP_OK): Response 236c1010edaSGreg Roach { 237e2ae4578SGreg Roach // Make the view's data available to the layout. 238e2ae4578SGreg Roach $layout_data = $view_data; 239e2ae4578SGreg Roach 240e2ae4578SGreg Roach // Render the view 241e2ae4578SGreg Roach $layout_data['content'] = view($view_name, $view_data); 242e2ae4578SGreg Roach 243e2ae4578SGreg Roach // Insert the view into the layout 244e2ae4578SGreg Roach $html = view($this->layout, $layout_data); 245e2ae4578SGreg Roach 246e2ae4578SGreg Roach return new Response($html, $status); 247e2ae4578SGreg Roach } 248e2a378d3SGreg Roach} 249