if($b['parent'] != $b['id'])
return;
+ // Dont't post if the post doesn't belong to us.
+ // This is a check for forum postings
+ $self = dba::select('contact', array('id'), array('uid' => $b['uid'], 'self' => true), array('limit' => 1));
+ if ($b['contact-id'] != $self['id']) {
+ return;
+ }
+
// if post comes from buffer don't send it back
//if($b['app'] == "Buffer")
// return;
if($b['parent'] != $b['id'])
return;
+ // Dont't post if the post doesn't belong to us.
+ // This is a check for forum postings
+ $self = dba::select('contact', array('id'), array('uid' => $b['uid'], 'self' => true), array('limit' => 1));
+ if ($b['contact-id'] != $self['id']) {
+ return;
+ }
+
logger('diaspora_send: prepare posting', LOGGER_DEBUG);
$handle = PConfig::get($b['uid'],'diaspora','handle');
logger('libertree_send: invoked');
- if($b['deleted'] || $b['private'] || ($b['created'] !== $b['edited']))
- return;
+ if ($b['deleted'] || $b['private'] || ($b['created'] !== $b['edited']))
+ return;
- if(! strstr($b['postopts'],'libertree'))
- return;
+ if (! strstr($b['postopts'],'libertree'))
+ return;
- if($b['parent'] != $b['id'])
- return;
+ if ($b['parent'] != $b['id'])
+ return;
+ // Dont't post if the post doesn't belong to us.
+ // This is a check for forum postings
+ $self = dba::select('contact', array('id'), array('uid' => $b['uid'], 'self' => true), array('limit' => 1));
+ if ($b['contact-id'] != $self['id']) {
+ return;
+ }
$ltree_api_token = PConfig::get($b['uid'],'libertree','libertree_api_token');
$ltree_url = PConfig::get($b['uid'],'libertree','libertree_url');
if (!count($receiver) && ($b['private'] || !strstr($b['postopts'],'pumpio')))
return;
+
+ // Dont't post if the post doesn't belong to us.
+ // This is a check for forum postings
+ $self = dba::select('contact', array('id'), array('uid' => $b['uid'], 'self' => true), array('limit' => 1));
+ if ($b['contact-id'] != $self['id']) {
+ return;
+ }
}
if($b['verb'] == ACTIVITY_LIKE) {
if($b['private'] || !strstr($b['postopts'],'statusnet'))
return;
+
+ // Dont't post if the post doesn't belong to us.
+ // This is a check for forum postings
+ $self = dba::select('contact', array('id'), array('uid' => $b['uid'], 'self' => true), array('limit' => 1));
+ if ($b['contact-id'] != $self['id']) {
+ return;
+ }
}
if (($b['verb'] == ACTIVITY_POST) && $b['deleted'])
if($b['parent'] != $b['id'])
return;
+ // Dont't post if the post doesn't belong to us.
+ // This is a check for forum postings
+ $self = dba::select('contact', array('id'), array('uid' => $b['uid'], 'self' => true), array('limit' => 1));
+ if ($b['contact-id'] != $self['id']) {
+ return;
+ }
+
$oauth_token = PConfig::get($b['uid'], "tumblr", "oauth_token");
$oauth_token_secret = PConfig::get($b['uid'], "tumblr", "oauth_token_secret");
$page = PConfig::get($b['uid'], "tumblr", "page");
}
}
-function twitter_settings_post ($a,$post) {
+function twitter_settings_post($a,$post) {
if(! local_user())
return;
// don't check twitter settings if twitter submit button is not clicked
return;
}
- if($b['parent'] != $b['id']) {
+ if ($b['parent'] != $b['id']) {
logger("twitter_post_hook: parameter ".print_r($b, true), LOGGER_DATA);
// Looking if its a reply to a twitter post
} else {
$iscomment = false;
- if($b['private'] || !strstr($b['postopts'],'twitter'))
+ if ($b['private'] || !strstr($b['postopts'],'twitter')) {
return;
+ }
+
+ // Dont't post if the post doesn't belong to us.
+ // This is a check for forum postings
+ $self = dba::select('contact', array('id'), array('uid' => $b['uid'], 'self' => true), array('limit' => 1));
+ if ($b['contact-id'] != $self['id']) {
+ return;
+ }
}
if (($b['verb'] == ACTIVITY_POST) && $b['deleted'])
if($b['parent'] != $b['id'])
return;
+ // Dont't post if the post doesn't belong to us.
+ // This is a check for forum postings
+ $self = dba::select('contact', array('id'), array('uid' => $b['uid'], 'self' => true), array('limit' => 1));
+ if ($b['contact-id'] != $self['id']) {
+ return;
+ }
$wp_username = xmlify(PConfig::get($b['uid'],'wppost','wp_username'));
$wp_password = xmlify(PConfig::get($b['uid'],'wppost','wp_password'));