This repository was archived by the owner on Dec 17, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathServer.py
217 lines (179 loc) · 6.32 KB
/
Server.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
import Global
from User import User
from flask import Flask, request, flash, render_template, redirect
from flask_login import LoginManager, UserMixin, \
login_user, login_required, \
logout_user, current_user, AnonymousUserMixin
from Assignment import Assignment
from Assignment import StudentFile
from Assignment import Testcase
# initialize:
# flask, flask-login manager
app = Flask(__name__)
loginManager = LoginManager()
loginManager.init_app(app)
app.secret_key = "some key"
# utility functions
def flaskout(*args, **kwargs):
print(*args, **kwargs)
def _getUsrPswd(form):
return form.get("username"), form.get("password")
# main site: server status
@app.route('/')
def main():
if current_user.is_authenticated:
return redirect("/Dashboard/", code=302)
return render_template('index.htm')
@app.route('/login/')
def login(errorMsg=None):
if current_user.is_authenticated:
return redirect("/Dashboard/", code=302)
return render_template('login.htm', error=errorMsg)
@app.route('/login/action/', methods=['POST'])
def login_action():
''' flask login user '''
username, inpswd = _getUsrPswd(request.form)
# check user validity
user = None
if User.usr_pswd.hasUser((username, inpswd)):
user = User.fromLogin(username, inpswd)
flaskout("server.login:", user.id, "logged in")
flaskout("User dict:", user.__dict__)
else:
return login(f"({username}, {inpswd}) is Not valid")
login_user(user)
flaskout("current user:", current_user)
flaskout("current_user.__dict__: ", current_user.__dict__)
return redirect("/", code=302)
# Web Interfaces
@loginManager.user_loader
def load_user(userid):
""" returns current user """
if User.usr_pswd.hasUsername(userid):
serial = User.usr_pswd.getSerialByName(userid)
usr = User.mangoLoad(serial)
return usr
else:
return None
@app.route('/register/')
def register(errorMsg=None):
if current_user.is_authenticated:
return redirect("/Dashboard/", code=302)
return render_template('register.htm', error=errorMsg)
@app.route('/register/action/', methods=['POST'])
def register_action():
username, password = _getUsrPswd(request.form)
# # case 1
# if User.usr_pswd.hasUser((username, password)):
# return f"You ({username},{password}) already have an account!"
# case 2
if User.usr_pswd.hasUsername(username):
return register(f"username {username} in use")
# case 3
usr = User.newUser(username, password)
flaskout("flask.register: new user")
flaskout(f"username = {username}, password = {password}, "
f"serial = {usr.serial} (debug)")
login_user(usr)
return redirect("/", code=302)
@app.route('/Dashboard/')
@login_required
def dashBoard(error = None):
ds = {"username": current_user.id,
"asmts": [],
"error": error
}
for asmtSerial in current_user.asmtList:
asmt = Assignment.mangoLoad(int(asmtSerial))
ds["asmts"].append((asmt.asmtName, str(asmtSerial)))
# use ds as your data structure
return render_template('dashboard.htm', para=ds)
@app.route('/asmt/<serialNumber>/')
@login_required
def loadAsmtPage(serialNumber):
asmt = Assignment.mangoLoad(int(serialNumber))
# use asmt here, which is loaded
#
alltest = []
for test_serial in asmt.getResult(current_user.id)[1]:
alltest.append(Testcase.mangoLoad(test_serial))
funcs = {}
for test in alltest:
funcs.setdefault(test.getName(), [])
funcs[test.getName()].append(test.serial)
ds = {
"username" : current_user.id,
"stuCode" : asmt.getPrevSub(current_user.id),
"funcs" : funcs,
"asmtname": asmt.asmtName,
'serialNumber': asmt.serial
}
return render_template('assignment.htm', para=ds)
@app.route('/asmt/<asmtSerial>/upload/', methods=['POST'])
@login_required
def upload(asmtSerial):
flaskout("server.upload: started")
studentCode = request.files.get('studentCode')
flaskout(current_user, current_user.__dict__)
flaskout("server.upload: finished")
studentCodeStr = studentCode.read().decode("utf-8")
flaskout("file contents:", studentCodeStr)
flaskout("file contents finished")
asmt = Assignment.mangoLoad(int(asmtSerial))
asmt.upload(current_user.id, studentCodeStr)
asmt.mangoSave()
return redirect(f"/asmt/{asmtSerial}/")
#
# # error handlers
# @loginManager.unauthorized_handler
# def unauthorized():
# flaskout(User.usr_pswd.usr_pswd)
# flaskout(current_user, "tried to access unauthorized page")
# return "handled unauthorized page"
#
# @app.errorhandler(404)
# def page_not_found(e):
# flaskout(current_user, "accessed page that does not exist")
# # note that we set the 404 status explicitly
# return "404"
@app.route('/addasmt/')
@login_required
def addAsmt():
""" user add asmt using get request """
asmtSerial = request.args.get('serial')
try:
if type(Assignment.mangoLoad(int(asmtSerial))) != Assignment:
return dashBoard(f"Assignment {asmtSerial} is Not valid")
except:
return dashBoard(f"Assignment {asmtSerial} is Not valid")
flaskout(f"{current_user} tried to add asmt: {asmtSerial}")
current_user.asmtList.append(asmtSerial)
current_user.mangoUpdate()
return redirect("/Dashboard/", code=302)
@app.route('/debug/addAsmt')
def debugAddAsmt():
""" debug force add asmt """
assigner = request.args.get("assigner")
asmtName = request.args.get("asmtName")
newasmt = Assignment(assigner, asmtName)
newasmt.serial = Global.NEXT_SERIAL
newasmt.mangoSave()
return f"added: Assignment({newasmt.serial}, {assigner}, {asmtName}) to database"
@app.route('/logout/')
@login_required
def logout():
'''logout current user'''
flaskout(current_user, ":", current_user.__dict__)
flaskout("tried to logout")
res = None
if current_user.is_authenticated:
userid = current_user.get_id()
logout_user()
res = f"{userid} logged out"
flaskout(res)
flaskout("succeeded")
return redirect('/', code=302)
if __name__ == "__main__":
app.config['SESSION_TYPE'] = 'mongodb'
app.run(host=Global.SERVER_HOST, port=Global.SERVER_PORT, debug=True)
# http://127.0.0.1:7777/WeTest