mirror of https://github.com/gophish/gophish
210 lines
7.7 KiB
JavaScript
210 lines
7.7 KiB
JavaScript
var map = null
|
|
|
|
// statuses is a helper map to point result statuses to ui classes
|
|
var statuses = {
|
|
"Email Sent" : {
|
|
slice: "ct-slice-donut-sent",
|
|
legend: "ct-legend-sent",
|
|
label: "label-success"
|
|
},
|
|
"Email Opened" : {
|
|
slice: "ct-slice-donut-opened",
|
|
legend: "ct-legend-opened",
|
|
label: "label-warning"
|
|
},
|
|
"Clicked Link" : {
|
|
slice: "ct-slice-donut-clicked",
|
|
legend: "ct-legend-clicked",
|
|
label: "label-danger"
|
|
},
|
|
"Success" : {
|
|
slice: "ct-slice-donut-clicked",
|
|
legend: "ct-legend-clicked",
|
|
label: "label-danger"
|
|
},
|
|
"Error" : {
|
|
slice: "ct-slice-donut-error",
|
|
legend: "ct-legend-error",
|
|
label: "label-default"
|
|
},
|
|
"Unknown" : {
|
|
slice: "ct-slice-donut-error",
|
|
legend: "ct-legend-error",
|
|
label: "label-default"
|
|
}
|
|
}
|
|
|
|
var campaign = {}
|
|
|
|
function dismiss(){
|
|
$("#modal\\.flashes").empty()
|
|
$("#modal").modal('hide')
|
|
$("#resultsTable").dataTable().DataTable().clear().draw()
|
|
}
|
|
|
|
// Deletes a campaign after prompting the user
|
|
function deleteCampaign(){
|
|
if (confirm("Are you sure you want to delete: " + campaign.name + "?")){
|
|
api.campaignId.delete(campaign.id)
|
|
.success(function(msg){
|
|
console.log(msg)
|
|
})
|
|
.error(function(e){
|
|
$("#modal\\.flashes").empty().append("<div style=\"text-align:center\" class=\"alert alert-danger\">\
|
|
<i class=\"fa fa-exclamation-circle\"></i> " + data.responseJSON.message + "</div>")
|
|
})
|
|
}
|
|
}
|
|
|
|
$(document).ready(function(){
|
|
campaign.id = window.location.pathname.split('/').slice(-1)[0]
|
|
api.campaignId.get(campaign.id)
|
|
.success(function(c){
|
|
campaign = c
|
|
if (campaign){
|
|
// Set the title
|
|
$("#page-title").text("Results for " + c.name)
|
|
// Setup tooltips
|
|
$('[data-toggle="tooltip"]').tooltip()
|
|
// Setup our graphs
|
|
var timeline_data = {series:[{
|
|
name: "Events",
|
|
data: []
|
|
}]}
|
|
var email_data = {series:[]}
|
|
var email_legend = {}
|
|
var email_series_data = {}
|
|
var timeline_opts = {
|
|
axisX: {
|
|
showGrid: false,
|
|
type: Chartist.FixedScaleAxis,
|
|
divisor: 5,
|
|
labelInterpolationFnc: function(value){
|
|
return moment(value).format('MMMM Do YYYY h:mm')
|
|
}
|
|
},
|
|
axisY: {
|
|
type: Chartist.FixedScaleAxis,
|
|
ticks: [0, 1, 2],
|
|
low: 0,
|
|
showLabel: false
|
|
},
|
|
showArea: false,
|
|
plugins: []
|
|
}
|
|
var email_opts = {
|
|
donut : true,
|
|
donutWidth: 40,
|
|
chartPadding: 0,
|
|
showLabel: false
|
|
}
|
|
// Setup the results table
|
|
resultsTable = $("#resultsTable").DataTable();
|
|
$.each(campaign.results, function(i, result){
|
|
label = statuses[result.status].label || "label-default";
|
|
resultsTable.row.add([
|
|
result.first_name || "",
|
|
result.last_name || "",
|
|
result.email || "",
|
|
result.position || "",
|
|
"<span class=\"label " + label + "\">" + result.status + "</span>"
|
|
]).draw()
|
|
if (!email_series_data[result.status]){
|
|
email_series_data[result.status] = 1
|
|
} else {
|
|
email_series_data[result.status]++;
|
|
}
|
|
})
|
|
// Setup the graphs
|
|
$.each(campaign.timeline, function(i, event){
|
|
timeline_data.series[0].data.push({meta : i, x: new Date(event.time), y:1})
|
|
})
|
|
$.each(email_series_data, function(status, count){
|
|
email_data.series.push({meta: status, value: count})
|
|
})
|
|
var timeline_chart = new Chartist.Line('#timeline_chart', timeline_data, timeline_opts)
|
|
// Setup the overview chart listeners
|
|
$chart = $("#timeline_chart")
|
|
var $toolTip = $chart
|
|
.append('<div class="chartist-tooltip"></div>')
|
|
.find('.chartist-tooltip')
|
|
.hide();
|
|
$chart.on('mouseenter', '.ct-point', function() {
|
|
var $point = $(this)
|
|
value = $point.attr('ct:value')
|
|
cidx = $point.attr('ct:meta')
|
|
html = "Event: " + campaign.timeline[cidx].message
|
|
if (campaign.timeline[cidx].email) {
|
|
html += '<br>' + "Email: " + campaign.timeline[cidx].email
|
|
}
|
|
$toolTip.html(html).show()
|
|
});
|
|
$chart.on('mouseleave', '.ct-point', function() {
|
|
$toolTip.hide();
|
|
});
|
|
$chart.on('mousemove', function(event) {
|
|
$toolTip.css({
|
|
left: (event.offsetX || event.originalEvent.layerX) - $toolTip.width() / 2 - 10,
|
|
top: (event.offsetY + 70 || event.originalEvent.layerY) - $toolTip.height() - 40
|
|
});
|
|
});
|
|
var email_chart = new Chartist.Pie("#email_chart", email_data, email_opts)
|
|
email_chart.on('draw', function(data){
|
|
// We don't want to create the legend twice
|
|
if (!email_legend[data.meta]) {
|
|
console.log(data.meta)
|
|
$("#email_chart_legend").append('<li><span class="' + statuses[data.meta].legend + '"></span>' + data.meta + '</li>')
|
|
email_legend[data.meta] = true
|
|
}
|
|
data.element.addClass(statuses[data.meta].slice)
|
|
})
|
|
// Setup the average chart listeners
|
|
$piechart = $("#email_chart")
|
|
var $pietoolTip = $piechart
|
|
.append('<div class="chartist-tooltip"></div>')
|
|
.find('.chartist-tooltip')
|
|
.hide();
|
|
|
|
$piechart.on('mouseenter', '.ct-slice-donut', function() {
|
|
var $point = $(this)
|
|
value = $point.attr('ct:value')
|
|
label = $point.attr('ct:meta')
|
|
$pietoolTip.html(label + ': ' + value.toString()).show();
|
|
});
|
|
|
|
$piechart.on('mouseleave', '.ct-slice-donut', function() {
|
|
$pietoolTip.hide();
|
|
});
|
|
$piechart.on('mousemove', function(event) {
|
|
$pietoolTip.css({
|
|
left: (event.offsetX || event.originalEvent.layerX) - $pietoolTip.width() / 2 - 10,
|
|
top: (event.offsetY + 40 || event.originalEvent.layerY) - $pietoolTip.height() - 80
|
|
});
|
|
});
|
|
$("#loading").hide()
|
|
$("#campaignResults").show()
|
|
}
|
|
// Load up the map data (only once!)
|
|
// Slated for 0.2 release - coming soon! :)
|
|
// $('a[data-toggle="tab"]').on('shown.bs.tab', function (e) {
|
|
// if ($(e.target).attr('href') == "#plugins"){
|
|
// if (!map){
|
|
// map = new Datamap({
|
|
// element: document.getElementById("resultsMap"),
|
|
// responsive: true,
|
|
// fills: {
|
|
// defaultFill: "#34495e"
|
|
// },
|
|
// geographyConfig: {
|
|
// highlightFillColor : "#1abc9c"
|
|
// }
|
|
// });
|
|
// }
|
|
// }
|
|
// })
|
|
})
|
|
.error(function(){
|
|
errorFlash(" Campaign not found!")
|
|
})
|
|
})
|