mirror of
https://github.com/simple-login/app.git
synced 2024-11-16 17:08:30 +01:00
fix: missing None check on alias contacts api (#2288)
This commit is contained in:
parent
ccd687f091
commit
d65994c3c6
2 changed files with 15 additions and 3 deletions
|
@ -419,9 +419,8 @@ def create_contact_route(alias_id):
|
||||||
if not data:
|
if not data:
|
||||||
return jsonify(error="request body cannot be empty"), 400
|
return jsonify(error="request body cannot be empty"), 400
|
||||||
|
|
||||||
alias: Alias = Alias.get(alias_id)
|
alias: Optional[Alias] = Alias.get_by(id=alias_id, user_id=g.user.id)
|
||||||
|
if not alias:
|
||||||
if alias.user_id != g.user.id:
|
|
||||||
return jsonify(error="Forbidden"), 403
|
return jsonify(error="Forbidden"), 403
|
||||||
|
|
||||||
contact_address = data.get("contact")
|
contact_address = data.get("contact")
|
||||||
|
|
|
@ -511,6 +511,19 @@ def test_create_contact_route_invalid_alias(flask_client):
|
||||||
assert r.status_code == 403
|
assert r.status_code == 403
|
||||||
|
|
||||||
|
|
||||||
|
def test_create_contact_route_non_existing_alias(flask_client):
|
||||||
|
user, api_key = get_new_user_and_api_key()
|
||||||
|
Session.commit()
|
||||||
|
|
||||||
|
r = flask_client.post(
|
||||||
|
url_for("api.create_contact_route", alias_id=99999999),
|
||||||
|
headers={"Authentication": api_key.code},
|
||||||
|
json={"contact": "First Last <first@example.com>"},
|
||||||
|
)
|
||||||
|
|
||||||
|
assert r.status_code == 403
|
||||||
|
|
||||||
|
|
||||||
def test_create_contact_route_free_users(flask_client):
|
def test_create_contact_route_free_users(flask_client):
|
||||||
user, api_key = get_new_user_and_api_key()
|
user, api_key = get_new_user_and_api_key()
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue