Set the picture accesibility separate from the permissions

This commit is contained in:
Michael 2020-03-11 21:36:29 +00:00
parent 737b04d7e2
commit 88522fc832
1 changed files with 6 additions and 4 deletions

View File

@ -655,6 +655,12 @@ class Photo
continue;
}
if (DI::pConfig()->get($uid, 'system', 'accessible-photos')) {
$condition = ['resource-id' => $image_rid, 'uid' => $uid];
Logger::info('Set accessibility', ['condition' => $condition]);
Photo::update(['accessible' => true], $condition);
}
// Ensure to only modify photos that you own
$srch = '<' . intval($original_contact_id) . '>';
@ -677,10 +683,6 @@ class Photo
$fields = ['allow_cid' => $str_contact_allow, 'allow_gid' => $str_group_allow,
'deny_cid' => $str_contact_deny, 'deny_gid' => $str_group_deny];
if (DI::pConfig()->get($uid, 'system', 'accessible-photos')) {
$fields['accessible'] = true;
}
$condition = ['resource-id' => $image_rid, 'uid' => $uid];
Logger::info('Set permissions', ['condition' => $condition, 'permissions' => $fields]);
Photo::update($fields, $condition);