-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwebserver.py
More file actions
249 lines (193 loc) · 7.89 KB
/
webserver.py
File metadata and controls
249 lines (193 loc) · 7.89 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
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
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
import json
import os
import flask
import io
from datetime import datetime
from PIL import Image
import numpy as np
from HealthModel import HealthModel
import google_auth_oauthlib.flow
from googleapiclient.discovery import build
from google.oauth2.credentials import Credentials
from googleapiclient.errors import HttpError
from googleapiclient.http import MediaIoBaseDownload
# 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 = "clientSecret.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/drive.metadata.readonly','https://www.googleapis.com/auth/drive.readonly']
API_SERVICE_NAME = 'drive'
API_VERSION = 'v2'
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 https://flask.palletsprojects.com/quickstart/#sessions.
app.secret_key = 'bazingaaosmrvfpeanmgaaogmaeo[gmadgsdfasdfsafsgfsg]'
current_credentials = None
service = None
selectedImageData = None
imageDataHistory = []
def credentials_to_dict(credentials):
return {'refresh_token': credentials.refresh_token,
'token_uri': credentials.token_uri,
'client_id': credentials.client_id,
'client_secret': credentials.client_secret}
def saveUserData():
creds = credentials_to_dict(current_credentials)
if creds["refresh_token"] is None:
return
with open('userdata.json', 'w') as data:
data.seek(0)
json.dump(creds, data)
data.truncate()
def saveData():
with open('data.json', 'w') as data:
data.seek(0)
json.dump(imageDataHistory, data)
data.truncate()
def loadUserData():
try:
with open('userdata.json', 'r') as data:
newData = json.load(data)
global current_credentials, service
current_credentials = Credentials.from_authorized_user_info(info={'refresh_token': newData['refresh_token'],'client_id': newData['client_id'],'client_secret': newData['client_secret'],'token_uri': newData['token_uri']}, scopes=SCOPES)
service = build("drive", "v3", credentials=current_credentials)
except:
pass
def loadData():
try:
with open('data.json', 'r') as data:
newData = json.load(data)
global imageDataHistory
imageDataHistory = newData
except:
pass
loadUserData()
loadData()
def downloadImg(file_id):
request = service.files().get_media(fileId=file_id)#, mimeType='image/jpg')
fh = io.BytesIO()
downloader = MediaIoBaseDownload(fh, request)
done = False
while done is False:
status, done = downloader.next_chunk()
print("Downloading " + file_id + ": %d%%" % int(status.progress() * 100))
imageStream = Image.open(fh)
imageStream = np.array(imageStream, dtype=np.uint8)
return imageStream
@app.route('/')
def index():
if current_credentials is not None:
return flask.redirect("/runmodel")
else:
return flask.redirect("/authorize")
#@app.route('/test')
#def test_api_request():
# return flask.status(501)
@app.route('/authorize')
def authorize():
if current_credentials is not None:
return flask.status(423)
# 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():
global current_credentials
if current_credentials is not None:
return flask.status(423)
# 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.
current_credentials = flow.credentials
saveUserData()
global service
service = build("drive", "v3", credentials=current_credentials)
return flask.redirect("/runmodel")#flask.url_for('test_api_request'))
@app.route("/runmodel")
def runNewImage():
if current_credentials is None:
return flask.redirect("/authorize")
fileId = flask.request.args.get("FILEID")
results = service.files().list(
q="'1PNm562W_IqKJ8Zxl8bz03p_yiEZoh88W' in parents", spaces="drive", orderBy="name_natural desc", fields="nextPageToken, files(id, modifiedTime, name)"
).execute()
items = results.get('files', [])
if fileId is None:
newestImg = items[0]
else:
for img in items:
if img["id"] == fileId:
newestImg = img
break
else:
newestImg = items[0]
global imageDataHistory, selectedImageData
for imgData in imageDataHistory:
if imgData["id"] == newestImg["id"]:
selectedImageData = imgData
return flask.redirect("/view") #image has already been processed, load view with old data
imageStream = downloadImg(newestImg["id"])
model = HealthModel(os.path.join(os.getcwd(),"model.pth"))
prediction = model.predict(imageStream)
newestImg["runTime"] = datetime.now().isoformat()
newestImg["healthy"] = not bool(prediction[0])
print(prediction[1])
newestImg["confidence"] = float(int(prediction[1] * 100000) / 100000.0) * 100
imageDataHistory.append(newestImg)
selectedImageData = newestImg
saveData()
return flask.redirect("/view")
@app.route("/view")
def viewCurrentData():
if current_credentials is None:
return flask.redirect("/authorize")
if selectedImageData is None:
return flask.redirect("/runmodel")
results = service.files().list(
q="'1PNm562W_IqKJ8Zxl8bz03p_yiEZoh88W' in parents", spaces="drive", orderBy="name_natural desc", fields="nextPageToken, files(id, modifiedTime, name)"
).execute()
items = json.dumps(results.get('files', []))
return flask.render_template("view.html", allfiles=items, fileid=selectedImageData["id"], filename=selectedImageData["name"], isHealthy=selectedImageData["healthy"], confidence=selectedImageData["confidence"], runTime=selectedImageData["runTime"])
@app.route("/trainmodel")
def trainModel():
if current_credentials is None:
return flask.redirect("/authorize")
fileId = flask.request.args.get("FILEID")
if fileId is None:
return "", 400
return "", 501
@app.route("/error")
def error():
return "An error has occured.", 500
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'
#loadData()
# 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)