73 lines
1.8 KiB
PHP
73 lines
1.8 KiB
PHP
<?php
|
|
|
|
/*
|
|
* This file is part of the HWIOAuthBundle package.
|
|
*
|
|
* (c) Hardware Info <opensource@hardware.info>
|
|
*
|
|
* For the full copyright and license information, please view the LICENSE
|
|
* file that was distributed with this source code.
|
|
*/
|
|
|
|
namespace HWI\Bundle\OAuthBundle\OAuth\ResourceOwner;
|
|
|
|
use Symfony\Component\OptionsResolver\OptionsResolver;
|
|
|
|
/**
|
|
* @author Dmitry Matora <dmitry.matora@gmail.com>
|
|
*/
|
|
final class JawboneResourceOwner extends GenericOAuth2ResourceOwner
|
|
{
|
|
public const TYPE = 'jawbone';
|
|
|
|
/**
|
|
* {@inheritdoc}
|
|
*/
|
|
protected array $paths = [
|
|
'xid' => 'data.id',
|
|
'firstname' => 'data.first',
|
|
'lastname' => 'data.last',
|
|
'profilepicture' => 'data.image',
|
|
];
|
|
|
|
/**
|
|
* {@inheritdoc}
|
|
*/
|
|
public function revokeToken($accessToken)
|
|
{
|
|
$response = $this->getInformation($accessToken, 'PartnerAppMembership');
|
|
|
|
return 200 === $response->getStatusCode();
|
|
}
|
|
|
|
/**
|
|
* {@inheritdoc}
|
|
*/
|
|
public function getInformation($accessToken, $type, array $extraParameters = [])
|
|
{
|
|
$url = $this->normalizeUrl($this->options['infos_url'].'/'.$type, $extraParameters);
|
|
|
|
$headers = [
|
|
'Authorization' => 'Bearer '.$accessToken['access_token'],
|
|
'Accept' => 'application/json',
|
|
];
|
|
|
|
return $this->httpRequest($url, null, $headers);
|
|
}
|
|
|
|
/**
|
|
* {@inheritdoc}
|
|
*/
|
|
protected function configureOptions(OptionsResolver $resolver)
|
|
{
|
|
parent::configureOptions($resolver);
|
|
|
|
$resolver->setDefaults([
|
|
'authorization_url' => 'https://jawbone.com/auth/oauth2/auth',
|
|
'access_token_url' => 'https://jawbone.com/auth/oauth2/token',
|
|
'infos_url' => 'https://jawbone.com/nudge/api/v.1.0/users/@me',
|
|
'use_commas_in_scope' => true,
|
|
]);
|
|
}
|
|
}
|