Source for file DAUM.php
Documentation is available at DAUM.php
* Project: oops\OAUTH2\DAUM:: Daum 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\OAUTH2\DAUM pear package는 Daum oauth2 login 및 profile 정보를
* 이 package를 사용하기 위해서는 먼저 Daum Developers Console 에서
* Client ID와 Client Secret key를 발급받아야 한다.
* http://dna.daum.net/apis/oauth2 를 참고하라.
* @subpackage oops\OAUTH2\DAUM
* @author JoungKyun.Kim <http://oops.org>
* @copyright (c) 2019, OOPS.org
* @example OAUTH2/tests/daum.php DAUM pear package 예제 코드
require_once 'HTTPRelay.php';
* oops\OAUTH2\DAUM pear pcakge의 main class
* OAuth2를 이용하여 DAUM 로그인을 진행하고, 로그인된 사용자의
* @subpackage oops\OAUTH2\DAUM
* @author JoungKyun.Kim <http://oops.org>
* @copyright (c) 2019, OOPS.org
* @example OAUTH2/tests/daum.php DAUM pear 예제 코드
private $sessid = '_OAUTH2_';
private $reqAuth = 'https://apis.daum.net/oauth2/authorize';
private $reqToken = 'https://apis.daum.net/oauth2/token';
private $reqRevoke = 'https://logins.daum.net/accounts/logout.do';
private $reqUser = 'https://apis.daum.net/user/v1/show.json';
* @var stdClass memebr는 다음과 같음
* - id : Daum login CliendID key
* - secret : Daum login ClientSecret key
* - callback : 이 class를 호출하는 페이지
* DAUM 로그인에 필요한 session 값
// {{{ +-- public (void) __construct ($v)
* Daum 로그인 인증 과정을 수행한다. 인증 과정 중에
* 에러가 발생하면 myException 으로 에러 메시지를
* logout 시에 globale 변수 $_OAUTH2_LOGOUT_TEMPALTE_ 로 사용자 logout template
* 을 지정할 수 있다. template 파일은 pear/OAUTH2/login.template 를 참조하면 된다.
* - id 발급받은 Daum login ClientID key
* - secret 발급받은 Daum login ClientScret 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->app = (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?client_id=%s&response_type=code&redirect_uri=%s&state=%s',
$this->reqAuth, $app->id,
# 'http://logins.daum.net/accounts/loginform.do',
Header ('Location: ' . $url);
// {{{ +-- private (void) reqAccessToken (void)
* Authorization code를 발급받아 session에 등록
* DAUM::$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);
// {{{ +-- 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 ($noafter = false)
* 현재 URL에 after argument를 set한다.
* @param bool (optional) true로 설정시에, after parameter를
private function redirectSelf ($noafter = false) {
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\DAUM::$sess->oauth 에
* 등록된 키를 이용하여 로그인 사용자의 정보를 가져온다.
* @return stdClass 다음의 object를 반환
* - email 빈값 (다음의 email 제공하지 않음)
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__ ));
# [result] => stdClass Object
# [imagePath] => 55 x 55 size image
# [bigImagePath] => 158 x 158 size image
'name' => $r->result->nickname,
'img' => preg_replace ('/^http:/', 'https:', $r->result->bigImagePath),
// {{{ +-- public (void) reqLogout (void)
* Daum 로그인의 authorization key를 만료 시키고
* 세션에 등록된 정보(oops\OAUT2\DAUM::$sess)를 제거한다.
if ( ! isset ($sess->oauth) )
* daum logout page에서 url argument를 더이상 get method
if ( ! isset ($_GET['after']) ) {
$this->reqRevoke, rawurlencode ($this->redirectSelf ())
Header ('Location: ' . $url);
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.template';
if ( $GLOBALS['_OAUTH2_LOGOUT_TEMPALTE_'] ) {
if ( file_exists ($GLOBALS['_OAUTH2_LOGOUT_TEMPALTE_']) )
$logoutDocPath = $GLOBALS['_OAUTH2_LOGOUT_TEMPALTE_'];
unset ($_SESSION[$this->sessid]);
* vim600: noet sw=4 ts=4 fdm=marker
* vim<600: noet sw=4 ts=4
|