facebook application blocking
This commit is contained in:
parent
28405bfeb6
commit
dc8807c051
2 changed files with 31 additions and 0 deletions
BIN
facebook.tgz
BIN
facebook.tgz
Binary file not shown.
|
@ -294,6 +294,8 @@ function facebook_post(&$a) {
|
||||||
set_pconfig($uid,'facebook','private_wall',$private_wall);
|
set_pconfig($uid,'facebook','private_wall',$private_wall);
|
||||||
|
|
||||||
|
|
||||||
|
set_pconfig($uid,'facebook','blocked_apps',escape_tags(trim($_POST['blocked_apps'])));
|
||||||
|
|
||||||
$linkvalue = ((x($_POST,'facebook_linking')) ? intval($_POST['facebook_linking']) : 0);
|
$linkvalue = ((x($_POST,'facebook_linking')) ? intval($_POST['facebook_linking']) : 0);
|
||||||
set_pconfig($uid,'facebook','no_linking', (($linkvalue) ? 0 : 1));
|
set_pconfig($uid,'facebook','no_linking', (($linkvalue) ? 0 : 1));
|
||||||
|
|
||||||
|
@ -401,6 +403,12 @@ function facebook_content(&$a) {
|
||||||
|
|
||||||
$o .= '<p>' . t('If you choose to link conversations and leave both of these boxes unchecked, your Facebook profile wall will be merged with your profile wall on this website and your privacy settings on this website will be used to determine who may see the conversations.') . '</p>';
|
$o .= '<p>' . t('If you choose to link conversations and leave both of these boxes unchecked, your Facebook profile wall will be merged with your profile wall on this website and your privacy settings on this website will be used to determine who may see the conversations.') . '</p>';
|
||||||
|
|
||||||
|
|
||||||
|
$blocked_apps = get_pconfig(local_user(),'facebook','blocked_apps');
|
||||||
|
|
||||||
|
$o .= '<div><label id="blocked-apps-label" for="blocked-apps">' . t('Comma separated applications to ignore') . ' </label></div>';
|
||||||
|
$o .= '<div><textarea id="blocked-apps" name="blocked_apps" >' . htmlspecialchars($blocked_apps) . '</textarea></div>';
|
||||||
|
|
||||||
$o .= '<input type="submit" name="submit" value="' . t('Submit') . '" /></form></div>';
|
$o .= '<input type="submit" name="submit" value="' . t('Submit') . '" /></form></div>';
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -864,6 +872,8 @@ function fb_consume_stream($uid,$j,$wall = false) {
|
||||||
intval($uid)
|
intval($uid)
|
||||||
);
|
);
|
||||||
|
|
||||||
|
$blocked_apps = get_pconfig($uid,'facebook','blocked_apps');
|
||||||
|
$blocked_apps_arr = explode(',',$blocked_apps);
|
||||||
|
|
||||||
$self_id = get_pconfig($uid,'facebook','self_id');
|
$self_id = get_pconfig($uid,'facebook','self_id');
|
||||||
if(! count($j->data) || (! strlen($self_id)))
|
if(! count($j->data) || (! strlen($self_id)))
|
||||||
|
@ -922,6 +932,27 @@ function fb_consume_stream($uid,$j,$wall = false) {
|
||||||
$datarray['app'] = strip_tags($entry->application->name);
|
$datarray['app'] = strip_tags($entry->application->name);
|
||||||
else
|
else
|
||||||
$datarray['app'] = 'facebook';
|
$datarray['app'] = 'facebook';
|
||||||
|
|
||||||
|
$found_blocked = false;
|
||||||
|
|
||||||
|
if(count($blocked_apps_arr)) {
|
||||||
|
foreach($blocked_apps_arr as $bad_appl) {
|
||||||
|
if(! strlen(trim($bad_appl))) {
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
|
if(stristr($datarray['app'],$bad_appl)) {
|
||||||
|
$found_blocked = true;
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if($found_blocked) {
|
||||||
|
logger('facebook: blocking application: ' . $datarray['app']);
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
$datarray['author-name'] = $from->name;
|
$datarray['author-name'] = $from->name;
|
||||||
$datarray['author-link'] = 'http://facebook.com/profile.php?id=' . $from->id;
|
$datarray['author-link'] = 'http://facebook.com/profile.php?id=' . $from->id;
|
||||||
$datarray['author-avatar'] = 'https://graph.facebook.com/' . $from->id . '/picture';
|
$datarray['author-avatar'] = 'https://graph.facebook.com/' . $from->id . '/picture';
|
||||||
|
|
Loading…
Reference in a new issue