python-gallery/onlylegs/api.py

230 lines
6.7 KiB
Python
Raw Normal View History

2023-08-04 17:34:08 +00:00
"""
Onlylegs - API endpoints
"""
import os
import pathlib
import re
import logging
from uuid import uuid4
2023-09-24 18:53:14 +00:00
from PIL import Image
from PIL.ExifTags import TAGS
2023-08-04 17:34:08 +00:00
from flask import (
Blueprint,
abort,
send_from_directory,
jsonify,
request,
current_app,
)
from flask_login import login_required, current_user
from colorthief import ColorThief
from onlylegs.extensions import db
2023-09-24 18:53:14 +00:00
from onlylegs.models import Users, Pictures, Exif
2023-08-04 17:34:08 +00:00
from onlylegs.utils.generate_image import generate_thumbnail
blueprint = Blueprint("api", __name__, url_prefix="/api")
@blueprint.route("/account/picture/<int:user_id>", methods=["POST"])
@login_required
def account_picture(user_id):
"""
Returns the profile of a user
"""
user = db.get_or_404(Users, user_id)
file = request.files.get("file", None)
# If no image is uploaded, return 404 error
if not file:
return jsonify({"error": "No file uploaded"}), 400
if user.id != current_user.id:
return jsonify({"error": "You are not allowed to do this, go away"}), 403
# Get file extension, generate random name and set file path
img_ext = pathlib.Path(file.filename).suffix.replace(".", "").lower()
img_name = str(user.id)
img_path = os.path.join(current_app.config["PFP_FOLDER"], img_name + "." + img_ext)
# Check if file extension is allowed
if img_ext not in current_app.config["ALLOWED_EXTENSIONS"].keys():
logging.info("File extension not allowed: %s", img_ext)
return jsonify({"error": "File extension not allowed"}), 403
if user.picture:
# Delete cached files and old image
os.remove(os.path.join(current_app.config["PFP_FOLDER"], user.picture))
cache_name = user.picture.rsplit(".")[0]
for cache_file in pathlib.Path(current_app.config["CACHE_FOLDER"]).glob(
cache_name + "*"
):
os.remove(cache_file)
# Save file
try:
file.save(img_path)
except OSError as err:
logging.info("Error saving file %s because of %s", img_path, err)
return jsonify({"error": "Error saving file"}), 500
img_colors = ColorThief(img_path).get_color()
# Save to database
user.colour = img_colors
user.picture = str(img_name + "." + img_ext)
db.session.commit()
return jsonify({"message": "File uploaded"}), 200
@blueprint.route("/account/username/<int:user_id>", methods=["POST"])
@login_required
def account_username(user_id):
"""
Returns the profile of a user
"""
user = db.get_or_404(Users, user_id)
new_name = request.form["name"]
username_regex = re.compile(r"\b[A-Za-z0-9._-]+\b")
# Validate the form
if not new_name or not username_regex.match(new_name):
return jsonify({"error": "Username is invalid"}), 400
if user.id != current_user.id:
return jsonify({"error": "You are not allowed to do this, go away"}), 403
# Save to database
user.username = new_name
db.session.commit()
return jsonify({"message": "Username changed"}), 200
@blueprint.route("/media/<path:path>", methods=["GET"])
def media(path):
"""
Returns image from media folder
r for resolution, thumb for thumbnail etc
e for extension, jpg, png etc
"""
res = request.args.get("r", "").strip()
ext = request.args.get("e", "").strip()
2023-08-04 17:34:08 +00:00
# if no args are passed, return the raw file
if not res and not ext:
if not os.path.exists(os.path.join(current_app.config["MEDIA_FOLDER"], path)):
abort(404)
return send_from_directory(current_app.config["MEDIA_FOLDER"], path)
# Generate thumbnail, if None is returned a server error occured
thumb = generate_thumbnail(path, res, ext)
if not thumb:
abort(500)
response = send_from_directory(os.path.dirname(thumb), os.path.basename(thumb))
response.headers["Cache-Control"] = "public, max-age=31536000"
response.headers["Expires"] = "31536000"
return response
@blueprint.route("/media/upload", methods=["POST"])
@login_required
def upload():
"""
Uploads an image to the server and saves it to the database
"""
2023-09-24 18:53:14 +00:00
image_description = request.form.get("description", "").strip()
image_alt = request.form.get("alt", "").strip()
image_file = request.files.get("file", None)
2023-08-04 17:34:08 +00:00
2023-09-24 18:53:14 +00:00
if not image_file:
2023-08-04 17:34:08 +00:00
return jsonify({"message": "No file"}), 400
# Get file extension, generate random name and set file path
2023-09-24 18:53:14 +00:00
image_mime = pathlib.Path(image_file.filename).suffix.replace(".", "").lower()
image_name = "GWAGWA_" + str(uuid4())
image_filename = image_name + "." + image_mime
save_path = os.path.join(current_app.config["UPLOAD_FOLDER"], image_filename)
2023-08-04 17:34:08 +00:00
2023-09-24 18:53:14 +00:00
if image_mime not in current_app.config["ALLOWED_EXTENSIONS"].keys():
logging.info("File extension not allowed: %s", image_mime)
2023-08-04 17:34:08 +00:00
return jsonify({"message": "File extension not allowed"}), 403
2023-09-24 18:53:14 +00:00
image_file.save(save_path)
2023-08-04 17:34:08 +00:00
2023-09-24 18:53:14 +00:00
image_colours = ColorThief(save_path).get_palette(color_count=3)
2023-08-04 17:34:08 +00:00
2023-09-24 18:53:14 +00:00
image_record = Pictures(
2023-08-04 17:34:08 +00:00
author_id=current_user.id,
2023-09-24 18:53:14 +00:00
filename=image_filename,
mimetype=image_mime,
colours=image_colours,
description=image_description,
alt=image_alt,
2023-08-04 17:34:08 +00:00
)
2023-09-24 18:53:14 +00:00
db.session.add(image_record)
db.session.commit()
2023-08-04 17:34:08 +00:00
2023-09-24 18:53:14 +00:00
image_exif = []
with Image.open(save_path) as file:
image_exif.append(
Exif(
picture_id=image_record.id,
key="FileName",
value=image_filename,
)
)
image_exif.append(
Exif(
picture_id=image_record.id,
key="FileSize",
value=os.path.getsize(save_path),
)
)
image_exif.append(
Exif(
picture_id=image_record.id,
key="FileFormat",
value=image_mime,
)
)
image_exif.append(
Exif(
picture_id=image_record.id,
key="FileWidth",
value=file.size[0],
)
)
image_exif.append(
Exif(
picture_id=image_record.id,
key="FileHeight",
value=file.size[1],
)
)
try:
tags = file._getexif()
for tag, value in TAGS.items():
if tag in tags:
image_exif.append(
Exif(
picture_id=image_record.id,
key=value,
value=tags[tag],
)
)
except TypeError:
pass
db.session.add_all(image_exif)
2023-08-04 17:34:08 +00:00
db.session.commit()
return jsonify({"message": "File uploaded"}), 200