-
Notifications
You must be signed in to change notification settings - Fork 4
/
backend.py
387 lines (337 loc) · 11.8 KB
/
backend.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
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
##from __future__ import absolute_import
##from __future__ import division, print_function, unicode_literals
##import json
##from flask_cors import CORS
##from flask import Flask, request
##from flask import render_template
##from hashlib import sha256
##
##app = Flask(__name__)
##CORS(app)
##
##def get_summary(text):
##
## from sumy.parsers.html import HtmlParser
## from sumy.parsers.plaintext import PlaintextParser
## from sumy.nlp.tokenizers import Tokenizer
## from sumy.summarizers.lsa import LsaSummarizer as Summarizer
## from sumy.nlp.stemmers import Stemmer
## from sumy.utils import get_stop_words
##
##
## LANGUAGE = "english"
## SENTENCES_COUNT = 2
##
## parser = PlaintextParser.from_string(text, Tokenizer(LANGUAGE))
## stemmer = Stemmer(LANGUAGE)
##
## summarizer = Summarizer(stemmer)
## summarizer.stop_words = get_stop_words(LANGUAGE)
##
## for sentence in summarizer(parser.document, SENTENCES_COUNT):
## print(sentence)
##
##@app.route('/')
##def home():
## #console.log("h")
## print("h")
## return render_template("login.html", name=None)
##
##@app.route('/r', methods=['POST'])
##def show_user_profile():
## data = request.form
## print(data)
## user = data["username"]
## password = data["password"]
## # TODO check if user is in db if not create otherwise sign in
## # if (not in db):
## # return
## hashedPass = sha256(password.encode()).hexdigest()
## print(hashedPass)
## success = dict()
## success["result"] = "200"
## return json.dumps(success)
##
##
##@app.route('/signin', methods=['POST'])
##def sign_in():
## data = request.form
## print(data)
## user = data["user"]
## password = data["password"]
## # TODO Get users password hashed and compare to the hash
## storedPass = "043a718774c572bd8a25adbeb1bfcd5c0256ae11cecf9f9c3f925d0e52beaf89"
## if storedPass == sha256(bytes(password)).hexdigest():
## success = dict()
## success["result"] = "200"
## return json.dumps(success)
## else:
## fail = dict()
## fail["result"] = "403"
## return json.dumps(fail)
##
##
##if __name__ == '__main__':
## app.run(use_reloader=True, debug=True)
##
##
##
##
##from __future__ import absolute_import
##from __future__ import division, print_function, unicode_literals
##import json
##from flask_cors import CORS
##from flask import Flask, request
##from flask import render_template
##from hashlib import sha256
##import roachdb
##app = Flask(__name__)
##CORS(app)
##
##
##@app.route("/transcript", methods=["POST"])
##def get_summaryi():
## data = request.form
## print(data)
## text = data["text"]
## summary = get_summary(text)
## success = dict()
## success["result"] = summary
## return json.dumps(success)
####CORS(app)
##@app.route('/r', methods=['POST'])
##def show_user_profile():
##
## print('her22123')
#### CORS(app)
## data = request.form
## print(data)
## user = data["username"]
## password = data["password"]
## print("here")
## # TODO check if user is in db if not create otherwise sign in
## if (db.find_user(user)):
## storedPass = db.get_user_hash()
## print("STORED PASS",storedPass)#"043a718774c572bd8a25adbeb1bfcd5c0256ae11cecf9f9c3f925d0e52beaf89"
## if storedPass == sha256(bytes(password)).hexdigest():
## success = dict()
## success["result"] = "200"
## return json.dumps(success)
## else:
## fail = dict()
## fail["result"] = "403"
## return json.dumps(fail)
## hashedPass = sha256(password.encode()).hexdigest()
## print(hashedPass)
## success = dict()
## success["result"] = "200"
## return json.dumps(success)
##
##
##@app.route('/signin', methods=['POST'])
##def sign_in():
## data = request.form
## print(data)
## user = data["user"]
## password = data["password"]
## # TODO Get users password hashed and compare to the hash
## storedPass = db.get_user_hash()#"043a718774c572bd8a25adbeb1bfcd5c0256ae11cecf9f9c3f925d0e52beaf89"
## if storedPass == sha256(bytes(password)).hexdigest():
## success = dict()
## success["result"] = "200"
## return json.dumps(success)
## else:
## fail = dict()
## fail["result"] = "403"
## return json.dumps(fail)
##
##@app.route('/')
##def home():
## #console.log("h")
## print("h")
## return render_template("login.html", name=None)
##
##def get_summary(text):
##
## from sumy.parsers.html import HtmlParser
## from sumy.parsers.plaintext import PlaintextParser
## from sumy.nlp.tokenizers import Tokenizer
## from sumy.summarizers.lsa import LsaSummarizer as Summarizer
## from sumy.nlp.stemmers import Stemmer
## from sumy.utils import get_stop_words
##
##
## LANGUAGE = "english"
## SENTENCES_COUNT = 2
##
## parser = PlaintextParser.from_string(text, Tokenizer(LANGUAGE))
## stemmer = Stemmer(LANGUAGE)
##
## summarizer = Summarizer(stemmer)
## summarizer.stop_words = get_stop_words(LANGUAGE)
##
## for sentence in summarizer(parser.document, SENTENCES_COUNT):
## print(sentence)
##
##if __name__ == '__main__':
## s = get_summary("""Prime Minister Justin Trudeau will help open the Hack the North conference at the University of Waterloo Friday night
##
## Trudeau is scheduled to be part of the opening ceremonies and speak to the crowd at 8:30 pm
##
## Hack the North brings more than 1,000 students from around the globe to the University of Waterloo campus for a 36 hour hack-a-thon
##
## Pokemon Go similar to game students created at UW competition in 2014
## Health hack-a-thon in Kitchener to tackle problems faced by aging population
## After the opening remarks by Trudeau there will be a fireside chat with Balaji Srinivasan, CEO of the website 21co, which allows people to be paid with digital currency for doing small tasks, and Mike Gibson, an investor with the San Francisco-based 1517 Fund They're expected to talk about the future of technology in Canada, Silicon Valley and beyond
##
## The event will also include a panel on diversity and inclusion in the tech sector
##
## The students will design hardware projects or mobile or web applications during the weekend and present them to a panel of industry experts Sunday morning The top 14 teams will then present to an audience at 2 pm and compete for prizes
##
##
## """)
## db = roachdb.RoachDB()
## #db.view_lecture("280333094310215681")
## db.get_user_hash("leon")
## if not db.find_user("leonf"):
## db.create_user("leonf", "Fattakhov")
## db.add_lecture("leon", "dfjdjdjfjd dfjfjdd")
## db.get_all_lectures("leon")
## db.close()
##
## print("a")
## app.run(use_reloader=True, debug=True)
## print("b")
from __future__ import absolute_import
from __future__ import division, print_function, unicode_literals
import json
from flask_cors import CORS
from flask import Flask, request
from flask import render_template
from flask import *
from hashlib import sha256
import roachdb
##import sys
##sys.stdout = open('output.logs', 'w')
app = Flask(__name__)
CORS(app)
db = roachdb.RoachDB();
##db.create_user("Test", sha256(bytes("red", "utf-8")).hexdigest())
print("added")
curUser = ""
datat = {}
#db.create_user("Advait_Maybhate", sha256(bytes("htn2017", "utf-8")).hexdigest())
def get_summary(text):
total_string =""
from sumy.parsers.html import HtmlParser
from sumy.parsers.plaintext import PlaintextParser
from sumy.nlp.tokenizers import Tokenizer
from sumy.summarizers.lsa import LsaSummarizer as Summarizer
from sumy.nlp.stemmers import Stemmer
from sumy.utils import get_stop_words
LANGUAGE = "english"
SENTENCES_COUNT = int(text.count(".") * 0.2 + 1);
parser = PlaintextParser.from_string(text, Tokenizer(LANGUAGE))
stemmer = Stemmer(LANGUAGE)
summarizer = Summarizer(stemmer)
summarizer.stop_words = get_stop_words(LANGUAGE)
for sentence in summarizer(parser.document, SENTENCES_COUNT):
total_string += str(sentence)
return total_string
@app.route('/')
def home_page():
# console.log("h")
print("h")
return render_template("login.html", name=None)
@app.route("/transcript", methods=["POST"])
def get_summaryi():
global curUser
data = request.form
print(data)
# user = data["username"]
text = data["text"]
print(text)
#print(data[1])
summary = get_summary(text)
db.add_lecture(curUser,text,summary)
success = dict()
success["result"] = summary
print(summary)
return json.dumps(success)
@app.route('/lectures', methods=['POST'])
def show_lectures():
global datat
data = request.form
print(data)
user = data["username"]
temp =dict()
temp["result"]= db.get_all_lectures(user)
# Array of strings repping (transcript, summary) tuples in order of time)
datat = json.dumps(temp)
return redirect("display", code = 302)
@app.route("/display")
def show_transcripts():
global datat
return render_template("index 2.html", data = datat)
@app.route('/r', methods=['POST'])
def show_user_profile():
global curUser
data = request.form
print(data)
user = data["username"]
password = data["password"]
hashedPass = sha256(password.encode()).hexdigest()
# TODO check if user is in db if not create otherwise sign in
# print(list(list(x) for x in db.get_user_hash(user)))
# print(list(db.get_user_hash(user))[0][0])
## sys.flush()
if (db.find_user(user) and hashedPass==db.get_user_hash(user)):
# if 2+2 ==3:
# return render_template("home.html", name=None)
curUser = user
return redirect('/home', code=302)#'#url_for('show_home'))
else:
db.create_user(user,password)
fail = dict()
fail["result"] = "403"
return json.dumps(fail)
@app.route('/home')
def show_home():
global curUser
return render_template("home.html", name=None, username=curUser)
# @app.route('/signin', methods=['POST'])
# def sign_in():
# data = request.form
# print(data)
# user = data["user"]
# password = data["password"]
# # TODO Get users password hashed and compare to the hash
# storedPass = "043a718774c572bd8a25adbeb1bfcd5c0256ae11cecf9f9c3f925d0e52beaf89"
# if storedPass == sha256(bytes(password)).hexdigest():
# success = dict()
# success["result"] = "200"
# return json.dumps(success)
# else:
# fail = dict()
# fail["result"] = "403"
# # return json.dumps(fail)
if __name__ == '__main__':
# s = get_summary("""Prime Minister Justin Trudeau will help open the Hack the North conference at the University of Waterloo Friday night
#
# Trudeau is scheduled to be part of the opening ceremonies and speak to the crowd at 8:30 pm
#
# Hack the North brings more than 1,000 students from around the globe to the University of Waterloo campus for a 36 hour hack-a-thon
#
# Pokemon Go similar to game students created at UW competition in 2014
# Health hack-a-thon in Kitchener to tackle problems faced by aging population
# After the opening remarks by Trudeau there will be a fireside chat with Balaji Srinivasan, CEO of the website 21co, which allows people to be paid with digital currency for doing small tasks, and Mike Gibson, an investor with the San Francisco-based 1517 Fund They're expected to talk about the future of technology in Canada, Silicon Valley and beyond
#
# The event will also include a panel on diversity and inclusion in the tech sector
#
# The students will design hardware projects or mobile or web applications during the weekend and present them to a panel of industry experts Sunday morning The top 14 teams will then present to an audience at 2 pm and compete for prizes
#
#
# """)
print("a")
app.run(use_reloader=True, debug=True)
print("b")