Make 422 status when titan failed to add user to guild

This commit is contained in:
Jeremy Zhang 2017-09-20 21:20:06 +00:00
parent ff4d6a405a
commit f6b354f10d
2 changed files with 5 additions and 1 deletions

View File

@ -390,7 +390,9 @@ def create_authenticated_user():
if not check_user_in_guild(guild_id):
add_member = discord_api.add_guild_member(guild_id, session['user_id'], session['user_keys']['access_token'])
if not add_member["success"]:
abort(403)
response = jsonify(add_member)
response.status_code = 422
return response
db_user = db.session.query(AuthenticatedUsers).filter(and_(AuthenticatedUsers.guild_id == guild_id, AuthenticatedUsers.client_id == session['user_id'])).first()
if not db_user:
db_user = AuthenticatedUsers(guild_id, session['user_id'])

View File

@ -969,6 +969,8 @@
Materialize.toast('Authentication error! You have been banned.', 10000);
} else if (data.status == 406) {
Materialize.toast('Illegal username provided! Only alphanumeric, spaces, dashes, and underscores allowed in usernames.', 10000);
} else if (data.status == 422) {
Materialize.toast("Attempting to add you into the server has failed. Either you are banned, reached 100 servers in Discord, or something else bad has happened.", 10000);
}
unlock_login_fields();
setVisitorMode(true);