]> git.mxchange.org Git - friendica.git/blob - include/threads.php
Massively updated avatar handling
[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         $result = q("UPDATE `thread` SET ".$sql." WHERE `iid` = %d", intval($itemid));
139
140         logger("Update thread for item ".$itemid." - guid ".$item["guid"]." - ".print_r($result, true)." ".print_r($item, true), LOGGER_DEBUG);
141
142         // Updating a shadow item entry
143         $items = q("SELECT `id` FROM `item` WHERE `guid` = '%s' AND `uid` = 0 LIMIT 1", dbesc($item["guid"]));
144
145         if (!$items)
146                 return;
147
148         $result = q("UPDATE `item` SET `title` = '%s', `body` = '%s', `rendered-html` = '%s', `rendered-hash` = '%s' WHERE `id` = %d",
149                         dbesc($item["title"]),
150                         dbesc($item["body"]),
151                         dbesc($item["rendered-html"]),
152                         dbesc($item["rendered-hash"]),
153                         intval($items[0]["id"])
154                 );
155         logger("Updating public shadow for post ".$items[0]["id"]." - guid ".$item["guid"]." Result: ".print_r($result, true), LOGGER_DEBUG);
156 }
157
158 function delete_thread_uri($itemuri, $uid) {
159         $messages = q("SELECT `id` FROM `item` WHERE uri ='%s' AND uid=%d", dbesc($itemuri), intval($uid));
160
161         if(count($messages))
162                 foreach ($messages as $message)
163                         delete_thread($message["id"], $itemuri);
164 }
165
166 function delete_thread($itemid, $itemuri = "") {
167         $item = q("SELECT `uid` FROM `thread` WHERE `iid` = %d", intval($itemid));
168
169         $result = q("DELETE FROM `thread` WHERE `iid` = %d", intval($itemid));
170
171         logger("delete_thread: Deleted thread for item ".$itemid." - ".print_r($result, true), LOGGER_DEBUG);
172
173         if ($itemuri != "") {
174                 $r = q("SELECT `id` FROM `item` WHERE `uri` = '%s' AND NOT (`uid` IN (%d, 0))",
175                                 dbesc($itemuri),
176                                 intval($item["uid"])
177                         );
178                 if (!count($r)) {
179                         $r = q("DELETE FROM `item` WHERE `uri` = '%s' AND `uid` = 0)",
180                                 dbesc($itemuri)
181                         );
182                         logger("delete_thread: Deleted shadow for item ".$itemuri." - ".print_r($result, true), LOGGER_DEBUG);
183                 }
184         }
185 }
186
187 function update_threads() {
188         global $db;
189
190         logger("update_threads: start");
191
192         $messages = $db->q("SELECT `id` FROM `item` WHERE `id` = `parent`", true);
193
194         logger("update_threads: fetched messages: ".count($messages));
195
196         while ($message = $db->qfetch())
197                 add_thread($message["id"]);
198         $db->qclose();
199 }
200
201 function update_threads_mention() {
202         $a = get_app();
203
204         $users = q("SELECT `uid`, `nickname` FROM `user` ORDER BY `uid`");
205
206         foreach ($users AS $user) {
207                 $self = normalise_link($a->get_baseurl() . '/profile/' . $user['nickname']);
208                 $selfhttps = str_replace("http://", "https://", $self);
209                 $parents = q("SELECT DISTINCT(`parent`) FROM `item` WHERE `uid` = %d AND
210                                 ((`owner-link` IN ('%s', '%s')) OR (`author-link` IN ('%s', '%s')))",
211                                 $user["uid"], $self, $selfhttps, $self, $selfhttps);
212
213                 foreach ($parents AS $parent)
214                         q("UPDATE `thread` SET `mention` = 1 WHERE `iid` = %d", $parent["parent"]);
215         }
216 }
217
218
219 function update_shadow_copy() {
220         global $db;
221
222         logger("start");
223
224         $messages = $db->q(sprintf("SELECT `iid` FROM `thread` WHERE `uid` != 0 AND `network` IN ('', '%s', '%s', '%s')
225                                         AND `visible` AND NOT `deleted` AND NOT `moderated` AND NOT `private` ORDER BY `created`",
226                                 NETWORK_DFRN, NETWORK_DIASPORA, NETWORK_OSTATUS), true);
227
228         logger("fetched messages: ".count($messages));
229         while ($message = $db->qfetch())
230                 add_thread($message["iid"], true);
231
232         $db->qclose();
233 }
234 ?>