]> git.mxchange.org Git - friendica.git/blob - src/Module/Api/Mastodon/Apps.php
Merge pull request #10209 from MrPetovan/bug/10205-frio-link-preview-accents
[friendica.git] / src / Module / Api / Mastodon / Apps.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\Api\Mastodon;
23
24 use Friendica\Core\System;
25 use Friendica\Database\DBA;
26 use Friendica\DI;
27 use Friendica\Module\BaseApi;
28
29 /**
30  * Apps class to register new OAuth clients
31  */
32 class Apps extends BaseApi
33 {
34         /**
35          * @param array $parameters
36          * @throws \Friendica\Network\HTTPException\InternalServerErrorException
37          */
38         public static function post(array $parameters = [])
39         {
40                 $name     = !isset($_REQUEST['client_name']) ? '' : $_REQUEST['client_name'];
41                 $redirect = !isset($_REQUEST['redirect_uris']) ? '' : $_REQUEST['redirect_uris'];
42                 $scopes   = !isset($_REQUEST['scopes']) ? '' : $_REQUEST['scopes'];
43                 $website  = !isset($_REQUEST['website']) ? '' : $_REQUEST['website'];
44
45                 if (empty($name) || empty($redirect)) {
46                         DI::mstdnError()->RecordNotFound();
47                 }
48
49                 $client_id     = base64_encode(openssl_random_pseudo_bytes(32));
50                 $client_secret = bin2hex(random_bytes(32));
51
52                 $fields = ['client_id' => $client_id, 'client_secret' => $client_secret, 'name' => $name, 'redirect_uri' => $redirect];
53
54                 if (!empty($scopes)) {
55                         $fields['scopes'] = $scopes;
56                 }
57
58                 if (!empty($website)) {
59                         $fields['website'] = $website;
60                 }
61
62                 if (!DBA::insert('application', $fields)) {
63                         DI::mstdnError()->RecordNotFound();
64                 }
65
66                 System::jsonExit(DI::mstdnApplication()->createFromApplicationId(DBA::lastInsertId()));
67         }
68 }