Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
mahara
mahara
Commits
33a8ee94
Commit
33a8ee94
authored
Jul 10, 2017
by
Robert Lyon
Committed by
Gerrit Code Review
Jul 10, 2017
Browse files
Merge "Bug #1694342: clean password from event_log takes long time"
parents
f7625ca0
55d084a2
Changes
1
Show whitespace changes
Inline
Side-by-side
htdocs/lib/db/upgrade.php
View file @
33a8ee94
...
...
@@ -4976,7 +4976,13 @@ function xmldb_core_upgrade($oldversion=0) {
}
if
(
$oldversion
<
2017052300
)
{
if
(
$records
=
get_records_sql_array
(
"SELECT event, data, time FROM
{
event_log
}
WHERE event = ?"
,
array
(
'createuser'
)))
{
// These are the records with passwords in the data.
if
(
$records
=
get_records_sql_array
(
"SELECT event, data, time
FROM
{
event_log
}
WHERE event = ?
AND POSITION(',
\"
password
\"
:
\"\"
,' IN data) = 0
"
,
array
(
'createuser'
))
)
{
log_debug
(
'Remove sensitive data from event_log'
);
$count
=
0
;
$limit
=
1000
;
...
...
@@ -4998,6 +5004,18 @@ function xmldb_core_upgrade($oldversion=0) {
}
}
}
// These are the records with empty passwords in the data.
// No need for them to reset the password.
$wheresql
=
" WHERE event = ?
AND POSITION(',
\"
password
\"
:
\"\"
,' IN data) > 0"
;
$sql_count
=
"SELECT COUNT(*)
FROM
{
event_log
}
"
.
$wheresql
;
if
(
$count
=
get_field_sql
(
$sql_count
,
array
(
'createuser'
)))
{
$sql
=
"UPDATE
{
event_log
}
SET data = REPLACE(data, ',
\"
password
\"
:
\"\"
', '')"
.
$wheresql
;
execute_sql
(
$sql
,
array
(
'createuser'
));
log_debug
(
"
$count
records also cleaned up"
);
}
}
if
(
$oldversion
<
2017052900
)
{
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment