Fixes for r64708:
[lhc/web/wiklou.git] / includes / specials / SpecialProtectedtitles.php
1 <?php
2 /**
3 * @file
4 * @ingroup SpecialPage
5 */
6
7 /**
8 * @todo document
9 * @ingroup SpecialPage
10 */
11 class ProtectedTitlesForm {
12
13 protected $IdLevel = 'level';
14 protected $IdType = 'type';
15
16 function showList( $msg = '' ) {
17 global $wgOut, $wgRequest;
18
19 if ( $msg != "" ) {
20 $wgOut->setSubtitle( $msg );
21 }
22
23 // Purge expired entries on one in every 10 queries
24 if ( !mt_rand( 0, 10 ) ) {
25 Title::purgeExpiredRestrictions();
26 }
27
28 $type = $wgRequest->getVal( $this->IdType );
29 $level = $wgRequest->getVal( $this->IdLevel );
30 $sizetype = $wgRequest->getVal( 'sizetype' );
31 $size = $wgRequest->getIntOrNull( 'size' );
32 $NS = $wgRequest->getIntOrNull( 'namespace' );
33
34 $pager = new ProtectedTitlesPager( $this, array(), $type, $level, $NS, $sizetype, $size );
35
36 $wgOut->addHTML( $this->showOptions( $NS, $type, $level, $sizetype, $size ) );
37
38 if ( $pager->getNumRows() ) {
39 $s = $pager->getNavigationBar();
40 $s .= "<ul>" .
41 $pager->getBody() .
42 "</ul>";
43 $s .= $pager->getNavigationBar();
44 } else {
45 $s = '<p>' . wfMsgHtml( 'protectedtitlesempty' ) . '</p>';
46 }
47 $wgOut->addHTML( $s );
48 }
49
50 /**
51 * Callback function to output a restriction
52 */
53 function formatRow( $row ) {
54 global $wgUser, $wgLang, $wgContLang;
55
56 wfProfileIn( __METHOD__ );
57
58 static $skin=null;
59
60 if( is_null( $skin ) )
61 $skin = $wgUser->getSkin();
62
63 $title = Title::makeTitleSafe( $row->pt_namespace, $row->pt_title );
64 $link = $skin->link( $title );
65
66 $description_items = array ();
67
68 $protType = wfMsgHtml( 'restriction-level-' . $row->pt_create_perm );
69
70 $description_items[] = $protType;
71
72 $expiry_description = ''; $stxt = '';
73
74 if ( $row->pt_expiry != 'infinity' && strlen($row->pt_expiry) ) {
75 $expiry = Block::decodeExpiry( $row->pt_expiry );
76
77 $expiry_description = wfMsg( 'protect-expiring', $wgLang->timeanddate( $expiry ) , $wgLang->date( $expiry ) , $wgLang->time( $expiry ) );
78
79 $description_items[] = $expiry_description;
80 }
81
82 wfProfileOut( __METHOD__ );
83
84 return '<li>' . wfSpecialList( $link . $stxt, implode( $description_items, ', ' ) ) . "</li>\n";
85 }
86
87 /**
88 * @param $namespace Integer:
89 * @param $type string
90 * @param $level string
91 * @param $sizetype Unused
92 * @param $size Unused
93 * @private
94 */
95 function showOptions( $namespace, $type='edit', $level, $sizetype, $size ) {
96 global $wgScript;
97 $action = htmlspecialchars( $wgScript );
98 $title = SpecialPage::getTitleFor( 'Protectedtitles' );
99 $special = htmlspecialchars( $title->getPrefixedDBkey() );
100 return "<form action=\"$action\" method=\"get\">\n" .
101 '<fieldset>' .
102 Xml::element( 'legend', array(), wfMsg( 'protectedtitles' ) ) .
103 Xml::hidden( 'title', $special ) . "&nbsp;\n" .
104 $this->getNamespaceMenu( $namespace ) . "&nbsp;\n" .
105 $this->getLevelMenu( $level ) . "&nbsp;\n" .
106 "&nbsp;" . Xml::submitButton( wfMsg( 'allpagessubmit' ) ) . "\n" .
107 "</fieldset></form>";
108 }
109
110 /**
111 * Prepare the namespace filter drop-down; standard namespace
112 * selector, sans the MediaWiki namespace
113 *
114 * @param $namespace Mixed: pre-select namespace
115 * @return string
116 */
117 function getNamespaceMenu( $namespace = null ) {
118 return Xml::label( wfMsg( 'namespace' ), 'namespace' )
119 . '&nbsp;'
120 . Xml::namespaceSelector( $namespace, '' );
121 }
122
123 /**
124 * @return string Formatted HTML
125 * @private
126 */
127 function getLevelMenu( $pr_level ) {
128 global $wgRestrictionLevels;
129
130 $m = array( wfMsg('restriction-level-all') => 0 ); // Temporary array
131 $options = array();
132
133 // First pass to load the log names
134 foreach( $wgRestrictionLevels as $type ) {
135 if ( $type !='' && $type !='*') {
136 $text = wfMsg("restriction-level-$type");
137 $m[$text] = $type;
138 }
139 }
140 // Is there only one level (aside from "all")?
141 if( count($m) <= 2 ) {
142 return '';
143 }
144 // Third pass generates sorted XHTML content
145 foreach( $m as $text => $type ) {
146 $selected = ($type == $pr_level );
147 $options[] = Xml::option( $text, $type, $selected );
148 }
149
150 return
151 Xml::label( wfMsg('restriction-level') , $this->IdLevel ) . '&nbsp;' .
152 Xml::tags( 'select',
153 array( 'id' => $this->IdLevel, 'name' => $this->IdLevel ),
154 implode( "\n", $options ) );
155 }
156 }
157
158 /**
159 * @todo document
160 * @ingroup Pager
161 */
162 class ProtectedtitlesPager extends AlphabeticPager {
163 public $mForm, $mConds;
164
165 function __construct( $form, $conds = array(), $type, $level, $namespace, $sizetype='', $size=0 ) {
166 $this->mForm = $form;
167 $this->mConds = $conds;
168 $this->level = $level;
169 $this->namespace = $namespace;
170 $this->size = intval($size);
171 parent::__construct();
172 }
173
174 function getStartBody() {
175 wfProfileIn( __METHOD__ );
176 # Do a link batch query
177 $this->mResult->seek( 0 );
178 $lb = new LinkBatch;
179
180 while ( $row = $this->mResult->fetchObject() ) {
181 $lb->add( $row->pt_namespace, $row->pt_title );
182 }
183
184 $lb->execute();
185 wfProfileOut( __METHOD__ );
186 return '';
187 }
188
189 function formatRow( $row ) {
190 return $this->mForm->formatRow( $row );
191 }
192
193 function getQueryInfo() {
194 $conds = $this->mConds;
195 $conds[] = 'pt_expiry>' . $this->mDb->addQuotes( $this->mDb->timestamp() );
196 if( $this->level )
197 $conds['pt_create_perm'] = $this->level;
198 if( !is_null($this->namespace) )
199 $conds[] = 'pt_namespace=' . $this->mDb->addQuotes( $this->namespace );
200 return array(
201 'tables' => 'protected_titles',
202 'fields' => 'pt_namespace,pt_title,pt_create_perm,pt_expiry,pt_timestamp',
203 'conds' => $conds
204 );
205 }
206
207 function getIndexField() {
208 return 'pt_timestamp';
209 }
210 }
211
212 /**
213 * Constructor
214 */
215 function wfSpecialProtectedtitles() {
216
217 $ppForm = new ProtectedTitlesForm();
218
219 $ppForm->showList();
220 }