]> git.mxchange.org Git - friendica.git/blob - src/Object/Api/Mastodon/Instance.php
18707356ef9f0208803d552f4d9ac1304e18996a
[friendica.git] / src / Object / Api / Mastodon / Instance.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\Object\Api\Mastodon;
23
24 use Friendica\App;
25 use Friendica\App\BaseURL;
26 use Friendica\BaseDataTransferObject;
27 use Friendica\Contact\Header;
28 use Friendica\Core\Config\Capability\IManageConfigValues;
29 use Friendica\Database\Database;
30 use Friendica\DI;
31 use Friendica\Model\User;
32 use Friendica\Module\Register;
33 use Friendica\Network\HTTPException;
34 use Friendica\Object\Api\Mastodon\InstanceV2\Configuration;
35
36 /**
37  * Class Instance
38  *
39  * @see https://docs.joinmastodon.org/entities/V1_Instance/
40  */
41 class Instance extends BaseDataTransferObject
42 {
43         /** @var string (URL) */
44         protected $uri;
45         /** @var string */
46         protected $title;
47         /** @var string */
48         protected $short_description;
49         /** @var string */
50         protected $description;
51         /** @var string */
52         protected $email;
53         /** @var string */
54         protected $version;
55         /** @var array */
56         protected $urls;
57         /** @var Stats */
58         protected $stats;
59         /** @var string|null This is meant as a server banner, default Mastodon "thumbnail" is 1600×620px */
60         protected $thumbnail = null;
61         /** @var array */
62         protected $languages;
63         /** @var int */
64         protected $max_toot_chars;
65         /** @var bool */
66         protected $registrations;
67         /** @var bool */
68         protected $approval_required;
69         /** @var bool */
70         protected $invites_enabled;
71         /** @var Account|null */
72         /** @var Configuration  */
73         protected $configuration;
74         protected $contact_account = null;
75         /** @var array */
76         protected $rules = [];
77
78         /**
79          * @param IManageConfigValues $config
80          * @param BaseURL             $baseUrl
81          * @param Database            $database
82          * @param array               $rules
83          * @throws HTTPException\InternalServerErrorException
84          * @throws HTTPException\NotFoundException
85          * @throws \ImagickException
86          */
87         public function __construct(IManageConfigValues $config, BaseURL $baseUrl, Database $database, array $rules = [], Configuration $configuration)
88         {
89                 $register_policy = intval($config->get('config', 'register_policy'));
90
91                 $this->uri               = $baseUrl->getHost();
92                 $this->title             = $config->get('config', 'sitename');
93                 $this->short_description = $this->description = $config->get('config', 'info');
94                 $this->email             = implode(',', User::getAdminEmailList());
95                 $this->version           = '2.8.0 (compatible; Friendica ' . App::VERSION . ')';
96                 $this->urls              = ['streaming_api' => '']; // Not supported
97                 $this->stats             = new Stats($config, $database);
98                 $this->thumbnail         = $baseUrl . (new Header($config))->getMastodonBannerPath();
99                 $this->languages         = [$config->get('system', 'language')];
100                 $this->max_toot_chars    = (int)$config->get('config', 'api_import_size', $config->get('config', 'max_import_size'));
101                 $this->registrations     = ($register_policy != Register::CLOSED);
102                 $this->approval_required = ($register_policy == Register::APPROVE);
103                 $this->invites_enabled   = false;
104                 $this->configuration     = $configuration;
105                 $this->contact_account   = [];
106                 $this->rules             = $rules;
107
108                 $administrator = User::getFirstAdmin(['nickname']);
109                 if ($administrator) {
110                         $adminContact = $database->selectFirst('contact', ['uri-id'], ['nick' => $administrator['nickname'], 'self' => true]);
111                         $this->contact_account = DI::mstdnAccount()->createFromUriId($adminContact['uri-id']);
112                 }
113         }
114 }