2021-05-11 06:30:20 +00:00
|
|
|
<?php
|
|
|
|
/**
|
2022-01-02 07:27:47 +00:00
|
|
|
* @copyright Copyright (C) 2010-2022, the Friendica project
|
2021-05-11 06:30:20 +00:00
|
|
|
*
|
|
|
|
* @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/>.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
namespace Friendica\Module\OAuth;
|
|
|
|
|
2021-06-16 19:24:44 +00:00
|
|
|
use Friendica\Core\Logger;
|
|
|
|
use Friendica\Core\System;
|
|
|
|
use Friendica\Database\DBA;
|
|
|
|
use Friendica\DI;
|
2021-05-11 06:30:20 +00:00
|
|
|
use Friendica\Module\BaseApi;
|
2021-12-17 15:25:04 +00:00
|
|
|
use Psr\Http\Message\ResponseInterface;
|
2021-05-11 06:30:20 +00:00
|
|
|
|
|
|
|
/**
|
2021-05-12 12:00:24 +00:00
|
|
|
* @see https://docs.joinmastodon.org/spec/oauth/
|
2021-05-11 06:30:20 +00:00
|
|
|
*/
|
|
|
|
class Revoke extends BaseApi
|
|
|
|
{
|
2021-12-17 15:25:04 +00:00
|
|
|
public function run(array $request = [], bool $scopecheck = true): ResponseInterface
|
|
|
|
{
|
|
|
|
return parent::run($request, false);
|
|
|
|
}
|
|
|
|
|
2021-11-28 12:44:42 +00:00
|
|
|
protected function post(array $request = [])
|
2021-05-11 06:30:20 +00:00
|
|
|
{
|
2021-11-28 12:22:27 +00:00
|
|
|
$request = $this->getRequest([
|
2021-06-16 19:24:44 +00:00
|
|
|
'client_id' => '', // Client ID, obtained during app registration
|
|
|
|
'client_secret' => '', // Client secret, obtained during app registration
|
|
|
|
'token' => '', // The previously obtained token, to be invalidated
|
2021-11-27 23:30:41 +00:00
|
|
|
], $request);
|
2021-06-16 19:24:44 +00:00
|
|
|
|
|
|
|
$condition = ['client_id' => $request['client_id'], 'client_secret' => $request['client_secret'], 'access_token' => $request['token']];
|
|
|
|
$token = DBA::selectFirst('application-view', ['id'], $condition);
|
|
|
|
if (empty($token['id'])) {
|
2022-08-31 05:01:22 +00:00
|
|
|
Logger::notice('Token not found', $condition);
|
2021-06-16 19:24:44 +00:00
|
|
|
DI::mstdnError()->Unauthorized();
|
|
|
|
}
|
|
|
|
|
|
|
|
DBA::delete('application-token', ['application-id' => $token['id']]);
|
|
|
|
System::jsonExit([]);
|
2021-05-11 06:30:20 +00:00
|
|
|
}
|
|
|
|
}
|