mirror of https://github.com/gophish/gophish
91 lines
2.8 KiB
JavaScript
91 lines
2.8 KiB
JavaScript
var template = {attachments:[]}
|
|
var icons = {
|
|
"application/vnd.ms-excel" : "fa-file-excel-o",
|
|
"text/plain" : "fa-file-text-o",
|
|
"image/gif" : "fa-file-image-o",
|
|
"image/png" : "fa-file-image-o",
|
|
"application/pdf" : "fa-file-pdf-o",
|
|
"application/x-zip-compressed" : "fa-file-archive-o",
|
|
"application/x-gzip" : "fa-file-archive-o",
|
|
"application/vnd.openxmlformats-officedocument.presentationml.presentation" : "fa-file-powerpoint-o",
|
|
"application/vnd.openxmlformats-officedocument.wordprocessingml.document" : "fa-file-word-o",
|
|
"application/octet-stream" : "fa-file-o",
|
|
"application/x-msdownload" : "fa-file-o"
|
|
}
|
|
|
|
// Save attempts to POST to /templates/
|
|
function save(){
|
|
template.name = $("#name").val()
|
|
console.log(template)
|
|
// Submit the template
|
|
api.templates.post(template)
|
|
.success(function(data){
|
|
successFlash("Template added successfully!")
|
|
load()
|
|
dismiss()
|
|
})
|
|
.error(function(data){
|
|
$("#modal\\.flashes").empty().append("<div style=\"text-align:center\" class=\"alert alert-danger\">\
|
|
<i class=\"fa fa-exclamation-circle\"></i> " + data.responseJSON.message + "</div>")
|
|
})
|
|
}
|
|
|
|
function dismiss(){
|
|
$("#modal\\.flashes").empty()
|
|
$("#modal").modal('hide')
|
|
template = {attachments:[]}
|
|
}
|
|
|
|
function attach(files){
|
|
$.each(files, function(i, file){
|
|
var reader = new FileReader();
|
|
/* Make this a datatable */
|
|
reader.onload = function(e){
|
|
// Add the attachment
|
|
template.attachments.push({
|
|
name: file.name,
|
|
content: reader.result.split(",")[1],
|
|
type: file.type || "application/octet-stream"
|
|
})
|
|
var icon = icons[file.type] || "fa-file-o"
|
|
// Add the record to the modal
|
|
$("#attachments").append('<i class="fa ' + icon + '"></i> ' + file.name + '<span class="remove-row"><i class="fa fa-trash-o"></i></span><br/>');
|
|
}
|
|
reader.onerror = function(e) {
|
|
console.log(e)
|
|
}
|
|
reader.readAsDataURL(file)
|
|
})
|
|
}
|
|
|
|
function edit(t){
|
|
$("#html_editor").ckeditor()
|
|
if (t == "new") {
|
|
template = {attachments:[]}
|
|
}
|
|
}
|
|
|
|
function load(){
|
|
api.templates.get()
|
|
.success(function(templates){
|
|
if (templates.length > 0){
|
|
$("#emptyMessage").hide()
|
|
$("#templateTable").show()
|
|
templateTable = $("#templateTable").DataTable();
|
|
$.each(templates, function(i, template){
|
|
templateTable.row.add([
|
|
template.name,
|
|
template.modified_date
|
|
]).draw()
|
|
})
|
|
}
|
|
})
|
|
.error(function(){
|
|
errorFlash("Error fetching templates")
|
|
})
|
|
}
|
|
|
|
$(document).ready(function(){
|
|
load()
|
|
})
|