]> git.mxchange.org Git - friendica.git/blob - include/ostatus_conversation.php
Merge pull request #644 from fermionic/20130303-no-embedding-private-images-option
[friendica.git] / include / ostatus_conversation.php
1 <?php
2 define('OSTATUS_DEFAULT_POLL_INTERVAL', 30); // given in minutes
3 define('OSTATUS_DEFAULT_POLL_TIMEFRAME', 1440); // given in minutes
4
5 function check_conversations() {
6         $last = get_config('system','ostatus_last_poll');
7
8         $poll_interval = intval(get_config('system','ostatus_poll_interval'));
9         if(! $poll_interval)
10                 $poll_interval = OSTATUS_DEFAULT_POLL_INTERVAL;
11
12         // Don't poll if the interval is set negative
13         if ($poll_interval < 0)
14                 return;
15
16         $poll_timeframe = intval(get_config('system','ostatus_poll_timeframe'));
17         if(! $poll_timeframe)
18                 $poll_timeframe = OSTATUS_DEFAULT_POLL_TIMEFRAME;
19
20         if($last) {
21                 $next = $last + ($poll_interval * 60);
22                 if($next > time()) {
23                         logger('complete_conversation: poll interval not reached');
24                         return;
25                 }
26         }
27
28         logger('complete_conversation: cron_start');
29
30         $start = date("Y-m-d H:i:s", time() - ($poll_timeframe * 60));
31         $conversations = q("SELECT * FROM `term` WHERE `type` = 7 AND `term` > '%s'", 
32                                 dbesc($start));
33         foreach ($conversations AS $conversation) {
34                 $id = $conversation['oid'];
35                 $url = $conversation['url'];
36                 complete_conversation($id, $url);
37         }
38
39         logger('complete_conversation: cron_end');
40
41         set_config('system','ostatus_last_poll', time());
42 }
43
44 function complete_conversation($itemid, $conversation_url, $only_add_conversation = false) {
45         global $a;
46
47         //logger('complete_conversation: completing conversation url '.$conversation_url.' for id '.$itemid);
48
49         $messages = q("SELECT `uid`, `parent` FROM `item` WHERE `id` = %d LIMIT 1", intval($itemid));
50         if (!$messages)
51                 return;
52         $message = $messages[0];
53
54         // Store conversation url if not done before
55         $conversation = q("SELECT `url` FROM `term` WHERE `uid` = %d AND `oid` = %d AND `otype` = %d AND `type` = %d",
56                 intval($message["uid"]), intval($itemid), intval(TERM_OBJ_POST), intval(TERM_CONVERSATION));
57
58         if (!$conversation) {
59                 $r = q("INSERT INTO `term` (`uid`, `oid`, `otype`, `type`, `term`, `url`) VALUES (%d, %d, %d, %d, '%s', '%s')",
60                         intval($message["uid"]), intval($itemid), intval(TERM_OBJ_POST), intval(TERM_CONVERSATION), dbesc(datetime_convert()), dbesc($conversation_url));
61                 logger('complete_conversation: Storing conversation url '.$conversation_url.' for id '.$itemid);
62         }
63
64         if ($only_add_conversation)
65                 return;
66
67         // Get the parent
68         $parents = q("SELECT `id`, `uri`, `contact-id`, `type`, `verb`, `visible` FROM `item` WHERE `uid` = %d AND `id` = %d LIMIT 1",
69                         intval($message["uid"]), intval($message["parent"]));
70         if (!$parents)
71                 return;
72         $parent = $parents[0];
73
74         require_once('include/html2bbcode.php');
75         require_once('include/items.php');
76
77         $conv = str_replace("/conversation/", "/api/statusnet/conversation/", $conversation_url).".as";
78
79         logger('complete_conversation: fetching conversation url '.$conv.' for '.$itemid);
80         $conv_as = fetch_url($conv);
81
82         if ($conv_as) {
83                 $conv_as = str_replace(',"statusnet:notice_info":', ',"statusnet_notice_info":', $conv_as);
84                 $conv_as = json_decode($conv_as);
85
86                 $first_id = "";
87
88                 if (!is_array($conv_as->items))
89                     return;
90                 $items = array_reverse($conv_as->items);
91
92                 foreach ($items as $single_conv) {
93                         if ($first_id == "") {
94                                 $first_id = $single_conv->id;
95
96                                 $new_parents = q("SELECT `id`, `uri`, `contact-id`, `type`, `verb`, `visible` FROM `item` WHERE `uid` = %d AND `uri` = '%s' LIMIT 1",
97                                         intval($message["uid"]), dbesc($first_id));
98                                 if ($new_parents) {
99                                         $parent = $new_parents[0];
100                                         logger('complete_conversation: adopting new parent '.$parent["id"].' for '.$itemid);
101                                 } else {
102                                         $parent["id"] = 0;
103                                         $parent["uri"] = $first_id;
104                                 }
105                         }
106
107                         if (isset($single_conv->context->inReplyTo->id))
108                                 $parent_uri = $single_conv->context->inReplyTo->id;
109                         else
110                                 $parent_uri = $parent["uri"];
111
112                         $message_exists = q("SELECT `id` FROM `item` WHERE `uid` = %d AND `uri` = '%s' LIMIT 1",
113                                                         intval($message["uid"]), dbesc($single_conv->id));
114                         if ($message_exists) {
115                                 if ($parent["id"] != 0) {
116                                         $existing_message = $message_exists[0];
117                                         $r = q("UPDATE `item` SET `parent` = %d, `parent-uri` = '%s', `thr-parent` = '%s' WHERE `id` = %d LIMIT 1",
118                                                 intval($parent["id"]),
119                                                 dbesc($parent["uri"]),
120                                                 dbesc($parent_uri),
121                                                 intval($existing_message["id"]));
122                                 }
123                                 continue;
124                         }
125
126                         $arr = array();
127                         $arr["uri"] = $single_conv->id;
128                         $arr["plink"] = $single_conv->id;
129                         $arr["uid"] = $message["uid"];
130                         $arr["contact-id"] = $parent["contact-id"]; // To-Do
131                         if ($parent["id"] != 0)
132                                 $arr["parent"] = $parent["id"];
133                         $arr["parent-uri"] = $parent["uri"];
134                         $arr["thr-parent"] = $parent_uri;
135                         $arr["created"] = $single_conv->published;
136                         $arr["edited"] = $single_conv->published;
137                         //$arr["owner-name"] = $single_conv->actor->contact->displayName;
138                         $arr["owner-name"] = $single_conv->actor->contact->preferredUsername;
139                         $arr["owner-link"] = $single_conv->actor->id;
140                         $arr["owner-avatar"] = $single_conv->actor->image->url;
141                         //$arr["author-name"] = $single_conv->actor->contact->displayName;
142                         $arr["author-name"] = $single_conv->actor->contact->preferredUsername;
143                         $arr["author-link"] = $single_conv->actor->id;
144                         $arr["author-avatar"] = $single_conv->actor->image->url;
145                         $arr["body"] = html2bbcode($single_conv->content);
146                         $arr["app"] = strip_tags($single_conv->statusnet_notice_info->source);
147                         if ($arr["app"] == "")
148                                 $arr["app"] = $single_conv->provider->displayName;
149                         $arr["verb"] = $parent["verb"];
150                         $arr["visible"] = $parent["visible"];
151                         $arr["location"] = $single_conv->location->displayName;
152                         $arr["coord"] = trim($single_conv->location->lat." ".$single_conv->location->lon);
153
154                         if ($arr["location"] == "")
155                                 unset($arr["location"]);
156
157                         if ($arr["coord"] == "")
158                                 unset($arr["coord"]);
159
160                         $newitem = item_store($arr);
161
162                         // Add the conversation entry (but don't fetch the whole conversation)
163                         complete_conversation($newitem, $conversation_url, true);
164
165                         // If the newly created item is the top item then change the parent settings of the thread
166                         if ($newitem AND ($arr["uri"] == $first_id)) {
167                                 logger('complete_conversation: setting new parent to id '.$newitem);
168                                 $new_parents = q("SELECT `id`, `uri`, `contact-id`, `type`, `verb`, `visible` FROM `item` WHERE `uid` = %d AND `id` = %d LIMIT 1",
169                                         intval($message["uid"]), intval($newitem));
170                                 if ($new_parents) {
171                                         $parent = $new_parents[0];
172                                         logger('complete_conversation: done changing parents to parent '.$newitem);
173                                 }
174
175                                 /*logger('complete_conversation: changing parents to parent '.$newitem.' old parent: '.$parent["id"].' new uri: '.$arr["uri"]);
176                                 $r = q("UPDATE `item` SET `parent` = %d, `parent-uri` = '%s' WHERE `parent` = %d",
177                                         intval($newitem),
178                                         dbesc($arr["uri"]),
179                                         intval($parent["id"]));
180                                 logger('complete_conversation: done changing parents to parent '.$newitem.' '.print_r($r, true));*/
181                         }
182                 }
183         }
184 }
185 ?>