2019-12-05 08:12:59 -05:00
|
|
|
<?php
|
|
|
|
|
2020-01-27 21:18:42 -05:00
|
|
|
namespace Friendica\Module;
|
2019-12-05 08:12:59 -05:00
|
|
|
|
|
|
|
use Friendica\BaseModule;
|
2019-12-15 16:34:11 -05:00
|
|
|
use Friendica\DI;
|
2019-12-05 08:12:59 -05:00
|
|
|
use Friendica\Network\HTTPException;
|
|
|
|
|
2020-01-27 21:18:42 -05:00
|
|
|
require_once __DIR__ . '/../../include/api.php';
|
2019-12-05 08:12:59 -05:00
|
|
|
|
2020-01-27 21:18:42 -05:00
|
|
|
class BaseApi extends BaseModule
|
2019-12-05 08:12:59 -05:00
|
|
|
{
|
|
|
|
/**
|
|
|
|
* @var string json|xml|rss|atom
|
|
|
|
*/
|
|
|
|
protected static $format = 'json';
|
|
|
|
/**
|
|
|
|
* @var bool|int
|
|
|
|
*/
|
|
|
|
protected static $current_user_id;
|
|
|
|
|
|
|
|
public static function init(array $parameters = [])
|
|
|
|
{
|
2019-12-15 17:28:01 -05:00
|
|
|
$arguments = DI::args();
|
2019-12-05 08:12:59 -05:00
|
|
|
|
2019-12-15 17:28:01 -05:00
|
|
|
if (substr($arguments->getQueryString(), -4) === '.xml') {
|
2019-12-05 08:12:59 -05:00
|
|
|
self::$format = 'xml';
|
|
|
|
}
|
2019-12-15 17:28:01 -05:00
|
|
|
if (substr($arguments->getQueryString(), -4) === '.rss') {
|
2019-12-05 08:12:59 -05:00
|
|
|
self::$format = 'rss';
|
|
|
|
}
|
2019-12-15 17:28:01 -05:00
|
|
|
if (substr($arguments->getQueryString(), -4) === '.atom') {
|
2019-12-05 08:12:59 -05:00
|
|
|
self::$format = 'atom';
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public static function post(array $parameters = [])
|
|
|
|
{
|
|
|
|
if (!api_user()) {
|
2020-01-18 14:52:34 -05:00
|
|
|
throw new HTTPException\UnauthorizedException(DI::l10n()->t('Permission denied.'));
|
2019-12-05 08:12:59 -05:00
|
|
|
}
|
|
|
|
|
2019-12-15 16:34:11 -05:00
|
|
|
$a = DI::app();
|
2019-12-05 08:12:59 -05:00
|
|
|
|
|
|
|
if (!empty($a->user['uid']) && $a->user['uid'] != api_user()) {
|
2020-01-18 14:52:34 -05:00
|
|
|
throw new HTTPException\ForbiddenException(DI::l10n()->t('Permission denied.'));
|
2019-12-05 08:12:59 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Log in user via OAuth1 or Simple HTTP Auth.
|
|
|
|
*
|
2020-01-19 01:05:23 -05:00
|
|
|
* Simple Auth allow username in form of <pre>user@server</pre>, ignoring server part
|
2019-12-05 08:12:59 -05:00
|
|
|
*
|
2019-12-11 03:32:46 -05:00
|
|
|
* @return bool Was a user authenticated?
|
2019-12-05 08:12:59 -05:00
|
|
|
* @throws HTTPException\ForbiddenException
|
|
|
|
* @throws HTTPException\UnauthorizedException
|
|
|
|
* @throws HTTPException\InternalServerErrorException
|
|
|
|
* @hook 'authenticate'
|
|
|
|
* array $addon_auth
|
|
|
|
* 'username' => username from login form
|
|
|
|
* 'password' => password from login form
|
|
|
|
* 'authenticated' => return status,
|
|
|
|
* 'user_record' => return authenticated user record
|
|
|
|
*/
|
|
|
|
protected static function login()
|
|
|
|
{
|
2019-12-15 16:34:11 -05:00
|
|
|
api_login(DI::app());
|
2019-12-05 08:12:59 -05:00
|
|
|
|
|
|
|
self::$current_user_id = api_user();
|
2019-12-11 03:32:46 -05:00
|
|
|
|
|
|
|
return (bool)self::$current_user_id;
|
2019-12-05 08:12:59 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2020-01-19 01:05:23 -05:00
|
|
|
* Get user info array.
|
2019-12-05 08:12:59 -05:00
|
|
|
*
|
|
|
|
* @param int|string $contact_id Contact ID or URL
|
|
|
|
* @return array|bool
|
|
|
|
* @throws HTTPException\BadRequestException
|
|
|
|
* @throws HTTPException\InternalServerErrorException
|
|
|
|
* @throws HTTPException\UnauthorizedException
|
|
|
|
* @throws \ImagickException
|
|
|
|
*/
|
|
|
|
protected static function getUser($contact_id = null)
|
|
|
|
{
|
2019-12-15 16:34:11 -05:00
|
|
|
return api_get_user(DI::app(), $contact_id);
|
2019-12-05 08:12:59 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
protected static function format($root_element, $data)
|
|
|
|
{
|
|
|
|
switch (self::$format) {
|
|
|
|
case "atom":
|
|
|
|
case "rss":
|
|
|
|
case "xml":
|
|
|
|
$ret = api_create_xml($data, $root_element);
|
|
|
|
break;
|
|
|
|
case "json":
|
|
|
|
default:
|
|
|
|
$ret = $data;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
return $ret;
|
|
|
|
}
|
|
|
|
}
|