-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.py
241 lines (203 loc) · 7.72 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
import os
from flask import Flask, jsonify, request
from werkzeug.utils import secure_filename
from models import db, User, Tierlist, Category, Element
from flask_sqlalchemy import SQLAlchemy
from flask_migrate import Migrate
from flask_cors import CORS
app = Flask(__name__)
app.config['SQLALCHEMY_DATABASE_URI'] = 'sqlite:///tierlist.db'
app.config['DEBUG'] = True
app.config['UPLOAD_FOLDER'] = 'img/' # Carpeta donde se guardarán las imágenes
app.config['MAX_CONTENT_LENGTH'] = 2 * 1024 * 1024 # Límite de tamaño de archivo a 2 MB
db.init_app(app)
CORS(app)
migrate = Migrate(app, db)
ALLOWED_EXTENSIONS = {'png', 'jpg', 'jpeg', 'gif'}
def allowed_file(filename):
return '.' in filename and filename.rsplit('.', 1)[1].lower() in ALLOWED_EXTENSIONS
@app.route('/upload', methods=['POST']) # CREATE ELEMENT IMG
def upload_file():
if 'file' not in request.files:
return jsonify({'error': 'No file part'}), 400
file = request.files['file']
if file.filename == '':
return jsonify({'error': 'No selected file'}), 400
if file and allowed_file(file.filename):
filename = secure_filename(file.filename)
file.save(os.path.join(app.config['UPLOAD_FOLDER'], filename))
return jsonify({'filename': filename}), 201
return jsonify({'error': 'File not allowed'}), 400
@app.route('/', methods=['GET', 'POST', 'PUT', 'DELETE']) # SAY HI!
def main():
return jsonify({"msg": "Hola, Tierlist"}), 200
#
# CRUD USERS ENDPOINTS
#
@app.route('/users', methods=['GET']) # ALL USERS
def get_users():
users = User.query.all()
return jsonify([user.serialize() for user in users])
@app.route('/users/<int:id>', methods=['GET']) # SINGLE USER
def get_user(id):
user = User.query.get_or_404(id)
return jsonify(user.serialize())
@app.route('/users', methods=['POST']) # NEW USER
def create_user():
data = request.get_json()
new_user = User(name=data['name'], email=data['email'])
db.session.add(new_user)
db.session.commit()
return jsonify(new_user.serialize()), 201
@app.route('/users/<int:id>', methods=['DELETE']) # DELETE USER
def delete_user(id):
user = User.query.get_or_404(id)
db.session.delete(user)
db.session.commit()
return '', 204
#
# CRUD TIERLIST ENDPOINTS
#
@app.route('/tierlists', methods=['GET']) # GET ALL
def get_tierlists():
tierlists = Tierlist.query.all()
return jsonify([tierlist.serialize() for tierlist in tierlists])
@app.route('/tierlists/<int:id>', methods=['GET'])
def get_tierlist(id):
tierlist = Tierlist.query.get(id)
if tierlist:
response = {
'id': tierlist.id,
'title': tierlist.title,
'created_by': tierlist.created_by,
'description': tierlist.description,
'categories': [cat.serialize() for cat in tierlist.categories]
}
return jsonify(response)
else:
return jsonify({'error': 'Tierlist not found'}), 404
@app.route('/tierlists', methods=['POST']) # CREATE NEW TIERLIST
def create_tierlist():
data = request.get_json()
new_tierlist = Tierlist(
title=data['title'],
description=data.get('description'),
created_by=data['created_by']
)
db.session.add(new_tierlist)
db.session.commit()
return jsonify(new_tierlist.serialize()), 201
@app.route('/tierlists/<int:tierlist_id>', methods=['PUT']) # UPDATE TIERLIST
def update_tierlist(tierlist_id):
data = request.get_json()
tierlist = Tierlist.query.get(tierlist_id)
if tierlist is None:
return jsonify({'error': 'Tierlist not found'}), 404
tierlist.title = data['title']
tierlist.description = data.get('description')
db.session.commit()
return jsonify(tierlist.serialize())
@app.route('/tierlists/<int:tierlist_id>', methods=['DELETE']) # DELETE TIERLIST
def delete_tierlist(tierlist_id):
tierlist = Tierlist.query.get(tierlist_id)
if tierlist is None:
return jsonify({'error': 'Tierlist not found'}), 404
db.session.delete(tierlist)
db.session.commit()
return jsonify({'message': 'Tierlist deleted'})
#
# CRUD CATEGORIES ENDPOINTS
#
@app.route('/categories', methods=['GET']) # GET ALL CATEGORIES
def get_categories():
categories = Category.query.all()
return jsonify([category.serialize() for category in categories])
@app.route('/categories/<int:category_id>', methods=['GET']) # GET SINGLE CATEGORY
def get_category(category_id):
category = Category.query.get(category_id)
if category is None:
return jsonify({'error': 'Category not found'}), 404
return jsonify(category.serialize())
@app.route('/categories', methods=['POST']) # CREATE NEW CATEGORY
def create_category():
data = request.get_json()
new_category = Category(
tierlist_id=data['tierlist_id'],
name=data['name'],
order=data['order']
)
db.session.add(new_category)
db.session.commit()
return jsonify(new_category.serialize()), 201
@app.route('/categories/<int:category_id>', methods=['PUT']) # UPDATE CATEGORY
def update_category(category_id):
data = request.get_json()
category = Category.query.get(category_id)
if category is None:
return jsonify({'error': 'Category not found'}), 404
category.name = data['name']
category.order = data['order']
db.session.commit()
return jsonify(category.serialize())
@app.route('/categories/<int:category_id>', methods=['DELETE']) # DELETE SINGLE CATEGORY
def delete_category(category_id):
category = Category.query.get(category_id)
if category is None:
return jsonify({'error': 'Category not found'}), 404
db.session.delete(category)
db.session.commit()
return jsonify({'message': 'Category deleted'})
#
# CRUD ELEMENT ENDPOINTS
#
@app.route('/elements', methods=['GET']) # GET ALL ELEMENTS
def get_elements():
elements = Element.query.all()
return jsonify([element.serialize() for element in elements])
@app.route('/elements', methods=['POST']) # CREATE NEW ELEMENT
def create_element():
if 'img' not in request.files:
return jsonify({'error': 'No file part'}), 400
file = request.files['img']
if file.filename == '':
return jsonify({'error': 'No selected file'}), 400
if file and allowed_file(file.filename):
filename = secure_filename(file.filename)
file.save(os.path.join(app.config['UPLOAD_FOLDER'], filename))
data = request.form
new_element = Element(
category_id=data['category_id'],
name=data['name'],
img=filename
)
db.session.add(new_element)
db.session.commit()
return jsonify(new_element.serialize()), 201
return jsonify({'error': 'File not allowed or missing'}), 400
@app.route('/elements/<int:element_id>', methods=['PUT']) # UPDATE ELEMENT
def update_element(element_id):
element = Element.query.get(element_id)
if element is None:
return jsonify({'error': 'Element not found'}), 404
data = request.form
element.name = data.get('name', element.name)
if 'img' in request.files:
file = request.files['img']
if file and allowed_file(file.filename):
filename = secure_filename(file.filename)
file.save(os.path.join(app.config['UPLOAD_FOLDER'], filename))
element.img = filename
db.session.commit()
return jsonify(element.serialize())
@app.route('/elements/<int:element_id>', methods=['DELETE']) # DELETE ELEMENT
def delete_element(element_id):
element = Element.query.get(element_id)
if element is None:
return jsonify({'error': 'Element not found'}), 404
db.session.delete(element)
db.session.commit()
return jsonify({'message': 'Element deleted'})
with app.app_context():
db.create_all()
if __name__ == '__main__':
app.run()