Pijush2023 commited on
Commit
6a652dd
·
verified ·
1 Parent(s): 03b0b37

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +60 -80
app.py CHANGED
@@ -38,58 +38,6 @@ else:
38
  # Your application logic goes here
39
  print("Logged in successfully to Hugging Face Hub!")
40
 
41
-
42
-
43
-
44
-
45
- # Flask app for authentication
46
- auth_app = Flask(__name__)
47
- auth_app.secret_key = os.urandom(24)
48
-
49
- client_id = os.getenv("GOOGLE_CLIENT_ID")
50
- client_secret = os.getenv("GOOGLE_CLIENT_SECRET")
51
- authorization_base_url = 'https://accounts.google.com/o/oauth2/auth'
52
- token_url = 'https://accounts.google.com/o/oauth2/token'
53
- redirect_uri = 'http://localhost:5000/callback'
54
-
55
- scope = [
56
- "https://www.googleapis.com/auth/userinfo.profile",
57
- "https://www.googleapis.com/auth/userinfo.email",
58
- "openid",
59
- ]
60
-
61
- @auth_app.route("/")
62
- def home():
63
- return '<a href="/login">Login with Google</a>'
64
-
65
- @auth_app.route("/login")
66
- def login():
67
- google = OAuth2Session(client_id, scope=scope, redirect_uri=redirect_uri)
68
- authorization_url, state = google.authorization_url(authorization_base_url, access_type="offline")
69
- session['oauth_state'] = state
70
- return redirect(authorization_url)
71
-
72
- @auth_app.route("/callback")
73
- def callback():
74
- google = OAuth2Session(client_id, state=session['oauth_state'], redirect_uri=redirect_uri)
75
- token = google.fetch_token(token_url, client_secret=client_secret, authorization_response=request.url)
76
- session['oauth_token'] = token
77
- return redirect(url_for('.profile'))
78
-
79
- @auth_app.route("/profile")
80
- def profile():
81
- google = OAuth2Session(client_id, token=session['oauth_token'])
82
- response = google.get('https://www.googleapis.com/oauth2/v1/userinfo')
83
- user_info = response.json()
84
- return f"Hello, {user_info['name']}! Your email is {user_info['email']}."
85
-
86
- # Check if user is authenticated
87
- def check_auth():
88
- if 'oauth_token' not in session:
89
- return redirect(url_for('login'))
90
-
91
-
92
-
93
  # Set up logging
94
  logging.basicConfig(level=logging.DEBUG)
95
 
@@ -966,33 +914,57 @@ def update_images():
966
  # initialize_database()
967
 
968
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
969
 
970
 
971
 
972
 
973
- with gr.Blocks(theme='Pijush2023/scikit-learn-pijush') as demo:
974
- state = gr.State({'authenticated': False})
975
 
976
- with gr.Row():
977
- with gr.Column():
978
- gr.Markdown("<h1>Welcome to the App</h1>")
979
-
980
- # with gr.Tab("Sign Up"):
981
- # signup_email = gr.Textbox(placeholder="Email", label="Email", type="email")
982
- # signup_password = gr.Textbox(placeholder="Password", label="Password", type="password")
983
- # signup_button = gr.Button("Sign Up")
984
- # signup_output = gr.Textbox(interactive=False, label="Output")
985
- # signup_button.click(signup, inputs=[signup_email, signup_password], outputs=signup_output)
986
-
987
- # with gr.Tab("Login"):
988
- # login_email = gr.Textbox(placeholder="Email", label="Email", type="email")
989
- # login_password = gr.Textbox(placeholder="Password", label="Password", type="password")
990
- # login_button = gr.Button("Login")
991
- # login_output = gr.Textbox(interactive=False, label="Output")
992
- # login_button.click(login, inputs=[login_email, login_password, state], outputs=[login_output, state, login_button])
993
- # login_button.click(logout, inputs=[state], outputs=[login_output, state, login_button, login_email, login_password], show_progress=False)
994
 
995
- state = gr.State()
996
  chatbot = gr.Chatbot([], elem_id="RADAR:Channel 94.1", bubble_full_width=False)
997
  choice = gr.Radio(label="Select Style", choices=["Details", "Conversational"], value="Conversational")
998
 
@@ -1011,21 +983,29 @@ with gr.Blocks(theme='Pijush2023/scikit-learn-pijush') as demo:
1011
  gr.Markdown("<h1 style='color: red;'>Map</h1>", elem_id="location-markdown")
1012
  location_output = gr.HTML()
1013
  bot_msg.then(show_map_if_details, [chatbot, choice], [location_output, location_output])
1014
-
1015
- with gr.Column():
1016
  weather_output = gr.HTML(value=fetch_local_weather())
1017
  news_output = gr.HTML(value=fetch_local_news())
1018
  events_output = gr.HTML(value=fetch_local_events())
1019
 
1020
- with gr.Column():
1021
  image_output_1 = gr.Image(value=generate_image(hardcoded_prompt_1), width=400, height=400)
1022
  image_output_2 = gr.Image(value=generate_image(hardcoded_prompt_2), width=400, height=400)
1023
  image_output_3 = gr.Image(value=generate_image(hardcoded_prompt_3), width=400, height=400)
1024
  refresh_button = gr.Button("Refresh Images")
1025
  refresh_button.click(fn=update_images, inputs=None, outputs=[image_output_1, image_output_2, image_output_3])
 
 
 
 
 
 
 
 
 
 
 
1026
 
1027
  if __name__ == "__main__":
1028
- from threading import Thread
1029
- Thread(target=auth_app.run, kwargs={'port': 5000, 'debug': True}).start()
1030
- demo.queue()
1031
- demo.launch(share=True)
 
38
  # Your application logic goes here
39
  print("Logged in successfully to Hugging Face Hub!")
40
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
41
  # Set up logging
42
  logging.basicConfig(level=logging.DEBUG)
43
 
 
914
  # initialize_database()
915
 
916
 
917
+ # Google OAuth2 settings
918
+ client_id = os.getenv("GOOGLE_CLIENT_ID")
919
+ client_secret = os.getenv("GOOGLE_CLIENT_SECRET")
920
+ authorization_base_url = 'https://accounts.google.com/o/oauth2/auth'
921
+ token_url = 'https://accounts.google.com/o/oauth2/token'
922
+ redirect_uri = 'http://localhost:7860/callback'
923
+ scope = [
924
+ "https://www.googleapis.com/auth/userinfo.profile",
925
+ "https://www.googleapis.com/auth/userinfo.email",
926
+ "openid",
927
+ ]
928
+ user_info = {}
929
+
930
+ def login():
931
+ google = OAuth2Session(client_id, scope=scope, redirect_uri=redirect_uri)
932
+ authorization_url, state = google.authorization_url(authorization_base_url, access_type="offline")
933
+ user_info['oauth_state'] = state
934
+ return authorization_url
935
+
936
+ def callback(params):
937
+ global user_info
938
+ parsed_url = urlparse(params)
939
+ query_params = parse_qs(parsed_url.query)
940
+ state = query_params.get('state', [None])[0]
941
+ if state != user_info.get('oauth_state'):
942
+ return "Invalid state parameter"
943
+
944
+ google = OAuth2Session(client_id, redirect_uri=redirect_uri, state=state)
945
+ token = google.fetch_token(token_url, client_secret=client_secret, authorization_response=params)
946
+ user_info.update(google.get('https://www.googleapis.com/oauth2/v1/userinfo').json())
947
+ return f"Hello {user_info['name']}! You have successfully logged in."
948
+
949
+ def create_gradio_interface():
950
+ def greet(name):
951
+ return f"Hello {name}, welcome to the Gradio app!"
952
+
953
+
954
 
955
 
956
 
957
 
 
 
958
 
959
+ with gr.Blocks(theme='Pijush2023/scikit-learn-pijush') as demo:
960
+ state = gr.State({'authenticated': False})
961
+ if user_info:
962
+ gr.Markdown(f"### Hello, {user_info['name']}! Welcome to the Gradio App")
963
+ name = gr.Textbox(label="Enter your name")
964
+ greet_btn = gr.Button("Greet")
965
+ output = gr.Textbox(label="Greeting")
966
+ greet_btn.click(greet, inputs=name, outputs=output)
 
 
 
 
 
 
 
 
 
 
967
 
 
968
  chatbot = gr.Chatbot([], elem_id="RADAR:Channel 94.1", bubble_full_width=False)
969
  choice = gr.Radio(label="Select Style", choices=["Details", "Conversational"], value="Conversational")
970
 
 
983
  gr.Markdown("<h1 style='color: red;'>Map</h1>", elem_id="location-markdown")
984
  location_output = gr.HTML()
985
  bot_msg.then(show_map_if_details, [chatbot, choice], [location_output, location_output])
986
+
 
987
  weather_output = gr.HTML(value=fetch_local_weather())
988
  news_output = gr.HTML(value=fetch_local_news())
989
  events_output = gr.HTML(value=fetch_local_events())
990
 
 
991
  image_output_1 = gr.Image(value=generate_image(hardcoded_prompt_1), width=400, height=400)
992
  image_output_2 = gr.Image(value=generate_image(hardcoded_prompt_2), width=400, height=400)
993
  image_output_3 = gr.Image(value=generate_image(hardcoded_prompt_3), width=400, height=400)
994
  refresh_button = gr.Button("Refresh Images")
995
  refresh_button.click(fn=update_images, inputs=None, outputs=[image_output_1, image_output_2, image_output_3])
996
+ else:
997
+ login_url = login()
998
+ gr.Markdown(f"[Login with Google]({login_url})")
999
+
1000
+ return demo
1001
+
1002
+ def main(params=None):
1003
+ if params:
1004
+ callback(params)
1005
+ demo = create_gradio_interface()
1006
+ demo.launch()
1007
 
1008
  if __name__ == "__main__":
1009
+ import sys
1010
+ params = sys.argv[1] if len(sys.argv) > 1 else None
1011
+ main(params)