From 7ce7c756e83386803bea3fb543d5b21fbd9db980 Mon Sep 17 00:00:00 2001 From: Zach Copley Date: Mon, 12 Jan 2009 00:42:42 +0000 Subject: [PATCH] trac750 Exclude Facebook friends who are already using Identi.ca app from invitee list --- actions/facebookinvite.php | 9 +++++++-- actions/facebooksettings.php | 2 +- lib/facebookaction.php | 2 +- 3 files changed, 9 insertions(+), 4 deletions(-) diff --git a/actions/facebookinvite.php b/actions/facebookinvite.php index b3653c78b3..7addc4b31d 100644 --- a/actions/facebookinvite.php +++ b/actions/facebookinvite.php @@ -40,6 +40,10 @@ class FacebookinviteAction extends FacebookAction $this->show_header('Invite'); + + // Get a list of users who are already using the app for exclusion + $exclude_ids = $facebook->api_client->friends_getAppUsers(); + $content = 'You have been invited to Identi.ca! ' . htmlentities(''); @@ -50,8 +54,9 @@ class FacebookinviteAction extends FacebookAction 'content' => $content)); $actiontext = 'Invite your friends to use Identi.ca.'; - common_element_start('fb:multi-friend-selector', array('showborder' => 'false', - 'actiontext' => $actiontext)); + common_element('fb:multi-friend-selector', array('showborder' => 'false', + 'actiontext' => $actiontext, + 'exclude_ids' => implode(',', $exclude_ids))); common_element_end('fb:request-form'); diff --git a/actions/facebooksettings.php b/actions/facebooksettings.php index 88364c7979..862dc07322 100644 --- a/actions/facebooksettings.php +++ b/actions/facebooksettings.php @@ -70,8 +70,8 @@ class FacebooksettingsAction extends FacebookAction common_element_start('p'); common_element('fb:add-section-button', array('section' => 'profile')); common_element_end('p'); - common_element_end('fb:if-section-not-added'); + common_element_end('fb:if-section-not-added'); common_element_start('p'); common_element_start('fb:prompt-permission', array('perms' => 'status_update')); common_element('h2', null, _('Allow Identi.ca to update my Facebook status')); diff --git a/lib/facebookaction.php b/lib/facebookaction.php index ddf81c034b..3a00c71dd0 100644 --- a/lib/facebookaction.php +++ b/lib/facebookaction.php @@ -48,7 +48,7 @@ class FacebookAction extends Action common_element('fb:tab-item', array('title' => 'Home', 'href' => 'index.php', 'selected' => ($selected == 'Home'))); - common_element('fb:tab-item', array('title' => 'Invite Friends', + common_element('fb:tab-item', array('title' => 'Invite', 'href' => 'invite.php', 'selected' => ($selected == 'Invite'))); common_element('fb:tab-item', array('title' => 'Settings',