summaryrefslogtreecommitdiffstats
path: root/www
diff options
context:
space:
mode:
authorAnton Luka Šijanec <anton@sijanec.eu>2023-02-21 16:48:59 +0100
committerAnton Luka Šijanec <anton@sijanec.eu>2023-02-21 16:48:59 +0100
commite791103cbbecbec2a87e9d1ab643ccb4fa36e311 (patch)
treef888ac0391bbccecf6b2ae621202a04908dc100a /www
parentnekončano, začenjam webapp (diff)
downloadtravnik-e791103cbbecbec2a87e9d1ab643ccb4fa36e311.tar
travnik-e791103cbbecbec2a87e9d1ab643ccb4fa36e311.tar.gz
travnik-e791103cbbecbec2a87e9d1ab643ccb4fa36e311.tar.bz2
travnik-e791103cbbecbec2a87e9d1ab643ccb4fa36e311.tar.lz
travnik-e791103cbbecbec2a87e9d1ab643ccb4fa36e311.tar.xz
travnik-e791103cbbecbec2a87e9d1ab643ccb4fa36e311.tar.zst
travnik-e791103cbbecbec2a87e9d1ab643ccb4fa36e311.zip
Diffstat (limited to 'www')
-rwxr-xr-xwww/app.py31
1 files changed, 21 insertions, 10 deletions
diff --git a/www/app.py b/www/app.py
index 1ba6af7..1bb512a 100755
--- a/www/app.py
+++ b/www/app.py
@@ -3,7 +3,7 @@ from re import search, IGNORECASE
from time import monotonic
from flask import Flask, render_template, escape, request
from sys import argv, path
-from os import getpid
+from os import getpid, getenv
from psutil import Process
from urllib.parse import quote
from datetime import datetime
@@ -12,24 +12,35 @@ path.append(".")
from travnik import glob, Type
setlocale(LC_ALL, "")
app = Flask("travnik")
-startuptime = -1
zagon = datetime.now()
def mno(quantity, types):
if quantity % 100 == 1:
- return quantity[1]
+ return types[1]
if quantity % 100 == 2:
- return quantity[2]
+ return types[2]
if quantity % 100 == 3:
- return quantity[3]
- return quantity[0]
+ return types[3]
+ return types[0]
@app.route("/")
def index():
- return render_template("index.html")
+ result = []
+ for hash, torrent in torrents.items():
+ if not request.args.get("regex"):
+ break
+ if torrent.matches(request.args.get("regex")):
+ try:
+ decodedname = torrent.dict.get(b'info').get(b'name').decode()
+ except UnicodeDecodeError:
+ decodedname = torrent.dict.get(b'info').get(b'name').decode("iso-8859-2")
+ this = {"tree": torrent.matching_files(request.args.get("regex") if sum(1 for name, size in torrent.paths()) > 10 else "", True), "files": sum(1 for name, size in torrent.paths()), "found": datetime.fromtimestamp(torrent.dict.get(b'creation date')), "size": sum(size for name, size in torrent.paths()), "name": decodedname, "magnet": "magnet:?dn=" + quote(torrent.dict.get(b'info').get(b'name'))
+ + (("&xt=urn:btih:" + torrent.sha1.hex()) if torrent.type == Type.V1 or torrent.type == Type.HYBRID else "") + (("&xt=urn:btmh:1220" + torrent.sha256.hex()) if torrent.type == Type.V2 or torrent.type == Type.HYBRID else "")}
+ result.append(this)
+ result = sorted(result, reverse=(request.args.get("order") == "padajoče"), key=lambda x:x["found"].timestamp() if request.args.get("sort") == "datumu" else x["files" if request.args.get("sort") == "datotekah" else "size" if request.args.get("sort") == "velikosti" else "crash"])
+ return render_template("index.html", found_torrents=result, lentorrents=len(result))
if __name__ == "__main__":
print("zaganjam travnik", argv[0], "... zagon traja dolgo časa (~5 min za ~40k torrentov. za delovanje je potrebnih ~300 MiB RAM RES za ~40k torrentov. sharding je WIP.")
start = monotonic()
- torrents = {}
- print("zagon uspešen. v", monotonic()-start, "sem indeksiral", len(torrents), "torrentov")
- app.jinja_env.globals.update(mno=mno, zagontekst=zagon.strftime("%c"), torrentov=len(torrents))
+ torrents = glob(getenv("TORRENTS") if getenv("TORRENTS") else ".")
+ app.jinja_env.globals.update(mno=mno, zagontekst=zagon.strftime("%c"), torrentov=len(torrents), rammib=round(Process(getpid()).memory_info().rss/(1024*1024)), roundstartuptime=round(monotonic()-start))
app.jinja_env.add_extension('jinja2.ext.loopcontrols')
app.run(host="::", port=8080, debug=True)