-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.py
226 lines (176 loc) · 8.71 KB
/
app.py
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
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
from flask import render_template, jsonify, request
from datetime import datetime, timedelta
import flask
import requests
import os
import random
import string
import google.oauth2.credentials
import google_auth_oauthlib.flow
import googleapiclient.discovery
import main as main
# 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.json"
# This OAuth 2.0 access scope allows for full read/write access to the
# authenticated user's account and requires requests to use an SSL connection.
SCOPES = ['https://www.googleapis.com/auth/calendar']
API_SERVICE_NAME = 'calendar'
API_VERSION = 'v3'
app = flask.Flask(__name__)
# Note: A secret key is included in the sample so that it works.
# If you use this code in your application, replace this with a truly secret
# key. See http://flask.pocoo.org/docs/0.12/quickstart/#sessions.
app.secret_key = b'j\x187N<\x8ci-\xd5\x7f\x84\x8diqz\xd1\xfb\x93DB\x82\xf2\x101'
@app.route('/')
def index():
print("* Landing Page rendered *")
return render_template('calendize_landing.html', version=''.join(random.choices(string.ascii_uppercase + string.digits, k=10)))
@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')
# Store the state so the callback can verify the auth server response.
flask.session['state'] = state
return flask.redirect(authorization_url)
@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
# authorization_response = authorization_response.replace('http', 'https')
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('render_homePage'))
@app.route('/revoke')
def revoke():
if 'credentials' not in flask.session:
return ('You need to <a href="/authorize">authorize</a> before ' +
'testing the code to revoke credentials.')
credentials = google.oauth2.credentials.Credentials(
**flask.session['credentials'])
revoke = requests.post('https://accounts.google.com/o/oauth2/revoke',
params={'token': credentials.token},
headers={'content-type': 'application/x-www-form-urlencoded'})
status_code = getattr(revoke, 'status_code')
if status_code == 200:
return 'Credentials successfully revoked.'
else:
return 'An error occurred.'
@app.route('/clear')
def clear_credentials():
if 'credentials' in flask.session:
del flask.session['credentials']
return 'Credentials have been cleared.<br><br>'
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}
@app.route("/calculator")
def render_homePage():
print("* Home Page rendered *")
return render_template('calendize_main.html', version=''.join(random.choices(string.ascii_uppercase + string.digits, k=10)))
@app.route("/fetch")
def fetch_instances():
start_date = datetime.fromtimestamp(int(request.args.get('_startDate'))/1000.0).date()
end_date = datetime.fromtimestamp(int(request.args.get('_endDate'))/1000.0).date() + timedelta(days=1)
print("* Fetching instances - from: " + str(start_date) + " ,to: " + str(end_date))
# Load credentials from the session.
credentials = google.oauth2.credentials.Credentials(
**flask.session['credentials'])
service = googleapiclient.discovery.build(
API_SERVICE_NAME, API_VERSION, credentials=credentials)
data = main.fetch(start_date.strftime('%Y-%m-%dT%H:%M:%S.%fZ'),end_date.strftime('%Y-%m-%dT%H:%M:%S.%fZ'),
service=service)
return jsonify(data)
def coerce(x):
try:
res = int(x)
except Exception:
try:
res = float(x)
except Exception:
try:
res = bool(x)
except Exception:
raise ValueError("failed to coerce str to int or float")
return res
@app.route("/calculate")
def get_instances():
start_date = datetime.fromtimestamp(int(request.args.get('_startDate'))/1000.0).date()
end_date = datetime.fromtimestamp(int(request.args.get('_endDate'))/1000.0).date() + timedelta(days=1)
anchor_instances = request.args.get('_anchor_instances').split(",")
anchor_instances.pop(len(anchor_instances)-1)
floating_instances = request.args.get('_floating_instances').split(",")
floating_instances.pop(len(floating_instances)-1)
opportune_instances = request.args.get('_opportune_instances').split(",")
opportune_instances.pop()
routine_instances = request.args.get('_routine_instances').split(",")
routine_instances.pop()
algorithm = request.args.get('_algorithm')
options_raw = request.args.get('_options')
options = None
if options_raw:
options_raw = options_raw.split(",")
options = {}
for option_raw in options_raw:
key, value = option_raw.split(":")
options[key] = coerce(value)
print(f'* Calculating optimal schedule using: {algorithm}, '
f'from: {str(start_date) },to: {str(end_date)}, '
f'with arguments: {options}')
# Load credentials from the session.
credentials = google.oauth2.credentials.Credentials(
**flask.session['credentials'])
service = googleapiclient.discovery.build(
API_SERVICE_NAME, API_VERSION, credentials=credentials)
data, result = main.run(start_date=start_date.strftime('%Y-%m-%dT%H:%M:%S.%fZ'),
end_date=end_date.strftime('%Y-%m-%dT%H:%M:%S.%fZ'),
anchor_instances=anchor_instances + opportune_instances,
floating_instances=floating_instances,
routine_instances=routine_instances,
algorithm=algorithm,
service=service,
options=options)
if opportune_instances and not result:
print('* Failed to optimize, trying without opportune_instances')
data, result = main.run(start_date=start_date.strftime('%Y-%m-%dT%H:%M:%S.%fZ'),
end_date=end_date.strftime('%Y-%m-%dT%H:%M:%S.%fZ'),
anchor_instances=anchor_instances,
floating_instances=floating_instances,
routine_instances=routine_instances,
algorithm=algorithm,
service=service,
options=options)
print(f'*** Deploying instances: { [instance for instance in data] } ***')
return jsonify(data)
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'] = '1'
# Specify a hostname and port that are set as a valid redirect URI
# for your API project in the Google API Console.
app.run('localhost', 8080, debug=True)