Skip to content
Extraits de code Groupes Projets
Valider cfcefa59 rédigé par Matthieu Aubry's avatar Matthieu Aubry Validation de GitHub
Parcourir les fichiers

Merge pull request #10959 from piwik/revert_json2

Don't change json2 format for Piwik 3 (revert #10928)
parents 21c62f90 d97e3e9b
Aucune branche associée trouvée
Aucune étiquette associée trouvée
Aucune requête de fusion associée trouvée
...@@ -12,7 +12,6 @@ Read more about migrating a plugin from Piwik 2.X to Piwik 3 in [our Migration g ...@@ -12,7 +12,6 @@ Read more about migrating a plugin from Piwik 2.X to Piwik 3 in [our Migration g
### Breaking Changes ### Breaking Changes
* The UserManager API methods do no longer return any `token_auth` properties when requesting a user * The UserManager API methods do no longer return any `token_auth` properties when requesting a user
* Reporting API: if you call the Reporting API requesting data in `json` format then you may be affected. The `json` formatting has changed, a bug was fixed so that API methods that return simple associative arrays like `array('name' => 'value', 'name2' => 'value2')` will now appear correctly as `{"name":"value","name2":"value2"}` in JSON API output instead of `[{"name":"value","name2":"value2"}]` (as it used to be in Piwik 2). API methods like **SitesManager.getSiteFromId** & **UsersManager.getUser** and others are affected.
* The menu classes `Piwik\Menu\MenuReporting` and `Piwik\Menu\MenuMain` have been removed * The menu classes `Piwik\Menu\MenuReporting` and `Piwik\Menu\MenuMain` have been removed
* The class `Piwik\Plugin\Widgets` has been removed and replaced by `Piwik\Widget\Widget`. For each widget one class is needed from now on. You can generate a widget via `./console generate:widget`. * The class `Piwik\Plugin\Widgets` has been removed and replaced by `Piwik\Widget\Widget`. For each widget one class is needed from now on. You can generate a widget via `./console generate:widget`.
* The class `Piwik\WidgetList` class has been moved to `Piwik\Widget\WidgetsList`. * The class `Piwik\WidgetList` class has been moved to `Piwik\Widget\WidgetsList`.
......
Subproject commit 26049b008b2ce3cbb9e7179a94033db5475ad698 Subproject commit 8ec5986b2d4d21af9c9ddaa7c40225e1c8a36180
...@@ -16,6 +16,8 @@ use Piwik\ProxyHttp; ...@@ -16,6 +16,8 @@ use Piwik\ProxyHttp;
/** /**
* API output renderer for JSON. * API output renderer for JSON.
* NOTE: This is the old JSON format. It includes bugs that are fixed in the JSON2 API output format.
* Please use json2 format instead of this.
* *
* @deprecated * @deprecated
*/ */
...@@ -57,18 +59,7 @@ class Json extends ApiRenderer ...@@ -57,18 +59,7 @@ class Json extends ApiRenderer
$result = $jsonRenderer->render(); $result = $jsonRenderer->render();
return $this->applyJsonpIfNeeded($result); return $this->applyJsonpIfNeeded($result);
} }
return $this->renderDataTable($array);
$result = $this->renderDataTable($array);
// if $array is a simple associative array, remove the JSON root array that is added by renderDataTable
if (!empty($array)
&& Piwik::isAssociativeArray($array)
&& !Piwik::isMultiDimensionalArray($array)
) {
$result = substr($result, 1, strlen($result) - 2);
}
return $result;
} }
public function sendHeader() public function sendHeader()
......
...@@ -11,8 +11,24 @@ namespace Piwik\Plugins\API\Renderer; ...@@ -11,8 +11,24 @@ namespace Piwik\Plugins\API\Renderer;
use Piwik\Piwik; use Piwik\Piwik;
/** /**
* Left here for Backward compatibility in Piwik 3.X+ for all users who correctly used format=json2 during Piwik 2.X * Correct API output renderer for JSON. Includes bug fixes for bugs in the old JSON API
* format.
*/ */
class Json2 extends Json class Json2 extends Json
{ {
} public function renderArray($array)
\ No newline at end of file {
$result = parent::renderArray($array);
// if $array is a simple associative array, remove the JSON root array that is added by renderDataTable
if (!empty($array)
&& Piwik::isAssociativeArray($array)
&& !Piwik::isMultiDimensionalArray($array)
) {
$result = substr($result, 1, strlen($result) - 2);
}
return $result;
}
}
...@@ -356,14 +356,14 @@ class JsonRendererTest extends \PHPUnit_Framework_TestCase ...@@ -356,14 +356,14 @@ class JsonRendererTest extends \PHPUnit_Framework_TestCase
$this->assertNoJsonError($actual); $this->assertNoJsonError($actual);
} }
public function test_json_renderArray_ShouldConvertSingleDimensionalAssociativeArray() public function test_oldJson_renderArray_ShouldConvertSingleDimensionalAssociativeArray()
{ {
$input = array( $input = array(
"firstElement" => "isFirst", "firstElement" => "isFirst",
"secondElement" => "isSecond" "secondElement" => "isSecond"
); );
$expected = '{"firstElement":"isFirst","secondElement":"isSecond"}'; $expected = '[{"firstElement":"isFirst","secondElement":"isSecond"}]';
$oldJsonBuilder = new Json($input); $oldJsonBuilder = new Json($input);
$actual = $oldJsonBuilder->renderArray($input); $actual = $oldJsonBuilder->renderArray($input);
...@@ -373,7 +373,7 @@ class JsonRendererTest extends \PHPUnit_Framework_TestCase ...@@ -373,7 +373,7 @@ class JsonRendererTest extends \PHPUnit_Framework_TestCase
private function makeBuilder($request) private function makeBuilder($request)
{ {
return new Json($request); return new Json2($request);
} }
private function assertNoJsonError($response) private function assertNoJsonError($response)
......
...@@ -114,7 +114,7 @@ class Controller extends ControllerAdmin ...@@ -114,7 +114,7 @@ class Controller extends ControllerAdmin
return ''; return '';
} }
$response = new ResponseBuilder('json'); $response = new ResponseBuilder('json2');
try { try {
$this->checkTokenInUrl(); $this->checkTokenInUrl();
......
...@@ -249,7 +249,7 @@ var hasBlockedContent = false; ...@@ -249,7 +249,7 @@ var hasBlockedContent = false;
getParams.module = getParams.module || 'API'; getParams.module = getParams.module || 'API';
if (!getParams.format) { if (!getParams.format) {
getParams.format = 'JSON'; getParams.format = 'JSON2';
} }
addParams(getParams); addParams(getParams);
......
...@@ -55,7 +55,7 @@ ...@@ -55,7 +55,7 @@
piwikApi.fetch({ piwikApi.fetch({
method: "SomePlugin.action" method: "SomePlugin.action"
}).then(function (response) { }).then(function (response) {
expect(response).to.equal("Request url: index.php?date=&format=JSON&idSite=1&method=SomePlugin.action&module=API&period=day"); expect(response).to.equal("Request url: index.php?date=&format=JSON2&idSite=1&method=SomePlugin.action&module=API&period=day");
done(); done();
}).catch(function (ex) { }).catch(function (ex) {
...@@ -115,7 +115,7 @@ ...@@ -115,7 +115,7 @@
piwikApi.fetch({ piwikApi.fetch({
method: "SomePlugin.action" method: "SomePlugin.action"
}).then(function (response) { }).then(function (response) {
expect(response).to.equal("Request url: index.php?date=&format=JSON&idSite=1&method=SomePlugin.action&module=API&period=day"); expect(response).to.equal("Request url: index.php?date=&format=JSON2&idSite=1&method=SomePlugin.action&module=API&period=day");
request1Done = true; request1Done = true;
...@@ -127,7 +127,7 @@ ...@@ -127,7 +127,7 @@
piwikApi.fetch({ piwikApi.fetch({
method: "SomeOtherPlugin.action" method: "SomeOtherPlugin.action"
}).then(function (response) { }).then(function (response) {
expect(response).to.equal("Request url: index.php?date=&format=JSON&idSite=1&method=SomeOtherPlugin.action&module=API&period=day"); expect(response).to.equal("Request url: index.php?date=&format=JSON2&idSite=1&method=SomeOtherPlugin.action&module=API&period=day");
request2Done = true; request2Done = true;
...@@ -160,7 +160,7 @@ ...@@ -160,7 +160,7 @@
piwikApi.fetch({ piwikApi.fetch({
method: "SomeOtherPlugin.action" method: "SomeOtherPlugin.action"
}).then(function (response) { }).then(function (response) {
expect(response).to.equal("Request url: index.php?date=&format=JSON&idSite=1&method=SomeOtherPlugin.action&module=API&period=day"); expect(response).to.equal("Request url: index.php?date=&format=JSON2&idSite=1&method=SomeOtherPlugin.action&module=API&period=day");
request2Done = true; request2Done = true;
...@@ -216,7 +216,7 @@ ...@@ -216,7 +216,7 @@
method: "SomeOtherPlugin.action" method: "SomeOtherPlugin.action"
} }
]).then(function (response) { ]).then(function (response) {
var restOfExpected = "index.php?date=&format=JSON&idSite=1&method=API.getBulkRequest&" + var restOfExpected = "index.php?date=&format=JSON2&idSite=1&method=API.getBulkRequest&" +
"module=API&period=day - urls%5B%5D=%3Fmethod%3DSomePlugin.action%26param%3D" + "module=API&period=day - urls%5B%5D=%3Fmethod%3DSomePlugin.action%26param%3D" +
"value&urls%5B%5D=%3Fmethod%3DSomeOtherPlugin.action&token_auth=100bf5eeeed1468f3f9d93750044d3dd"; "value&urls%5B%5D=%3Fmethod%3DSomeOtherPlugin.action&token_auth=100bf5eeeed1468f3f9d93750044d3dd";
......
0% Chargement en cours ou .
You are about to add 0 people to the discussion. Proceed with caution.
Terminez d'abord l'édition de ce message.
Veuillez vous inscrire ou vous pour commenter