2014-08-10 06:45:34 -04:00
|
|
|
<?php
|
|
|
|
|
2017-04-30 00:07:00 -04:00
|
|
|
use Friendica\App;
|
|
|
|
|
2017-01-09 07:14:25 -05:00
|
|
|
function noscrape_init(App $a) {
|
2015-01-27 13:52:54 -05:00
|
|
|
|
2017-03-21 12:02:59 -04:00
|
|
|
if($a->argc > 1)
|
2014-08-10 06:45:34 -04:00
|
|
|
$which = $a->argv[1];
|
2017-03-21 12:02:59 -04:00
|
|
|
else
|
2014-08-10 06:45:34 -04:00
|
|
|
killme();
|
2015-01-27 13:52:54 -05:00
|
|
|
|
2014-08-10 06:45:34 -04:00
|
|
|
$profile = 0;
|
2017-03-21 12:02:59 -04:00
|
|
|
if((local_user()) && ($a->argc > 2) && ($a->argv[2] === 'view')) {
|
2014-08-10 06:45:34 -04:00
|
|
|
$which = $a->user['nickname'];
|
|
|
|
$profile = $a->argv[1];
|
|
|
|
}
|
2015-01-27 13:52:54 -05:00
|
|
|
|
2014-08-10 06:45:34 -04:00
|
|
|
profile_load($a,$which,$profile);
|
2015-01-27 13:52:54 -05:00
|
|
|
|
2016-05-05 06:02:51 -04:00
|
|
|
if (!$a->profile['net-publish'] OR $a->profile['hidewall']) {
|
2016-05-04 17:50:31 -04:00
|
|
|
header('Content-type: application/json; charset=utf-8');
|
|
|
|
$json_info = array("hide" => true);
|
|
|
|
echo json_encode($json_info);
|
2016-05-05 06:02:51 -04:00
|
|
|
exit;
|
2016-05-04 17:50:31 -04:00
|
|
|
}
|
2015-01-27 13:52:54 -05:00
|
|
|
|
2014-08-10 06:45:34 -04:00
|
|
|
$keywords = ((x($a->profile,'pub_keywords')) ? $a->profile['pub_keywords'] : '');
|
|
|
|
$keywords = str_replace(array('#',',',' ',',,'),array('',' ',',',','),$keywords);
|
|
|
|
$keywords = explode(',', $keywords);
|
2015-01-27 13:52:54 -05:00
|
|
|
|
2016-02-13 06:26:58 -05:00
|
|
|
$r = q("SELECT `photo` FROM `contact` WHERE `self` AND `uid` = %d",
|
|
|
|
intval($a->profile['uid']));
|
|
|
|
|
2014-08-10 06:45:34 -04:00
|
|
|
$json_info = array(
|
2016-12-20 15:15:53 -05:00
|
|
|
'fn' => $a->profile['name'],
|
|
|
|
'addr' => $a->profile['addr'],
|
|
|
|
'nick' => $which,
|
|
|
|
'key' => $a->profile['pubkey'],
|
2016-12-19 08:26:13 -05:00
|
|
|
'homepage' => App::get_baseurl()."/profile/{$which}",
|
2016-12-20 15:15:53 -05:00
|
|
|
'comm' => (x($a->profile,'page-flags')) && ($a->profile['page-flags'] == PAGE_COMMUNITY),
|
|
|
|
'photo' => $r[0]["photo"],
|
|
|
|
'tags' => $keywords
|
2014-08-10 06:45:34 -04:00
|
|
|
);
|
2015-01-27 13:52:54 -05:00
|
|
|
|
2016-12-20 15:15:53 -05:00
|
|
|
if (is_array($a->profile) AND !$a->profile['hide-friends']) {
|
2015-02-18 17:40:46 -05:00
|
|
|
$r = q("SELECT `gcontact`.`updated` FROM `contact` INNER JOIN `gcontact` WHERE `gcontact`.`nurl` = `contact`.`nurl` AND `self` AND `uid` = %d LIMIT 1",
|
|
|
|
intval($a->profile['uid']));
|
2016-12-20 15:15:53 -05:00
|
|
|
if (dbm::is_result($r)) {
|
2015-02-18 17:40:46 -05:00
|
|
|
$json_info["updated"] = date("c", strtotime($r[0]['updated']));
|
2016-12-20 15:15:53 -05:00
|
|
|
}
|
2015-02-18 17:40:46 -05:00
|
|
|
|
2015-02-08 17:35:29 -05:00
|
|
|
$r = q("SELECT COUNT(*) AS `total` FROM `contact` WHERE `uid` = %d AND `self` = 0 AND `blocked` = 0 and `pending` = 0 AND `hidden` = 0 AND `archive` = 0
|
2015-02-17 13:27:13 -05:00
|
|
|
AND `network` IN ('%s', '%s', '%s', '')",
|
2015-02-08 17:35:29 -05:00
|
|
|
intval($a->profile['uid']),
|
|
|
|
dbesc(NETWORK_DFRN),
|
|
|
|
dbesc(NETWORK_DIASPORA),
|
2015-02-17 13:27:13 -05:00
|
|
|
dbesc(NETWORK_OSTATUS)
|
2015-02-08 17:35:29 -05:00
|
|
|
);
|
2016-12-20 15:15:53 -05:00
|
|
|
if (dbm::is_result($r)) {
|
2015-02-08 17:35:29 -05:00
|
|
|
$json_info["contacts"] = intval($r[0]['total']);
|
2016-12-20 15:15:53 -05:00
|
|
|
}
|
2015-02-08 17:35:29 -05:00
|
|
|
}
|
|
|
|
|
2014-08-10 06:45:34 -04:00
|
|
|
//These are optional fields.
|
2015-01-27 13:52:54 -05:00
|
|
|
$profile_fields = array('pdesc', 'locality', 'region', 'postal-code', 'country-name', 'gender', 'marital', 'about');
|
2016-12-20 15:15:53 -05:00
|
|
|
foreach ($profile_fields as $field) {
|
|
|
|
if (!empty($a->profile[$field])) {
|
2016-12-20 04:39:06 -05:00
|
|
|
$json_info["$field"] = $a->profile[$field];
|
|
|
|
}
|
|
|
|
}
|
2015-01-27 13:52:54 -05:00
|
|
|
|
2014-08-10 06:45:34 -04:00
|
|
|
$dfrn_pages = array('request', 'confirm', 'notify', 'poll');
|
2016-12-20 15:15:53 -05:00
|
|
|
foreach ($dfrn_pages as $dfrn) {
|
2016-12-19 08:26:13 -05:00
|
|
|
$json_info["dfrn-{$dfrn}"] = App::get_baseurl()."/dfrn_{$dfrn}/{$which}";
|
2016-12-20 04:39:06 -05:00
|
|
|
}
|
2015-01-27 13:52:54 -05:00
|
|
|
|
2014-08-10 06:45:34 -04:00
|
|
|
//Output all the JSON!
|
|
|
|
header('Content-type: application/json; charset=utf-8');
|
|
|
|
echo json_encode($json_info);
|
|
|
|
exit;
|
2016-02-07 09:11:34 -05:00
|
|
|
|
2014-09-11 17:38:24 -04:00
|
|
|
}
|