socialAuthOAuth20Yandex.class.php
6.33 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
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
<?php
/**
* socialAuthOAuth20Yandex Class
*
* @author Roman
* @version 1.0.20111011
*/
class socialAuthOAuth20Yandex extends socialAuthOAuth20
{
///////////////////////////////////////////////////////////////////////////
public function __construct( $settings )
{
$this->settings = $settings;
}
///////////////////////////////////////////////////////////////////////////
// inherits: init()
// inherits: requestToken()
// inherits: authorize()
// inherits: accessToken()
// inherits: fetchProfileInfo()
// inherits: getProfileInfo()
///////////////////////////////////////////////////////////////////////////
protected function accessToken()
{
if( !isset($_GET['state']) || !isset($_SESSION['state']) || trim($_GET['state'])!=$_SESSION['state'] )
{
throw new kException( core::i18n( 'w23_error_csrf_attack' ) );
}
$ch = curl_init( $this->settings['access_token_uri'] );
curl_setopt( $ch, CURLOPT_POST, 1 );
curl_setopt( $ch, CURLOPT_POSTFIELDS,
'grant_type=authorization_code'.
'&client_id='.$this->settings['client_id'].
'&client_secret='.$this->settings['client_secret'].
'&redirect_uri='.urlencode($this->settings['redirect_uri']).
'&code='.trim( $_GET['code'] )
);
curl_setopt( $ch, CURLOPT_FOLLOWLOCATION, 1 );
curl_setopt( $ch, CURLOPT_RETURNTRANSFER, 1 );
$data = json_decode( curl_exec($ch), true );
curl_close($ch);
if( isset($data['error']) || !isset($data['access_token']) )
{
throw new kException( ( isset($data['error_description']) && strlen($data['error_description'])>0 ? trim($data['error_description']) : core::i18n( 'w23_error_unknown' ) ) );
}
return $data;
}
///////////////////////////////////////////////////////////////////////////
protected function fetchProfileInfo( $data = array() )
{
$ch = curl_init( $this->settings['profile_uri'] );
curl_setopt( $ch, CURLOPT_FOLLOWLOCATION, 1 );
curl_setopt( $ch, CURLOPT_RETURNTRANSFER, 1 );
curl_setopt( $ch, CURLOPT_HTTPHEADER, array( 'Authorization: OAuth '.trim( $data['access_token'] ) ) );
$xml_file = curl_exec($ch);
curl_close($ch);
$xml_file = trim($xml_file);
if( strpos( $xml_file, '<' )!==false )
{
$doc = simplexml_load_string( $xml_file );
if( $doc )
{
$data = array(
'id' => strval($doc->id),
'login' => strval($doc->id),
'email' => ( isset($doc->email) ? strval($doc->email) : strval($doc->id).'@yandex.ru' ),
'email_fake' => strval($doc->id).'@yandex.ru',
'name' => ( isset($doc->name) ? strval($doc->name) : strval($doc->id) ),
'gender' => ( isset($doc->sex) ? ( strval($doc->sex)=='man' ? 1 : 0 ) : null ),
'bithday' => date( 'Y-m-d', strtotime(strval($doc->birth_year).'-'.strval($doc->birth_month).'-'.strval($doc->birth_day)) ),
'city' => ( isset($doc->city) ? strval($doc->city) : '' ),
'country' => ( isset($doc->country) ? strval($doc->country) : '' ),
'contact_icq' => ( isset($doc->icq) ? strval($doc->icq) : null ),
'contact_skype' => ( isset($doc->skype) ? strval($doc->skype) : null ),
'contact_gtalk' => ( isset($doc->{'g-talk'}) ? strval($doc->{'g-talk'}) : null ),
'contact_mailru' => ( isset($doc->{'m-agent'}) ? strval($doc->{'m-agent'}) : null ),
'website' => ( isset($doc->website) ? strval($doc->website) : '' ),
);
}
else
{
throw new kException( core::i18n( 'w23_error_unknown' ) );
}
}
else
{
throw new kException( strip_tags( $xml_file ) );
}
return $data;
}
///////////////////////////////////////////////////////////////////////////
protected function getProfileInfo( $data = array() )
{
if( empty($data) )
{
return false;
}
return
socialAuth::userLoginOrRegisterIfNotExists(
array(
'login' => 'yandex__'.$data['login'],
'email' => $data['email_fake'],
'name' => $data['name'],
'bithday' => $data['bithday'],
'gender' => $data['gender'],
'region_id' => null,
'about_me' => null,
'interests' => null,
'vote' => null,
'contact_icq' => $data['contact_icq'],
'options' => etc::arr2hstore(
array(
'is_social' => 1,
'id' => $data['id'],
'email' => $data['email'],
'name' => $data['name'],
'city' => $data['city'],
'country' => $data['country'],
'contact_icq' => $data['contact_icq'],
'contact_skype' => $data['contact_skype'],
'contact_gtalk' => $data['contact_gtalk'],
'contact_mailru' => $data['contact_mailru'],
'website' => $data['website'],
)
),
)
);
}
///////////////////////////////////////////////////////////////////////////
}