aboutsummaryrefslogtreecommitdiffstats
path: root/include/ConversationObject.php
diff options
context:
space:
mode:
authorfriendica <info@friendica.com>2013-09-20 05:45:11 -0700
committerfriendica <info@friendica.com>2013-09-20 05:45:11 -0700
commite6d93b251606e7261db3a5048cf730c2e69a28e3 (patch)
tree4947c54a17a65b1804987f402fc4a9f0acae5ca7 /include/ConversationObject.php
parenta44e15dc2c0fbd47051408c8f00988eea1cd4296 (diff)
downloadvolse-hubzilla-e6d93b251606e7261db3a5048cf730c2e69a28e3.tar.gz
volse-hubzilla-e6d93b251606e7261db3a5048cf730c2e69a28e3.tar.bz2
volse-hubzilla-e6d93b251606e7261db3a5048cf730c2e69a28e3.zip
is_commentable() had some major issues when applied to the atrocity known as ConversationObject, hopefully this won't destabilise the network as it's a somewhat major permission tweak related to comments; also add any local clones to allowed_public_recips() as they should always be allowed recipients. Not sure what to do about host permissions in the event of clones. They have more than one host, and it isn't spelled out in the sent message.
All of this stuff will make your head hurt.
Diffstat (limited to 'include/ConversationObject.php')
-rw-r--r--include/ConversationObject.php23
1 files changed, 13 insertions, 10 deletions
diff --git a/include/ConversationObject.php b/include/ConversationObject.php
index 30026e908..5157dad05 100644
--- a/include/ConversationObject.php
+++ b/include/ConversationObject.php
@@ -138,22 +138,25 @@ class Conversation extends BaseObject {
return false;
}
- if(local_user() && $item->get_data_value('uid') == local_user())
- $this->commentable = true;
+// if(local_user() && $item->get_data_value('uid') == local_user())
+// $this->commentable = true;
- if($this->writable)
- $this->commentable = true;
+// if($this->writable)
+// $this->commentable = true;
+
+ $item->set_commentable(false);
+ $ob_hash = (($this->observer) ? $this->observer['xchan_hash'] : '');
+
+ if(($item->get_data_value('author_xchan') === $ob_hash) || ($item->get_data_value('owner_xchan') === $ob_hash))
+ $item->set_commentable(true);
if($item->get_data_value('item_flags') & ITEM_NOCOMMENT) {
- $this->commentable = false;
+ $item->set_commentable(false);
}
- elseif(($this->observer) && (! $this->writable)) {
- $this->commentable = can_comment_on_post($this->observer['xchan_hash'],$item->data);
+ elseif(($this->observer) && (! $item->is_commentable())) {
+ $item->set_commentable(can_comment_on_post($this->observer['xchan_hash'],$item->data));
}
-
-
-
$item->set_conversation($this);
$this->threads[] = $item;
return end($this->threads);