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