Source for file GOOGLE.php
Documentation is available at GOOGLE.php
* Project: GOOGLE:: Google oauth2 pear package<br>
* - {@link http://pear.oops.org/docs/li_HTTPRelay.html oops/HTTPRelay}
* - {@link http://pear.oops.org/docs/li_myException.html oops/myException}
* oops/GOOGLE pear package는 Google oauth2 login을 위한 pear package이다
* 이 package를 사용하기 위해서는 먼저 Google Developers Console 에서
* Applicaion ID와 Application Secret을 발급받아야 한다.
* https://developers.google.com/accounts/docs/OAuth2?hl=ko 를 참고하라.
* @subpackage oops\OAUTH2\GOOGLE
* @author JoungKyun.Kim <http://oops.org>
* @copyright (c) 2019, OOPS.org
* @example OAUTH2/tests/google.php GOOGLE pear package 예제 코드
require_once 'HTTPRelay.php';
* GOOGLE pear pcakge의 main class
* OAuth2를 이용하여 GOOGLE 로그인을 진행하고, 로그인된 사용자의
* @subpackage oops\OAUTH2\GOOGLE
* @author JoungKyun.Kim <http://oops.org>
* @copyright (c) 2019, OOPS.org
* @example OAUTH2/tests/google.php GOOGLE pear 예제 코드
private $sessid = '_OAUTH2_';
private $reqAuth = 'https://accounts.google.com/o/oauth2/auth';
private $reqToken = 'https://accounts.google.com/o/oauth2/token';
private $reqRevoke = 'https://accounts.google.com/o/oauth2/revoke';
private $reqUser = 'https://www.googleapis.com/userinfo/v2/me';
* @var stdClass memebr는 다음과 같음
* - id : Google login Application ID
* - secret : Google login Application Secret key
* - callback : 이 class를 호출하는 페이지
* GOOGLE 로그인에 필요한 session 값
// {{{ +-- public (void) __construct ($v)
* Google 로그인 인증 과정을 수행한다. 인증 과정 중에
* 에러가 발생하면 myException 으로 에러 메시지를
* logout 시에 globale 변수 $_OAUTH2_LOGOUT_TEMPALTE_ 로 사용자 logout template
* 을 지정할 수 있다. template 파일은 pear/OAUTH2/login-agree.template 를 참조하면 된다.
* - id 발급받은 Google login Application ID
* - secret 발급받은 Google login Application Scret key
* - callback 이 클래스가 호출되는 url
if ( ! isset ($_SESSION[$this->sessid]) ) {
$_SESSION[$this->sessid] = new \ stdClass;
$_SESSION[$this->sessid]->appId = (object) $v;
$this->sess = &$_SESSION[$this->sessid];
$this->apps = (object) $v;
if ( isset ($_SERVER['HTTPS']) )
if ( isset ($_GET['logout']) ) {
$this->reqAccessToken ();
// {{{ +-- private (string) mkToken (void)
private function mkToken () {
return md5 ($mt . $rand);
// {{{ +-- private (void) reqLogin (void)
private function reqLogin () {
$this->sess->state = $this->mkToken ();
if ( $_GET['code'] || isset ($this->sess->oauth) )
'%s?scope=email%%20profile&approval_prompt=force&' .
'client_id=%s&response_type=code&redirect_uri=%s&state=%s',
$this->reqAuth, $app->id,
Header ('Location: ' . $url);
// {{{ +-- private (void) reqAccessToken (void)
* Authorization code를 발급받아 session에 등록
* GOOGLE::$sess->oauth 를 stdClass로 생성하고 다음의
* - access_token: 발급받은 access token. expires_in(초) 이후 만료
* - refresh_token: access token 만료시 재발급 키 (14일 expire)
* - token_type: Bearer or MAC
* - expires_in: access token 유효시간(초)
* - error_description: error 상세값
private function reqAccessToken () {
if ( ! $_GET['code'] || isset ($sess->oauth) )
'client_secret' => $app->secret,
'redirect_uri' => $app->callback,
'grant_type' => 'authorization_code'
$buf = $http->fetch ($this->reqToken, 10, '', $post);
$this->error ($r->error_description);
$sess->oauth = (object) $r;
// {{{ +-- private (void) checkError (void)
private function checkError () {
$this->error ($_GET['error_description']);
if ( $_GET['state'] && $_GET['state'] != $sess->state )
$this->error ('Invalude Session state: ' . $_GET['state']);
// {{{ +-- private (void) error ($msg)
private function error ($msg) {
$msg = $_SERVER['HTTP_REFERER'] . "\n" . $msg;
// {{{ +-- private (string) redirectSelf (void)
* 현재 URL에 after argument를 set한다.
private function redirectSelf () {
if ( trim ($_SERVER['QUERY_STRING']) )
$qs = sprintf ('?%s&after', $_SERVER['QUERY_STRING']);
if ( ! $req ) $req = '/';
$this->proto, $_SERVER['HTTP_HOST'], $req, $qs
// {{{ +-- public (stdClass) Profile (void)
* 로그인 과정이 완료되면 발급받은 oops\OAUTH2\GOOGLE::$sess->oauth 에
* 등록된 키를 이용하여 로그인 사용자의 정보를 가져온다.
* @return stdClass 다음의 object를 반환
* - r Google profile 원본 값
if ( ! isset ($sess->oauth) )
$req = $sess->oauth->token_type . ' ' . $sess->oauth->access_token;
$header = array ('Authorization' => $req);
$buf = $http->fetch ($this->reqUser);
$this->error (sprintf ('[OAUTH2] Failed get user profile for %s', __CLASS__ ));
// {{{ +-- public (void) reqLogout (void)
* Google 로그인의 authorization key를 만료 시키고
* 세션에 등록된 정보(oops\OAUT2\GOOGLE::$sess)를 제거한다.
if ( ! isset ($sess->oauth) )
if ( ! isset ($_GET['after']) ) {
$post = array ('token' => $sess->oauth->access_token);
$buf = $http->fetch ($this->reqRevoke, 10, '', $post);
if ( trim ($_SERVER['QUERY_STRING']) )
$qs = sprintf ('?%s&after', $_SERVER['QUERY_STRING']);
$redirect = $_SERVER['SCRIPT_URI'] . $qs;
$logoutDocPath = 'OAUTH2/logout-agree.template';
if ( $GLOBALS['_OAUTH2_LOGOUT_TEMPALTE_'] ) {
if ( file_exists ($GLOBALS['_OAUTH2_LOGOUT_TEMPALTE_']) )
$logoutDocPath = $GLOBALS['_OAUTH2_LOGOUT_TEMPALTE_'];
'https://accounts.google.com/Logout?continue=https://google.com',
unset ($_SESSION[$this->sessid]);
* vim600: noet sw=4 ts=4 fdm=marker
* vim<600: noet sw=4 ts=4
|