210 lines
7.6 KiB
Python
210 lines
7.6 KiB
Python
from flask import Flask, request, jsonify, render_template, redirect, url_for, flash, session, send_from_directory
|
|
from werkzeug.utils import secure_filename
|
|
from models import Session as DBSession, Photo
|
|
from config import load_or_create_config
|
|
import os
|
|
from datetime import datetime
|
|
from PIL import Image, ExifTags
|
|
from apscheduler.schedulers.background import BackgroundScheduler
|
|
import random
|
|
from colorthief import ColorThief
|
|
import colorsys
|
|
app = Flask(__name__)
|
|
app.secret_key = os.urandom(24)
|
|
config = load_or_create_config()
|
|
|
|
UPLOAD_FOLDER = config['directories']['upload']
|
|
THUMBNAIL_FOLDER = config['directories']['thumbnail']
|
|
ALLOWED_EXTENSIONS = {'jpg', 'jpeg', 'png', 'gif'}
|
|
THUMBNAIL_SIZES = [256, 512, 768, 1024, 1536, 2048]
|
|
|
|
# Create upload and thumbnail directories if they don't exist
|
|
os.makedirs(UPLOAD_FOLDER, exist_ok=True)
|
|
os.makedirs(THUMBNAIL_FOLDER, exist_ok=True)
|
|
|
|
app.config['UPLOAD_FOLDER'] = UPLOAD_FOLDER
|
|
app.config['THUMBNAIL_FOLDER'] = THUMBNAIL_FOLDER
|
|
app.config['MAX_CONTENT_LENGTH'] = 80 * 1024 * 1024 # 80MB limit
|
|
|
|
scheduler = BackgroundScheduler()
|
|
scheduler.start()
|
|
|
|
def allowed_file(filename):
|
|
return '.' in filename and filename.rsplit('.', 1)[1].lower() in ALLOWED_EXTENSIONS
|
|
|
|
def get_highlight_color(image_path):
|
|
color_thief = ColorThief(image_path)
|
|
palette = color_thief.get_palette(color_count=6, quality=1)
|
|
|
|
# Convert RGB to HSV and find the color with the highest saturation
|
|
highlight_color = max(palette, key=lambda rgb: colorsys.rgb_to_hsv(*rgb)[1])
|
|
|
|
return '#{:02x}{:02x}{:02x}'.format(*highlight_color)
|
|
|
|
def generate_thumbnails(filename):
|
|
original_path = os.path.join(UPLOAD_FOLDER, filename)
|
|
thumb_dir = os.path.join(THUMBNAIL_FOLDER, os.path.splitext(filename)[0])
|
|
os.makedirs(thumb_dir, exist_ok=True)
|
|
|
|
for size in THUMBNAIL_SIZES:
|
|
thumb_path = os.path.join(thumb_dir, f"{size}_{filename}")
|
|
if not os.path.exists(thumb_path):
|
|
with Image.open(original_path) as img:
|
|
# Extract EXIF data
|
|
exif_data = None
|
|
if "exif" in img.info:
|
|
exif_data = img.info["exif"]
|
|
|
|
# Resize image
|
|
img.thumbnail((size, size), Image.LANCZOS)
|
|
|
|
# Save image with EXIF data
|
|
if exif_data:
|
|
img.save(thumb_path, exif=exif_data, optimize=True, quality=85)
|
|
else:
|
|
img.save(thumb_path, optimize=True, quality=85)
|
|
|
|
def generate_all_thumbnails():
|
|
for filename in os.listdir(UPLOAD_FOLDER):
|
|
if allowed_file(filename):
|
|
generate_thumbnails(filename)
|
|
|
|
scheduler.add_job(generate_all_thumbnails, 'interval', minutes=5)
|
|
scheduler.add_job(generate_all_thumbnails, 'date', run_date=datetime.now()) # Run once at startup
|
|
|
|
@app.route('/')
|
|
def index():
|
|
return render_template('index.html', accent_color=config['appearance']['accent_color'])
|
|
|
|
@app.route('/api/images')
|
|
def get_images():
|
|
page = int(request.args.get('page', 1))
|
|
per_page = 20
|
|
db_session = DBSession()
|
|
photos = db_session.query(Photo).order_by(Photo.date_taken.desc()).offset((page - 1) * per_page).limit(per_page).all()
|
|
|
|
images = []
|
|
for photo in photos:
|
|
factor = random.randint(2, 3)
|
|
if photo.height < 4000 or photo.width < 4000:
|
|
factor = 1
|
|
if photo.orientation == 6 or photo.orientation == 8:
|
|
width, height = photo.height, photo.width
|
|
else:
|
|
width, height = photo.width, photo.height
|
|
images.append({
|
|
'imgSrc': f'/static/thumbnails/{os.path.splitext(photo.input_filename)[0]}/1536_{photo.input_filename}',
|
|
'width': width / factor,
|
|
'height': height / factor,
|
|
'caption': photo.input_filename,
|
|
'date': photo.date_taken.strftime('%y %m %d'),
|
|
'technicalInfo': f"{photo.focal_length}MM | F/{photo.aperture} | {photo.shutter_speed} | ISO{photo.iso}",
|
|
'highlightColor': photo.highlight_color
|
|
})
|
|
|
|
has_more = db_session.query(Photo).count() > page * per_page
|
|
db_session.close()
|
|
|
|
return jsonify({'images': images, 'hasMore': has_more})
|
|
|
|
@app.route('/admin')
|
|
def admin():
|
|
if 'logged_in' not in session:
|
|
return redirect(url_for('admin_login'))
|
|
|
|
db_session = DBSession()
|
|
photos = db_session.query(Photo).order_by(Photo.date_taken.desc()).all()
|
|
db_session.close()
|
|
|
|
return render_template('admin.html', photos=photos, accent_color=config['appearance']['accent_color'])
|
|
|
|
@app.route('/admin/login', methods=['GET', 'POST'])
|
|
def admin_login():
|
|
if request.method == 'POST':
|
|
if request.form['password'] == config['admin']['password']:
|
|
session['logged_in'] = True
|
|
return redirect(url_for('admin'))
|
|
else:
|
|
flash('Invalid password')
|
|
return render_template('admin_login.html', accent_color=config['appearance']['accent_color'])
|
|
|
|
@app.route('/admin/upload', methods=['POST'])
|
|
def admin_upload():
|
|
if 'logged_in' not in session:
|
|
return redirect(url_for('admin_login'))
|
|
|
|
if 'file' not in request.files:
|
|
flash('No file part')
|
|
return redirect(url_for('admin'))
|
|
|
|
file = request.files['file']
|
|
if file.filename == '':
|
|
flash('No selected file')
|
|
return redirect(url_for('admin'))
|
|
|
|
if file and allowed_file(file.filename):
|
|
filename = secure_filename(file.filename)
|
|
file_path = os.path.join(app.config['UPLOAD_FOLDER'], filename)
|
|
file.save(file_path)
|
|
|
|
# Generate thumbnails
|
|
generate_thumbnails(filename)
|
|
|
|
# Extract EXIF data
|
|
exif = None
|
|
with Image.open(file_path) as img:
|
|
width, height = img.size
|
|
exif = {
|
|
ExifTags.TAGS[k]: v
|
|
for k, v in img._getexif().items()
|
|
if k in ExifTags.TAGS
|
|
}
|
|
|
|
# Get image dimensions
|
|
with Image.open(file_path) as img:
|
|
width, height = img.size
|
|
|
|
exposure_time = exif['ExposureTime']
|
|
if isinstance(exposure_time, tuple):
|
|
exposure_fraction = f"{exposure_time[0]}/{exposure_time[1]}"
|
|
else:
|
|
exposure_fraction = f"1/{int(1/float(exposure_time))}"
|
|
|
|
# Create database entry
|
|
db_session = DBSession()
|
|
new_photo = Photo(
|
|
input_filename=filename,
|
|
thumbnail_filename=f"{os.path.splitext(filename)[0]}/256_{filename}",
|
|
focal_length=str(exif.get('FocalLengthIn35mmFilm', exif.get('FocalLength', ''))),
|
|
aperture=str(exif.get('FNumber', '')),
|
|
shutter_speed=exposure_fraction,
|
|
date_taken=datetime.strptime(str(exif.get('DateTime', '1970:01:01 00:00:00')), '%Y:%m:%d %H:%M:%S'),
|
|
iso=int(exif.get('ISOSpeedRatings', 0)),
|
|
orientation=int(exif.get('Orientation', 1)),
|
|
width=width,
|
|
height=height,
|
|
highlight_color=get_highlight_color(THUMBNAIL_FOLDER + f"/{os.path.splitext(filename)[0]}/256_{filename}")
|
|
)
|
|
db_session.add(new_photo)
|
|
db_session.commit()
|
|
db_session.close()
|
|
|
|
flash('File uploaded successfully')
|
|
return redirect(url_for('admin'))
|
|
|
|
flash('Invalid file type')
|
|
return redirect(url_for('admin'))
|
|
|
|
@app.route('/admin/logout')
|
|
def admin_logout():
|
|
session.pop('logged_in', None)
|
|
flash('You have been logged out')
|
|
return redirect(url_for('admin_login'))
|
|
|
|
@app.route('/static/thumbnails/<path:filename>')
|
|
def serve_thumbnail(filename):
|
|
return send_from_directory(THUMBNAIL_FOLDER, filename)
|
|
|
|
if __name__ == '__main__':
|
|
app.run(debug=True, port=5002, host='0.0.0.0')
|