| 
									
										
										
										
											2008-12-05 22:01:32 -05:00
										 |  |  | <?php | 
					
						
							|  |  |  | /* | 
					
						
							| 
									
										
										
										
											2009-08-25 18:14:12 -04:00
										 |  |  |  * StatusNet - the distributed open-source microblogging tool | 
					
						
							| 
									
										
										
										
											2009-08-25 18:12:20 -04:00
										 |  |  |  * Copyright (C) 2008, 2009, StatusNet, Inc. | 
					
						
							| 
									
										
										
										
											2008-12-05 22:01:32 -05:00
										 |  |  |  * | 
					
						
							|  |  |  |  * This program is free software: you can redistribute it and/or modify | 
					
						
							|  |  |  |  * it under the terms of the GNU Affero General Public License as published by | 
					
						
							|  |  |  |  * the Free Software Foundation, either version 3 of the License, or | 
					
						
							|  |  |  |  * (at your option) any later version. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * This program is distributed in the hope that it will be useful, | 
					
						
							|  |  |  |  * but WITHOUT ANY WARRANTY; without even the implied warranty of | 
					
						
							| 
									
										
										
										
											2008-12-23 14:19:07 -05:00
										 |  |  |  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.     See the | 
					
						
							| 
									
										
										
										
											2008-12-05 22:01:32 -05:00
										 |  |  |  * GNU Affero General Public License for more details. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * You should have received a copy of the GNU Affero General Public License | 
					
						
							| 
									
										
										
										
											2008-12-23 14:19:07 -05:00
										 |  |  |  * along with this program.     If not, see <http://www.gnu.org/licenses/>. | 
					
						
							| 
									
										
										
										
											2008-12-05 22:01:32 -05:00
										 |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-08-26 10:41:36 -04:00
										 |  |  | if (!defined('STATUSNET') && !defined('LACONICA')) { | 
					
						
							| 
									
										
										
										
											2009-05-26 02:23:19 +00:00
										 |  |  |     exit(1); | 
					
						
							|  |  |  | } | 
					
						
							| 
									
										
										
										
											2008-12-05 22:01:32 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-10-20 16:32:30 -07:00
										 |  |  | require_once INSTALLDIR . '/plugins/Facebook/facebookaction.php'; | 
					
						
							| 
									
										
										
										
											2008-12-05 22:01:32 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-12-23 14:49:23 -05:00
										 |  |  | class FacebookinviteAction extends FacebookAction | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2008-12-05 22:01:32 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2008-12-23 14:33:23 -05:00
										 |  |  |     function handle($args) | 
					
						
							|  |  |  |     { | 
					
						
							| 
									
										
										
										
											2008-12-23 14:19:07 -05:00
										 |  |  |         parent::handle($args); | 
					
						
							| 
									
										
										
										
											2009-01-23 03:16:03 +00:00
										 |  |  |         $this->showForm(); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     /** | 
					
						
							|  |  |  |      * Wrapper for showing a page | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * Stores an error and shows the page | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * @param string $error Error, if any | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * @return void | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     function showForm($error=null) | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         $this->error = $error; | 
					
						
							|  |  |  |         $this->showPage(); | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2008-12-05 22:01:32 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-01-23 03:16:03 +00:00
										 |  |  |     /** | 
					
						
							|  |  |  |      * Show the page content | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * Either shows the registration form or, if registration was successful, | 
					
						
							|  |  |  |      * instructions for using the site. | 
					
						
							|  |  |  |      * | 
					
						
							|  |  |  |      * @return void | 
					
						
							|  |  |  |      */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     function showContent() | 
					
						
							|  |  |  |     { | 
					
						
							| 
									
										
										
										
											2009-01-12 03:16:22 +00:00
										 |  |  |         if ($this->arg('ids')) { | 
					
						
							| 
									
										
										
										
											2009-01-23 03:16:03 +00:00
										 |  |  |             $this->showSuccessContent(); | 
					
						
							| 
									
										
										
										
											2009-01-12 03:16:22 +00:00
										 |  |  |         } else { | 
					
						
							| 
									
										
										
										
											2009-01-23 03:16:03 +00:00
										 |  |  |             $this->showFormContent(); | 
					
						
							| 
									
										
										
										
											2009-01-12 03:16:22 +00:00
										 |  |  |         } | 
					
						
							| 
									
										
										
										
											2008-12-23 14:19:07 -05:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2008-12-05 22:01:32 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-01-23 03:16:03 +00:00
										 |  |  |     function showSuccessContent() | 
					
						
							| 
									
										
										
										
											2009-01-12 03:16:22 +00:00
										 |  |  |     { | 
					
						
							| 
									
										
										
										
											2008-12-05 22:01:32 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-12-08 12:17:11 -08:00
										 |  |  |         $this->element('h2', null, sprintf(_m('Thanks for inviting your friends to use %s'), | 
					
						
							| 
									
										
										
										
											2009-01-23 03:16:03 +00:00
										 |  |  |             common_config('site', 'name'))); | 
					
						
							| 
									
										
										
										
											2009-12-08 12:17:11 -08:00
										 |  |  |         $this->element('p', null, _m('Invitations have been sent to the following users:')); | 
					
						
							| 
									
										
										
										
											2009-01-12 03:16:22 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-08 21:58:25 +00:00
										 |  |  |         $friend_ids = $_POST['ids']; // XXX: Hmm... is this the best way to access the list?
 | 
					
						
							| 
									
										
										
										
											2009-01-12 03:16:22 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-02-05 04:54:42 +00:00
										 |  |  |         $this->elementStart('ul', array('id' => 'facebook-friends')); | 
					
						
							| 
									
										
										
										
											2009-01-12 03:16:22 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |         foreach ($friend_ids as $friend) { | 
					
						
							| 
									
										
										
										
											2009-01-15 22:57:15 +00:00
										 |  |  |             $this->elementStart('li'); | 
					
						
							| 
									
										
										
										
											2009-02-08 21:58:25 +00:00
										 |  |  |             $this->element('fb:profile-pic', array('uid' => $friend, 'size' => 'square')); | 
					
						
							| 
									
										
										
										
											2009-01-15 22:57:15 +00:00
										 |  |  |             $this->element('fb:name', array('uid' => $friend, | 
					
						
							| 
									
										
										
										
											2009-01-12 03:16:22 +00:00
										 |  |  |                                             'capitalize' => 'true')); | 
					
						
							| 
									
										
										
										
											2009-01-15 22:57:15 +00:00
										 |  |  |             $this->elementEnd('li'); | 
					
						
							| 
									
										
										
										
											2009-01-12 03:16:22 +00:00
										 |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-01-15 22:57:15 +00:00
										 |  |  |         $this->elementEnd("ul"); | 
					
						
							| 
									
										
										
										
											2009-01-12 03:16:22 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-01-23 03:16:03 +00:00
										 |  |  |     function showFormContent() | 
					
						
							| 
									
										
										
										
											2009-01-12 03:16:22 +00:00
										 |  |  |     { | 
					
						
							| 
									
										
										
										
											2009-12-08 12:17:11 -08:00
										 |  |  |         $content = sprintf(_m('You have been invited to %s'), common_config('site', 'name')) . | 
					
						
							| 
									
										
										
										
											2009-01-23 03:16:03 +00:00
										 |  |  |             htmlentities('<fb:req-choice url="' . $this->app_uri . '" label="Add"/>'); | 
					
						
							| 
									
										
										
										
											2009-01-11 07:03:59 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-01-15 22:57:15 +00:00
										 |  |  |         $this->elementStart('fb:request-form', array('action' => 'invite.php', | 
					
						
							| 
									
										
										
										
											2009-01-12 03:16:22 +00:00
										 |  |  |                                                       'method' => 'post', | 
					
						
							| 
									
										
										
										
											2009-01-11 07:03:59 +00:00
										 |  |  |                                                       'invite' => 'true', | 
					
						
							| 
									
										
										
										
											2009-01-23 03:16:03 +00:00
										 |  |  |                                                       'type' => common_config('site', 'name'), | 
					
						
							| 
									
										
										
										
											2009-01-11 07:03:59 +00:00
										 |  |  |                                                       'content' => $content)); | 
					
						
							| 
									
										
										
										
											2009-01-15 22:57:15 +00:00
										 |  |  |         $this->hidden('invite', 'true'); | 
					
						
							| 
									
										
										
										
											2009-12-08 12:17:11 -08:00
										 |  |  |         $actiontext = sprintf(_m('Invite your friends to use %s'), common_config('site', 'name')); | 
					
						
							| 
									
										
										
										
											2009-05-26 02:23:19 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |         $multi_params = array('showborder' => 'false'); | 
					
						
							| 
									
										
										
										
											2009-02-08 23:07:56 +00:00
										 |  |  |         $multi_params['actiontext'] = $actiontext; | 
					
						
							| 
									
										
										
										
											2009-05-26 02:23:19 +00:00
										 |  |  |         $multi_params['bypass'] = 'cancel'; | 
					
						
							| 
									
										
										
										
											2009-10-27 21:07:17 +00:00
										 |  |  |         $multi_params['cols'] = 4; | 
					
						
							| 
									
										
										
										
											2009-05-26 02:23:19 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |         // Get a list of users who are already using the app for exclusion
 | 
					
						
							|  |  |  |         $exclude_ids = $this->facebook->api_client->friends_getAppUsers(); | 
					
						
							|  |  |  |         $exclude_ids_csv = null; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         // fbml needs these as a csv string, not an array
 | 
					
						
							|  |  |  |         if ($exclude_ids) { | 
					
						
							|  |  |  |             $exclude_ids_csv = implode(',', $exclude_ids); | 
					
						
							| 
									
										
										
										
											2009-02-08 23:07:56 +00:00
										 |  |  |             $multi_params['exclude_ids'] = $exclude_ids_csv; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         $this->element('fb:multi-friend-selector', $multi_params); | 
					
						
							| 
									
										
										
										
											2009-01-15 22:57:15 +00:00
										 |  |  |         $this->elementEnd('fb:request-form'); | 
					
						
							| 
									
										
										
										
											2008-12-05 22:01:32 -05:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-05-26 02:23:19 +00:00
										 |  |  |         if ($exclude_ids) { | 
					
						
							| 
									
										
										
										
											2009-01-12 03:16:22 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-12-08 12:17:11 -08:00
										 |  |  |             $this->element('h2', null, sprintf(_m('Friends already using %s:'), | 
					
						
							| 
									
										
										
										
											2009-05-26 02:23:19 +00:00
										 |  |  |                 common_config('site', 'name'))); | 
					
						
							|  |  |  |             $this->elementStart('ul', array('id' => 'facebook-friends')); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             foreach ($exclude_ids as $friend) { | 
					
						
							|  |  |  |                 $this->elementStart('li'); | 
					
						
							|  |  |  |                 $this->element('fb:profile-pic', array('uid' => $friend, 'size' => 'square')); | 
					
						
							|  |  |  |                 $this->element('fb:name', array('uid' => $friend, | 
					
						
							|  |  |  |                                                 'capitalize' => 'true')); | 
					
						
							|  |  |  |                 $this->elementEnd('li'); | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |             $this->elementEnd("ul"); | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2009-01-23 03:16:03 +00:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2009-05-26 02:23:19 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     function title() | 
					
						
							| 
									
										
										
										
											2009-01-23 03:16:03 +00:00
										 |  |  |     { | 
					
						
							| 
									
										
										
										
											2009-12-08 12:17:11 -08:00
										 |  |  |         return sprintf(_m('Send invitations')); | 
					
						
							| 
									
										
										
										
											2008-12-23 14:19:07 -05:00
										 |  |  |     } | 
					
						
							| 
									
										
										
										
											2008-12-05 22:01:32 -05:00
										 |  |  | 
 | 
					
						
							|  |  |  | } |