├── .gitignore ├── CHANGELOG.md ├── EAuth.php ├── EAuthRedirectWidget.php ├── EAuthServiceBase.php ├── EAuthUserIdentity.php ├── EAuthWidget.php ├── EOAuth2Service.php ├── EOAuthService.php ├── EOpenIDService.php ├── IAuthService.php ├── LICENSE ├── README.md ├── assets ├── css │ └── auth.css ├── images │ ├── auth-src.png │ └── auth.png └── js │ └── auth.js ├── composer.json ├── custom_services ├── CustomFacebookService.php ├── CustomGitHubOAuthService.php ├── CustomGoogleService.php ├── CustomMailruService.php ├── CustomOdnoklassnikiService.php ├── CustomTwitterService.php ├── CustomVKontakteService.php └── CustomYandexOAuthService.php ├── messages ├── blank │ └── eauth.php ├── en │ └── eauth.php ├── ru │ └── eauth.php └── uk │ └── eauth.php ├── services ├── DropboxOAuthService.php ├── EveOnlineOAuthService.php ├── FacebookOAuthService.php ├── GitHubOAuthService.php ├── GoogleOAuthService.php ├── LinkedinOAuthService.php ├── LiveOAuthService.php ├── MailruOAuthService.php ├── MoikrugOAuthService.php ├── OdnoklassnikiOAuthService.php ├── SlackOAuthService.php ├── SteamOpenIDService.php ├── TwitterOAuthService.php ├── VKontakteOAuthService.php ├── WargamingOpenIDService.php ├── YahooOpenIDService.php └── YandexOAuthService.php └── views ├── auth.php └── redirect.php /.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | nbproject -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nodge/yii-eauth/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /EAuth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nodge/yii-eauth/HEAD/EAuth.php -------------------------------------------------------------------------------- /EAuthRedirectWidget.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nodge/yii-eauth/HEAD/EAuthRedirectWidget.php -------------------------------------------------------------------------------- /EAuthServiceBase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nodge/yii-eauth/HEAD/EAuthServiceBase.php -------------------------------------------------------------------------------- /EAuthUserIdentity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nodge/yii-eauth/HEAD/EAuthUserIdentity.php -------------------------------------------------------------------------------- /EAuthWidget.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nodge/yii-eauth/HEAD/EAuthWidget.php -------------------------------------------------------------------------------- /EOAuth2Service.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nodge/yii-eauth/HEAD/EOAuth2Service.php -------------------------------------------------------------------------------- /EOAuthService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nodge/yii-eauth/HEAD/EOAuthService.php -------------------------------------------------------------------------------- /EOpenIDService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nodge/yii-eauth/HEAD/EOpenIDService.php -------------------------------------------------------------------------------- /IAuthService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nodge/yii-eauth/HEAD/IAuthService.php -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nodge/yii-eauth/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nodge/yii-eauth/HEAD/README.md -------------------------------------------------------------------------------- /assets/css/auth.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nodge/yii-eauth/HEAD/assets/css/auth.css -------------------------------------------------------------------------------- /assets/images/auth-src.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nodge/yii-eauth/HEAD/assets/images/auth-src.png -------------------------------------------------------------------------------- /assets/images/auth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nodge/yii-eauth/HEAD/assets/images/auth.png -------------------------------------------------------------------------------- /assets/js/auth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nodge/yii-eauth/HEAD/assets/js/auth.js -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nodge/yii-eauth/HEAD/composer.json -------------------------------------------------------------------------------- /custom_services/CustomFacebookService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nodge/yii-eauth/HEAD/custom_services/CustomFacebookService.php -------------------------------------------------------------------------------- /custom_services/CustomGitHubOAuthService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nodge/yii-eauth/HEAD/custom_services/CustomGitHubOAuthService.php -------------------------------------------------------------------------------- /custom_services/CustomGoogleService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nodge/yii-eauth/HEAD/custom_services/CustomGoogleService.php -------------------------------------------------------------------------------- /custom_services/CustomMailruService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nodge/yii-eauth/HEAD/custom_services/CustomMailruService.php -------------------------------------------------------------------------------- /custom_services/CustomOdnoklassnikiService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nodge/yii-eauth/HEAD/custom_services/CustomOdnoklassnikiService.php -------------------------------------------------------------------------------- /custom_services/CustomTwitterService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nodge/yii-eauth/HEAD/custom_services/CustomTwitterService.php -------------------------------------------------------------------------------- /custom_services/CustomVKontakteService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nodge/yii-eauth/HEAD/custom_services/CustomVKontakteService.php -------------------------------------------------------------------------------- /custom_services/CustomYandexOAuthService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nodge/yii-eauth/HEAD/custom_services/CustomYandexOAuthService.php -------------------------------------------------------------------------------- /messages/blank/eauth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nodge/yii-eauth/HEAD/messages/blank/eauth.php -------------------------------------------------------------------------------- /messages/en/eauth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nodge/yii-eauth/HEAD/messages/en/eauth.php -------------------------------------------------------------------------------- /messages/ru/eauth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nodge/yii-eauth/HEAD/messages/ru/eauth.php -------------------------------------------------------------------------------- /messages/uk/eauth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nodge/yii-eauth/HEAD/messages/uk/eauth.php -------------------------------------------------------------------------------- /services/DropboxOAuthService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nodge/yii-eauth/HEAD/services/DropboxOAuthService.php -------------------------------------------------------------------------------- /services/EveOnlineOAuthService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nodge/yii-eauth/HEAD/services/EveOnlineOAuthService.php -------------------------------------------------------------------------------- /services/FacebookOAuthService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nodge/yii-eauth/HEAD/services/FacebookOAuthService.php -------------------------------------------------------------------------------- /services/GitHubOAuthService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nodge/yii-eauth/HEAD/services/GitHubOAuthService.php -------------------------------------------------------------------------------- /services/GoogleOAuthService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nodge/yii-eauth/HEAD/services/GoogleOAuthService.php -------------------------------------------------------------------------------- /services/LinkedinOAuthService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nodge/yii-eauth/HEAD/services/LinkedinOAuthService.php -------------------------------------------------------------------------------- /services/LiveOAuthService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nodge/yii-eauth/HEAD/services/LiveOAuthService.php -------------------------------------------------------------------------------- /services/MailruOAuthService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nodge/yii-eauth/HEAD/services/MailruOAuthService.php -------------------------------------------------------------------------------- /services/MoikrugOAuthService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nodge/yii-eauth/HEAD/services/MoikrugOAuthService.php -------------------------------------------------------------------------------- /services/OdnoklassnikiOAuthService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nodge/yii-eauth/HEAD/services/OdnoklassnikiOAuthService.php -------------------------------------------------------------------------------- /services/SlackOAuthService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nodge/yii-eauth/HEAD/services/SlackOAuthService.php -------------------------------------------------------------------------------- /services/SteamOpenIDService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nodge/yii-eauth/HEAD/services/SteamOpenIDService.php -------------------------------------------------------------------------------- /services/TwitterOAuthService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nodge/yii-eauth/HEAD/services/TwitterOAuthService.php -------------------------------------------------------------------------------- /services/VKontakteOAuthService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nodge/yii-eauth/HEAD/services/VKontakteOAuthService.php -------------------------------------------------------------------------------- /services/WargamingOpenIDService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nodge/yii-eauth/HEAD/services/WargamingOpenIDService.php -------------------------------------------------------------------------------- /services/YahooOpenIDService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nodge/yii-eauth/HEAD/services/YahooOpenIDService.php -------------------------------------------------------------------------------- /services/YandexOAuthService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nodge/yii-eauth/HEAD/services/YandexOAuthService.php -------------------------------------------------------------------------------- /views/auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nodge/yii-eauth/HEAD/views/auth.php -------------------------------------------------------------------------------- /views/redirect.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Nodge/yii-eauth/HEAD/views/redirect.php --------------------------------------------------------------------------------