2021-11-12 13:52:01 -05:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace Friendica\Module\Api;
|
|
|
|
|
|
|
|
use Friendica\App\Arguments;
|
2021-11-21 04:55:42 -05:00
|
|
|
use Friendica\App\BaseURL;
|
2021-11-12 13:52:01 -05:00
|
|
|
use Friendica\Core\L10n;
|
2021-11-21 15:52:36 -05:00
|
|
|
use Friendica\Module\Response;
|
2021-11-12 13:52:01 -05:00
|
|
|
use Friendica\Util\Arrays;
|
2021-11-21 04:55:42 -05:00
|
|
|
use Friendica\Util\DateTimeFormat;
|
2021-11-12 13:52:01 -05:00
|
|
|
use Friendica\Util\XML;
|
2021-11-12 14:08:30 -05:00
|
|
|
use Psr\Log\LoggerInterface;
|
2021-11-21 04:55:42 -05:00
|
|
|
use Friendica\Factory\Api\Twitter\User as TwitterUser;
|
2021-11-12 13:52:01 -05:00
|
|
|
|
|
|
|
/**
|
2021-11-21 15:52:36 -05:00
|
|
|
* This class is used to format and create API responses
|
2021-11-12 13:52:01 -05:00
|
|
|
*/
|
2021-11-21 15:52:36 -05:00
|
|
|
class ApiResponse extends Response
|
2021-11-12 13:52:01 -05:00
|
|
|
{
|
|
|
|
/** @var L10n */
|
|
|
|
protected $l10n;
|
|
|
|
/** @var Arguments */
|
|
|
|
protected $args;
|
2021-11-12 14:08:30 -05:00
|
|
|
/** @var LoggerInterface */
|
|
|
|
protected $logger;
|
2021-11-21 15:52:36 -05:00
|
|
|
/** @var BaseURL */
|
|
|
|
protected $baseUrl;
|
|
|
|
/** @var TwitterUser */
|
|
|
|
protected $twitterUser;
|
2021-11-12 13:52:01 -05:00
|
|
|
|
2021-11-21 15:52:36 -05:00
|
|
|
public function __construct(L10n $l10n, Arguments $args, LoggerInterface $logger, BaseURL $baseUrl, TwitterUser $twitterUser)
|
2021-11-12 13:52:01 -05:00
|
|
|
{
|
2021-11-21 04:55:42 -05:00
|
|
|
$this->l10n = $l10n;
|
|
|
|
$this->args = $args;
|
|
|
|
$this->logger = $logger;
|
2021-11-21 15:52:36 -05:00
|
|
|
$this->baseUrl = $baseUrl;
|
|
|
|
$this->twitterUser = $twitterUser;
|
2021-11-12 15:35:21 -05:00
|
|
|
}
|
|
|
|
|
2021-11-12 13:52:01 -05:00
|
|
|
/**
|
|
|
|
* Creates the XML from a JSON style array
|
|
|
|
*
|
|
|
|
* @param array $data JSON style array
|
|
|
|
* @param string $root_element Name of the root element
|
|
|
|
*
|
|
|
|
* @return string The XML data
|
|
|
|
*/
|
2021-11-12 13:56:37 -05:00
|
|
|
public function createXML(array $data, string $root_element): string
|
2021-11-12 13:52:01 -05:00
|
|
|
{
|
|
|
|
$childname = key($data);
|
|
|
|
$data2 = array_pop($data);
|
|
|
|
|
2021-11-12 13:56:37 -05:00
|
|
|
$namespaces = [
|
|
|
|
'' => 'http://api.twitter.com',
|
|
|
|
'statusnet' => 'http://status.net/schema/api/1/',
|
|
|
|
'friendica' => 'http://friendi.ca/schema/api/1/',
|
|
|
|
'georss' => 'http://www.georss.org/georss'
|
|
|
|
];
|
2021-11-12 13:52:01 -05:00
|
|
|
|
|
|
|
/// @todo Auto detection of needed namespaces
|
|
|
|
if (in_array($root_element, ['ok', 'hash', 'config', 'version', 'ids', 'notes', 'photos'])) {
|
|
|
|
$namespaces = [];
|
|
|
|
}
|
|
|
|
|
|
|
|
if (is_array($data2)) {
|
|
|
|
$key = key($data2);
|
|
|
|
Arrays::walkRecursive($data2, ['Friendica\Module\Api\ApiResponse', 'reformatXML']);
|
|
|
|
|
|
|
|
if ($key == '0') {
|
|
|
|
$data4 = [];
|
|
|
|
$i = 1;
|
|
|
|
|
|
|
|
foreach ($data2 as $item) {
|
|
|
|
$data4[$i++ . ':' . $childname] = $item;
|
|
|
|
}
|
|
|
|
|
|
|
|
$data2 = $data4;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
$data3 = [$root_element => $data2];
|
|
|
|
|
|
|
|
return XML::fromArray($data3, $xml, false, $namespaces);
|
|
|
|
}
|
|
|
|
|
2021-11-21 04:55:42 -05:00
|
|
|
/**
|
|
|
|
* Set values for RSS template
|
|
|
|
*
|
|
|
|
* @param array $arr Array to be passed to template
|
|
|
|
* @param int $cid Contact ID of template
|
|
|
|
* @return array
|
|
|
|
*/
|
|
|
|
private function addRSSValues(array $arr, int $cid)
|
|
|
|
{
|
|
|
|
if (empty($cid)) {
|
|
|
|
return $arr;
|
|
|
|
}
|
|
|
|
|
|
|
|
$user_info = $this->twitterUser->createFromContactId($cid)->toArray();
|
|
|
|
|
|
|
|
$arr['$user'] = $user_info;
|
|
|
|
$arr['$rss'] = [
|
|
|
|
'alternate' => $user_info['url'],
|
2021-11-21 15:52:36 -05:00
|
|
|
'self' => $this->baseUrl . '/' . $this->args->getQueryString(),
|
|
|
|
'base' => $this->baseUrl,
|
2021-11-21 04:55:42 -05:00
|
|
|
'updated' => DateTimeFormat::utc(null, DateTimeFormat::API),
|
|
|
|
'atom_updated' => DateTimeFormat::utcNow(DateTimeFormat::ATOM),
|
|
|
|
'language' => $user_info['lang'],
|
2021-11-21 15:52:36 -05:00
|
|
|
'logo' => $this->baseUrl . '/images/friendica-32.png',
|
2021-11-21 04:55:42 -05:00
|
|
|
];
|
|
|
|
|
|
|
|
return $arr;
|
|
|
|
}
|
|
|
|
|
2021-11-12 13:52:01 -05:00
|
|
|
/**
|
|
|
|
* Formats the data according to the data type
|
|
|
|
*
|
|
|
|
* @param string $root_element Name of the root element
|
|
|
|
* @param string $type Return type (atom, rss, xml, json)
|
|
|
|
* @param array $data JSON style array
|
2021-11-20 08:44:12 -05:00
|
|
|
* @param int $cid ID of the contact for RSS
|
2021-11-12 13:52:01 -05:00
|
|
|
*
|
|
|
|
* @return array|string (string|array) XML data or JSON data
|
|
|
|
*/
|
2021-11-20 08:44:12 -05:00
|
|
|
public function formatData(string $root_element, string $type, array $data, int $cid = 0)
|
2021-11-12 13:52:01 -05:00
|
|
|
{
|
|
|
|
switch ($type) {
|
|
|
|
case 'rss':
|
2021-11-21 04:55:42 -05:00
|
|
|
$data = $this->addRSSValues($data, $cid);
|
2021-11-20 08:44:12 -05:00
|
|
|
case 'atom':
|
2021-11-12 13:52:01 -05:00
|
|
|
case 'xml':
|
2021-11-12 14:13:04 -05:00
|
|
|
return $this->createXML($data, $root_element);
|
2021-11-12 13:52:01 -05:00
|
|
|
case 'json':
|
|
|
|
default:
|
2021-11-12 14:13:04 -05:00
|
|
|
return $data;
|
2021-11-12 13:52:01 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Callback function to transform the array in an array that can be transformed in a XML file
|
|
|
|
*
|
|
|
|
* @param mixed $item Array item value
|
|
|
|
* @param string $key Array key
|
|
|
|
*
|
|
|
|
* @return boolean
|
|
|
|
*/
|
|
|
|
public static function reformatXML(&$item, string &$key): bool
|
|
|
|
{
|
|
|
|
if (is_bool($item)) {
|
|
|
|
$item = ($item ? 'true' : 'false');
|
|
|
|
}
|
|
|
|
|
|
|
|
if (substr($key, 0, 10) == 'statusnet_') {
|
|
|
|
$key = 'statusnet:' . substr($key, 10);
|
|
|
|
} elseif (substr($key, 0, 10) == 'friendica_') {
|
|
|
|
$key = 'friendica:' . substr($key, 10);
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Exit with error code
|
|
|
|
*
|
|
|
|
* @param int $code
|
|
|
|
* @param string $description
|
|
|
|
* @param string $message
|
|
|
|
* @param string|null $format
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
2021-11-12 14:04:47 -05:00
|
|
|
public function error(int $code, string $description, string $message, string $format = null)
|
2021-11-12 13:52:01 -05:00
|
|
|
{
|
|
|
|
$error = [
|
|
|
|
'error' => $message ?: $description,
|
|
|
|
'code' => $code . ' ' . $description,
|
2021-11-12 14:04:47 -05:00
|
|
|
'request' => $this->args->getQueryString()
|
2021-11-12 13:52:01 -05:00
|
|
|
];
|
|
|
|
|
2021-11-12 15:35:21 -05:00
|
|
|
$this->setHeader(($_SERVER['SERVER_PROTOCOL'] ?? 'HTTP/1.1') . ' ' . $code . ' ' . $description);
|
2021-11-12 13:52:01 -05:00
|
|
|
|
2021-11-12 14:04:47 -05:00
|
|
|
$this->exit('status', ['status' => $error], $format);
|
2021-11-12 13:52:01 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Outputs formatted data according to the data type and then exits the execution.
|
|
|
|
*
|
|
|
|
* @param string $root_element
|
|
|
|
* @param array $data An array with a single element containing the returned result
|
|
|
|
* @param string|null $format Output format (xml, json, rss, atom)
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
2021-11-24 18:03:34 -05:00
|
|
|
public function exit(string $root_element, array $data, string $format = null, int $cid = 0)
|
2021-11-12 13:52:01 -05:00
|
|
|
{
|
|
|
|
$format = $format ?? 'json';
|
|
|
|
|
2021-11-24 18:03:34 -05:00
|
|
|
$return = $this->formatData($root_element, $format, $data, $cid);
|
2021-11-12 13:52:01 -05:00
|
|
|
|
|
|
|
switch ($format) {
|
|
|
|
case 'xml':
|
2021-11-21 18:07:09 -05:00
|
|
|
$this->setType(static::TYPE_XML);
|
2021-11-12 13:52:01 -05:00
|
|
|
break;
|
|
|
|
case 'json':
|
2021-11-21 18:07:09 -05:00
|
|
|
$this->setType(static::TYPE_JSON);
|
2021-11-12 13:52:01 -05:00
|
|
|
if (!empty($return)) {
|
|
|
|
$json = json_encode(end($return));
|
|
|
|
if (!empty($_GET['callback'])) {
|
|
|
|
$json = $_GET['callback'] . '(' . $json . ')';
|
|
|
|
}
|
|
|
|
$return = $json;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case 'rss':
|
2021-11-21 18:07:09 -05:00
|
|
|
$this->setType(static::TYPE_RSS);
|
2021-11-12 13:52:01 -05:00
|
|
|
break;
|
|
|
|
case 'atom':
|
2021-11-21 18:07:09 -05:00
|
|
|
$this->setType(static::TYPE_ATOM);
|
2021-11-12 13:52:01 -05:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2021-11-21 15:52:36 -05:00
|
|
|
$this->addContent($return);
|
2021-11-12 13:52:01 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Quit execution with the message that the endpoint isn't implemented
|
|
|
|
*
|
|
|
|
* @param string $method
|
2021-11-28 07:44:42 -05:00
|
|
|
* @param array $request (optional) The request content of the current call for later analysis
|
2021-11-12 13:52:01 -05:00
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
* @throws \Exception
|
|
|
|
*/
|
2021-11-28 07:44:42 -05:00
|
|
|
public function unsupported(string $method = 'all', array $request = [])
|
2021-11-12 13:52:01 -05:00
|
|
|
{
|
2021-11-12 14:07:05 -05:00
|
|
|
$path = $this->args->getQueryString();
|
2021-11-12 14:08:30 -05:00
|
|
|
$this->logger->info('Unimplemented API call',
|
2021-11-12 13:52:01 -05:00
|
|
|
[
|
|
|
|
'method' => $method,
|
|
|
|
'path' => $path,
|
|
|
|
'agent' => $_SERVER['HTTP_USER_AGENT'] ?? '',
|
2021-11-28 07:44:42 -05:00
|
|
|
'request' => $request,
|
2021-11-12 13:52:01 -05:00
|
|
|
]);
|
2021-11-12 14:07:05 -05:00
|
|
|
$error = $this->l10n->t('API endpoint %s %s is not implemented', strtoupper($method), $path);
|
|
|
|
$error_description = $this->l10n->t('The API endpoint is currently not implemented but might be in the future.');
|
2021-11-12 16:44:59 -05:00
|
|
|
|
|
|
|
$this->exit('error', ['error' => ['error' => $error, 'error_description' => $error_description]]);
|
2021-11-12 13:52:01 -05:00
|
|
|
}
|
|
|
|
}
|