59 lines
1.3 KiB
PHP
59 lines
1.3 KiB
PHP
<?php
|
|
|
|
namespace Laravel\Socialite\Two;
|
|
|
|
class GitlabProvider extends AbstractProvider implements ProviderInterface
|
|
{
|
|
/**
|
|
* {@inheritdoc}
|
|
*/
|
|
protected function getAuthUrl($state)
|
|
{
|
|
return $this->buildAuthUrlFromBase('https://gitlab.com/oauth/authorize', $state);
|
|
}
|
|
|
|
/**
|
|
* {@inheritdoc}
|
|
*/
|
|
protected function getTokenUrl()
|
|
{
|
|
return 'https://gitlab.com/oauth/token';
|
|
}
|
|
|
|
/**
|
|
* {@inheritdoc}
|
|
*/
|
|
protected function getUserByToken($token)
|
|
{
|
|
$userUrl = 'https://gitlab.com/api/v3/user?access_token='.$token;
|
|
|
|
$response = $this->getHttpClient()->get($userUrl);
|
|
|
|
$user = json_decode($response->getBody(), true);
|
|
|
|
return $user;
|
|
}
|
|
|
|
/**
|
|
* {@inheritdoc}
|
|
*/
|
|
protected function mapUserToObject(array $user)
|
|
{
|
|
return (new User)->setRaw($user)->map([
|
|
'id' => $user['id'],
|
|
'nickname' => $user['username'],
|
|
'name' => $user['name'],
|
|
'email' => $user['email'],
|
|
'avatar' => $user['avatar_url'],
|
|
]);
|
|
}
|
|
|
|
/**
|
|
* {@inheritdoc}
|
|
*/
|
|
protected function getTokenFields($code)
|
|
{
|
|
return parent::getTokenFields($code) + ['grant_type' => 'authorization_code'];
|
|
}
|
|
}
|