-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.py
286 lines (201 loc) · 6.63 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
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
from flask import Flask
from flask import make_response
from flask import jsonify
from flask import request
from flask_sqlalchemy import SQLAlchemy
from marshmallow import Schema, fields
from werkzeug.security import generate_password_hash, \
check_password_hash
from datetime import datetime, timezone, timedelta
import json
import os
import jwt
import functools
BASE_DIR = os.path.dirname(__file__)
DB_FILE = os.path.join(BASE_DIR, "development.sqlite3")
SQLITE_DB_URI = "sqlite:///" + DB_FILE
app = Flask(__name__)
app.config["SQLALCHEMY_TRACK_MODIFICATIONS"] = False
app.config["SQLALCHEMY_DATABASE_URI"] = SQLITE_DB_URI
app.config["SECRET_KEY"] = "sk"
db = SQLAlchemy(app)
def jwt_required(view):
@functools.wraps(view)
def wrapped_view(**kwargs):
try:
decoded_jwt = jwt.decode(
request.headers["JWT"],
app.config["SECRET_KEY"],
algorithms=["HS256"]
)
user = User.query.get(decoded_jwt["user_id"])
if not user:
return jsonify({
"message": "Data not found",
"status_code": 404
}), 404
except jwt.exceptions.ExpiredSignatureError:
return {
"message": "Login time-out",
"status_code": 440
}, 440
except:
return {
"message": "Forbidden",
"status_code": 403
}, 403
return view(decoded_jwt, user, **kwargs)
return wrapped_view
class Framework(db.Model):
__tablename__ = "frameworks"
id = db.Column(db.Integer, primary_key=True)
name = db.Column(db.String(50), unique=True)
author_id = db.Column(db.ForeignKey("users.id"), nullable=False)
def __init__(self, name, author_id):
self.name = name
self.author_id = author_id
def __repr__(self):
return f"Framework(id={self.id}, name={self.name})"
class User(db.Model):
__tablename__ = "users"
id = db.Column(db.Integer, primary_key=True)
username = db.Column(db.String(50), unique=True)
password = db.Column(db.String(88), nullable=True)
def hash_password(self, password):
return generate_password_hash(
password,
method="sha256"
)
def check_password(self, password):
return check_password_hash(
self.password,
password)
def __init__(self, username, password):
self.username = username
self.password = self.hash_password(password)
def __repr__(self):
return f"User(id={self.id}, username={self.username})"
class FrameworkSchema(Schema):
id = fields.Int()
name = fields.Str()
author_id = fields.Int()
class UserSchema(Schema):
id = fields.Int()
username = fields.Str()
framework_schema = FrameworkSchema()
user_schema = UserSchema()
@app.route("/api/frameworks", methods=["GET"])
def get_frameworks():
frameworks = Framework.query.all()
frameworks_json = framework_schema.dump(frameworks, many=True)
response = make_response(
frameworks_json,
200)
response.headers["Content-Type"] = "application/json"
return response
@app.route("/api/frameworks/<int:id>")
def get_framework(id):
framework = Framework.query.get(id)
if not framework:
return jsonify({
"message": "Data not found",
"status_code": 404
}), 404
framework_json = framework_schema.dump(framework)
return framework_json
@app.route("/api/frameworks", methods=["POST"])
@jwt_required
def create_framework(decoded_jwt, user):
framework = Framework.query.filter_by(
name=request.json["name"]).first()
if framework:
return {
"message": "Conflict",
"status_code": 409
}, 409
new_framework = Framework(
name=request.json["name"],
author_id=user.id
)
db.session.add(new_framework)
db.session.commit()
new_framework_dict = framework_schema.dump(new_framework)
return new_framework_dict
@app.route("/api/frameworks/<int:id>", methods=["PUT"])
@jwt_required
def update_framework(decoded_jwt, user, id):
framework = Framework.query.get(id)
if not framework:
return jsonify({
"message": "Data not found",
"status_code": 404
}), 404
if framework.author_id != user.id:
return {
"message": "Forbidden",
"status_code": 403
}, 403
framework.name = request.json["name"]
db.session.commit()
framework_json = framework_schema.dump(framework)
return framework_json
@app.route("/api/frameworks/<int:id>", methods=["DELETE"])
@jwt_required
def destroy_framework(decoded_jwt, user, id):
framework = Framework.query.get(id)
if framework:
if framework.author_id != user.id:
return {
"message": "Forbidden",
"status_code": 403
}, 403
db.session.delete(framework)
db.session.commit()
return {}, 204
else:
return jsonify({
"message": "Data not found",
"status_code": 404
}), 404
@app.route("/api/users", methods=["POST"])
def create_user():
user = User.query.filter_by(
username=request.json["username"]).first()
if user:
return {
"message": "Conflict",
"status_code": 409
}, 409
new_user = User(
username=request.json["username"],
password=request.json["password"]
)
db.session.add(new_user)
db.session.commit()
new_user_json = user_schema.dump(new_user)
return new_user_json
@app.route("/login", methods=["POST"])
def login():
user = User.query.filter_by(
username=request.json["username"]).first()
if user and user.check_password(
request.json["password"]):
encoded_jwt = jwt.encode(
{
"iss": user.username,
"user_id": user.id,
"exp": datetime.now(
tz=timezone.utc
) + timedelta(minutes=2)
},
app.config["SECRET_KEY"],
algorithm="HS256"
)
return jsonify({
"JWT": encoded_jwt
})
else:
return jsonify({
"message": "Data not found",
"status_code": 404
}), 404