]> git.mxchange.org Git - friendica.git/blob - src/Module/OAuth/Token.php
Store creation date
[friendica.git] / src / Module / OAuth / Token.php
1 <?php
2 /**
3  * @copyright Copyright (C) 2010-2021, the Friendica project
4  *
5  * @license GNU AGPL version 3 or any later version
6  *
7  * This program is free software: you can redistribute it and/or modify
8  * it under the terms of the GNU Affero General Public License as
9  * published by the Free Software Foundation, either version 3 of the
10  * License, or (at your option) any later version.
11  *
12  * This program is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  * GNU Affero General Public License for more details.
16  *
17  * You should have received a copy of the GNU Affero General Public License
18  * along with this program.  If not, see <https://www.gnu.org/licenses/>.
19  *
20  */
21
22 namespace Friendica\Module\OAuth;
23
24 use Friendica\Core\Logger;
25 use Friendica\Core\System;
26 use Friendica\Database\DBA;
27 use Friendica\DI;
28 use Friendica\Module\BaseApi;
29
30 /**
31  * Dummy class for all currently unimplemented endpoints
32  */
33 class Token extends BaseApi
34 {
35         public static function post(array $parameters = [])
36         {
37                 $client_secret = !isset($_REQUEST['client_secret']) ? '' : $_REQUEST['client_secret'];
38                 $code          = !isset($_REQUEST['code']) ? '' : $_REQUEST['code'];
39                 $grant_type    = !isset($_REQUEST['grant_type']) ? '' : $_REQUEST['grant_type'];
40
41                 if ($grant_type != 'authorization_code') {
42                         Logger::warning('Wrong or missing grant type', ['grant_type' => $grant_type]);
43                         DI::mstdnError()->RecordNotFound();
44                 }
45
46                 $application = self::getApplication();
47                 if (empty($application)) {
48                         DI::mstdnError()->RecordNotFound();
49                 }
50
51                 if ($application['client_secret'] != $client_secret) {
52                         Logger::warning('Wrong client secret', $client_secret);
53                         DI::mstdnError()->RecordNotFound();
54                 }
55
56                 $condition = ['application-id' => $application['id'], 'code' => $code];
57
58                 $token = DBA::selectFirst('application-token', ['access_token'], $condition);
59                 if (!DBA::isResult($token)) {
60                         Logger::warning('Token not found', $condition);
61                         DI::mstdnError()->RecordNotFound();
62                 }
63
64                 // @todo Use entity class
65                 System::jsonExit(['access_token' => $token['access_token'], 'token_type' => 'Bearer', 'scope' => $application['scopes'], 'created_at' => $token['created_at']]);
66         }
67 }