2009-09-10 16:56:58 +00:00
|
|
|
<?php
|
2010-08-11 12:42:40 +00:00
|
|
|
|
2010-05-15 10:39:41 +00:00
|
|
|
if ( !defined( 'MEDIAWIKI' ) ) {
|
2009-09-10 14:33:25 +00:00
|
|
|
die( 1 );
|
|
|
|
|
}
|
|
|
|
|
|
2010-08-11 12:42:40 +00:00
|
|
|
/**
|
|
|
|
|
* Simple wrapper for json_econde and json_decode that falls back on Services_JSON class
|
|
|
|
|
*/
|
2010-05-04 15:29:17 +00:00
|
|
|
class FormatJson {
|
2010-08-11 12:42:40 +00:00
|
|
|
|
|
|
|
|
// Constants for decode() return types
|
|
|
|
|
const AS_OBJECT = true;
|
|
|
|
|
const AS_ARRAY = false;
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Turn an array or object into a JSON string
|
|
|
|
|
* @param $value Mixed. Array or object to turn into JSON
|
|
|
|
|
* @param $isHtml bool ???
|
|
|
|
|
* @return <type>
|
|
|
|
|
*/
|
2010-05-15 10:39:41 +00:00
|
|
|
public static function encode( $value, $isHtml = false ) {
|
2009-09-10 14:33:25 +00:00
|
|
|
// Some versions of PHP have a broken json_encode, see PHP bug
|
|
|
|
|
// 46944. Test encoding an affected character (U+20000) to
|
|
|
|
|
// avoid this.
|
2010-05-15 10:39:41 +00:00
|
|
|
if ( !function_exists( 'json_encode' ) || $isHtml || strtolower( json_encode( "\xf0\xa0\x80\x80" ) ) != '\ud840\udc00' ) {
|
2009-09-10 14:33:25 +00:00
|
|
|
$json = new Services_JSON();
|
2010-05-15 10:39:41 +00:00
|
|
|
return $json->encode( $value, $isHtml );
|
2009-09-10 14:33:25 +00:00
|
|
|
} else {
|
2010-05-15 10:39:41 +00:00
|
|
|
return json_encode( $value );
|
2009-09-10 14:33:25 +00:00
|
|
|
}
|
|
|
|
|
}
|
2010-05-15 10:39:41 +00:00
|
|
|
|
2010-08-11 12:42:40 +00:00
|
|
|
/**
|
|
|
|
|
* Decode some JSON into an array or object
|
|
|
|
|
* @param $value String of Json
|
|
|
|
|
* @param $assoc bool One of AS_OBJECT or AS_ARRAY to specify return type
|
|
|
|
|
* @return Array or Object
|
|
|
|
|
*/
|
2010-05-15 10:39:41 +00:00
|
|
|
public static function decode( $value, $assoc = false ) {
|
|
|
|
|
if ( !function_exists( 'json_decode' ) ) {
|
2009-09-10 14:33:25 +00:00
|
|
|
$json = new Services_JSON();
|
2009-09-17 01:19:02 +00:00
|
|
|
$jsonDec = $json->decode( $value );
|
2010-05-15 10:39:41 +00:00
|
|
|
if( $assoc ) {
|
2009-09-10 19:24:56 +00:00
|
|
|
$jsonDec = wfObjectToArray( $jsonDec );
|
2010-05-15 10:39:41 +00:00
|
|
|
}
|
2009-09-10 14:33:25 +00:00
|
|
|
return $jsonDec;
|
|
|
|
|
} else {
|
2009-09-17 01:19:02 +00:00
|
|
|
return json_decode( $value, $assoc );
|
2009-09-10 14:33:25 +00:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|