]> git.mxchange.org Git - friendica.git/blob - include/ostatus_conversation.php
fix reading sitename config
[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`, `created` 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($message["created"]), 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 (@!$single_conv->id AND $single_conv->provider->url AND $single_conv->statusnet_notice_info->local_id)
94                                 $single_conv->id = $single_conv->provider->url."notice/".$single_conv->statusnet_notice_info->local_id;
95
96                         if (@!$single_conv->id)
97                                 continue;
98
99                         if ($first_id == "") {
100                                 $first_id = $single_conv->id;
101
102                                 $new_parents = q("SELECT `id`, `uri`, `contact-id`, `type`, `verb`, `visible` FROM `item` WHERE `uid` = %d AND `uri` = '%s' LIMIT 1",
103                                         intval($message["uid"]), dbesc($first_id));
104                                 if ($new_parents) {
105                                         $parent = $new_parents[0];
106                                         logger('complete_conversation: adopting new parent '.$parent["id"].' for '.$itemid);
107                                 } else {
108                                         $parent["id"] = 0;
109                                         $parent["uri"] = $first_id;
110                                 }
111                         }
112
113                         if (isset($single_conv->context->inReplyTo->id))
114                                 $parent_uri = $single_conv->context->inReplyTo->id;
115                         else
116                                 $parent_uri = $parent["uri"];
117
118                         $message_exists = q("SELECT `id` FROM `item` WHERE `uid` = %d AND `uri` = '%s' LIMIT 1",
119                                                         intval($message["uid"]), dbesc($single_conv->id));
120                         if ($message_exists) {
121                                 if ($parent["id"] != 0) {
122                                         $existing_message = $message_exists[0];
123                                         $r = q("UPDATE `item` SET `parent` = %d, `parent-uri` = '%s', `thr-parent` = '%s' WHERE `id` = %d LIMIT 1",
124                                                 intval($parent["id"]),
125                                                 dbesc($parent["uri"]),
126                                                 dbesc($parent_uri),
127                                                 intval($existing_message["id"]));
128                                 }
129                                 continue;
130                         }
131
132                         $arr = array();
133                         $arr["uri"] = $single_conv->id;
134                         $arr["plink"] = $single_conv->id;
135                         $arr["uid"] = $message["uid"];
136                         $arr["contact-id"] = $parent["contact-id"]; // To-Do
137                         if ($parent["id"] != 0)
138                                 $arr["parent"] = $parent["id"];
139                         $arr["parent-uri"] = $parent["uri"];
140                         $arr["thr-parent"] = $parent_uri;
141                         $arr["created"] = $single_conv->published;
142                         $arr["edited"] = $single_conv->published;
143                         //$arr["owner-name"] = $single_conv->actor->contact->displayName;
144                         $arr["owner-name"] = $single_conv->actor->contact->preferredUsername;
145                         $arr["owner-link"] = $single_conv->actor->id;
146                         $arr["owner-avatar"] = $single_conv->actor->image->url;
147                         //$arr["author-name"] = $single_conv->actor->contact->displayName;
148                         $arr["author-name"] = $single_conv->actor->contact->preferredUsername;
149                         $arr["author-link"] = $single_conv->actor->id;
150                         $arr["author-avatar"] = $single_conv->actor->image->url;
151                         $arr["body"] = html2bbcode($single_conv->content);
152                         $arr["app"] = strip_tags($single_conv->statusnet_notice_info->source);
153                         if ($arr["app"] == "")
154                                 $arr["app"] = $single_conv->provider->displayName;
155                         $arr["verb"] = $parent["verb"];
156                         $arr["visible"] = $parent["visible"];
157                         $arr["location"] = $single_conv->location->displayName;
158                         $arr["coord"] = trim($single_conv->location->lat." ".$single_conv->location->lon);
159
160                         if ($arr["location"] == "")
161                                 unset($arr["location"]);
162
163                         if ($arr["coord"] == "")
164                                 unset($arr["coord"]);
165
166                         $newitem = item_store($arr);
167
168                         // Add the conversation entry (but don't fetch the whole conversation)
169                         complete_conversation($newitem, $conversation_url, true);
170
171                         // If the newly created item is the top item then change the parent settings of the thread
172                         if ($newitem AND ($arr["uri"] == $first_id)) {
173                                 logger('complete_conversation: setting new parent to id '.$newitem);
174                                 $new_parents = q("SELECT `id`, `uri`, `contact-id`, `type`, `verb`, `visible` FROM `item` WHERE `uid` = %d AND `id` = %d LIMIT 1",
175                                         intval($message["uid"]), intval($newitem));
176                                 if ($new_parents) {
177                                         $parent = $new_parents[0];
178                                         logger('complete_conversation: done changing parents to parent '.$newitem);
179                                 }
180
181                                 /*logger('complete_conversation: changing parents to parent '.$newitem.' old parent: '.$parent["id"].' new uri: '.$arr["uri"]);
182                                 $r = q("UPDATE `item` SET `parent` = %d, `parent-uri` = '%s' WHERE `parent` = %d",
183                                         intval($newitem),
184                                         dbesc($arr["uri"]),
185                                         intval($parent["id"]));
186                                 logger('complete_conversation: done changing parents to parent '.$newitem.' '.print_r($r, true));*/
187                         }
188                 }
189         }
190 }
191 ?>