-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathstats.php
522 lines (481 loc) · 16.9 KB
/
stats.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
<!DOCTYPE html>
<!--
This is a starter template page. Use this page to start your new project from
scratch. This page gets rid of all links and provides the needed markup only.
-->
<?php
require_once(__DIR__."/src/config.php");
require_once(__DIR__."/src/lib/usercake/init.php");
if (!UCUser::CanUserAccessUrl($_SERVER['PHP_SELF'])){die();}
$user = UCUser::getCurrentUser();
?>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title><?php echo $user_settings->WebsiteName() ?></title>
<!-- Tell the browser to be responsive to screen width -->
<meta content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no" name="viewport">
<!-- Bootstrap 3.3.6 -->
<link rel="stylesheet" href="plugins/bootstrap/css/bootstrap.min.css">
<!-- Font Awesome -->
<link rel="stylesheet" href="plugins/font-awesome/css/font-awesome.min.css">
<!-- Ionicons -->
<link rel="stylesheet" href="plugins/ionicons/css/ionicons.min.css">
<!-- DataTables -->
<link rel="stylesheet" href="plugins/datatables/css/dataTables.bootstrap.css">
<link rel="stylesheet" href="plugins/datatables/extensions/Buttons/css/buttons.bootstrap.min.css">
<link rel="stylesheet" href="plugins/datatables/extensions/Select/css/select.bootstrap.min.css">
<link rel="stylesheet" href="plugins/datatables/extensions/Editor/css/editor.bootstrap.min.css">
<link rel="stylesheet" href="plugins/datatables/extensions/Responsive/css/responsive.bootstrap.min.css">
<!-- Theme style -->
<link rel="stylesheet" href="dist/css/AdminLTE.min.css">
<!-- Pace style -->
<link rel="stylesheet" href="plugins/pace/pace.min.css">
<!-- AdminLTE Skins. We have chosen the skin-blue for this starter
page. However, you can choose any other skin. Make sure you
apply the skin class to the body tag so the changes take effect.
-->
<link rel="stylesheet" href="dist/css/skins/skin-blue.min.css">
<link rel="stylesheet" href="plugins/jqcloud/jqcloud.css">
<!-- HTML5 Shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!-- WARNING: Respond.js doesn't work if you view the page via file:// -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/html5shiv/3.7.3/html5shiv.min.js"></script>
<script src="https://oss.maxcdn.com/respond/1.4.2/respond.min.js"></script>
<![endif]-->
<style type="text/css">
.table-responsive {
min-height: 400px !important;
}
ul#dropdown-item-actions,
ul#dropdown-item-actions {
z-index: 10000;
}
</style>
</head>
<!--
BODY TAG OPTIONS:
=================
Apply one or more of the following classes to get the
desired effect
|---------------------------------------------------------|
| SKINS | skin-blue |
| | skin-black |
| | skin-purple |
| | skin-yellow |
| | skin-red |
| | skin-green |
|---------------------------------------------------------|
|LAYOUT OPTIONS | fixed |
| | layout-boxed |
| | layout-top-nav |
| | sidebar-collapse |
| | sidebar-mini |
|---------------------------------------------------------|
-->
<body class="hold-transition skin-blue sidebar-mini">
<div class="wrapper">
<?php include(__DIR__."/top-nav.php"); ?>
<?php include(__DIR__."/left-nav.php"); ?>
<!-- Content Wrapper. Contains page content -->
<div class="content-wrapper">
<!-- Content Header (Page header) -->
<!--<section class="content-header">
<h1>
Page Header
<small>Optional description</small>
</h1>
<ol class="breadcrumb">
<li><a href="#"><i class="fa fa-dashboard"></i> Level</a></li>
<li class="active">Here</li>
</ol>
</section>-->
<!-- Main content -->
<section class="content">
<!-- Line Chart row -->
<div class="row">
<section class="col-lg-4 connectedSortable">
<!-- Widget: user widget style 1 -->
<div class="box box-widget widget-user-2">
<!-- Add the bg color to the header using any of the bg-* classes -->
<div class="widget-user-header bg-red-active">
<div class="widget-user-image">
<img class="img-circle" src="./favicon.ico" alt="User Avatar">
</div>
<!-- /.widget-user-image -->
<h3 class="widget-user-username">YaraEditor</h3>
<h5 class="widget-user-desc">Web Edition</h5>
</div>
<div class="box-footer no-padding">
<ul class="nav nav-stacked">
<li><a href="#">Version <span class="pull-right badge bg-blue"><?php echo $GLOBALS["config"]["version"]?></span></a></li>
<li><a href="#">Files <span id="files-count" class="pull-right badge bg-aqua">5</span></a></li>
<li><a href="#">Rules <span id="rules-count" class="pull-right badge bg-red">12</span></a></li>
</ul>
</div>
</div>
<!-- USERS LIST -->
<div class="box box-danger">
<div class="box-header with-border">
<h3 class="box-title">Best Uploaders</h3>
<div class="box-tools pull-right">
<button type="button" class="btn btn-box-tool" data-widget="collapse"><i class="fa fa-minus"></i></button>
</div>
</div>
<!-- /.box-header -->
<div class="box-body no-padding">
<ul class="users-list clearfix">
</ul>
<!-- /.users-list -->
</div>
<!-- /.box-body -->
</div>
<!--/.box -->
<!-- TAGS CHART -->
<div class="box box-primary">
<div class="box-header with-border">
<h3 class="box-title">Tags</h3>
<div class="box-tools pull-right">
<button type="button" class="btn btn-box-tool"
data-widget="collapse">
<i class="fa fa-minus"></i>
</button>
</div>
</div>
<div class="box-body">
<div id="tags-cloud" style="height: 300px;"></div>
</div>
<!-- /.box-body -->
</div>
<!-- /.box -->
<!-- Horizontal Form -->
<div class="box box-info">
<div class="box-header with-border">
<h3 class="box-title">Last Comments</h3>
</div>
<div id="last-comments" class="box-body">
</div>
<!-- /.box-body -->
</div>
</section>
<section class="col-lg-7 connectedSortable">
<!-- Horizontal Form -->
<div class="box box-info">
<div class="box-header with-border">
<h3 class="box-title">Last Rules</h3>
</div>
<div class="box-body">
<table id="last-rules" class="table table-bordered table-striped dt-responsive" width="100%" cellspacing="0">
<thead>
<tr>
<th>Rule</th>
<th>Author</th>
<th>File</th>
<th>Threat</th>
<th>Tags</th>
<th>Last Modified</th>
<th>Created</th>
</tr>
</thead>
<tbody>
</tbody>
</table>
</div>
<!-- /.box-body -->
</div>
</section>
<section class="col-lg-12 connectedSortable">
<!-- AREA CHART -->
<div class="box box-primary">
<div class="box-header with-border">
<h3 class="box-title">Submissions</h3>
<div class="box-tools pull-right">
<button type="button" class="btn btn-box-tool"
data-widget="collapse">
<i class="fa fa-minus"></i>
</button>
</div>
</div>
<div class="box-body">
<div class="chart">
<canvas id="areaChartSubmissions" height="350"></canvas>
</div>
</div>
<!-- /.box-body -->
</div>
<!-- /.box -->
</section>
</div>
<!-- /.row (Line Chart row) -->
</section>
<!-- /.content -->
</div>
<!-- /.content-wrapper -->
<?php include(__DIR__."/footer.php"); ?>
<?php include(__DIR__."/right-nav.php"); ?>
</div>
<!-- ./wrapper -->
<!-- REQUIRED JS SCRIPTS -->
<!-- jQuery 2.2.3 -->
<script src="plugins/jQuery/jquery-2.2.3.min.js"></script>
<!-- AdminLTE App -->
<script src="dist/js/app.min.js"></script>
<!-- MRF -->
<!--<script src="plugins/jQueryUpload/js/vendor/jquery.min.js"></script>-->
<!-- The jQuery UI widget factory, can be omitted if jQuery UI is already included -->
<!--<script src="plugins/jQueryUpload/js/vendor/jquery.ui.widget.js"></script>-->
<script src="plugins/jQueryUI/jquery-ui.min.js"></script>
<!-- Bootstrap 3.3.6 -->
<!-- Bootstrap needs to be placed AFTER jquery-ui because of tootltip conflicts -->
<script src="plugins/bootstrap/js/bootstrap.min.js"></script>
<!-- DataTables -->
<script src="plugins/datatables/js/jquery.dataTables.js"></script>
<script src="plugins/datatables/js/dataTables.bootstrap.js"></script>
<script src="plugins/datatables/extensions/Buttons/js/dataTables.buttons.js"></script>
<script src="plugins/datatables/extensions/Buttons/js/buttons.bootstrap.js"></script>
<script src="plugins/datatables/extensions/Select/js/dataTables.select.js"></script>
<script src="plugins/datatables/extensions/Editor/js/dataTables.editor.js"></script>
<script src="plugins/datatables/extensions/Editor/js/editor.bootstrap.js"></script>
<script src="plugins/datatables/extensions/Editor/js/editor.tinymce.js"></script>
<script src="plugins/datatables/extensions/Responsive/js/dataTables.responsive.min.js"></script>
<script src="plugins/datatables/extensions/Responsive/js/responsive.bootstrap.min.js"></script>
<!-- ChartJS 2.2.2 -->
<script src="plugins/chartjs/2.2.2/Chart.min.js"></script>
<!-- JQCloud -->
<script src="plugins/jqcloud/jqcloud.js"></script>
<!-- PACE -->
<script src="plugins/pace/pace.min.js"></script>
<!-- The main application script -->
<script src="dist/js/main.js"></script>
<script>
function initStats()
{
'use strict';
$.when(
refreshRepoInformation(),
refreshTimeLine(),
refreshUploaders(),
refreshTags(),
refreshLastRules(),
refreshLastComments()
).always(function(a1, a2, a3, a4, a5, a6) {
Pace.stop();
});
}
function refreshLastComments()
{
return get_last_comments(function(data) {
$.each(data, function(index, value){
var template = ""
+ "<div class='box-footer box-comments'>"
+ " <div class='box-comment'>";
if (value.profile_picture_url.length == 0) {
template += " <img class='img-circle img-sm' src='<?php echo $GLOBALS["config"]["urls"]["baseUrl"] ."dist/img/noavatar.jpg"?>' alt='Icon'>";
} else {
template += " <img class='img-circle img-sm' src='" + value.profile_picture_url + "' alt='Icon'>";
}
template = template
+ " <div class='comment-text'>"
+ " <span class='username'>"
+ value.fullname + " on Rule : " + "<a href='" + "<?php echo $GLOBALS["config"]["urls"]["baseUrl"] ?>view.php?id=" + value.rule_id + "'>" + value.rule_name + " (#" + value.rule_id + ")" + "</a>"
+ " <span class='text-muted pull-right'>" + value.created + "</span>"
+ " </span>"
+ value.content
+ " </div>"
+ " </div>"
+ " </div>";
$("#last-comments").append(template);
});
});
}
//This method will trigger a "get_files" ajax call because of the pagination
function refreshRepoInformation()
{
return get_storage_info(function(data) {
var span_count = document.getElementById("files-count");
if (span_count) {
span_count.innerHTML = data["files"];
}
span_count = document.getElementById("rules-count");
if (span_count) {
span_count.innerHTML = data["rules"];
}
});
}
function refreshTimeLine(days_count)
{
return $.ajax({
type: "GET",
dataType: "json",
url: "api.php?action=getsubmissionsdata",
data: {days_count: days_count},
success: function(data)
{
var color_front = "rgba(52, 152, 219,1.0)";
var color_back = "rgba(52, 152, 219,0.5)";
var color_front2 = "rgba(231, 76, 60,1.0)";
var color_back2 = "rgba(231, 76, 60,0.5)";
var areaChartCanvas = $("#areaChartSubmissions").get(0).getContext("2d");
var areaChartData = {
labels: data.labels,
datasets: [
{
label: "Submissions",
fill: true,
lineTension: 0.1,
backgroundColor: color_back,
borderColor: color_front,
borderCapStyle: 'butt',
borderDash: [],
borderDashOffset: 0.0,
borderJoinStyle: 'miter',
pointBorderColor: color_front,
pointBackgroundColor: "#fff",
pointBorderWidth: 1,
pointHoverRadius: 5,
pointHoverBackgroundColor: color_front,
pointHoverBorderColor: "rgba(220,220,220,1)",
pointHoverBorderWidth: 2,
pointRadius: 1,
pointHitRadius: 10,
spanGaps: true,
data: data.points,
yAxisID: "1",
}
]
};
var areaChartOptions = {
maintainAspectRatio: false,
responsive: true,
title: {
display: false,
},
legend: {
display: false,
},
scales: {
yAxes: [{
position: "left",
"id": "1"
}]
}
};
//Create the line chart
var areaChart = new Chart.Line(areaChartCanvas, {
data: areaChartData,
options: areaChartOptions
});
}
});
}
function refreshUploaders()
{
return get_uploadersdata(function(data) {
$.each(data, function(index, value){
var user_display =
"<li>"
+ (value.avatar ? "<img alt='' height='72px' width='72px' class='img-circle' src='data:image/png;base64," + value.avatar + "'>"
: "<img alt='' height='72px' width='72px' class='img-cicrle' src='dist/img/noavatar.jpg'>")
+ "<a class='users-list-name' href='#'>" + value.name + "</a>"
+ "<span class='users-list-date'>" + value.count + " rules</span>"
+ "</li>";
$(".users-list").append(user_display);
});
});
}
function refreshTags()
{
return get_tagsdata(function(data) {
var $c = $('#tags-cloud');
var words = [];
$.each(data, function(key, value){
var word = {};
word.text = key;
word.weight = value;
word.link = { href: 'search.php?tag=' + key, target: "_blank" };
words.push(word);
});
$c.jQCloud(words);
});
}
function refreshLastRules()
{
var table;
table = $('#last-rules').DataTable({
dom: "frtip",
paging: true,
pageLength: 25,
lengthChange: true,
searching: true,
ordering: true,
info: true,
autoWidth: false,
processing: false,
serverSide: false,
responsive: true,
fnInitComplete: function (oSettings, json) {
Pace.stop();
},
ajax: {
type: "GET",
dataType: "json",
url: "api.php",
data: function( data ) {
data.action = 'getrules';
data.limit = 20;
},
},
columns: [
{
data: "name",
width: "20%",
render: function (data, type, row)
{
return "<a href='" + "<?php echo $GLOBALS["config"]["urls"]["baseUrl"] ?>view.php?id=" + row.id + "' target='_blank'>" + data + " (#" + row.id + ")" + "</a>";
}
},
{ data: "author", width: "10%" },
{ data: "file_name", width: "10%" },
{
data: "threat",
width: "20%",
render: function (data, type, row)
{
if (data != undefined) {
return "<span class='label label-danger' style='font-size: 12px;'>" + data + "</span>";
}
else {
return "";
}
}
},
{
data: "tags",
width: "20%",
render: function (data, type, row)
{
content = "";
$.each(data, function(index, item) {
content += "<span class='label label-success' style='margin-right:5px; font-size: 12px;'>" + item + "</span>";
});
return content;
}
},
{ data: "last_modified", width: "10%" },
{ data: "created", width: "10%" }
],
order: [[ 5, "desc" ]],
select: true
});
}
$(function() {
initStats();
});
</script>
<!-- Optionally, you can add Slimscroll and FastClick plugins.
Both of these plugins are recommended to enhance the
user experience. Slimscroll is required when using the
fixed layout. -->
</body>
</html>