mirror of
https://github.com/MathiasDPX/grainParisArt.git
synced 2025-02-23 06:12:06 +00:00
143 lines
No EOL
3.8 KiB
Python
143 lines
No EOL
3.8 KiB
Python
import dotenv
|
|
import json
|
|
import os
|
|
from flask import Flask, render_template, request
|
|
from datetime import datetime, timedelta
|
|
|
|
# IMPORT DES MODULES
|
|
from modules.Classes import *
|
|
|
|
# On charge les variables d'environnement par défaut pour avoir la liste des cinémas
|
|
dotenv.load_dotenv(".env.sample")
|
|
|
|
WEBSITE_TITLE = os.environ.get("WEBSITE_TITLE", "GrainParisArt")
|
|
MAPBOX_TOKEN = os.environ.get("MAPBOX_TOKEN", "")
|
|
|
|
theaters_json = json.loads(os.environ.get("THEATERS", "[]"))
|
|
|
|
theaters: list[Theater] = []
|
|
for theater in theaters_json:
|
|
theaters.append(Theater({
|
|
"name": theater["name"],
|
|
"internalId": theater["id"],
|
|
"latitude": theater["latitude"],
|
|
"longitude": theater["longitude"],
|
|
"location": None
|
|
}))
|
|
|
|
theater_locations = []
|
|
for theater in theaters:
|
|
theater_locations.append({
|
|
"coordinates": [theater.longitude, theater.latitude],
|
|
"description": theater.name,
|
|
})
|
|
|
|
def getShowtimes(date):
|
|
showtimes:list[Showtime] = []
|
|
|
|
for theater in theaters:
|
|
showtimes.extend(theater.getShowtimes(date))
|
|
|
|
data = {}
|
|
|
|
for showtime in showtimes:
|
|
movie = showtime.movie
|
|
theater = showtime.theater
|
|
|
|
if showtime.movie.title not in data.keys():
|
|
data[movie.title] = {
|
|
"title": movie.title,
|
|
"duree": movie.runtime,
|
|
"genres": ", ".join(movie.genres),
|
|
"casting": ", ".join(movie.cast),
|
|
"realisateur": movie.director,
|
|
"synopsis": movie.synopsis,
|
|
"affiche": movie.affiche,
|
|
"director": movie.director,
|
|
"wantToSee": movie.wantToSee,
|
|
"url": f"https://www.allocine.fr/film/fichefilm_gen_cfilm={movie.id}.html",
|
|
"seances": {}
|
|
}
|
|
|
|
|
|
if theater.name not in data[movie.title]["seances"].keys():
|
|
data[movie.title]["seances"][theater.name] = []
|
|
|
|
data[movie.title]["seances"][theater.name].append(showtime.startsAt.strftime("%H:%M"))
|
|
|
|
data = data.values()
|
|
|
|
data = sorted(data, key=lambda x: x["wantToSee"], reverse=True)
|
|
|
|
return data
|
|
|
|
showtimes = []
|
|
for i in range(0, 7):
|
|
day_showtimes = getShowtimes(datetime.today()+timedelta(days=i))
|
|
showtimes.append(day_showtimes)
|
|
print(f"{len(day_showtimes)} séances récupéré {i+1}/7!")
|
|
|
|
app = Flask(__name__)
|
|
|
|
def translateMonth(num: int):
|
|
match num:
|
|
case 1: return "janv"
|
|
case 2: return "févr"
|
|
case 3: return "mars"
|
|
case 4: return "avr"
|
|
case 5: return "mai"
|
|
case 6: return "juin"
|
|
case 7: return "juil"
|
|
case 8: return "août"
|
|
case 9: return "sept"
|
|
case 10: return "oct"
|
|
case 11: return "nov"
|
|
case 12: return "déc"
|
|
case _: return "???"
|
|
|
|
def translateDay(weekday: int):
|
|
match weekday:
|
|
case 0: return "lun"
|
|
case 1: return "mar"
|
|
case 2: return "mer"
|
|
case 3: return "jeu"
|
|
case 4: return "ven"
|
|
case 5: return "sam"
|
|
case 6: return "dim"
|
|
case _: return "???"
|
|
|
|
@app.route('/health')
|
|
def health():
|
|
return "OK"
|
|
|
|
@app.route('/')
|
|
def home():
|
|
delta = request.args.get("delta", default=0, type=int)
|
|
|
|
if delta > 6: delta = 6
|
|
if delta < 0: delta = 0
|
|
|
|
dates = []
|
|
|
|
for i in range(0,7):
|
|
day = datetime.today()+timedelta(i)
|
|
dates.append({
|
|
"jour": translateDay(day.weekday()),
|
|
"chiffre": day.day,
|
|
"mois": translateMonth(day.month),
|
|
"choisi": i==delta,
|
|
"index": i
|
|
})
|
|
|
|
return render_template(
|
|
'index.html',
|
|
page_actuelle='home',
|
|
films=showtimes[delta],
|
|
dates=dates,
|
|
theater_locations=theater_locations,
|
|
website_title=WEBSITE_TITLE,
|
|
mapbox_token=MAPBOX_TOKEN,
|
|
)
|
|
|
|
if __name__ == '__main__':
|
|
app.run() |