]> git.mxchange.org Git - friendica.git/blob - src/Module/Settings/OAuth.php
Decouple conversation creation from rendering
[friendica.git] / src / Module / Settings / OAuth.php
1 <?php
2 /**
3  * @copyright Copyright (C) 2010-2023, 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\Settings;
23
24 use Friendica\App;
25 use Friendica\Core\L10n;
26 use Friendica\Core\Renderer;
27 use Friendica\Core\Session\Capability\IHandleUserSessions;
28 use Friendica\Database\Database;
29 use Friendica\Module\BaseSettings;
30 use Friendica\Module\Response;
31 use Friendica\Util\Profiler;
32 use Psr\Log\LoggerInterface;
33
34 class OAuth extends BaseSettings
35 {
36         /** @var Database */
37         private $database;
38
39         public function __construct(Database $database, IHandleUserSessions $session, App\Page $page, L10n $l10n, App\BaseURL $baseUrl, App\Arguments $args, LoggerInterface $logger, Profiler $profiler, Response $response, array $server, array $parameters = [])
40         {
41                 parent::__construct($session, $page, $l10n, $baseUrl, $args, $logger, $profiler, $response, $server, $parameters);
42
43                 $this->database = $database;
44         }
45
46         protected function post(array $request = [])
47         {
48                 if (!$this->session->getLocalUserId()) {
49                         return;
50                 }
51
52                 if (!isset($request['delete'])) {
53                         return;
54                 }
55
56                 BaseSettings::checkFormSecurityTokenRedirectOnError('/settings/oauth', 'settings_oauth');
57
58                 $this->database->delete('application-token', ['application-id' => $request['delete'], 'uid' => $this->session->getLocalUserId()]);
59                 $this->baseUrl->redirect('settings/oauth', true);
60         }
61
62         protected function content(array $request = []): string
63         {
64                 parent::content($request);
65
66                 $applications = $this->database->selectToArray('application-view', ['id', 'uid', 'name', 'website', 'scopes', 'created_at'], ['uid' => $this->session->getLocalUserId()]);
67
68                 $tpl = Renderer::getMarkupTemplate('settings/oauth.tpl');
69                 return Renderer::replaceMacros($tpl, [
70                         '$form_security_token' => BaseSettings::getFormSecurityToken('settings_oauth'),
71                         '$title'               => $this->t('Connected Apps'),
72                         '$name'                => $this->t('Name'),
73                         '$website'             => $this->t('Home Page'),
74                         '$created_at'          => $this->t('Created'),
75                         '$delete'              => $this->t('Remove authorization'),
76                         '$apps'                => $applications,
77                 ]);
78         }
79 }