2023-04-06 16:22:56 +00:00
|
|
|
"""
|
|
|
|
Onlylegs - Image View
|
|
|
|
"""
|
2023-04-06 18:42:04 +00:00
|
|
|
from math import ceil
|
|
|
|
|
2023-04-06 16:22:56 +00:00
|
|
|
from flask import Blueprint, abort, render_template, url_for
|
|
|
|
|
|
|
|
from sqlalchemy.orm import sessionmaker
|
|
|
|
from gallery import db
|
|
|
|
|
|
|
|
|
|
|
|
blueprint = Blueprint('image', __name__, url_prefix='/image')
|
|
|
|
db_session = sessionmaker(bind=db.engine)
|
|
|
|
db_session = db_session()
|
|
|
|
|
|
|
|
|
|
|
|
@blueprint.route('/<int:image_id>')
|
|
|
|
def image(image_id):
|
|
|
|
"""
|
|
|
|
Image view, shows the image and its metadata
|
|
|
|
"""
|
|
|
|
# Get the image, if it doesn't exist, 404
|
|
|
|
image = db_session.query(db.Posts).filter(db.Posts.id == image_id).first()
|
|
|
|
if not image:
|
|
|
|
abort(404, 'Image not found :<')
|
|
|
|
|
|
|
|
# Get the image's author username
|
|
|
|
image.author_username = (db_session.query(db.Users.username)
|
|
|
|
.filter(db.Users.id == image.author_id)
|
|
|
|
.first()[0])
|
|
|
|
|
|
|
|
# Get the image's groups
|
|
|
|
groups = (db_session.query(db.GroupJunction.group_id)
|
|
|
|
.filter(db.GroupJunction.post_id == image_id)
|
|
|
|
.all())
|
|
|
|
|
|
|
|
# For each group, get the group data and add it to the image item
|
|
|
|
image.groups = []
|
|
|
|
for group in groups:
|
|
|
|
image.groups.append(db_session.query(db.Groups.id, db.Groups.name)
|
|
|
|
.filter(db.Groups.id == group[0])
|
|
|
|
.first())
|
|
|
|
|
|
|
|
# Get the next and previous images
|
|
|
|
# Check if there is a group ID set
|
|
|
|
next_url = (db_session.query(db.Posts.id)
|
|
|
|
.filter(db.Posts.id > image_id)
|
|
|
|
.order_by(db.Posts.id.asc())
|
|
|
|
.first())
|
|
|
|
prev_url = (db_session.query(db.Posts.id)
|
|
|
|
.filter(db.Posts.id < image_id)
|
|
|
|
.order_by(db.Posts.id.desc())
|
|
|
|
.first())
|
|
|
|
|
|
|
|
# If there is a next or previous image, get the url
|
|
|
|
if next_url:
|
|
|
|
next_url = url_for('image.image', image_id=next_url[0])
|
|
|
|
if prev_url:
|
|
|
|
prev_url = url_for('image.image', image_id=prev_url[0])
|
2023-04-06 18:42:04 +00:00
|
|
|
|
|
|
|
|
|
|
|
# Yoink all the images in the database
|
|
|
|
total_images = (db_session.query(db.Posts.id)
|
|
|
|
.order_by(db.Posts.id.desc())
|
|
|
|
.all())
|
|
|
|
limit = 100
|
|
|
|
|
|
|
|
# If the number of items is less than the limit, no point of calculating the page
|
|
|
|
if len(total_images) <= limit:
|
|
|
|
return_page = 1
|
|
|
|
else:
|
|
|
|
# How many pages should there be
|
|
|
|
for i in range(ceil(len(total_images) / limit)):
|
|
|
|
# Slice the list of IDs into chunks of the limit
|
|
|
|
for j in total_images[i * limit:(i + 1) * limit]:
|
|
|
|
# Is our image in this chunk?
|
|
|
|
if image_id in j:
|
|
|
|
return_page = i + 1
|
|
|
|
break
|
2023-04-06 16:22:56 +00:00
|
|
|
|
2023-04-06 18:42:04 +00:00
|
|
|
return render_template('image.html', image=image, next_url=next_url,
|
|
|
|
prev_url=prev_url, return_page=return_page)
|