| 
									
										
										
										
											2009-05-15 23:16:23 +00:00
										 |  |  | <?php | 
					
						
							| 
									
										
										
										
											2009-05-20 06:46:11 +00:00
										 |  |  | /* | 
					
						
							|  |  |  |  * Laconica - a distributed open-source microblogging tool | 
					
						
							|  |  |  |  * Copyright (C) 2008, Controlez-Vous, Inc. | 
					
						
							| 
									
										
										
										
											2009-05-15 23:16:23 +00:00
										 |  |  |  * | 
					
						
							| 
									
										
										
										
											2009-05-20 06:46:11 +00:00
										 |  |  |  * This program is free software: you can redistribute it and/or modify | 
					
						
							| 
									
										
										
										
											2009-05-15 23:16:23 +00:00
										 |  |  |  * 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 | 
					
						
							|  |  |  |  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the | 
					
						
							|  |  |  |  * GNU Affero General Public License for more details. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * You should have received a copy of the GNU Affero General Public License | 
					
						
							|  |  |  |  * along with this program.  If not, see <http://www.gnu.org/licenses/>. | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-05-21 05:43:11 +00:00
										 |  |  | if (!defined('LACONICA')) { | 
					
						
							|  |  |  |     exit(1); | 
					
						
							| 
									
										
										
										
											2009-05-20 06:46:11 +00:00
										 |  |  | } | 
					
						
							| 
									
										
										
										
											2009-05-15 23:16:23 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-05-20 06:46:11 +00:00
										 |  |  | require_once INSTALLDIR . '/plugins/FBConnect/FBConnectPlugin.php'; | 
					
						
							| 
									
										
										
										
											2009-05-15 23:16:23 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-05-20 06:46:11 +00:00
										 |  |  | class FBConnectLoginAction extends Action | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2009-05-15 23:16:23 +00:00
										 |  |  |     function handle($args) | 
					
						
							|  |  |  |     { | 
					
						
							|  |  |  |         parent::handle($args); | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |         if (common_is_real_login()) { | 
					
						
							|  |  |  |             $this->clientError(_('Already logged in.')); | 
					
						
							| 
									
										
										
										
											2009-05-21 05:43:11 +00:00
										 |  |  |         } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-05-15 23:16:23 +00:00
										 |  |  |         $this->showPage(); | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-05-20 06:46:11 +00:00
										 |  |  |     function getInstructions() | 
					
						
							| 
									
										
										
										
											2009-05-15 23:16:23 +00:00
										 |  |  |     { | 
					
						
							| 
									
										
										
										
											2009-05-20 06:46:11 +00:00
										 |  |  |         return _('Login with your Facebook Account'); | 
					
						
							| 
									
										
										
										
											2009-05-15 23:16:23 +00:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-05-20 06:46:11 +00:00
										 |  |  |     function showPageNotice() | 
					
						
							| 
									
										
										
										
											2009-05-15 23:16:23 +00:00
										 |  |  |     { | 
					
						
							| 
									
										
										
										
											2009-05-20 06:46:11 +00:00
										 |  |  |         $instr = $this->getInstructions(); | 
					
						
							|  |  |  |         $output = common_markup_to_html($instr); | 
					
						
							|  |  |  |         $this->elementStart('div', 'instructions'); | 
					
						
							|  |  |  |         $this->raw($output); | 
					
						
							|  |  |  |         $this->elementEnd('div'); | 
					
						
							| 
									
										
										
										
											2009-05-15 23:16:23 +00:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-05-20 06:46:11 +00:00
										 |  |  |     function title() | 
					
						
							| 
									
										
										
										
											2009-05-15 23:16:23 +00:00
										 |  |  |     { | 
					
						
							| 
									
										
										
										
											2009-05-20 06:46:11 +00:00
										 |  |  |         return _('Facebook Login'); | 
					
						
							| 
									
										
										
										
											2009-05-15 23:16:23 +00:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-05-20 06:46:11 +00:00
										 |  |  |     function showContent() { | 
					
						
							| 
									
										
										
										
											2009-05-15 23:16:23 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-05-20 06:46:11 +00:00
										 |  |  |         $this->elementStart('fieldset'); | 
					
						
							|  |  |  |         $this->element('fb:login-button', array('onlogin' => 'goto_login()', | 
					
						
							|  |  |  |             'length' => 'long')); | 
					
						
							| 
									
										
										
										
											2009-05-15 23:16:23 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2009-05-20 06:46:11 +00:00
										 |  |  |         $this->elementEnd('fieldset'); | 
					
						
							| 
									
										
										
										
											2009-05-15 23:16:23 +00:00
										 |  |  |     } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | } |