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
12 define( 'BATCH_SIZE', 100 );
14 require_once 'commandLine.inc';
16 $db =& wfGetDB( DB_MASTER
);
17 if ( !$db->tableExists( 'page_restrictions' ) ) {
18 echo "page_restrictions does not exist\n";
22 migrate_page_restrictions( $db );
24 function migrate_page_restrictions( $db ) {
26 $start = $db->selectField( 'page', 'MIN(page_id)', false, __FUNCTION__
);
27 $end = $db->selectField( 'page', 'MAX(page_id)', false, __FUNCTION__
);
29 $end +
= BATCH_SIZE
- 1;
31 $blockEnd = $start + BATCH_SIZE
- 1;
32 $encodedExpiry = 'infinity';
33 while ( $blockEnd <= $end ) {
34 echo "...doing page_id from $blockStart to $blockEnd\n";
35 $cond = "page_id BETWEEN $blockStart AND $blockEnd AND page_restrictions !='' AND page_restrictions !='edit=:move='";
36 $res = $db->select( 'page', array('page_id', 'page_restrictions'), $cond, __FUNCTION__
);
38 while ( $row = $db->fetchObject( $res ) ) {
39 $oldRestrictions = array();
40 foreach( explode( ':', trim( $row->page_restrictions
) ) as $restrict ) {
41 $temp = explode( '=', trim( $restrict ) );
42 if(count($temp) == 1) {
43 // old old format should be treated as edit/move restriction
44 $oldRestrictions["edit"] = trim( $temp[0] );
45 $oldRestrictions["move"] = trim( $temp[0] );
47 $oldRestrictions[$temp[0]] = trim( $temp[1] );
50 # Update restrictions table
51 foreach( $oldRestrictions as $action => $restrictions ) {
53 'pr_page' => $row->page_id
,
55 'pr_level' => $restrictions,
57 'pr_expiry' => $encodedExpiry
61 # We use insert() and not replace() as Article.php replaces
62 # page_restrictions with '' when protected in the restrictions table
63 if ( count( $batch ) ) {
64 $db->insert( 'page_restrictions', $batch, __FUNCTION__
, array( 'IGNORE' ) );
66 $blockStart +
= BATCH_SIZE
- 1;
67 $blockEnd +
= BATCH_SIZE
- 1;