add a damn deadlock loop on this thing
[lhc/web/wiklou.git] / maintenance / updateRestrictions.php
1 <?php
2 /**
3 * Makes the required database updates for Special:ProtectedPages
4 * to show all protected pages, even ones before the page restrictions
5 * schema change. All remaining page_restriction column values are moved
6 * to the new table.
7 *
8 * @file
9 * @ingroup Maintenance
10 */
11
12 define( 'BATCH_SIZE', 100 );
13
14 require_once 'commandLine.inc';
15
16 $db =& wfGetDB( DB_MASTER );
17 if ( !$db->tableExists( 'page_restrictions' ) ) {
18 echo "page_restrictions does not exist\n";
19 exit( 1 );
20 }
21
22 migrate_page_restrictions( $db );
23
24 function migrate_page_restrictions( $db ) {
25
26 $start = $db->selectField( 'page', 'MIN(page_id)', false, __FUNCTION__ );
27 $end = $db->selectField( 'page', 'MAX(page_id)', false, __FUNCTION__ );
28
29 if( !$start ) {
30 die("Nothing to do.\n");
31 }
32
33 # Do remaining chunk
34 $end += BATCH_SIZE - 1;
35 $blockStart = $start;
36 $blockEnd = $start + BATCH_SIZE - 1;
37 $encodedExpiry = 'infinity';
38 while ( $blockEnd <= $end ) {
39 echo "...doing page_id from $blockStart to $blockEnd\n";
40 $cond = "page_id BETWEEN $blockStart AND $blockEnd AND page_restrictions !='' AND page_restrictions !='edit=:move='";
41 $res = $db->select( 'page', array('page_id', 'page_restrictions'), $cond, __FUNCTION__ );
42 $batch = array();
43 while ( $row = $db->fetchObject( $res ) ) {
44 $oldRestrictions = array();
45 foreach( explode( ':', trim( $row->page_restrictions ) ) as $restrict ) {
46 $temp = explode( '=', trim( $restrict ) );
47 if(count($temp) == 1) {
48 // old old format should be treated as edit/move restriction
49 $oldRestrictions["edit"] = trim( $temp[0] );
50 $oldRestrictions["move"] = trim( $temp[0] );
51 } else {
52 $oldRestrictions[$temp[0]] = trim( $temp[1] );
53 }
54 }
55 # Update restrictions table
56 foreach( $oldRestrictions as $action => $restrictions ) {
57 $batch[] = array(
58 'pr_page' => $row->page_id,
59 'pr_type' => $action,
60 'pr_level' => $restrictions,
61 'pr_cascade' => 0,
62 'pr_expiry' => $encodedExpiry
63 );
64 }
65 }
66 # We use insert() and not replace() as Article.php replaces
67 # page_restrictions with '' when protected in the restrictions table
68 if ( count( $batch ) ) {
69 $ok = $db->deadlockLoop(
70 array( $db, 'insert' ),
71 'page_restrictions', $batch, __FUNCTION__, array( 'IGNORE' ) );
72 if( !$ok ) {
73 throw new MWException( "Deadlock loop failed wtf :(" );
74 }
75 }
76 $blockStart += BATCH_SIZE - 1;
77 $blockEnd += BATCH_SIZE - 1;
78 wfWaitForSlaves( 5 );
79 }
80 }
81
82