dolibarr/htdocs/core/lib/json.lib.php

405 lines
11 KiB
PHP
Raw Normal View History

<?php
/* Copyright (C) 2011-2012 Laurent Destailleur <eldy@users.sourceforge.net>
2018-10-27 14:43:12 +02:00
* Copyright (C) 2011-2012 Regis Houssin <regis.houssin@inodbox.com>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
2019-09-23 21:55:30 +02:00
* along with this program. If not, see <https://www.gnu.org/licenses/>.
* or see https://www.gnu.org/
*/
/**
* \file htdocs/core/lib/json.lib.php
* \brief Functions to emulate json function when there were not activated
* \ingroup core
*/
2021-02-23 22:03:23 +01:00
if (!function_exists('json_encode')) {
2012-07-02 19:30:37 +02:00
/**
* Implement json_encode for PHP that does not have module enabled.
2012-07-02 19:30:37 +02:00
*
* @param mixed $elements PHP Object to json encode
* @return string Json encoded string
*/
function json_encode($elements)
{
2012-10-19 09:34:31 +02:00
return dol_json_encode($elements);
}
2012-03-26 08:18:03 +02:00
}
2012-07-02 19:30:37 +02:00
/**
* Implement json_encode for PHP that does not support it.
* Use json_encode and json_decode in your code !
2022-09-14 15:24:07 +02:00
* Note: We can found some special chars into a json string:
* Quotation mark (") = \", Backslash (\) = \\, Slash (/) = \/, Backspace = \b, Form feed = \f, New line =\n, Carriage return =\r, Horizontal tab = \t
2012-07-02 19:30:37 +02:00
*
* @param mixed $elements PHP Object to json encode
* @return string Json encoded string
* @see json_encode()
2012-07-02 19:30:37 +02:00
*/
function dol_json_encode($elements)
{
2017-09-19 01:41:57 +02:00
dol_syslog("For better performance, enable the native json in your PHP", LOG_WARNING);
$num = 0;
2021-02-23 22:03:23 +01:00
if (is_object($elements)) { // Count number of properties for an object
foreach ($elements as $key => $value) {
$num++;
}
2020-05-21 15:05:19 +02:00
} else {
$num = count($elements);
2017-06-20 00:50:30 +02:00
}
2012-12-29 12:21:13 +01:00
//var_dump($num);
2012-07-02 19:30:37 +02:00
// determine type
2021-02-23 22:03:23 +01:00
if (is_numeric(key($elements)) && key($elements) == 0) {
2012-07-02 19:30:37 +02:00
// indexed (list)
$keysofelements = array_keys($elements); // Elements array mus have key that does not start with 0 and end with num-1, so we will use this later.
2012-07-02 19:30:37 +02:00
$output = '[';
2021-02-23 22:03:23 +01:00
for ($i = 0, $last = ($num - 1); $i < $num; $i++) {
if (!isset($elements[$keysofelements[$i]])) {
continue;
}
if (is_array($elements[$keysofelements[$i]]) || is_object($elements[$keysofelements[$i]])) {
$output .= json_encode($elements[$keysofelements[$i]]);
} else {
$output .= _val($elements[$keysofelements[$i]]);
}
if ($i !== $last) {
$output .= ',';
}
2012-07-02 19:30:37 +02:00
}
$output .= ']';
2020-05-21 15:05:19 +02:00
} else {
2012-07-02 19:30:37 +02:00
// associative (object)
$output = '{';
$last = $num - 1;
$i = 0;
$tmpelements = array();
2021-02-23 22:03:23 +01:00
if (is_array($elements)) {
$tmpelements = $elements;
}
if (is_object($elements)) {
$tmpelements = get_object_vars($elements);
}
foreach ($tmpelements as $key => $value) {
2013-04-14 23:57:07 +02:00
$output .= '"'.$key.'":';
2021-02-23 22:03:23 +01:00
if (is_array($value)) {
$output .= json_encode($value);
} else {
$output .= _val($value);
}
if ($i !== $last) {
$output .= ',';
}
2013-04-14 23:57:07 +02:00
++$i;
2012-07-02 19:30:37 +02:00
}
$output .= '}';
2012-07-02 19:30:37 +02:00
}
// return
return $output;
}
/**
* Return text according to type
*
* @param mixed $val Value to show
* @return string Formated value
*/
function _val($val)
{
2020-11-28 14:00:35 +01:00
if (is_string($val)) {
// STRINGS ARE EXPECTED TO BE IN ASCII OR UTF-8 FORMAT
$ascii = '';
$strlen_var = strlen($val);
/*
2021-02-23 22:03:23 +01:00
* Iterate over every character in the string,
* escaping with a slash or encoding to UTF-8 where necessary
*/
for ($c = 0; $c < $strlen_var; ++$c) {
$ord_var_c = ord($val[$c]);
switch (true) {
case $ord_var_c == 0x08:
$ascii .= '\b';
break;
case $ord_var_c == 0x09:
$ascii .= '\t';
break;
case $ord_var_c == 0x0A:
$ascii .= '\n';
break;
case $ord_var_c == 0x0C:
$ascii .= '\f';
break;
case $ord_var_c == 0x0D:
$ascii .= '\r';
break;
case $ord_var_c == 0x22:
case $ord_var_c == 0x2F:
case $ord_var_c == 0x5C:
// double quote, slash, slosh
$ascii .= '\\'.$val[$c];
break;
case (($ord_var_c >= 0x20) && ($ord_var_c <= 0x7F)):
// characters U-00000000 - U-0000007F (same as ASCII)
$ascii .= $val[$c];
break;
case (($ord_var_c & 0xE0) == 0xC0):
// characters U-00000080 - U-000007FF, mask 110XXXXX
// see http://www.cl.cam.ac.uk/~mgk25/unicode.html#utf-8
$char = pack('C*', $ord_var_c, ord($val[$c + 1]));
$c += 1;
$utf16 = utf82utf16($char);
$ascii .= sprintf('\u%04s', bin2hex($utf16));
break;
case (($ord_var_c & 0xF0) == 0xE0):
// characters U-00000800 - U-0000FFFF, mask 1110XXXX
// see http://www.cl.cam.ac.uk/~mgk25/unicode.html#utf-8
$char = pack('C*', $ord_var_c, ord($val[$c + 1]), ord($val[$c + 2]));
$c += 2;
$utf16 = utf82utf16($char);
$ascii .= sprintf('\u%04s', bin2hex($utf16));
break;
case (($ord_var_c & 0xF8) == 0xF0):
// characters U-00010000 - U-001FFFFF, mask 11110XXX
// see http://www.cl.cam.ac.uk/~mgk25/unicode.html#utf-8
$char = pack('C*', $ord_var_c, ord($val[$c + 1]), ord($val[$c + 2]), ord($val[$c + 3]));
$c += 3;
$utf16 = utf82utf16($char);
$ascii .= sprintf('\u%04s', bin2hex($utf16));
break;
case (($ord_var_c & 0xFC) == 0xF8):
// characters U-00200000 - U-03FFFFFF, mask 111110XX
// see http://www.cl.cam.ac.uk/~mgk25/unicode.html#utf-8
$char = pack('C*', $ord_var_c, ord($val[$c + 1]), ord($val[$c + 2]), ord($val[$c + 3]), ord($val[$c + 4]));
$c += 4;
$utf16 = utf82utf16($char);
$ascii .= sprintf('\u%04s', bin2hex($utf16));
break;
case (($ord_var_c & 0xFE) == 0xFC):
// characters U-04000000 - U-7FFFFFFF, mask 1111110X
// see http://www.cl.cam.ac.uk/~mgk25/unicode.html#utf-8
$char = pack('C*', $ord_var_c, ord($val[$c + 1]), ord($val[$c + 2]), ord($val[$c + 3]), ord($val[$c + 4]), ord($val[$c + 5]));
$c += 5;
$utf16 = utf82utf16($char);
$ascii .= sprintf('\u%04s', bin2hex($utf16));
break;
}
}
return '"'.$ascii.'"';
2021-02-23 22:03:23 +01:00
} elseif (is_int($val)) {
return sprintf('%d', $val);
} elseif (is_float($val)) {
return sprintf('%F', $val);
} elseif (is_bool($val)) {
return ($val ? 'true' : 'false');
} else {
return 'null';
}
}
2021-02-23 22:03:23 +01:00
if (!function_exists('json_decode')) {
2012-07-02 19:30:37 +02:00
/**
* Implement json_decode for PHP that does not support it
*
* @param string $json Json encoded to PHP Object or Array
* @param bool $assoc False return an object, true return an array
* @return mixed Object or Array
*/
2019-02-28 00:15:32 +01:00
function json_decode($json, $assoc = false)
{
2012-03-26 08:18:03 +02:00
return dol_json_decode($json, $assoc);
}
}
2012-07-02 19:30:37 +02:00
/**
* Implement json_decode for PHP that does not support it
* Use json_encode and json_decode in your code !
2012-07-02 19:30:37 +02:00
*
* @param string $json Json encoded to PHP Object or Array
* @param bool $assoc False return an object, true return an array. Try to always use it with true !
2014-09-18 15:09:03 +02:00
* @return mixed Object or Array or false on error
* @see json_decode()
2012-07-02 19:30:37 +02:00
*/
2019-02-28 00:15:32 +01:00
function dol_json_decode($json, $assoc = false)
2012-07-02 19:30:37 +02:00
{
2017-09-19 01:41:57 +02:00
dol_syslog("For better performance, enable the native json in your PHP", LOG_WARNING);
2012-07-02 19:30:37 +02:00
$comment = false;
$out = '';
$strLength = strlen($json); // Must stay strlen and not dol_strlen because we want technical length, not visible length
2021-02-23 22:03:23 +01:00
for ($i = 0; $i < $strLength; $i++) {
if (!$comment) {
if (($json[$i] == '{') || ($json[$i] == '[')) {
$out .= 'array(';
} elseif (($json[$i] == '}') || ($json[$i] == ']')) {
$out .= ')';
} elseif ($json[$i] == ':') {
$out .= ' => ';
} else {
$out .= $json[$i];
}
} else {
$out .= $json[$i];
}
if ($json[$i] == '"' && $json[($i - 1)] != "\\") {
$comment = !$comment;
}
2012-07-02 19:30:37 +02:00
}
$out = _unval($out);
2012-07-02 19:30:37 +02:00
2020-09-27 21:10:27 +02:00
$array = array();
2012-07-02 19:30:37 +02:00
// Return an array
2020-09-27 21:10:27 +02:00
if ($out != '') {
try {
eval('$array = '.$out.';');
2020-09-28 11:07:53 +02:00
} catch (Exception $e) {
2020-09-27 21:10:27 +02:00
$array = array();
}
}
2012-07-02 19:30:37 +02:00
// Return an object
2021-02-23 22:03:23 +01:00
if (!$assoc) {
if (!empty($array)) {
2012-07-02 19:30:37 +02:00
$object = false;
if (count($array) > 0) {
$object = (object) array();
}
2021-02-23 22:03:23 +01:00
foreach ($array as $key => $value) {
if ($key) {
$object->{$key} = $value;
}
2012-07-02 19:30:37 +02:00
}
return $object;
}
return false;
}
return $array;
2012-03-26 08:18:03 +02:00
}
/**
* Return text according to type
*
2019-03-02 10:00:51 +01:00
* @param string $val Value to decode
* @return string Formated value
*/
function _unval($val)
{
2019-12-23 16:38:37 +01:00
$reg = array();
2021-02-23 22:03:23 +01:00
while (preg_match('/\\\u([0-9A-F]{2})([0-9A-F]{2})/i', $val, $reg)) {
// single, escaped unicode character
$utf16 = chr(hexdec($reg[1])).chr(hexdec($reg[2]));
$utf8 = utf162utf8($utf16);
$val = preg_replace('/\\\u'.$reg[1].$reg[2].'/i', $utf8, $val);
}
return $val;
}
/**
2013-08-22 16:49:23 +02:00
* Convert a string from one UTF-16 char to one UTF-8 char
*
* Normally should be handled by mb_convert_encoding, but
* provides a slower PHP-only method for installations
* that lack the multibye string extension.
*
2013-08-22 16:49:23 +02:00
* @param string $utf16 UTF-16 character
* @return string UTF-8 character
*/
function utf162utf8($utf16)
{
// oh please oh please oh please oh please oh please
2019-03-02 10:00:51 +01:00
if (function_exists('mb_convert_encoding')) {
return mb_convert_encoding($utf16, 'UTF-8', 'UTF-16');
}
2019-12-23 16:38:37 +01:00
$bytes = (ord($utf16[0]) << 8) | ord($utf16[1]);
switch (true) {
case ((0x7F & $bytes) == $bytes):
2019-10-20 11:18:55 +02:00
// this case should never be reached, because we are in ASCII range
// see: http://www.cl.cam.ac.uk/~mgk25/unicode.html#utf-8
2021-02-23 22:03:23 +01:00
return chr($bytes);
case (0x07FF & $bytes) == $bytes:
2019-10-20 11:18:55 +02:00
// return a 2-byte UTF-8 character
// see: http://www.cl.cam.ac.uk/~mgk25/unicode.html#utf-8
2021-02-23 22:03:23 +01:00
return chr(0xC0 | (($bytes >> 6) & 0x1F))
. chr(0x80 | ($bytes & 0x3F));
case (0xFFFF & $bytes) == $bytes:
2019-10-20 11:18:55 +02:00
// return a 3-byte UTF-8 character
// see: http://www.cl.cam.ac.uk/~mgk25/unicode.html#utf-8
2021-02-23 22:03:23 +01:00
return chr(0xE0 | (($bytes >> 12) & 0x0F))
. chr(0x80 | (($bytes >> 6) & 0x3F))
. chr(0x80 | ($bytes & 0x3F));
}
// ignoring UTF-32 for now, sorry
return '';
}
/**
2013-08-22 16:49:23 +02:00
* Convert a string from one UTF-8 char to one UTF-16 char
*
* Normally should be handled by mb_convert_encoding, but
* provides a slower PHP-only method for installations
* that lack the multibye string extension.
*
2013-08-22 16:49:23 +02:00
* @param string $utf8 UTF-8 character
* @return string UTF-16 character
*/
function utf82utf16($utf8)
{
// oh please oh please oh please oh please oh please
2019-12-23 16:38:37 +01:00
if (function_exists('mb_convert_encoding')) {
return mb_convert_encoding($utf8, 'UTF-16', 'UTF-8');
}
switch (strlen($utf8)) {
case 1:
// this case should never be reached, because we are in ASCII range
2019-10-27 11:53:20 +01:00
// see: http://www.cl.cam.ac.uk/~mgk25/unicode.html#utf-8
return $utf8;
case 2:
2019-10-27 11:53:20 +01:00
// return a UTF-16 character from a 2-byte UTF-8 char
// see: http://www.cl.cam.ac.uk/~mgk25/unicode.html#utf-8
return chr(0x07 & (ord($utf8[0]) >> 2)).chr((0xC0 & (ord($utf8[0]) << 6)) | (0x3F & ord($utf8[1])));
case 3:
2019-10-27 11:53:20 +01:00
// return a UTF-16 character from a 3-byte UTF-8 char
// see: http://www.cl.cam.ac.uk/~mgk25/unicode.html#utf-8
return chr((0xF0 & (ord($utf8[0]) << 4)) | (0x0F & (ord($utf8[1]) >> 2))).chr((0xC0 & (ord($utf8[1]) << 6)) | (0x7F & ord($utf8[2])));
}
// ignoring UTF-32 for now, sorry
return '';
}