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; 23e2ae4578SGreg Roachuse Symfony\Component\HttpFoundation\Response; 24e2a378d3SGreg Roach 25e2a378d3SGreg Roach/** 26e2a378d3SGreg Roach * Class AbstractModule - common functions for blocks 27e2a378d3SGreg Roach */ 28c1010edaSGreg Roachabstract class AbstractModule 29c1010edaSGreg Roach{ 30e2a378d3SGreg Roach /** @var string The directory where the module is installed */ 31e2a378d3SGreg Roach private $directory; 32e2a378d3SGreg Roach 33e2a378d3SGreg Roach /** @var string[] A cached copy of the module settings */ 34e2a378d3SGreg Roach private $settings; 35e2a378d3SGreg Roach 3687503df0SGreg Roach /** @var string For custom modules - optional (recommended) version number */ 3716d6367aSGreg Roach public const CUSTOM_VERSION = ''; 3887503df0SGreg Roach 3987503df0SGreg Roach /** @var string For custom modules - link for support, upgrades, etc. */ 4016d6367aSGreg Roach public const CUSTOM_WEBSITE = ''; 4187503df0SGreg Roach 42e2ae4578SGreg Roach protected $layout = 'layouts/default'; 43e2ae4578SGreg Roach 44e2a378d3SGreg Roach /** 45e2a378d3SGreg Roach * Create a new module. 46e2a378d3SGreg Roach * 47e2a378d3SGreg Roach * @param string $directory Where is this module installed 48e2a378d3SGreg Roach */ 49027c6af4SGreg Roach public function __construct(string $directory) 50c1010edaSGreg Roach { 51e2a378d3SGreg Roach $this->directory = $directory; 52e2a378d3SGreg Roach } 53e2a378d3SGreg Roach 54e2a378d3SGreg Roach /** 5576692c8bSGreg Roach * Get a block setting. 5676692c8bSGreg Roach * 57cbc1590aSGreg Roach * @param int $block_id 58e2a378d3SGreg Roach * @param string $setting_name 59*83c7613eSGreg Roach * @param string $default 60e2a378d3SGreg Roach * 6172ac996dSGreg Roach * @return string 62e2a378d3SGreg Roach */ 63*83c7613eSGreg Roach public function getBlockSetting(int $block_id, string $setting_name, string $default = ''): string 64c1010edaSGreg Roach { 65*83c7613eSGreg Roach $settings = app('cache.array')->rememberForever('block_setting' . $block_id, function () use ($block_id) { 66*83c7613eSGreg Roach return DB::table('block_setting') 6732a20a8cSGreg Roach ->where('block_id', '=', $block_id) 68*83c7613eSGreg Roach ->pluck('setting_value', 'setting_name') 69*83c7613eSGreg Roach ->all(); 70*83c7613eSGreg Roach }); 71e2a378d3SGreg Roach 72*83c7613eSGreg Roach return $settings[$setting_name] ?? $default; 73e2a378d3SGreg Roach } 74e2a378d3SGreg Roach 75e2a378d3SGreg Roach /** 7676692c8bSGreg Roach * Set a block setting. 7776692c8bSGreg Roach * 78cbc1590aSGreg Roach * @param int $block_id 79e2a378d3SGreg Roach * @param string $setting_name 8020ac4041SGreg Roach * @param string $setting_value 81e2a378d3SGreg Roach * 82e2a378d3SGreg Roach * @return $this 83e2a378d3SGreg Roach */ 848f53f488SRico Sonntag public function setBlockSetting(int $block_id, string $setting_name, string $setting_value): self 85c1010edaSGreg Roach { 8632a20a8cSGreg Roach DB::table('block_setting')->updateOrInsert([ 87e2a378d3SGreg Roach 'block_id' => $block_id, 88e2a378d3SGreg Roach 'setting_name' => $setting_name, 8932a20a8cSGreg Roach ], [ 90e2a378d3SGreg Roach 'setting_value' => $setting_value, 9113abd6f3SGreg Roach ]); 92e2a378d3SGreg Roach 93e2a378d3SGreg Roach return $this; 94e2a378d3SGreg Roach } 95e2a378d3SGreg Roach 96e2a378d3SGreg Roach /** 97e2a378d3SGreg Roach * What is the default access level for this module? 98e2a378d3SGreg Roach * 99e2a378d3SGreg Roach * Some modules are aimed at admins or managers, and are not generally shown to users. 100e2a378d3SGreg Roach * 101cbc1590aSGreg Roach * @return int 102e2a378d3SGreg Roach */ 1038f53f488SRico Sonntag public function defaultAccessLevel(): int 104c1010edaSGreg Roach { 105e2a378d3SGreg Roach // Returns one of: Auth::PRIV_HIDE, Auth::PRIV_PRIVATE, Auth::PRIV_USER, WT_PRIV_ADMIN 106e2a378d3SGreg Roach return Auth::PRIV_PRIVATE; 107e2a378d3SGreg Roach } 108e2a378d3SGreg Roach 109e2a378d3SGreg Roach /** 110e2a378d3SGreg Roach * Provide a unique internal name for this module 111e2a378d3SGreg Roach * 112e2a378d3SGreg Roach * @return string 113e2a378d3SGreg Roach */ 1148f53f488SRico Sonntag public function getName(): string 115c1010edaSGreg Roach { 116e2a378d3SGreg Roach return basename($this->directory); 117e2a378d3SGreg Roach } 118e2a378d3SGreg Roach 119e2a378d3SGreg Roach /** 120e2a378d3SGreg Roach * Load all the settings for the module into a cache. 121e2a378d3SGreg Roach * 122e2a378d3SGreg Roach * Since modules may have many settings, and will probably want to use 123e2a378d3SGreg Roach * lots of them, load them all at once and cache them. 12418d7a90dSGreg Roach * 12518d7a90dSGreg Roach * @return void 126e2a378d3SGreg Roach */ 127c1010edaSGreg Roach private function loadAllSettings() 128c1010edaSGreg Roach { 129e2a378d3SGreg Roach if ($this->settings === null) { 1303f412448SGreg Roach $this->settings = DB::table('module_setting') 1313f412448SGreg Roach ->where('module_name', '=', $this->getName()) 1323f412448SGreg Roach ->pluck('setting_value', 'setting_name') 1333f412448SGreg Roach ->all(); 134e2a378d3SGreg Roach } 135e2a378d3SGreg Roach } 136e2a378d3SGreg Roach 137e2a378d3SGreg Roach /** 138e2a378d3SGreg Roach * Get a module setting. Return a default if the setting is not set. 139e2a378d3SGreg Roach * 140e2a378d3SGreg Roach * @param string $setting_name 141e2a378d3SGreg Roach * @param string $default 142e2a378d3SGreg Roach * 14315d603e7SGreg Roach * @return string 144e2a378d3SGreg Roach */ 145c1010edaSGreg Roach public function getPreference($setting_name, $default = '') 146c1010edaSGreg Roach { 147e2a378d3SGreg Roach $this->loadAllSettings(); 148e2a378d3SGreg Roach 149e2a378d3SGreg Roach if (array_key_exists($setting_name, $this->settings)) { 150e2a378d3SGreg Roach return $this->settings[$setting_name]; 151e2a378d3SGreg Roach } 152b2ce94c6SRico Sonntag 153b2ce94c6SRico Sonntag return $default; 154e2a378d3SGreg Roach } 155e2a378d3SGreg Roach 156e2a378d3SGreg Roach /** 157e2a378d3SGreg Roach * Set a module setting. 158e2a378d3SGreg Roach * 159e2a378d3SGreg Roach * Since module settings are NOT NULL, setting a value to NULL will cause 160e2a378d3SGreg Roach * it to be deleted. 161e2a378d3SGreg Roach * 162e2a378d3SGreg Roach * @param string $setting_name 163e2a378d3SGreg Roach * @param string $setting_value 16415d603e7SGreg Roach * 16515d603e7SGreg Roach * @return $this 166e2a378d3SGreg Roach */ 1678f53f488SRico Sonntag public function setPreference($setting_name, $setting_value): self 168c1010edaSGreg Roach { 169e2a378d3SGreg Roach $this->loadAllSettings(); 170e2a378d3SGreg Roach 17132a20a8cSGreg Roach DB::table('module_setting')->updateOrInsert([ 17232a20a8cSGreg Roach 'module_name' => $this->getName(), 17332a20a8cSGreg Roach 'setting_name' => $setting_name, 17432a20a8cSGreg Roach ], [ 17532a20a8cSGreg Roach 'setting_value' => $setting_value, 176c1010edaSGreg Roach ]); 177b7ee5e66SCarmen Pijpers 178b7ee5e66SCarmen Pijpers $this->settings[$setting_name] = $setting_value; 17915d603e7SGreg Roach 18015d603e7SGreg Roach return $this; 181e2a378d3SGreg Roach } 182e2a378d3SGreg Roach 183e2a378d3SGreg Roach /** 184e2a378d3SGreg Roach * Get a the current access level for a module 185e2a378d3SGreg Roach * 186e2a378d3SGreg Roach * @param Tree $tree 187cbc1590aSGreg Roach * @param string $component tab, block, menu, etc 188e2a378d3SGreg Roach * 189cbc1590aSGreg Roach * @return int 190e2a378d3SGreg Roach */ 191c1010edaSGreg Roach public function getAccessLevel(Tree $tree, $component) 192c1010edaSGreg Roach { 19332a20a8cSGreg Roach $access_level = DB::table('module_privacy') 19432a20a8cSGreg Roach ->where('gedcom_id', '=', $tree->id()) 19532a20a8cSGreg Roach ->where('module_name', '=', $this->getName()) 19632a20a8cSGreg Roach ->where('component', '=', $component) 19732a20a8cSGreg Roach ->value('access_level'); 198e2a378d3SGreg Roach 199e2a378d3SGreg Roach if ($access_level === null) { 200e2a378d3SGreg Roach return $this->defaultAccessLevel(); 201e2a378d3SGreg Roach } 202b2ce94c6SRico Sonntag 203b2ce94c6SRico Sonntag return (int) $access_level; 204e2a378d3SGreg Roach } 205e2ae4578SGreg Roach 206e2ae4578SGreg Roach /** 207e2ae4578SGreg Roach * Create a response object from a view. 208e2ae4578SGreg Roach * 209e2ae4578SGreg Roach * @param string $view_name 210e2ae4578SGreg Roach * @param mixed[] $view_data 211e2ae4578SGreg Roach * @param int $status 212e2ae4578SGreg Roach * 213e2ae4578SGreg Roach * @return Response 214e2ae4578SGreg Roach */ 215c1010edaSGreg Roach protected function viewResponse($view_name, $view_data, $status = Response::HTTP_OK): Response 216c1010edaSGreg Roach { 217e2ae4578SGreg Roach // Make the view's data available to the layout. 218e2ae4578SGreg Roach $layout_data = $view_data; 219e2ae4578SGreg Roach 220e2ae4578SGreg Roach // Render the view 221e2ae4578SGreg Roach $layout_data['content'] = view($view_name, $view_data); 222e2ae4578SGreg Roach 223e2ae4578SGreg Roach // Insert the view into the layout 224e2ae4578SGreg Roach $html = view($this->layout, $layout_data); 225e2ae4578SGreg Roach 226e2ae4578SGreg Roach return new Response($html, $status); 227e2ae4578SGreg Roach } 228e2a378d3SGreg Roach} 229