3 function poco_init(&$a) {
4 require_once("include/bbcode.php");
8 if(intval(get_config('system','block_public')) || (get_config('system','block_local_dir')))
13 $user = notags(trim($a->argv[1]));
16 $c = q("SELECT * FROM `pconfig` WHERE `cat` = 'system' AND `k` = 'suggestme' AND `v` = 1");
18 http_status_exit(401);
22 $format = (($_GET['format']) ? $_GET['format'] : 'json');
27 if($a->argc > 1 && $a->argv[1] === '@global') {
29 $update_limit = date("Y-m-d H:i:s", time() - 30 * 86400);
31 if($a->argc > 2 && $a->argv[2] === '@me')
33 if($a->argc > 3 && $a->argv[3] === '@all')
35 if($a->argc > 3 && $a->argv[3] === '@self')
37 if($a->argc > 4 && intval($a->argv[4]) && $justme == false)
38 $cid = intval($a->argv[4]);
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",
46 if(! count($r) || $r[0]['hidewall'] || $r[0]['hide-friends'])
47 http_status_exit(404);
53 $sql_extra = " AND `contact`.`self` = 1 ";
55 // $sql_extra = " AND `contact`.`self` = 0 ";
58 $sql_extra = sprintf(" AND `contact`.`id` = %d ",intval($cid));
60 if(x($_GET,'updatedSince'))
61 $update_limit = date("Y-m-d H:i:s",strtotime($_GET['updatedSince']));
64 $r = q("SELECT count(*) AS `total` FROM `gcontact` WHERE `updated` >= '%s' AND `network` IN ('%s')",
68 } elseif($system_mode) {
69 $r = q("SELECT count(*) AS `total` FROM `contact` WHERE `self` = 1 AND `network` IN ('%s', '%s', '%s', '%s', '')
70 AND `uid` IN (SELECT `uid` FROM `pconfig` WHERE `cat` = 'system' AND `k` = 'suggestme' AND `v` = 1) ",
72 dbesc(NETWORK_DIASPORA),
73 dbesc(NETWORK_OSTATUS),
74 dbesc(NETWORK_STATUSNET)
77 $r = q("SELECT count(*) AS `total` FROM `contact` WHERE `uid` = %d AND `blocked` = 0 AND `pending` = 0 AND `hidden` = 0 AND `archive` = 0
78 AND `network` IN ('%s', '%s', '%s', '%s', '') $sql_extra",
81 dbesc(NETWORK_DIASPORA),
82 dbesc(NETWORK_OSTATUS),
83 dbesc(NETWORK_STATUSNET)
87 $totalResults = intval($r[0]['total']);
91 $startIndex = intval($_GET['startIndex']);
94 $itemsPerPage = ((x($_GET,'count') && intval($_GET['count'])) ? intval($_GET['count']) : $totalResults);
98 $r = q("SELECT * FROM `gcontact` WHERE `updated` > '%s' AND `network` IN ('%s') LIMIT %d, %d",
102 intval($itemsPerPage)
104 } elseif($system_mode) {
105 $r = q("SELECT `contact`.*, `profile`.`about` AS `pabout`, `profile`.`locality` AS `plocation`, `profile`.`pub_keywords`, `profile`.`gender` AS `pgender`,
106 `profile`.`address` AS `paddress`, `profile`.`region` AS `pregion`, `profile`.`postal-code` AS `ppostalcode`, `profile`.`country-name` AS `pcountry`
107 FROM `contact` INNER JOIN `profile` ON `profile`.`uid` = `contact`.`uid`
108 WHERE `self` = 1 AND `network` IN ('%s', '%s', '%s', '%s', '') AND `profile`.`is-default`
109 AND `contact`.`uid` IN (SELECT `uid` FROM `pconfig` WHERE `cat` = 'system' AND `k` = 'suggestme' AND `v` = 1) LIMIT %d, %d",
111 dbesc(NETWORK_DIASPORA),
112 dbesc(NETWORK_OSTATUS),
113 dbesc(NETWORK_STATUSNET),
115 intval($itemsPerPage)
118 $r = q("SELECT * FROM `contact` WHERE `uid` = %d AND `blocked` = 0 AND `pending` = 0 AND `hidden` = 0 AND `archive` = 0
119 AND `network` IN ('%s', '%s', '%s', '%s', '') $sql_extra LIMIT %d, %d",
120 intval($user['uid']),
122 dbesc(NETWORK_DIASPORA),
123 dbesc(NETWORK_OSTATUS),
124 dbesc(NETWORK_STATUSNET),
126 intval($itemsPerPage)
131 if(x($_GET,'sorted'))
132 $ret['sorted'] = false;
133 if(x($_GET,'filtered'))
134 $ret['filtered'] = false;
135 if(x($_GET,'updatedSince') AND !$global)
136 $ret['updatedSince'] = false;
138 $ret['startIndex'] = (int) $startIndex;
139 $ret['itemsPerPage'] = (int) $itemsPerPage;
140 $ret['totalResults'] = (int) $totalResults;
141 $ret['entry'] = array();
146 'displayName' => false,
149 'preferredUsername' => false,
152 'currentLocation' => false,
157 'generation' => false
160 if((! x($_GET,'fields')) || ($_GET['fields'] === '@all'))
161 foreach($fields_ret as $k => $v)
162 $fields_ret[$k] = true;
164 $fields_req = explode(',',$_GET['fields']);
165 foreach($fields_req as $f)
166 $fields_ret[trim($f)] = true;
172 if (!isset($rr['generation'])) {
174 $rr['generation'] = 3;
175 elseif ($system_mode)
176 $rr['generation'] = 1;
178 $rr['generation'] = 2;
181 if (($rr['about'] == "") AND isset($rr['pabout']))
182 $rr['about'] = $rr['pabout'];
184 if ($rr['location'] == "") {
185 if (isset($rr['plocation']))
186 $rr['location'] = $rr['plocation'];
188 if (isset($rr['pregion']) AND ($rr['pregion'] != "")) {
189 if ($rr['location'] != "")
190 $rr['location'] .= ", ";
192 $rr['location'] .= $rr['pregion'];
195 if (isset($rr['pcountry']) AND ($rr['pcountry'] != "")) {
196 if ($rr['location'] != "")
197 $rr['location'] .= ", ";
199 $rr['location'] .= $rr['pcountry'];
203 if (($rr['gender'] == "") AND isset($rr['pgender']))
204 $rr['gender'] = $rr['pgender'];
206 if (($rr['keywords'] == "") AND isset($rr['pub_keywords']))
207 $rr['keywords'] = $rr['pub_keywords'];
210 if($fields_ret['id'])
211 $entry['id'] = (int)$rr['id'];
212 if($fields_ret['displayName'])
213 $entry['displayName'] = $rr['name'];
214 if($fields_ret['aboutMe'])
215 $entry['aboutMe'] = bbcode($rr['about'], false, false);
216 if($fields_ret['currentLocation'])
217 $entry['currentLocation'] = $rr['location'];
218 if($fields_ret['gender'])
219 $entry['gender'] = $rr['gender'];
220 if($fields_ret['generation'])
221 $entry['generation'] = (int)$rr['generation'];
222 if($fields_ret['urls']) {
223 $entry['urls'] = array(array('value' => $rr['url'], 'type' => 'profile'));
224 if($rr['addr'] && ($rr['network'] !== NETWORK_MAIL))
225 $entry['urls'][] = array('value' => 'acct:' . $rr['addr'], 'type' => 'webfinger');
227 if($fields_ret['preferredUsername'])
228 $entry['preferredUsername'] = $rr['nick'];
229 if($fields_ret['updated']) {
231 $entry['updated'] = $rr['success_update'];
233 if ($rr['name-date'] > $entry['updated'])
234 $entry['updated'] = $rr['name-date'];
236 if ($rr['uri-date'] > $entry['updated'])
237 $entry['updated'] = $rr['uri-date'];
239 if ($rr['avatar-date'] > $entry['updated'])
240 $entry['updated'] = $rr['avatar-date'];
242 $entry['updated'] = $rr['updated'];
244 $entry['updated'] = date("c", strtotime($entry['updated']));
246 if($fields_ret['photos'])
247 $entry['photos'] = array(array('value' => $rr['photo'], 'type' => 'profile'));
248 if($fields_ret['network']) {
249 $entry['network'] = $rr['network'];
250 if ($entry['network'] == NETWORK_STATUSNET)
251 $entry['network'] = NETWORK_OSTATUS;
252 if (($entry['network'] == "") AND ($rr['self']))
253 $entry['network'] = NETWORK_DFRN;
255 if($fields_ret['tags']) {
256 $tags = str_replace(","," ",$rr['keywords']);
257 $tags = explode(" ", $tags);
260 foreach ($tags as $tag) {
261 $tag = trim(strtolower($tag));
266 $entry['tags'] = array($cleaned);
268 if($fields_ret['address']) {
269 $entry['address'] = array();
271 // Deactivated. It just reveals too much data. (Although its from the default profile)
272 //if (isset($rr['paddress']))
273 // $entry['address']['streetAddress'] = $rr['paddress'];
275 if (isset($rr['plocation']))
276 $entry['address']['locality'] = $rr['plocation'];
278 if (isset($rr['pregion']))
279 $entry['address']['region'] = $rr['pregion'];
282 //if (isset($rr['ppostalcode']))
283 // $entry['address']['postalCode'] = $rr['ppostalcode'];
285 if (isset($rr['pcountry']))
286 $entry['address']['country'] = $rr['pcountry'];
289 $ret['entry'][] = $entry;
293 $ret['entry'][] = array();
296 http_status_exit(500);
298 if($format === 'xml') {
299 header('Content-type: text/xml');
300 echo replace_macros(get_markup_template('poco_xml.tpl'),array_xmlify(array('$response' => $ret)));
303 if($format === 'json') {
304 header('Content-type: application/json');
305 echo json_encode($ret);
309 http_status_exit(500);