1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70
|
<?php
/**
* Endpoint for Facebook integration.
*
* Copyright 2009-2016 Horde LLC (http://www.horde.org/)
*
* See the enclosed file COPYING for license information (LGPL-2). If you
* did not receive this file, see http://www.horde.org/licenses/lgpl.
*
* @author Michael J. Rubinsky <mrubinsk@horde.org>
* @category Horde
* @license http://www.horde.org/licenses/lgpl LGPL-2
* @package Horde
*/
require_once __DIR__ . '/../../lib/Application.php';
Horde_Registry::appInit('horde');
// Get the facebook client.
try {
$facebook = $injector->getInstance('Horde_Service_Facebook');
} catch (Horde_Exception $e) {
Horde::url('index.php', false, array('app' => 'horde'))->redirect();
}
// Url to return to after processing.
$return_url = $registry->getServiceLink('prefs', 'horde')
->add(array('group' => 'facebook'));
// See why we are here. A $code indicates the user has *just* authenticated the
// application and we now need to obtain the auth_token.
$vars = $injector->getInstance('Horde_Variables');
if (isset($vars->code)) {
$token = $injector->getInstance('Horde_Token');
if (!$token->isValid($vars->state, '', -1, false)) {
$notification->push(_("Unable to validate the request token. Please try your request again."));
$return_url->redirect();
}
try {
$sessionKey = $facebook->auth->getSessionKey(
$vars->code, Horde::url('services/facebook', true));
if ($sessionKey) {
// Store in user prefs
$sid = $sessionKey;
$uid = $facebook->auth->getLoggedInUser();
$prefs->setValue('facebook', serialize(array('uid' => (string)$uid, 'sid' => $sid)));
$notification->push(
_("Succesfully connected your Facebook account or updated permissions."),
'horde.success');
} else {
$notification->push(
_("There was an error obtaining your Facebook session. Please try again later."),
'horde.error');
}
} catch (Horde_Service_Facebook_Exception $e) {
$notification->push(
_("Temporarily unable to connect with Facebook, Please try again."),
'horde.error');
}
$return_url->redirect();
}
if (isset($vars->error)) {
if ($vars->error_reason == 'user_denied') {
$notification->push(_("You have denied the requested permissions."), 'horde.warning');
} else {
$notification->push(_("There was an error with the requested permissions"), 'horde.error');
}
$return_url->redirect();
}
|