1a25f0a04SGreg Roach<?php 2a25f0a04SGreg Roach/** 3a25f0a04SGreg Roach * webtrees: online genealogy 48fcd0d32SGreg Roach * Copyright (C) 2019 webtrees development team 5a25f0a04SGreg Roach * This program is free software: you can redistribute it and/or modify 6a25f0a04SGreg Roach * it under the terms of the GNU General Public License as published by 7a25f0a04SGreg Roach * the Free Software Foundation, either version 3 of the License, or 8a25f0a04SGreg Roach * (at your option) any later version. 9a25f0a04SGreg Roach * This program is distributed in the hope that it will be useful, 10a25f0a04SGreg Roach * but WITHOUT ANY WARRANTY; without even the implied warranty of 11a25f0a04SGreg Roach * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 12a25f0a04SGreg Roach * GNU General Public License for more details. 13a25f0a04SGreg Roach * You should have received a copy of the GNU General Public License 14a25f0a04SGreg Roach * along with this program. If not, see <http://www.gnu.org/licenses/>. 15a25f0a04SGreg Roach */ 16e7f56f2aSGreg Roachdeclare(strict_types=1); 17e7f56f2aSGreg Roach 18dd04c183SGreg Roachnamespace Fisharebest\Webtrees; 19a25f0a04SGreg Roach 20b48bb5e9SGreg Roachuse Illuminate\Database\Capsule\Manager as DB; 21*6ccdf4f0SGreg Roachuse Psr\Http\Message\ServerRequestInterface; 224c891c40SGreg Roach 23a25f0a04SGreg Roach/** 2476692c8bSGreg Roach * Record webtrees events in the database 25a25f0a04SGreg Roach */ 26c1010edaSGreg Roachclass Log 27c1010edaSGreg Roach{ 28a25f0a04SGreg Roach // We can log the following types of message in the wt_log table. 2916d6367aSGreg Roach private const TYPE_AUTHENTICATION = 'auth'; 3016d6367aSGreg Roach private const TYPE_CONFIGURATION = 'config'; 3116d6367aSGreg Roach private const TYPE_EDIT = 'edit'; 3216d6367aSGreg Roach private const TYPE_ERROR = 'error'; 3316d6367aSGreg Roach private const TYPE_MEDIA = 'media'; 3416d6367aSGreg Roach private const TYPE_SEARCH = 'search'; 35a25f0a04SGreg Roach 36a25f0a04SGreg Roach /** 37*6ccdf4f0SGreg Roach * Store an authentication message in the message log. 38*6ccdf4f0SGreg Roach * 39*6ccdf4f0SGreg Roach * @param string $message 40*6ccdf4f0SGreg Roach * 41*6ccdf4f0SGreg Roach * @return void 42*6ccdf4f0SGreg Roach */ 43*6ccdf4f0SGreg Roach public static function addAuthenticationLog($message): void 44*6ccdf4f0SGreg Roach { 45*6ccdf4f0SGreg Roach self::addLog($message, self::TYPE_AUTHENTICATION); 46*6ccdf4f0SGreg Roach } 47*6ccdf4f0SGreg Roach 48*6ccdf4f0SGreg Roach /** 49a25f0a04SGreg Roach * Store a new message (of the appropriate type) in the message log. 50a25f0a04SGreg Roach * 51a25f0a04SGreg Roach * @param string $message 52a25f0a04SGreg Roach * @param string $log_type 53a25f0a04SGreg Roach * @param Tree|null $tree 5418d7a90dSGreg Roach * 5518d7a90dSGreg Roach * @return void 56a25f0a04SGreg Roach */ 57e364afe4SGreg Roach private static function addLog($message, $log_type, Tree $tree = null): void 58c1010edaSGreg Roach { 59*6ccdf4f0SGreg Roach $request = app(ServerRequestInterface::class); 60*6ccdf4f0SGreg Roach $ip_address = $request->getServerParams()['REMOTE_ADDR'] ?? '127.0.0.1'; 61b48bb5e9SGreg Roach $tree_id = $tree ? $tree->id() : null; 624c891c40SGreg Roach 63b48bb5e9SGreg Roach DB::table('log')->insert([ 64b48bb5e9SGreg Roach 'log_type' => $log_type, 65b48bb5e9SGreg Roach 'log_message' => $message, 66b48bb5e9SGreg Roach 'ip_address' => $ip_address, 67b48bb5e9SGreg Roach 'user_id' => Auth::id(), 68b48bb5e9SGreg Roach 'gedcom_id' => $tree_id, 6913abd6f3SGreg Roach ]); 70a25f0a04SGreg Roach } 71a25f0a04SGreg Roach 72a25f0a04SGreg Roach /** 73a25f0a04SGreg Roach * Store a configuration message in the message log. 74a25f0a04SGreg Roach * 75a25f0a04SGreg Roach * @param string $message 76a25f0a04SGreg Roach * @param Tree|null $tree 7718d7a90dSGreg Roach * 7818d7a90dSGreg Roach * @return void 79a25f0a04SGreg Roach */ 80e364afe4SGreg Roach public static function addConfigurationLog($message, Tree $tree = null): void 81c1010edaSGreg Roach { 82a25f0a04SGreg Roach self::addLog($message, self::TYPE_CONFIGURATION, $tree); 83a25f0a04SGreg Roach } 84a25f0a04SGreg Roach 85a25f0a04SGreg Roach /** 86a25f0a04SGreg Roach * Store an edit message in the message log. 87a25f0a04SGreg Roach * 88a25f0a04SGreg Roach * @param string $message 89847d5489SGreg Roach * @param Tree $tree 9018d7a90dSGreg Roach * 9118d7a90dSGreg Roach * @return void 92a25f0a04SGreg Roach */ 93e364afe4SGreg Roach public static function addEditLog($message, Tree $tree): void 94c1010edaSGreg Roach { 95847d5489SGreg Roach self::addLog($message, self::TYPE_EDIT, $tree); 96a25f0a04SGreg Roach } 97a25f0a04SGreg Roach 98a25f0a04SGreg Roach /** 99a25f0a04SGreg Roach * Store an error message in the message log. 100a25f0a04SGreg Roach * 101a25f0a04SGreg Roach * @param string $message 10218d7a90dSGreg Roach * 10318d7a90dSGreg Roach * @return void 104a25f0a04SGreg Roach */ 105e364afe4SGreg Roach public static function addErrorLog($message): void 106c1010edaSGreg Roach { 107a25f0a04SGreg Roach self::addLog($message, self::TYPE_ERROR); 108a25f0a04SGreg Roach } 109a25f0a04SGreg Roach 110a25f0a04SGreg Roach /** 111a25f0a04SGreg Roach * Store an media management message in the message log. 112a25f0a04SGreg Roach * 113a25f0a04SGreg Roach * @param string $message 11418d7a90dSGreg Roach * 11518d7a90dSGreg Roach * @return void 116a25f0a04SGreg Roach */ 117e364afe4SGreg Roach public static function addMediaLog($message): void 118c1010edaSGreg Roach { 119*6ccdf4f0SGreg Roach self::addLog($message, self::TYPE_MEDIA); 120a25f0a04SGreg Roach } 121a25f0a04SGreg Roach 122a25f0a04SGreg Roach /** 123a25f0a04SGreg Roach * Store a search event in the message log. 124a25f0a04SGreg Roach * Unlike most webtrees activity, search is not restricted to a single tree, 125a25f0a04SGreg Roach * so we need to record which trees were searchecd. 126a25f0a04SGreg Roach * 127a25f0a04SGreg Roach * @param string $message 128a25f0a04SGreg Roach * @param Tree[] $trees Which trees were searched 12918d7a90dSGreg Roach * 13018d7a90dSGreg Roach * @return void 131a25f0a04SGreg Roach */ 132e364afe4SGreg Roach public static function addSearchLog($message, array $trees): void 133c1010edaSGreg Roach { 134a25f0a04SGreg Roach foreach ($trees as $tree) { 135a25f0a04SGreg Roach self::addLog($message, self::TYPE_SEARCH, $tree); 136a25f0a04SGreg Roach } 137a25f0a04SGreg Roach } 138a25f0a04SGreg Roach} 139