728 lines
28 KiB
PHP
728 lines
28 KiB
PHP
<?php
|
|
/**
|
|
* Created by PhpStorm.
|
|
* User: Exodus
|
|
* Date: 23.01.2016
|
|
* Time: 17:18
|
|
*
|
|
* Handles access to EVE-Online "CREST API" and "SSO" auth functions
|
|
* - Add your API credentials in "environment.ini"
|
|
* - Check "PATHFINDER.API" in "pathfinder.ini" for correct API URLs
|
|
* Hint: \Web::instance()->request automatically caches responses by their response "Cache-Control" header!
|
|
*/
|
|
|
|
namespace Controller\Ccp;
|
|
use Controller;
|
|
use Controller\Api as Api;
|
|
use Data\Mapper as Mapper;
|
|
use Model;
|
|
use Lib;
|
|
|
|
class Sso extends Api\User{
|
|
|
|
/**
|
|
* @var int timeout (seconds) for API calls
|
|
*/
|
|
const CREST_TIMEOUT = 3;
|
|
|
|
/**
|
|
* @var int expire time (seconds) for an valid "accessToken"
|
|
*/
|
|
const ACCESS_KEY_EXPIRE_TIME = 20 * 60;
|
|
|
|
// SSO specific session keys
|
|
const SESSION_KEY_SSO = 'SESSION.SSO';
|
|
const SESSION_KEY_SSO_ERROR = 'SESSION.SSO.ERROR';
|
|
const SESSION_KEY_SSO_STATE = 'SESSION.SSO.STATE';
|
|
const SESSION_KEY_SSO_CHARACTER_ID = 'SESSION.SSO.CHARACTER.ID';
|
|
|
|
// cache keys
|
|
const CACHE_KEY_LOCATION_DATA = 'CACHED.LOCATION.%s';
|
|
|
|
// error messages
|
|
const ERROR_CCP_SSO_URL = 'Invalid "ENVIRONMENT.[ENVIRONMENT].SSO_CCP_URL" url. %s';
|
|
const ERROR_CCP_CREST_URL = 'Invalid "ENVIRONMENT.[ENVIRONMENT].CCP_CREST_URL" url. %s';
|
|
const ERROR_CCP_CLIENT_ID = 'Missing "ENVIRONMENT.[ENVIRONMENT].SSO_CCP_CLIENT_ID".';
|
|
const ERROR_RESOURCE_DEPRECATED = 'Resource: %s has been marked as deprecated. %s';
|
|
const ERROR_ACCESS_TOKEN = 'Unable to get a valid "access_token. %s';
|
|
const ERROR_VERIFY_CHARACTER = 'Unable to verify character data. %s';
|
|
const ERROR_GET_ENDPOINT = 'Unable to get endpoint data. $s';
|
|
const ERROR_FIND_ENDPOINT = 'Unable to find endpoint: %s';
|
|
const ERROR_LOGIN_FAILED = 'Failed authentication due to technical problems: %s';
|
|
const ERROR_CHARACTER_FORBIDDEN = 'Character "%s" is not authorized to log in';
|
|
const ERROR_CHARACTER_MISMATCH = 'The character "%s" you tried to log in, does not match';
|
|
const ERROR_SERVICE_TIMEOUT = 'CCP SSO service timeout (%ss). Try again later';
|
|
const ERROR_COOKIE_LOGIN = 'Login from Cookie failed. Please retry by CCP SSO';
|
|
|
|
/**
|
|
* CREST "Scopes" are used by pathfinder
|
|
* -> Enable scopes: https://developers.eveonline.com
|
|
* @var array
|
|
*/
|
|
private $requestScopes = [
|
|
// 'characterFittingsRead',
|
|
// 'characterFittingsWrite',
|
|
'characterLocationRead',
|
|
'characterNavigationWrite'
|
|
];
|
|
|
|
/**
|
|
* redirect user to CCP SSO page and request authorization
|
|
* @param \Base $f3
|
|
*/
|
|
public function requestAuthorization($f3){
|
|
|
|
if( !empty($ssoCcpClientId = Controller\Controller::getEnvironmentData('SSO_CCP_CLIENT_ID')) ){
|
|
$params = $f3->get('GET');
|
|
|
|
if(isset($params['characterId'])){
|
|
// restrict login to this characterId e.g. for character switch
|
|
$f3->set(self::SESSION_KEY_SSO_CHARACTER_ID, (int)trim($params['characterId']) );
|
|
}
|
|
|
|
// used for "state" check between request and callback
|
|
$state = bin2hex(mcrypt_create_iv(12, MCRYPT_DEV_URANDOM));
|
|
$f3->set(self::SESSION_KEY_SSO_STATE, $state);
|
|
|
|
$urlParams = [
|
|
'response_type' => 'code',
|
|
'redirect_uri' => Controller\Controller::getEnvironmentData('URL') . $f3->build('/sso/callbackAuthorization'),
|
|
'client_id' => Controller\Controller::getEnvironmentData('SSO_CCP_CLIENT_ID'),
|
|
'scope' => implode(' ', $this->requestScopes),
|
|
'state' => $state
|
|
];
|
|
|
|
$ssoAuthUrl = self::getAuthorizationEndpoint() . '?' . http_build_query($urlParams, '', '&', PHP_QUERY_RFC3986 );
|
|
|
|
$f3->status(302);
|
|
$f3->reroute($ssoAuthUrl);
|
|
}else{
|
|
// SSO clientId missing
|
|
$f3->set(self::SESSION_KEY_SSO_ERROR, self::ERROR_CCP_CLIENT_ID);
|
|
self::getCrestLogger()->write(self::ERROR_CCP_CLIENT_ID);
|
|
|
|
$f3->reroute('@login');
|
|
}
|
|
}
|
|
|
|
/**
|
|
* callback handler for CCP SSO user Auth
|
|
* -> see requestAuthorization()
|
|
* @param \Base $f3
|
|
*/
|
|
public function callbackAuthorization($f3){
|
|
$getParams = (array)$f3->get('GET');
|
|
|
|
// users can log in either from @login (new user) or @map (existing user) root alias
|
|
// -> in case login fails, users should be redirected differently
|
|
$authFromMapAlias = false;
|
|
|
|
if($f3->exists(self::SESSION_KEY_SSO_STATE)){
|
|
// check response and validate 'state'
|
|
if(
|
|
isset($getParams['code']) &&
|
|
isset($getParams['state']) &&
|
|
!empty($getParams['code']) &&
|
|
!empty($getParams['state']) &&
|
|
$f3->get(self::SESSION_KEY_SSO_STATE) === $getParams['state']
|
|
){
|
|
// $requestedCharacterId can be [-1 => add char, 0 => new user, >0 => specific user]
|
|
$requiredCharacterId = (int)$f3->get(self::SESSION_KEY_SSO_CHARACTER_ID);
|
|
if($requiredCharacterId !== 0){
|
|
$authFromMapAlias = true;
|
|
}
|
|
|
|
// clear 'state' for new next login request
|
|
$f3->clear(self::SESSION_KEY_SSO_STATE);
|
|
$f3->clear(self::SESSION_KEY_SSO_CHARACTER_ID);
|
|
|
|
$accessData = $this->getCrestAccessData($getParams['code']);
|
|
|
|
if(
|
|
isset($accessData->accessToken) &&
|
|
isset($accessData->refreshToken)
|
|
){
|
|
// login succeeded -> get basic character data for current login
|
|
$verificationCharacterData = $this->verifyCharacterData($accessData->accessToken);
|
|
|
|
if( !is_null($verificationCharacterData)){
|
|
|
|
// check if login is restricted to a characterID
|
|
if(
|
|
$requiredCharacterId <= 0 ||
|
|
$verificationCharacterData->CharacterID === $requiredCharacterId
|
|
){
|
|
// verification available data. Data is needed for "ownerHash" check
|
|
|
|
// get character data from CREST
|
|
$characterData = $this->getCharacterData($accessData->accessToken);
|
|
|
|
if( isset($characterData->character) ){
|
|
// add "ownerHash" and CREST tokens
|
|
$characterData->character['ownerHash'] = $verificationCharacterData->CharacterOwnerHash;
|
|
$characterData->character['crestAccessToken'] = $accessData->accessToken;
|
|
$characterData->character['crestRefreshToken'] = $accessData->refreshToken;
|
|
|
|
// add/update static character data
|
|
$characterModel = $this->updateCharacter($characterData);
|
|
|
|
if( !is_null($characterModel) ){
|
|
// check if character is authorized to log in
|
|
if($characterModel->isAuthorized()){
|
|
|
|
// character is authorized to log in
|
|
// -> update character log (current location,...)
|
|
$characterModel = $characterModel->updateLog();
|
|
|
|
// check if there is already an active user logged in
|
|
if($activeCharacter = $this->getCharacter()){
|
|
// connect character with current user
|
|
$user = $activeCharacter->getUser();
|
|
}elseif( is_null( $user = $characterModel->getUser()) ){
|
|
// no user found (new character) -> create new user and connect to character
|
|
$user = Model\BasicModel::getNew('UserModel');
|
|
$user->name = $characterModel->name;
|
|
$user->save();
|
|
}
|
|
|
|
/**
|
|
* @var $userCharactersModel Model\UserCharacterModel
|
|
*/
|
|
if( is_null($userCharactersModel = $characterModel->userCharacter) ){
|
|
$userCharactersModel = Model\BasicModel::getNew('UserCharacterModel');
|
|
$userCharactersModel->characterId = $characterModel;
|
|
}
|
|
|
|
// user might have changed
|
|
$userCharactersModel->userId = $user;
|
|
$userCharactersModel->save();
|
|
|
|
// get updated character model
|
|
$characterModel = $userCharactersModel->getCharacter();
|
|
|
|
// login by character
|
|
$loginCheck = $this->loginByCharacter($characterModel);
|
|
|
|
if($loginCheck){
|
|
// set "login" cookie
|
|
$this->setLoginCookie($characterModel);
|
|
|
|
// route to "map"
|
|
$f3->reroute('@map');
|
|
}else{
|
|
$f3->set(self::SESSION_KEY_SSO_ERROR, sprintf(self::ERROR_LOGIN_FAILED, $characterModel->name));
|
|
}
|
|
}else{
|
|
// character is not authorized to log in
|
|
$f3->set(self::SESSION_KEY_SSO_ERROR, sprintf(self::ERROR_CHARACTER_FORBIDDEN, $characterModel->name));
|
|
}
|
|
}
|
|
}
|
|
}else{
|
|
// characterID is not allowed to login
|
|
$f3->set(self::SESSION_KEY_SSO_ERROR, sprintf(self::ERROR_CHARACTER_MISMATCH, $verificationCharacterData->CharacterName));
|
|
}
|
|
}
|
|
}else{
|
|
// CREST "accessData" missing (e.g. timeout)
|
|
$f3->set(self::SESSION_KEY_SSO_ERROR, sprintf(self::ERROR_SERVICE_TIMEOUT, self::CREST_TIMEOUT));
|
|
}
|
|
}
|
|
}
|
|
|
|
if($authFromMapAlias){
|
|
// on error -> route back to map
|
|
$f3->reroute('@map');
|
|
}else{
|
|
// on error -> route back to login form
|
|
$f3->reroute('@login');
|
|
}
|
|
}
|
|
|
|
/**
|
|
* login by cookie
|
|
* @param \Base $f3
|
|
*/
|
|
public function login(\Base $f3){
|
|
$data = (array)$f3->get('GET');
|
|
$character = null;
|
|
|
|
if( !empty($data['cookie']) ){
|
|
if( !empty($cookieData = $this->getCookieByName($data['cookie']) )){
|
|
// cookie data is valid -> validate data against DB (security check!)
|
|
if( !empty($characters = $this->getCookieCharacters(array_slice($cookieData, 0, 1, true))) ){
|
|
// character is valid and allowed to login
|
|
$character = $characters[$data['cookie']];
|
|
}
|
|
}
|
|
}
|
|
|
|
if( is_object($character)){
|
|
// login by character
|
|
$loginCheck = $this->loginByCharacter($character);
|
|
if($loginCheck){
|
|
// route to "map"
|
|
$f3->reroute('@map');
|
|
}
|
|
}
|
|
|
|
// on error -> route back to login form
|
|
$f3->set(self::SESSION_KEY_SSO_ERROR, self::ERROR_COOKIE_LOGIN);
|
|
$f3->reroute('@login');
|
|
}
|
|
|
|
/**
|
|
* get a valid "access_token" for oAuth 2.0 verification
|
|
* -> if $authCode is set -> request NEW "access_token"
|
|
* -> else check for existing (not expired) "access_token"
|
|
* -> else try to refresh auth and get fresh "access_token"
|
|
* @param bool $authCode
|
|
* @return null|\stdClass
|
|
*/
|
|
public function getCrestAccessData($authCode){
|
|
$accessData = null;
|
|
|
|
if( !empty($authCode) ){
|
|
// Authentication Code is set -> request new "accessToken"
|
|
$accessData = $this->verifyAuthorizationCode($authCode);
|
|
}else{
|
|
// Unable to get Token -> trigger error
|
|
self::getCrestLogger()->write(sprintf(self::ERROR_ACCESS_TOKEN, $authCode));
|
|
}
|
|
|
|
return $accessData;
|
|
}
|
|
|
|
/**
|
|
* verify authorization code, and get an "access_token" data
|
|
* @param $authCode
|
|
* @return \stdClass
|
|
*/
|
|
protected function verifyAuthorizationCode($authCode){
|
|
$requestParams = [
|
|
'grant_type' => 'authorization_code',
|
|
'code' => $authCode
|
|
];
|
|
|
|
return $this->requestAccessData($requestParams);
|
|
}
|
|
|
|
/**
|
|
* get new "access_token" by an existing "refresh_token"
|
|
* -> if "access_token" is expired, this function gets a fresh one
|
|
* @param $refreshToken
|
|
* @return \stdClass
|
|
*/
|
|
public function refreshAccessToken($refreshToken){
|
|
$requestParams = [
|
|
'grant_type' => 'refresh_token',
|
|
'refresh_token' => $refreshToken
|
|
];
|
|
|
|
return $this->requestAccessData($requestParams);
|
|
}
|
|
|
|
/**
|
|
* request an "access_token" AND "refresh_token" data
|
|
* -> this can either be done by sending a valid "authorization code"
|
|
* OR by providing a valid "refresh_token"
|
|
* @param $requestParams
|
|
* @return \stdClass
|
|
*/
|
|
protected function requestAccessData($requestParams){
|
|
$verifyAuthCodeUrl = self::getVerifyAuthorizationCodeEndpoint();
|
|
$verifyAuthCodeUrlParts = parse_url($verifyAuthCodeUrl);
|
|
|
|
$accessData = (object) [];
|
|
$accessData->accessToken = null;
|
|
$accessData->refreshToken = null;
|
|
|
|
if($verifyAuthCodeUrlParts){
|
|
$contentType = 'application/x-www-form-urlencoded';
|
|
$requestOptions = [
|
|
'timeout' => self::CREST_TIMEOUT,
|
|
'method' => 'POST',
|
|
'user_agent' => $this->getUserAgent(),
|
|
'header' => [
|
|
'Authorization: Basic ' . $this->getAuthorizationHeader(),
|
|
'Content-Type: ' . $contentType,
|
|
'Host: ' . $verifyAuthCodeUrlParts['host']
|
|
]
|
|
];
|
|
|
|
// content (parameters to send with)
|
|
$requestOptions['content'] = http_build_query($requestParams);
|
|
|
|
$apiResponse = Lib\Web::instance()->request($verifyAuthCodeUrl, $requestOptions);
|
|
|
|
if($apiResponse['body']){
|
|
$authCodeRequestData = json_decode($apiResponse['body'], true);
|
|
|
|
if( !empty($authCodeRequestData) ){
|
|
if( isset($authCodeRequestData['access_token']) ){
|
|
// this token is required for endpoints that require Auth
|
|
$accessData->accessToken = $authCodeRequestData['access_token'];
|
|
}
|
|
|
|
if(isset($authCodeRequestData['refresh_token'])){
|
|
// this token is used to refresh/get a new access_token when expires
|
|
$accessData->refreshToken = $authCodeRequestData['refresh_token'];
|
|
}
|
|
}
|
|
}else{
|
|
self::getCrestLogger()->write(
|
|
sprintf(
|
|
self::ERROR_ACCESS_TOKEN,
|
|
print_r($requestParams, true)
|
|
)
|
|
);
|
|
}
|
|
}else{
|
|
self::getCrestLogger()->write(
|
|
sprintf(self::ERROR_CCP_SSO_URL, __METHOD__)
|
|
);
|
|
}
|
|
|
|
return $accessData;
|
|
}
|
|
|
|
/**
|
|
* verify character data by "access_token"
|
|
* -> get some basic information (like character id)
|
|
* -> if more character information is required, use CREST endpoints request instead
|
|
* @param $accessToken
|
|
* @return mixed|null
|
|
*/
|
|
public function verifyCharacterData($accessToken){
|
|
$verifyUserUrl = self::getVerifyUserEndpoint();
|
|
$verifyUrlParts = parse_url($verifyUserUrl);
|
|
$characterData = null;
|
|
|
|
if($verifyUrlParts){
|
|
$requestOptions = [
|
|
'timeout' => self::CREST_TIMEOUT,
|
|
'method' => 'GET',
|
|
'user_agent' => $this->getUserAgent(),
|
|
'header' => [
|
|
'Authorization: Bearer ' . $accessToken,
|
|
'Host: ' . $verifyUrlParts['host']
|
|
]
|
|
];
|
|
|
|
$apiResponse = Lib\Web::instance()->request($verifyUserUrl, $requestOptions);
|
|
|
|
if($apiResponse['body']){
|
|
$characterData = json_decode($apiResponse['body']);
|
|
}else{
|
|
self::getCrestLogger()->write(sprintf(self::ERROR_VERIFY_CHARACTER, __METHOD__));
|
|
}
|
|
}else{
|
|
self::getCrestLogger()->write(sprintf(self::ERROR_CCP_SSO_URL, __METHOD__));
|
|
}
|
|
|
|
return $characterData;
|
|
}
|
|
|
|
/**
|
|
* get all available Endpoints
|
|
* @param $accessToken
|
|
* @param array $additionalOptions
|
|
* @return mixed|null
|
|
*/
|
|
protected function getEndpoints($accessToken, $additionalOptions = []){
|
|
$crestUrl = self::getCrestEndpoint();
|
|
$additionalOptions['contentType'] = 'application/vnd.ccp.eve.Api-v3+json';
|
|
$endpoint = $this->getEndpoint($accessToken, $crestUrl, $additionalOptions);
|
|
|
|
return $endpoint;
|
|
}
|
|
|
|
/**
|
|
* get a specific endpoint by its $resourceUrl
|
|
* @param string $accessToken CREST access token
|
|
* @param string $resourceUrl endpoint API url
|
|
* @param array $additionalOptions optional request options (pathfinder specific)
|
|
* @return mixed|null
|
|
*/
|
|
protected function getEndpoint($accessToken, $resourceUrl, $additionalOptions = []){
|
|
$resourceUrlParts = parse_url($resourceUrl);
|
|
$endpoint = null;
|
|
|
|
if($resourceUrlParts){
|
|
$requestOptions = [
|
|
'timeout' => self::CREST_TIMEOUT,
|
|
'method' => 'GET',
|
|
'user_agent' => $this->getUserAgent(),
|
|
'header' => [
|
|
'Authorization: Bearer ' . $accessToken,
|
|
'Host: login.eveonline.com',
|
|
'Host: ' . $resourceUrlParts['host']
|
|
]
|
|
];
|
|
|
|
// if specific contentType is required -> add it to request header
|
|
// CREST versioning can be done by calling different "Accept:" Headers
|
|
if( isset($additionalOptions['contentType']) ){
|
|
$requestOptions['header'][] = 'Accept: ' . $additionalOptions['contentType'];
|
|
}
|
|
|
|
$apiResponse = Lib\Web::instance()->request($resourceUrl, $requestOptions, $additionalOptions);
|
|
|
|
if(
|
|
$apiResponse['timeout'] === false &&
|
|
$apiResponse['headers']
|
|
){
|
|
// check headers for error
|
|
$this->checkResponseHeaders($apiResponse['headers'], $requestOptions);
|
|
|
|
if($apiResponse['body']){
|
|
$endpoint = json_decode($apiResponse['body'], true);
|
|
}else{
|
|
self::getCrestLogger()->write(sprintf(self::ERROR_GET_ENDPOINT, __METHOD__));
|
|
}
|
|
}
|
|
}else{
|
|
self::getCrestLogger()->write(sprintf(self::ERROR_CCP_CREST_URL, __METHOD__));
|
|
}
|
|
|
|
return $endpoint;
|
|
}
|
|
|
|
/**
|
|
* recursively walk down the CREST API tree by a given $path array
|
|
* -> return "leaf" endpoint
|
|
* @param $accessToken
|
|
* @param $endpoint
|
|
* @param array $path
|
|
* @param array $additionalOptions
|
|
* @return null
|
|
*/
|
|
protected function walkEndpoint($accessToken, $endpoint, $path = [], $additionalOptions = []){
|
|
$targetEndpoint = null;
|
|
|
|
if( !empty($path) ){
|
|
$newNode = array_shift($path);
|
|
if(isset($endpoint[$newNode])){
|
|
$currentEndpoint = $endpoint[$newNode];
|
|
if(isset($currentEndpoint['href'])){
|
|
$newEndpoint = $this->getEndpoint($accessToken, $currentEndpoint['href'], $additionalOptions);
|
|
$targetEndpoint = $this->walkEndpoint($accessToken, $newEndpoint, $path, $additionalOptions);
|
|
}else{
|
|
// leaf found
|
|
$targetEndpoint = $currentEndpoint;
|
|
}
|
|
}else{
|
|
// endpoint not found
|
|
self::getCrestLogger()->write(sprintf(self::ERROR_FIND_ENDPOINT, $newNode));
|
|
}
|
|
}else{
|
|
$targetEndpoint = $endpoint;
|
|
}
|
|
|
|
return $targetEndpoint;
|
|
}
|
|
|
|
/**
|
|
* get character data
|
|
* @param $accessToken
|
|
* @param array $additionalOptions
|
|
* @return object
|
|
*/
|
|
public function getCharacterData($accessToken, $additionalOptions = []){
|
|
$endpoints = $this->getEndpoints($accessToken, $additionalOptions);
|
|
$characterData = (object) [];
|
|
|
|
$endpoint = $this->walkEndpoint($accessToken, $endpoints, [
|
|
'decode',
|
|
'character'
|
|
], $additionalOptions);
|
|
|
|
if( !empty($endpoint) ){
|
|
$characterData->character = (new Mapper\CrestCharacter($endpoint))->getData();
|
|
if(isset($endpoint['corporation'])){
|
|
$characterData->corporation = (new Mapper\CrestCorporation($endpoint['corporation']))->getData();
|
|
}
|
|
}
|
|
|
|
return $characterData;
|
|
}
|
|
|
|
/**
|
|
* get current character location data (result is cached!)
|
|
* -> solarSystem data where character is currently active
|
|
* @param $accessToken
|
|
* @param int $ttl
|
|
* @param array $additionalOptions
|
|
* @return array|mixed
|
|
*/
|
|
public function getCharacterLocationData($accessToken, $ttl = 10, $additionalOptions = []){
|
|
// null == CREST call failed (e.g. timeout)
|
|
$locationData = [
|
|
'timeout' => false
|
|
];
|
|
|
|
// in addition to the cURL caching (based on cache-control headers,
|
|
// the final location data is cached additionally -> speed up
|
|
$cacheKey = sprintf(self::CACHE_KEY_LOCATION_DATA, 'TOKEN_' . hash('md5', $accessToken));
|
|
|
|
if( !$this->getF3()->exists($cacheKey) ){
|
|
$endpoints = $this->getEndpoints($accessToken, $additionalOptions);
|
|
|
|
$endpoint = $this->walkEndpoint($accessToken, $endpoints, [
|
|
'decode',
|
|
'character',
|
|
'location'
|
|
], $additionalOptions);
|
|
|
|
if( !is_null($endpoint) ){
|
|
// request succeeded (e.g. no timeout)
|
|
|
|
if(isset($endpoint['solarSystem'])){
|
|
$locationData['system'] = (new Mapper\CrestSystem($endpoint['solarSystem']))->getData();
|
|
}
|
|
|
|
if(isset($endpoint['station'])){
|
|
$locationData['station'] = (new Mapper\CrestStation($endpoint['station']))->getData();
|
|
}
|
|
|
|
$this->getF3()->set($cacheKey, $locationData, $ttl);
|
|
}else{
|
|
// timeout
|
|
$locationData['timeout'] = true;
|
|
}
|
|
|
|
}else{
|
|
$locationData = $this->getF3()->get($cacheKey);
|
|
}
|
|
|
|
return $locationData;
|
|
}
|
|
|
|
/**
|
|
* update character
|
|
* @param $characterData
|
|
* @return \Model\CharacterModel
|
|
* @throws \Exception
|
|
*/
|
|
protected function updateCharacter($characterData){
|
|
|
|
$characterModel = null;
|
|
$corporationModel = null;
|
|
$allianceModel = null;
|
|
|
|
if( isset($characterData->corporation) ){
|
|
/**
|
|
* @var Model\CorporationModel $corporationModel
|
|
*/
|
|
$corporationModel = Model\BasicModel::getNew('CorporationModel');
|
|
$corporationModel->getById($characterData->corporation['id'], 0);
|
|
$corporationModel->copyfrom($characterData->corporation);
|
|
$corporationModel->save();
|
|
}
|
|
|
|
if( isset($characterData->alliance) ){
|
|
/**
|
|
* @var Model\AllianceModel $allianceModel
|
|
*/
|
|
$allianceModel = Model\BasicModel::getNew('AllianceModel');
|
|
$allianceModel->getById($characterData->alliance['id'], 0);
|
|
$allianceModel->copyfrom($characterData->alliance);
|
|
$allianceModel->save();
|
|
}
|
|
|
|
if( isset($characterData->character) ){
|
|
/**
|
|
* @var Model\CharacterModel $characterModel
|
|
*/
|
|
$characterModel = Model\BasicModel::getNew('CharacterModel');
|
|
$characterModel->getById($characterData->character['id'], 0);
|
|
$characterModel->copyfrom($characterData->character);
|
|
$characterModel->corporationId = $corporationModel;
|
|
$characterModel->allianceId = $allianceModel;
|
|
$characterModel = $characterModel->save();
|
|
}
|
|
|
|
return $characterModel;
|
|
}
|
|
|
|
/**
|
|
* check response "Header" data for errors
|
|
* @param $headers
|
|
* @param string $requestUrl
|
|
* @param string $contentType
|
|
*/
|
|
protected function checkResponseHeaders($headers, $requestUrl = '', $contentType = ''){
|
|
$headers = (array)$headers;
|
|
if(preg_grep ('/^X-Deprecated/i', $headers)){
|
|
self::getCrestLogger()->write(sprintf(self::ERROR_RESOURCE_DEPRECATED, $requestUrl, $contentType));
|
|
}
|
|
}
|
|
|
|
/**
|
|
* get "Authorization:" Header data
|
|
* -> This header is required for any Auth-required endpoints!
|
|
* @return string
|
|
*/
|
|
protected function getAuthorizationHeader(){
|
|
return base64_encode(
|
|
Controller\Controller::getEnvironmentData('SSO_CCP_CLIENT_ID') . ':'
|
|
. Controller\Controller::getEnvironmentData('SSO_CCP_SECRET_KEY')
|
|
);
|
|
}
|
|
|
|
/**
|
|
* get CCP CREST url from configuration file
|
|
* -> throw error if url is broken/missing
|
|
* @return string
|
|
*/
|
|
static function getCrestEndpoint(){
|
|
$url = '';
|
|
if( \Audit::instance()->url(self::getEnvironmentData('CCP_CREST_URL')) ){
|
|
$url = self::getEnvironmentData('CCP_CREST_URL');
|
|
}else{
|
|
$error = sprintf(self::ERROR_CCP_CREST_URL, __METHOD__);
|
|
self::getCrestLogger()->write($error);
|
|
\Base::instance()->error(502, $error);
|
|
}
|
|
|
|
return $url;
|
|
}
|
|
|
|
/**
|
|
* get CCP SSO url from configuration file
|
|
* -> throw error if url is broken/missing
|
|
* @return string
|
|
*/
|
|
static function getSsoUrlRoot(){
|
|
$url = '';
|
|
if( \Audit::instance()->url(self::getEnvironmentData('SSO_CCP_URL')) ){
|
|
$url = self::getEnvironmentData('SSO_CCP_URL');
|
|
}else{
|
|
$error = sprintf(self::ERROR_CCP_SSO_URL, __METHOD__);
|
|
self::getCrestLogger()->write($error);
|
|
\Base::instance()->error(502, $error);
|
|
}
|
|
|
|
return $url;
|
|
}
|
|
|
|
static function getAuthorizationEndpoint(){
|
|
return self::getSsoUrlRoot() . '/oauth/authorize';
|
|
}
|
|
|
|
static function getVerifyAuthorizationCodeEndpoint(){
|
|
return self::getSsoUrlRoot() . '/oauth/token';
|
|
}
|
|
|
|
static function getVerifyUserEndpoint(){
|
|
return self::getSsoUrlRoot() . '/oauth/verify';
|
|
}
|
|
|
|
/**
|
|
* get logger for CREST logging
|
|
* @return \Log
|
|
*/
|
|
static function getCrestLogger(){
|
|
return parent::getLogger('crest');
|
|
}
|
|
} |