friendica/src/Module/Api/Friendica/Index.php

51 wiersze
1.4 KiB
PHP
Czysty Zwykły widok Historia

2011-02-15 11:24:21 +00:00
<?php
2018-01-21 18:33:59 +00:00
/**
2022-01-02 07:27:47 +00:00
* @copyright Copyright (C) 2010-2022, the Friendica project
*
* @license GNU AGPL version 3 or any later version
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*
2018-01-21 18:33:59 +00:00
*/
2021-11-08 07:23:18 +00:00
namespace Friendica\Module\Api\Friendica;
2021-11-08 07:23:18 +00:00
use Friendica\DI;
use Friendica\Module\BaseApi;
2021-11-19 20:15:12 +00:00
require_once __DIR__ . '/../../../../include/api.php';
2011-02-15 11:24:21 +00:00
2021-11-08 07:23:18 +00:00
/**
* api/friendica
*
* @package Friendica\Module\Api\Friendica
*/
class Index extends BaseApi
{
protected function post(array $request = [])
2021-11-08 07:23:18 +00:00
{
self::checkAllowedScope(self::SCOPE_WRITE);
2011-10-26 15:15:36 +00:00
}
protected function delete(array $request = [])
2021-11-08 07:23:18 +00:00
{
self::checkAllowedScope(self::SCOPE_WRITE);
}
protected function rawContent(array $request = [])
2021-11-08 07:23:18 +00:00
{
echo api_call(DI::args()->getCommand(), $this->parameters['extension'] ?? 'json');
2021-11-08 07:23:18 +00:00
exit();
}
2011-02-15 11:24:21 +00:00
}