Merge branch 'dev' of https://framagit.org/hubzilla/core into dev
This commit is contained in:
commit
5d1539df75
@ -29,7 +29,7 @@ use \Zotlabs\Lib as Zlib;
|
|||||||
class Item extends \Zotlabs\Web\Controller {
|
class Item extends \Zotlabs\Web\Controller {
|
||||||
|
|
||||||
function post() {
|
function post() {
|
||||||
|
|
||||||
// This will change. Figure out who the observer is and whether or not
|
// This will change. Figure out who the observer is and whether or not
|
||||||
// they have permission to post here. Else ignore the post.
|
// they have permission to post here. Else ignore the post.
|
||||||
|
|
||||||
@ -237,12 +237,10 @@ class Item extends \Zotlabs\Web\Controller {
|
|||||||
if($parent) {
|
if($parent) {
|
||||||
logger('mod_item: item_post parent=' . $parent);
|
logger('mod_item: item_post parent=' . $parent);
|
||||||
$can_comment = false;
|
$can_comment = false;
|
||||||
|
if((array_key_exists('owner',$parent_item)) && intval($parent_item['owner']['abook_self']))
|
||||||
$can_comment = can_comment_on_post($observer['xchan_hash'],$parent_item);
|
$can_comment = perm_is_allowed($profile_uid,$observer['xchan_hash'],'post_comments');
|
||||||
if (!$can_comment) {
|
else
|
||||||
if((array_key_exists('owner',$parent_item)) && intval($parent_item['owner']['abook_self'])==1 )
|
$can_comment = can_comment_on_post($observer['xchan_hash'],$parent_item);
|
||||||
$can_comment = perm_is_allowed($profile_uid,$observer['xchan_hash'],'post_comments');
|
|
||||||
}
|
|
||||||
|
|
||||||
if(! $can_comment) {
|
if(! $can_comment) {
|
||||||
notice( t('Permission denied.') . EOL) ;
|
notice( t('Permission denied.') . EOL) ;
|
||||||
|
@ -1808,21 +1808,8 @@ function process_delivery($sender, $arr, $deliveries, $relay, $public = false, $
|
|||||||
else {
|
else {
|
||||||
$arr['item_wall'] = 0;
|
$arr['item_wall'] = 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
$allowed = (perm_is_allowed($channel['channel_id'],$sender['hash'],$perm) && (! $tag_delivery) && (! $local_public));
|
|
||||||
|
|
||||||
if(! $allowed && $perm == 'post_comments') {
|
if((! perm_is_allowed($channel['channel_id'],$sender['hash'],$perm)) && (! $tag_delivery) && (! $local_public)) {
|
||||||
logger("Channel = ".intval($channel['channel_id']));
|
|
||||||
$parent = q("select * from item where mid = '%s' and uid = %d limit 1",
|
|
||||||
dbesc($arr['parent_mid']),
|
|
||||||
intval($channel['channel_id'])
|
|
||||||
);
|
|
||||||
if ($parent) {
|
|
||||||
$allowed = can_comment_on_post($d['hash'],$parent[0]);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
if (! $allowed) {
|
|
||||||
logger("permission denied for delivery to channel {$channel['channel_id']} {$channel['channel_address']}");
|
logger("permission denied for delivery to channel {$channel['channel_id']} {$channel['channel_address']}");
|
||||||
$DR->update('permission denied');
|
$DR->update('permission denied');
|
||||||
$result[] = $DR->get();
|
$result[] = $DR->get();
|
||||||
|
Reference in New Issue
Block a user