-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.py
More file actions
169 lines (136 loc) · 5.92 KB
/
main.py
File metadata and controls
169 lines (136 loc) · 5.92 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
'''
Long Mach
CS 493-400
Project #7- More Authentication and Authorization
'''
#For boats
from google.cloud import datastore
import constants
import boat
#For OAuth 2.0
import json
import uuid
import flask
import requests
import os
#libraries
import google.oauth2.credentials
import google_auth_oauthlib.flow
import googleapiclient.discovery
from flask import render_template, request
# This variable specifies the name of a file that contains the OAuth 2.0
# information for this application, including its client_id and client_secret.
CLIENT_SECRETS_FILE = "client_secret_799383387107-9bolo900mbhd1kg2tasgchlen1r0k0as.apps.googleusercontent.com.json"
# This OAuth 2.0 access scope allows for access to the
# authenticated user's account and requires requests to use an SSL connection.
SCOPES = ['https://www.googleapis.com/auth/userinfo.profile']
API_SERVICE_NAME = 'people'
API_VERSION = 'v1'
app = flask.Flask(__name__)
app.register_blueprint(boat.bp)
client = datastore.Client()
app.secret_key = str(uuid.uuid4())
#test on server
REDIRECT_URI = 'https://project7-long-mach.ue.r.appspot.com/test'
#test locally
#REDIRECT_URI = 'http://localhost:8080/test'
#set homepage
@app.route('/welcome')
def welcome():
return render_template('welcome.html',url = REDIRECT_URI)
#set redirect link to extract user's info and display them on the userInfo.html
@app.route('/test')
def test():
if 'credentials' not in flask.session:
return flask.redirect('authorize')
# Load credentials from the session.
credentials = google.oauth2.credentials.Credentials(
**flask.session['credentials'])
people_service = googleapiclient.discovery.build(
API_SERVICE_NAME, API_VERSION, credentials=credentials)
profile = people_service.people().get(resourceName='people/me', personFields='names').execute()
names = profile['names'][0]
firstName = names['givenName']
lastName = names['familyName']
# Save credentials back to session in case access token was refreshed.
# ACTION ITEM: In a production app, you likely want to save these
# credentials in a persistent database instead.
flask.session['credentials'] = credentials_to_dict(credentials)
app.config['token'] = flask.session['credentials']['id_token']
app.config['client_id'] = flask.session['credentials']['client_id']
return render_template('userInfo.html', firstName = firstName, lastName = lastName, jwtToken = app.config['token'])
# Oauth 2.0
@app.route('/authorize')
def authorize():
# Create flow instance to manage the OAuth 2.0 Authorization Grant Flow steps.
flow = google_auth_oauthlib.flow.Flow.from_client_secrets_file(
CLIENT_SECRETS_FILE, scopes=SCOPES)
# The URI created here must exactly match one of the authorized redirect URIs
# for the OAuth 2.0 client, which you configured in the API Console. If this
# value doesn't match an authorized URI, you will get a 'redirect_uri_mismatch'
# error.
flow.redirect_uri = flask.url_for('oauth2callback', _external=True)
authorization_url, state = flow.authorization_url(
# Enable offline access so that you can refresh an access token without
# re-prompting the user for permission. Recommended for web server apps.
access_type='offline',
# Enable incremental authorization. Recommended as a best practice.
include_granted_scopes='true')
# Store the state so the callback can verify the auth server response.
flask.session['state'] = state
return flask.redirect(authorization_url)
# redirect link for Oauth 2.0
@app.route('/oauth2callback')
def oauth2callback():
# Specify the state when creating the flow in the callback so that it can
# verified in the authorization server response.
state = flask.session['state']
flow = google_auth_oauthlib.flow.Flow.from_client_secrets_file(
CLIENT_SECRETS_FILE, scopes=SCOPES, state=state)
flow.redirect_uri = flask.url_for('oauth2callback', _external=True)
# Use the authorization server's response to fetch the OAuth 2.0 tokens.
authorization_response = flask.request.url
flow.fetch_token(authorization_response=authorization_response)
# Store credentials in the session.
# ACTION ITEM: In a production app, you likely want to save these
# credentials in a persistent database instead.
credentials = flow.credentials
flask.session['credentials'] = credentials_to_dict(credentials)
return flask.redirect(flask.url_for('test'))
# function to return all credentials as dict
def credentials_to_dict(credentials):
return {'token': credentials.token,
'refresh_token': credentials.refresh_token,
'token_uri': credentials.token_uri,
'client_id': credentials.client_id,
'client_secret': credentials.client_secret,
'scopes': credentials.scopes,
'id_token': credentials.id_token}
# function to return name as dict
def person_to_dict(person):
return {'firstName': person.names.givenName}
#get Request for all public boats
@app.route('/owners/<owner_id>/boats', methods=['GET'])
def boats_owner_get(owner_id):
if request.method == 'GET':
query = client.query(kind=constants.boats)
results = list(query.fetch())
results[:] = [d for d in results if d['public'] == True]
results[:] = [d for d in results if d['owner'] == owner_id]
for e in results:
e["id"] = e.key.id
e['self'] = url + 'boats/'+ str(e.key.id)
return (json.dumps(results), 200)
else:
return 'Method not recogonized'
if __name__ == '__main__':
# When running locally, disable OAuthlib's HTTPs verification.
# ACTION ITEM for developers:
# When running in production *do not* leave this option enabled.
os.environ['OAUTHLIB_INSECURE_TRANSPORT'] = '0'
# Specify a hostname and port that are set as a valid redirect URI
# for your API project in the Google API Console.
app.run(host='0.0.0.0', port=8080, debug=True)
url = "http://localhost:8080/"
else:
url = "https://project7-long-mach.ue.r.appspot.com/"