forked from bigfa/wp-oauth
-
Notifications
You must be signed in to change notification settings - Fork 0
/
weibo.php
88 lines (76 loc) · 3.19 KB
/
weibo.php
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
<?php
define('WB_APPID','');//appkey
define('WB_APPSECRET','');//appsecret
function wb_ouath_redirect(){
echo '<script>if( window.opener ) {window.opener.location.reload();
window.close();
}else{
window.location.href = "'.home_url().'";
}</script>';
}
function weibo_oauth(){
$code = $_GET['code'];
$url = "https://api.weibo.com/oauth2/access_token";
$data = array('client_id' => WB_APPID,
'client_secret' => WB_APPSECRET,
'grant_type' => 'authorization_code',
'redirect_uri' => home_url(),
'code' => $code);
$response = wp_remote_post( $url, array(
'method' => 'POST',
'body' => $data,
)
);
$output = json_decode($response['body'],true);
$sina_access_token = $output['access_token'];
$sina_uid = $output['uid'];
if(empty($sina_uid)){
wp_redirect(home_url('/?3'.$sina_uid));
exit;
}
$get_user_info = "https://api.weibo.com/2/users/show.json?uid=".$sina_uid."&access_token=".$sina_access_token;
$data = wp_remote_get( $get_user_info );
$str = json_decode($data['body'] , true);
$username = $str['screen_name'];
$avatar = $str['profile_image_url'];
if(is_user_logged_in()){
$this_user = wp_get_current_user();
update_user_meta($this_user->ID ,"sina_uid",$sina_uid);
update_user_meta($this_user->ID ,"sina_access_token",$sina_access_token);
update_user_meta($this_user->ID ,"sina_avatar",$str['profile_image_url']);
wb_ouath_redirect();
}else{
$user_weibo = get_users(array("meta_key "=>"sina_uid","meta_value"=>$sina_uid));
if(is_wp_error($user_weibo) || !count($user_weibo)){
$login_name = wp_create_nonce($sina_uid);
$random_password = wp_generate_password( $length=12, $include_standard_special_chars=false );
$userdata=array(
'user_login' => $login_name,
'display_name' => $username,
'user_pass' => $random_password,
'nick_name' => $username
);
$user_id = wp_insert_user( $userdata );
wp_signon(array("user_login"=>$login_name,"user_password"=>$random_password),false);
update_user_meta($user_id ,"sina_uid",$sina_uid);
update_user_meta($user_id ,"sina_access_token",$sina_access_token);
update_user_meta($user_id ,"sina_avatar",$str['profile_image_url']);
wb_ouath_redirect();
}else{
update_user_meta($user_weibo[0]->ID ,"sina_access_token",$sina_access_token);
update_user_meta($user_weibo[0]->ID ,"sina_avatar",$str['profile_image_url']);
wp_set_auth_cookie($user_weibo[0]->ID);
wb_ouath_redirect();
}
}
}
function social_oauth_weibo(){
if (isset($_GET['code']) && isset($_GET['type']) && $_GET['type'] == 'sina'){
weibo_oauth();
}
}
add_action('init','social_oauth_weibo');
function weibo_oauth_url(){
$url = 'https://api.weibo.com/oauth2/authorize?client_id=' . WB_APPID . '&response_type=code&redirect_uri=' . urlencode (home_url('/?type=sina'));
return $url;
}