Spaces:
Running
on
CPU Upgrade
Running
on
CPU Upgrade
root url
Browse files- __pycache__/app.cpython-311.pyc +0 -0
- app.py +19 -2
__pycache__/app.cpython-311.pyc
CHANGED
Binary files a/__pycache__/app.cpython-311.pyc and b/__pycache__/app.cpython-311.pyc differ
|
|
app.py
CHANGED
@@ -36,8 +36,9 @@ def get_user(request: Request):
|
|
36 |
|
37 |
@app.get('/')
|
38 |
def public(request: Request, user: dict = Depends(get_user)):
|
|
|
|
|
39 |
return RedirectResponse(url='https://abidlabs-gradio-oauth.hf.space/main/')
|
40 |
-
# root_url = gr.route_utils.get_root_url(request, "/", None)
|
41 |
# if user:
|
42 |
# return RedirectResponse(url=f"{root_url}/gradio")
|
43 |
# else:
|
@@ -69,7 +70,23 @@ async def auth(request: Request):
|
|
69 |
return RedirectResponse(url='/gradio')
|
70 |
|
71 |
with gr.Blocks() as login_demo:
|
72 |
-
gr.Button("Login", link="/login")
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
73 |
|
74 |
app = gr.mount_gradio_app(app, login_demo, path="/main")
|
75 |
|
|
|
36 |
|
37 |
@app.get('/')
|
38 |
def public(request: Request, user: dict = Depends(get_user)):
|
39 |
+
root_url = gr.route_utils.get_root_url(request, "/", None)
|
40 |
+
print("root_url", root_url)
|
41 |
return RedirectResponse(url='https://abidlabs-gradio-oauth.hf.space/main/')
|
|
|
42 |
# if user:
|
43 |
# return RedirectResponse(url=f"{root_url}/gradio")
|
44 |
# else:
|
|
|
70 |
return RedirectResponse(url='/gradio')
|
71 |
|
72 |
with gr.Blocks() as login_demo:
|
73 |
+
btn = gr.Button("Login", link="/login")
|
74 |
+
# _js_handle_redirect = """
|
75 |
+
# (buttonValue) => {
|
76 |
+
# if (buttonValue === BUTTON_DEFAULT_VALUE) {
|
77 |
+
# url = '/login/huggingface' + window.location.search;
|
78 |
+
# if ( window !== window.parent ) {
|
79 |
+
# window.open(url, '_blank');
|
80 |
+
# } else {
|
81 |
+
# window.location.assign(url);
|
82 |
+
# }
|
83 |
+
# } else {
|
84 |
+
# url = '/logout' + window.location.search
|
85 |
+
# window.location.assign(url);
|
86 |
+
# }
|
87 |
+
# }
|
88 |
+
# """
|
89 |
+
|
90 |
|
91 |
app = gr.mount_gradio_app(app, login_demo, path="/main")
|
92 |
|