/home/techb158/ileadtechnology.com/SSM/vendor/league/oauth1-client/src/Client/Server
Edit: /home/techb158/ileadtechnology.com/SSM/vendor/league/oauth1-client/src/Client/Server/Uservoice.php (2856B)
parseConfigurationArray($clientCredentials);
}
}
/**
* {@inheritDoc}
*/
public function urlTemporaryCredentials()
{
return $this->base.'/oauth/request_token';
}
/**
* {@inheritDoc}
*/
public function urlAuthorization()
{
return $this->base.'/oauth/authorize';
}
/**
* {@inheritDoc}
*/
public function urlTokenCredentials()
{
return $this->base.'/oauth/access_token';
}
/**
* {@inheritdoc}
*/
public function urlUserDetails()
{
return $this->base.'/api/v1/users/current.json';
}
/**
* {@inheritDoc}
*/
public function userDetails($data, TokenCredentials $tokenCredentials)
{
$user = new User();
$user->uid = $data['user']['id'];
$user->name = $data['user']['name'];
$user->imageUrl = $data['user']['avatar_url'];
$user->email = $data['user']['email'];
if ($data['user']['name']) {
$parts = explode(' ', $data['user']['name']);
if (count($parts) > 0) {
$user->firstName = $parts[0];
}
if (count($parts) > 1) {
$user->lastName = $parts[1];
}
}
$user->urls[] = $data['user']['url'];
return $user;
}
/**
* {@inheritdoc}
*/
public function userUid($data, TokenCredentials $tokenCredentials)
{
return $data['user']['id'];
}
/**
* {@inheritdoc}
*/
public function userEmail($data, TokenCredentials $tokenCredentials)
{
return $data['user']['email'];
}
/**
* {@inheritdoc}
*/
public function userScreenName($data, TokenCredentials $tokenCredentials)
{
return $data['user']['name'];
}
/**
* Parse configuration array to set attributes.
*
* @param array $configuration
*
* @throws InvalidArgumentException
*/
private function parseConfigurationArray(array $configuration = array())
{
if (isset($configuration['host'])) {
throw new InvalidArgumentException('Missing host');
}
$this->base = trim($configuration['host'], '/');
}
}