]> git.mxchange.org Git - friendica.git/blob - src/Model/Term.php
6042091c9b085b2cb4b57093f309de962242b002
[friendica.git] / src / Model / Term.php
1 <?php
2 /**
3  * @file src/Model/Term
4  */
5 namespace Friendica\Model;
6
7 use Friendica\Core\System;
8 use Friendica\Database\DBA;
9
10 require_once 'boot.php';
11 require_once 'include/conversation.php';
12 require_once 'include/dba.php';
13
14 class Term
15 {
16         public static function tagTextFromItemId($itemid)
17         {
18                 $tag_text = '';
19                 $condition = ['otype' => TERM_OBJ_POST, 'oid' => $itemid, 'type' => [TERM_HASHTAG, TERM_MENTION]];
20                 $tags = DBA::select('term', [], $condition);
21                 while ($tag = DBA::fetch($tags)) {
22                         if ($tag_text != '') {
23                                 $tag_text .= ',';
24                         }
25
26                         if ($tag['type'] == 1) {
27                                 $tag_text .= '#';
28                         } else {
29                                 $tag_text .= '@';
30                         }
31                         $tag_text .= '[url=' . $tag['url'] . ']' . $tag['term'] . '[/url]';
32                 }
33                 return $tag_text;
34         }
35
36         public static function tagArrayFromItemId($itemid, $type = [TERM_HASHTAG, TERM_MENTION])
37         {
38                 $condition = ['otype' => TERM_OBJ_POST, 'oid' => $itemid, 'type' => $type];
39                 $tags = DBA::select('term', ['type', 'term', 'url'], $condition);
40                 if (!DBA::isResult($tags)) {
41                         return [];
42                 }
43
44                 return DBA::toArray($tags);
45         }
46
47         public static function fileTextFromItemId($itemid)
48         {
49                 $file_text = '';
50                 $condition = ['otype' => TERM_OBJ_POST, 'oid' => $itemid, 'type' => [TERM_FILE, TERM_CATEGORY]];
51                 $tags = DBA::select('term', [], $condition);
52                 while ($tag = DBA::fetch($tags)) {
53                         if ($tag['type'] == TERM_CATEGORY) {
54                                 $file_text .= '<' . $tag['term'] . '>';
55                         } else {
56                                 $file_text .= '[' . $tag['term'] . ']';
57                         }
58                 }
59                 return $file_text;
60         }
61
62         public static function insertFromTagFieldByItemId($itemid, $tags)
63         {
64                 $profile_base = System::baseUrl();
65                 $profile_data = parse_url($profile_base);
66                 $profile_path = defaults($profile_data, 'path', '');
67                 $profile_base_friendica = $profile_data['host'] . $profile_path . '/profile/';
68                 $profile_base_diaspora = $profile_data['host'] . $profile_path . '/u/';
69
70                 $fields = ['guid', 'uid', 'id', 'edited', 'deleted', 'created', 'received', 'title', 'body', 'parent'];
71                 $message = Item::selectFirst($fields, ['id' => $itemid]);
72                 if (!DBA::isResult($message)) {
73                         return;
74                 }
75
76                 $message['tag'] = $tags;
77
78                 // Clean up all tags
79                 DBA::delete('term', ['otype' => TERM_OBJ_POST, 'oid' => $itemid, 'type' => [TERM_HASHTAG, TERM_MENTION]]);
80
81                 if ($message['deleted']) {
82                         return;
83                 }
84
85                 $taglist = explode(',', $message['tag']);
86
87                 $tags_string = '';
88                 foreach ($taglist as $tag) {
89                         if ((substr(trim($tag), 0, 1) == '#') || (substr(trim($tag), 0, 1) == '@')) {
90                                 $tags_string .= ' ' . trim($tag);
91                         } else {
92                                 $tags_string .= ' #' . trim($tag);
93                         }
94                 }
95
96                 $data = ' ' . $message['title'] . ' ' . $message['body'] . ' ' . $tags_string . ' ';
97
98                 // ignore anything in a code block
99                 $data = preg_replace('/\[code\](.*?)\[\/code\]/sm', '', $data);
100
101                 $tags = [];
102
103                 $pattern = '/\W\#([^\[].*?)[\s\'".,:;\?!\[\]\/]/ism';
104                 if (preg_match_all($pattern, $data, $matches)) {
105                         foreach ($matches[1] as $match) {
106                                 $tags['#' . $match] = '';
107                         }
108                 }
109
110                 $pattern = '/\W([\#@])\[url\=(.*?)\](.*?)\[\/url\]/ism';
111                 if (preg_match_all($pattern, $data, $matches, PREG_SET_ORDER)) {
112                         foreach ($matches as $match) {
113                                 $tags[$match[1] . trim($match[3], ',.:;[]/\"?!')] = $match[2];
114                         }
115                 }
116
117                 foreach ($tags as $tag => $link) {
118                         if (substr(trim($tag), 0, 1) == '#') {
119                                 // try to ignore #039 or #1 or anything like that
120                                 if (ctype_digit(substr(trim($tag), 1))) {
121                                         continue;
122                                 }
123
124                                 // try to ignore html hex escapes, e.g. #x2317
125                                 if ((substr(trim($tag), 1, 1) == 'x' || substr(trim($tag), 1, 1) == 'X') && ctype_digit(substr(trim($tag), 2))) {
126                                         continue;
127                                 }
128
129                                 $type = TERM_HASHTAG;
130                                 $term = substr($tag, 1);
131                         } elseif (substr(trim($tag), 0, 1) == '@') {
132                                 $type = TERM_MENTION;
133
134                                 $contact = Contact::getDetailsByURL($link, 0);
135                                 if (!empty($contact['name'])) {
136                                         $term = $contact['name'];
137                                 } else {
138                                         $term = substr($tag, 1);
139                                 }
140
141                                 if (!empty($contact['url'])) {
142                                         $link = $contact['url'];
143                                 }
144                         } else { // This shouldn't happen
145                                 $type = TERM_HASHTAG;
146                                 $term = $tag;
147                         }
148
149                         if (DBA::exists('term', ['uid' => $message['uid'], 'otype' => TERM_OBJ_POST, 'oid' => $itemid, 'url' => $link])) {
150                                 continue;
151                         }
152
153                         if ($message['uid'] == 0) {
154                                 $global = true;
155                                 DBA::update('term', ['global' => true], ['otype' => TERM_OBJ_POST, 'guid' => $message['guid']]);
156                         } else {
157                                 $global = DBA::exists('term', ['uid' => 0, 'otype' => TERM_OBJ_POST, 'guid' => $message['guid']]);
158                         }
159
160                         DBA::insert('term', [
161                                 'uid'      => $message['uid'],
162                                 'oid'      => $itemid,
163                                 'otype'    => TERM_OBJ_POST,
164                                 'type'     => $type,
165                                 'term'     => $term,
166                                 'url'      => $link,
167                                 'guid'     => $message['guid'],
168                                 'created'  => $message['created'],
169                                 'received' => $message['received'],
170                                 'global'   => $global
171                         ]);
172
173                         // Search for mentions
174                         if ((substr($tag, 0, 1) == '@') && (strpos($link, $profile_base_friendica) || strpos($link, $profile_base_diaspora))) {
175                                 $users = q("SELECT `uid` FROM `contact` WHERE self AND (`url` = '%s' OR `nurl` = '%s')", $link, $link);
176                                 foreach ($users AS $user) {
177                                         if ($user['uid'] == $message['uid']) {
178                                                 /// @todo This function is called frim Item::update - so we mustn't call that function here
179                                                 DBA::update('item', ['mention' => true], ['id' => $itemid]);
180                                                 DBA::update('thread', ['mention' => true], ['iid' => $message['parent']]);
181                                         }
182                                 }
183                         }
184                 }
185         }
186
187         /**
188          * @param integer $itemid item id
189          * @return void
190          */
191         public static function insertFromFileFieldByItemId($itemid, $files)
192         {
193                 $message = Item::selectFirst(['uid', 'deleted'], ['id' => $itemid]);
194                 if (!DBA::isResult($message)) {
195                         return;
196                 }
197
198                 // Clean up all tags
199                 DBA::delete('term', ['otype' => TERM_OBJ_POST, 'oid' => $itemid, 'type' => [TERM_FILE, TERM_CATEGORY]]);
200
201                 if ($message["deleted"]) {
202                         return;
203                 }
204
205                 $message['file'] = $files;
206
207                 if (preg_match_all("/\[(.*?)\]/ism", $message["file"], $files)) {
208                         foreach ($files[1] as $file) {
209                                 DBA::insert('term', [
210                                         'uid' => $message["uid"],
211                                         'oid' => $itemid,
212                                         'otype' => TERM_OBJ_POST,
213                                         'type' => TERM_FILE,
214                                         'term' => $file
215                                 ]);
216                         }
217                 }
218
219                 if (preg_match_all("/\<(.*?)\>/ism", $message["file"], $files)) {
220                         foreach ($files[1] as $file) {
221                                 DBA::insert('term', [
222                                         'uid' => $message["uid"],
223                                         'oid' => $itemid,
224                                         'otype' => TERM_OBJ_POST,
225                                         'type' => TERM_CATEGORY,
226                                         'term' => $file
227                                 ]);
228                         }
229                 }
230         }
231
232         /**
233          * Sorts an item's tags into mentions, hashtags and other tags. Generate personalized URLs by user and modify the
234          * provided item's body with them.
235          *
236          * @param array $item
237          * @return array
238          */
239         public static function populateTagsFromItem(&$item)
240         {
241                 $return = [
242                         'tags' => [],
243                         'hashtags' => [],
244                         'mentions' => [],
245                 ];
246
247                 $searchpath = System::baseUrl() . "/search?tag=";
248
249                 $taglist = DBA::select(
250                         'term',
251                         ['type', 'term', 'url'],
252                         ["`otype` = ? AND `oid` = ? AND `type` IN (?, ?)", TERM_OBJ_POST, $item['id'], TERM_HASHTAG, TERM_MENTION],
253                         ['order' => ['tid']]
254                 );
255
256                 while ($tag = DBA::fetch($taglist)) {
257                         if ($tag["url"] == "") {
258                                 $tag["url"] = $searchpath . $tag["term"];
259                         }
260
261                         $orig_tag = $tag["url"];
262
263                         $author = ['uid' => 0, 'id' => $item['author-id'],
264                                 'network' => $item['author-network'], 'url' => $item['author-link']];
265                         $tag["url"] = Contact::magicLinkByContact($author, $tag['url']);
266
267                         if ($tag["type"] == TERM_HASHTAG) {
268                                 if ($orig_tag != $tag["url"]) {
269                                         $item['body'] = str_replace($orig_tag, $tag["url"], $item['body']);
270                                 }
271
272                                 $return['hashtags'][] = "#<a href=\"" . $tag["url"] . "\" target=\"_blank\">" . $tag["term"] . "</a>";
273                                 $prefix = "#";
274                         } elseif ($tag["type"] == TERM_MENTION) {
275                                 $return['mentions'][] = "@<a href=\"" . $tag["url"] . "\" target=\"_blank\">" . $tag["term"] . "</a>";
276                                 $prefix = "@";
277                         }
278
279                         $return['tags'][] = $prefix . "<a href=\"" . $tag["url"] . "\" target=\"_blank\">" . $tag["term"] . "</a>";
280                 }
281                 DBA::close($taglist);
282
283                 return $return;
284         }
285 }