2011-10-27 03:09:03 +00:00
< ? php
2017-05-09 01:55:04 +00:00
2016-10-04 03:48:01 +00:00
// See here for a documentation for portable contacts:
// https://web.archive.org/web/20160405005550/http://portablecontacts.net/draft-spec.html
2011-10-27 03:09:03 +00:00
2018-01-27 02:38:34 +00:00
2017-04-30 04:07:00 +00:00
use Friendica\App ;
2017-11-09 16:05:18 +00:00
use Friendica\Core\Cache ;
2017-05-09 03:03:52 +00:00
use Friendica\Core\Config ;
2018-01-27 16:59:10 +00:00
use Friendica\Core\System ;
2017-11-08 03:57:46 +00:00
use Friendica\Database\DBM ;
2017-11-15 15:53:16 +00:00
use Friendica\Protocol\PortableContact ;
2018-01-27 02:38:34 +00:00
use Friendica\Util\DateTimeFormat ;
2017-04-30 04:07:00 +00:00
2017-01-09 12:14:25 +00:00
function poco_init ( App $a ) {
2011-11-28 23:11:59 +00:00
$system_mode = false ;
2017-05-09 03:03:52 +00:00
if ( intval ( Config :: get ( 'system' , 'block_public' )) || ( Config :: get ( 'system' , 'block_local_dir' ))) {
2018-01-27 16:59:10 +00:00
System :: httpExit ( 401 );
2017-03-13 16:18:45 +00:00
}
2011-11-28 23:11:59 +00:00
2017-03-13 16:18:45 +00:00
if ( $a -> argc > 1 ) {
2011-10-27 03:09:03 +00:00
$user = notags ( trim ( $a -> argv [ 1 ]));
}
2017-03-13 16:18:45 +00:00
if ( ! x ( $user )) {
2015-01-05 21:44:55 +00:00
$c = q ( " SELECT * FROM `pconfig` WHERE `cat` = 'system' AND `k` = 'suggestme' AND `v` = 1 " );
2017-11-08 03:57:46 +00:00
if ( ! DBM :: is_result ( $c )) {
2018-01-27 16:59:10 +00:00
System :: httpExit ( 401 );
2016-12-20 14:37:27 +00:00
}
2011-11-28 23:11:59 +00:00
$system_mode = true ;
}
2011-10-27 07:57:19 +00:00
$format = (( $_GET [ 'format' ]) ? $_GET [ 'format' ] : 'json' );
2011-10-27 03:09:03 +00:00
$justme = false ;
2015-01-27 07:01:37 +00:00
$global = false ;
2011-10-27 03:09:03 +00:00
2017-03-13 14:57:11 +00:00
if ( $a -> argc > 1 && $a -> argv [ 1 ] === '@server' ) {
// List of all servers that this server knows
2017-11-15 15:53:16 +00:00
$ret = PortableContact :: serverlist ();
2017-03-04 11:04:00 +00:00
header ( 'Content-type: application/json' );
echo json_encode ( $ret );
killme ();
}
2017-03-13 14:57:11 +00:00
if ( $a -> argc > 1 && $a -> argv [ 1 ] === '@global' ) {
// List of all profiles that this server recently had data from
2015-01-27 07:01:37 +00:00
$global = true ;
2018-01-27 02:38:34 +00:00
$update_limit = date ( DateTimeFormat :: MYSQL , time () - 30 * 86400 );
2015-01-27 07:01:37 +00:00
}
2017-03-13 14:57:11 +00:00
if ( $a -> argc > 2 && $a -> argv [ 2 ] === '@me' ) {
2011-10-27 03:09:03 +00:00
$justme = true ;
2017-03-13 14:57:11 +00:00
}
if ( $a -> argc > 3 && $a -> argv [ 3 ] === '@all' ) {
2011-10-27 03:09:03 +00:00
$justme = false ;
2017-03-13 14:57:11 +00:00
}
if ( $a -> argc > 3 && $a -> argv [ 3 ] === '@self' ) {
2011-10-27 03:09:03 +00:00
$justme = true ;
2017-03-13 14:57:11 +00:00
}
2017-03-13 16:18:45 +00:00
if ( $a -> argc > 4 && intval ( $a -> argv [ 4 ]) && $justme == false ) {
2011-10-27 03:09:03 +00:00
$cid = intval ( $a -> argv [ 4 ]);
2017-03-13 14:57:11 +00:00
}
2011-10-27 03:09:03 +00:00
2017-06-08 02:00:59 +00:00
if ( ! $system_mode && ! $global ) {
2017-05-09 03:03:52 +00:00
$users = q ( " SELECT `user`.*,`profile`.`hide-friends` from user left join profile on `user`.`uid` = `profile`.`uid`
2011-11-28 23:11:59 +00:00
where `user` . `nickname` = '%s' and `profile` . `is-default` = 1 limit 1 " ,
dbesc ( $user )
);
2017-11-08 03:57:46 +00:00
if ( ! DBM :: is_result ( $users ) || $users [ 0 ][ 'hidewall' ] || $users [ 0 ][ 'hide-friends' ]) {
2018-01-27 16:59:10 +00:00
System :: httpExit ( 404 );
2017-03-13 16:18:45 +00:00
}
2011-10-27 03:09:03 +00:00
2017-05-09 03:03:52 +00:00
$user = $users [ 0 ];
2011-11-28 23:11:59 +00:00
}
2011-10-27 03:09:03 +00:00
2017-03-13 16:18:45 +00:00
if ( $justme ) {
2015-01-05 21:44:55 +00:00
$sql_extra = " AND `contact`.`self` = 1 " ;
2017-03-13 16:18:45 +00:00
}
2015-01-25 15:40:20 +00:00
// else
// $sql_extra = " AND `contact`.`self` = 0 ";
2011-10-27 03:09:03 +00:00
2017-03-13 16:18:45 +00:00
if ( $cid ) {
2017-05-09 01:55:04 +00:00
$sql_extra = sprintf ( " AND `contact`.`id` = %d " , intval ( $cid ));
2017-03-13 16:18:45 +00:00
}
2017-05-09 01:55:04 +00:00
if ( x ( $_GET , 'updatedSince' )) {
2018-01-27 02:38:34 +00:00
$update_limit = date ( DateTimeFormat :: MYSQL , strtotime ( $_GET [ 'updatedSince' ]));
2017-03-13 16:18:45 +00:00
}
2015-01-27 07:01:37 +00:00
if ( $global ) {
2017-05-09 01:55:04 +00:00
$contacts = q ( " SELECT count(*) AS `total` FROM `gcontact` WHERE `updated` >= '%s' AND `updated` >= `last_failure` AND NOT `hide` AND `network` IN ('%s', '%s', '%s') " ,
2015-01-27 07:01:37 +00:00
dbesc ( $update_limit ),
2015-07-24 05:23:57 +00:00
dbesc ( NETWORK_DFRN ),
dbesc ( NETWORK_DIASPORA ),
dbesc ( NETWORK_OSTATUS )
2015-01-27 07:01:37 +00:00
);
2017-03-13 16:18:45 +00:00
} elseif ( $system_mode ) {
2017-05-09 01:55:04 +00:00
$contacts = q ( " SELECT count(*) AS `total` FROM `contact` WHERE `self` = 1
2015-10-31 09:32:01 +00:00
AND `uid` IN ( SELECT `uid` FROM `pconfig` WHERE `cat` = 'system' AND `k` = 'suggestme' AND `v` = 1 ) " );
2015-01-27 07:01:37 +00:00
} else {
2017-05-09 01:55:04 +00:00
$contacts = q ( " SELECT count(*) AS `total` FROM `contact` WHERE `uid` = %d AND `blocked` = 0 AND `pending` = 0 AND `hidden` = 0 AND `archive` = 0
2015-07-25 08:50:00 +00:00
AND ( `success_update` >= `failure_update` OR `last-item` >= `failure_update` )
AND `network` IN ( '%s' , '%s' , '%s' , '%s' ) $sql_extra " ,
2015-01-05 21:44:55 +00:00
intval ( $user [ 'uid' ]),
dbesc ( NETWORK_DFRN ),
dbesc ( NETWORK_DIASPORA ),
2015-01-08 06:59:20 +00:00
dbesc ( NETWORK_OSTATUS ),
dbesc ( NETWORK_STATUSNET )
2011-11-28 23:11:59 +00:00
);
}
2017-11-08 03:57:46 +00:00
if ( DBM :: is_result ( $contacts )) {
2017-05-09 01:55:04 +00:00
$totalResults = intval ( $contacts [ 0 ][ 'total' ]);
2017-03-13 16:18:45 +00:00
} else {
2011-10-27 03:09:03 +00:00
$totalResults = 0 ;
2017-03-13 16:18:45 +00:00
}
2011-10-27 03:09:03 +00:00
$startIndex = intval ( $_GET [ 'startIndex' ]);
2017-03-13 16:18:45 +00:00
if ( ! $startIndex ) {
2011-10-27 03:09:03 +00:00
$startIndex = 0 ;
2017-03-13 16:18:45 +00:00
}
2017-05-09 01:55:04 +00:00
$itemsPerPage = (( x ( $_GET , 'count' ) && intval ( $_GET [ 'count' ])) ? intval ( $_GET [ 'count' ]) : $totalResults );
2011-10-27 03:09:03 +00:00
2015-01-27 07:01:37 +00:00
if ( $global ) {
2015-07-25 10:05:27 +00:00
logger ( " Start global query " , LOGGER_DEBUG );
2017-05-09 01:55:04 +00:00
$contacts = q ( " SELECT * FROM `gcontact` WHERE `updated` > '%s' AND NOT `hide` AND `network` IN ('%s', '%s', '%s') AND `updated` > `last_failure`
2015-07-25 10:05:27 +00:00
ORDER BY `updated` DESC LIMIT % d , % d " ,
2015-01-27 07:01:37 +00:00
dbesc ( $update_limit ),
dbesc ( NETWORK_DFRN ),
2015-07-24 05:23:57 +00:00
dbesc ( NETWORK_DIASPORA ),
dbesc ( NETWORK_OSTATUS ),
2015-01-27 07:01:37 +00:00
intval ( $startIndex ),
intval ( $itemsPerPage )
);
2017-03-13 16:18:45 +00:00
} elseif ( $system_mode ) {
2015-07-25 10:05:27 +00:00
logger ( " Start system mode query " , LOGGER_DEBUG );
2017-05-09 01:55:04 +00:00
$contacts = q ( " SELECT `contact`.*, `profile`.`about` AS `pabout`, `profile`.`locality` AS `plocation`, `profile`.`pub_keywords`,
2016-10-04 03:48:01 +00:00
`profile` . `gender` AS `pgender` , `profile` . `address` AS `paddress` , `profile` . `region` AS `pregion` ,
`profile` . `postal-code` AS `ppostalcode` , `profile` . `country-name` AS `pcountry` , `user` . `account-type`
2015-01-25 12:19:37 +00:00
FROM `contact` INNER JOIN `profile` ON `profile` . `uid` = `contact` . `uid`
2016-10-04 03:48:01 +00:00
INNER JOIN `user` ON `user` . `uid` = `contact` . `uid`
2015-10-31 09:32:01 +00:00
WHERE `self` = 1 AND `profile` . `is-default`
2015-01-24 23:19:59 +00:00
AND `contact` . `uid` IN ( SELECT `uid` FROM `pconfig` WHERE `cat` = 'system' AND `k` = 'suggestme' AND `v` = 1 ) LIMIT % d , % d " ,
2011-11-28 23:11:59 +00:00
intval ( $startIndex ),
intval ( $itemsPerPage )
);
2015-01-27 07:01:37 +00:00
} else {
2017-05-09 01:55:04 +00:00
logger ( " Start query for user " . $user [ 'nickname' ], LOGGER_DEBUG );
$contacts = q ( " SELECT * FROM `contact` WHERE `uid` = %d AND `blocked` = 0 AND `pending` = 0 AND `hidden` = 0 AND `archive` = 0
2015-07-25 08:50:00 +00:00
AND ( `success_update` >= `failure_update` OR `last-item` >= `failure_update` )
AND `network` IN ( '%s' , '%s' , '%s' , '%s' ) $sql_extra LIMIT % d , % d " ,
2011-11-28 23:11:59 +00:00
intval ( $user [ 'uid' ]),
2015-01-05 21:44:55 +00:00
dbesc ( NETWORK_DFRN ),
dbesc ( NETWORK_DIASPORA ),
dbesc ( NETWORK_OSTATUS ),
2015-01-08 06:59:20 +00:00
dbesc ( NETWORK_STATUSNET ),
2011-11-28 23:11:59 +00:00
intval ( $startIndex ),
intval ( $itemsPerPage )
);
}
2015-07-25 10:05:27 +00:00
logger ( " Query done " , LOGGER_DEBUG );
2015-01-27 07:01:37 +00:00
2018-01-15 13:05:12 +00:00
$ret = [];
2017-05-09 01:55:04 +00:00
if ( x ( $_GET , 'sorted' )) {
2015-01-27 07:01:37 +00:00
$ret [ 'sorted' ] = false ;
2017-03-13 16:18:45 +00:00
}
2017-05-09 01:55:04 +00:00
if ( x ( $_GET , 'filtered' )) {
2015-01-27 07:01:37 +00:00
$ret [ 'filtered' ] = false ;
2017-03-13 16:18:45 +00:00
}
2017-06-08 02:00:59 +00:00
if ( x ( $_GET , 'updatedSince' ) && ! $global ) {
2015-01-27 07:01:37 +00:00
$ret [ 'updatedSince' ] = false ;
2017-03-13 16:18:45 +00:00
}
2015-02-15 09:52:45 +00:00
$ret [ 'startIndex' ] = ( int ) $startIndex ;
$ret [ 'itemsPerPage' ] = ( int ) $itemsPerPage ;
$ret [ 'totalResults' ] = ( int ) $totalResults ;
2018-01-15 13:05:12 +00:00
$ret [ 'entry' ] = [];
2011-10-27 07:57:19 +00:00
2017-03-21 16:02:59 +00:00
2018-01-15 13:05:12 +00:00
$fields_ret = [
2017-03-21 16:02:59 +00:00
'id' => false ,
'displayName' => false ,
'urls' => false ,
'updated' => false ,
2011-10-27 11:38:33 +00:00
'preferredUsername' => false ,
2017-03-21 16:02:59 +00:00
'photos' => false ,
'aboutMe' => false ,
'currentLocation' => false ,
'network' => false ,
'gender' => false ,
'tags' => false ,
'address' => false ,
'contactType' => false ,
'generation' => false
2018-01-15 13:05:12 +00:00
];
2011-10-27 03:09:03 +00:00
2017-05-09 01:55:04 +00:00
if (( ! x ( $_GET , 'fields' )) || ( $_GET [ 'fields' ] === '@all' )) {
2017-03-13 16:18:45 +00:00
foreach ( $fields_ret as $k => $v ) {
2011-10-27 08:54:52 +00:00
$fields_ret [ $k ] = true ;
2017-03-13 16:18:45 +00:00
}
} else {
2017-05-09 01:55:04 +00:00
$fields_req = explode ( ',' , $_GET [ 'fields' ]);
2017-03-13 16:18:45 +00:00
foreach ( $fields_req as $f ) {
2011-10-27 07:57:19 +00:00
$fields_ret [ trim ( $f )] = true ;
2017-03-13 16:18:45 +00:00
}
2011-10-27 07:57:19 +00:00
}
2017-05-09 01:55:04 +00:00
if ( is_array ( $contacts )) {
2017-11-08 03:57:46 +00:00
if ( DBM :: is_result ( $contacts )) {
2017-05-09 01:55:04 +00:00
foreach ( $contacts as $contact ) {
if ( ! isset ( $contact [ 'generation' ])) {
2017-03-13 16:18:45 +00:00
if ( $global ) {
2017-05-09 01:55:04 +00:00
$contact [ 'generation' ] = 3 ;
2017-03-13 16:18:45 +00:00
} elseif ( $system_mode ) {
2017-05-09 01:55:04 +00:00
$contact [ 'generation' ] = 1 ;
2017-03-13 16:18:45 +00:00
} else {
2017-05-09 01:55:04 +00:00
$contact [ 'generation' ] = 2 ;
2017-03-13 16:18:45 +00:00
}
2015-02-15 09:52:45 +00:00
}
2017-06-08 02:00:59 +00:00
if (( $contact [ 'about' ] == " " ) && isset ( $contact [ 'pabout' ])) {
2017-05-09 01:55:04 +00:00
$contact [ 'about' ] = $contact [ 'pabout' ];
2017-03-13 16:18:45 +00:00
}
2017-05-09 01:55:04 +00:00
if ( $contact [ 'location' ] == " " ) {
if ( isset ( $contact [ 'plocation' ])) {
$contact [ 'location' ] = $contact [ 'plocation' ];
2017-03-13 16:18:45 +00:00
}
2017-06-08 02:00:59 +00:00
if ( isset ( $contact [ 'pregion' ]) && ( $contact [ 'pregion' ] != " " )) {
2017-05-09 01:55:04 +00:00
if ( $contact [ 'location' ] != " " ) {
$contact [ 'location' ] .= " , " ;
2017-03-13 16:18:45 +00:00
}
2017-05-09 01:55:04 +00:00
$contact [ 'location' ] .= $contact [ 'pregion' ];
2015-02-04 09:43:30 +00:00
}
2017-06-08 02:00:59 +00:00
if ( isset ( $contact [ 'pcountry' ]) && ( $contact [ 'pcountry' ] != " " )) {
2017-05-09 01:55:04 +00:00
if ( $contact [ 'location' ] != " " ) {
$contact [ 'location' ] .= " , " ;
2017-03-13 16:18:45 +00:00
}
2017-05-09 01:55:04 +00:00
$contact [ 'location' ] .= $contact [ 'pcountry' ];
2015-02-04 09:43:30 +00:00
}
}
2015-01-24 23:19:59 +00:00
2017-06-08 02:00:59 +00:00
if (( $contact [ 'gender' ] == " " ) && isset ( $contact [ 'pgender' ])) {
2017-05-09 01:55:04 +00:00
$contact [ 'gender' ] = $contact [ 'pgender' ];
2017-03-13 16:18:45 +00:00
}
2017-06-08 02:00:59 +00:00
if (( $contact [ 'keywords' ] == " " ) && isset ( $contact [ 'pub_keywords' ])) {
2017-05-09 01:55:04 +00:00
$contact [ 'keywords' ] = $contact [ 'pub_keywords' ];
2017-03-13 16:18:45 +00:00
}
2017-05-09 01:55:04 +00:00
if ( isset ( $contact [ 'account-type' ])) {
$contact [ 'contact-type' ] = $contact [ 'account-type' ];
2017-03-13 16:18:45 +00:00
}
2017-05-09 01:55:04 +00:00
$about = Cache :: get ( " about: " . $contact [ 'updated' ] . " : " . $contact [ 'nurl' ]);
2015-07-25 10:05:27 +00:00
if ( is_null ( $about )) {
2017-05-09 03:03:52 +00:00
require_once 'include/bbcode.php' ;
2017-05-09 01:55:04 +00:00
$about = bbcode ( $contact [ 'about' ], false , false );
Cache :: set ( " about: " . $contact [ 'updated' ] . " : " . $contact [ 'nurl' ], $about );
2015-07-25 10:05:27 +00:00
}
2015-10-06 04:56:31 +00:00
// Non connected persons can only see the keywords of a Diaspora account
2017-05-09 01:55:04 +00:00
if ( $contact [ 'network' ] == NETWORK_DIASPORA ) {
$contact [ 'location' ] = " " ;
2015-10-06 04:56:31 +00:00
$about = " " ;
2017-05-09 01:55:04 +00:00
$contact [ 'gender' ] = " " ;
2015-10-06 04:56:31 +00:00
}
2018-01-15 13:05:12 +00:00
$entry = [];
2017-03-13 16:18:45 +00:00
if ( $fields_ret [ 'id' ]) {
2017-05-09 01:55:04 +00:00
$entry [ 'id' ] = ( int ) $contact [ 'id' ];
2017-03-13 16:18:45 +00:00
}
if ( $fields_ret [ 'displayName' ]) {
2017-05-09 01:55:04 +00:00
$entry [ 'displayName' ] = $contact [ 'name' ];
2017-03-13 16:18:45 +00:00
}
if ( $fields_ret [ 'aboutMe' ]) {
2015-07-25 10:05:27 +00:00
$entry [ 'aboutMe' ] = $about ;
2017-03-13 16:18:45 +00:00
}
if ( $fields_ret [ 'currentLocation' ]) {
2017-05-09 01:55:04 +00:00
$entry [ 'currentLocation' ] = $contact [ 'location' ];
2017-03-13 16:18:45 +00:00
}
if ( $fields_ret [ 'gender' ]) {
2017-05-09 01:55:04 +00:00
$entry [ 'gender' ] = $contact [ 'gender' ];
2017-03-13 16:18:45 +00:00
}
if ( $fields_ret [ 'generation' ]) {
2017-05-09 01:55:04 +00:00
$entry [ 'generation' ] = ( int ) $contact [ 'generation' ];
2017-03-13 16:18:45 +00:00
}
if ( $fields_ret [ 'urls' ]) {
2018-01-15 13:05:12 +00:00
$entry [ 'urls' ] = [[ 'value' => $contact [ 'url' ], 'type' => 'profile' ]];
2017-05-09 01:55:04 +00:00
if ( $contact [ 'addr' ] && ( $contact [ 'network' ] !== NETWORK_MAIL )) {
2018-01-15 13:05:12 +00:00
$entry [ 'urls' ][] = [ 'value' => 'acct:' . $contact [ 'addr' ], 'type' => 'webfinger' ];
2017-03-13 16:18:45 +00:00
}
2011-12-18 08:22:44 +00:00
}
2017-03-13 16:18:45 +00:00
if ( $fields_ret [ 'preferredUsername' ]) {
2017-05-09 01:55:04 +00:00
$entry [ 'preferredUsername' ] = $contact [ 'nick' ];
2017-03-13 16:18:45 +00:00
}
if ( $fields_ret [ 'updated' ]) {
2017-05-09 01:55:04 +00:00
if ( ! $global ) {
$entry [ 'updated' ] = $contact [ 'success_update' ];
2015-01-04 18:19:47 +00:00
2017-05-09 01:55:04 +00:00
if ( $contact [ 'name-date' ] > $entry [ 'updated' ]) {
$entry [ 'updated' ] = $contact [ 'name-date' ];
2017-03-13 16:18:45 +00:00
}
2017-05-09 01:55:04 +00:00
if ( $contact [ 'uri-date' ] > $entry [ 'updated' ]) {
$entry [ 'updated' ] = $contact [ 'uri-date' ];
2017-03-13 16:18:45 +00:00
}
2017-05-09 01:55:04 +00:00
if ( $contact [ 'avatar-date' ] > $entry [ 'updated' ]) {
$entry [ 'updated' ] = $contact [ 'avatar-date' ];
2017-03-13 16:18:45 +00:00
}
} else {
2017-05-09 01:55:04 +00:00
$entry [ 'updated' ] = $contact [ 'updated' ];
2017-03-13 16:18:45 +00:00
}
2015-01-04 18:19:47 +00:00
$entry [ 'updated' ] = date ( " c " , strtotime ( $entry [ 'updated' ]));
}
2017-03-13 16:18:45 +00:00
if ( $fields_ret [ 'photos' ]) {
2018-01-15 13:05:12 +00:00
$entry [ 'photos' ] = [[ 'value' => $contact [ 'photo' ], 'type' => 'profile' ]];
2017-03-13 16:18:45 +00:00
}
if ( $fields_ret [ 'network' ]) {
2017-05-09 01:55:04 +00:00
$entry [ 'network' ] = $contact [ 'network' ];
2017-03-13 16:18:45 +00:00
if ( $entry [ 'network' ] == NETWORK_STATUSNET ) {
2015-01-08 06:59:20 +00:00
$entry [ 'network' ] = NETWORK_OSTATUS ;
2017-03-13 16:18:45 +00:00
}
2017-06-08 02:00:59 +00:00
if (( $entry [ 'network' ] == " " ) && ( $contact [ 'self' ])) {
2015-01-09 23:34:08 +00:00
$entry [ 'network' ] = NETWORK_DFRN ;
2017-03-13 16:18:45 +00:00
}
2015-01-08 06:59:20 +00:00
}
2017-03-13 16:18:45 +00:00
if ( $fields_ret [ 'tags' ]) {
2017-05-09 01:55:04 +00:00
$tags = str_replace ( " , " , " " , $contact [ 'keywords' ]);
2015-01-25 12:19:37 +00:00
$tags = explode ( " " , $tags );
2018-01-15 13:05:12 +00:00
$cleaned = [];
2015-01-25 12:19:37 +00:00
foreach ( $tags as $tag ) {
$tag = trim ( strtolower ( $tag ));
2017-03-13 16:18:45 +00:00
if ( $tag != " " ) {
2015-01-25 12:19:37 +00:00
$cleaned [] = $tag ;
2017-03-13 16:18:45 +00:00
}
2015-01-25 12:19:37 +00:00
}
2018-01-15 13:05:12 +00:00
$entry [ 'tags' ] = [ $cleaned ];
2015-01-25 12:19:37 +00:00
}
2017-03-13 16:18:45 +00:00
if ( $fields_ret [ 'address' ]) {
2018-01-15 13:05:12 +00:00
$entry [ 'address' ] = [];
2015-02-04 09:43:30 +00:00
// Deactivated. It just reveals too much data. (Although its from the default profile)
//if (isset($rr['paddress']))
// $entry['address']['streetAddress'] = $rr['paddress'];
2017-05-09 01:55:04 +00:00
if ( isset ( $contact [ 'plocation' ])) {
$entry [ 'address' ][ 'locality' ] = $contact [ 'plocation' ];
2017-03-13 16:18:45 +00:00
}
2017-05-09 01:55:04 +00:00
if ( isset ( $contact [ 'pregion' ])) {
$entry [ 'address' ][ 'region' ] = $contact [ 'pregion' ];
2017-03-13 16:18:45 +00:00
}
2015-02-04 09:43:30 +00:00
// See above
//if (isset($rr['ppostalcode']))
// $entry['address']['postalCode'] = $rr['ppostalcode'];
2017-05-09 01:55:04 +00:00
if ( isset ( $contact [ 'pcountry' ])) {
$entry [ 'address' ][ 'country' ] = $contact [ 'pcountry' ];
2017-03-13 16:18:45 +00:00
}
2015-02-04 09:43:30 +00:00
}
2015-01-25 12:19:37 +00:00
2017-03-13 16:18:45 +00:00
if ( $fields_ret [ 'contactType' ]) {
2017-05-09 01:55:04 +00:00
$entry [ 'contactType' ] = intval ( $contact [ 'contact-type' ]);
2017-03-13 16:18:45 +00:00
}
2011-10-27 07:57:19 +00:00
$ret [ 'entry' ][] = $entry ;
}
2017-03-13 16:18:45 +00:00
} else {
2018-01-15 13:05:12 +00:00
$ret [ 'entry' ][] = [];
2017-03-13 16:18:45 +00:00
}
} else {
2018-01-27 16:59:10 +00:00
System :: httpExit ( 500 );
2017-03-13 16:18:45 +00:00
}
2015-07-25 10:05:27 +00:00
logger ( " End of poco " , LOGGER_DEBUG );
2017-03-13 16:18:45 +00:00
if ( $format === 'xml' ) {
2011-10-27 07:57:19 +00:00
header ( 'Content-type: text/xml' );
2018-01-15 13:05:12 +00:00
echo replace_macros ( get_markup_template ( 'poco_xml.tpl' ), array_xmlify ([ '$response' => $ret ]));
2013-01-30 02:36:10 +00:00
killme ();
2011-10-27 07:57:19 +00:00
}
2017-03-13 16:18:45 +00:00
if ( $format === 'json' ) {
2011-10-27 07:57:19 +00:00
header ( 'Content-type: application/json' );
echo json_encode ( $ret );
2015-01-04 18:19:47 +00:00
killme ();
2017-03-13 16:18:45 +00:00
} else {
2018-01-27 16:59:10 +00:00
System :: httpExit ( 500 );
2017-03-13 16:18:45 +00:00
}
2012-12-22 19:57:29 +00:00
}