mirror of https://github.com/JohnHammond/CTFd.git
Add bulk user page actions
parent
5a9d79f2bb
commit
c101204879
|
@ -189,80 +189,70 @@ function emailUser(event) {
|
|||
});
|
||||
}
|
||||
|
||||
function deleteUserSubmission(event) {
|
||||
event.preventDefault();
|
||||
const submission_id = $(this).attr("submission-id");
|
||||
const submission_type = $(this).attr("submission-type");
|
||||
const submission_challenge = $(this).attr("submission-challenge");
|
||||
function deleteSelectedSubmissions(event, target) {
|
||||
let submissions;
|
||||
let type;
|
||||
let title;
|
||||
switch(target){
|
||||
case "solves":
|
||||
submissions = $("input[data-submission-type=correct]:checked");
|
||||
type = "solve";
|
||||
title = "Solves"
|
||||
break;
|
||||
case "fails":
|
||||
submissions = $("input[data-submission-type=incorrect]:checked");
|
||||
type = "fail";
|
||||
title = "Fails"
|
||||
break;
|
||||
default:
|
||||
break;
|
||||
}
|
||||
|
||||
const body = "<span>Are you sure you want to delete <strong>{0}</strong> submission from <strong>{1}</strong> for <strong>{2}</strong>?</span>".format(
|
||||
htmlEntities(submission_type),
|
||||
htmlEntities(USER_NAME),
|
||||
htmlEntities(submission_challenge)
|
||||
);
|
||||
|
||||
const row = $(this)
|
||||
.parent()
|
||||
.parent();
|
||||
let submissionIDs = submissions.map(function() {
|
||||
return $(this).data("submission-id");
|
||||
});
|
||||
let target_string = submissionIDs.length === 1 ? type : (type + "s");
|
||||
|
||||
ezQuery({
|
||||
title: "Delete Submission",
|
||||
body: body,
|
||||
title: `Delete ${title}`,
|
||||
body: `Are you sure you want to delete ${submissionIDs.length} ${target_string}?`,
|
||||
success: function() {
|
||||
CTFd.fetch("/api/v1/submissions/" + submission_id, {
|
||||
method: "DELETE",
|
||||
credentials: "same-origin",
|
||||
headers: {
|
||||
Accept: "application/json",
|
||||
"Content-Type": "application/json"
|
||||
}
|
||||
})
|
||||
.then(function(response) {
|
||||
return response.json();
|
||||
})
|
||||
.then(function(response) {
|
||||
if (response.success) {
|
||||
row.remove();
|
||||
}
|
||||
});
|
||||
const reqs = [];
|
||||
for (var subId of submissionIDs) {
|
||||
reqs.push(CTFd.api.delete_submission({ submissionId: subId }));
|
||||
}
|
||||
Promise.all(reqs).then(responses => {
|
||||
window.location.reload();
|
||||
});
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
function deleteUserAward(event) {
|
||||
event.preventDefault();
|
||||
const award_id = $(this).attr("award-id");
|
||||
const award_name = $(this).attr("award-name");
|
||||
|
||||
const body = "<span>Are you sure you want to delete the <strong>{0}</strong> award from <strong>{1}</strong>?".format(
|
||||
htmlEntities(award_name),
|
||||
htmlEntities(USER_NAME)
|
||||
);
|
||||
|
||||
const row = $(this)
|
||||
.parent()
|
||||
.parent();
|
||||
function deleteSelectedAwards(event) {
|
||||
let awardIDs = $("input[data-award-id]:checked").map(function() {
|
||||
return $(this).data("award-id");
|
||||
});
|
||||
let target = awardIDs.length === 1 ? "award" : "awards";
|
||||
|
||||
ezQuery({
|
||||
title: "Delete Award",
|
||||
body: body,
|
||||
title: `Delete Awards`,
|
||||
body: `Are you sure you want to delete ${awardIDs.length} ${target}?`,
|
||||
success: function() {
|
||||
CTFd.fetch("/api/v1/awards/" + award_id, {
|
||||
method: "DELETE",
|
||||
credentials: "same-origin",
|
||||
headers: {
|
||||
Accept: "application/json",
|
||||
"Content-Type": "application/json"
|
||||
}
|
||||
})
|
||||
.then(function(response) {
|
||||
return response.json();
|
||||
})
|
||||
.then(function(response) {
|
||||
if (response.success) {
|
||||
row.remove();
|
||||
const reqs = [];
|
||||
for (var awardID of awardIDs) {
|
||||
let req = CTFd.fetch("/api/v1/awards/" + awardID, {
|
||||
method: "DELETE",
|
||||
credentials: "same-origin",
|
||||
headers: {
|
||||
Accept: "application/json",
|
||||
"Content-Type": "application/json"
|
||||
}
|
||||
});
|
||||
reqs.push(req);
|
||||
}
|
||||
Promise.all(reqs).then(responses => {
|
||||
window.location.reload();
|
||||
});
|
||||
}
|
||||
});
|
||||
}
|
||||
|
@ -425,8 +415,18 @@ $(() => {
|
|||
|
||||
$("#user-mail-form").submit(emailUser);
|
||||
|
||||
$(".delete-submission").click(deleteUserSubmission);
|
||||
$(".delete-award").click(deleteUserAward);
|
||||
$("#solves-delete-button").click(function(e){
|
||||
deleteSelectedSubmissions(e, "solves")
|
||||
});
|
||||
|
||||
$("#fails-delete-button").click(function(e){
|
||||
deleteSelectedSubmissions(e, "fails")
|
||||
});
|
||||
|
||||
$("#awards-delete-button").click(function(e){
|
||||
deleteSelectedAwards(e);
|
||||
});
|
||||
|
||||
$(".correct-submission").click(correctUserSubmission);
|
||||
|
||||
$("#user-info-create-form").submit(createUser);
|
||||
|
|
File diff suppressed because one or more lines are too long
|
@ -197,23 +197,45 @@
|
|||
|
||||
<div class="tab-content min-vh-25" id="nav-tabContent">
|
||||
<div class="tab-pane fade show active" id="nav-solves" role="tabpanel" aria-labelledby="nav-solves-tab">
|
||||
<h3 class="text-center pt-5 d-block">Solves</h3>
|
||||
<div class="row">
|
||||
<div class="col-md-12">
|
||||
<table class="table table-striped">
|
||||
<h3 class="text-center py-3 d-block">Solves</h3>
|
||||
<div class="float-right pb-3">
|
||||
<div class="btn-group" role="group">
|
||||
<button type="button" class="btn btn-outline-danger" id="solves-delete-button">
|
||||
<i class="btn-fa fas fa-trash-alt"></i>
|
||||
</button>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="row">
|
||||
<div class="col-md-12">
|
||||
<table class="table table-striped border">
|
||||
<thead>
|
||||
<tr>
|
||||
<td class="text-center"><b>Challenge</b></td>
|
||||
<td class="text-center"><b>Submitted</b></td>
|
||||
<td class="text-center"><b>Category</b></td>
|
||||
<td class="text-center"><b>Value</b></td>
|
||||
<td class="text-center"><b>Time</b></td>
|
||||
<td class="text-center"><b>Delete</b></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th class="border-right" data-checkbox>
|
||||
<div class="form-check text-center">
|
||||
<input type="checkbox" class="form-check-input" data-checkbox-all>
|
||||
</div>
|
||||
</th>
|
||||
<th class="sort-col text-center"><b>Challenge</b></th>
|
||||
<th class="sort-col text-center"><b>Submitted</b></th>
|
||||
<th class="sort-col text-center"><b>Category</b></th>
|
||||
<th class="sort-col text-center"><b>Value</b></th>
|
||||
<th class="sort-col text-center"><b>Time</b></th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
{% for solve in solves %}
|
||||
<tr class="chal-solve" data-href="{{ url_for("admin.challenges_detail", challenge_id=solve.challenge_id) }}">
|
||||
<td class="border-right" data-checkbox>
|
||||
<div class="form-check text-center">
|
||||
<input type="checkbox" class="form-check-input" value="{{ solve.id }}" data-submission-id="{{ solve.id }}"
|
||||
data-submission-type="{{ solve.type }}"
|
||||
data-submission-challenge="{{ solve.challenge.name }}">
|
||||
</div>
|
||||
</td>
|
||||
<td class="text-center chal" id="{{ solve.challenge_id }}">
|
||||
<a href="{{ url_for("admin.challenges_detail", challenge_id=solve.challenge_id) }}">
|
||||
{{ solve.challenge.name }}
|
||||
|
@ -225,13 +247,6 @@
|
|||
<td class="text-center solve-time">
|
||||
<span data-time="{{ solve.date | isoformat }}"></span>
|
||||
</td>
|
||||
<td class="text-center">
|
||||
<span class="delete-submission" submission-id="{{ solve.id }}"
|
||||
submission-type="{{ solve.type }}" submission-challenge="{{ solve.challenge.name }}" data-toggle="tooltip"
|
||||
data-placement="top" title="Delete solve #{{ solve.id }}">
|
||||
<i class="btn-fa fas fa-times"></i>
|
||||
</span>
|
||||
</td>
|
||||
</tr>
|
||||
{% endfor %}
|
||||
</tbody>
|
||||
|
@ -241,66 +256,101 @@
|
|||
</div>
|
||||
|
||||
<div class="tab-pane fade" id="nav-wrong" role="tabpanel" aria-labelledby="nav-wrong-tab">
|
||||
<h3 class="text-center pt-5 d-block">Fails</h3>
|
||||
<div class="row">
|
||||
<div class="col-md-12">
|
||||
<table class="table table-striped">
|
||||
<h3 class="text-center py-3 d-block">Fails</h3>
|
||||
<thead>
|
||||
<tr>
|
||||
<td class="text-center"><b>Challenge</b></td>
|
||||
<td class="text-center"><b>Submitted</b></td>
|
||||
<td class="text-center"><b>Time</b></td>
|
||||
<td class="text-center"><b>Delete</b></td>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
{% for fail in fails %}
|
||||
<tr class="chal-wrong" data-href="{{ url_for("admin.challenges_detail", challenge_id=fail.challenge_id) }}">
|
||||
<td class="text-center chal" id="{{ fail.challenge_id }}">
|
||||
<a href="{{ url_for("admin.challenges_detail", challenge_id=fail.challenge_id) }}">
|
||||
{{ fail.challenge.name }}
|
||||
</a>
|
||||
</td>
|
||||
<td class="flag" id="{{ fail.id }}">
|
||||
<pre>{{ fail.provided }}</pre>
|
||||
</td>
|
||||
<td class="text-center solve-time">
|
||||
<span data-time="{{ fail.date | isoformat }}"></span>
|
||||
</td>
|
||||
<td class="text-center">
|
||||
<a class="delete-submission" submission-id="{{ fail.id }}"
|
||||
submission-type="{{ fail.type }}" submission-challenge="{{ fail.challenge.name }}" data-toggle="tooltip"
|
||||
data-placement="top" title="Delete fail #{{ fail.id }}">
|
||||
<i class="fas fa-times"></i>
|
||||
</a>
|
||||
</td>
|
||||
</tr>
|
||||
{% endfor %}
|
||||
</tbody>
|
||||
</table>
|
||||
<div class="float-right pb-3">
|
||||
<div class="btn-group" role="group">
|
||||
<button type="button" class="btn btn-outline-danger" id="fails-delete-button">
|
||||
<i class="btn-fa fas fa-trash-alt"></i>
|
||||
</button>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="row">
|
||||
<div class="col-md-12">
|
||||
<table class="table table-striped border">
|
||||
<thead>
|
||||
<tr>
|
||||
<th class="border-right" data-checkbox>
|
||||
<div class="form-check text-center">
|
||||
<input type="checkbox" class="form-check-input" data-checkbox-all>
|
||||
</div>
|
||||
</th>
|
||||
<th class="sort-col text-center"><b>Challenge</b></th>
|
||||
<th class="sort-col text-center"><b>Submitted</b></th>
|
||||
<th class="sort-col text-center"><b>Time</b></th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
{% for fail in fails %}
|
||||
<tr class="chal-wrong" data-href="{{ url_for("admin.challenges_detail", challenge_id=fail.challenge_id) }}">
|
||||
<td class="border-right" data-checkbox>
|
||||
<div class="form-check text-center">
|
||||
<input type="checkbox" class="form-check-input" value="{{ fail.id }}" data-submission-id="{{ fail.id }}"
|
||||
data-submission-type="{{ fail.type }}"
|
||||
data-submission-challenge="{{ fail.challenge.name }}">
|
||||
</div>
|
||||
</td>
|
||||
<td class="text-center chal" id="{{ fail.challenge_id }}">
|
||||
<a href="{{ url_for("admin.challenges_detail", challenge_id=fail.challenge_id) }}">
|
||||
{{ fail.challenge.name }}
|
||||
</a>
|
||||
</td>
|
||||
<td class="flag" id="{{ fail.id }}">
|
||||
<pre>{{ fail.provided }}</pre>
|
||||
</td>
|
||||
<td class="text-center solve-time">
|
||||
<span data-time="{{ fail.date | isoformat }}"></span>
|
||||
</td>
|
||||
</tr>
|
||||
{% endfor %}
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="tab-pane fade" id="nav-awards" role="tabpanel" aria-labelledby="nav-awards-tab">
|
||||
<h3 class="text-center pt-5 d-block">Awards</h3>
|
||||
<div class="row">
|
||||
<div class="col-md-12">
|
||||
<table class="table table-striped">
|
||||
<h3 class="text-center py-3 d-block">Awards</h3>
|
||||
<div class="float-right pb-3">
|
||||
<div class="btn-group" role="group">
|
||||
<button type="button" class="btn btn-outline-danger" id="awards-delete-button">
|
||||
<i class="btn-fa fas fa-trash-alt"></i>
|
||||
</button>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="row">
|
||||
<div class="col-md-12">
|
||||
<table class="table table-striped border">
|
||||
<thead>
|
||||
<tr>
|
||||
<td class="text-center"><b>Name</b></td>
|
||||
<td class="text-center"><b>Description</b></td>
|
||||
<td class="text-center"><b>Date</b></td>
|
||||
<td class="text-center"><b>Value</b></td>
|
||||
<td class="text-center"><b>Category</b></td>
|
||||
<td class="text-center"><b>Icon</b></td>
|
||||
<td class="text-center"><b>Delete</b></td>
|
||||
</tr>
|
||||
<tr>
|
||||
<th class="border-right" data-checkbox>
|
||||
<div class="form-check text-center">
|
||||
<input type="checkbox" class="form-check-input" data-checkbox-all>
|
||||
</div>
|
||||
</th>
|
||||
<th class="sort-col text-center"><b>Name</b></th>
|
||||
<th class="sort-col text-center"><b>Description</b></th>
|
||||
<th class="sort-col text-center"><b>Date</b></th>
|
||||
<th class="sort-col text-center"><b>Value</b></th>
|
||||
<th class="sort-col text-center"><b>Category</b></th>
|
||||
<th class="sort-col text-center"><b>Icon</b></th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody id="awards-body">
|
||||
{% for award in awards %}
|
||||
<tr class="award-row">
|
||||
<td class="border-right" data-checkbox>
|
||||
<div class="form-check text-center">
|
||||
<input type="checkbox" class="form-check-input" value="{{ award.id }}" data-award-id="{{ award.id }}" data-award-name="{{ award.name }}">
|
||||
</div>
|
||||
</td>
|
||||
<td class="text-center chal" id="{{ award.id }}">{{ award.name }}</td>
|
||||
<td class=""><pre>{{ award.description }}</pre></td>
|
||||
<td class="text-center solve-time">
|
||||
|
@ -308,15 +358,15 @@
|
|||
</td>
|
||||
<td class="text-center">{{ award.value }}</td>
|
||||
<td class="text-center">{{ award.category }}</td>
|
||||
<td class="text-center">{{ award.icon }}</td>
|
||||
<td class="text-center"> <i class="award-icon award-{{ award.icon }}"></i> {{ award.icon }}</td>
|
||||
|
||||
<td class="text-center">
|
||||
<!-- <td class="text-center">
|
||||
<span class="delete-award" data-toggle="tooltip"
|
||||
data-placement="top" award-id="{{ award.id }}" award-name="{{ award.name }}"
|
||||
title="Delete award #{{ award.id }}">
|
||||
<i class="fas fa-times"></i>
|
||||
</span>
|
||||
</td>
|
||||
</td> -->
|
||||
</tr>
|
||||
{% endfor %}
|
||||
</tbody>
|
||||
|
|
Loading…
Reference in New Issue