]> git.mxchange.org Git - friendica.git/blob - include/threads.php
Merge remote-tracking branch 'upstream/develop' into 1610-performance-nodeinfo
[friendica.git] / include / threads.php
1 <?php
2 function add_thread($itemid, $onlyshadow = false) {
3         $items = q("SELECT `uid`, `created`, `edited`, `commented`, `received`, `changed`, `wall`, `private`, `pubmail`,
4                         `moderated`, `visible`, `spam`, `starred`, `bookmark`, `contact-id`, `gcontact-id`,
5                         `deleted`, `origin`, `forum_mode`, `mention`, `network`, `author-id`, `owner-id`
6                 FROM `item` WHERE `id` = %d AND (`parent` = %d OR `parent` = 0) LIMIT 1", intval($itemid), intval($itemid));
7
8         if (!$items)
9                 return;
10
11         $item = $items[0];
12         $item['iid'] = $itemid;
13
14         if (!$onlyshadow) {
15                 $result = dbq("INSERT INTO `thread` (`"
16                                 .implode("`, `", array_keys($item))
17                                 ."`) VALUES ('"
18                                 .implode("', '", array_values($item))
19                                 ."')");
20
21                 logger("add_thread: Add thread for item ".$itemid." - ".print_r($result, true), LOGGER_DEBUG);
22         }
23
24         // is it already a copy?
25         if (($itemid == 0) OR ($item['uid'] == 0))
26                 return;
27
28         // Is it a visible public post?
29         if (!$item["visible"] OR $item["deleted"] OR $item["moderated"] OR $item["private"])
30                 return;
31
32         // is it an entry from a connector? Only add an entry for natively connected networks
33         if (!in_array($item["network"], array(NETWORK_DFRN, NETWORK_DIASPORA, NETWORK_OSTATUS, "")))
34                 return;
35
36         // Only do these checks if the post isn't a wall post
37         if (!$item["wall"]) {
38                 // Check, if hide-friends is activated - then don't do a shadow entry
39                 $r = q("SELECT `hide-friends` FROM `profile` WHERE `is-default` AND `uid` = %d AND NOT `hide-friends`",
40                         $item['uid']);
41                 if (!count($r))
42                         return;
43                 // Check if the contact is hidden or blocked
44                 $r = q("SELECT `id` FROM `contact` WHERE NOT `hidden` AND NOT `blocked` AND `id` = %d",
45                         $item['contact-id']);
46                 if (!count($r))
47                         return;
48         }
49
50         // Only add a shadow, if the profile isn't hidden
51         $r = q("SELECT `uid` FROM `user` where `uid` = %d AND NOT `hidewall`", $item['uid']);
52         if (!count($r))
53                 return;
54
55         $item = q("SELECT * FROM `item` WHERE `id` = %d",
56                 intval($itemid));
57
58         if (count($item) AND ($item[0]["allow_cid"] == '')  AND ($item[0]["allow_gid"] == '') AND
59                 ($item[0]["deny_cid"] == '') AND ($item[0]["deny_gid"] == '')) {
60
61                 $r = q("SELECT `id` FROM `item` WHERE `uri` = '%s' AND `uid` = 0 LIMIT 1",
62                         dbesc($item['uri']));
63
64                 if (!$r) {
65                         // Preparing public shadow (removing user specific data)
66                         require_once("include/items.php");
67                         require_once("include/Contact.php");
68
69                         unset($item[0]['id']);
70                         $item[0]['uid'] = 0;
71                         $item[0]['origin'] = 0;
72                         $item[0]['contact-id'] = get_contact($item[0]['author-link'], 0);
73                         $public_shadow = item_store($item[0], false, false, true);
74
75                         logger("add_thread: Stored public shadow for post ".$itemid." under id ".$public_shadow, LOGGER_DEBUG);
76                 }
77         }
78 }
79
80 function add_shadow_entry($item) {
81
82         // Is this a shadow entry?
83         if ($item['uid'] == 0)
84                 return;
85
86         // Is there a shadow parent?
87         $r = q("SELECT `id` FROM `item` WHERE `uri` = '%s' AND `uid` = 0 LIMIT 1", dbesc($item['parent-uri']));
88         if (!count($r))
89                 return;
90
91         // Is there already a shadow entry?
92         $r = q("SELECT `id` FROM `item` WHERE `uri` = '%s' AND `uid` = 0 LIMIT 1", dbesc($item['uri']));
93         if (count($r))
94                 return;
95
96         // Preparing public shadow (removing user specific data)
97         require_once("include/items.php");
98         require_once("include/Contact.php");
99
100         unset($item['id']);
101         $item['uid'] = 0;
102         $item['contact-id'] = get_contact($item['author-link'], 0);
103         $public_shadow = item_store($item, false, false, true);
104
105         logger("Stored public shadow for comment ".$item['uri']." under id ".$public_shadow, LOGGER_DEBUG);
106 }
107
108 function update_thread_uri($itemuri, $uid) {
109         $messages = q("SELECT `id` FROM `item` WHERE uri ='%s' AND uid=%d", dbesc($itemuri), intval($uid));
110
111         if(count($messages))
112                 foreach ($messages as $message)
113                         update_thread($message["id"]);
114 }
115
116 function update_thread($itemid, $setmention = false) {
117         $items = q("SELECT `uid`, `guid`, `title`, `body`, `created`, `edited`, `commented`, `received`, `changed`, `wall`, `private`, `pubmail`, `moderated`, `visible`, `spam`, `starred`, `bookmark`, `contact-id`, `gcontact-id`,
118                         `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));
119
120         if (!$items)
121                 return;
122
123         $item = $items[0];
124
125         if ($setmention)
126                 $item["mention"] = 1;
127
128         $sql = "";
129
130         foreach ($item AS $field => $data)
131                 if (!in_array($field, array("guid", "title", "body", "rendered-html", "rendered-hash"))) {
132                         if ($sql != "")
133                                 $sql .= ", ";
134
135                         $sql .= "`".$field."` = '".dbesc($data)."'";
136                 }
137
138         logger("Pre Update Thread", LOGGER_DEBUG);
139         $result = q("UPDATE `thread` SET ".$sql." WHERE `iid` = %d", intval($itemid));
140         logger("Post Update Thread", LOGGER_DEBUG);
141
142         logger("Update thread for item ".$itemid." - guid ".$item["guid"]." - ".print_r($result, true)." ".print_r($item, true), LOGGER_DEBUG);
143
144         // Updating a shadow item entry
145         $items = q("SELECT `id` FROM `item` WHERE `guid` = '%s' AND `uid` = 0 LIMIT 1", dbesc($item["guid"]));
146
147         if (!$items)
148                 return;
149
150         logger("Pre Update Item", LOGGER_DEBUG);
151         $result = q("UPDATE `item` SET `title` = '%s', `body` = '%s', `rendered-html` = '%s', `rendered-hash` = '%s' WHERE `id` = %d",
152                         dbesc($item["title"]),
153                         dbesc($item["body"]),
154                         dbesc($item["rendered-html"]),
155                         dbesc($item["rendered-hash"]),
156                         intval($items[0]["id"])
157                 );
158         logger("Post Update Item", LOGGER_DEBUG);
159         logger("Updating public shadow for post ".$items[0]["id"]." - guid ".$item["guid"]." Result: ".print_r($result, true), LOGGER_DEBUG);
160 }
161
162 function delete_thread_uri($itemuri, $uid) {
163         $messages = q("SELECT `id` FROM `item` WHERE uri ='%s' AND uid=%d", dbesc($itemuri), intval($uid));
164
165         if(count($messages))
166                 foreach ($messages as $message)
167                         delete_thread($message["id"], $itemuri);
168 }
169
170 function delete_thread($itemid, $itemuri = "") {
171         $item = q("SELECT `uid` FROM `thread` WHERE `iid` = %d", intval($itemid));
172
173         $result = q("DELETE FROM `thread` WHERE `iid` = %d", intval($itemid));
174
175         logger("delete_thread: Deleted thread for item ".$itemid." - ".print_r($result, true), LOGGER_DEBUG);
176
177         if ($itemuri != "") {
178                 $r = q("SELECT `id` FROM `item` WHERE `uri` = '%s' AND NOT (`uid` IN (%d, 0))",
179                                 dbesc($itemuri),
180                                 intval($item["uid"])
181                         );
182                 if (!count($r)) {
183                         $r = q("DELETE FROM `item` WHERE `uri` = '%s' AND `uid` = 0",
184                                 dbesc($itemuri)
185                         );
186                         logger("delete_thread: Deleted shadow for item ".$itemuri." - ".print_r($result, true), LOGGER_DEBUG);
187                 }
188         }
189 }
190
191 function update_threads() {
192         global $db;
193
194         logger("update_threads: start");
195
196         $messages = $db->q("SELECT `id` FROM `item` WHERE `id` = `parent`", true);
197
198         logger("update_threads: fetched messages: ".count($messages));
199
200         while ($message = $db->qfetch())
201                 add_thread($message["id"]);
202         $db->qclose();
203 }
204
205 function update_threads_mention() {
206         $a = get_app();
207
208         $users = q("SELECT `uid`, `nickname` FROM `user` ORDER BY `uid`");
209
210         foreach ($users AS $user) {
211                 $self = normalise_link($a->get_baseurl() . '/profile/' . $user['nickname']);
212                 $selfhttps = str_replace("http://", "https://", $self);
213                 $parents = q("SELECT DISTINCT(`parent`) FROM `item` WHERE `uid` = %d AND
214                                 ((`owner-link` IN ('%s', '%s')) OR (`author-link` IN ('%s', '%s')))",
215                                 $user["uid"], $self, $selfhttps, $self, $selfhttps);
216
217                 foreach ($parents AS $parent)
218                         q("UPDATE `thread` SET `mention` = 1 WHERE `iid` = %d", $parent["parent"]);
219         }
220 }
221
222
223 function update_shadow_copy() {
224         global $db;
225
226         logger("start");
227
228         $messages = $db->q(sprintf("SELECT `iid` FROM `thread` WHERE `uid` != 0 AND `network` IN ('', '%s', '%s', '%s')
229                                         AND `visible` AND NOT `deleted` AND NOT `moderated` AND NOT `private` ORDER BY `created`",
230                                 NETWORK_DFRN, NETWORK_DIASPORA, NETWORK_OSTATUS), true);
231
232         logger("fetched messages: ".count($messages));
233         while ($message = $db->qfetch())
234                 add_thread($message["iid"], true);
235
236         $db->qclose();
237 }
238 ?>