-
Notifications
You must be signed in to change notification settings - Fork 0
/
provider.google.php
60 lines (48 loc) · 1.37 KB
/
provider.google.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
<?php
class socialxeProviderGoogle extends socialxeProvider{
//인스턴스
function getInstance(&$sessionManager){
static $instance;
if (!isset($instance)) $instance = new socialxeProviderGoogle($sessionManager);
return $instance;
}
//행성자
function socialxeProviderGoogle(&$sessionManager){
parent::socialxeProvider('google', $sessionManager);
}
/**
* socialxeserver 의 provider.google.php 에서 $info['account'] 에 박은 배열의 키 값을 참조한다.
*
* $info['account'] 에는 GoogleOauth2 객체가 리턴한 $user[] 가 있으며 해당 키 값이 $this->account->키값 형식
*/
//아이디
function getId(){
if (!$this->isLogged()) return;
return $this->account->id;
}
//닉네임
function getNickName(){
if (!$this->isLogged()) return;
return $this->account->name;
}
//프로필 이미지
function getProfileImage(){
if (!$this->isLogged()) return;
//echo $this->getAccount()->picture; //여기서는 db 에 등록된 social profile img url 을 가져온다.
return $this->account->picture;
}
//링크
function getAuthorLink($id, $nick_name){
if (!$this->isLogged()) return;
return $this->account->link;
}
// 리플 형식 반환
function getReplyPrefix($id, $nick_name){
return;
}
// 리플 형식이 포함되었는지 확인
function isContainReply($content){
return false;
}
}
?>