]> git.mxchange.org Git - friendica.git/blob - src/Factory/Api/Twitter/User.php
Use reshare with Diaspora like with ActivityPub
[friendica.git] / src / Factory / Api / Twitter / User.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\Factory\Api\Twitter;
23
24 use Friendica\BaseFactory;
25 use Friendica\Model\APContact;
26 use Friendica\Model\Contact;
27 use Friendica\Network\HTTPException;
28 use Friendica\Factory\Api\Twitter\Status;
29 use Friendica\Model\Item;
30 use Friendica\Model\Post;
31 use Psr\Log\LoggerInterface;
32
33 class User extends BaseFactory
34 {
35         /** @var Status entity */
36         private $status;
37
38         public function __construct(LoggerInterface $logger, Status $status)
39         {
40                 parent::__construct($logger);
41                 $this->status = $status;
42
43         }
44
45         /**
46          * @param int  $contactId
47          * @param int  $uid Public contact (=0) or owner user id
48          * @param bool $skip_status
49          * @param bool $include_user_entities
50          *
51          * @return \Friendica\Object\Api\Twitter\User
52          * @throws HTTPException\InternalServerErrorException
53          * @throws \ImagickException
54          */
55         public function createFromContactId(int $contactId, int $uid = 0, bool $skip_status = true, bool $include_user_entities = true): \Friendica\Object\Api\Twitter\User
56         {
57                 $cdata = Contact::getPublicAndUserContactID($contactId, $uid);
58                 if (!empty($cdata)) {
59                         $publicContact = Contact::getById($cdata['public']);
60                         $userContact = Contact::getById($cdata['user']);
61                 } else {
62                         $publicContact = Contact::getById($contactId);
63                         $userContact = [];
64                 }
65
66                 $apcontact = APContact::getByURL($publicContact['url'], false);
67
68                 $status = null;
69
70                 if (!$skip_status) {
71                         $post = Post::selectFirstPost(['uri-id'],
72                                 ['author-id' => $publicContact['id'], 'gravity' => [Item::GRAVITY_COMMENT, Item::GRAVITY_PARENT], 'private'  => [Item::PUBLIC, Item::UNLISTED]],
73                                 ['order' => ['uri-id' => true]]);
74                         if (!empty($post['uri-id'])) {
75                                 $status = $this->status->createFromUriId($post['uri-id'], $uid)->toArray();
76                         }
77                 }
78
79                 return new \Friendica\Object\Api\Twitter\User($publicContact, $apcontact, $userContact, $status, $include_user_entities);
80         }
81
82         /**
83          * @param int  $uid Public contact (=0) or owner user id
84          * @param bool $skip_status
85          * @param bool $include_user_entities
86          *
87          * @return \Friendica\Object\Api\Twitter\User
88          */
89         public function createFromUserId(int $uid, bool $skip_status = true, bool $include_user_entities = true): \Friendica\Object\Api\Twitter\User
90         {
91                 return $this->createFromContactId(Contact::getPublicIdByUserId($uid), $uid, $skip_status, $include_user_entities);
92         }
93 }