]> git.mxchange.org Git - friendica.git/blob - src/Content/Text/Plaintext.php
Merge pull request #11230 from annando/account-type
[friendica.git] / src / Content / Text / Plaintext.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\Content\Text;
23
24 use Friendica\Core\Protocol;
25 use Friendica\DI;
26
27 class Plaintext
28 {
29         /**
30          * Shortens message
31          *
32          * @param  string $msg
33          * @param  int    $limit
34          * @param  int    $uid
35          * @return string
36          *
37          * @todo For Twitter URLs aren't shortened, but they have to be calculated as if.
38          */
39         public static function shorten(string $msg, int $limit, int $uid = 0):string
40         {
41                 $ellipsis = html_entity_decode("&#x2026;", ENT_QUOTES, 'UTF-8');
42
43                 if (!empty($uid) && DI::pConfig()->get($uid, 'system', 'simple_shortening')) {
44                         return iconv_substr(iconv_substr(trim($msg), 0, $limit, "UTF-8"), 0, -3, "UTF-8") . $ellipsis;
45                 }
46
47                 $lines = explode("\n", $msg);
48                 $msg = "";
49                 $recycle = html_entity_decode("&#x2672; ", ENT_QUOTES, 'UTF-8');
50                 foreach ($lines as $row => $line) {
51                         if (iconv_strlen(trim($msg . "\n" . $line), "UTF-8") <= $limit) {
52                                 $msg = trim($msg . "\n" . $line);
53                         } elseif (($msg == "") || (($row == 1) && (substr($msg, 0, 4) == $recycle))) {
54                                 // Is the new message empty by now or is it a reshared message?
55                                 $msg = iconv_substr(iconv_substr(trim($msg . "\n" . $line), 0, $limit, "UTF-8"), 0, -3, "UTF-8") . $ellipsis;
56                         } else {
57                                 break;
58                         }
59                 }
60
61                 return $msg;
62         }
63
64         /**
65          * Returns the character positions of the provided boundaries, optionally skipping a number of first occurrences
66          *
67          * @param string $text        Text to search
68          * @param string $open        Left boundary
69          * @param string $close       Right boundary
70          * @param int    $occurrences Number of first occurrences to skip
71          * @return boolean|array
72          */
73         public static function getBoundariesPosition($text, $open, $close, $occurrences = 0)
74         {
75                 if ($occurrences < 0) {
76                         $occurrences = 0;
77                 }
78
79                 $start_pos = -1;
80                 for ($i = 0; $i <= $occurrences; $i++) {
81                         if ($start_pos !== false) {
82                                 $start_pos = strpos($text, $open, $start_pos + 1);
83                         }
84                 }
85
86                 if ($start_pos === false) {
87                         return false;
88                 }
89
90                 $end_pos = strpos($text, $close, $start_pos);
91
92                 if ($end_pos === false) {
93                         return false;
94                 }
95
96                 $res = ['start' => $start_pos, 'end' => $end_pos];
97
98                 return $res;
99         }
100
101         /**
102          * Convert a message into plaintext for connectors to other networks
103          *
104          * @param array  $item           The message array that is about to be posted
105          * @param int    $limit          The maximum number of characters when posting to that network
106          * @param bool   $includedlinks  Has an attached link to be included into the message?
107          * @param int    $htmlmode       This controls the behavior of the BBCode conversion
108          * @param string $target_network Name of the network where the post should go to.
109          *
110          * @return array Same array structure than \Friendica\Content\Text\BBCode::getAttachedData
111          * @throws \Friendica\Network\HTTPException\InternalServerErrorException
112          * @see   \Friendica\Content\Text\BBCode::getAttachedData
113          *
114          */
115         public static function getPost($item, $limit = 0, $includedlinks = false, $htmlmode = BBCode::API, $target_network = '')
116         {
117                 // Remove hashtags
118                 $URLSearchString = '^\[\]';
119                 $body = preg_replace("/([#@])\[url\=([$URLSearchString]*)\](.*?)\[\/url\]/ism", '$1$3', $item['body']);
120
121                 // Add an URL element if the text contains a raw link
122                 $body = preg_replace('/([^\]\=\'"]|^)(https?\:\/\/[a-zA-Z0-9\:\/\-\?\&\;\.\=\_\~\#\%\$\!\+\,]+)/ism',
123                         '$1[url]$2[/url]', $body);
124
125                 // Remove the abstract
126                 $body = BBCode::stripAbstract($body);
127
128                 // At first look at data that is attached via "type-..." stuff
129                 // This will hopefully replaced with a dedicated bbcode later
130                 //$post = self::getAttachedData($b['body']);
131                 $post = BBCode::getAttachedData($body, $item);
132
133                 if (($item['title'] != '') && ($post['text'] != '')) {
134                         $post['text'] = trim($item['title'] . "\n\n" . $post['text']);
135                 } elseif ($item['title'] != '') {
136                         $post['text'] = trim($item['title']);
137                 }
138
139                 $abstract = '';
140
141                 // Fetch the abstract from the given target network
142                 if ($target_network != '') {
143                         $default_abstract = BBCode::getAbstract($item['body']);
144                         $abstract = BBCode::getAbstract($item['body'], $target_network);
145
146                         // If we post to a network with no limit we only fetch
147                         // an abstract exactly for this network
148                         if (($limit == 0) && ($abstract == $default_abstract)) {
149                                 $abstract = '';
150                         }
151                 } else {// Try to guess the correct target network
152                         switch ($htmlmode) {
153                                 case BBCode::TWITTER:
154                                         $abstract = BBCode::getAbstract($item['body'], Protocol::TWITTER);
155                                         break;
156
157                                 case BBCode::OSTATUS:
158                                         $abstract = BBCode::getAbstract($item['body'], Protocol::STATUSNET);
159                                         break;
160
161                                 default: // We don't know the exact target.
162                                         // We fetch an abstract since there is a posting limit.
163                                         if ($limit > 0) {
164                                                 $abstract = BBCode::getAbstract($item['body']);
165                                         }
166                         }
167                 }
168
169                 if ($abstract != '') {
170                         $post['text'] = $abstract;
171
172                         if ($post['type'] == 'text') {
173                                 $post['type'] = 'link';
174                                 $post['url'] = $item['plink'];
175                         }
176                 }
177
178                 $html = BBCode::convertForUriId($item['uri-id'], $post['text'] . ($post['after'] ?? ''), $htmlmode);
179                 $msg = HTML::toPlaintext($html, 0, true);
180                 $msg = trim(html_entity_decode($msg, ENT_QUOTES, 'UTF-8'));
181
182                 $link = '';
183                 if ($includedlinks) {
184                         if ($post['type'] == 'link') {
185                                 $link = $post['url'];
186                         } elseif ($post['type'] == 'text') {
187                                 $link = $post['url'] ?? '';
188                         } elseif ($post['type'] == 'video') {
189                                 $link = $post['url'];
190                         } elseif ($post['type'] == 'photo') {
191                                 $link = $post['image'];
192                         }
193
194                         if (($msg == '') && isset($post['title'])) {
195                                 $msg = trim($post['title']);
196                         }
197
198                         if (($msg == '') && isset($post['description'])) {
199                                 $msg = trim($post['description']);
200                         }
201
202                         // If the link is already contained in the post, then it neeedn't to be added again
203                         // But: if the link is beyond the limit, then it has to be added.
204                         if (($link != '') && strstr($msg, $link)) {
205                                 $pos = strpos($msg, $link);
206
207                                 // Will the text be shortened in the link?
208                                 // Or is the link the last item in the post?
209                                 if (($limit > 0) && ($pos < $limit) && (($pos + 23 > $limit) || ($pos + strlen($link) == strlen($msg)))) {
210                                         $msg = trim(str_replace($link, '', $msg));
211                                 } elseif (($limit == 0) || ($pos < $limit)) {
212                                         // The limit has to be increased since it will be shortened - but not now
213                                         // Only do it with Twitter
214                                         if (($limit > 0) && (strlen($link) > 23) && ($htmlmode == BBCode::TWITTER)) {
215                                                 $limit = $limit - 23 + strlen($link);
216                                         }
217
218                                         $link = '';
219
220                                         if ($post['type'] == 'text') {
221                                                 unset($post['url']);
222                                         }
223                                 }
224                         }
225                 }
226
227                 if ($limit > 0) {
228                         // Reduce multiple spaces
229                         // When posted to a network with limited space, we try to gain space where possible
230                         while (strpos($msg, '  ') !== false) {
231                                 $msg = str_replace('  ', ' ', $msg);
232                         }
233
234                         // Twitter is using its own limiter, so we always assume that shortened links will have this length
235                         if (iconv_strlen($link, 'UTF-8') > 0) {
236                                 $limit = $limit - 23;
237                         }
238
239                         if (iconv_strlen($msg, 'UTF-8') > $limit) {
240                                 if (($post['type'] == 'text') && isset($post['url'])) {
241                                         $post['url'] = $item['plink'];
242                                 } elseif (!isset($post['url'])) {
243                                         $limit = $limit - 23;
244                                         $post['url'] = $item['plink'];
245                                 } elseif (strpos($item['body'], '[share') !== false) {
246                                         $post['url'] = $item['plink'];
247                                 } elseif (DI::pConfig()->get($item['uid'], 'system', 'no_intelligent_shortening')) {
248                                         $post['url'] = $item['plink'];
249                                 }
250                                 $msg = self::shorten($msg, $limit, $item['uid']);
251                         }
252                 }
253
254                 $post['text'] = trim($msg);
255
256                 return $post;
257         }
258 }