blob: 52025e535371abbec6831fd1172834a4fb0328d0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
|
<?php
/**
*
* @addtogroup SpecialPage
*/
/**
*
*/
function wfSpecialUnlockdb() {
global $wgUser, $wgOut, $wgRequest;
if( !$wgUser->isAllowed( 'siteadmin' ) ) {
$wgOut->permissionRequired( 'siteadmin' );
return;
}
$action = $wgRequest->getVal( 'action' );
$f = new DBUnlockForm();
if ( "success" == $action ) {
$f->showSuccess();
} else if ( "submit" == $action && $wgRequest->wasPosted() &&
$wgUser->matchEditToken( $wgRequest->getVal( 'wpEditToken' ) ) ) {
$f->doSubmit();
} else {
$f->showForm( "" );
}
}
/**
*
* @addtogroup SpecialPage
*/
class DBUnlockForm {
function showForm( $err )
{
global $wgOut, $wgUser;
global $wgReadOnlyFile;
if( !file_exists( $wgReadOnlyFile ) ) {
$wgOut->addWikiText( wfMsg( 'databasenotlocked' ) );
return;
}
$wgOut->setPagetitle( wfMsg( "unlockdb" ) );
$wgOut->addWikiText( wfMsg( "unlockdbtext" ) );
if ( "" != $err ) {
$wgOut->setSubtitle( wfMsg( "formerror" ) );
$wgOut->addHTML( '<p class="error">' . htmlspecialchars( $err ) . "</p>\n" );
}
$lc = htmlspecialchars( wfMsg( "unlockconfirm" ) );
$lb = htmlspecialchars( wfMsg( "unlockbtn" ) );
$titleObj = SpecialPage::getTitleFor( "Unlockdb" );
$action = $titleObj->escapeLocalURL( "action=submit" );
$token = htmlspecialchars( $wgUser->editToken() );
$wgOut->addHTML( <<<END
<form id="unlockdb" method="post" action="{$action}">
<table border="0">
<tr>
<td align="right">
<input type="checkbox" name="wpLockConfirm" />
</td>
<td align="left">{$lc}</td>
</tr>
<tr>
<td> </td>
<td align="left">
<input type="submit" name="wpLock" value="{$lb}" />
</td>
</tr>
</table>
<input type="hidden" name="wpEditToken" value="{$token}" />
</form>
END
);
}
function doSubmit() {
global $wgOut, $wgRequest, $wgReadOnlyFile;
$wpLockConfirm = $wgRequest->getCheck( 'wpLockConfirm' );
if ( ! $wpLockConfirm ) {
$this->showForm( wfMsg( "locknoconfirm" ) );
return;
}
if ( @! unlink( $wgReadOnlyFile ) ) {
$wgOut->showFileDeleteError( $wgReadOnlyFile );
return;
}
$titleObj = SpecialPage::getTitleFor( "Unlockdb" );
$success = $titleObj->getFullURL( "action=success" );
$wgOut->redirect( $success );
}
function showSuccess() {
global $wgOut;
global $ip;
$wgOut->setPagetitle( wfMsg( "unlockdb" ) );
$wgOut->setSubtitle( wfMsg( "unlockdbsuccesssub" ) );
$wgOut->addWikiText( wfMsg( "unlockdbsuccesstext", $ip ) );
}
}
|