如何在受保护的路线后面保留Plotly dash应用程序

时间:2019-08-23 15:55:13

标签: python flask plotly-dash flask-jwt-extended

我有一个绘图仪表板应用程序,我想将其保留在受JWT保护的路线后面。我的最终目标是在单独的路由中将其包含在iframe中,但我只希望用户如果具有访问令牌,就能够获得dash app的html。

我尝试在get请求中返回应用本身。

App.py

import dash
from flask import Flask, jsonify, request
from flask_jwt_extended import (
    JWTManager, jwt_required, create_access_token,
    get_jwt_identity
)

server = Flask(__name__)

server.config['JWT_SECRET_KEY'] = 'super-secret'  # Change this!
jwt = JWTManager(server)

@server.route('/login', methods=['POST'])
def login():
    if not request.is_json:
        return jsonify({"msg": "Missing JSON in request"}), 400

    username = request.json.get('username', None)
    password = request.json.get('password', None)
    if not username:
        return jsonify({"msg": "Missing username parameter"}), 400
    if not password:
        return jsonify({"msg": "Missing password parameter"}), 400

    if username != 'test' or password != 'test':
        return jsonify({"msg": "Bad username or password"}), 401

    # Identity can be any data that is json serializable
    access_token = create_access_token(identity=username)
    return jsonify(access_token=access_token), 200

@server.route('/')
@jwt_required
def index():
    return 'Hello world flask app'

app = dash.Dash(
   __name__,
   server=server,
   routes_pathname_prefix='/'
)

app.config.suppress_callback_exceptions = True

Index.py

from app import app
import dash_html_components as html
import dash_core_components as dcc
from dash.dependencies import Input, Output
from combination_1 import Combination
import callbacks

app.layout = html.Div([
   dcc.Location(id='url', refresh=False),
   html.Div(id="root_div")

])

@app.callback(
   Output('root_div', 'children'),
   [Input('url', 'pathname')]
)
def attatch_graphs(pathname):
   return Combination(comb_id='comb_1').return_div()

if __name__ == '__main__':
   app.run_server()

1 个答案:

答案 0 :(得分:1)

我将分享一些我在研究这个问题时发现的资源:

  1. Dash提供了一个library named dash-auth,您可以使用pip install dash-auth
  2. 进行安装
  3. 一旦安装了库,就可以使用import dash_auth,并且会注意到HTTP Basic AuthOAuth和“ PlotlyAuth < / em>”。根据{{​​1}}
  4. 中的文本,“ PlotlyAuth”已被弃用
  5. 该模块的源代码似乎是https://github.com/plotly/dash-auth
  6. 可以在https://dash.plotly.com/authentication上找到文档,在https://plotly.com/dash/authentication/上可以看到促销页面
  7. 大概可以使用Flask的from dash_auth.plotly_auth import deprecation_notice集成JWT。 Here are details about that approach,请注意作者使用了Response.set_cookie
  8. 在Github上有一个使用Dash, Flask, and Flask-Login的示例。 separate StackOverflow question中也存在此配置。但是,此库doesn't supports JWT。使用Flask-JWT-Extended库,您也许可以实现类似的体系结构。