Fix block log entry
[lhc/web/wiklou.git] / includes / SpecialBlockip.php
1 <?
2
3 function wfSpecialBlockip()
4 {
5 global $wgUser, $wgOut, $action;
6
7 if ( ! $wgUser->isSysop() ) {
8 $wgOut->sysopRequired();
9 return;
10 }
11 $fields = array( "wpBlockAddress", "wpBlockReason" );
12 wfCleanFormFields( $fields );
13 $ipb = new IPBlockForm();
14
15 if ( "success" == $action ) { $ipb->showSuccess(); }
16 else if ( "submit" == $action ) { $ipb->doSubmit(); }
17 else { $ipb->showForm( "" ); }
18 }
19
20 class IPBlockForm {
21
22 function showForm( $err )
23 {
24 global $wgOut, $wgUser, $wgLang;
25 global $ip, $wpBlockAddress, $wpBlockReason;
26
27 $wgOut->setPagetitle( wfMsg( "blockip" ) );
28 $wgOut->addWikiText( wfMsg( "blockiptext" ) );
29
30 if ( ! $wpBlockAddress ) { $wpBlockAddress = $ip; }
31 $ipa = wfMsg( "ipaddress" );
32 $reason = wfMsg( "ipbreason" );
33 $ipbs = wfMsg( "ipbsubmit" );
34 $action = wfLocalUrlE( $wgLang->specialPage( "Blockip" ),
35 "action=submit" );
36
37 if ( "" != $err ) {
38 $wgOut->setSubtitle( wfMsg( "formerror" ) );
39 $wgOut->addHTML( "<p><font color='red' size='+1'>{$err}</font>\n" );
40 }
41 $wgOut->addHTML( "<p>
42 <form id=\"blockip\" method=\"post\" action=\"{$action}\">
43 <table border=0><tr>
44 <td align=\"right\">{$ipa}:</td>
45 <td align=\"left\">
46 <input tabindex=1 type=text size=20 name=\"wpBlockAddress\" value=\"{$wpBlockAddress}\">
47 </td></tr><tr>
48 <td align=\"right\">{$reason}:</td>
49 <td align=\"left\">
50 <input tabindex=2 type=text size=40 name=\"wpBlockReason\" value=\"{$wpBlockReason}\">
51 </td></tr><tr>
52 <td>&nbsp;</td><td align=\"left\">
53 <input tabindex=3 type=submit name=\"wpBlock\" value=\"{$ipbs}\">
54 </td></tr></table>
55 </form>\n" );
56
57 }
58
59 function doSubmit()
60 {
61 global $wgOut, $wgUser, $wgLang;
62 global $ip, $wpBlockAddress, $wpBlockReason, $wgSysopUserBans;
63
64 $userId = 0;
65 $wpBlockAddress = trim( $wpBlockAddress );
66
67 if ( ! preg_match( "/^\\d{1,3}\\.\\d{1,3}\\.\\d{1,3}\\.\\d{1,3}$/",
68 $wpBlockAddress ) )
69 {
70 if ( $wgSysopUserBans ) {
71 $userId = User::idFromName( $wpBlockAddress );
72 if ( $userId == 0 ) {
73 $this->showForm( wfMsg( "badipaddress" ) );
74 return;
75 }
76 } else {
77 $this->showForm( wfMsg( "badipaddress" ) );
78 return;
79 }
80 }
81 if ( "" == $wpBlockReason ) {
82 $this->showForm( wfMsg( "noblockreason" ) );
83 return;
84 }
85
86 # Create block
87 # Note: for a user block, ipb_address is only for display purposes
88 $ban = new Block( $wpBlockAddress, $userId, $wgUser->getID(),
89 wfStrencode( $wpBlockReason ), wfTimestampNow(), 0 );
90 $ban->insert();
91
92 # Make log entry
93 $log = new LogPage( wfMsg( "blocklogpage" ), wfMsg( "blocklogtext" ) );
94 $action = wfMsg( "blocklogentry", $wpBlockAddress );
95 $log->addEntry( $action, $wpBlockReason );
96
97 # Report to the user
98 $success = wfLocalUrl( $wgLang->specialPage( "Blockip" ),
99 "action=success&ip={$wpBlockAddress}" );
100 $wgOut->redirect( $success );
101 }
102
103 function showSuccess()
104 {
105 global $wgOut, $wgUser;
106 global $ip;
107
108 $wgOut->setPagetitle( wfMsg( "blockip" ) );
109 $wgOut->setSubtitle( wfMsg( "blockipsuccesssub" ) );
110 $text = wfMsg( "blockipsuccesstext", $ip );
111 $wgOut->addWikiText( $text );
112 }
113 }
114
115 ?>