mirror of
https://github.com/moodle/moodle.git
synced 2025-08-05 08:56:36 +02:00
Merge branch 'MDL-68276-replace-logs' of https://github.com/brendanheywood/moodle
This commit is contained in:
commit
5879d1773d
2 changed files with 127 additions and 6 deletions
|
@ -8959,6 +8959,40 @@ function any_new_admin_settings($node) {
|
|||
return false;
|
||||
}
|
||||
|
||||
/**
|
||||
* Given a table and optionally a column name should replaces be done?
|
||||
*
|
||||
* @param string $table name
|
||||
* @param string $column name
|
||||
* @return bool success or fail
|
||||
*/
|
||||
function db_should_replace($table, $column = ''): bool {
|
||||
|
||||
// TODO: this is horrible hack, we should do whitelisting and each plugin should be responsible for proper replacing...
|
||||
$skiptables = ['config', 'config_plugins', 'filter_config', 'sessions',
|
||||
'events_queue', 'repository_instance_config', 'block_instances', 'files'];
|
||||
|
||||
// Don't process these.
|
||||
if (in_array($table, $skiptables)) {
|
||||
return false;
|
||||
}
|
||||
|
||||
// To be safe never replace inside a table that looks related to logging.
|
||||
if (preg_match('/(^|_)logs?($|_)/', $table)) {
|
||||
return false;
|
||||
}
|
||||
|
||||
// Do column based exclusions.
|
||||
if (!empty($column)) {
|
||||
// Don't touch anything that looks like a hash.
|
||||
if (preg_match('/hash$/', $column)) {
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
/**
|
||||
* Moved from admin/replace.php so that we can use this in cron
|
||||
*
|
||||
|
@ -8969,11 +9003,6 @@ function any_new_admin_settings($node) {
|
|||
function db_replace($search, $replace) {
|
||||
global $DB, $CFG, $OUTPUT;
|
||||
|
||||
// TODO: this is horrible hack, we should do whitelisting and each plugin should be responsible for proper replacing...
|
||||
$skiptables = array('config', 'config_plugins', 'config_log', 'upgrade_log', 'log',
|
||||
'filter_config', 'sessions', 'events_queue', 'repository_instance_config',
|
||||
'block_instances', '');
|
||||
|
||||
// Turn off time limits, sometimes upgrades can be slow.
|
||||
core_php_time_limit::raise();
|
||||
|
||||
|
@ -8982,13 +9011,16 @@ function db_replace($search, $replace) {
|
|||
}
|
||||
foreach ($tables as $table) {
|
||||
|
||||
if (in_array($table, $skiptables)) { // Don't process these
|
||||
if (!db_should_replace($table)) {
|
||||
continue;
|
||||
}
|
||||
|
||||
if ($columns = $DB->get_columns($table)) {
|
||||
$DB->set_debug(true);
|
||||
foreach ($columns as $column) {
|
||||
if (!db_should_replace($table, $column->name)) {
|
||||
continue;
|
||||
}
|
||||
$DB->replace_all_text($table, $column, $search, $replace);
|
||||
}
|
||||
$DB->set_debug(false);
|
||||
|
|
89
lib/tests/adminlib_test.php
Normal file
89
lib/tests/adminlib_test.php
Normal file
|
@ -0,0 +1,89 @@
|
|||
<?php
|
||||
// This file is part of Moodle - http://moodle.org/
|
||||
//
|
||||
// Moodle is free software: you can redistribute it and/or modify
|
||||
// it under the terms of the GNU General Public License as published by
|
||||
// the Free Software Foundation, either version 3 of the License, or
|
||||
// (at your option) any later version.
|
||||
//
|
||||
// Moodle is distributed in the hope that it will be useful,
|
||||
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
// GNU General Public License for more details.
|
||||
//
|
||||
// You should have received a copy of the GNU General Public License
|
||||
// along with Moodle. If not, see <http://www.gnu.org/licenses/>.
|
||||
|
||||
/**
|
||||
* Unit tests for parts of adminlib.php.
|
||||
*
|
||||
* @package core
|
||||
* @subpackage admin
|
||||
* @copyright 2020 Brendan Heywood <brendan@catalyst-au.net>
|
||||
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
||||
*/
|
||||
|
||||
defined('MOODLE_INTERNAL') || die();
|
||||
|
||||
global $CFG;
|
||||
require_once($CFG->libdir.'/adminlib.php');
|
||||
|
||||
/**
|
||||
* Unit tests for parts of adminlib.php.
|
||||
*
|
||||
* @copyright 2020 Brendan Heywood <brendan@catalyst-au.net>
|
||||
* @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later
|
||||
*/
|
||||
class core_adminlib_testcase extends advanced_testcase {
|
||||
|
||||
/**
|
||||
* Data provider of serialized string.
|
||||
*
|
||||
* @return array
|
||||
*/
|
||||
public function db_should_replace_dataprovider() {
|
||||
return [
|
||||
// Skipped tables.
|
||||
['block_instances', '', false],
|
||||
['config', '', false],
|
||||
['config_plugins', '', false],
|
||||
['config_log', '', false],
|
||||
['events_queue', '', false],
|
||||
['filter_config', '', false],
|
||||
['log', '', false],
|
||||
['repository_instance_config', '', false],
|
||||
['sessions', '', false],
|
||||
['upgrade_log', '', false],
|
||||
|
||||
// Unknown skipped tables.
|
||||
['foobar_log', '', false],
|
||||
['foobar_logs', '', false],
|
||||
|
||||
// Unknown ok tables.
|
||||
['foobar_logical', '', true],
|
||||
|
||||
// Normal tables.
|
||||
['assign', '', true],
|
||||
|
||||
// Normal tables with excluded columns.
|
||||
['message_conversations', 'convhash', false],
|
||||
['user_password_history', 'hash', false],
|
||||
['foo', 'barhash', false],
|
||||
];
|
||||
}
|
||||
|
||||
/**
|
||||
* Test which tables and column should be replaced.
|
||||
*
|
||||
* @dataProvider db_should_replace_dataprovider
|
||||
* @param string $table name
|
||||
* @param string $column name
|
||||
* @param bool $expected whether it should be replaced
|
||||
*/
|
||||
public function test_db_should_replace(string $table, string $column, bool $expected) {
|
||||
$actual = db_should_replace($table, $column);
|
||||
$this->assertSame($actual, $expected);
|
||||
}
|
||||
|
||||
}
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue