]> git.mxchange.org Git - friendica.git/blob - include/plaintext.php
New function to fetch image information. (Will be used in the addons at a later time)
[friendica.git] / include / plaintext.php
1 <?php
2 function get_attached_data($body) {
3 /*
4  - text:
5  - type: link, video, photo
6  - title:
7  - url:
8  - image:
9  - description:
10  - (thumbnail)
11 */
12
13         // Simplify image codes
14         $body = preg_replace("/\[img\=([0-9]*)x([0-9]*)\](.*?)\[\/img\]/ism", '[img]$3[/img]', $body);
15
16         $post = array();
17
18         if (preg_match_all("(\[class=(.*?)\](.*?)\[\/class\])ism",$body, $attached,  PREG_SET_ORDER)) {
19                 foreach ($attached AS $data) {
20                         if (!in_array($data[1], array("type-link", "type-video", "type-photo")))
21                                 continue;
22
23                         $post["type"] = substr($data[1], 5);
24
25                         $post["text"] = trim(str_replace($data[0], "", $body));
26
27                         $attacheddata = $data[2];
28
29                         $URLSearchString = "^\[\]";
30
31                         if (preg_match("/\[img\]([$URLSearchString]*)\[\/img\]/ism", $attacheddata, $matches))
32                                 $post["image"] = $matches[1];
33
34                         if (preg_match("/\[bookmark\=([$URLSearchString]*)\](.*?)\[\/bookmark\]/ism", $attacheddata, $matches)) {
35                                 $post["url"] = $matches[1];
36                                 $post["title"] = $matches[2];
37                         }
38
39                         // Search for description
40                         if (preg_match("/\[quote\](.*?)\[\/quote\]/ism", $attacheddata, $matches))
41                                 $post["description"] = $matches[1];
42
43                 }
44         }
45
46         // if nothing is found, it maybe having an image.
47         if (!isset($post["type"])) {
48                 require_once("mod/parse_url.php");
49                 require_once("include/Photo.php");
50
51                 $URLSearchString = "^\[\]";
52                 if (preg_match_all("(\[url=([$URLSearchString]*)\]\s*\[img\]([$URLSearchString]*)\[\/img\]\s*\[\/url\])ism", $body, $pictures,  PREG_SET_ORDER)) {
53                         if (count($pictures) == 1) {
54                                 // Checking, if the link goes to a picture
55                                 $data = parseurl_getsiteinfo($pictures[0][1], true);
56
57                                 if ($data["type"] == "photo") {
58                                         $post["type"] = "photo";
59                                         if (isset($data["images"][0]))
60                                                 $post["image"] = $data["images"][0]["src"];
61                                         else
62                                                 $post["image"] = $data["url"];
63
64                                         $post["preview"] = $pictures[0][2];
65                                         $post["text"] = str_replace($pictures[0][0], "", $body);
66                                 } else {
67                                         $img_str = fetch_url($pictures[0][1]);
68                                         $imgdata = get_photo_info($img_str);
69                                         if (substr($imgdata["mime"], 0, 6) == "image/") {
70                                                 $post["type"] = "photo";
71                                                 $post["image"] = $pictures[0][1];
72                                                 $post["preview"] = $pictures[0][2];
73                                                 $post["text"] = str_replace($pictures[0][0], "", $body);
74                                         }
75                                 }
76                         } elseif (count($pictures) > 1) {
77                                 $post["type"] = "link";
78                                 $post["url"] = $b["plink"];
79                                 $post["image"] = $pictures[0][2];
80                                 $post["text"] = $body;
81                         }
82                 } elseif (preg_match_all("(\[img\]([$URLSearchString]*)\[\/img\])ism", $body, $pictures,  PREG_SET_ORDER)) {
83                         if (count($pictures) == 1) {
84                                 $post["type"] = "photo";
85                                 $post["image"] = $pictures[0][1];
86                                 $post["text"] = str_replace($pictures[0][0], "", $body);
87                         } elseif (count($pictures) > 1) {
88                                 $post["type"] = "link";
89                                 $post["url"] = $b["plink"];
90                                 $post["image"] = $pictures[0][1];
91                                 $post["text"] = $body;
92                         }
93                 }
94                 if (!isset($post["type"])) {
95                         $post["type"] = "text";
96                         $post["text"] = trim($body);
97                 }
98         }
99
100         return($post);
101 }
102
103 function shortenmsg($msg, $limit, $twitter = false) {
104         // To-Do:
105         // For Twitter URLs aren't shortened, but they have to be calculated as if.
106
107         $lines = explode("\n", $msg);
108         $msg = "";
109         $recycle = html_entity_decode("&#x2672; ", ENT_QUOTES, 'UTF-8');
110         foreach ($lines AS $row=>$line) {
111                 if (iconv_strlen(trim($msg."\n".$line), "UTF-8") <= $limit)
112                         $msg = trim($msg."\n".$line);
113                 // Is the new message empty by now or is it a reshared message?
114                 elseif (($msg == "") OR (($row == 1) AND (substr($msg, 0, 4) == $recycle)))
115                         $msg = substr(substr(trim($msg."\n".$line), 0, $limit), 0, -3)."...";
116                 else
117                         break;
118         }
119         return($msg);
120 }
121
122 function plaintext($a, $b, $limit = 0, $includedlinks = false, $htmlmode = 2) {
123         require_once("include/bbcode.php");
124         require_once("include/html2plain.php");
125         require_once("include/network.php");
126
127         // At first look at data that is attached via "type-..." stuff
128         // This will hopefully replaced with a dedicated bbcode later
129         $post = get_attached_data($b["body"]);
130
131         if (($b["title"] != "") AND ($post["text"] != ""))
132                 $post["text"] = trim($b["title"]."\n\n".$post["text"]);
133         elseif ($b["title"] != "")
134                 $post["text"] = trim($b["title"]);
135
136         $html = bbcode($post["text"], false, false, $htmlmode);
137         $msg = html2plain($html, 0, true);
138         $msg = trim(html_entity_decode($msg,ENT_QUOTES,'UTF-8'));
139
140         $link = "";
141         if ($includedlinks) {
142                 if ($post["type"] == "link")
143                         $link = $post["url"];
144                 elseif ($post["type"] == "video")
145                         $link = $post["url"];
146                 elseif ($post["type"] == "photo")
147                         $link = $post["image"];
148
149                 if (($msg == "") AND isset($post["title"]))
150                         $msg = trim($post["title"]);
151
152                 if (($msg == "") AND isset($post["description"]))
153                         $msg = trim($post["description"]);
154
155                 // If the link is already contained in the post, then it neeedn't to be added again
156                 // But: if the link is beyond the limit, then it has to be added.
157                 if (($link != "") AND strstr($msg, $link)) {
158                         $pos = strpos($msg, $link);
159                         if (($limit == 0) OR ($pos < $limit))
160                                 $link = "";
161                 }
162         }
163
164         if ($limit > 0) {
165                 // Reduce multiple spaces
166                 // When posted to a network with limited space, we try to gain space where possible
167                 while (strpos($msg, "  ") !== false)
168                         $msg = str_replace("  ", " ", $msg);
169
170                 // Twitter is using its own limiter, so we always assume that shortened links will have this length
171                 if (strlen($link) > 0)
172                         $limit = $limit - 23;
173
174                 if (strlen($msg) > $limit) {
175
176                         if (!isset($post["url"])) {
177                                 $limit = $limit - 23;
178                                 $post["url"] = $b["plink"];
179                         }
180
181                         $msg = shortenmsg($msg, $limit);
182                 }
183         }
184
185         $post["text"] = trim($msg);
186
187         return($post);
188 }
189 ?>