forked from rDrama/rDrama
1
0
Fork 0
master
Aevann1 2022-04-29 02:02:00 +02:00
parent 0cfb1be47f
commit e5014b4cf4
2 changed files with 7 additions and 6 deletions

View File

@ -431,6 +431,7 @@ def changelog(v):
page=page, page=page,
t=t, t=t,
v=v, v=v,
site=SITE
) )
next_exists = (len(ids) > 25) next_exists = (len(ids) > 25)
@ -443,7 +444,7 @@ def changelog(v):
@cache.memoize(timeout=86400) @cache.memoize(timeout=86400)
def changeloglist(v=None, sort="new", page=1 ,t="all"): def changeloglist(v=None, sort="new", page=1, t="all", site=None):
posts = g.db.query(Submission.id).filter_by(is_banned=False, private=False,).filter(Submission.deleted_utc == 0) posts = g.db.query(Submission.id).filter_by(is_banned=False, private=False,).filter(Submission.deleted_utc == 0)

View File

@ -68,11 +68,11 @@ def sidebar(v):
@auth_required @auth_required
def participation_stats(v): def participation_stats(v):
return render_template("admin/content_stats.html", v=v, title="Content Statistics", data=stats()) return render_template("admin/content_stats.html", v=v, title="Content Statistics", data=stats(site=SITE))
@cache.memoize(timeout=86400) @cache.memoize(timeout=86400)
def stats(): def stats(site=None):
day = int(time.time()) - 86400 day = int(time.time()) - 86400
week = int(time.time()) - 604800 week = int(time.time()) - 604800
@ -177,20 +177,20 @@ def chart():
@app.get("/weekly_chart") @app.get("/weekly_chart")
@auth_required @auth_required
def weekly_chart(v): def weekly_chart(v):
file = cached_chart(kind="weekly") file = cached_chart(kind="weekly", site=SITE)
f = send_file(file) f = send_file(file)
return f return f
@app.get("/daily_chart") @app.get("/daily_chart")
@auth_required @auth_required
def daily_chart(v): def daily_chart(v):
file = cached_chart(kind="daily") file = cached_chart(kind="daily", site=SITE)
f = send_file(file) f = send_file(file)
return f return f
@cache.memoize(timeout=86400) @cache.memoize(timeout=86400)
def cached_chart(kind): def cached_chart(kind, site):
now = time.gmtime() now = time.gmtime()
midnight_this_morning = time.struct_time((now.tm_year, midnight_this_morning = time.struct_time((now.tm_year,
now.tm_mon, now.tm_mon,