Welcome to mirror list, hosted at ThFree Co, Russian Federation.

Json.php « Renderer « DataTable « core - github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: f5f6fc12bbc1f3bfefb480b81944eaf7ab1feea7 (plain)
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
/**
 * Piwik - Open source web analytics
 *
 * @link http://piwik.org
 * @license http://www.gnu.org/licenses/gpl-3.0.html GPL v3 or later
 *
 * @category Piwik
 * @package Piwik
 */
namespace Piwik\DataTable\Renderer;

use Piwik\DataTable\Renderer;
use Piwik\Piwik;
use Piwik\Common;
use Piwik\DataTable;
use Piwik\DataTable\Renderer\Php;

/**
 * JSON export.
 * Works with recursive DataTable (when a row can be associated with a subDataTable).
 *
 * @package Piwik
 * @subpackage DataTable
 */
class Json extends Renderer
{
    /**
     * Computes the dataTable output and returns the string/binary
     *
     * @return string
     */
    public function render()
    {
        $this->renderHeader();
        return $this->renderTable($this->table);
    }

    /**
     * Computes the exception output and returns the string/binary
     *
     * @return string
     */
    function renderException()
    {
        $this->renderHeader();

        $exceptionMessage = $this->getExceptionMessage();
        $exceptionMessage = str_replace(array("\r\n", "\n"), "", $exceptionMessage);
        $exceptionMessage = '{"result":"error", "message":"' . $exceptionMessage . '"}';

        return $this->jsonpWrap($exceptionMessage);
    }

    /**
     * Computes the output for the given data table
     *
     * @param DataTable $table
     * @return string
     */
    protected function renderTable($table)
    {
        if (is_array($table)) {
            $array = $table;
            if (self::shouldWrapArrayBeforeRendering($array, $wrapSingleValues = true)) {
                $array = array($array);
            }
        } else {
            $renderer = new Php();
            $renderer->setTable($table);
            $renderer->setRenderSubTables($this->isRenderSubtables());
            $renderer->setSerialize(false);
            $renderer->setHideIdSubDatableFromResponse($this->hideIdSubDatatable);
            $array = $renderer->flatRender();
        }

        if (!is_array($array)) {
            $array = array('value' => $array);
        }

        // decode all entities
        $callback = create_function('&$value,$key', 'if(is_string($value)){$value = html_entity_decode($value, ENT_QUOTES, "UTF-8");}');
        array_walk_recursive($array, $callback);

        $str = Common::json_encode($array);

        return $this->jsonpWrap($str);
    }

    /**
     * @param $str
     * @return string
     */
    protected function jsonpWrap($str)
    {
        if (($jsonCallback = Common::getRequestVar('callback', false)) === false)
            $jsonCallback = Common::getRequestVar('jsoncallback', false);
        if ($jsonCallback !== false) {
            if (preg_match('/^[0-9a-zA-Z_]*$/D', $jsonCallback) > 0) {
                $str = $jsonCallback . "(" . $str . ")";
            }
        }

        return $str;
    }

    /**
     * Sends the http header for json file
     */
    protected function renderHeader()
    {
        self::sendHeaderJSON();
        Piwik::overrideCacheControlHeaders();
    }

    public static function sendHeaderJSON()
    {
        @header('Content-Type: application/json; charset=utf-8');
    }
}