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
111
112
113
114
115
116
117
118
119
120
|
<?php
/**
* JSON Content Model
*
* @file
*
* @author Ori Livneh <ori@wikimedia.org>
* @author Kunal Mehta <legoktm@gmail.com>
*/
/**
* Represents the content of a JSON content.
* @since 1.24
*/
class JsonContent extends TextContent {
public function __construct( $text, $modelId = CONTENT_MODEL_JSON ) {
parent::__construct( $text, $modelId );
}
/**
* Decodes the JSON into a PHP associative array.
* @return array
*/
public function getJsonData() {
return FormatJson::decode( $this->getNativeData(), true );
}
/**
* @return bool Whether content is valid JSON.
*/
public function isValid() {
return $this->getJsonData() !== null;
}
/**
* Pretty-print JSON
*
* @return bool|null|string
*/
public function beautifyJSON() {
$decoded = FormatJson::decode( $this->getNativeData(), true );
if ( !is_array( $decoded ) ) {
return null;
}
return FormatJson::encode( $decoded, true );
}
/**
* Beautifies JSON prior to save.
* @param Title $title Title
* @param User $user User
* @param ParserOptions $popts
* @return JsonContent
*/
public function preSaveTransform( Title $title, User $user, ParserOptions $popts ) {
return new static( $this->beautifyJSON() );
}
/**
* Set the HTML and add the appropriate styles
*
*
* @param Title $title
* @param int $revId
* @param ParserOptions $options
* @param bool $generateHtml
* @param ParserOutput $output
*/
protected function fillParserOutput( Title $title, $revId,
ParserOptions $options, $generateHtml, ParserOutput &$output
) {
if ( $generateHtml ) {
$output->setText( $this->objectTable( $this->getJsonData() ) );
$output->addModuleStyles( 'mediawiki.content.json' );
} else {
$output->setText( '' );
}
}
/**
* Constructs an HTML representation of a JSON object.
* @param array $mapping
* @return string HTML
*/
protected function objectTable( $mapping ) {
$rows = array();
foreach ( $mapping as $key => $val ) {
$rows[] = $this->objectRow( $key, $val );
}
return Xml::tags( 'table', array( 'class' => 'mw-json' ),
Xml::tags( 'tbody', array(), join( "\n", $rows ) )
);
}
/**
* Constructs HTML representation of a single key-value pair.
* @param string $key
* @param mixed $val
* @return string HTML.
*/
protected function objectRow( $key, $val ) {
$th = Xml::elementClean( 'th', array(), $key );
if ( is_array( $val ) ) {
$td = Xml::tags( 'td', array(), self::objectTable( $val ) );
} else {
if ( is_string( $val ) ) {
$val = '"' . $val . '"';
} else {
$val = FormatJson::encode( $val );
}
$td = Xml::elementClean( 'td', array( 'class' => 'value' ), $val );
}
return Xml::tags( 'tr', array(), $th . $td );
}
}
|