4 * Makes the required database updates for Special:ProtectedPages
5 * to show all protected pages, even ones before the page restrictions
6 * schema change. All remaining page_restriction column values are moved
10 define( 'BATCH_SIZE', 100 );
12 require_once 'commandLine.inc';
14 $db =& wfGetDB( DB_MASTER
);
15 if ( !$db->tableExists( 'page_restrictions' ) ) {
16 echo "page_restrictions does not exist\n";
20 migrate_page_restrictions( $db );
22 function migrate_page_restrictions( $db ) {
24 $start = $db->selectField( 'page', 'MIN(page_id)', false, __FUNCTION__
);
25 $end = $db->selectField( 'page', 'MAX(page_id)', false, __FUNCTION__
);
27 $blockEnd = $start + BATCH_SIZE
- 1;
28 $encodedExpiry = 'infinity';
29 while ( $blockEnd <= $end ) {
30 $cond = "page_id BETWEEN $blockStart AND $blockEnd AND page_restrictions !='' AND page_restrictions !='edit=:move='";
31 $res = $db->select( 'page', array('page_id', 'page_restrictions'), $cond, __FUNCTION__
);
33 while ( $row = $db->fetchObject( $res ) ) {
34 $oldRestrictions = array();
35 foreach( explode( ':', trim( $row->page_restrictions
) ) as $restrict ) {
36 $temp = explode( '=', trim( $restrict ) );
37 if(count($temp) == 1) {
38 // old old format should be treated as edit/move restriction
39 $oldRestrictions["edit"] = trim( $temp[0] );
40 $oldRestrictions["move"] = trim( $temp[0] );
42 $oldRestrictions[$temp[0]] = trim( $temp[1] );
45 # Update restrictions table
46 foreach( $oldRestrictions as $action => $restrictions ) {
48 'pr_page' => $row->page_id
,
50 'pr_level' => $restrictions,
52 'pr_expiry' => $encodedExpiry
56 # We use insert() and not replace() as Article.php replaces
57 # page_restrictions with '' when protected in the restrictions table
58 if ( count( $batch ) ) {
59 $db->insert( 'page_restrictions', $batch, __FUNCTION__
, array( 'IGNORE' ) );
61 $blockStart +
= BATCH_SIZE
;
62 $blockEnd +
= BATCH_SIZE
;