mirror of
https://github.com/chylex/Nextcloud-News.git
synced 2024-11-21 22:42:48 +01:00
0d7d3cdfb4
Signed-off-by: Paul Tirk <paultirk@paultirk.com>
72 lines
1.4 KiB
PHP
72 lines
1.4 KiB
PHP
<?php
|
|
|
|
namespace OCA\News\Controller;
|
|
|
|
use \OCP\AppFramework\Http;
|
|
use \OCP\AppFramework\Http\JSONResponse;
|
|
|
|
use OCA\News\Db\IAPI;
|
|
|
|
trait ApiPayloadTrait
|
|
{
|
|
/**
|
|
* Serialize all data
|
|
*
|
|
* @param mixed $data IAPI or array,
|
|
* anything else will return an empty array
|
|
*
|
|
* @return array
|
|
*/
|
|
public function serialize($data): array
|
|
{
|
|
$return = [];
|
|
if ($data instanceof IAPI) {
|
|
return [$data->toAPI()];
|
|
}
|
|
|
|
if (!is_array($data)) {
|
|
return $return;
|
|
}
|
|
|
|
foreach ($data as $entity) {
|
|
if ($entity instanceof IAPI) {
|
|
$return[] = $entity->toAPI();
|
|
}
|
|
}
|
|
return $return;
|
|
}
|
|
|
|
/**
|
|
* Serialize an entity
|
|
*
|
|
* @param IAPI $data
|
|
*
|
|
* @return array
|
|
*/
|
|
public function serializeEntityV2($data, bool $reduced = false): array
|
|
{
|
|
return $data->toAPI2($reduced);
|
|
}
|
|
|
|
/**
|
|
* Serialize array of entities
|
|
*
|
|
* @param array $data
|
|
*
|
|
* @return array
|
|
*/
|
|
public function serializeEntitiesV2($data, bool $reduced = false): array
|
|
{
|
|
$return = [];
|
|
foreach ($data as $entity) {
|
|
$return[] = $entity->toAPI2($reduced);
|
|
}
|
|
return $return;
|
|
}
|
|
|
|
public function responseV2($data, $code = Http::STATUS_OK)
|
|
{
|
|
return new JSONResponse($data, $code);
|
|
}
|
|
}
|