aboutsummaryrefslogtreecommitdiffstats
path: root/python
diff options
context:
space:
mode:
authorBryan Newbold <bnewbold@robocracy.org>2021-11-03 16:28:29 -0700
committerBryan Newbold <bnewbold@robocracy.org>2021-11-03 16:52:44 -0700
commit597b455dbed79305d28d53f7f71dbd42a8f30248 (patch)
tree9b48563975825e14a7e5c684864633e9bcb350db /python
parentdc5ef73edfbddda3bfb1bc53914bd77c34245f04 (diff)
downloadfatcat-597b455dbed79305d28d53f7f71dbd42a8f30248.tar.gz
fatcat-597b455dbed79305d28d53f7f71dbd42a8f30248.zip
web: work around remaining type annotation issues
Diffstat (limited to 'python')
-rw-r--r--python/fatcat_web/editing_routes.py4
-rw-r--r--python/fatcat_web/routes.py22
2 files changed, 15 insertions, 11 deletions
diff --git a/python/fatcat_web/editing_routes.py b/python/fatcat_web/editing_routes.py
index 32bff51d..ff869f90 100644
--- a/python/fatcat_web/editing_routes.py
+++ b/python/fatcat_web/editing_routes.py
@@ -261,6 +261,7 @@ def generic_entity_edit(
)
)
else: # it's an update
+ assert existing
# all the tricky logic is in the update method
form.update_entity(existing)
# do we need to try to delete the current in-progress edit first?
@@ -414,6 +415,7 @@ def generic_entity_toml_edit(
)
)
else: # it's an update
+ assert existing
# TODO: some danger of wiping database state here is
# "updated edit" causes, eg, a 4xx error. Better to allow
# this in the API itself. For now, form validation *should*
@@ -599,6 +601,8 @@ def generic_edit_delete(
flash("Editgroup already merged")
abort(400)
+ assert editgroup is not None
+
# API on behalf of user
user_api = auth_api(session["api_token"])
diff --git a/python/fatcat_web/routes.py b/python/fatcat_web/routes.py
index 17921f30..3d2c68cd 100644
--- a/python/fatcat_web/routes.py
+++ b/python/fatcat_web/routes.py
@@ -912,7 +912,7 @@ def release_save(ident: str) -> AnyResponse:
def generic_search() -> AnyResponse:
if "q" not in request.args.keys():
return redirect("/release/search")
- query = request.args.get("q").strip()
+ query = request.args["q"].strip()
if len(query.split()) != 1:
# multi-term? must be a real search
@@ -1123,8 +1123,8 @@ def container_ident_ia_coverage_years_json(ident: str) -> AnyResponse:
except Exception as ae:
app.log.error(ae)
abort(503)
- histogram = [dict(year=h[0], in_ia=h[1], count=h[2]) for h in histogram]
- return jsonify({"container_id": ident, "histogram": histogram})
+ histogram_dicts = [dict(year=h[0], in_ia=h[1], count=h[2]) for h in histogram]
+ return jsonify({"container_id": ident, "histogram": histogram_dicts})
@app.route(
@@ -1236,8 +1236,8 @@ def release_bibtex(ident: str) -> AnyResponse:
@app.route("/release/<string(length=26):ident>/citeproc", methods=["GET"])
def release_citeproc(ident: str) -> AnyResponse:
style = request.args.get("style", "harvard1")
- is_html = request.args.get("html", False)
- if is_html and is_html.lower() in ("yes", "1", "true", "y", "t"):
+ is_html_arg = request.args.get("html", "false")
+ if is_html_arg and is_html_arg.lower() in ("yes", "1", "true", "y", "t"):
is_html = True
else:
is_html = False
@@ -1280,9 +1280,9 @@ def login() -> AnyResponse:
@app.route("/auth/ia/login", methods=["GET", "POST"])
def ia_xauth_login() -> AnyResponse:
- if "email" in request.form:
+ if "email" in request.form and "password" in request.form:
# if a login attempt...
- return handle_ia_xauth(request.form.get("email"), request.form.get("password"))
+ return handle_ia_xauth(request.form["email"], request.form["password"])
# else show form
return render_template("auth_ia_login.html")
@@ -1291,9 +1291,9 @@ def ia_xauth_login() -> AnyResponse:
def token_login() -> AnyResponse:
# show the user a list of login options
if "token" in request.args:
- return handle_token_login(request.args.get("token"))
+ return handle_token_login(request.args["token"])
if "token" in request.form:
- return handle_token_login(request.form.get("token"))
+ return handle_token_login(request.form["token"])
return render_template("auth_token_login.html")
@@ -1329,8 +1329,8 @@ def create_auth_token() -> AnyResponse:
duration_seconds = request.form.get("duration_seconds", None)
if duration_seconds:
try:
- duration_seconds = int(duration_seconds)
- assert duration_seconds >= 1
+ duration_seconds_int = int(duration_seconds)
+ assert duration_seconds_int >= 1
except (ValueError, AssertionError):
abort(400, "duration_seconds must be a positive non-zero integer")