45107012023dd95f0cec98e666dd3d058562d5b4
[lhc/web/wiklou.git] / includes / specials / SpecialBlockme.php
1 <?php
2 /**
3 *
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation; either version 2 of the License, or
7 * (at your option) any later version.
8 *
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
13 *
14 * You should have received a copy of the GNU General Public License along
15 * with this program; if not, write to the Free Software Foundation, Inc.,
16 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
17 * http://www.gnu.org/copyleft/gpl.html
18 */
19
20 /**
21 * Implements Special:Blockme
22 * @ingroup SpecialPage
23 */
24 class SpecialBlockme extends UnlistedSpecialPage {
25
26 function __construct() {
27 parent::__construct( 'Blockme' );
28 }
29
30 function execute( $par ) {
31 global $wgRequest, $wgOut, $wgBlockOpenProxies, $wgProxyKey;
32
33 $this->setHeaders();
34 $this->outputHeader();
35
36 $ip = wfGetIP();
37 if( !$wgBlockOpenProxies || $wgRequest->getText( 'ip' ) != md5( $ip . $wgProxyKey ) ) {
38 $wgOut->addWikiMsg( 'proxyblocker-disabled' );
39 return;
40 }
41
42 $user = User::newFromName( wfMsgForContent( 'proxyblocker' ) );
43 if ( !$user->isLoggedIn() ) {
44 $user->addToDatabase();
45 }
46 $id = $user->getId();
47 $reason = wfMsg( 'proxyblockreason' );
48
49 $block = new Block( $ip, 0, $id, $reason, wfTimestampNow() );
50 $block->insert();
51
52 $wgOut->addWikiMsg( 'proxyblocksuccess' );
53 }
54 }