added confirmation dialog before deleting token

master
Simon Pirkelmann 2021-03-08 00:05:26 +01:00
parent 62321d8b3c
commit f9eadc3c5a
2 changed files with 23 additions and 6 deletions

8
app.py
View File

@ -45,7 +45,6 @@ class Role(db.Model, fsqla.FsRoleMixin):
class User(db.Model, fsqla.FsUserMixin):
username = db.Column(db.String(255))
pass
class ExtendedLoginForm(LoginForm):
email = StringField('Benutzername oder E-Mail', [Required()])
@ -200,9 +199,9 @@ def store_token():
return redirect('/tokens')
@app.route('/delete-token/<token>')
@app.route('/delete-token', methods=['POST'])
#@auth_required()
def delete_token(token):
def delete_token():
"""Delete the given token from the token file and store the new token file to disk
Parameters
@ -210,11 +209,12 @@ def delete_token(token):
token : str
The token to delete from the database.
"""
token = request.form.get('token')
tokens = door.get_tokens()
if token in tokens: # check if token exists
tokens.pop(token)
door.store_tokens(tokens)
return redirect('/tokens')
return "success"
@app.route('/deactivate-token/<token>')

View File

@ -3,6 +3,8 @@
<head>
<meta charset="UTF-8">
<title>Tokens</title>
<script src="../static/jquery-3.6.0.js"></script>
</head>
<body>
{% with messages = get_flashed_messages() %}
@ -30,7 +32,7 @@
<td>
<a href="{{ url_for('edit_token', token=t) }}"><img src="static/edit.png" title="Editieren" alt="Edit"></a>
<a href="{{ url_for('deactivate_token', token=t) }}"><img src="static/stop.png" title="Deaktivieren" alt="Deactivate"></a>
<a href="{{ url_for('delete_token', token=t) }}"><img src="static/delete.png" title="Löschen" alt="Delete"></a>
<img src="static/delete.png" title="Löschen" alt="Delete" onclick="confirmDelete('{{ t }}')">
</td>
</tr>
{% endfor %}
@ -42,11 +44,26 @@
{% endfor %}
<td>
<a href="{{ url_for('edit_token', token=t) }}"><img src="static/edit.png" title="Editieren" alt="Edit"></a>
<a href="{{ url_for('delete_token', token=t) }}"><img src="static/delete.png" title="Löschen" alt="Delete"></a>
<img src="static/delete.png" title="Löschen" alt="Delete" onclick="confirmDelete('{{ t }}')">
</td>
</tr>
{% endfor %}
</table>
</body>
<script>
function confirmDelete(t) {
debugger
if (confirm('Token wirklich löschen?')) {
console.log('confirmed');
console.log(t);
$.post('{{ url_for('delete_token') }}', {token: t},
function (data) {
if (data === 'success') {
location.reload();
}
});
}
}
</script>
</html>