%PDF-1.5 %���� ºaâÚÎΞ-ÌE1ÍØÄ÷{òò2ÿ ÛÖ^ÔÀá TÎ{¦?§®¥kuµùÕ5sLOšuY
Server IP : 49.231.201.246 / Your IP : 216.73.216.149 Web Server : Apache/2.4.18 (Ubuntu) System : Linux 246 4.4.0-210-generic #242-Ubuntu SMP Fri Apr 16 09:57:56 UTC 2021 x86_64 User : root ( 0) PHP Version : 7.0.33-0ubuntu0.16.04.16 Disable Function : exec,passthru,shell_exec,system,proc_open,popen,pcntl_exec MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /proc/11585/task/11585/cwd/html/water/vendor/yiisoft/yii2-authclient/src/clients/ |
Upload File : |
<?php /** * @link http://www.yiiframework.com/ * @copyright Copyright (c) 2008 Yii Software LLC * @license http://www.yiiframework.com/license/ */ namespace yii\authclient\clients; use yii\authclient\OAuth2; /** * GitHub allows authentication via GitHub OAuth. * * In order to use GitHub OAuth you must register your application at <https://github.com/settings/applications/new>. * * Example application configuration: * * ```php * 'components' => [ * 'authClientCollection' => [ * 'class' => 'yii\authclient\Collection', * 'clients' => [ * 'github' => [ * 'class' => 'yii\authclient\clients\GitHub', * 'clientId' => 'github_client_id', * 'clientSecret' => 'github_client_secret', * ], * ], * ] * // ... * ] * ``` * * @see http://developer.github.com/v3/oauth/ * @see https://github.com/settings/applications/new * * @author Paul Klimov <klimov.paul@gmail.com> * @since 2.0 */ class GitHub extends OAuth2 { /** * {@inheritdoc} */ public $authUrl = 'https://github.com/login/oauth/authorize'; /** * {@inheritdoc} */ public $tokenUrl = 'https://github.com/login/oauth/access_token'; /** * {@inheritdoc} */ public $apiBaseUrl = 'https://api.github.com'; /** * {@inheritdoc} */ public function init() { parent::init(); if ($this->scope === null) { $this->scope = 'user'; } } /** * {@inheritdoc} */ protected function initUserAttributes() { $attributes = $this->api('user', 'GET'); if (empty($attributes['email'])) { // in case user set 'Keep my email address private' in GitHub profile, email should be retrieved via extra API request $scopes = explode(' ', $this->scope); if (in_array('user:email', $scopes, true) || in_array('user', $scopes, true)) { $emails = $this->api('user/emails', 'GET'); if (!empty($emails)) { foreach ($emails as $email) { if ($email['primary'] == 1 && $email['verified'] == 1) { $attributes['email'] = $email['email']; break; } } } } } return $attributes; } /** * {@inheritdoc} */ protected function defaultName() { return 'github'; } /** * {@inheritdoc} */ protected function defaultTitle() { return 'GitHub'; } /** * {@inheritdoc} */ public function applyAccessTokenToRequest($request, $accessToken) { $request->getHeaders()->add('Authorization', 'token ' . $accessToken->getToken()); } }