3 function poco_init(&$a) {
4 require_once("include/bbcode.php");
8 if(intval(get_config('system','block_public')))
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 FROM `contact` INNER JOIN `profile` ON `profile`.`uid` = `contact`.`uid`
107 WHERE `self` = 1 AND `network` IN ('%s', '%s', '%s', '%s', '') AND `profile`.`is-default`
108 AND `contact`.`uid` IN (SELECT `uid` FROM `pconfig` WHERE `cat` = 'system' AND `k` = 'suggestme' AND `v` = 1) LIMIT %d, %d",
110 dbesc(NETWORK_DIASPORA),
111 dbesc(NETWORK_OSTATUS),
112 dbesc(NETWORK_STATUSNET),
114 intval($itemsPerPage)
117 $r = q("SELECT * FROM `contact` WHERE `uid` = %d AND `blocked` = 0 AND `pending` = 0 AND `hidden` = 0 AND `archive` = 0
118 AND `network` IN ('%s', '%s', '%s', '%s', '') $sql_extra LIMIT %d, %d",
119 intval($user['uid']),
121 dbesc(NETWORK_DIASPORA),
122 dbesc(NETWORK_OSTATUS),
123 dbesc(NETWORK_STATUSNET),
125 intval($itemsPerPage)
130 if(x($_GET,'sorted'))
131 $ret['sorted'] = false;
132 if(x($_GET,'filtered'))
133 $ret['filtered'] = false;
134 if(x($_GET,'updatedSince') AND !$global)
135 $ret['updatedSince'] = false;
137 $ret['startIndex'] = (string) $startIndex;
138 $ret['itemsPerPage'] = (string) $itemsPerPage;
139 $ret['totalResults'] = (string) $totalResults;
140 $ret['entry'] = array();
145 'displayName' => false,
148 'preferredUsername' => false,
151 'currentLocation' => false,
157 if((! x($_GET,'fields')) || ($_GET['fields'] === '@all'))
158 foreach($fields_ret as $k => $v)
159 $fields_ret[$k] = true;
161 $fields_req = explode(',',$_GET['fields']);
162 foreach($fields_req as $f)
163 $fields_ret[trim($f)] = true;
169 if (($rr['about'] == "") AND isset($rr['pabout']))
170 $rr['about'] = $rr['pabout'];
172 if (($rr['location'] == "") AND isset($rr['plocation']))
173 $rr['location'] = $rr['plocation'];
175 if (($rr['gender'] == "") AND isset($rr['pgender']))
176 $rr['gender'] = $rr['pgender'];
178 if (($rr['keywords'] == "") AND isset($rr['pub_keywords']))
179 $rr['keywords'] = $rr['pub_keywords'];
182 if($fields_ret['id'])
183 $entry['id'] = $rr['id'];
184 if($fields_ret['displayName'])
185 $entry['displayName'] = $rr['name'];
186 if($fields_ret['aboutMe'])
187 $entry['aboutMe'] = bbcode($rr['about'], false, false);
188 if($fields_ret['currentLocation'])
189 $entry['currentLocation'] = $rr['location'];
190 if($fields_ret['gender'])
191 $entry['gender'] = $rr['gender'];
192 if($fields_ret['urls']) {
193 $entry['urls'] = array(array('value' => $rr['url'], 'type' => 'profile'));
194 if($rr['addr'] && ($rr['network'] !== NETWORK_MAIL))
195 $entry['urls'][] = array('value' => 'acct:' . $rr['addr'], 'type' => 'webfinger');
197 if($fields_ret['preferredUsername'])
198 $entry['preferredUsername'] = $rr['nick'];
199 if($fields_ret['updated']) {
201 $entry['updated'] = $rr['success_update'];
203 if ($rr['name-date'] > $entry['updated'])
204 $entry['updated'] = $rr['name-date'];
206 if ($rr['uri-date'] > $entry['updated'])
207 $entry['updated'] = $rr['uri-date'];
209 if ($rr['avatar-date'] > $entry['updated'])
210 $entry['updated'] = $rr['avatar-date'];
212 $entry['updated'] = $rr['updated'];
214 $entry['updated'] = date("c", strtotime($entry['updated']));
216 if($fields_ret['photos'])
217 $entry['photos'] = array(array('value' => $rr['photo'], 'type' => 'profile'));
218 if($fields_ret['network']) {
219 $entry['network'] = $rr['network'];
220 if ($entry['network'] == NETWORK_STATUSNET)
221 $entry['network'] = NETWORK_OSTATUS;
222 if (($entry['network'] == "") AND ($rr['self']))
223 $entry['network'] = NETWORK_DFRN;
225 if($fields_ret['tags']) {
226 $tags = str_replace(","," ",$rr['keywords']);
227 $tags = explode(" ", $tags);
230 foreach ($tags as $tag) {
231 $tag = trim(strtolower($tag));
236 $entry['tags'] = array($cleaned);
239 $ret['entry'][] = $entry;
243 $ret['entry'][] = array();
246 http_status_exit(500);
248 if($format === 'xml') {
249 header('Content-type: text/xml');
250 echo replace_macros(get_markup_template('poco_xml.tpl'),array_xmlify(array('$response' => $ret)));
253 if($format === 'json') {
254 header('Content-type: application/json');
255 echo json_encode($ret);
259 http_status_exit(500);