mirror of https://github.com/gophish/gophish
Add/update table when adding targets via CSV too
parent
21c55c579c
commit
f88e68077e
|
@ -94,14 +94,11 @@ function edit(idx) {
|
||||||
},
|
},
|
||||||
done: function(e, data) {
|
done: function(e, data) {
|
||||||
$.each(data.result, function(i, record) {
|
$.each(data.result, function(i, record) {
|
||||||
targets.DataTable()
|
addTarget(
|
||||||
.row.add([
|
record.first_name,
|
||||||
escapeHtml(record.first_name),
|
record.last_name,
|
||||||
escapeHtml(record.last_name),
|
record.email,
|
||||||
escapeHtml(record.email),
|
record.position);
|
||||||
escapeHtml(record.position),
|
|
||||||
'<span style="cursor:pointer;"><i class="fa fa-trash-o"></i></span>'
|
|
||||||
]).draw()
|
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
@ -117,6 +114,35 @@ function deleteGroup(idx) {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
function addTarget(firstNameInput, lastNameInput, emailInput, positionInput) {
|
||||||
|
// Create new data row.
|
||||||
|
var email = escapeHtml(emailInput).toLowerCase();
|
||||||
|
var newRow = [
|
||||||
|
escapeHtml(firstNameInput),
|
||||||
|
escapeHtml(lastNameInput),
|
||||||
|
email,
|
||||||
|
escapeHtml(positionInput),
|
||||||
|
'<span style="cursor:pointer;"><i class="fa fa-trash-o"></i></span>'
|
||||||
|
];
|
||||||
|
|
||||||
|
// Check table to see if email already exists.
|
||||||
|
var targetsTable = targets.DataTable();
|
||||||
|
var existingRowIndex = targetsTable
|
||||||
|
.column(2, {order: "index"}) // Email column has index of 2
|
||||||
|
.data()
|
||||||
|
.indexOf(email);
|
||||||
|
|
||||||
|
// Update or add new row as necessary.
|
||||||
|
if (existingRowIndex >= 0) {
|
||||||
|
targetsTable
|
||||||
|
.row(existingRowIndex, {order: "index"})
|
||||||
|
.data(newRow);
|
||||||
|
} else {
|
||||||
|
targetsTable.row.add(newRow);
|
||||||
|
}
|
||||||
|
targetsTable.draw();
|
||||||
|
}
|
||||||
|
|
||||||
function load() {
|
function load() {
|
||||||
$("#groupTable").hide()
|
$("#groupTable").hide()
|
||||||
$("#emptyMessage").hide()
|
$("#emptyMessage").hide()
|
||||||
|
@ -171,32 +197,11 @@ $(document).ready(function() {
|
||||||
// Setup the event listeners
|
// Setup the event listeners
|
||||||
// Handle manual additions
|
// Handle manual additions
|
||||||
$("#targetForm").submit(function() {
|
$("#targetForm").submit(function() {
|
||||||
// Create new data row.
|
addTarget(
|
||||||
var emailInput = escapeHtml($("#email").val()).toLowerCase();
|
$("#firstName").val(),
|
||||||
var newRow = [
|
$("#lastName").val(),
|
||||||
escapeHtml($("#firstName").val()),
|
$("#email").val(),
|
||||||
escapeHtml($("#lastName").val()),
|
$("#position").val());
|
||||||
emailInput,
|
|
||||||
escapeHtml($("#position").val()),
|
|
||||||
'<span style="cursor:pointer;"><i class="fa fa-trash-o"></i></span>'
|
|
||||||
];
|
|
||||||
|
|
||||||
// Check table to see if email already exists.
|
|
||||||
var targetsTable = targets.DataTable();
|
|
||||||
var existingRowIndex = targetsTable
|
|
||||||
.column(2, {order: "index"}) // Email column
|
|
||||||
.data()
|
|
||||||
.indexOf(emailInput);
|
|
||||||
|
|
||||||
// Update or add new row as necessary.
|
|
||||||
if (existingRowIndex >= 0) {
|
|
||||||
targetsTable
|
|
||||||
.row(existingRowIndex, {order: "index"})
|
|
||||||
.data(newRow);
|
|
||||||
} else {
|
|
||||||
targetsTable.row.add(newRow);
|
|
||||||
}
|
|
||||||
targetsTable.draw();
|
|
||||||
|
|
||||||
// Reset user input.
|
// Reset user input.
|
||||||
$("#targetForm>div>input").val('');
|
$("#targetForm>div>input").val('');
|
||||||
|
|
Loading…
Reference in New Issue