2009-05-16 00:16:23 +01:00
|
|
|
<?php
|
2009-05-20 07:46:11 +01:00
|
|
|
/*
|
2009-08-25 23:29:56 +01:00
|
|
|
* StatusNet - a distributed open-source microblogging tool
|
2009-05-20 07:46:11 +01:00
|
|
|
* Copyright (C) 2008, Controlez-Vous, Inc.
|
2009-05-16 00:16:23 +01:00
|
|
|
*
|
2009-05-20 07:46:11 +01:00
|
|
|
* This program is free software: you can redistribute it and/or modify
|
2009-05-16 00:16:23 +01: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-08-26 15:41:36 +01:00
|
|
|
if (!defined('STATUSNET') && !defined('LACONICA')) {
|
2009-05-21 06:43:11 +01:00
|
|
|
exit(1);
|
2009-05-20 07:46:11 +01:00
|
|
|
}
|
2009-05-16 00:16:23 +01:00
|
|
|
|
2009-10-21 18:29:54 +01:00
|
|
|
require_once INSTALLDIR . '/plugins/Facebook/FacebookPlugin.php';
|
2009-05-16 00:16:23 +01:00
|
|
|
|
2009-05-20 07:46:11 +01:00
|
|
|
class FBConnectLoginAction extends Action
|
|
|
|
{
|
2009-05-16 00:16:23 +01:00
|
|
|
function handle($args)
|
|
|
|
{
|
|
|
|
parent::handle($args);
|
|
|
|
|
|
|
|
if (common_is_real_login()) {
|
2009-12-08 20:17:11 +00:00
|
|
|
$this->clientError(_m('Already logged in.'));
|
2009-05-21 06:43:11 +01:00
|
|
|
}
|
|
|
|
|
2009-05-16 00:16:23 +01:00
|
|
|
$this->showPage();
|
|
|
|
}
|
|
|
|
|
2009-05-20 07:46:11 +01:00
|
|
|
function getInstructions()
|
2009-05-16 00:16:23 +01:00
|
|
|
{
|
2009-12-08 20:17:11 +00:00
|
|
|
return _m('Login with your Facebook Account');
|
2009-05-16 00:16:23 +01:00
|
|
|
}
|
|
|
|
|
2009-05-20 07:46:11 +01:00
|
|
|
function showPageNotice()
|
2009-05-16 00:16:23 +01:00
|
|
|
{
|
2009-05-20 07:46:11 +01:00
|
|
|
$instr = $this->getInstructions();
|
|
|
|
$output = common_markup_to_html($instr);
|
|
|
|
$this->elementStart('div', 'instructions');
|
|
|
|
$this->raw($output);
|
|
|
|
$this->elementEnd('div');
|
2009-05-16 00:16:23 +01:00
|
|
|
}
|
|
|
|
|
2009-05-20 07:46:11 +01:00
|
|
|
function title()
|
2009-05-16 00:16:23 +01:00
|
|
|
{
|
2009-12-08 20:17:11 +00:00
|
|
|
return _m('Facebook Login');
|
2009-05-16 00:16:23 +01:00
|
|
|
}
|
|
|
|
|
2009-05-20 07:46:11 +01:00
|
|
|
function showContent() {
|
2009-05-16 00:16:23 +01:00
|
|
|
|
2009-05-20 07:46:11 +01:00
|
|
|
$this->elementStart('fieldset');
|
|
|
|
$this->element('fb:login-button', array('onlogin' => 'goto_login()',
|
|
|
|
'length' => 'long'));
|
2009-05-16 00:16:23 +01:00
|
|
|
|
2009-05-20 07:46:11 +01:00
|
|
|
$this->elementEnd('fieldset');
|
2009-05-16 00:16:23 +01:00
|
|
|
}
|
|
|
|
|
2009-11-25 01:11:29 +00:00
|
|
|
function showLocalNav()
|
|
|
|
{
|
|
|
|
$nav = new LoginGroupNav($this);
|
|
|
|
$nav->show();
|
|
|
|
}
|
2009-05-16 00:16:23 +01:00
|
|
|
}
|