1179
ac861c01a764
Added an upgrade hook to populate the author_uid column in logs, pending test by Neal
Dan
parents:
diff
changeset
|
1 |
<?php
|
ac861c01a764
Added an upgrade hook to populate the author_uid column in logs, pending test by Neal
Dan
parents:
diff
changeset
|
2 |
|
ac861c01a764
Added an upgrade hook to populate the author_uid column in logs, pending test by Neal
Dan
parents:
diff
changeset
|
3 |
// Migrate usernames in the logs table
|
ac861c01a764
Added an upgrade hook to populate the author_uid column in logs, pending test by Neal
Dan
parents:
diff
changeset
|
4 |
|
ac861c01a764
Added an upgrade hook to populate the author_uid column in logs, pending test by Neal
Dan
parents:
diff
changeset
|
5 |
global $db, $session, $paths, $template, $plugins; // Common objects
|
ac861c01a764
Added an upgrade hook to populate the author_uid column in logs, pending test by Neal
Dan
parents:
diff
changeset
|
6 |
|
1181
|
7 |
$q = $db->sql_query('SELECT user_id, username FROM ' . table_prefix . 'users;');
|
1179
ac861c01a764
Added an upgrade hook to populate the author_uid column in logs, pending test by Neal
Dan
parents:
diff
changeset
|
8 |
if ( !$q )
|
ac861c01a764
Added an upgrade hook to populate the author_uid column in logs, pending test by Neal
Dan
parents:
diff
changeset
|
9 |
$db->_die();
|
ac861c01a764
Added an upgrade hook to populate the author_uid column in logs, pending test by Neal
Dan
parents:
diff
changeset
|
10 |
|
ac861c01a764
Added an upgrade hook to populate the author_uid column in logs, pending test by Neal
Dan
parents:
diff
changeset
|
11 |
$map = array();
|
ac861c01a764
Added an upgrade hook to populate the author_uid column in logs, pending test by Neal
Dan
parents:
diff
changeset
|
12 |
while($row = $db->fetchrow())
|
ac861c01a764
Added an upgrade hook to populate the author_uid column in logs, pending test by Neal
Dan
parents:
diff
changeset
|
13 |
{
|
ac861c01a764
Added an upgrade hook to populate the author_uid column in logs, pending test by Neal
Dan
parents:
diff
changeset
|
14 |
$map[ $row['username'] ] = $row['user_id'];
|
ac861c01a764
Added an upgrade hook to populate the author_uid column in logs, pending test by Neal
Dan
parents:
diff
changeset
|
15 |
}
|
ac861c01a764
Added an upgrade hook to populate the author_uid column in logs, pending test by Neal
Dan
parents:
diff
changeset
|
16 |
$db->free_result();
|
ac861c01a764
Added an upgrade hook to populate the author_uid column in logs, pending test by Neal
Dan
parents:
diff
changeset
|
17 |
|
1181
|
18 |
$q = $db->sql_query('SELECT author FROM ' . table_prefix . 'logs WHERE author_uid = 1;');
|
1179
ac861c01a764
Added an upgrade hook to populate the author_uid column in logs, pending test by Neal
Dan
parents:
diff
changeset
|
19 |
if ( !$q )
|
ac861c01a764
Added an upgrade hook to populate the author_uid column in logs, pending test by Neal
Dan
parents:
diff
changeset
|
20 |
$db->_die();
|
ac861c01a764
Added an upgrade hook to populate the author_uid column in logs, pending test by Neal
Dan
parents:
diff
changeset
|
21 |
|
ac861c01a764
Added an upgrade hook to populate the author_uid column in logs, pending test by Neal
Dan
parents:
diff
changeset
|
22 |
$updated = array();
|
ac861c01a764
Added an upgrade hook to populate the author_uid column in logs, pending test by Neal
Dan
parents:
diff
changeset
|
23 |
|
ac861c01a764
Added an upgrade hook to populate the author_uid column in logs, pending test by Neal
Dan
parents:
diff
changeset
|
24 |
while ( $row = $db->fetchrow($q) )
|
ac861c01a764
Added an upgrade hook to populate the author_uid column in logs, pending test by Neal
Dan
parents:
diff
changeset
|
25 |
{
|
ac861c01a764
Added an upgrade hook to populate the author_uid column in logs, pending test by Neal
Dan
parents:
diff
changeset
|
26 |
if ( isset($map[ $row['author'] ]) && !is_valid_ip($row['author']) && !in_array($row['author'], $updated) )
|
ac861c01a764
Added an upgrade hook to populate the author_uid column in logs, pending test by Neal
Dan
parents:
diff
changeset
|
27 |
{
|
ac861c01a764
Added an upgrade hook to populate the author_uid column in logs, pending test by Neal
Dan
parents:
diff
changeset
|
28 |
$author = $db->escape($row['author']);
|
1181
|
29 |
$sql = "UPDATE " . table_prefix . "logs SET author_uid = {$map[ $row['author'] ]} WHERE author = '$author';";
|
1179
ac861c01a764
Added an upgrade hook to populate the author_uid column in logs, pending test by Neal
Dan
parents:
diff
changeset
|
30 |
if ( !$db->sql_query($sql) )
|
ac861c01a764
Added an upgrade hook to populate the author_uid column in logs, pending test by Neal
Dan
parents:
diff
changeset
|
31 |
$db->_die();
|
ac861c01a764
Added an upgrade hook to populate the author_uid column in logs, pending test by Neal
Dan
parents:
diff
changeset
|
32 |
$updated[] = $row['author'];
|
ac861c01a764
Added an upgrade hook to populate the author_uid column in logs, pending test by Neal
Dan
parents:
diff
changeset
|
33 |
}
|
ac861c01a764
Added an upgrade hook to populate the author_uid column in logs, pending test by Neal
Dan
parents:
diff
changeset
|
34 |
}
|
ac861c01a764
Added an upgrade hook to populate the author_uid column in logs, pending test by Neal
Dan
parents:
diff
changeset
|
35 |
|