]> git.mxchange.org Git - friendica.git/blob - include/threads.php
79340ab2cbe359ab985e26f3fbd636f9129d5adf
[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 for item ".$itemid." - ".print_r($result, true), LOGGER_DEBUG);
22         }
23 }
24
25 /**
26  * @brief Add a shadow entry for a given item id
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) OR ($item['uid'] == 0)) {
46                 return;
47         }
48
49         // Is it a visible public post?
50         if (!$item["visible"] OR $item["deleted"] OR $item["moderated"] OR $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) AND ($item[0]["allow_cid"] == '')  AND ($item[0]["allow_gid"] == '') AND
87                 ($item[0]["deny_cid"] == '') AND ($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]['contact-id'] = get_contact($item[0]['author-link'], 0);
101                         $public_shadow = item_store($item[0], false, false, true);
102
103                         logger("Stored public shadow for thread ".$itemid." under id ".$public_shadow, LOGGER_DEBUG);
104                 }
105         }
106 }
107
108 function add_shadow_entry($item) {
109
110         // Is this a shadow entry?
111         if ($item['uid'] == 0)
112                 return;
113
114         // Is there a shadow parent?
115         $r = q("SELECT `id` FROM `item` WHERE `uri` = '%s' AND `uid` = 0 LIMIT 1", dbesc($item['parent-uri']));
116         if (!count($r))
117                 return;
118
119         // Is there already a shadow entry?
120         $r = q("SELECT `id` FROM `item` WHERE `uri` = '%s' AND `uid` = 0 LIMIT 1", dbesc($item['uri']));
121         if (count($r))
122                 return;
123
124         // Preparing public shadow (removing user specific data)
125         require_once("include/items.php");
126         require_once("include/Contact.php");
127
128         unset($item['id']);
129         $item['uid'] = 0;
130         $item['contact-id'] = get_contact($item['author-link'], 0);
131         $public_shadow = item_store($item, false, false, true);
132
133         logger("Stored public shadow for comment ".$item['uri']." under id ".$public_shadow, LOGGER_DEBUG);
134 }
135
136 function update_thread_uri($itemuri, $uid) {
137         $messages = q("SELECT `id` FROM `item` WHERE uri ='%s' AND uid=%d", dbesc($itemuri), intval($uid));
138
139         if(count($messages))
140                 foreach ($messages as $message)
141                         update_thread($message["id"]);
142 }
143
144 function update_thread($itemid, $setmention = false) {
145         $items = q("SELECT `uid`, `guid`, `title`, `body`, `created`, `edited`, `commented`, `received`, `changed`, `wall`, `private`, `pubmail`, `moderated`, `visible`, `spam`, `starred`, `bookmark`, `contact-id`, `gcontact-id`,
146                         `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));
147
148         if (!$items)
149                 return;
150
151         $item = $items[0];
152
153         if ($setmention)
154                 $item["mention"] = 1;
155
156         $sql = "";
157
158         foreach ($item AS $field => $data)
159                 if (!in_array($field, array("guid", "title", "body", "rendered-html", "rendered-hash"))) {
160                         if ($sql != "")
161                                 $sql .= ", ";
162
163                         $sql .= "`".$field."` = '".dbesc($data)."'";
164                 }
165
166         $result = q("UPDATE `thread` SET ".$sql." WHERE `iid` = %d", intval($itemid));
167
168         logger("Update thread for item ".$itemid." - guid ".$item["guid"]." - ".print_r($result, true)." ".print_r($item, true), LOGGER_DEBUG);
169
170         // Updating a shadow item entry
171         $items = q("SELECT `id` FROM `item` WHERE `guid` = '%s' AND `uid` = 0 LIMIT 1", dbesc($item["guid"]));
172
173         if (!$items)
174                 return;
175
176         $result = q("UPDATE `item` SET `title` = '%s', `body` = '%s', `rendered-html` = '%s', `rendered-hash` = '%s' WHERE `id` = %d",
177                         dbesc($item["title"]),
178                         dbesc($item["body"]),
179                         dbesc($item["rendered-html"]),
180                         dbesc($item["rendered-hash"]),
181                         intval($items[0]["id"])
182                 );
183         logger("Updating public shadow for post ".$items[0]["id"]." - guid ".$item["guid"]." Result: ".print_r($result, true), LOGGER_DEBUG);
184 }
185
186 function delete_thread_uri($itemuri, $uid) {
187         $messages = q("SELECT `id` FROM `item` WHERE uri ='%s' AND uid=%d", dbesc($itemuri), intval($uid));
188
189         if(count($messages))
190                 foreach ($messages as $message)
191                         delete_thread($message["id"], $itemuri);
192 }
193
194 function delete_thread($itemid, $itemuri = "") {
195         $item = q("SELECT `uid` FROM `thread` WHERE `iid` = %d", intval($itemid));
196
197         $result = q("DELETE FROM `thread` WHERE `iid` = %d", intval($itemid));
198
199         logger("delete_thread: Deleted thread for item ".$itemid." - ".print_r($result, true), LOGGER_DEBUG);
200
201         if ($itemuri != "") {
202                 $r = q("SELECT `id` FROM `item` WHERE `uri` = '%s' AND NOT (`uid` IN (%d, 0))",
203                                 dbesc($itemuri),
204                                 intval($item["uid"])
205                         );
206                 if (!count($r)) {
207                         $r = q("DELETE FROM `item` WHERE `uri` = '%s' AND `uid` = 0",
208                                 dbesc($itemuri)
209                         );
210                         logger("delete_thread: Deleted shadow for item ".$itemuri." - ".print_r($result, true), LOGGER_DEBUG);
211                 }
212         }
213 }
214
215 function update_threads() {
216         global $db;
217
218         logger("update_threads: start");
219
220         $messages = $db->q("SELECT `id` FROM `item` WHERE `id` = `parent`", true);
221
222         logger("update_threads: fetched messages: ".count($messages));
223
224         while ($message = $db->qfetch()) {
225                 add_thread($message["id"]);
226                 add_shadow_thread($message["id"]);
227         }
228         $db->qclose();
229 }
230
231 function update_threads_mention() {
232         $a = get_app();
233
234         $users = q("SELECT `uid`, `nickname` FROM `user` ORDER BY `uid`");
235
236         foreach ($users AS $user) {
237                 $self = normalise_link($a->get_baseurl() . '/profile/' . $user['nickname']);
238                 $selfhttps = str_replace("http://", "https://", $self);
239                 $parents = q("SELECT DISTINCT(`parent`) FROM `item` WHERE `uid` = %d AND
240                                 ((`owner-link` IN ('%s', '%s')) OR (`author-link` IN ('%s', '%s')))",
241                                 $user["uid"], $self, $selfhttps, $self, $selfhttps);
242
243                 foreach ($parents AS $parent)
244                         q("UPDATE `thread` SET `mention` = 1 WHERE `iid` = %d", $parent["parent"]);
245         }
246 }
247
248
249 function update_shadow_copy() {
250         global $db;
251
252         logger("start");
253
254         $messages = $db->q(sprintf("SELECT `iid` FROM `thread` WHERE `uid` != 0 AND `network` IN ('', '%s', '%s', '%s')
255                                         AND `visible` AND NOT `deleted` AND NOT `moderated` AND NOT `private` ORDER BY `created`",
256                                 NETWORK_DFRN, NETWORK_DIASPORA, NETWORK_OSTATUS), true);
257
258         logger("fetched messages: ".count($messages));
259         while ($message = $db->qfetch())
260                 add_shadow_thread($message["iid"]);
261
262         $db->qclose();
263 }
264 ?>