]> git.mxchange.org Git - friendica.git/blob - src/Module/Api/GNUSocial/GNUSocial/Config.php
Centralize config.admin_email management in Model\User
[friendica.git] / src / Module / Api / GNUSocial / GNUSocial / Config.php
1 <?php
2 /**
3  * @copyright Copyright (C) 2010-2022, 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\GNUSocial\GNUSocial;
23
24 use Friendica\App;
25 use Friendica\DI;
26 use Friendica\Model\User;
27 use Friendica\Module\BaseApi;
28 use Friendica\Module\Register;
29
30 /**
31  * API endpoint: /api/gnusocial/version, /api/statusnet/version
32  */
33 class Config extends BaseApi
34 {
35         protected function rawContent(array $request = [])
36         {
37                 $config = [
38                         'site' => [
39                                 'name'         => DI::config()->get('config', 'sitename'),
40                                 'server'       => DI::baseUrl()->getHostname(),
41                                 'theme'        => DI::config()->get('system', 'theme'),
42                                 'path'         => DI::baseUrl()->getUrlPath(),
43                                 'logo'         => DI::baseUrl() . '/images/friendica-64.png',
44                                 'fancy'        => true,
45                                 'language'     => DI::config()->get('system', 'language'),
46                                 'email'        => implode(',', User::getAdminEmailList()),
47                                 'broughtby'    => '',
48                                 'broughtbyurl' => '',
49                                 'timezone'     => DI::config()->get('system', 'default_timezone'),
50                                 'closed'       => (DI::config()->get('config', 'register_policy') == Register::CLOSED),
51                                 'inviteonly'   => (bool)DI::config()->get('system', 'invitation_only'),
52                                 'private'      => (bool)DI::config()->get('system', 'block_public'),
53                                 'textlimit'    => (string) DI::config()->get('config', 'api_import_size', DI::config()->get('config', 'max_import_size')),
54                                 'sslserver'    => null,
55                                 'ssl'          => DI::config()->get('system', 'ssl_policy') == App\BaseURL::SSL_POLICY_FULL ? 'always' : '0',
56                                 'friendica'    => [
57                                         'FRIENDICA_PLATFORM'    => App::PLATFORM,
58                                         'FRIENDICA_VERSION'     => App::VERSION,
59                                         'DB_UPDATE_VERSION'     => DB_UPDATE_VERSION,
60                                 ]
61                         ],
62                 ];
63
64                 $this->response->exit('config', ['config' => $config], $this->parameters['extension'] ?? null);
65         }
66 }