Compare commits

...

2 Commits

Author SHA1 Message Date
theo@manjaro ee35260d97 Fix du délai d'un mois 2024-03-31 21:43:55 +02:00
theo@manjaro dda111f4cf Ajout d'info git au contexte global 2024-03-22 16:59:00 +01:00
3 changed files with 34 additions and 9 deletions

7
app.py
View File

@ -16,6 +16,7 @@ import pytz
import json
import os
import traceback
import git
from flask import Flask
from flask import render_template
@ -68,6 +69,12 @@ GLOBAL_CONTEXT["DOMAIN"] = "https://unisquat.alwaysdata.net"
# Timezone du serveur :
TIMEZONE = pytz.timezone("Europe/Paris")
# Branche actuelle git
GLOBAL_CONTEXT["GIT_BRANCH"] = git.get_active_branch_name()
# Hash du commit actuel git
GLOBAL_CONTEXT["GIT_COMMIT"] = git.get_git_revision()
# Globales :
app = Flask(__name__)

22
git.py Normal file
View File

@ -0,0 +1,22 @@
from pathlib import Path
def get_active_branch_name(base_path="."):
head_dir = Path(base_path) / ".git" / "HEAD"
with head_dir.open("r") as f:
content = f.read().splitlines()
for line in content:
if line[0:4] == "ref:":
return line.partition("refs/heads/")[2]
def get_git_revision(base_path=".", short = True):
git_dir = Path(base_path) / '.git'
with (git_dir / 'HEAD').open('r') as head:
ref = head.readline().split(' ')[-1].strip()
with (git_dir / ref).open('r') as git_hash:
hash = git_hash.readline().strip()
if short:
return hash[:7]
else:
return hash

View File

@ -22,6 +22,7 @@ import pytz
import os
import shutil
import time
import datetime
# Fichiers locaux :
from objects import Room
@ -248,14 +249,9 @@ def get_tot_rooms(datet, depts, ignore_list) :
# sur une période de 'margintime' mois :
cals = list() # Liste des EDT des départements choisis
for d in depts :
if datet.month < 12 :
result = sched_get(datet, d.link,
datet.replace(month = datet.month + margintime),
NO_CACHE)
else :
result = sched_get(datet, d.link,
datet.replace(month = 1, year = datet.year + 1),
NO_CACHE)
result = sched_get(datet, d.link,
datet + datetime.timedelta(margintime),
NO_CACHE)
# # Utilisation du module 'ics' pour le tri du calendrier dans l'ordre
# # chronologique :
# cal = ics.Calendar(result)
@ -416,4 +412,4 @@ def getrooms(datet, depts, ignore_list) :
dept_index += 1
return total_rooms
return total_rooms