Add and use Title::getOtherPage()
[lhc/web/wiklou.git] / includes / content / JsonContent.php
1 <?php
2 /**
3 * JSON Content Model
4 *
5 * @file
6 *
7 * @author Ori Livneh <ori@wikimedia.org>
8 * @author Kunal Mehta <legoktm@gmail.com>
9 */
10
11 /**
12 * Represents the content of a JSON content.
13 * @since 1.24
14 */
15 class JsonContent extends TextContent {
16
17 public function __construct( $text, $modelId = CONTENT_MODEL_JSON ) {
18 parent::__construct( $text, $modelId );
19 }
20
21 /**
22 * Decodes the JSON into a PHP associative array.
23 * @return array
24 */
25 public function getJsonData() {
26 return FormatJson::decode( $this->getNativeData(), true );
27 }
28
29 /**
30 * @return bool Whether content is valid JSON.
31 */
32 public function isValid() {
33 return $this->getJsonData() !== null;
34 }
35
36 /**
37 * Pretty-print JSON
38 *
39 * @return bool|null|string
40 */
41 public function beautifyJSON() {
42 $decoded = FormatJson::decode( $this->getNativeData(), true );
43 if ( !is_array( $decoded ) ) {
44 return null;
45 }
46 return FormatJson::encode( $decoded, true );
47
48 }
49
50 /**
51 * Beautifies JSON prior to save.
52 * @param Title $title Title
53 * @param User $user User
54 * @param ParserOptions $popts
55 * @return JsonContent
56 */
57 public function preSaveTransform( Title $title, User $user, ParserOptions $popts ) {
58 return new static( $this->beautifyJSON() );
59 }
60
61 /**
62 * Set the HTML and add the appropriate styles
63 *
64 *
65 * @param Title $title
66 * @param int $revId
67 * @param ParserOptions $options
68 * @param bool $generateHtml
69 * @param ParserOutput $output
70 */
71 protected function fillParserOutput( Title $title, $revId,
72 ParserOptions $options, $generateHtml, ParserOutput &$output
73 ) {
74 if ( $generateHtml ) {
75 $output->setText( $this->objectTable( $this->getJsonData() ) );
76 $output->addModuleStyles( 'mediawiki.content.json' );
77 } else {
78 $output->setText( '' );
79 }
80 }
81 /**
82 * Constructs an HTML representation of a JSON object.
83 * @param array $mapping
84 * @return string HTML
85 */
86 protected function objectTable( $mapping ) {
87 $rows = array();
88
89 foreach ( $mapping as $key => $val ) {
90 $rows[] = $this->objectRow( $key, $val );
91 }
92 return Xml::tags( 'table', array( 'class' => 'mw-json' ),
93 Xml::tags( 'tbody', array(), join( "\n", $rows ) )
94 );
95 }
96
97 /**
98 * Constructs HTML representation of a single key-value pair.
99 * @param string $key
100 * @param mixed $val
101 * @return string HTML.
102 */
103 protected function objectRow( $key, $val ) {
104 $th = Xml::elementClean( 'th', array(), $key );
105 if ( is_array( $val ) ) {
106 $td = Xml::tags( 'td', array(), self::objectTable( $val ) );
107 } else {
108 if ( is_string( $val ) ) {
109 $val = '"' . $val . '"';
110 } else {
111 $val = FormatJson::encode( $val );
112 }
113
114 $td = Xml::elementClean( 'td', array( 'class' => 'value' ), $val );
115 }
116
117 return Xml::tags( 'tr', array(), $th . $td );
118 }
119
120 }