]> git.mxchange.org Git - friendica.git/blobdiff - src/Module/OAuth/Revoke.php
Adding and removing of pictures via API is now possible
[friendica.git] / src / Module / OAuth / Revoke.php
index 536d603c79564e4f8f3b22122b9b21b394f813a2..ccadfbeff8c0a1ac50d1eecf5576a0b76458bc89 100644 (file)
@@ -1,6 +1,6 @@
 <?php
 /**
- * @copyright Copyright (C) 2010-2021, the Friendica project
+ * @copyright Copyright (C) 2010-2023, the Friendica project
  *
  * @license GNU AGPL version 3 or any later version
  *
@@ -26,15 +26,22 @@ use Friendica\Core\System;
 use Friendica\Database\DBA;
 use Friendica\DI;
 use Friendica\Module\BaseApi;
+use Friendica\Module\Special\HTTPException;
+use Psr\Http\Message\ResponseInterface;
 
 /**
  * @see https://docs.joinmastodon.org/spec/oauth/
  */
 class Revoke extends BaseApi
 {
-       protected function post(array $request = [], array $post = [])
+       public function run(HTTPException $httpException, array $request = [], bool $scopecheck = true): ResponseInterface
        {
-               $request = self::getRequest([
+               return parent::run($httpException, $request, false);
+       }
+
+       protected function post(array $request = [])
+       {
+               $request = $this->getRequest([
                        'client_id'     => '', // Client ID, obtained during app registration
                        'client_secret' => '', // Client secret, obtained during app registration
                        'token'         => '', // The previously obtained token, to be invalidated
@@ -43,7 +50,7 @@ class Revoke extends BaseApi
                $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'])) {
-                       Logger::warning('Token not found', $condition);
+                       Logger::notice('Token not found', $condition);
                        DI::mstdnError()->Unauthorized();
                }