forked from kannera/TermBank
-
Notifications
You must be signed in to change notification settings - Fork 0
/
SpecialPrivateData.php
80 lines (64 loc) · 1.76 KB
/
SpecialPrivateData.php
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
<?php
/**
* ...
*
* @file
* @author Niklas Laxström
* @copyright Copyright © 2011 Niklas Laxström
* @license http://www.gnu.org/copyleft/gpl.html GNU General Public License 2.0 or later
*/
/**
* ...
*
* @ingroup SpecialPage
*/
class SpecialPrivateData extends UnlistedSpecialPage {
function __construct() {
parent::__construct( 'PrivateData' );
}
public function execute( $parameters ) {
$this->setHeaders();
if ( $parameters === null ) {
throw new PermissionsError();
}
$this->getOutput()->disable();
$title = Title::newFromText( $parameters );
if ( !$title || !$title->exists() ) {
return;
}
global $wgNamespaceProtection;
$namespace = $title->getNamespace();
$user = $this->getUser();
if ( !$title->userCan( 'edit' ) ) {
return;
}
if ( isset( $wgNamespaceProtection[$namespace] ) ) {
foreach ( $wgNamespaceProtection[$namespace] as $right ) {
if ( !$user->isAllowed( $right ) ) {
return;
}
}
}
ob_end_clean(); // Avoid warnings here
$db = wfGetDB( DB_SLAVE );
$table = 'privatedata';
$fields = 'pd_text';
$conds = array( 'pd_page' => $title->getArticleId() );
$res = $db->selectRow( $table, $fields, $conds, __METHOD__ );
if ( $res ) {
$msg = wfMessage( 'termbank-privatedata-note' )->parse();
$text = "<em>$msg</em><hr />";
$text .= self::convertWhiteSpaceToHTML( $res -> pd_text );
echo Html::rawElement( 'div', array( 'class' => 'ttp-privatedata' ), $text );
}
return;
}
public static function convertWhiteSpaceToHTML( $msg ) {
$msg = htmlspecialchars( $msg );
$msg = preg_replace( '/^ /m', ' ', $msg );
$msg = preg_replace( '/ $/m', ' ', $msg );
$msg = preg_replace( '/ /', '  ', $msg );
$msg = str_replace( "\n", '<br />', $msg );
return $msg;
}
}