39ca8dd746324a0d03811b6b8763511661674a31
[lhc/web/wiklou.git] / includes / specials / SpecialBlockList.php
1 <?php
2 /**
3 * Implements Special:BlockList
4 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 *
15 * You should have received a copy of the GNU General Public License along
16 * with this program; if not, write to the Free Software Foundation, Inc.,
17 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
18 * http://www.gnu.org/copyleft/gpl.html
19 *
20 * @file
21 * @ingroup SpecialPage
22 */
23
24 /**
25 * A special page that lists existing blocks
26 *
27 * @ingroup SpecialPage
28 */
29 class SpecialBlockList extends SpecialPage {
30 protected $target;
31
32 protected $options;
33
34 function __construct() {
35 parent::__construct( 'BlockList' );
36 }
37
38 /**
39 * Main execution point
40 *
41 * @param string $par Title fragment
42 */
43 public function execute( $par ) {
44 $this->setHeaders();
45 $this->outputHeader();
46 $out = $this->getOutput();
47 $lang = $this->getLanguage();
48 $out->setPageTitle( $this->msg( 'ipblocklist' ) );
49 $out->addModuleStyles( [ 'mediawiki.special' ] );
50
51 $request = $this->getRequest();
52 $par = $request->getVal( 'ip', $par );
53 $this->target = trim( $request->getVal( 'wpTarget', $par ) );
54
55 $this->options = $request->getArray( 'wpOptions', [] );
56
57 $action = $request->getText( 'action' );
58
59 if ( $action == 'unblock' || $action == 'submit' && $request->wasPosted() ) {
60 # B/C @since 1.18: Unblock interface is now at Special:Unblock
61 $title = SpecialPage::getTitleFor( 'Unblock', $this->target );
62 $out->redirect( $title->getFullURL() );
63
64 return;
65 }
66
67 # setup BlockListPager here to get the actual default Limit
68 $pager = $this->getBlockListPager();
69
70 # Just show the block list
71 $fields = [
72 'Target' => [
73 'type' => 'user',
74 'label-message' => 'ipaddressorusername',
75 'tabindex' => '1',
76 'size' => '45',
77 'default' => $this->target,
78 ],
79 'Options' => [
80 'type' => 'multiselect',
81 'options-messages' => [
82 'blocklist-userblocks' => 'userblocks',
83 'blocklist-tempblocks' => 'tempblocks',
84 'blocklist-addressblocks' => 'addressblocks',
85 'blocklist-rangeblocks' => 'rangeblocks',
86 ],
87 'flatlist' => true,
88 ],
89 'Limit' => [
90 'type' => 'limitselect',
91 'label-message' => 'table_pager_limit_label',
92 'options' => [
93 $lang->formatNum( 20 ) => 20,
94 $lang->formatNum( 50 ) => 50,
95 $lang->formatNum( 100 ) => 100,
96 $lang->formatNum( 250 ) => 250,
97 $lang->formatNum( 500 ) => 500,
98 ],
99 'name' => 'limit',
100 'default' => $pager->getLimit(),
101 ],
102 ];
103 $context = new DerivativeContext( $this->getContext() );
104 $context->setTitle( $this->getPageTitle() ); // Remove subpage
105 $form = HTMLForm::factory( 'ooui', $fields, $context );
106 $form
107 ->setMethod( 'get' )
108 ->setWrapperLegendMsg( 'ipblocklist-legend' )
109 ->setSubmitTextMsg( 'ipblocklist-submit' )
110 ->setSubmitProgressive()
111 ->prepareForm()
112 ->displayForm( false );
113
114 $this->showList( $pager );
115 }
116
117 /**
118 * Setup a new BlockListPager instance.
119 * @return BlockListPager
120 */
121 protected function getBlockListPager() {
122 $conds = [];
123 # Is the user allowed to see hidden blocks?
124 if ( !$this->getUser()->isAllowed( 'hideuser' ) ) {
125 $conds['ipb_deleted'] = 0;
126 }
127
128 if ( $this->target !== '' ) {
129 list( $target, $type ) = Block::parseTarget( $this->target );
130
131 switch ( $type ) {
132 case Block::TYPE_ID:
133 case Block::TYPE_AUTO:
134 $conds['ipb_id'] = $target;
135 break;
136
137 case Block::TYPE_IP:
138 case Block::TYPE_RANGE:
139 list( $start, $end ) = IP::parseRange( $target );
140 $conds[] = wfGetDB( DB_REPLICA )->makeList(
141 [
142 'ipb_address' => $target,
143 Block::getRangeCond( $start, $end )
144 ],
145 LIST_OR
146 );
147 $conds['ipb_auto'] = 0;
148 break;
149
150 case Block::TYPE_USER:
151 $conds['ipb_address'] = $target->getName();
152 $conds['ipb_auto'] = 0;
153 break;
154 }
155 }
156
157 # Apply filters
158 if ( in_array( 'userblocks', $this->options ) ) {
159 $conds['ipb_user'] = 0;
160 }
161 if ( in_array( 'tempblocks', $this->options ) ) {
162 $conds['ipb_expiry'] = 'infinity';
163 }
164 if ( in_array( 'addressblocks', $this->options ) ) {
165 $conds[] = "ipb_user != 0 OR ipb_range_end > ipb_range_start";
166 }
167 if ( in_array( 'rangeblocks', $this->options ) ) {
168 $conds[] = "ipb_range_end = ipb_range_start";
169 }
170
171 return new BlockListPager( $this, $conds );
172 }
173
174 /**
175 * Show the list of blocked accounts matching the actual filter.
176 * @param BlockListPager $pager The BlockListPager instance for this page
177 */
178 protected function showList( BlockListPager $pager ) {
179 $out = $this->getOutput();
180
181 # Check for other blocks, i.e. global/tor blocks
182 $otherBlockLink = [];
183 Hooks::run( 'OtherBlockLogLink', [ &$otherBlockLink, $this->target ] );
184
185 # Show additional header for the local block only when other blocks exists.
186 # Not necessary in a standard installation without such extensions enabled
187 if ( count( $otherBlockLink ) ) {
188 $out->addHTML(
189 Html::element( 'h2', [], $this->msg( 'ipblocklist-localblock' )->text() ) . "\n"
190 );
191 }
192
193 if ( $pager->getNumRows() ) {
194 $out->addParserOutputContent( $pager->getFullOutput() );
195 } elseif ( $this->target ) {
196 $out->addWikiMsg( 'ipblocklist-no-results' );
197 } else {
198 $out->addWikiMsg( 'ipblocklist-empty' );
199 }
200
201 if ( count( $otherBlockLink ) ) {
202 $out->addHTML(
203 Html::rawElement(
204 'h2',
205 [],
206 $this->msg( 'ipblocklist-otherblocks', count( $otherBlockLink ) )->parse()
207 ) . "\n"
208 );
209 $list = '';
210 foreach ( $otherBlockLink as $link ) {
211 $list .= Html::rawElement( 'li', [], $link ) . "\n";
212 }
213 $out->addHTML( Html::rawElement(
214 'ul',
215 [ 'class' => 'mw-ipblocklist-otherblocks' ],
216 $list
217 ) . "\n" );
218 }
219 }
220
221 protected function getGroupName() {
222 return 'users';
223 }
224 }