mirror of
https://git.0x0.st/mia/0x0.git
synced 2024-11-09 11:48:59 -05:00
24 lines
507 B
Python
24 lines
507 B
Python
|
#!/usr/bin/env python3
|
||
|
|
||
|
import os, sys, time, datetime
|
||
|
from fhost import app
|
||
|
|
||
|
os.chdir(os.path.dirname(sys.argv[0]))
|
||
|
os.chdir(app.config["FHOST_STORAGE_PATH"])
|
||
|
|
||
|
files = [f for f in os.listdir(".")]
|
||
|
|
||
|
maxs = app.config["MAX_CONTENT_LENGTH"]
|
||
|
mind = 30
|
||
|
maxd = 365
|
||
|
|
||
|
for f in files:
|
||
|
stat = os.stat(f)
|
||
|
systime = time.time()
|
||
|
age = datetime.timedelta(seconds = systime - stat.st_mtime).days
|
||
|
|
||
|
maxage = mind + (-maxd + mind) * (stat.st_size / maxs - 1) ** 3
|
||
|
|
||
|
if age >= maxage:
|
||
|
os.remove(f)
|