majuna/app/portal/bridge.py

41 lines
1.7 KiB
Python
Raw Normal View History

2022-05-16 11:44:03 +01:00
from typing import Optional
from flask import render_template, Response, flash, redirect, url_for, Blueprint
2022-05-16 11:44:03 +01:00
from flask.typing import ResponseReturnValue
from app.extensions import db
from app.models.bridges import Bridge
from app.portal.util import LifecycleForm
bp = Blueprint("bridge", __name__)
@bp.route("/list")
2022-05-16 11:44:03 +01:00
def bridge_list() -> ResponseReturnValue:
bridges = Bridge.query.filter(Bridge.destroyed == None).all()
return render_template("list.html.j2",
section="bridge",
title="Tor Bridges",
item="bridge",
items=bridges)
@bp.route("/block/<bridge_id>", methods=['GET', 'POST'])
2022-05-16 11:44:03 +01:00
def bridge_blocked(bridge_id: int) -> ResponseReturnValue:
bridge: Optional[Bridge] = Bridge.query.filter(Bridge.id == bridge_id, Bridge.destroyed == None).first()
if bridge is None:
return Response(render_template("error.html.j2",
header="404 Proxy Not Found",
message="The requested bridge could not be found."))
form = LifecycleForm()
if form.validate_on_submit():
bridge.deprecate(reason="manual")
db.session.commit()
flash("Bridge will be shortly replaced.", "success")
2022-05-06 13:03:13 +01:00
return redirect(url_for("portal.bridgeconf.bridgeconf_edit", bridgeconf_id=bridge.conf_id))
return render_template("lifecycle.html.j2",
header=f"Mark bridge {bridge.hashed_fingerprint} as blocked?",
message=bridge.hashed_fingerprint,
section="bridge",
form=form)