realms-wiki/realms/modules/auth/oauth/views.py

37 lines
1.1 KiB
Python
Raw Normal View History

from flask import Blueprint, url_for, request, flash, redirect, session, current_app
2015-10-15 07:08:56 +03:00
from .models import User
2015-10-14 06:52:30 +03:00
blueprint = Blueprint('auth.oauth', __name__)
def oauth_failed(next_url):
2015-10-15 01:36:22 +03:00
flash('You denied the request to sign in.')
2015-10-14 06:52:30 +03:00
return redirect(next_url)
2015-10-15 07:08:56 +03:00
@blueprint.route("/login/oauth/<provider>")
2015-10-16 01:36:47 +03:00
def login(provider):
return User.get_app(provider).authorize(callback=url_for('auth.oauth.callback', provider=provider))
2015-10-14 06:52:30 +03:00
2015-10-15 07:08:56 +03:00
@blueprint.route('/login/oauth/<provider>/callback')
2015-10-16 01:36:47 +03:00
def callback(provider):
next_url = request.args.get('next') or current_app.config['ROOT_ENDPOINT']
2015-10-16 01:36:47 +03:00
try:
resp = User.get_app(provider).authorized_response()
if resp is None:
flash('You denied the request to sign in.', 'error')
flash('Reason: ' + request.args['error_reason'] +
' ' + request.args['error_description'], 'error')
return redirect(next_url)
except Exception as e:
flash('Access denied: %s' % e.message)
return redirect(next_url)
2015-10-14 06:52:30 +03:00
2015-10-15 07:08:56 +03:00
session[provider + '_token'] = (
2015-10-14 06:52:30 +03:00
resp['oauth_token'],
resp['oauth_token_secret']
)
2015-10-15 01:36:22 +03:00
return redirect(next_url)