further baby steps on the photos API

This commit is contained in:
friendica
2013-01-25 23:32:44 -08:00
parent 93af193218
commit 70aa8421b3
3 changed files with 35 additions and 12 deletions

View File

@@ -223,4 +223,28 @@ function photo_upload($channel, $observer, $args) {
call_hooks('photo_post_end',$ret);
return $ret;
}
}
function photos_albums_list($channel,$observer) {
$channel_id = $channel['channel_id'];
$observer_xchan = (($observer) ? $observer['xchan_hash'] : '');
if(! perm_is_allowed($channel_id,$observer_xchan,'view_photos'))
return false;
// FIXME - create a permissions SQL which works on arbitrary observers and channels, regardless of login or web status
$sql_extra = permissions_sql($channel_id);
$albums = q("SELECT distinct album from photo where uid = %d $sql_extra order by created desc",
intval($channel_id)
);
return $albums;
}

View File

@@ -166,6 +166,8 @@ function change_channel($change_channel) {
}
function permissions_sql($owner_id,$remote_verified = false,$groups = null) {
$local_user = local_user();