mirror of
https://github.com/PhoenixTwoFive/karaoqueue.git
synced 2025-05-19 02:51:48 +02:00
Löschung eigener Enträge implementiert.
This commit is contained in:
parent
865df5d588
commit
add528fb80
5
.vscode/settings.json
vendored
5
.vscode/settings.json
vendored
@ -10,5 +10,8 @@
|
|||||||
"python.testing.pytestEnabled": false,
|
"python.testing.pytestEnabled": false,
|
||||||
"python.testing.unittestEnabled": true,
|
"python.testing.unittestEnabled": true,
|
||||||
"python.linting.pylintEnabled": false,
|
"python.linting.pylintEnabled": false,
|
||||||
"python.linting.flake8Enabled": true
|
"python.linting.flake8Enabled": true,
|
||||||
|
"emmet.includeLanguages": {
|
||||||
|
"django-html": "html"
|
||||||
|
}
|
||||||
}
|
}
|
@ -40,8 +40,8 @@ def enqueue():
|
|||||||
name = request.json['name']
|
name = request.json['name']
|
||||||
song_id = request.json['id']
|
song_id = request.json['id']
|
||||||
if request.authorization:
|
if request.authorization:
|
||||||
database.add_entry(name, song_id, client_id)
|
entry_id = database.add_entry(name, song_id, client_id)
|
||||||
return Response('{"status":"OK"}', mimetype='text/json')
|
return Response(f"""{{"status":"OK", "entry_id":{entry_id}}}""", mimetype='text/json')
|
||||||
else:
|
else:
|
||||||
if helpers.get_accept_entries(app):
|
if helpers.get_accept_entries(app):
|
||||||
if not request.json:
|
if not request.json:
|
||||||
@ -55,8 +55,8 @@ def enqueue():
|
|||||||
song_id = request.json['id']
|
song_id = request.json['id']
|
||||||
if database.check_queue_length() < int(app.config['MAX_QUEUE']):
|
if database.check_queue_length() < int(app.config['MAX_QUEUE']):
|
||||||
if database.check_entry_quota(client_id) < int(app.config['ENTRY_QUOTA']):
|
if database.check_entry_quota(client_id) < int(app.config['ENTRY_QUOTA']):
|
||||||
database.add_entry(name, song_id, client_id)
|
entry_id = database.add_entry(name, song_id, client_id)
|
||||||
return Response('{"status":"OK"}', mimetype='text/json')
|
return Response(f"""{{"status":"OK", "entry_id":{entry_id}}}""", mimetype='text/json')
|
||||||
else:
|
else:
|
||||||
return Response('{"status":"Du hast bereits ' + str(database.check_entry_quota(client_id)) + ' Songs eingetragen, dies ist das Maximum an Einträgen die du in der Warteliste haben kannst."}', mimetype='text/json', status=423)
|
return Response('{"status":"Du hast bereits ' + str(database.check_entry_quota(client_id)) + ' Songs eingetragen, dies ist das Maximum an Einträgen die du in der Warteliste haben kannst."}', mimetype='text/json', status=423)
|
||||||
else:
|
else:
|
||||||
@ -177,7 +177,7 @@ def delete_entry_user(entry_id):
|
|||||||
if not helpers.is_valid_uuid(client_id):
|
if not helpers.is_valid_uuid(client_id):
|
||||||
print(request.data)
|
print(request.data)
|
||||||
abort(400)
|
abort(400)
|
||||||
if database.get_raw_entry(entry_id)['client_id'] != client_id: # type: ignore
|
if database.get_raw_entry(entry_id)[3] != client_id: # type: ignore
|
||||||
print(request.data)
|
print(request.data)
|
||||||
abort(403)
|
abort(403)
|
||||||
if database.delete_entry(entry_id):
|
if database.delete_entry(entry_id):
|
||||||
|
@ -134,11 +134,11 @@ def get_song_completions(input_string):
|
|||||||
def add_entry(name, song_id, client_id):
|
def add_entry(name, song_id, client_id):
|
||||||
with get_db_engine().connect() as conn:
|
with get_db_engine().connect() as conn:
|
||||||
stmt = text(
|
stmt = text(
|
||||||
"INSERT INTO entries (Song_Id,Name,Client_Id) VALUES (:par_song_id,:par_name,:par_client_id);")
|
"INSERT INTO entries (Song_Id,Name,Client_Id) VALUES (:par_song_id,:par_name,:par_client_id) RETURNING entries.ID;")
|
||||||
conn.execute(stmt, {"par_song_id": song_id, "par_name": name,
|
cur = conn.execute(stmt, {"par_song_id": song_id, "par_name": name,
|
||||||
"par_client_id": client_id}) # type: ignore
|
"par_client_id": client_id}) # type: ignore
|
||||||
conn.commit()
|
conn.commit()
|
||||||
return True
|
return cur.fetchone()[0] # type: ignore
|
||||||
|
|
||||||
|
|
||||||
def add_sung_song(entry_id):
|
def add_sung_song(entry_id):
|
||||||
|
@ -147,6 +147,29 @@
|
|||||||
loadOrGenerateClientId()
|
loadOrGenerateClientId()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function addEntry(entryId) {
|
||||||
|
entryArray = JSON.parse(localStorage.getItem("ownedEntries"))
|
||||||
|
if (entryArray == null) {
|
||||||
|
entryArray = []
|
||||||
|
}
|
||||||
|
entryArray.push(entryId)
|
||||||
|
localStorage.setItem("ownedEntries", JSON.stringify(entryArray))
|
||||||
|
}
|
||||||
|
|
||||||
|
function removeEntry(entryId) {
|
||||||
|
entryArray = JSON.parse(localStorage.getItem("ownedEntries"))
|
||||||
|
if (entryArray == null) {
|
||||||
|
entryArray = []
|
||||||
|
}
|
||||||
|
entryArray = entryArray.filter(function(value, index, arr){ return value != entryId;});
|
||||||
|
localStorage.setItem("ownedEntries", JSON.stringify(entryArray))
|
||||||
|
}
|
||||||
|
|
||||||
|
function getOwnedEntries() {
|
||||||
|
return JSON.parse(localStorage.getItem("ownedEntries"))
|
||||||
|
}
|
||||||
|
|
||||||
</script>
|
</script>
|
||||||
</body>
|
</body>
|
||||||
|
|
||||||
|
@ -17,6 +17,7 @@
|
|||||||
<th data-field="Name">Name</th>
|
<th data-field="Name">Name</th>
|
||||||
<th data-field="Title">Song</th>
|
<th data-field="Title">Song</th>
|
||||||
<th data-field="Artist">Künstler</th>
|
<th data-field="Artist">Künstler</th>
|
||||||
|
<th scope="col" data-formatter="TableActionsFormatter"></th>
|
||||||
</tr>
|
</tr>
|
||||||
</thead>
|
</thead>
|
||||||
</table>
|
</table>
|
||||||
@ -34,5 +35,37 @@ $.getJSON("/api/entries/accept", (data) => {
|
|||||||
$('[data-toggle="tooltip"]').tooltip()
|
$('[data-toggle="tooltip"]').tooltip()
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
|
||||||
|
function TableActionsFormatter(value,row,index) {
|
||||||
|
console.log("Value: " + value + ", Row: " + row + ", Index: " + index)
|
||||||
|
console.log(row)
|
||||||
|
if (getOwnedEntries().includes(row.entry_ID)) {
|
||||||
|
return "<button type='button' class='btn btn-danger' data-toggle='tooltip' data-placement='top' title='Eintrag zurückziehen' onclick=\"event.stopPropagation();$(this).tooltip('dispose');requestDeletionAsUser("+row["entry_ID"]+")\"><i class='fas fa-trash'></i></button>"
|
||||||
|
}
|
||||||
|
return ""
|
||||||
|
}
|
||||||
|
|
||||||
|
function requestDeletionAsUser(id) {
|
||||||
|
bootbox.confirm("Wirklich den Eintrag zurückziehen? Das könnte zu einer langen Wartezeit führen!", function (result) {
|
||||||
|
if (result) {
|
||||||
|
payload = {
|
||||||
|
"client_id": localStorage.getItem("clientId"),
|
||||||
|
"entry_id": id
|
||||||
|
}
|
||||||
|
$.ajax({
|
||||||
|
url: "/api/entries/delete/"+id,
|
||||||
|
type: "POST",
|
||||||
|
data: JSON.stringify(payload),
|
||||||
|
contentType: "application/json; charset=utf-8",
|
||||||
|
dataType: "json",
|
||||||
|
success: function(result) {
|
||||||
|
bootbox.alert("Eintrag zurückgezogen!")
|
||||||
|
location.reload()
|
||||||
|
}
|
||||||
|
})
|
||||||
|
}
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
</script>
|
</script>
|
||||||
{% endblock %}
|
{% endblock %}
|
@ -96,10 +96,16 @@
|
|||||||
function submitModal() {
|
function submitModal() {
|
||||||
var name = $("#singerNameInput").val();
|
var name = $("#singerNameInput").val();
|
||||||
var id = $("#selectedId").attr("value");
|
var id = $("#selectedId").attr("value");
|
||||||
enqueue(localStorage.getItem("clientId"),id, name, function () {
|
enqueue(localStorage.getItem("clientId"),id, name, function (response) {
|
||||||
|
console.log(response);
|
||||||
|
entryID = response["entry_id"];
|
||||||
|
bootbox.alert({
|
||||||
|
message: "Deine Eintragung wurde erfolgreich vorgenommen.",
|
||||||
|
});
|
||||||
|
console.log("Entry ID: " + entryID);
|
||||||
|
addEntry(entryID);
|
||||||
$("#enqueueModal").modal('hide');
|
$("#enqueueModal").modal('hide');
|
||||||
window.location.href = '/#end';
|
window.location.href = '/#end';
|
||||||
|
|
||||||
}, function (response) {
|
}, function (response) {
|
||||||
bootbox.alert({
|
bootbox.alert({
|
||||||
message: "Deine Eintragung konnte leider nicht vorgenommen werden.\nGrund: "+response.responseJSON.status,
|
message: "Deine Eintragung konnte leider nicht vorgenommen werden.\nGrund: "+response.responseJSON.status,
|
||||||
|
Loading…
x
Reference in New Issue
Block a user