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