correct tab indents and CRLF
This commit is contained in:
parent
528a492282
commit
01ff105a43
1 changed files with 4041 additions and 4041 deletions
|
@ -3932,26 +3932,26 @@
|
||||||
api_register_func('api/friendica/direct_messages_search', 'api_friendica_direct_messages_search', true);
|
api_register_func('api/friendica/direct_messages_search', 'api_friendica_direct_messages_search', true);
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @brief return data of all the profiles a user has to the client
|
* @brief return data of all the profiles a user has to the client
|
||||||
*
|
*
|
||||||
* @param string $profile_id optional parameter to provide the id of the profile to be returned
|
* @param string $profile_id optional parameter to provide the id of the profile to be returned
|
||||||
* @param string $type Known types are 'atom', 'rss', 'xml' and 'json'
|
* @param string $type Known types are 'atom', 'rss', 'xml' and 'json'
|
||||||
* @return string
|
* @return string
|
||||||
*/
|
*/
|
||||||
function api_friendica_profile_show($type){
|
function api_friendica_profile_show($type){
|
||||||
$a = get_app();
|
$a = get_app();
|
||||||
|
|
||||||
if (api_user()===false) throw new ForbiddenException();
|
if (api_user()===false) throw new ForbiddenException();
|
||||||
|
|
||||||
// input params
|
// input params
|
||||||
$profileid = (x($_REQUEST,'profile_id') ? $_REQUEST['profile_id'] : 0);
|
$profileid = (x($_REQUEST,'profile_id') ? $_REQUEST['profile_id'] : 0);
|
||||||
|
|
||||||
// retrieve general information about profiles for user
|
// retrieve general information about profiles for user
|
||||||
$multi_profiles = feature_enabled(api_user(),'multi_profiles');
|
$multi_profiles = feature_enabled(api_user(),'multi_profiles');
|
||||||
$directory = get_config('system', 'directory');
|
$directory = get_config('system', 'directory');
|
||||||
|
|
||||||
// get data of the specified profile id or all profiles of the user if not specified
|
// get data of the specified profile id or all profiles of the user if not specified
|
||||||
if ($profileid != 0) {
|
if ($profileid != 0) {
|
||||||
$r = q("SELECT * FROM `profile` WHERE `uid` = %d AND `id` = %d",
|
$r = q("SELECT * FROM `profile` WHERE `uid` = %d AND `id` = %d",
|
||||||
intval(api_user()),
|
intval(api_user()),
|
||||||
|
@ -3964,51 +3964,51 @@
|
||||||
$r = q("SELECT * FROM `profile` WHERE `uid` = %d",
|
$r = q("SELECT * FROM `profile` WHERE `uid` = %d",
|
||||||
intval(api_user()));
|
intval(api_user()));
|
||||||
|
|
||||||
// loop through all returned profiles and retrieve data and users
|
// loop through all returned profiles and retrieve data and users
|
||||||
$k = 0;
|
$k = 0;
|
||||||
foreach ($r as $rr) {
|
foreach ($r as $rr) {
|
||||||
$profile = api_format_items_profiles($rr, $type);
|
$profile = api_format_items_profiles($rr, $type);
|
||||||
|
|
||||||
// select all users from contact table, loop and prepare standard return for user data
|
// select all users from contact table, loop and prepare standard return for user data
|
||||||
$users = array();
|
$users = array();
|
||||||
$r = q("SELECT `id`, `nurl` FROM `contact` WHERE `uid`= %d AND `profile-id` = %d",
|
$r = q("SELECT `id`, `nurl` FROM `contact` WHERE `uid`= %d AND `profile-id` = %d",
|
||||||
intval(api_user()),
|
intval(api_user()),
|
||||||
intval($rr['profile_id']));
|
intval($rr['profile_id']));
|
||||||
|
|
||||||
foreach ($r as $rr) {
|
foreach ($r as $rr) {
|
||||||
$user = api_get_user($a, $rr['nurl']);
|
$user = api_get_user($a, $rr['nurl']);
|
||||||
($type == "xml") ? $users[$k++.":user"] = $user : $users[] = $user;
|
($type == "xml") ? $users[$k++.":user"] = $user : $users[] = $user;
|
||||||
}
|
}
|
||||||
$profile['users'] = $users;
|
$profile['users'] = $users;
|
||||||
|
|
||||||
// add prepared profile data to array for final return
|
// add prepared profile data to array for final return
|
||||||
if ($type == "xml") {
|
if ($type == "xml") {
|
||||||
$profiles[$k++.":profile"] = $profile;
|
$profiles[$k++.":profile"] = $profile;
|
||||||
} else {
|
} else {
|
||||||
$profiles[] = $profile;
|
$profiles[] = $profile;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// return settings, authenticated user and profiles data
|
// return settings, authenticated user and profiles data
|
||||||
$result = array('multi_profiles' => $multi_profiles ? true : false,
|
$result = array('multi_profiles' => $multi_profiles ? true : false,
|
||||||
'global_dir' => $directory,
|
'global_dir' => $directory,
|
||||||
'friendica_owner' => api_get_user($a, intval(api_user())),
|
'friendica_owner' => api_get_user($a, intval(api_user())),
|
||||||
'profiles' => $profiles);
|
'profiles' => $profiles);
|
||||||
return api_format_data("friendica_profiles", $type, array('$result' => $result));
|
return api_format_data("friendica_profiles", $type, array('$result' => $result));
|
||||||
}
|
}
|
||||||
api_register_func('api/friendica/profile/show', 'api_friendica_profile_show', true, API_METHOD_GET);
|
api_register_func('api/friendica/profile/show', 'api_friendica_profile_show', true, API_METHOD_GET);
|
||||||
|
|
||||||
/*
|
/*
|
||||||
To.Do:
|
To.Do:
|
||||||
[pagename] => api/1.1/statuses/lookup.json
|
[pagename] => api/1.1/statuses/lookup.json
|
||||||
[id] => 605138389168451584
|
[id] => 605138389168451584
|
||||||
[include_cards] => true
|
[include_cards] => true
|
||||||
[cards_platform] => Android-12
|
[cards_platform] => Android-12
|
||||||
[include_entities] => true
|
[include_entities] => true
|
||||||
[include_my_retweet] => 1
|
[include_my_retweet] => 1
|
||||||
[include_rts] => 1
|
[include_rts] => 1
|
||||||
[include_reply_count] => true
|
[include_reply_count] => true
|
||||||
[include_descendent_reply_count] => true
|
[include_descendent_reply_count] => true
|
||||||
(?)
|
(?)
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue