forked from omair445/Instagram
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathProvider.php
More file actions
134 lines (115 loc) · 2.98 KB
/
Copy pathProvider.php
File metadata and controls
134 lines (115 loc) · 2.98 KB
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
<?php
namespace SocialiteProviders\Instagram;
use SocialiteProviders\Manager\OAuth2\AbstractProvider;
use SocialiteProviders\Manager\OAuth2\User;
class Provider extends AbstractProvider
{
/**
* Unique Provider Identifier.
*/
const IDENTIFIER = 'INSTAGRAM';
/**
* {@inheritdoc}
*/
protected $scopeSeparator = ' ';
/**
* {@inheritdoc}
*/
protected $scopes = ['basic'];
/**
* {@inheritdoc}
*/
protected function getAuthUrl($state)
{
return $this->buildAuthUrlFromBase(
'https://api.instagram.com/oauth/authorize', $state
);
}
/**
* Set the user fields to request from Instagram.
*
* @param array $fields
* @return $this
*/
public function fields(array $fields)
{
$this->fields = $fields;
return $this;
}
/**
* {@inheritdoc}
*/
protected function getTokenUrl()
{
return 'https://api.instagram.com/oauth/access_token';
}
/**
* {@inheritdoc}
*/
protected function getUserByToken($token)
{
$endpoint = '/users/self';
$query = [
'access_token' => $token,
];
$signature = $this->generateSignature($endpoint, $query);
$query['sig'] = $signature;
$response = $this->getHttpClient()->get(
'https://api.instagram.com/v1/users/self', [
'query' => $query,
'headers' => [
'Accept' => 'application/json',
],
]);
return json_decode($response->getBody()->getContents(), true)['data'];
}
/**
* {@inheritdoc}
*/
protected function mapUserToObject(array $user)
{
return (new User())->setRaw($user)->map([
'id' => $user['id'], 'nickname' => $user['username'],
'name' => null, 'email' => null,
'avatar' => null
]);
}
/**
* {@inheritdoc}
*/
public function getAccessToken($code)
{
$response = $this->getHttpClient()->post($this->getTokenUrl(), [
'form_params' => $this->getTokenFields($code),
]);
$this->credentialsResponseBody = json_decode($response->getBody(), true);
return $this->parseAccessToken($response->getBody());
}
/**
* {@inheritdoc}
*/
protected function getTokenFields($code)
{
return array_merge(parent::getTokenFields($code), [
'grant_type' => 'authorization_code',
]);
}
/**
* Allows compatibility for signed API requests.
*
* @param string @endpoint
* @param array $params
*
* @return string
*/
protected function generateSignature($endpoint, array $params)
{
$sig = $endpoint;
ksort($params);
foreach ($params as $key => $val) {
$sig .= "|$key=$val";
}
$signing_key = $this->clientSecret;
return hash_hmac('sha256', $sig, $signing_key, false);
}
}