mirror of
https://git.friendi.ca/friendica/friendica-addons.git
synced 2024-11-22 09:03:41 +00:00
Publiv forum posts aren't transmitted via the connectors anymore
This commit is contained in:
parent
800d15e40a
commit
b3d73b1255
8 changed files with 64 additions and 9 deletions
|
@ -247,6 +247,13 @@ function buffer_send(&$a,&$b) {
|
||||||
if($b['parent'] != $b['id'])
|
if($b['parent'] != $b['id'])
|
||||||
return;
|
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 post comes from buffer don't send it back
|
||||||
//if($b['app'] == "Buffer")
|
//if($b['app'] == "Buffer")
|
||||||
// return;
|
// return;
|
||||||
|
|
|
@ -284,6 +284,13 @@ function diaspora_send(&$a,&$b) {
|
||||||
if($b['parent'] != $b['id'])
|
if($b['parent'] != $b['id'])
|
||||||
return;
|
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);
|
logger('diaspora_send: prepare posting', LOGGER_DEBUG);
|
||||||
|
|
||||||
$handle = PConfig::get($b['uid'],'diaspora','handle');
|
$handle = PConfig::get($b['uid'],'diaspora','handle');
|
||||||
|
|
|
@ -164,6 +164,12 @@ function libertree_send(&$a,&$b) {
|
||||||
if ($b['parent'] != $b['id'])
|
if ($b['parent'] != $b['id'])
|
||||||
return;
|
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_api_token = PConfig::get($b['uid'],'libertree','libertree_api_token');
|
||||||
$ltree_url = PConfig::get($b['uid'],'libertree','libertree_url');
|
$ltree_url = PConfig::get($b['uid'],'libertree','libertree_url');
|
||||||
|
|
|
@ -415,6 +415,13 @@ function pumpio_send(&$a,&$b) {
|
||||||
|
|
||||||
if (!count($receiver) && ($b['private'] || !strstr($b['postopts'],'pumpio')))
|
if (!count($receiver) && ($b['private'] || !strstr($b['postopts'],'pumpio')))
|
||||||
return;
|
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['verb'] == ACTIVITY_LIKE) {
|
||||||
|
|
|
@ -541,6 +541,13 @@ function statusnet_post_hook(&$a,&$b) {
|
||||||
|
|
||||||
if($b['private'] || !strstr($b['postopts'],'statusnet'))
|
if($b['private'] || !strstr($b['postopts'],'statusnet'))
|
||||||
return;
|
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['verb'] == ACTIVITY_POST) && $b['deleted'])
|
||||||
|
|
|
@ -325,6 +325,13 @@ function tumblr_send(&$a,&$b) {
|
||||||
if($b['parent'] != $b['id'])
|
if($b['parent'] != $b['id'])
|
||||||
return;
|
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 = PConfig::get($b['uid'], "tumblr", "oauth_token");
|
||||||
$oauth_token_secret = PConfig::get($b['uid'], "tumblr", "oauth_token_secret");
|
$oauth_token_secret = PConfig::get($b['uid'], "tumblr", "oauth_token_secret");
|
||||||
$page = PConfig::get($b['uid'], "tumblr", "page");
|
$page = PConfig::get($b['uid'], "tumblr", "page");
|
||||||
|
|
|
@ -446,10 +446,18 @@ function twitter_post_hook(&$a,&$b) {
|
||||||
} else {
|
} else {
|
||||||
$iscomment = false;
|
$iscomment = false;
|
||||||
|
|
||||||
if($b['private'] || !strstr($b['postopts'],'twitter'))
|
if ($b['private'] || !strstr($b['postopts'],'twitter')) {
|
||||||
return;
|
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['verb'] == ACTIVITY_POST) && $b['deleted'])
|
||||||
twitter_action($a, $b["uid"], substr($orig_post["uri"], 9), "delete");
|
twitter_action($a, $b["uid"], substr($orig_post["uri"], 9), "delete");
|
||||||
|
|
||||||
|
|
|
@ -200,6 +200,12 @@ function wppost_send(&$a,&$b) {
|
||||||
if($b['parent'] != $b['id'])
|
if($b['parent'] != $b['id'])
|
||||||
return;
|
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_username = xmlify(PConfig::get($b['uid'],'wppost','wp_username'));
|
||||||
$wp_password = xmlify(PConfig::get($b['uid'],'wppost','wp_password'));
|
$wp_password = xmlify(PConfig::get($b['uid'],'wppost','wp_password'));
|
||||||
|
|
Loading…
Reference in a new issue