]> git.mxchange.org Git - friendica.git/blob - include/threads.php
Post update ist now done.
[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`, `moderated`, `visible`, `spam`, `starred`, `bookmark`, `contact-id`, `gcontact-id`,
4                         `deleted`, `origin`, `forum_mode`, `mention`, `network`  FROM `item` WHERE `id` = %d AND (`parent` = %d OR `parent` = 0) LIMIT 1", intval($itemid), intval($itemid));
5
6         if (!$items)
7                 return;
8
9         $item = $items[0];
10         $item['iid'] = $itemid;
11
12         if (!$onlyshadow) {
13                 $result = dbq("INSERT INTO `thread` (`"
14                                 .implode("`, `", array_keys($item))
15                                 ."`) VALUES ('"
16                                 .implode("', '", array_values($item))
17                                 ."')");
18
19                 logger("add_thread: Add thread for item ".$itemid." - ".print_r($result, true), LOGGER_DEBUG);
20         }
21
22         // is it already a copy?
23         if (($itemid == 0) OR ($item['uid'] == 0))
24                 return;
25
26         // Is it a visible public post?
27         if (!$item["visible"] OR $item["deleted"] OR $item["moderated"] OR $item["private"])
28                 return;
29
30         // is it an entry from a connector? Only add an entry for natively connected networks
31         if (!in_array($item["network"], array(NETWORK_DFRN, NETWORK_DIASPORA, NETWORK_OSTATUS, "")))
32                 return;
33
34         // Only do these checks if the post isn't a wall post
35         if (!$item["wall"]) {
36                 // Check, if hide-friends is activated - then don't do a shadow entry
37                 $r = q("SELECT `hide-friends` FROM `profile` WHERE `is-default` AND `uid` = %d AND NOT `hide-friends`",
38                         $item['uid']);
39                 if (!count($r))
40                         return;
41                 // Check if the contact is hidden or blocked
42                 $r = q("SELECT `id` FROM `contact` WHERE NOT `hidden` AND NOT `blocked` AND `id` = %d",
43                         $item['contact-id']);
44                 if (!count($r))
45                         return;
46         }
47
48         // Only add a shadow, if the profile isn't hidden
49         $r = q("SELECT `uid` FROM `user` where `uid` = %d AND NOT `hidewall`", $item['uid']);
50         if (!count($r))
51                 return;
52
53         $item = q("SELECT * FROM `item` WHERE `id` = %d",
54                 intval($itemid));
55
56         if (count($item) AND ($item[0]["allow_cid"] == '')  AND ($item[0]["allow_gid"] == '') AND
57                 ($item[0]["deny_cid"] == '') AND ($item[0]["deny_gid"] == '')) {
58
59                 $r = q("SELECT `id` FROM `item` WHERE `uri` = '%s' AND `uid` = 0 LIMIT 1",
60                         dbesc($item['uri']));
61
62                 if (!$r) {
63                         // Preparing public shadow (removing user specific data)
64                         require_once("include/items.php");
65                         require_once("include/Contact.php");
66
67                         unset($item[0]['id']);
68                         unset($item[0]['shadow']);
69                         $item[0]['uid'] = 0;
70                         $item[0]['origin'] = 0;
71                         $item[0]['contact-id'] = get_contact($item[0]['author-link'], 0);
72                         $public_shadow = item_store($item[0], false, false, true);
73
74                         logger("add_thread: Stored public shadow for post ".$itemid." under id ".$public_shadow, LOGGER_DEBUG);
75                 } else
76                         $public_shadow = $r[0]["id"];
77
78                 if ($public_shadow > 0)
79                         q("UPDATE `item` SET `shadow` = %d WHERE `id` = %d", intval($public_shadow), intval($itemid));
80
81         }
82 }
83
84 function add_shadow_entry($item) {
85
86         // Is this a shadow entry?
87         if ($item['uid'] == 0)
88                 return;
89
90         // Is there a shadow parent?
91         $r = q("SELECT `id` FROM `item` WHERE `uri` = '%s' AND `uid` = 0 LIMIT 1", dbesc($item['parent-uri']));
92         if (!count($r))
93                 return;
94
95         // Is there already a shadow entry?
96         $r = q("SELECT `id` FROM `item` WHERE `uri` = '%s' AND `uid` = 0 LIMIT 1", dbesc($item['uri']));
97         if (count($r))
98                 return;
99
100         // Preparing public shadow (removing user specific data)
101         require_once("include/items.php");
102         require_once("include/Contact.php");
103
104         unset($item['id']);
105         $item['uid'] = 0;
106         $item['contact-id'] = get_contact($item['author-link'], 0);
107         $public_shadow = item_store($item, false, false, true);
108
109         logger("Stored public shadow for comment ".$item['uri']." under id ".$public_shadow, LOGGER_DEBUG);
110 }
111
112 function update_thread_uri($itemuri, $uid) {
113         $messages = q("SELECT `id` FROM `item` WHERE uri ='%s' AND uid=%d", dbesc($itemuri), intval($uid));
114
115         if(count($messages))
116                 foreach ($messages as $message)
117                         update_thread($message["id"]);
118 }
119
120 function update_thread($itemid, $setmention = false) {
121         $items = q("SELECT `uid`, `guid`, `title`, `body`, `created`, `edited`, `commented`, `received`, `changed`, `wall`, `private`, `pubmail`, `moderated`, `visible`, `spam`, `starred`, `bookmark`, `contact-id`, `gcontact-id`,
122                         `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));
123
124         if (!$items)
125                 return;
126
127         $item = $items[0];
128
129         if ($setmention)
130                 $item["mention"] = 1;
131
132         $sql = "";
133
134         foreach ($item AS $field => $data)
135                 if (!in_array($field, array("guid", "title", "body", "rendered-html", "rendered-hash"))) {
136                         if ($sql != "")
137                                 $sql .= ", ";
138
139                         $sql .= "`".$field."` = '".dbesc($data)."'";
140                 }
141
142         $result = q("UPDATE `thread` SET ".$sql." WHERE `iid` = %d", intval($itemid));
143
144         logger("Update thread for item ".$itemid." - guid ".$item["guid"]." - ".print_r($result, true)." ".print_r($item, true), LOGGER_DEBUG);
145
146         // Updating a shadow item entry
147         $items = q("SELECT `id` FROM `item` WHERE `guid` = '%s' AND `uid` = 0 LIMIT 1", dbesc($item["guid"]));
148
149         if (!$items)
150                 return;
151
152         $result = q("UPDATE `item` SET `title` = '%s', `body` = '%s', `rendered-html` = '%s', `rendered-hash` = '%s' WHERE `id` = %d",
153                         dbesc($item["title"]),
154                         dbesc($item["body"]),
155                         dbesc($item["rendered-html"]),
156                         dbesc($item["rendered-hash"]),
157                         intval($items[0]["id"])
158                 );
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 ?>