2023-03-04 13:45:26 +00:00
|
|
|
"""
|
|
|
|
Onlylegs - API endpoints
|
|
|
|
"""
|
|
|
|
from uuid import uuid4
|
|
|
|
import os
|
2023-03-14 22:07:17 +00:00
|
|
|
import pathlib
|
2023-03-04 13:45:26 +00:00
|
|
|
import logging
|
2023-03-26 23:34:03 +00:00
|
|
|
import platformdirs
|
2023-03-01 23:29:34 +00:00
|
|
|
|
2023-04-05 16:35:59 +00:00
|
|
|
from flask import Blueprint, send_from_directory, abort, flash, request, current_app
|
2023-03-04 13:45:26 +00:00
|
|
|
from werkzeug.utils import secure_filename
|
2023-03-03 00:26:46 +00:00
|
|
|
|
2023-04-03 18:04:49 +00:00
|
|
|
from flask_login import login_required, current_user
|
|
|
|
|
2023-03-05 16:22:11 +00:00
|
|
|
from colorthief import ColorThief
|
2023-03-01 23:29:34 +00:00
|
|
|
|
2023-03-12 14:52:24 +00:00
|
|
|
from sqlalchemy.orm import sessionmaker
|
2023-03-01 23:29:34 +00:00
|
|
|
|
2023-03-12 15:52:23 +00:00
|
|
|
from gallery import db
|
2023-03-14 22:07:17 +00:00
|
|
|
from gallery.utils import metadata as mt
|
2023-03-26 23:34:03 +00:00
|
|
|
from gallery.utils.generate_image import generate_thumbnail
|
2023-03-01 23:29:34 +00:00
|
|
|
|
2023-01-10 14:40:43 +00:00
|
|
|
|
2023-03-01 23:29:34 +00:00
|
|
|
blueprint = Blueprint('api', __name__, url_prefix='/api')
|
2023-03-04 13:45:26 +00:00
|
|
|
db_session = sessionmaker(bind=db.engine)
|
|
|
|
db_session = db_session()
|
2023-01-10 14:40:43 +00:00
|
|
|
|
|
|
|
|
2023-03-14 22:07:17 +00:00
|
|
|
@blueprint.route('/file/<file_name>', methods=['GET'])
|
2023-03-26 01:04:13 +00:00
|
|
|
def file(file_name):
|
2023-03-04 13:45:26 +00:00
|
|
|
"""
|
|
|
|
Returns a file from the uploads folder
|
2023-03-20 17:04:05 +00:00
|
|
|
r for resolution, 400x400 or thumb for thumbnail
|
2023-03-04 13:45:26 +00:00
|
|
|
"""
|
2023-03-20 17:04:05 +00:00
|
|
|
res = request.args.get('r', default=None, type=str) # Type of file (thumb, etc)
|
2023-04-01 16:59:17 +00:00
|
|
|
ext = request.args.get('e', default=None, type=str) # File extension
|
2023-03-14 22:07:17 +00:00
|
|
|
file_name = secure_filename(file_name) # Sanitize file name
|
|
|
|
|
2023-03-02 13:19:10 +00:00
|
|
|
# if no args are passed, return the raw file
|
2023-04-04 14:21:16 +00:00
|
|
|
if not res and not ext:
|
2023-03-14 22:07:17 +00:00
|
|
|
if not os.path.exists(os.path.join(current_app.config['UPLOAD_FOLDER'], file_name)):
|
2023-03-04 13:45:26 +00:00
|
|
|
abort(404)
|
2023-03-14 22:07:17 +00:00
|
|
|
return send_from_directory(current_app.config['UPLOAD_FOLDER'], file_name)
|
2023-03-26 23:34:03 +00:00
|
|
|
|
2023-04-01 16:59:17 +00:00
|
|
|
thumb = generate_thumbnail(file_name, res, ext)
|
2023-03-26 20:58:17 +00:00
|
|
|
if not thumb:
|
2023-03-04 13:45:26 +00:00
|
|
|
abort(404)
|
2023-03-26 23:34:03 +00:00
|
|
|
|
2023-03-26 20:58:17 +00:00
|
|
|
return send_from_directory(os.path.dirname(thumb), os.path.basename(thumb))
|
2023-01-25 15:13:56 +00:00
|
|
|
|
2023-01-11 19:46:31 +00:00
|
|
|
|
2023-04-07 09:18:03 +00:00
|
|
|
# @blueprint.route('/page', methods=['get'])
|
|
|
|
# def page():
|
|
|
|
# """
|
|
|
|
# Returns a json object with all the images
|
|
|
|
# info required to generate a page
|
|
|
|
# """
|
|
|
|
# page_num = request.args.get('page', default=1, type=int)
|
|
|
|
# limit = current_app.config['UPLOAD_CONF']['max-load']
|
|
|
|
|
|
|
|
# if not page_num:
|
|
|
|
# abort(400, 'No page number specified')
|
|
|
|
# if not isinstance(page_num, int):
|
|
|
|
# abort(400, 'Page number is not a number')
|
|
|
|
# if int(page_num) < 1:
|
|
|
|
# abort(400, 'Page number is less than 1')
|
|
|
|
|
|
|
|
# # get the total number of images in the database
|
|
|
|
# # calculate the total number of pages, and make sure the page number is valid
|
|
|
|
# total_images = db_session.query(db.Posts.id).count()
|
|
|
|
# pages = ceil(max(total_images, limit) / limit)
|
|
|
|
# if page_num > pages:
|
|
|
|
# abort(404, 'You have gone above and beyond, but this isnt a fairy tale.')
|
|
|
|
|
|
|
|
# # get the images for the current page
|
|
|
|
# images = (db_session.query(db.Posts.filename, db.Posts.alt, db.Posts.colours,
|
|
|
|
# db.Posts.created_at, db.Posts.id)
|
|
|
|
# .order_by(db.Posts.id.desc())
|
|
|
|
# .offset((page_num - 1) * limit)
|
|
|
|
# .limit(limit)
|
|
|
|
# .all())
|
|
|
|
# image_list = []
|
|
|
|
# for image in images:
|
|
|
|
# image_list.append({
|
|
|
|
# 'id': image.id,
|
|
|
|
# 'filename': image.filename,
|
|
|
|
# 'alt': image.alt,
|
|
|
|
# 'colours': image.colours,
|
|
|
|
# 'created_at': image.created_at,
|
|
|
|
# })
|
|
|
|
# return jsonify(image_list)
|
|
|
|
|
|
|
|
|
2023-01-11 19:46:31 +00:00
|
|
|
@blueprint.route('/upload', methods=['POST'])
|
|
|
|
@login_required
|
|
|
|
def upload():
|
2023-03-04 13:45:26 +00:00
|
|
|
"""
|
|
|
|
Uploads an image to the server and saves it to the database
|
|
|
|
"""
|
2023-01-13 18:29:07 +00:00
|
|
|
form_file = request.files['file']
|
2023-01-11 19:46:31 +00:00
|
|
|
form = request.form
|
2023-01-13 18:29:07 +00:00
|
|
|
|
2023-03-14 22:07:17 +00:00
|
|
|
# If no image is uploaded, return 404 error
|
2023-01-13 18:29:07 +00:00
|
|
|
if not form_file:
|
2023-01-11 19:46:31 +00:00
|
|
|
return abort(404)
|
2023-01-25 15:13:56 +00:00
|
|
|
|
2023-03-14 22:07:17 +00:00
|
|
|
# Get file extension, generate random name and set file path
|
|
|
|
img_ext = pathlib.Path(form_file.filename).suffix.replace('.', '').lower()
|
2023-04-05 16:35:59 +00:00
|
|
|
img_name = "GWAGWA_" + str(uuid4())
|
2023-03-05 16:22:11 +00:00
|
|
|
img_path = os.path.join(current_app.config['UPLOAD_FOLDER'], img_name+'.'+img_ext)
|
2023-01-11 19:46:31 +00:00
|
|
|
|
2023-03-14 22:07:17 +00:00
|
|
|
# Check if file extension is allowed
|
2023-03-11 22:14:03 +00:00
|
|
|
if img_ext not in current_app.config['ALLOWED_EXTENSIONS'].keys():
|
2023-03-04 13:45:26 +00:00
|
|
|
logging.info('File extension not allowed: %s', img_ext)
|
2023-01-14 01:46:11 +00:00
|
|
|
abort(403)
|
2023-03-02 13:19:10 +00:00
|
|
|
|
2023-01-25 15:13:56 +00:00
|
|
|
# Save file
|
2023-01-13 18:29:07 +00:00
|
|
|
try:
|
2023-03-05 16:22:11 +00:00
|
|
|
form_file.save(img_path)
|
2023-04-02 16:50:52 +00:00
|
|
|
except OSError as err:
|
|
|
|
logging.info('Error saving file %s because of %s', img_path, err)
|
2023-01-13 18:29:07 +00:00
|
|
|
abort(500)
|
2023-01-25 15:13:56 +00:00
|
|
|
|
2023-03-14 22:07:17 +00:00
|
|
|
img_exif = mt.Metadata(img_path).yoink() # Get EXIF data
|
2023-04-02 16:50:52 +00:00
|
|
|
img_colors = ColorThief(img_path).get_palette(color_count=3) # Get color palette
|
2023-03-14 22:07:17 +00:00
|
|
|
|
2023-03-05 16:22:11 +00:00
|
|
|
# Save to database
|
2023-04-03 18:04:49 +00:00
|
|
|
query = db.Posts(author_id=current_user.id,
|
2023-04-05 16:35:59 +00:00
|
|
|
filename=img_name + '.' + img_ext,
|
|
|
|
mimetype=img_ext,
|
|
|
|
exif=img_exif,
|
|
|
|
colours=img_colors,
|
|
|
|
description=form['description'],
|
|
|
|
alt=form['alt'])
|
2023-04-02 16:50:52 +00:00
|
|
|
|
|
|
|
db_session.add(query)
|
|
|
|
db_session.commit()
|
|
|
|
|
|
|
|
return 'Gwa Gwa' # Return something so the browser doesn't show an error
|
2023-01-11 19:46:31 +00:00
|
|
|
|
2023-03-11 22:14:03 +00:00
|
|
|
|
2023-03-09 23:31:58 +00:00
|
|
|
@blueprint.route('/delete/<int:image_id>', methods=['POST'])
|
2023-01-11 19:46:31 +00:00
|
|
|
@login_required
|
2023-03-09 23:31:58 +00:00
|
|
|
def delete_image(image_id):
|
2023-03-04 13:45:26 +00:00
|
|
|
"""
|
|
|
|
Deletes an image from the server and database
|
|
|
|
"""
|
2023-03-09 23:31:58 +00:00
|
|
|
img = db_session.query(db.Posts).filter_by(id=image_id).first()
|
2023-01-11 19:46:31 +00:00
|
|
|
|
2023-03-26 20:58:17 +00:00
|
|
|
# Check if image exists and if user is allowed to delete it (author)
|
2023-01-13 18:29:07 +00:00
|
|
|
if img is None:
|
2023-01-11 19:46:31 +00:00
|
|
|
abort(404)
|
2023-04-03 18:04:49 +00:00
|
|
|
if img.author_id != current_user.id:
|
2023-01-11 19:46:31 +00:00
|
|
|
abort(403)
|
2023-01-25 15:13:56 +00:00
|
|
|
|
2023-03-26 20:58:17 +00:00
|
|
|
# Delete file
|
2023-01-11 19:46:31 +00:00
|
|
|
try:
|
2023-04-05 16:35:59 +00:00
|
|
|
os.remove(os.path.join(current_app.config['UPLOAD_FOLDER'], img.filename))
|
2023-03-04 13:45:26 +00:00
|
|
|
except FileNotFoundError:
|
2023-04-05 16:35:59 +00:00
|
|
|
logging.warning('File not found: %s, already deleted or never existed', img.filename)
|
2023-01-25 15:13:56 +00:00
|
|
|
|
2023-03-26 20:58:17 +00:00
|
|
|
# Delete cached files
|
|
|
|
cache_path = os.path.join(platformdirs.user_config_dir('onlylegs'), 'cache')
|
2023-04-05 16:35:59 +00:00
|
|
|
cache_name = img.filename.rsplit('.')[0]
|
2023-03-26 23:34:03 +00:00
|
|
|
for cache_file in pathlib.Path(cache_path).glob(cache_name + '*'):
|
|
|
|
os.remove(cache_file)
|
2023-03-14 22:07:17 +00:00
|
|
|
|
2023-03-26 20:58:17 +00:00
|
|
|
# Delete from database
|
|
|
|
db_session.query(db.Posts).filter_by(id=image_id).delete()
|
2023-03-14 22:07:17 +00:00
|
|
|
|
2023-03-26 20:58:17 +00:00
|
|
|
# Remove all entries in junction table
|
|
|
|
groups = db_session.query(db.GroupJunction).filter_by(post_id=image_id).all()
|
|
|
|
for group in groups:
|
|
|
|
db_session.delete(group)
|
|
|
|
|
|
|
|
# Commit all changes
|
|
|
|
db_session.commit()
|
2023-01-25 15:13:56 +00:00
|
|
|
|
2023-04-05 16:35:59 +00:00
|
|
|
logging.info('Removed image (%s) %s', image_id, img.filename)
|
2023-03-26 20:58:17 +00:00
|
|
|
flash(['Image was all in Le Head!', '1'])
|
2023-01-31 17:32:22 +00:00
|
|
|
return 'Gwa Gwa'
|
|
|
|
|
2023-01-31 23:44:44 +00:00
|
|
|
|
2023-03-09 23:31:58 +00:00
|
|
|
@blueprint.route('/group/create', methods=['POST'])
|
|
|
|
@login_required
|
|
|
|
def create_group():
|
|
|
|
"""
|
|
|
|
Creates a group
|
|
|
|
"""
|
2023-03-12 14:52:24 +00:00
|
|
|
new_group = db.Groups(name=request.form['name'],
|
|
|
|
description=request.form['description'],
|
2023-04-05 16:35:59 +00:00
|
|
|
author_id=current_user.id)
|
2023-03-14 22:07:17 +00:00
|
|
|
|
2023-03-09 23:31:58 +00:00
|
|
|
db_session.add(new_group)
|
|
|
|
db_session.commit()
|
2023-03-14 22:07:17 +00:00
|
|
|
|
2023-03-09 23:31:58 +00:00
|
|
|
return ':3'
|
|
|
|
|
|
|
|
|
|
|
|
@blueprint.route('/group/modify', methods=['POST'])
|
|
|
|
@login_required
|
|
|
|
def modify_group():
|
|
|
|
"""
|
|
|
|
Changes the images in a group
|
|
|
|
"""
|
2023-03-10 17:38:24 +00:00
|
|
|
group_id = request.form['group']
|
|
|
|
image_id = request.form['image']
|
2023-04-04 20:45:35 +00:00
|
|
|
action = request.form['action']
|
2023-03-14 22:07:17 +00:00
|
|
|
|
2023-03-10 17:38:24 +00:00
|
|
|
group = db_session.query(db.Groups).filter_by(id=group_id).first()
|
|
|
|
|
|
|
|
if group is None:
|
|
|
|
abort(404)
|
2023-04-03 18:04:49 +00:00
|
|
|
elif group.author_id != current_user.id:
|
2023-03-10 17:38:24 +00:00
|
|
|
abort(403)
|
|
|
|
|
2023-04-05 19:21:44 +00:00
|
|
|
if action == 'add':
|
2023-04-02 16:36:05 +00:00
|
|
|
if not (db_session.query(db.GroupJunction)
|
|
|
|
.filter_by(group_id=group_id, post_id=image_id)
|
|
|
|
.first()):
|
2023-03-20 17:57:47 +00:00
|
|
|
db_session.add(db.GroupJunction(group_id=group_id,
|
2023-04-05 16:35:59 +00:00
|
|
|
post_id=image_id))
|
2023-03-10 17:38:24 +00:00
|
|
|
elif request.form['action'] == 'remove':
|
2023-04-02 16:36:05 +00:00
|
|
|
(db_session.query(db.GroupJunction)
|
|
|
|
.filter_by(group_id=group_id, post_id=image_id)
|
|
|
|
.delete())
|
2023-03-14 22:07:17 +00:00
|
|
|
|
2023-03-10 17:38:24 +00:00
|
|
|
db_session.commit()
|
2023-03-14 22:07:17 +00:00
|
|
|
|
2023-03-09 23:31:58 +00:00
|
|
|
return ':3'
|
|
|
|
|
|
|
|
|
2023-04-04 20:45:35 +00:00
|
|
|
@blueprint.route('/group/delete', methods=['POST'])
|
|
|
|
def delete_group():
|
2023-03-04 13:45:26 +00:00
|
|
|
"""
|
2023-04-04 20:45:35 +00:00
|
|
|
Deletes a group
|
2023-03-04 13:45:26 +00:00
|
|
|
"""
|
2023-04-04 20:45:35 +00:00
|
|
|
group_id = request.form['group']
|
|
|
|
|
|
|
|
group = db_session.query(db.Groups).filter_by(id=group_id).first()
|
2023-01-31 17:32:22 +00:00
|
|
|
|
2023-04-04 20:45:35 +00:00
|
|
|
if group is None:
|
2023-01-31 17:32:22 +00:00
|
|
|
abort(404)
|
2023-04-04 20:45:35 +00:00
|
|
|
elif group.author_id != current_user.id:
|
|
|
|
abort(403)
|
2023-01-31 23:44:44 +00:00
|
|
|
|
2023-04-04 20:45:35 +00:00
|
|
|
db_session.query(db.Groups).filter_by(id=group_id).delete()
|
|
|
|
db_session.query(db.GroupJunction).filter_by(group_id=group_id).delete()
|
|
|
|
db_session.commit()
|
2023-01-31 17:32:22 +00:00
|
|
|
|
2023-04-04 20:45:35 +00:00
|
|
|
flash(['Group yeeted!', '1'])
|
|
|
|
return ':3'
|