]> git.mxchange.org Git - friendica.git/blob - mod/poco.php
This merge brings back dbm::is_result() where I could find it.
[friendica.git] / mod / poco.php
1 <?php
2
3 function poco_init(&$a) {
4         require_once("include/bbcode.php");
5
6         $system_mode = false;
7
8         if(intval(get_config('system','block_public')) || (get_config('system','block_local_dir')))
9                 http_status_exit(401);
10
11
12         if($a->argc > 1) {
13                 $user = notags(trim($a->argv[1]));
14         }
15         if(! x($user)) {
16                 $c = q("SELECT * FROM `pconfig` WHERE `cat` = 'system' AND `k` = 'suggestme' AND `v` = 1");
17                 if(! count($c))
18                         http_status_exit(401);
19                 $system_mode = true;
20         }
21
22         $format = (($_GET['format']) ? $_GET['format'] : 'json');
23
24         $justme = false;
25         $global = false;
26
27         if($a->argc > 1 && $a->argv[1] === '@global') {
28                 $global = true;
29                 $update_limit = date("Y-m-d H:i:s", time() - 30 * 86400);
30         }
31         if($a->argc > 2 && $a->argv[2] === '@me')
32                 $justme = true;
33         if($a->argc > 3 && $a->argv[3] === '@all')
34                 $justme = false;
35         if($a->argc > 3 && $a->argv[3] === '@self')
36                 $justme = true;
37         if($a->argc > 4 && intval($a->argv[4]) && $justme == false)
38                 $cid = intval($a->argv[4]);
39
40
41         if(!$system_mode AND !$global) {
42                 $r = q("SELECT `user`.*,`profile`.`hide-friends` from user left join profile on `user`.`uid` = `profile`.`uid`
43                         where `user`.`nickname` = '%s' and `profile`.`is-default` = 1 limit 1",
44                         dbesc($user)
45                 );
46                 if(! count($r) || $r[0]['hidewall'] || $r[0]['hide-friends'])
47                         http_status_exit(404);
48
49                 $user = $r[0];
50         }
51
52         if($justme)
53                 $sql_extra = " AND `contact`.`self` = 1 ";
54 //      else
55 //              $sql_extra = " AND `contact`.`self` = 0 ";
56
57         if($cid)
58                 $sql_extra = sprintf(" AND `contact`.`id` = %d ",intval($cid));
59
60         if(x($_GET,'updatedSince'))
61                 $update_limit =  date("Y-m-d H:i:s",strtotime($_GET['updatedSince']));
62
63         if ($global) {
64                 $r = q("SELECT count(*) AS `total` FROM `gcontact` WHERE `updated` >= '%s' AND `updated` >= `last_failure` AND NOT `hide` AND `network` IN ('%s', '%s', '%s')",
65                         dbesc($update_limit),
66                         dbesc(NETWORK_DFRN),
67                         dbesc(NETWORK_DIASPORA),
68                         dbesc(NETWORK_OSTATUS)
69                 );
70         } elseif($system_mode) {
71                 $r = q("SELECT count(*) AS `total` FROM `contact` WHERE `self` = 1
72                         AND `uid` IN (SELECT `uid` FROM `pconfig` WHERE `cat` = 'system' AND `k` = 'suggestme' AND `v` = 1) ");
73         } else {
74                 $r = q("SELECT count(*) AS `total` FROM `contact` WHERE `uid` = %d AND `blocked` = 0 AND `pending` = 0 AND `hidden` = 0 AND `archive` = 0
75                         AND (`success_update` >= `failure_update` OR `last-item` >= `failure_update`)
76                         AND `network` IN ('%s', '%s', '%s', '%s') $sql_extra",
77                         intval($user['uid']),
78                         dbesc(NETWORK_DFRN),
79                         dbesc(NETWORK_DIASPORA),
80                         dbesc(NETWORK_OSTATUS),
81                         dbesc(NETWORK_STATUSNET)
82                 );
83         }
84         if(dbm::is_result($r))
85                 $totalResults = intval($r[0]['total']);
86         else
87                 $totalResults = 0;
88
89         $startIndex = intval($_GET['startIndex']);
90         if(! $startIndex)
91                 $startIndex = 0;
92         $itemsPerPage = ((x($_GET,'count') && intval($_GET['count'])) ? intval($_GET['count']) : $totalResults);
93
94         if ($global) {
95                 logger("Start global query", LOGGER_DEBUG);
96                 $r = q("SELECT * FROM `gcontact` WHERE `updated` > '%s' AND NOT `hide` AND `network` IN ('%s', '%s', '%s') AND `updated` > `last_failure`
97                         ORDER BY `updated` DESC LIMIT %d, %d",
98                         dbesc($update_limit),
99                         dbesc(NETWORK_DFRN),
100                         dbesc(NETWORK_DIASPORA),
101                         dbesc(NETWORK_OSTATUS),
102                         intval($startIndex),
103                         intval($itemsPerPage)
104                 );
105         } elseif($system_mode) {
106                 logger("Start system mode query", LOGGER_DEBUG);
107                 $r = q("SELECT `contact`.*, `profile`.`about` AS `pabout`, `profile`.`locality` AS `plocation`, `profile`.`pub_keywords`, `profile`.`gender` AS `pgender`,
108                         `profile`.`address` AS `paddress`, `profile`.`region` AS `pregion`, `profile`.`postal-code` AS `ppostalcode`, `profile`.`country-name` AS `pcountry`
109                         FROM `contact` INNER JOIN `profile` ON `profile`.`uid` = `contact`.`uid`
110                         WHERE `self` = 1 AND `profile`.`is-default`
111                         AND `contact`.`uid` IN (SELECT `uid` FROM `pconfig` WHERE `cat` = 'system' AND `k` = 'suggestme' AND `v` = 1) LIMIT %d, %d",
112                         intval($startIndex),
113                         intval($itemsPerPage)
114                 );
115         } else {
116                 logger("Start query for user ".$user['nickname'], LOGGER_DEBUG);
117                 $r = q("SELECT * FROM `contact` WHERE `uid` = %d AND `blocked` = 0 AND `pending` = 0 AND `hidden` = 0 AND `archive` = 0
118                         AND (`success_update` >= `failure_update` OR `last-item` >= `failure_update`)
119                         AND `network` IN ('%s', '%s', '%s', '%s') $sql_extra LIMIT %d, %d",
120                         intval($user['uid']),
121                         dbesc(NETWORK_DFRN),
122                         dbesc(NETWORK_DIASPORA),
123                         dbesc(NETWORK_OSTATUS),
124                         dbesc(NETWORK_STATUSNET),
125                         intval($startIndex),
126                         intval($itemsPerPage)
127                 );
128         }
129         logger("Query done", LOGGER_DEBUG);
130
131         $ret = array();
132         if(x($_GET,'sorted'))
133                 $ret['sorted'] = false;
134         if(x($_GET,'filtered'))
135                 $ret['filtered'] = false;
136         if(x($_GET,'updatedSince') AND !$global)
137                 $ret['updatedSince'] = false;
138
139         $ret['startIndex']   = (int) $startIndex;
140         $ret['itemsPerPage'] = (int) $itemsPerPage;
141         $ret['totalResults'] = (int) $totalResults;
142         $ret['entry']        = array();
143
144
145         $fields_ret = array(
146                 'id' => false,
147                 'displayName' => false,
148                 'urls' => false,
149                 'updated' => false,
150                 'preferredUsername' => false,
151                 'photos' => false,
152                 'aboutMe' => false,
153                 'currentLocation' => false,
154                 'network' => false,
155                 'gender' => false,
156                 'tags' => false,
157                 'address' => false,
158                 'generation' => false
159         );
160
161         if((! x($_GET,'fields')) || ($_GET['fields'] === '@all'))
162                 foreach($fields_ret as $k => $v)
163                         $fields_ret[$k] = true;
164         else {
165                 $fields_req = explode(',',$_GET['fields']);
166                 foreach($fields_req as $f)
167                         $fields_ret[trim($f)] = true;
168         }
169
170         if(is_array($r)) {
171                 if(dbm::is_result($r)) {
172                         foreach($r as $rr) {
173                                 if (!isset($rr['generation'])) {
174                                         if ($global)
175                                                 $rr['generation'] = 3;
176                                         elseif ($system_mode)
177                                                 $rr['generation'] = 1;
178                                         else
179                                                 $rr['generation'] = 2;
180                                 }
181
182                                 if (($rr['about'] == "") AND isset($rr['pabout']))
183                                         $rr['about'] = $rr['pabout'];
184
185                                 if ($rr['location'] == "") {
186                                         if (isset($rr['plocation']))
187                                                 $rr['location'] = $rr['plocation'];
188
189                                         if (isset($rr['pregion']) AND ($rr['pregion'] != "")) {
190                                                 if ($rr['location'] != "")
191                                                         $rr['location'] .= ", ";
192
193                                                 $rr['location'] .= $rr['pregion'];
194                                         }
195
196                                         if (isset($rr['pcountry']) AND ($rr['pcountry'] != "")) {
197                                                 if ($rr['location'] != "")
198                                                         $rr['location'] .= ", ";
199
200                                                 $rr['location'] .= $rr['pcountry'];
201                                         }
202                                 }
203
204                                 if (($rr['gender'] == "") AND isset($rr['pgender']))
205                                         $rr['gender'] = $rr['pgender'];
206
207                                 if (($rr['keywords'] == "") AND isset($rr['pub_keywords']))
208                                         $rr['keywords'] = $rr['pub_keywords'];
209
210                                 $about = Cache::get("about:".$rr['updated'].":".$rr['nurl']);
211                                 if (is_null($about)) {
212                                         $about = bbcode($rr['about'], false, false);
213                                         Cache::set("about:".$rr['updated'].":".$rr['nurl'],$about);
214                                 }
215
216                                 // Non connected persons can only see the keywords of a Diaspora account
217                                 if ($rr['network'] == NETWORK_DIASPORA) {
218                                         $rr['location'] = "";
219                                         $about = "";
220                                         $rr['gender'] = "";
221                                 }
222
223                                 $entry = array();
224                                 if($fields_ret['id'])
225                                         $entry['id'] = (int)$rr['id'];
226                                 if($fields_ret['displayName'])
227                                         $entry['displayName'] = $rr['name'];
228                                 if($fields_ret['aboutMe'])
229                                         $entry['aboutMe'] = $about;
230                                 if($fields_ret['currentLocation'])
231                                         $entry['currentLocation'] = $rr['location'];
232                                 if($fields_ret['gender'])
233                                         $entry['gender'] = $rr['gender'];
234                                 if($fields_ret['generation'])
235                                         $entry['generation'] = (int)$rr['generation'];
236                                 if($fields_ret['urls']) {
237                                         $entry['urls'] = array(array('value' => $rr['url'], 'type' => 'profile'));
238                                         if($rr['addr'] && ($rr['network'] !== NETWORK_MAIL))
239                                                 $entry['urls'][] = array('value' => 'acct:' . $rr['addr'], 'type' => 'webfinger');
240                                 }
241                                 if($fields_ret['preferredUsername'])
242                                         $entry['preferredUsername'] = $rr['nick'];
243                                 if($fields_ret['updated']) {
244                                         if (!$global) {
245                                                 $entry['updated'] = $rr['success_update'];
246
247                                                 if ($rr['name-date'] > $entry['updated'])
248                                                         $entry['updated'] = $rr['name-date'];
249
250                                                 if ($rr['uri-date'] > $entry['updated'])
251                                                         $entry['updated'] = $rr['uri-date'];
252
253                                                 if ($rr['avatar-date'] > $entry['updated'])
254                                                         $entry['updated'] = $rr['avatar-date'];
255                                         } else
256                                                 $entry['updated'] = $rr['updated'];
257
258                                         $entry['updated'] = date("c", strtotime($entry['updated']));
259                                 }
260                                 if($fields_ret['photos'])
261                                         $entry['photos'] = array(array('value' => $rr['photo'], 'type' => 'profile'));
262                                 if($fields_ret['network']) {
263                                         $entry['network'] = $rr['network'];
264                                         if ($entry['network'] == NETWORK_STATUSNET)
265                                                 $entry['network'] = NETWORK_OSTATUS;
266                                         if (($entry['network'] == "") AND ($rr['self']))
267                                                 $entry['network'] = NETWORK_DFRN;
268                                 }
269                                 if($fields_ret['tags']) {
270                                         $tags = str_replace(","," ",$rr['keywords']);
271                                         $tags = explode(" ", $tags);
272
273                                         $cleaned = array();
274                                         foreach ($tags as $tag) {
275                                                 $tag = trim(strtolower($tag));
276                                                 if ($tag != "")
277                                                         $cleaned[] = $tag;
278                                         }
279
280                                         $entry['tags'] = array($cleaned);
281                                 }
282                                 if($fields_ret['address']) {
283                                         $entry['address'] = array();
284
285                                         // Deactivated. It just reveals too much data. (Although its from the default profile)
286                                         //if (isset($rr['paddress']))
287                                         //       $entry['address']['streetAddress'] = $rr['paddress'];
288
289                                         if (isset($rr['plocation']))
290                                                  $entry['address']['locality'] = $rr['plocation'];
291
292                                         if (isset($rr['pregion']))
293                                                  $entry['address']['region'] = $rr['pregion'];
294
295                                         // See above
296                                         //if (isset($rr['ppostalcode']))
297                                         //       $entry['address']['postalCode'] = $rr['ppostalcode'];
298
299                                         if (isset($rr['pcountry']))
300                                                  $entry['address']['country'] = $rr['pcountry'];
301                                 }
302
303                                 $ret['entry'][] = $entry;
304                         }
305                 }
306                 else
307                         $ret['entry'][] = array();
308         }
309         else
310                 http_status_exit(500);
311
312         logger("End of poco", LOGGER_DEBUG);
313
314         if($format === 'xml') {
315                 header('Content-type: text/xml');
316                 echo replace_macros(get_markup_template('poco_xml.tpl'),array_xmlify(array('$response' => $ret)));
317                 killme();
318         }
319         if($format === 'json') {
320                 header('Content-type: application/json');
321                 echo json_encode($ret);
322                 killme();
323         }
324         else
325                 http_status_exit(500);
326
327
328 }