27 lines
1.1 KiB
Python
27 lines
1.1 KiB
Python
from oauth.services.google import GoogleOAuthService
|
|
from util.config.validators import BaseValidator, ConfigValidationException
|
|
|
|
class GoogleLoginValidator(BaseValidator):
|
|
name = "google-login"
|
|
|
|
@classmethod
|
|
def validate(cls, validator_context):
|
|
""" Validates the Google Login client ID and secret. """
|
|
config = validator_context.config
|
|
client = validator_context.http_client
|
|
|
|
google_login_config = config.get('GOOGLE_LOGIN_CONFIG')
|
|
if not google_login_config:
|
|
raise ConfigValidationException('Missing client ID and client secret')
|
|
|
|
if not google_login_config.get('CLIENT_ID'):
|
|
raise ConfigValidationException('Missing Client ID')
|
|
|
|
if not google_login_config.get('CLIENT_SECRET'):
|
|
raise ConfigValidationException('Missing Client Secret')
|
|
|
|
oauth = GoogleOAuthService(config, 'GOOGLE_LOGIN_CONFIG')
|
|
# TODO(sam): the google oauth doesn't need the app config, but when refactoring pass in the URLSchemeandHostname
|
|
result = oauth.validate_client_id_and_secret(client)
|
|
if not result:
|
|
raise ConfigValidationException('Invalid client id or client secret')
|