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 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169
|
<?php
namespace SimpleSAML\Module\authfacebook\Auth\Source;
use SimpleSAML\Auth;
use SimpleSAML\Configuration;
use SimpleSAML\Error;
use SimpleSAML\Logger;
use SimpleSAML\Module;
use SimpleSAML\Utils;
/**
* Authenticate using Facebook Platform.
*
* @author Andreas Åkre Solberg, UNINETT AS.
* @package SimpleSAMLphp
*/
class Facebook extends \SimpleSAML\Auth\Source
{
/**
* The string used to identify our states.
*/
const STAGE_INIT = 'facebook:init';
/**
* The key of the AuthId field in the state.
*/
const AUTHID = 'facebook:AuthId';
/**
* Facebook App ID or API Key
*/
private $api_key;
/**
* Facebook App Secret
*/
private $secret;
/**
* Which additional data permissions to request from user
*/
private $req_perms;
/**
* A comma-separated list of user profile fields to request.
*
* Note that some user fields require appropriate permissions. For
* example, to retrieve the user's primary email address, "email" must
* be specified in both the req_perms and the user_fields parameter.
*
* When empty, only the app-specific user id and name will be returned.
*
* See the Graph API specification for all available user fields:
* https://developers.facebook.com/docs/graph-api/reference/v2.6/user
*/
private $user_fields;
/**
* Constructor for this authentication source.
*
* @param array $info Information about this authentication source.
* @param array $config Configuration.
*/
public function __construct($info, $config)
{
assert(is_array($info));
assert(is_array($config));
// Call the parent constructor first, as required by the interface
parent::__construct($info, $config);
$cfgParse = Configuration::loadFromArray(
$config,
'authsources[' . var_export($this->authId, true) . ']'
);
$this->api_key = $cfgParse->getString('api_key');
$this->secret = $cfgParse->getString('secret');
$this->req_perms = $cfgParse->getString('req_perms', null);
$this->user_fields = $cfgParse->getString('user_fields', null);
}
/**
* Log-in using Facebook platform
*
* @param array &$state Information about the current authentication.
* @return void
*/
public function authenticate(&$state)
{
assert(is_array($state));
// We are going to need the authId in order to retrieve this authentication source later
$state[self::AUTHID] = $this->authId;
Auth\State::saveState($state, self::STAGE_INIT);
$facebook = new Module\authfacebook\Facebook(
['appId' => $this->api_key, 'secret' => $this->secret],
$state
);
$facebook->destroySession();
$linkback = Module::getModuleURL('authfacebook/linkback.php');
$url = $facebook->getLoginUrl(['redirect_uri' => $linkback, 'scope' => $this->req_perms]);
Auth\State::saveState($state, self::STAGE_INIT);
Utils\HTTP::redirectTrustedURL($url);
}
/**
* @param array &$state
* @return void
*/
public function finalStep(&$state)
{
assert(is_array($state));
$facebook = new Module\authfacebook\Facebook(
['appId' => $this->api_key, 'secret' => $this->secret],
$state
);
$uid = $facebook->getUser();
$info = null;
if ($uid > 0) {
try {
$info = $facebook->api("/" . $uid . ($this->user_fields ? "?fields=" . $this->user_fields : ""));
} catch (\FacebookApiException $e) {
throw new Error\AuthSource($this->authId, 'Error getting user profile.', $e);
}
}
if (!isset($info)) {
throw new Error\AuthSource($this->authId, 'Error getting user profile.');
}
$attributes = [];
foreach ($info as $key => $value) {
if (is_string($value) && !empty($value)) {
$attributes['facebook.' . $key] = [(string) $value];
}
}
if (array_key_exists('third_party_id', $info)) {
$attributes['facebook_user'] = [$info['third_party_id'] . '@facebook.com'];
} else {
$attributes['facebook_user'] = [$uid . '@facebook.com'];
}
$attributes['facebook_targetedID'] = ['http://facebook.com!' . $uid];
$attributes['facebook_cn'] = [$info['name']];
Logger::debug('Facebook Returned Attributes: ' . implode(", ", array_keys($attributes)));
$state['Attributes'] = $attributes;
$facebook->destroySession();
}
}
|