2018-07-09 15:07:59 +00:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html>
|
|
|
|
|
|
|
|
<head>
|
|
|
|
<meta charset="utf-8">
|
|
|
|
|
2018-08-24 09:51:16 +00:00
|
|
|
<title>Hash Information - AIL</title>
|
2019-05-15 15:23:58 +00:00
|
|
|
<link rel="icon" href="{{ url_for('static', filename='image/ail-icon.png') }}">
|
2018-07-09 15:07:59 +00:00
|
|
|
|
|
|
|
<!-- Core CSS -->
|
2019-05-15 15:23:58 +00:00
|
|
|
<link href="{{ url_for('static', filename='css/bootstrap4.min.css') }}" rel="stylesheet">
|
|
|
|
<link href="{{ url_for('static', filename='css/font-awesome.min.css') }}" rel="stylesheet">
|
|
|
|
|
2018-07-09 15:07:59 +00:00
|
|
|
<!-- JS -->
|
2019-05-15 15:23:58 +00:00
|
|
|
<script src="{{ url_for('static', filename='js/jquery.js')}}"></script>
|
|
|
|
<script src="{{ url_for('static', filename='js/popper.min.js')}}"></script>
|
|
|
|
<script src="{{ url_for('static', filename='js/bootstrap4.min.js')}}"></script>
|
2018-07-09 15:07:59 +00:00
|
|
|
<script language="javascript" src="{{ url_for('static', filename='js/d3.min.js') }}"></script>
|
2019-05-15 15:23:58 +00:00
|
|
|
|
2018-07-09 15:07:59 +00:00
|
|
|
<style>
|
2018-07-12 15:07:17 +00:00
|
|
|
line.link {
|
|
|
|
stroke: #666;
|
|
|
|
}
|
|
|
|
line.link:hover{
|
|
|
|
stroke: red;
|
|
|
|
stroke-width: 2px
|
|
|
|
}
|
|
|
|
.line_sparkline {
|
|
|
|
fill: none;
|
|
|
|
stroke: #000;
|
|
|
|
stroke-width: 2.0px;
|
|
|
|
}
|
|
|
|
.node {
|
|
|
|
pointer-events: all;
|
|
|
|
}
|
|
|
|
|
|
|
|
circle {
|
|
|
|
stroke: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.graph_text_node {
|
|
|
|
font: 8px sans-serif;
|
|
|
|
pointer-events: none;
|
|
|
|
}
|
|
|
|
|
2018-07-13 09:54:14 +00:00
|
|
|
.graph_node_icon {
|
|
|
|
pointer-events: none;
|
|
|
|
}
|
|
|
|
|
2018-07-12 15:07:17 +00:00
|
|
|
.node text {
|
|
|
|
font: 8px sans-serif;
|
|
|
|
pointer-events: auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
div.tooltip {
|
|
|
|
position: absolute;
|
|
|
|
text-align: center;
|
|
|
|
padding: 2px;
|
|
|
|
font: 12px sans-serif;
|
|
|
|
background: #ebf4fb;
|
|
|
|
border: 2px solid #b7ddf2;
|
|
|
|
border-radius: 8px;
|
|
|
|
pointer-events: none;
|
|
|
|
color: #000000;
|
|
|
|
}
|
|
|
|
|
|
|
|
.graph_panel {
|
|
|
|
padding: unset;
|
|
|
|
}
|
2018-07-16 14:45:36 +00:00
|
|
|
|
|
|
|
.line_graph {
|
|
|
|
fill: none;
|
|
|
|
stroke: steelblue;
|
|
|
|
stroke-width: 2px;
|
|
|
|
stroke-linejoin: round;
|
|
|
|
stroke-linecap: round;
|
|
|
|
stroke-width: 1.5;
|
|
|
|
/*attr('stroke', '#bcbd22').*/
|
|
|
|
}
|
2018-07-09 15:07:59 +00:00
|
|
|
</style>
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
|
2019-05-15 15:23:58 +00:00
|
|
|
{% include 'nav_bar.html' %}
|
2018-07-09 15:07:59 +00:00
|
|
|
|
2019-05-15 15:23:58 +00:00
|
|
|
<div class="container-fluid">
|
|
|
|
<div class="row">
|
2018-07-09 15:07:59 +00:00
|
|
|
|
2019-05-15 15:23:58 +00:00
|
|
|
{% include 'decoded/menu_sidebar.html' %}
|
2018-07-09 15:07:59 +00:00
|
|
|
|
2019-05-15 15:23:58 +00:00
|
|
|
<div class="col-12 col-lg-10" id="core_content">
|
2018-07-09 15:07:59 +00:00
|
|
|
|
2019-05-15 15:23:58 +00:00
|
|
|
<div class="card my-3">
|
|
|
|
<div class="card-header" style="background-color:#d9edf7;font-size: 15px">
|
|
|
|
<h4 class="text-secondary">{{ hash }} :</h4>
|
|
|
|
<ul class="list-group mb-2">
|
|
|
|
<li class="list-group-item py-0">
|
2018-07-09 15:07:59 +00:00
|
|
|
<div class="row">
|
|
|
|
<div class="col-md-10">
|
2019-05-15 15:23:58 +00:00
|
|
|
<table class="table">
|
|
|
|
<thead>
|
|
|
|
<tr>
|
|
|
|
<th>Estimated type</th>
|
|
|
|
<th>First_seen</th>
|
|
|
|
<th>Last_seen</th>
|
|
|
|
<th>Size (Kb)</th>
|
|
|
|
<th>Nb seen</th>
|
|
|
|
</tr>
|
|
|
|
</thead>
|
|
|
|
<tbody>
|
|
|
|
<tr>
|
|
|
|
<td><i class="fas {{ file_icon }}"></i> {{ estimated_type }}</td>
|
|
|
|
<td>{{ first_seen }}</td>
|
|
|
|
<td>{{ last_seen }}</td>
|
|
|
|
<td>{{ size }}</td>
|
|
|
|
<td>{{ nb_seen_in_all_pastes }}</td>
|
|
|
|
</tr>
|
|
|
|
</tbody>
|
|
|
|
</table>
|
2018-07-09 15:07:59 +00:00
|
|
|
</div>
|
|
|
|
<div class="col-md-1">
|
|
|
|
<div id="sparkline"></div>
|
|
|
|
</div>
|
|
|
|
</div>
|
2019-05-15 15:23:58 +00:00
|
|
|
</li>
|
|
|
|
</ul>
|
|
|
|
|
|
|
|
{% if vt_enabled %}
|
|
|
|
{% if not b64_vt %}
|
|
|
|
<darkbutton>
|
|
|
|
<button id="submit_vt_b" class="btn btn-primary" onclick="sendFileToVT('{{ hash }}')" style="font-size: 15px">
|
|
|
|
<i class="fas fa-paper-plane"></i> Send this file to VT
|
|
|
|
</button>
|
|
|
|
</darkbutton>
|
2018-07-17 12:23:49 +00:00
|
|
|
{% else %}
|
2019-05-15 15:23:58 +00:00
|
|
|
<a class="btn btn-primary" target="_blank" href="{{ b64_vt_link }}" style="font-size: 15px"><i class="fas fa-link"></i> VT Report</a>
|
2018-07-17 12:23:49 +00:00
|
|
|
{% endif %}
|
2019-05-15 15:23:58 +00:00
|
|
|
<button class="btn btn-outline-secondary" onclick="updateVTReport('{{ hash }}')" style="font-size: 15px">
|
|
|
|
<div id="report_vt_b"><i class="fas fa-sync-alt"></i> {{ b64_vt_report }}</div>
|
|
|
|
</button>
|
|
|
|
{% else %}
|
|
|
|
Virus Total submission is disabled
|
|
|
|
{% endif %}
|
|
|
|
|
|
|
|
<a href="{{ url_for('hashDecoded.downloadHash') }}?hash={{hash}}" target="blank" class="float-right" style="font-size: 15px">
|
|
|
|
<button class='btn btn-info'><i class="fas fa-download"></i> Download Decoded file
|
|
|
|
</button>
|
|
|
|
</a>
|
|
|
|
</div>
|
|
|
|
</div>
|
2018-07-17 12:23:49 +00:00
|
|
|
|
2019-05-15 15:23:58 +00:00
|
|
|
<div class="row">
|
|
|
|
<div class="col-xl-10">
|
|
|
|
|
|
|
|
<div class="card mb-3">
|
|
|
|
<div class="card-header">
|
|
|
|
<i class="fas fa-project-diagram"></i> Graph
|
|
|
|
</div>
|
|
|
|
<div class="card-body graph_panel">
|
|
|
|
<div id="graph">
|
2018-07-12 15:07:17 +00:00
|
|
|
</div>
|
2019-05-15 15:23:58 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
2018-07-12 15:07:17 +00:00
|
|
|
|
2019-05-15 15:23:58 +00:00
|
|
|
<div class="col-xl-2">
|
2018-07-20 13:48:56 +00:00
|
|
|
|
2019-05-15 15:23:58 +00:00
|
|
|
<div class="card">
|
|
|
|
<div class="card-header">
|
|
|
|
<i class="fas fa-unlock-alt" aria-hidden="true"></i> Encoding
|
|
|
|
</div>
|
|
|
|
<div class="card-body text-center">
|
|
|
|
{% for encoding in list_hash_decoder %}
|
2019-05-17 15:51:07 +00:00
|
|
|
<button class="btn btn-outline-dark" disabled>
|
|
|
|
{{encoding['encoding']}} <span class="badge badge-dark">{{encoding['nb_seen']}}</span>
|
2019-05-15 15:23:58 +00:00
|
|
|
</button>
|
|
|
|
{% endfor %}
|
|
|
|
</div>
|
|
|
|
</div>
|
2018-07-16 14:45:36 +00:00
|
|
|
|
2019-05-15 15:23:58 +00:00
|
|
|
<div class="card my-3">
|
|
|
|
<div class="card-header">
|
|
|
|
<i class="fas fa-project-diagram"></i> Graph
|
|
|
|
</div>
|
|
|
|
<div class="card-body text-center px-0 py-0">
|
|
|
|
<button class="btn btn-primary my-4" onclick="resize_graph();">
|
|
|
|
<i class="fas fa-sync"></i> Resize Graph
|
|
|
|
</button>
|
2018-07-16 14:45:36 +00:00
|
|
|
|
2019-05-15 15:23:58 +00:00
|
|
|
|
|
|
|
<ul class="list-group">
|
|
|
|
<li class="list-group-item list-group-item-info"><i class="fas fa-info-circle fa-2x"></i></li>
|
|
|
|
<li class="list-group-item text-left">
|
|
|
|
<p>Double click on a node to open Hash/Paste<br><br>
|
|
|
|
<svg height="12" width="12"><g class="nodes"><circle cx="6" cy="6" r="6" fill="orange"></circle></g></svg>
|
|
|
|
Current Hash<br>
|
|
|
|
<svg height="12" width="12"><g class="nodes"><circle cx="6" cy="6" r="6" fill="rgb(141, 211, 199)"></circle></g></svg>
|
|
|
|
Hashes<br>
|
|
|
|
<svg height="12" width="12"><g class="nodes"><circle cx="6" cy="6" r="6" fill="#1f77b4"></circle></g></svg>
|
|
|
|
Pastes
|
|
|
|
</p>
|
|
|
|
</li>
|
|
|
|
<li class="list-group-item list-group-item-info">
|
|
|
|
Hash Types:
|
|
|
|
</li>
|
|
|
|
<li class="list-group-item text-left">
|
|
|
|
<i class="fas fa-file"></i> Application<br>
|
|
|
|
<i class="fas fa-file-video"></i> Audio<br>
|
|
|
|
<i class="fas fa-file-image"></i> Image<br>
|
|
|
|
<i class="fas fa-file-alt"></i> Text<br>
|
|
|
|
<i class="fas fa-sticky-note"></i> Other
|
|
|
|
</li>
|
|
|
|
</ul>
|
2018-07-12 15:07:17 +00:00
|
|
|
</div>
|
2019-05-15 15:23:58 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
2018-07-12 15:07:17 +00:00
|
|
|
|
2019-05-15 15:23:58 +00:00
|
|
|
<div class="card">
|
|
|
|
<div class="card-header">
|
|
|
|
<i class="fas fa-chart-bar"></i> Graph
|
|
|
|
</div>
|
|
|
|
<div class="panel-body ">
|
|
|
|
<div id="graph_line">
|
|
|
|
</div>
|
|
|
|
</div>
|
2018-07-09 15:07:59 +00:00
|
|
|
</div>
|
|
|
|
|
|
|
|
</div>
|
2019-05-15 15:23:58 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<script>
|
|
|
|
var all_graph = {};
|
|
|
|
$(document).ready(function(){
|
|
|
|
$("#page-Decoded").addClass("active");
|
|
|
|
sparklines("sparkline", {{ sparkline_values }})
|
|
|
|
|
|
|
|
all_graph.node_graph = create_graph("{{ url_for('hashDecoded.hash_graph_node_json') }}?hash={{hash}}");
|
|
|
|
all_graph.line_chart = create_line_chart('graph_line', "{{ url_for('hashDecoded.hash_graph_line_json') }}?hash={{hash}}");
|
|
|
|
all_graph.onResize();
|
|
|
|
});
|
|
|
|
|
|
|
|
$(window).on("resize", function() {
|
|
|
|
all_graph.onResize();
|
|
|
|
});
|
|
|
|
|
|
|
|
function toggle_sidebar(){
|
|
|
|
if($('#nav_menu').is(':visible')){
|
|
|
|
$('#nav_menu').hide();
|
|
|
|
$('#side_menu').removeClass('border-right')
|
|
|
|
$('#side_menu').removeClass('col-lg-2')
|
|
|
|
$('#core_content').removeClass('col-lg-10')
|
|
|
|
}else{
|
|
|
|
$('#nav_menu').show();
|
|
|
|
$('#side_menu').addClass('border-right')
|
|
|
|
$('#side_menu').addClass('col-lg-2')
|
|
|
|
$('#core_content').addClass('col-lg-10')
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</script>
|
|
|
|
|
2018-07-09 15:07:59 +00:00
|
|
|
<script>
|
2018-07-17 12:23:49 +00:00
|
|
|
function sendFileToVT(hash) {
|
|
|
|
//send file to vt
|
2018-09-25 14:46:06 +00:00
|
|
|
$.getJSON("{{ url_for('hashDecoded.send_file_to_vt_js') }}?hash="+hash,
|
2018-07-17 12:23:49 +00:00
|
|
|
function(data) {
|
2019-05-15 15:23:58 +00:00
|
|
|
var content = '<a id="submit_vt_b" class="btn btn-primary" target="_blank" href="'+ data['vt_link'] +'"><i class="fas fa-link"> '+ ' VT Report' +'</i></a>';
|
2018-07-17 12:23:49 +00:00
|
|
|
$('#submit_vt_b').remove();
|
|
|
|
$('darkbutton').append(content);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2018-07-09 15:07:59 +00:00
|
|
|
function updateVTReport(hash) {
|
|
|
|
//updateReport
|
2018-09-25 14:46:06 +00:00
|
|
|
$.getJSON("{{ url_for('hashDecoded.update_vt_result') }}?hash="+hash,
|
2018-07-09 15:07:59 +00:00
|
|
|
function(data) {
|
2019-05-15 15:23:58 +00:00
|
|
|
var content = '<i class="fas fa-sync-alt"></i> ' +data['report_vt'];
|
2018-07-17 12:23:49 +00:00
|
|
|
$( "#report_vt_b" ).html(content);
|
2018-07-09 15:07:59 +00:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2018-07-12 15:07:17 +00:00
|
|
|
</script>
|
|
|
|
<script>
|
2018-07-27 09:27:41 +00:00
|
|
|
function resize_graph() {
|
|
|
|
zoom.translateTo(svg_node, 200, 200);
|
|
|
|
zoom.scaleTo(svg_node, 2);
|
2018-07-12 15:07:17 +00:00
|
|
|
}
|
|
|
|
|
2018-07-09 15:07:59 +00:00
|
|
|
</script>
|
|
|
|
<script>
|
|
|
|
//var data = [6,3,3,2,5,3,9];
|
|
|
|
|
|
|
|
// a sparklines plot
|
|
|
|
function sparklines(id, points) {
|
2018-07-12 15:07:17 +00:00
|
|
|
var width_spark = 100, height_spark = 60;
|
2018-07-09 15:07:59 +00:00
|
|
|
|
|
|
|
var data = []
|
|
|
|
for (i = 0; i < points.length; i++) {
|
|
|
|
data[i] = {
|
|
|
|
'x': i,
|
|
|
|
'y': +points[i]
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
var x = d3.scaleLinear()
|
2018-07-12 15:07:17 +00:00
|
|
|
.range([0, width_spark - 10])
|
2018-07-09 15:07:59 +00:00
|
|
|
.domain([0,5]);
|
|
|
|
|
|
|
|
var y = d3.scaleLinear()
|
2018-07-12 15:07:17 +00:00
|
|
|
.range([height_spark, 0])
|
2018-07-09 15:07:59 +00:00
|
|
|
.domain([0,10]);
|
|
|
|
|
|
|
|
var line = d3.line()
|
|
|
|
.x(function(d) {return x(d.x)})
|
|
|
|
.y(function(d) {return y(d.y)});
|
|
|
|
|
|
|
|
d3.select("#"+id).append('svg')
|
2018-07-12 15:07:17 +00:00
|
|
|
.attr('width', width_spark)
|
|
|
|
.attr('height', height_spark)
|
2018-07-09 15:07:59 +00:00
|
|
|
.append('path')
|
2018-07-12 15:07:17 +00:00
|
|
|
.attr('class','line_sparkline')
|
2018-07-09 15:07:59 +00:00
|
|
|
.datum(data)
|
|
|
|
.attr('d', line);
|
|
|
|
|
|
|
|
}
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<script>
|
2018-07-12 15:07:17 +00:00
|
|
|
var width = 400,
|
|
|
|
height = 400;
|
|
|
|
|
|
|
|
var link;
|
|
|
|
|
2018-07-27 09:27:41 +00:00
|
|
|
var zoom = d3.zoom()
|
|
|
|
.scaleExtent([.2, 10])
|
|
|
|
.on("zoom", zoomed);
|
|
|
|
|
|
|
|
//var transform = d3.zoomIdentity;
|
2018-07-12 15:07:17 +00:00
|
|
|
|
|
|
|
var color = d3.scaleOrdinal(d3.schemeCategory10);
|
|
|
|
|
|
|
|
var div = d3.select("body").append("div")
|
|
|
|
.attr("class", "tooltip")
|
|
|
|
.style("opacity", 0);
|
|
|
|
|
|
|
|
var simulation = d3.forceSimulation()
|
|
|
|
.force("link", d3.forceLink().id(function(d) { return d.id; }))
|
|
|
|
.force("charge", d3.forceManyBody())
|
|
|
|
.force("center", d3.forceCenter(width / 2, height / 2));
|
|
|
|
//.on("tick", ticked);
|
|
|
|
|
|
|
|
var svg_node = d3.select("#graph").append("svg")
|
|
|
|
.attr("id", "graph_div")
|
|
|
|
.attr("width", width)
|
|
|
|
.attr("height", height)
|
|
|
|
.call(d3.zoom().scaleExtent([1, 8]).on("zoom", zoomed))
|
|
|
|
.on("dblclick.zoom", null)
|
|
|
|
|
2018-07-27 09:27:41 +00:00
|
|
|
var container_graph = svg_node.append("g");
|
|
|
|
//.attr("transform", "translate(40,0)")
|
|
|
|
//.attr("transform", "scale(2)");
|
2018-07-12 15:07:17 +00:00
|
|
|
|
|
|
|
function create_graph(url){
|
|
|
|
|
|
|
|
d3.json(url)
|
|
|
|
.then(function(data){
|
|
|
|
|
|
|
|
link = container_graph.append("g")
|
|
|
|
.selectAll("line")
|
|
|
|
.data(data.links)
|
|
|
|
.enter().append("line")
|
|
|
|
.attr("class", "link");
|
|
|
|
//.attr("stroke-width", function(d) { return Math.sqrt(d.value); })
|
|
|
|
|
|
|
|
var node = container_graph.selectAll(".node")
|
|
|
|
.data(data.nodes)
|
|
|
|
.enter().append("g")
|
|
|
|
.attr("class", "nodes")
|
|
|
|
.on("dblclick", doubleclick)
|
|
|
|
.on("click", click)
|
|
|
|
.on("mouseover", mouseovered)
|
|
|
|
.on("mouseout", mouseouted)
|
|
|
|
.call(d3.drag()
|
|
|
|
.on("start", drag_start)
|
|
|
|
.on("drag", dragged)
|
|
|
|
.on("end", drag_end));
|
|
|
|
|
|
|
|
|
|
|
|
node.append("circle")
|
|
|
|
.attr("r", function(d) {
|
|
|
|
return (d.hash) ? 6 : 5; })
|
|
|
|
.attr("fill", function(d) {
|
2018-07-13 09:54:14 +00:00
|
|
|
if(!d.hash){ return color(d.group);}
|
|
|
|
if(d.group == 1){ return "orange";}
|
|
|
|
return "rgb(141, 211, 199)"; });
|
2018-07-12 15:07:17 +00:00
|
|
|
|
|
|
|
node.append('text')
|
|
|
|
.attr('text-anchor', 'middle')
|
|
|
|
.attr('dominant-baseline', 'central')
|
2019-05-17 15:51:07 +00:00
|
|
|
.attr("class", "graph_node_icon fa")
|
2018-07-13 09:54:14 +00:00
|
|
|
.attr('font-size', '8px' )
|
|
|
|
.attr('pointer-events', 'none')
|
2018-07-12 15:07:17 +00:00
|
|
|
.text(function(d) {
|
|
|
|
if(d.hash){
|
|
|
|
return d.icon
|
|
|
|
} });
|
2018-07-09 15:07:59 +00:00
|
|
|
|
2018-07-27 09:27:41 +00:00
|
|
|
zoom.translateTo(svg_node, 200, 200);
|
|
|
|
zoom.scaleTo(svg_node, 2);
|
|
|
|
|
2018-07-12 15:07:17 +00:00
|
|
|
/* node.append("text")
|
|
|
|
.attr("dy", 3)
|
|
|
|
.attr("dx", 7)
|
|
|
|
.attr("class", "graph_text_node")
|
|
|
|
//.style("text-anchor", function(d) { return d.children ? "end" : "start"; })
|
|
|
|
.text(function(d) { return d.id; });*/
|
|
|
|
|
|
|
|
simulation
|
|
|
|
.nodes(data.nodes)
|
|
|
|
.on("tick", ticked);
|
|
|
|
|
|
|
|
simulation.force("link")
|
|
|
|
.links(data.links);
|
|
|
|
|
|
|
|
function ticked() {
|
|
|
|
link
|
|
|
|
.attr("x1", function(d) { return d.source.x; })
|
|
|
|
.attr("y1", function(d) { return d.source.y; })
|
|
|
|
.attr("x2", function(d) { return d.target.x; })
|
|
|
|
.attr("y2", function(d) { return d.target.y; });
|
|
|
|
|
|
|
|
/*node
|
|
|
|
.attr("cx", function(d) { return d.x; })
|
|
|
|
.attr("cy", function(d) { return d.y; });*/
|
|
|
|
node.attr("transform", function(d) { return "translate(" + d.x + "," + d.y + ")"; });
|
|
|
|
}
|
|
|
|
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
function zoomed() {
|
2018-07-27 09:27:41 +00:00
|
|
|
container_graph.attr("transform", d3.event.transform);
|
2018-07-12 15:07:17 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
function doubleclick (d) {
|
|
|
|
window.open(d.url, '_blank');
|
|
|
|
}
|
|
|
|
|
|
|
|
function click (d) {
|
|
|
|
console.log('clicked')
|
|
|
|
}
|
|
|
|
|
|
|
|
function drag_start(d) {
|
|
|
|
if (!d3.event.active) simulation.alphaTarget(0.3).restart();
|
|
|
|
d.fx = d.x;
|
|
|
|
d.fy = d.y;
|
|
|
|
}
|
|
|
|
|
|
|
|
function dragged(d) {
|
|
|
|
d.fx = d3.event.x;
|
|
|
|
d.fy = d3.event.y;
|
|
|
|
}
|
|
|
|
|
|
|
|
function drag_end(d) {
|
|
|
|
if (!d3.event.active) simulation.alphaTarget(0);
|
|
|
|
d.fx = d.x;
|
|
|
|
d.fy = d.y;
|
|
|
|
}
|
|
|
|
|
|
|
|
function mouseovered(d) {
|
|
|
|
|
|
|
|
// tooltip
|
|
|
|
var content;
|
|
|
|
|
|
|
|
if(d.hash == true){
|
2019-05-17 15:51:07 +00:00
|
|
|
content = "<b><span id='tooltip-id-name'></span></b><br/>"+
|
2018-07-12 15:07:17 +00:00
|
|
|
"<br/>"+
|
2019-05-17 15:51:07 +00:00
|
|
|
"<i>First seen</i>: <span id='tooltip-id-first_seen'></span><br/>"+
|
|
|
|
"<i>Last seen</i>: <span id='tooltip-id-last_seen'></span><br/>"+
|
|
|
|
"<i>nb_seen</i>: <span id='tooltip-id-nb_seen'></span>";
|
|
|
|
|
|
|
|
div.transition()
|
|
|
|
.duration(200)
|
|
|
|
.style("opacity", .9);
|
|
|
|
div.html(content)
|
|
|
|
.style("left", (d3.event.pageX) + "px")
|
|
|
|
.style("top", (d3.event.pageY - 28) + "px");
|
|
|
|
|
|
|
|
$("#tooltip-id-name").text(d.id);
|
|
|
|
$("#tooltip-id-first_seen").text(d.first_seen);
|
|
|
|
$("#tooltip-id-last_seen").text(d.last_seen);
|
|
|
|
$("#tooltip-id-nb_seen").text(d.nb_seen_in_paste);
|
|
|
|
|
2018-07-12 15:07:17 +00:00
|
|
|
} else {
|
2019-05-17 15:51:07 +00:00
|
|
|
content = "<b><span id='tooltip-id-name'></span></b><br/>";
|
2018-07-12 15:07:17 +00:00
|
|
|
|
|
|
|
div.transition()
|
2019-05-17 15:51:07 +00:00
|
|
|
.duration(200)
|
|
|
|
.style("opacity", .9);
|
2018-07-12 15:07:17 +00:00
|
|
|
div.html(content)
|
2019-05-17 15:51:07 +00:00
|
|
|
.style("left", (d3.event.pageX) + "px")
|
|
|
|
.style("top", (d3.event.pageY - 28) + "px");
|
|
|
|
|
|
|
|
$("#tooltip-id-name").text(d.id);
|
|
|
|
}
|
2018-07-12 15:07:17 +00:00
|
|
|
|
|
|
|
//links
|
|
|
|
/*link.style("stroke-opacity", function(o) {
|
|
|
|
return o.source === d || o.target === d ? 1 : opacity;
|
|
|
|
});*/
|
|
|
|
link.style("stroke", function(o){
|
|
|
|
return o.source === d || o.target === d ? "#666" : "#ddd";
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
function mouseouted() {
|
|
|
|
div.transition()
|
|
|
|
.duration(500)
|
|
|
|
.style("opacity", 0);
|
|
|
|
|
|
|
|
link.style("stroke", "#666");
|
|
|
|
}
|
|
|
|
|
|
|
|
all_graph.onResize = function () {
|
|
|
|
var aspect = 1000 / 500, all_graph = $("#graph_div");
|
|
|
|
var targetWidth = all_graph.parent().width();
|
|
|
|
all_graph.attr("width", targetWidth);
|
|
|
|
all_graph.attr("height", targetWidth / aspect);
|
|
|
|
}
|
2018-07-09 15:07:59 +00:00
|
|
|
|
2018-07-12 15:07:17 +00:00
|
|
|
window.all_graph = all_graph;
|
2018-07-16 14:45:36 +00:00
|
|
|
</script>
|
|
|
|
|
|
|
|
<script>
|
|
|
|
function create_line_chart(id, url){
|
|
|
|
|
|
|
|
var width = 900;
|
|
|
|
var height = Math.round(width / 4);
|
|
|
|
|
|
|
|
var margin = {top: 20, right: 55, bottom: 50, left: 40};
|
|
|
|
|
|
|
|
var x = d3.scaleTime().range([0, width]);
|
|
|
|
var y = d3.scaleLinear().rangeRound([height, 0]);
|
|
|
|
|
|
|
|
var xAxis = d3.axisBottom(x);
|
|
|
|
var yAxis = d3.axisLeft(y);
|
|
|
|
|
|
|
|
var parseTime = d3.timeParse("%Y-%m-%d");
|
|
|
|
|
|
|
|
var line = d3.line()
|
|
|
|
.x(function(d) {
|
|
|
|
return x(d.date);
|
|
|
|
}).y(function(d) {
|
|
|
|
return y(d.value);
|
|
|
|
});
|
|
|
|
|
|
|
|
var svg_line = d3.select('#'+id).append('svg')
|
|
|
|
.attr("id", "graph_div")
|
|
|
|
.attr("width", width + margin.left + margin.right)
|
|
|
|
.attr("height", height + margin.top + margin.bottom)
|
|
|
|
.append('g')
|
|
|
|
.attr('transform', "translate("+ margin.left +","+ margin.top +")");
|
|
|
|
|
|
|
|
var div = d3.select('body').append('div')
|
|
|
|
.attr('class', 'tooltip')
|
|
|
|
.style('opacity', 0);
|
|
|
|
|
|
|
|
//add div tooltip
|
|
|
|
|
|
|
|
d3.json(url)
|
|
|
|
.then(function(data){
|
|
|
|
|
|
|
|
data.forEach(function(d) {
|
2018-07-17 12:23:49 +00:00
|
|
|
d.date_label = d.date;
|
2018-07-16 14:45:36 +00:00
|
|
|
d.date = parseTime(d.date);
|
|
|
|
d.value = +d.value;
|
|
|
|
});
|
|
|
|
|
|
|
|
// fit the data
|
|
|
|
x.domain(d3.extent(data, function(d) { return d.date; }));
|
|
|
|
//x.domain(data.map(function (d) { return d.date; })); //E
|
|
|
|
y.domain([0, d3.max(data, function(d){ return d.value ; })]);
|
|
|
|
|
|
|
|
//line
|
|
|
|
svg_line.append("path")
|
|
|
|
.data([data])
|
|
|
|
.attr("class", "line_graph")
|
|
|
|
.attr("d", line);
|
|
|
|
|
|
|
|
// add X axis
|
|
|
|
svg_line.append("g")
|
|
|
|
.attr("transform", "translate(0," + height + ")")
|
|
|
|
.call(d3.axisBottom(x))
|
|
|
|
.selectAll("text")
|
|
|
|
.style("text-anchor", "end")
|
|
|
|
.attr("transform", "rotate(-45)" );
|
|
|
|
|
|
|
|
// Add the Y Axis
|
|
|
|
svg_line.append("g")
|
|
|
|
.call(d3.axisLeft(y));
|
|
|
|
|
2018-07-17 12:23:49 +00:00
|
|
|
//add a dot circle
|
2018-07-16 14:45:36 +00:00
|
|
|
svg_line.selectAll('dot')
|
|
|
|
.data(data).enter()
|
|
|
|
.append('circle')
|
|
|
|
.attr('r', 2)
|
|
|
|
.attr('cx', function(d) { return x(d.date); })
|
|
|
|
.attr('cy', function(d) { return y(d.value); })
|
|
|
|
|
|
|
|
.on('mouseover', function(d) {
|
|
|
|
div.transition().style('opacity', .9);
|
2018-07-17 12:23:49 +00:00
|
|
|
div.html('' + d.date_label+ '<br/>' + d.value).style('left', (d3.event.pageX) + 'px')
|
|
|
|
.style("left", (d3.event.pageX) + "px")
|
|
|
|
.style("top", (d3.event.pageY - 28) + "px");
|
2018-07-16 14:45:36 +00:00
|
|
|
})
|
|
|
|
.on('mouseout', function(d)
|
|
|
|
{
|
|
|
|
div.transition().style('opacity', 0);
|
|
|
|
});
|
|
|
|
|
|
|
|
});
|
|
|
|
}
|
2018-07-09 15:07:59 +00:00
|
|
|
</script>
|
|
|
|
|
|
|
|
</body>
|
|
|
|
|
|
|
|
</html>
|