2018-10-28 21:49:15 +00:00
|
|
|
#!/usr/bin/python3
|
|
|
|
|
2018-11-03 13:00:06 +00:00
|
|
|
from flask import Flask, render_template, send_from_directory, redirect, url_for
|
2018-11-05 20:57:26 +00:00
|
|
|
from random import choice
|
2018-11-06 19:13:35 +00:00
|
|
|
from pathlib import Path
|
|
|
|
from PIL import Image
|
2018-11-07 23:10:08 +00:00
|
|
|
from time import time
|
2018-10-28 21:49:15 +00:00
|
|
|
|
2018-11-03 12:21:26 +00:00
|
|
|
import config
|
|
|
|
|
2018-10-28 21:49:15 +00:00
|
|
|
app = Flask(__name__)
|
|
|
|
|
2018-10-29 19:35:45 +00:00
|
|
|
|
2018-10-28 21:49:15 +00:00
|
|
|
@app.route("/")
|
2018-11-05 20:57:26 +00:00
|
|
|
def random():
|
2018-11-05 21:01:57 +00:00
|
|
|
return render_template("random.html", refresh=config.refresh)
|
2018-10-29 19:35:45 +00:00
|
|
|
|
2018-10-28 21:49:15 +00:00
|
|
|
|
2018-11-05 20:57:26 +00:00
|
|
|
@app.route("/random_image/")
|
2018-11-03 13:00:06 +00:00
|
|
|
def random_image():
|
2018-11-08 08:00:00 +00:00
|
|
|
img_glob = "*jpg"
|
2018-11-07 22:43:29 +00:00
|
|
|
imgdir = Path(config.imgdir)
|
2018-11-07 23:10:08 +00:00
|
|
|
last_modified_time, last_modified_file = max(
|
2018-11-08 08:00:00 +00:00
|
|
|
(f.stat().st_mtime, f) for f in imgdir.glob(img_glob)
|
2018-11-07 23:10:08 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
if time() - last_modified_time <= 60:
|
|
|
|
selected_image = last_modified_file.relative_to(imgdir)
|
|
|
|
else:
|
2018-11-08 08:00:00 +00:00
|
|
|
images = list(imgdir.glob(img_glob))
|
2018-11-07 23:10:08 +00:00
|
|
|
selected_image = choice(images).relative_to(imgdir)
|
|
|
|
|
2018-11-07 22:43:29 +00:00
|
|
|
return redirect(url_for("image", filename=selected_image))
|
2018-11-03 13:00:06 +00:00
|
|
|
|
|
|
|
|
2018-11-03 12:21:26 +00:00
|
|
|
@app.route("/img/<path:filename>")
|
|
|
|
def image(filename):
|
2018-11-08 08:00:00 +00:00
|
|
|
cache_resolution = (1920, 1080)
|
|
|
|
cache_dir = Path(config.cachedir) / ("%sx%s" % cache_resolution)
|
2018-11-07 23:10:08 +00:00
|
|
|
|
2018-11-08 08:00:00 +00:00
|
|
|
if not cache_dir.exists():
|
|
|
|
cache_dir.mkdir(parents=True)
|
2018-11-07 23:10:08 +00:00
|
|
|
|
2018-11-08 08:00:00 +00:00
|
|
|
if not (cache_dir / filename).exists():
|
2018-11-06 19:13:35 +00:00
|
|
|
img = Image.open(Path(config.imgdir) / filename)
|
2018-11-08 08:00:00 +00:00
|
|
|
img.thumbnail(cache_resolution)
|
|
|
|
img.save(cache_dir / filename)
|
2018-11-06 19:13:35 +00:00
|
|
|
|
2018-11-08 08:00:00 +00:00
|
|
|
return send_from_directory(cache_dir, filename)
|
2018-11-03 12:21:26 +00:00
|
|
|
|
|
|
|
|
2018-10-28 21:49:15 +00:00
|
|
|
if __name__ == "__main__":
|
|
|
|
app.run()
|