]> git.mxchange.org Git - friendica.git/blob - src/Factory/Api/Twitter/Status.php
Merge pull request #11285 from tobiasd/2022.03-changelog
[friendica.git] / src / Factory / Api / Twitter / Status.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\Content\Text\BBCode;
26 use Friendica\Content\Text\HTML;
27 use Friendica\Database\Database;
28 use Friendica\Factory\Api\Friendica\Activities;
29 use Friendica\Factory\Api\Twitter\User as TwitterUser;
30 use Friendica\Model\Item;
31 use Friendica\Model\Post;
32 use Friendica\Model\Verb;
33 use Friendica\Network\HTTPException;
34 use Friendica\Protocol\Activity;
35 use ImagickException;
36 use Psr\Log\LoggerInterface;
37
38 class Status extends BaseFactory
39 {
40         /** @var Database */
41         private $dba;
42         /** @var twitterUser entity */
43         private $twitterUser;
44         /** @var Hashtag entity */
45         private $hashtag;
46         /** @var Media entity */
47         private $media;
48         /** @var Url entity */
49         private $url;
50         /** @var Mention entity */
51         private $mention;
52         /** @var Activities entity */
53         private $activities;
54         /** @var Activities entity */
55         private $attachment;
56
57         public function __construct(LoggerInterface $logger, Database $dba, TwitterUser $twitteruser, Hashtag $hashtag, Media $media, Url $url, Mention $mention, Activities $activities, Attachment $attachment)
58         {
59                 parent::__construct($logger);
60                 $this->dba         = $dba;
61                 $this->twitterUser = $twitteruser;
62                 $this->hashtag     = $hashtag;
63                 $this->media       = $media;
64                 $this->url         = $url;
65                 $this->mention     = $mention;
66                 $this->activities  = $activities;
67                 $this->attachment  = $attachment;
68         }
69
70         /**
71          * @param int $uriId Uri-ID of the item
72          * @param int $uid   Item user
73          *
74          * @return \Friendica\Object\Api\Twitter\Status
75          * @throws HTTPException\InternalServerErrorException
76          * @throws ImagickException|HTTPException\NotFoundException
77          */
78         public function createFromItemId(int $id, int $uid, bool $include_entities = false): \Friendica\Object\Api\Twitter\Status
79         {
80                 $fields = ['parent-uri-id', 'uri-id', 'uid', 'author-id', 'author-link', 'author-network', 'owner-id', 'causer-id',
81                         'starred', 'app', 'title', 'body', 'raw-body', 'created', 'network','post-reason', 'language', 'gravity',
82                         'thr-parent-id', 'parent-author-id', 'parent-author-nick', 'uri', 'plink', 'private', 'vid', 'coord'];
83                 $item = Post::selectFirst($fields, ['id' => $id], ['order' => ['uid' => true]]);
84                 if (!$item) {
85                         throw new HTTPException\NotFoundException('Item with ID ' . $id . ' not found.');
86                 }
87                 return $this->createFromArray($item, $uid, $include_entities);
88         }
89
90         /**
91          * @param int $uriId Uri-ID of the item
92          * @param int $uid   Item user
93          *
94          * @return \Friendica\Object\Api\Twitter\Status
95          * @throws HTTPException\InternalServerErrorException
96          * @throws ImagickException|HTTPException\NotFoundException
97          */
98         public function createFromUriId(int $uriId, $uid = 0, $include_entities = false): \Friendica\Object\Api\Twitter\Status
99         {
100                 $fields = ['parent-uri-id', 'uri-id', 'uid', 'author-id', 'author-link', 'author-network', 'owner-id', 'causer-id',
101                         'starred', 'app', 'title', 'body', 'raw-body', 'created', 'network','post-reason', 'language', 'gravity',
102                         'thr-parent-id', 'parent-author-id', 'parent-author-nick', 'uri', 'plink', 'private', 'vid', 'coord'];
103                 $item = Post::selectFirst($fields, ['uri-id' => $uriId, 'uid' => [0, $uid]], ['order' => ['uid' => true]]);
104                 if (!$item) {
105                         throw new HTTPException\NotFoundException('Item with URI ID ' . $uriId . ' not found' . ($uid ? ' for user ' . $uid : '.'));
106                 }
107                 return $this->createFromArray($item, $uid, $include_entities);
108         }
109
110         /**
111          * @param array $item item array
112          * @param int   $uid  Item user
113          *
114          * @return \Friendica\Object\Api\Twitter\Status
115          * @throws HTTPException\InternalServerErrorException
116          * @throws ImagickException|HTTPException\NotFoundException
117          */
118         private function createFromArray(array $item, int $uid, bool $include_entities): \Friendica\Object\Api\Twitter\Status
119         {
120                 $author = $this->twitterUser->createFromContactId($item['author-id'], $uid, true);
121
122                 if (!empty($item['causer-id']) && ($item['post-reason'] == Item::PR_ANNOUNCEMENT)) {
123                         $owner = $this->twitterUser->createFromContactId($item['causer-id'], $uid, true);
124                 } else {
125                         $owner = $this->twitterUser->createFromContactId($item['owner-id'], $uid, true);
126                 }
127
128                 $friendica_comments = Post::countPosts(['thr-parent-id' => $item['uri-id'], 'deleted' => false, 'gravity' => GRAVITY_COMMENT]);
129
130                 $text  = '';
131                 $title = '';
132
133                 // Add the title to text / html if set
134                 if (!empty($item['title'])) {
135                         $text .= $item['title'] . ' ';
136                         $title = sprintf("[h4]%s[/h4]\n", $item['title']);
137                 }
138
139                 $statusnetHtml = BBCode::convertForUriId($item['uri-id'], BBCode::setMentionsToNicknames($title . ($item['raw-body'] ?? $item['body'])), BBCode::API);
140                 $friendicaHtml = BBCode::convertForUriId($item['uri-id'], $title . $item['body'], BBCode::EXTERNAL);
141
142                 $text .= Post\Media::addAttachmentsToBody($item['uri-id'], $item['body']);
143
144                 $text = trim(HTML::toPlaintext(BBCode::convertForUriId($item['uri-id'], $text, BBCode::API), 0));
145
146                 $geo = [];
147
148                 if ($item['coord'] != '') {
149                         $coords = explode(' ', $item["coord"]);
150                         if (count($coords) == 2) {
151                                 $geo = [
152                                         'type'        => 'Point',
153                                         'coordinates' => [(float) $coords[0], (float) $coords[1]]
154                                 ];
155                         }
156                 }
157
158                 $liked = Post::exists([
159                         'thr-parent-id' => $item['uri-id'],
160                         'uid'           => $uid,
161                         'origin'        => true,
162                         'gravity'       => GRAVITY_ACTIVITY,
163                         'vid'           => Verb::getID(Activity::LIKE),
164                         'deleted'       => false
165                 ]);
166
167                 if ($include_entities) {
168                         $hashtags = $this->hashtag->createFromUriId($item['uri-id'], $text);
169                         $medias   = $this->media->createFromUriId($item['uri-id'], $text);
170                         $urls     = $this->url->createFromUriId($item['uri-id'], $text);
171                         $mentions = $this->mention->createFromUriId($item['uri-id'], $text);
172                 } else {
173                         $attachments = $this->attachment->createFromUriId($item['uri-id'], $text);
174                 }
175
176                 $friendica_activities = $this->activities->createFromUriId($item['uri-id'], $uid);
177
178                 $shared = BBCode::fetchShareAttributes($item['body']);
179                 if (!empty($shared['guid'])) {
180                         $shared_item = Post::selectFirst(['uri-id', 'plink'], ['guid' => $shared['guid']]);
181
182                         $shared_uri_id = $shared_item['uri-id'] ?? 0;
183
184                         if ($include_entities) {
185                                 $hashtags = array_merge($hashtags, $this->hashtag->createFromUriId($shared_uri_id, $text));
186                                 $medias   = array_merge($medias, $this->media->createFromUriId($shared_uri_id, $text));
187                                 $urls     = array_merge($urls, $this->url->createFromUriId($shared_uri_id, $text));
188                                 $mentions = array_merge($mentions, $this->mention->createFromUriId($shared_uri_id, $text));
189                         } else {
190                                 $attachments = array_merge($attachments, $this->attachment->createFromUriId($shared_uri_id, $text));
191                         }
192                 }
193
194                 if ($item['vid'] == Verb::getID(Activity::ANNOUNCE)) {
195                         $retweeted      = $this->createFromUriId($item['thr-parent-id'], $uid)->toArray();
196                         $retweeted_item = Post::selectFirst(['title', 'body', 'author-id'], ['uri-id' => $item['thr-parent-id'], 'uid' => [0, $uid]]);
197                         $item['title']  = $retweeted_item['title'] ?? $item['title'];
198                         $item['body']   = $retweeted_item['body']  ?? $item['body'];
199                         $author         = $this->twitterUser->createFromContactId($retweeted_item['author-id'], $uid, true);
200                 } else {
201                         $retweeted = [];
202                 }
203
204                 $quoted = []; // @todo
205
206                 if ($include_entities) {
207                         $entities    = ['hashtags' => $hashtags, 'media' => $medias, 'urls' => $urls, 'user_mentions' => $mentions];
208                         $attachments = [];
209                 } else {
210                         $entities = [];
211                 }
212
213                 return new \Friendica\Object\Api\Twitter\Status($text, $statusnetHtml, $friendicaHtml, $item, $author, $owner, $retweeted, $quoted, $geo, $friendica_activities, $entities, $attachments,  $friendica_comments, $liked);
214         }
215 }