]> git.mxchange.org Git - friendica.git/blob - src/Object/Api/Mastodon/FollowRequest.php
Merge pull request #10116 from mexon/mat/addon-console-command
[friendica.git] / src / Object / Api / Mastodon / FollowRequest.php
1 <?php
2 /**
3  * @copyright Copyright (C) 2020, Friendica
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\BaseURL;
25 use Friendica\Collection\Api\Mastodon\Fields;
26
27 /**
28  * Virtual entity to separate Accounts from Follow Requests.
29  * In the Mastodon API they are one and the same.
30  */
31 class FollowRequest extends Account
32 {
33         /**
34          * Creates a follow request entity from an introduction record.
35          *
36          * The account ID is set to the Introduction ID to allow for later interaction with follow requests.
37          *
38          * @param BaseURL $baseUrl
39          * @param int     $introduction_id Introduction record id
40          * @param array   $publicContact   Full contact table record with uid = 0
41          * @param array   $apcontact       Optional full apcontact table record
42          * @param array   $userContact     Optional full contact table record with uid != 0
43          * @throws \Friendica\Network\HTTPException\InternalServerErrorException
44          */
45         public function __construct(BaseURL $baseUrl, int $introduction_id, array $publicContact, array $apcontact = [], array $userContact = [])
46         {
47                 parent::__construct($baseUrl, $publicContact, new Fields(), $apcontact, $userContact);
48
49                 $this->id = $introduction_id;
50         }
51 }