當前位置: 首頁>>代碼示例>>Python>>正文


Python current_app.route方法代碼示例

本文整理匯總了Python中flask.current_app.route方法的典型用法代碼示例。如果您正苦於以下問題:Python current_app.route方法的具體用法?Python current_app.route怎麽用?Python current_app.route使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在flask.current_app的用法示例。


在下文中一共展示了current_app.route方法的4個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。

示例1: google_oauth

# 需要導入模塊: from flask import current_app [as 別名]
# 或者: from flask.current_app import route [as 別名]
def google_oauth():
    if not Setting().get('google_oauth_enabled'):
        return None

    def fetch_google_token():
        return session.get('google_token')

    def update_token(token):
        session['google_token'] = token
        return token

    google = authlib_oauth_client.register(
        'google',
        client_id=Setting().get('google_oauth_client_id'),
        client_secret=Setting().get('google_oauth_client_secret'),
        api_base_url=Setting().get('google_base_url'),
        request_token_url=None,
        access_token_url=Setting().get('google_token_url'),
        authorize_url=Setting().get('google_authorize_url'),
        client_kwargs={'scope': Setting().get('google_oauth_scope')},
        fetch_token=fetch_google_token,
        update_token=update_token)

    @current_app.route('/google/authorized')
    def google_authorized():
        session['google_oauthredir'] = url_for(
            '.google_authorized', _external=True)
        token = google.authorize_access_token()
        if token is None:
            return 'Access denied: reason=%s error=%s' % (
                request.args['error_reason'],
                request.args['error_description']
            )
        session['google_token'] = (token)
        return redirect(url_for('index.login'))

    return google 
開發者ID:ngoduykhanh,項目名稱:PowerDNS-Admin,代碼行數:39,代碼來源:google.py

示例2: github_oauth

# 需要導入模塊: from flask import current_app [as 別名]
# 或者: from flask.current_app import route [as 別名]
def github_oauth():
    if not Setting().get('github_oauth_enabled'):
        return None

    def fetch_github_token():
        return session.get('github_token')

    def update_token(token):
        session['github_token'] = token
        return token

    github = authlib_oauth_client.register(
        'github',
        client_id=Setting().get('github_oauth_key'),
        client_secret=Setting().get('github_oauth_secret'),
        request_token_params={'scope': Setting().get('github_oauth_scope')},
        api_base_url=Setting().get('github_oauth_api_url'),
        request_token_url=None,
        access_token_url=Setting().get('github_oauth_token_url'),
        authorize_url=Setting().get('github_oauth_authorize_url'),
        client_kwargs={'scope': Setting().get('github_oauth_scope')},
        fetch_token=fetch_github_token,
        update_token=update_token)

    @current_app.route('/github/authorized')
    def github_authorized():
        session['github_oauthredir'] = url_for('.github_authorized',
                                               _external=True)
        token = github.authorize_access_token()
        if token is None:
            return 'Access denied: reason=%s error=%s' % (
                request.args['error'], request.args['error_description'])
        session['github_token'] = (token)
        return redirect(url_for('index.login'))

    return github 
開發者ID:ngoduykhanh,項目名稱:PowerDNS-Admin,代碼行數:38,代碼來源:github.py

示例3: azure_oauth

# 需要導入模塊: from flask import current_app [as 別名]
# 或者: from flask.current_app import route [as 別名]
def azure_oauth():
    if not Setting().get('azure_oauth_enabled'):
        return None

    def fetch_azure_token():
        return session.get('azure_token')

    def update_token(token):
        session['azure_token'] = token
        return token

    azure = authlib_oauth_client.register(
        'azure',
        client_id=Setting().get('azure_oauth_key'),
        client_secret=Setting().get('azure_oauth_secret'),
        api_base_url=Setting().get('azure_oauth_api_url'),
        request_token_url=None,
        access_token_url=Setting().get('azure_oauth_token_url'),
        authorize_url=Setting().get('azure_oauth_authorize_url'),
        client_kwargs={'scope': Setting().get('azure_oauth_scope')},
        fetch_token=fetch_azure_token,
    )

    @current_app.route('/azure/authorized')
    def azure_authorized():
        session['azure_oauthredir'] = url_for('.azure_authorized',
                                              _external=True,
                                              _scheme='https')
        token = azure.authorize_access_token()
        if token is None:
            return 'Access denied: reason=%s error=%s' % (
                request.args['error'], request.args['error_description'])
        session['azure_token'] = (token)
        return redirect(url_for('index.login', _external=True, _scheme='https'))

    return azure 
開發者ID:ngoduykhanh,項目名稱:PowerDNS-Admin,代碼行數:38,代碼來源:azure.py

示例4: oidc_oauth

# 需要導入模塊: from flask import current_app [as 別名]
# 或者: from flask.current_app import route [as 別名]
def oidc_oauth():
    if not Setting().get('oidc_oauth_enabled'):
        return None

    def fetch_oidc_token():
        return session.get('oidc_token')

    def update_token(token):
        session['oidc_token'] = token
        return token

    oidc = authlib_oauth_client.register(
        'oidc',
        client_id=Setting().get('oidc_oauth_key'),
        client_secret=Setting().get('oidc_oauth_secret'),
        api_base_url=Setting().get('oidc_oauth_api_url'),
        request_token_url=None,
        access_token_url=Setting().get('oidc_oauth_token_url'),
        authorize_url=Setting().get('oidc_oauth_authorize_url'),
        client_kwargs={'scope': Setting().get('oidc_oauth_scope')},
        fetch_token=fetch_oidc_token,
        update_token=update_token)

    @current_app.route('/oidc/authorized')
    def oidc_authorized():
        session['oidc_oauthredir'] = url_for('.oidc_authorized',
                                             _external=True)
        token = oidc.authorize_access_token()
        if token is None:
            return 'Access denied: reason=%s error=%s' % (
                request.args['error'], request.args['error_description'])
        session['oidc_token'] = (token)
        return redirect(url_for('index.login'))

    return oidc 
開發者ID:ngoduykhanh,項目名稱:PowerDNS-Admin,代碼行數:37,代碼來源:oidc.py


注:本文中的flask.current_app.route方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。