]> git.mxchange.org Git - friendica.git/blob - include/threads.php
Merge remote-tracking branch 'upstream/develop' into develop
[friendica.git] / include / threads.php
1 <?php
2
3 use Friendica\App;
4 use Friendica\Core\System;
5
6 function add_thread($itemid, $onlyshadow = false) {
7         $items = q("SELECT `uid`, `created`, `edited`, `commented`, `received`, `changed`, `wall`, `private`, `pubmail`,
8                         `moderated`, `visible`, `spam`, `starred`, `bookmark`, `contact-id`, `gcontact-id`,
9                         `deleted`, `origin`, `forum_mode`, `mention`, `network`, `author-id`, `owner-id`
10                 FROM `item` WHERE `id` = %d AND (`parent` = %d OR `parent` = 0) LIMIT 1", intval($itemid), intval($itemid));
11
12         if (!$items)
13                 return;
14
15         $item = $items[0];
16         $item['iid'] = $itemid;
17
18         if (!$onlyshadow) {
19                 $result = dba::insert('thread', $item);
20
21                 logger("Add thread for item ".$itemid." - ".print_r($result, true), LOGGER_DEBUG);
22         }
23 }
24
25 /**
26  * @brief Add a shadow entry for a given item id that is a thread starter
27  *
28  * We store every public item entry additionally with the user id "0".
29  * This is used for the community page and for the search.
30  * It is planned that in the future we will store public item entries only once.
31  *
32  * @param integer $itemid Item ID that should be added
33  */
34 function add_shadow_thread($itemid) {
35         $items = q("SELECT `uid`, `wall`, `private`, `moderated`, `visible`, `contact-id`, `deleted`, `network`
36                 FROM `item` WHERE `id` = %d AND (`parent` = %d OR `parent` = 0) LIMIT 1", intval($itemid), intval($itemid));
37
38         if (!dbm::is_result($items)) {
39                 return;
40         }
41
42         $item = $items[0];
43
44         // is it already a copy?
45         if (($itemid == 0) || ($item['uid'] == 0)) {
46                 return;
47         }
48
49         // Is it a visible public post?
50         if (!$item["visible"] || $item["deleted"] || $item["moderated"] || $item["private"]) {
51                 return;
52         }
53
54         // is it an entry from a connector? Only add an entry for natively connected networks
55         if (!in_array($item["network"], array(NETWORK_DFRN, NETWORK_DIASPORA, NETWORK_OSTATUS, ""))) {
56                 return;
57         }
58
59         // Only do these checks if the post isn't a wall post
60         if (!$item["wall"]) {
61                 // Check, if hide-friends is activated - then don't do a shadow entry
62                 $r = q("SELECT `hide-friends` FROM `profile` WHERE `is-default` AND `uid` = %d AND NOT `hide-friends`",
63                         $item['uid']);
64
65                 if (!dbm::is_result($r)) {
66                         return;
67                 }
68
69                 // Check if the contact is hidden or blocked
70                 $r = q("SELECT `id` FROM `contact` WHERE NOT `hidden` AND NOT `blocked` AND `id` = %d",
71                         $item['contact-id']);
72
73                 if (!dbm::is_result($r)) {
74                         return;
75                 }
76         }
77
78         // Only add a shadow, if the profile isn't hidden
79         $r = q("SELECT `uid` FROM `user` where `uid` = %d AND NOT `hidewall`", $item['uid']);
80         if (!dbm::is_result($r)) {
81                 return;
82         }
83
84         $item = q("SELECT * FROM `item` WHERE `id` = %d", intval($itemid));
85
86         if (count($item) && ($item[0]["allow_cid"] == '')  && ($item[0]["allow_gid"] == '') &&
87                 ($item[0]["deny_cid"] == '') && ($item[0]["deny_gid"] == '')) {
88
89                 $r = q("SELECT `id` FROM `item` WHERE `uri` = '%s' AND `uid` = 0 LIMIT 1",
90                         dbesc($item['uri']));
91
92                 if (!dbm::is_result($r)) {
93                         // Preparing public shadow (removing user specific data)
94                         require_once("include/items.php");
95                         require_once("include/Contact.php");
96
97                         unset($item[0]['id']);
98                         $item[0]['uid'] = 0;
99                         $item[0]['origin'] = 0;
100                         $item[0]['wall'] = 0;
101                         $item[0]['contact-id'] = get_contact($item[0]['author-link'], 0);
102
103                         if (in_array($item[0]['type'], array("net-comment", "wall-comment"))) {
104                                 $item[0]['type'] = 'remote-comment';
105                         } elseif ($item[0]['type'] == 'wall') {
106                                 $item[0]['type'] = 'remote';
107                         }
108
109                         $public_shadow = item_store($item[0], false, false, true);
110
111                         logger("Stored public shadow for thread ".$itemid." under id ".$public_shadow, LOGGER_DEBUG);
112                 }
113         }
114 }
115
116 /**
117  * @brief Add a shadow entry for a given item id that is a comment
118  *
119  * This function does the same like the function above - but for comments
120  *
121  * @param integer $itemid Item ID that should be added
122  */
123 function add_shadow_entry($itemid) {
124
125         $items = q("SELECT * FROM `item` WHERE `id` = %d", intval($itemid));
126
127         if (!dbm::is_result($items)) {
128                 return;
129         }
130
131         $item = $items[0];
132
133         // Is it a toplevel post?
134         if ($item['id'] == $item['parent']) {
135                 add_shadow_thread($itemid);
136                 return;
137         }
138
139         // Is this a shadow entry?
140         if ($item['uid'] == 0)
141                 return;
142
143         // Is there a shadow parent?
144         $r = q("SELECT `id` FROM `item` WHERE `uri` = '%s' AND `uid` = 0 LIMIT 1", dbesc($item['parent-uri']));
145         if (!dbm::is_result($r))
146                 return;
147
148         // Is there already a shadow entry?
149         $r = q("SELECT `id` FROM `item` WHERE `uri` = '%s' AND `uid` = 0 LIMIT 1", dbesc($item['uri']));
150         if (dbm::is_result($r))
151                 return;
152
153         // Preparing public shadow (removing user specific data)
154         require_once("include/items.php");
155         require_once("include/Contact.php");
156
157         unset($item['id']);
158         $item['uid'] = 0;
159         $item['origin'] = 0;
160         $item['wall'] = 0;
161         $item['contact-id'] = get_contact($item['author-link'], 0);
162
163         if (in_array($item['type'], array("net-comment", "wall-comment"))) {
164                 $item['type'] = 'remote-comment';
165         } elseif ($item['type'] == 'wall') {
166                 $item['type'] = 'remote';
167         }
168
169         $public_shadow = item_store($item, false, false, true);
170
171         logger("Stored public shadow for comment ".$item['uri']." under id ".$public_shadow, LOGGER_DEBUG);
172 }
173
174 function update_thread_uri($itemuri, $uid) {
175         $messages = q("SELECT `id` FROM `item` WHERE uri ='%s' AND uid=%d", dbesc($itemuri), intval($uid));
176
177         if (dbm::is_result($messages)) {
178                 foreach ($messages as $message) {
179                         update_thread($message["id"]);
180                 }
181         }
182 }
183
184 function update_thread($itemid, $setmention = false) {
185         $items = q("SELECT `uid`, `guid`, `title`, `body`, `created`, `edited`, `commented`, `received`, `changed`, `wall`, `private`, `pubmail`, `moderated`, `visible`, `spam`, `starred`, `bookmark`, `contact-id`, `gcontact-id`,
186                         `deleted`, `origin`, `forum_mode`, `network`, `rendered-html`, `rendered-hash` FROM `item` WHERE `id` = %d AND (`parent` = %d OR `parent` = 0) LIMIT 1", intval($itemid), intval($itemid));
187
188         if (!dbm::is_result($items)) {
189                 return;
190         }
191
192         $item = $items[0];
193
194         if ($setmention) {
195                 $item["mention"] = 1;
196         }
197
198         $sql = "";
199
200         foreach ($item AS $field => $data)
201                 if (!in_array($field, array("guid", "title", "body", "rendered-html", "rendered-hash"))) {
202                         if ($sql != "") {
203                                 $sql .= ", ";
204                         }
205
206                         $sql .= "`".$field."` = '".dbesc($data)."'";
207                 }
208
209         $result = q("UPDATE `thread` SET ".$sql." WHERE `iid` = %d", intval($itemid));
210
211         logger("Update thread for item ".$itemid." - guid ".$item["guid"]." - ".print_r($result, true)." ".print_r($item, true), LOGGER_DEBUG);
212
213         // Updating a shadow item entry
214         $items = q("SELECT `id` FROM `item` WHERE `guid` = '%s' AND `uid` = 0 LIMIT 1", dbesc($item["guid"]));
215
216         if (!dbm::is_result($items)) {
217                 return;
218         }
219
220         $result = q("UPDATE `item` SET `title` = '%s', `body` = '%s', `rendered-html` = '%s', `rendered-hash` = '%s' WHERE `id` = %d",
221                         dbesc($item["title"]),
222                         dbesc($item["body"]),
223                         dbesc($item["rendered-html"]),
224                         dbesc($item["rendered-hash"]),
225                         intval($items[0]["id"])
226                 );
227         logger("Updating public shadow for post ".$items[0]["id"]." - guid ".$item["guid"]." Result: ".print_r($result, true), LOGGER_DEBUG);
228 }
229
230 function delete_thread_uri($itemuri, $uid) {
231         $messages = q("SELECT `id` FROM `item` WHERE uri ='%s' AND uid=%d", dbesc($itemuri), intval($uid));
232
233         if (dbm::is_result($messages)) {
234                 foreach ($messages as $message) {
235                         delete_thread($message["id"], $itemuri);
236                 }
237         }
238 }
239
240 function delete_thread($itemid, $itemuri = "") {
241         $item = q("SELECT `uid` FROM `thread` WHERE `iid` = %d", intval($itemid));
242
243         // Using dba::delete at this time could delete the associated item entries
244         $result = q("DELETE FROM `thread` WHERE `iid` = %d", intval($itemid));
245
246         logger("delete_thread: Deleted thread for item ".$itemid." - ".print_r($result, true), LOGGER_DEBUG);
247
248         if ($itemuri != "") {
249                 $r = q("SELECT `id` FROM `item` WHERE `uri` = '%s' AND NOT `deleted` AND NOT (`uid` IN (%d, 0))",
250                                 dbesc($itemuri),
251                                 intval($item["uid"])
252                         );
253                 if (!dbm::is_result($r)) {
254                         dba::delete('item', array('uri' => $itemuri, 'uid' => 0));
255                         logger("delete_thread: Deleted shadow for item ".$itemuri, LOGGER_DEBUG);
256                 }
257         }
258 }
259
260 function update_threads() {
261         logger("update_threads: start");
262
263         $messages = dba::select('item', array('id'), array("`id` = `parent`"));
264
265         logger("update_threads: fetched messages: ".dba::num_rows($messages));
266
267         while ($message = dba::fetch($messages)) {
268                 add_thread($message["id"]);
269                 add_shadow_thread($message["id"]);
270         }
271         dba::close($messages);
272 }
273
274 function update_threads_mention() {
275         $users = q("SELECT `uid`, `nickname` FROM `user` ORDER BY `uid`");
276
277         foreach ($users AS $user) {
278                 $self = normalise_link(System::baseUrl() . '/profile/' . $user['nickname']);
279                 $selfhttps = str_replace("http://", "https://", $self);
280                 $parents = q("SELECT DISTINCT(`parent`) FROM `item` WHERE `uid` = %d AND
281                                 ((`owner-link` IN ('%s', '%s')) OR (`author-link` IN ('%s', '%s')))",
282                                 $user["uid"], $self, $selfhttps, $self, $selfhttps);
283
284                 foreach ($parents AS $parent)
285                         q("UPDATE `thread` SET `mention` = 1 WHERE `iid` = %d", $parent["parent"]);
286         }
287 }
288
289
290 function update_shadow_copy() {
291         logger("start");
292
293         $condition = "`uid` != 0 AND `network` IN ('', ?, ?, ?) AND `visible` AND NOT `deleted` AND NOT `moderated` AND NOT `private`";
294         $messages = dba::select('thread', array('iid'), array($condition, NETWORK_DFRN, NETWORK_DIASPORA, NETWORK_OSTATUS),
295                                 array('order' => 'created'));
296
297         logger("fetched messages: ".dba::num_rows($messages));
298         while ($message = dba::fetch($messages))
299                 add_shadow_thread($message["iid"]);
300
301         dba::close($messages);
302 }