0x0

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | LICENSE

commit 6bc76907119e0f3be748d4fcb8919ba9f6db903a
parent e9748344227d197f5d80d725bf949a91418f1418
Author: Martin Herkt <lachs0r@srsfckn.biz>
Date:   Sun,  1 Jan 2017 20:27:31 +0100

add BEACON dump with start index for urlte.am

fixes #1

Diffstat:
Mfhost.py | 20+++++++++++++++++++-
1 file changed, 19 insertions(+), 1 deletion(-)

diff --git a/fhost.py b/fhost.py @@ -1,7 +1,7 @@ #!/usr/bin/env python3 # -*- coding: utf-8 -*- -from flask import Flask, abort, escape, make_response, redirect, request, send_from_directory, url_for +from flask import Flask, abort, escape, make_response, redirect, request, send_from_directory, url_for, Response from flask_sqlalchemy import SQLAlchemy from flask_script import Manager from flask_migrate import Migrate, MigrateCommand @@ -243,6 +243,24 @@ def get(path): abort(404) +@app.route("/dump_urls/") +@app.route("/dump_urls/<int:start>") +def dump_urls(start=0): + meta = "#FORMAT: BEACON\n#PREFIX: {}/\n\n".format(fhost_url("https")) + + def gen(): + yield meta + + for url in URL.query.order_by(URL.id.asc()).offset(start): + if url.url.startswith("http") or url.url.startswith("https"): + bar = "|" + else: + bar = "||" + + yield url.getname() + bar + url.url + "\n" + + return Response(gen(), mimetype="text/plain") + @app.route("/", methods=["GET", "POST"]) def fhost(): if request.method == "POST":