2018-06-29 08:02:29 +00:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html>
|
|
|
|
|
|
|
|
<head>
|
|
|
|
<meta charset="utf-8">
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
|
|
|
|
|
|
<title>Analysis Information Leak framework Dashboard</title>
|
|
|
|
|
|
|
|
<!-- Core CSS -->
|
|
|
|
<link href="{{ url_for('static', filename='css/bootstrap.min.css') }}" rel="stylesheet">
|
|
|
|
<link href="{{ url_for('static', filename='font-awesome/css/font-awesome.css') }}" rel="stylesheet">
|
|
|
|
<link href="{{ url_for('static', filename='css/sb-admin-2.css') }}" rel="stylesheet">
|
|
|
|
<link href="{{ url_for('static', filename='css/dataTables.bootstrap.css') }}" rel="stylesheet" type="text/css" />
|
2018-06-29 13:29:02 +00:00
|
|
|
<link href="{{ url_for('static', filename='css/daterangepicker.min.css') }}" rel="stylesheet" type="text/css" />
|
2018-06-29 08:02:29 +00:00
|
|
|
<!-- JS -->
|
|
|
|
<script language="javascript" src="{{ url_for('static', filename='js/jquery.js')}}"></script>
|
|
|
|
<script src="{{ url_for('static', filename='js/bootstrap.min.js') }}"></script>
|
|
|
|
<script src="{{ url_for('static', filename='js/jquery.dataTables.min.js') }}"></script>
|
|
|
|
<script src="{{ url_for('static', filename='js/dataTables.bootstrap.js') }}"></script>
|
|
|
|
<script src="{{ url_for('static', filename='js/jquery.flot.js') }}"></script>
|
|
|
|
<script src="{{ url_for('static', filename='js/jquery.flot.time.js') }}"></script>
|
|
|
|
<script src="{{ url_for('static', filename='js/jquery.flot.stack.js') }}"></script>
|
2018-06-29 13:29:02 +00:00
|
|
|
<script language="javascript" src="{{ url_for('static', filename='js/moment.min.js') }}"></script>
|
|
|
|
<script language="javascript" src="{{ url_for('static', filename='js/jquery.daterangepicker.min.js') }}"></script>
|
2018-06-29 13:58:24 +00:00
|
|
|
<script language="javascript" src="{{ url_for('static', filename='js/d3.min.js') }}"></script>
|
2018-06-29 08:02:29 +00:00
|
|
|
<style>
|
|
|
|
.red_table thead{
|
|
|
|
background: #d91f2d;
|
|
|
|
color: #fff;
|
|
|
|
}
|
|
|
|
.line {
|
|
|
|
fill: none;
|
|
|
|
stroke: #000;
|
|
|
|
stroke-width: 2.0px;
|
|
|
|
}
|
|
|
|
.bar {
|
|
|
|
fill: steelblue;
|
|
|
|
}
|
|
|
|
.bar:hover{
|
|
|
|
fill: brown;
|
2018-07-09 09:47:04 +00:00
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
.bar_stack:hover{
|
|
|
|
cursor: pointer;
|
2018-06-29 08:02:29 +00:00
|
|
|
}
|
2018-07-06 14:54:43 +00:00
|
|
|
.svgText {
|
|
|
|
pointer-events: none;
|
|
|
|
}
|
2018-06-29 08:02:29 +00:00
|
|
|
</style>
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
|
|
|
|
{% include 'navbar.html' %}
|
|
|
|
|
|
|
|
<div id="page-wrapper">
|
|
|
|
<div class="row">
|
|
|
|
<div class="col-lg-12">
|
|
|
|
<h1 class="page-header" data-page="page-termsfrequency" >Base64 Files</h1>
|
|
|
|
<div>
|
|
|
|
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<!-- /.col-lg-12 -->
|
|
|
|
|
2018-06-29 13:52:13 +00:00
|
|
|
<div class="row">
|
2018-07-05 11:58:40 +00:00
|
|
|
<div class="col-md-10">
|
2018-06-29 13:52:13 +00:00
|
|
|
<div id="barchart_type">
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
2018-07-05 11:58:40 +00:00
|
|
|
<div class="col-md-2">
|
|
|
|
<div class="panel panel-info" style="text-align:center;">
|
|
|
|
<div class="panel-heading">
|
|
|
|
Select a date range :
|
|
|
|
<form action="/base64Decoded/all_base64_search" id="base64_selector_form" method='post'>
|
|
|
|
<div class="input-group">
|
|
|
|
<span class="input-group-addon"><i class="fa fa-calendar fa" aria-hidden="true"></i></span>
|
|
|
|
<input class="form-control" id="date-range-from" placeholder="yyyy-mm-dd" value="{{ date_from }}" name="date_from">
|
|
|
|
</div>
|
|
|
|
<div class="input-group">
|
|
|
|
<span class="input-group-addon"><i class="fa fa-calendar fa" aria-hidden="true"></i></span>
|
|
|
|
<input class="form-control" id="date-range-to" placeholder="yyyy-mm-dd" value="{{ date_to }}" name="date_to">
|
|
|
|
</div>
|
|
|
|
File Type :
|
|
|
|
<select class="form-control" name="type" style="width=100%;">
|
|
|
|
<option></option>
|
|
|
|
{% for typ in l_type %}
|
|
|
|
{% if type|string() == typ|string() %}
|
|
|
|
<option selected>{{ typ }}</option>
|
|
|
|
{% else %}
|
|
|
|
<option>{{ typ }}</option>
|
|
|
|
{% endif %}
|
|
|
|
{% endfor %}
|
|
|
|
</select>
|
|
|
|
<br>
|
|
|
|
<button class="btn btn-primary" style="text-align:center;">
|
|
|
|
<i class="fa fa-files-o"></i> Base64
|
|
|
|
</button>
|
|
|
|
<form>
|
|
|
|
</div>
|
|
|
|
</div>
|
2018-06-29 13:52:13 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
2018-06-29 13:29:02 +00:00
|
|
|
|
|
|
|
<!-- /#page-wrapper -->
|
|
|
|
{% if l_64|length != 0 %}
|
2018-07-09 09:47:04 +00:00
|
|
|
{% if date_from|string == date_to|string %}
|
|
|
|
<h3> {{ date_from }} Base64 files: </h3>
|
|
|
|
{% else %}
|
|
|
|
<h3> {{ date_from }} to {{ date_to }} Base64 files: </h3>
|
|
|
|
{% endif %}
|
2018-06-29 13:29:02 +00:00
|
|
|
<table id="tableb64" class="red_table table table-striped table-bordered">
|
|
|
|
<thead>
|
|
|
|
<tr>
|
|
|
|
<th>estimated type</th>
|
|
|
|
<th>hash</th>
|
|
|
|
<th>first seen</th>
|
|
|
|
<th>last seen</th>
|
|
|
|
<th>nb paste</th>
|
|
|
|
<th>size</th>
|
|
|
|
<th>Virus Total</th>
|
|
|
|
<th>Test</th>
|
|
|
|
</tr>
|
|
|
|
</thead>
|
|
|
|
<tbody>
|
|
|
|
{% for b64 in l_64 %}
|
|
|
|
<tr>
|
|
|
|
<td><i class="fa {{ b64[0] }}"></i> {{ b64[1] }}</td>
|
|
|
|
<td>{{ b64[2] }}</td>
|
|
|
|
<td>{{ b64[5] }}</td>
|
|
|
|
<td>{{ b64[6] }}</td>
|
|
|
|
<td>{{ b64[3] }}</td>
|
|
|
|
<td>{{ b64[4] }}</td>
|
|
|
|
<td style="text-align:center;max-width:150px;">
|
|
|
|
{% if vt_enabled %}
|
|
|
|
{% if not b64[7] %}
|
|
|
|
<form action="/base64Decoded/send_file_to_vt" id="vt_submit" method='post'>
|
|
|
|
<input type="hidden" id="hash" name="hash" value="b64[2]">
|
|
|
|
<button class="btn btn-primary">
|
|
|
|
<i class="fa fa-paper-plane"></i> Send this file to VT
|
|
|
|
</button>
|
|
|
|
</form>
|
|
|
|
{% else %}
|
|
|
|
<a class="btn btn-default" target="_blank" href="{{ b64[8] }}"><i class="fa fa-link"> VT scan reports</i></a>
|
|
|
|
{% endif %}
|
|
|
|
<button class="btn btn-default" onclick="updateVTReport('{{ b64[2] }}')">
|
|
|
|
<div id="report_vt_{{ b64[2] }}"><span class="glyphicon glyphicon-refresh"></span> {{ b64[8] }}</div>
|
|
|
|
</button>
|
2018-06-29 08:02:29 +00:00
|
|
|
{% else %}
|
2018-06-29 13:29:02 +00:00
|
|
|
Virus Total submission is disabled
|
2018-06-29 08:02:29 +00:00
|
|
|
{% endif %}
|
2018-06-29 13:29:02 +00:00
|
|
|
</td>
|
|
|
|
<td id="sparklines_{{ b64[2] }}" style="text-align:center;">
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
{% endfor %}
|
|
|
|
</tbody>
|
|
|
|
</table>
|
|
|
|
{% else %}
|
2018-07-05 11:58:40 +00:00
|
|
|
<h3>{{ date_from }} to {{ date_to }}, No base64</h3>
|
2018-06-29 13:29:02 +00:00
|
|
|
{% endif %}
|
|
|
|
</div>
|
2018-06-29 08:02:29 +00:00
|
|
|
|
|
|
|
</div>
|
|
|
|
<!-- /.row -->
|
|
|
|
|
|
|
|
<script>
|
2018-07-09 09:47:04 +00:00
|
|
|
var chart = {};
|
2018-06-29 08:02:29 +00:00
|
|
|
$(document).ready(function(){
|
|
|
|
activePage = "page-base64Decoded"
|
|
|
|
$("#"+activePage).addClass("active");
|
|
|
|
|
2018-06-29 13:29:02 +00:00
|
|
|
$('#date-range-from').dateRangePicker({
|
|
|
|
separator : ' to ',
|
|
|
|
getValue: function()
|
|
|
|
{
|
|
|
|
if ($('#date-range-from').val() && $('#date-range-to').val() )
|
|
|
|
return $('#date-range-from').val() + ' to ' + $('#date-range-to').val();
|
|
|
|
else
|
|
|
|
return '';
|
|
|
|
},
|
|
|
|
setValue: function(s,s1,s2)
|
|
|
|
{
|
|
|
|
$('#date-range-from').val(s1);
|
|
|
|
$('#date-range-to').val(s2);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
$('#date-range-to').dateRangePicker({
|
|
|
|
separator : ' to ',
|
|
|
|
getValue: function()
|
|
|
|
{
|
|
|
|
if ($('#date-range-from').val() && $('#date-range-to').val() )
|
|
|
|
return $('#date-range-from').val() + ' to ' + $('#date-range-to').val();
|
|
|
|
else
|
|
|
|
return '';
|
|
|
|
},
|
|
|
|
setValue: function(s,s1,s2)
|
|
|
|
{
|
|
|
|
$('#date-range-from').val(s1);
|
|
|
|
$('#date-range-to').val(s2);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2018-06-29 08:02:29 +00:00
|
|
|
$('#tableb64').DataTable({
|
|
|
|
"aLengthMenu": [[5, 10, 15, -1], [5, 10, 15, "All"]],
|
|
|
|
"iDisplayLength": 10,
|
|
|
|
"order": [[ 3, "desc" ]]
|
|
|
|
});
|
|
|
|
|
|
|
|
{% if type %}
|
2018-07-09 09:47:04 +00:00
|
|
|
chart.stackBarChart =barchart_type('/base64Decoded/hash_by_type_json?type={{type}}', '#barchart_type');
|
|
|
|
{% elif daily_type_chart %}
|
|
|
|
chart.stackBarChart =barchart_type('/base64Decoded/daily_type_json?date={{daily_date}}', '#barchart_type');
|
|
|
|
{% else %}
|
|
|
|
chart.stackBarChart = barchart_type_stack('url', 'id')
|
|
|
|
chart.onResize();
|
2018-07-06 14:54:43 +00:00
|
|
|
{% endif %}
|
2018-07-09 09:47:04 +00:00
|
|
|
|
|
|
|
chart.onResize();
|
|
|
|
$(window).on("resize", function() {
|
|
|
|
chart.onResize();
|
|
|
|
});
|
2018-06-29 08:02:29 +00:00
|
|
|
});
|
|
|
|
</script>
|
|
|
|
<script>
|
|
|
|
function updateVTReport(hash) {
|
|
|
|
//updateReport
|
|
|
|
$.getJSON('/base64Decoded/update_vt_result?hash='+hash,
|
|
|
|
function(data) {
|
|
|
|
content = '<span class="glyphicon glyphicon-refresh"></span> ' +data['report_vt']
|
|
|
|
$( "#report_vt_"+hash ).html(content);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
</script>
|
|
|
|
<script>
|
|
|
|
//var data = [6,3,3,2,5,3,9];
|
|
|
|
|
|
|
|
// a sparklines plot
|
|
|
|
function sparklines(id, points) {
|
|
|
|
var width = 100, height = 60;
|
|
|
|
|
|
|
|
var data = []
|
|
|
|
for (i = 0; i < points.length; i++) {
|
|
|
|
data[i] = {
|
|
|
|
'x': i,
|
|
|
|
'y': +points[i]
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
var x = d3.scaleLinear()
|
|
|
|
.range([0, width - 10])
|
|
|
|
.domain([0,5]);
|
|
|
|
|
|
|
|
var y = d3.scaleLinear()
|
|
|
|
.range([height, 0])
|
|
|
|
.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')
|
|
|
|
.attr('width', width)
|
|
|
|
.attr('height', height)
|
|
|
|
.append('path')
|
|
|
|
.attr('class','line')
|
|
|
|
.datum(data)
|
|
|
|
.attr('d', line);
|
|
|
|
|
|
|
|
}
|
|
|
|
</script>
|
|
|
|
<script>
|
|
|
|
{% for b64 in l_64 %}
|
|
|
|
sparklines("sparklines_{{ b64[2] }}", {{ b64[9] }})
|
|
|
|
{% endfor %}
|
|
|
|
</script>
|
|
|
|
|
2018-07-06 14:54:43 +00:00
|
|
|
<script>
|
|
|
|
var margin = {top: 20, right: 55, bottom: 30, left: 40},
|
|
|
|
width = 1000 - margin.left - margin.right,
|
|
|
|
height = 500 - margin.top - margin.bottom;
|
|
|
|
var x = d3.scaleBand().rangeRound([0, width]).padding(0.1);
|
|
|
|
|
|
|
|
var y = d3.scaleLinear().rangeRound([height, 0]);
|
|
|
|
|
|
|
|
var xAxis = d3.axisBottom(x);
|
|
|
|
|
|
|
|
var yAxis = d3.axisLeft(y);
|
|
|
|
|
|
|
|
var color = d3.scaleOrdinal(d3.schemeSet3);
|
|
|
|
|
|
|
|
var svg = d3.select("#barchart_type").append("svg")
|
|
|
|
.attr("id", "thesvg")
|
|
|
|
.attr("viewBox", "0 0 1000 500")
|
|
|
|
.attr("width", width + margin.left + margin.right)
|
|
|
|
.attr("height", height + margin.top + margin.bottom)
|
|
|
|
.append("g")
|
|
|
|
.attr("transform", "translate(" + margin.left + "," + margin.top + ")");
|
|
|
|
|
2018-07-09 09:47:04 +00:00
|
|
|
function barchart_type_stack(url, id) {
|
2018-07-06 14:54:43 +00:00
|
|
|
|
|
|
|
d3.json("/base64Decoded/range_type_json")
|
|
|
|
.then(function(data){
|
|
|
|
|
|
|
|
var labelVar = 'date'; //A
|
|
|
|
var varNames = d3.keys(data[0])
|
|
|
|
.filter(function (key) { return key !== labelVar;}); //B
|
|
|
|
|
|
|
|
data.forEach(function (d) { //D
|
|
|
|
var y0 = 0;
|
|
|
|
d.mapping = varNames.map(function (name) {
|
|
|
|
return {
|
|
|
|
name: name,
|
|
|
|
label: d[labelVar],
|
|
|
|
y0: y0,
|
|
|
|
y1: y0 += +d[name]
|
|
|
|
};
|
|
|
|
});
|
|
|
|
d.total = d.mapping[d.mapping.length - 1].y1;
|
|
|
|
});
|
|
|
|
|
2018-07-09 09:47:04 +00:00
|
|
|
x.domain(data.map(function (d) { return (d.date); })); //E
|
2018-07-06 14:54:43 +00:00
|
|
|
y.domain([0, d3.max(data, function (d) { return d.total; })]);
|
|
|
|
|
|
|
|
svg.append("g")
|
|
|
|
.attr("class", "x axis")
|
|
|
|
.attr("transform", "translate(0," + height + ")")
|
|
|
|
.call(xAxis)
|
|
|
|
.selectAll("text")
|
2018-07-09 09:47:04 +00:00
|
|
|
.attr("class", "bar")
|
|
|
|
.on("click", function (d) { window.location.href = "/base64Decoded/"+'?date_from='+d+'&date_to='+d })
|
2018-07-06 14:54:43 +00:00
|
|
|
.style("text-anchor", "end")
|
|
|
|
.attr("transform", "rotate(-45)" );
|
|
|
|
|
|
|
|
svg.append("g")
|
|
|
|
.attr("class", "y axis")
|
|
|
|
.call(yAxis)
|
|
|
|
.append("text")
|
|
|
|
.attr("transform", "rotate(-90)")
|
|
|
|
.attr("y", 6)
|
|
|
|
.attr("dy", ".71em")
|
|
|
|
.style("text-anchor", "end");
|
|
|
|
|
|
|
|
var selection = svg.selectAll(".series")
|
|
|
|
.data(data)
|
|
|
|
.enter().append("g")
|
|
|
|
.attr("class", "series")
|
2018-07-09 09:47:04 +00:00
|
|
|
.attr("transform", function (d) { return "translate(" + x((d.date)) + ",0)"; });
|
2018-07-06 14:54:43 +00:00
|
|
|
|
|
|
|
selection.selectAll("rect")
|
|
|
|
.data(function (d) { return d.mapping; })
|
|
|
|
.enter().append("rect")
|
|
|
|
.attr("class", "bar_stack")
|
|
|
|
.attr("width", x.bandwidth())
|
|
|
|
.attr("y", function (d) { return y(d.y1); })
|
|
|
|
.attr("height", function (d) { return y(d.y0) - y(d.y1); })
|
|
|
|
.style("fill", function (d) { return color(d.name); })
|
|
|
|
.style("stroke", "grey")
|
|
|
|
.on("mouseover", function (d) { showPopover.call(this, d); })
|
|
|
|
.on("mouseout", function (d) { removePopovers(); })
|
|
|
|
.on("click", function(d){ window.location.href = "/base64Decoded/" +'?type='+ d.name +'&date_from='+d.label+'&date_to='+d.label; });
|
|
|
|
|
2018-07-09 09:47:04 +00:00
|
|
|
data.forEach(function(d) {
|
|
|
|
if(d.total != 0){
|
|
|
|
svg.append("text")
|
|
|
|
.attr("class", "bar")
|
|
|
|
.attr("dy", "-.35em")
|
|
|
|
//.on("click", (window.location.href = "/base64Decoded/"+'?date_from='+d.date) )
|
|
|
|
.attr('x', x(d.date) + x.bandwidth()/2)
|
|
|
|
.attr('y', y(d.total))
|
|
|
|
.on("click", function () {window.location.href = "/base64Decoded/"+'?date_from='+d.date+'&date_to='+d.date })
|
|
|
|
.style("text-anchor", "middle")
|
|
|
|
.text(d.total);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2018-07-06 14:54:43 +00:00
|
|
|
drawLegend(varNames);
|
|
|
|
});
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
function drawLegend (varNames) {
|
|
|
|
var legend = svg.selectAll(".legend")
|
|
|
|
.data(varNames.slice().reverse())
|
|
|
|
.enter().append("g")
|
|
|
|
.attr("class", "legend")
|
|
|
|
.attr("transform", function (d, i) { return "translate(0," + i * 20 + ")"; });
|
|
|
|
|
|
|
|
legend.append("rect")
|
|
|
|
.attr("x", 152)
|
|
|
|
.attr("width", 10)
|
|
|
|
.attr("height", 10)
|
|
|
|
.style("fill", color)
|
|
|
|
.style("stroke", "grey");
|
|
|
|
|
|
|
|
legend.append("text")
|
|
|
|
.attr("class", "svgText")
|
|
|
|
.attr("x", 150)
|
|
|
|
.attr("y", 6)
|
|
|
|
.attr("dy", ".35em")
|
|
|
|
.style("text-anchor", "end")
|
|
|
|
.text(function (d) { return d; });
|
|
|
|
}
|
|
|
|
|
|
|
|
function removePopovers () {
|
|
|
|
$('.popover').each(function() {
|
|
|
|
$(this).remove();
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
function showPopover (d) {
|
|
|
|
$(this).popover({
|
|
|
|
title: d.name,
|
|
|
|
placement: 'auto top',
|
|
|
|
container: 'body',
|
|
|
|
trigger: 'manual',
|
|
|
|
html : true,
|
|
|
|
content: function() {
|
|
|
|
return "date: " + d.label +
|
|
|
|
"<br/>num: " + d3.format(",")(d.value ? d.value: d.y1 - d.y0); }
|
|
|
|
});
|
|
|
|
$(this).popover('show')
|
|
|
|
}
|
|
|
|
|
2018-07-09 09:47:04 +00:00
|
|
|
chart.onResize = function () {
|
|
|
|
var aspect = 1000 / 500, chart = $("#thesvg");
|
2018-07-06 14:54:43 +00:00
|
|
|
var targetWidth = chart.parent().width();
|
|
|
|
chart.attr("width", targetWidth);
|
|
|
|
chart.attr("height", targetWidth / aspect);
|
|
|
|
}
|
|
|
|
|
2018-07-09 09:47:04 +00:00
|
|
|
window.chart = chart;
|
|
|
|
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<script>
|
|
|
|
function barchart_type(url, id) {
|
|
|
|
|
|
|
|
|
|
|
|
var margin = {top: 20, right: 20, bottom: 70, left: 40};
|
|
|
|
|
|
|
|
var width = 960 - margin.left - margin.right;
|
|
|
|
var height = 500 - margin.top - margin.bottom;
|
|
|
|
|
|
|
|
var x = d3.scaleBand().rangeRound([0, width]).padding(0.1);
|
|
|
|
var y = d3.scaleLinear().rangeRound([height, 0]);
|
|
|
|
|
|
|
|
var xAxis = d3.axisBottom(x)
|
|
|
|
//.tickFormat(d3.time.format("%Y-%m"));
|
|
|
|
|
|
|
|
var yAxis = d3.axisLeft(y)
|
|
|
|
.ticks(10);
|
|
|
|
|
|
|
|
/*var svg = d3.select(id).append("svg")
|
|
|
|
.attr("width", width + margin.left + margin.right)
|
|
|
|
.attr("height", height + margin.top + margin.bottom)
|
|
|
|
.attr("id", "thesvg")
|
|
|
|
.append("g")
|
|
|
|
.attr("transform",
|
|
|
|
"translate(" + margin.left + "," + margin.top + ")");*/
|
|
|
|
|
|
|
|
|
|
|
|
d3.json(url)
|
|
|
|
.then(function(data){
|
|
|
|
|
|
|
|
data.forEach(function(d) {
|
|
|
|
d.value = +d.value;
|
|
|
|
});
|
|
|
|
|
|
|
|
{% if daily_type_chart %}
|
|
|
|
x.domain(data.map(function(d) { return d.date; }));
|
|
|
|
{% else %}
|
|
|
|
x.domain(data.map(function(d) { return d.date.substring(5); }));
|
|
|
|
{% endif %}
|
|
|
|
y.domain([0, d3.max(data, function(d) { return d.value; })]);
|
|
|
|
|
|
|
|
var label = svg.append("g")
|
|
|
|
.attr("class", "x axis")
|
|
|
|
.attr("transform", "translate(0," + height + ")")
|
|
|
|
.call(xAxis)
|
|
|
|
.selectAll("text")
|
|
|
|
.style("text-anchor", "end")
|
|
|
|
.attr("dx", "-.8em")
|
|
|
|
.attr("dy", "-.55em")
|
|
|
|
{% if daily_type_chart %}
|
|
|
|
.attr("transform", "rotate(-20)" );
|
|
|
|
{% else %}
|
|
|
|
.attr("transform", "rotate(-70)" );
|
|
|
|
{% endif %}
|
|
|
|
|
|
|
|
svg.append("g")
|
|
|
|
.attr("class", "y axis")
|
|
|
|
.call(yAxis)
|
|
|
|
.append("text")
|
|
|
|
.attr("transform", "rotate(-90)")
|
|
|
|
.attr("y", 6)
|
|
|
|
.attr("dy", ".71em")
|
|
|
|
.style("text-anchor", "end")
|
|
|
|
.text("Value ($)");
|
2018-07-06 14:54:43 +00:00
|
|
|
|
2018-07-09 09:47:04 +00:00
|
|
|
var bar = svg.selectAll("bar")
|
|
|
|
.data(data)
|
|
|
|
.enter().append("rect")
|
|
|
|
.attr("class", "bar")
|
|
|
|
//.style("fill", "steelblue")
|
|
|
|
{% if daily_type_chart %}
|
|
|
|
.attr("x", function(d) { return x(d.date); })
|
|
|
|
{% else %}
|
|
|
|
.attr("x", function(d) { return x(d.date.substring(5)); })
|
|
|
|
{% endif %}
|
|
|
|
.attr("width", x.bandwidth())
|
|
|
|
.attr("y", function(d) { return y(d.value); })
|
|
|
|
.attr("height", function(d) { return height - y(d.value); })
|
|
|
|
{% if type %}
|
|
|
|
.on("click", function(d){ window.location.href = "/base64Decoded/" +'?type={{type}}&date_from='+ d.date +'&date_to='+ d.date; });
|
|
|
|
{% endif %}
|
|
|
|
{% if daily_type_chart %}
|
|
|
|
.on("click", function(d){ window.location.href = "/base64Decoded/" +'?type='+d.date+'&date_from={{ daily_date }}&date_to={{ daily_date }}'; });
|
|
|
|
{% endif %}
|
|
|
|
|
|
|
|
|
|
|
|
data.forEach(function(d) {
|
|
|
|
if(d.value != 0){
|
|
|
|
svg.append("text")
|
|
|
|
.attr("class", "bar")
|
|
|
|
.attr("dy", "-.35em")
|
|
|
|
//.text(function(d) { return d.value; });
|
|
|
|
.text(d.value)
|
|
|
|
.style("text-anchor", "middle")
|
|
|
|
{% if daily_type_chart %}
|
|
|
|
.attr('x', x(d.date) + x.bandwidth()/2)
|
|
|
|
{% else %}
|
|
|
|
.attr('x', x(d.date.substring(5)) + x.bandwidth()/2)
|
|
|
|
{% endif %}
|
|
|
|
.attr('y', y(d.value));
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
}
|
2018-07-06 14:54:43 +00:00
|
|
|
</script>
|
2018-07-09 09:47:04 +00:00
|
|
|
|
2018-06-29 08:02:29 +00:00
|
|
|
|
|
|
|
</body>
|
|
|
|
|
|
|
|
</html>
|