forked from uncch-rdmc/dataverse-metrics
-
Notifications
You must be signed in to change notification settings - Fork 0
/
installationplots.js
541 lines (510 loc) · 18.8 KB
/
installationplots.js
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
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
//The alias of the published dataverse to show statistics for (stats are for this dataverse and all published children)
var alias;
//The Dataverse server address - can be "" if this app is deployed on the same server.
var dvserver = "";
$(document).ready(function() {
//Determine which dataverse/sub-dataverse is the focus for the metrics
// (Metrics are for the specified public/published dataverse and all it's public/published children)
var urlParams = new URLSearchParams(window.location.search);
alias = (urlParams.get('parentAlias'));
//Retrieve the configuration, complete the header, and start creating graphs
$.getJSON('config.local.json', function(config) {
// Set the Dataverse server to use
if (config.hasOwnProperty("installationURL")) {
dvserver = config.installationURL;
}
// Retrieve the tree of child dataverses and add them to the tree we use as a selector
// getJSON could be used throughout (it wasn't previously due to bugs in the API endpoints in determining when to send json versus text/csv)
$.getJSON(
dvserver + '/api/info/metrics/tree' + addAlias(),
function(data) {
var nodes = data.data;
if (typeof nodes.children !== 'undefined') {
nodes.children.forEach((node) => {
//Make each element in the tree (below the root) a link to get the metrics for that sub-dataverse
updateNames(node);
});
}
//Populate the tree widget
$('#dvtree').tree({
data: [nodes],
autoEscape: false
});
}
);
//Header Information
$('#title').html("<H1>Metrics from the " + config.installationName + "</H1>");
if (alias == null) {
$('#subtitle').html("<h2>Showing Metrics from the whole repository</h2>");
$('#selectString').html('<div>Click a sub-' + config.dataverseTerm + ' name to see its metrics</div>');
} else {
$('#subtitle').html("<h2>Showing Metrics from the " + alias + " " + config.dataverseTerm + "</h2>");
$('#selectString').html('<div><a href="/dataverse-metrics">Show Metrics for the whole repository</a></div><div>Click a sub-' + config.dataverseTerm + ' name to see its metrics</div>');
}
//Panels
if(config.hasOwnProperty("downloadsHeader")) {
$("#downloadSection").find("a").text(config.downloadsHeader);
}
if(config.hasOwnProperty("makeDataCountHeader")) {
$("#mdcSection").find("a").text(config.makeDataCountHeader);
}
if(config.hasOwnProperty("holdingsHeader")) {
$("#holdingsSection").find("a").text(config.holdingsHeader);
}
//Footer
if (config.hasOwnProperty("globalConfigured")) {
if(config.globalConfigured === "true") {
$("#global").html('<a href="/dataverse-metrics/global">View Aggregate Metrics from the Dataverse Community</a>');
}
}
//Individual graphs
//Row 1
timeseries("Dataverses", config);
timeseries("Datasets", config);
//Row 2
dataversesByCategory(config);
dataversesBySubject(config);
//Row 3
datasetsBySubject(config);
timeseries("Files", config);
//Row 4
timeseries("Downloads", config);
uniqueDownloads(config);
//Row 5
fileDownloads(config);
//Row 6
multitimeseries("UniqueDownloads", config, "pid");
//Row 7 - by Count and by Size graphs
filesByType(config);
//Row 8
makeDataCount("viewsTotal", config);
makeDataCount("downloadsTotal", config);
//Row 9
makeDataCount("viewsUnique", config);
makeDataCount("downloadsUnique", config);
});
});
//Generic graph of time series - date versus count
function timeseries(name, config) {
var lcname = name.toLowerCase();
var nameLabel = name;
var singular = lcname.substring(0, lcname.length -1);
if(config.hasOwnProperty(singular + "Term")) {
nameLabel = config[singular + "Term"] + "s";
}
var color = config["colors"][lcname + "/monthly"];
$.ajax({
url: dvserver + '/api/info/metrics/' + lcname + '/monthly' + addAlias(),
headers: { Accept: "application/json" },
success: function(data) {
data = data.data;
var yLabel = "Number of " + nameLabel;
var visualization = d3plus.viz()
.data(data)
.title(nameLabel)
.container("#" + lcname)
.type("bar")
.id("date")
.x({
"value": "date",
"label": "Month"
})
.y({
"range": [0, data[data.length - 1].count * 1.3],
"value": "count",
"label": yLabel
})
.color(function(d) {
return color;
})
.resize(true);
if(config.hasOwnProperty("timeseries." + lcname + ".definition")) {
var explain = config["timeseries." + lcname + ".definition"];
visualization.footer(config["timeseries." + lcname + ".definition"]);
}
visualization.draw();
}
});
$("#" + lcname).append($("<a/>").addClass("button").attr("href", "/api/info/metrics/" + lcname + "/monthly" + addAlias()).attr("type", "text/csv").text("CSV"));
}
function dataversesByCategory(config) {
var colors = config["colors"]["dataverses/byCategory"];
$.ajax({
url: dvserver + '/api/info/metrics/dataverses/byCategory' + addAlias(),
headers: { Accept: "application/json" },
success: function(data) {
data = data.data;
var tileLabel = "Number of " + config.dataverseTerm + "s";
var visualization = d3plus.viz()
.data(data)
.title(config.dataverseTerm + "s by Category")
.title({
"total": true
})
.container("#dataverses-by-category")
.type("tree_map")
.id("category")
.size("count")
.color({
value: "count",
heatmap: colors.reverse()
})
.format({
"text": function(text, params) {
if (text === "count") {
return tileLabel;
} else {
return d3plus.string.title(text, params);
}
}
})
.legend(false)
.resize(true);
if(config.hasOwnProperty("dataversesbycategory.definition")) {
var explain = config["dataversesbycategory.definition"];
visualization.footer(config["dataversesbycategory.definition"]);
}
visualization.draw();
}
});
$("#dataverses-by-category").append($("<a/>").addClass("button").attr("href", "/api/info/metrics/dataverses/byCategory" + addAlias()).attr("type", "text/csv").text("CSV"));
}
function dataversesBySubject(config) {
var colors = config["colors"]["dataverses/bySubject"];
$.ajax({
url: dvserver + '/api/info/metrics/dataverses/bySubject' + addAlias(),
headers: { Accept: "application/json" },
success: function(data) {
data = data.data;
var tileLabel = "Number of " + config.dataverseTerm + "s";
var visualization = d3plus.viz()
.data(data)
.title(config.dataverseTerm + "s by Subject")
.title({
"total": true
})
.container("#dataverses-by-subject")
.type("tree_map")
.id("subject")
.size("count")
.color({
value: "count",
heatmap: colors.reverse()
})
.format({
"text": function(text, params) {
if (text === "count") {
return tileLabel;
} else {
return d3plus.string.title(text, params);
}
}
})
.legend(false)
.resize(true);
if(config.hasOwnProperty("dataversesbysubject.definition")) {
var explain = config["dataversesbysubject.definition"];
visualization.footer(config["dataversesbysubject.definition"]);
}
visualization.draw();
}
});
$("#dataverses-by-subject").append($("<a/>").addClass("button").attr("href", "/api/info/metrics/dataverses/bySubject" + addAlias()).attr("type", "text/csv").text("CSV"));
}
function datasetsBySubject(config) {
var colors = config["colors"]["datasets/bySubject"];
$.ajax({
url: dvserver + '/api/info/metrics/datasets/bySubject' + addAlias(),
headers: { Accept: "application/json" },
success: function(data) {
data = data.data;
var tileLabel = "Number of " + config.Term;
var visualization = d3plus.viz()
.data(data)
.title(config.datasetTerm + " by Subject")
.title({
"total": true
})
.container("#datasets-by-subject")
.type("tree_map")
.id("subject")
.size("count")
.color({
value: "count",
heatmap: colors.reverse()
})
.format({
"text": function(text, params) {
if (text === "count") {
return tileLabel;
} else {
return d3plus.string.title(text, params);
}
}
})
.legend(false)
.resize(true);
if(config.hasOwnProperty("datasetsbysubject.definition")) {
var explain = config["datasetsbysubject.definition"];
visualization.footer(config["datasetsbysubject.definition"]);
}
visualization.draw();
}
});
$("#datasets-by-subject").append($("<a/>").addClass("button").attr("href", "/api/info/metrics/datasets/bySubject" + addAlias()).attr("type", "text/csv").text("CSV"));
}
//Retrieves any of the defined Make Data Count metrics
// (the graph itself is the same as other timeseries())
function makeDataCount(metric, config) {
var color = config["colors"]["makeDataCount/" + metric + "/monthly"];
$.ajax({
url: dvserver + '/api/info/metrics/makeDataCount/' + metric + '/monthly' + addAlias(),
headers: { Accept: "application/json" },
success: function(data) {
data = data.data;
var yLabel = "Number of " + metric;
var visualization = d3plus.viz()
.data(data)
.title("Make Data Count Metrics-" + metric)
.container("#makedatacount-" + metric)
.type("bar")
.id("date")
.x({
"value": "date",
"label": "Month"
})
.y({
"range": [0, data[data.length - 1].count * 1.3],
"value": "count",
"label": yLabel
})
.color(function(d) {
return color;
})
.resize(true);
if(config.hasOwnProperty("makedatacount." + metric + ".definition")) {
var explain = config["makedatacount." + metric + ".definition"];
visualization.footer(config["makedatacount." + metric + ".definition"]);
}
visualization.draw();
}
});
$("#makedatacount-" + metric).append($("<a/>").addClass("button").attr("href", "/api/info/metrics/makeDataCount/" + metric + "/monthly" + addAlias()).attr("type", "text/csv").text("CSV"));
}
//Multitimeseries - an array of objects with an additional key that we groupby
//Used for uniquedownloads
function multitimeseries(name, config, groupby) {
var lcname = name.toLowerCase();
var color = config["colors"][lcname + "/monthly"];
$.ajax({
url: dvserver + '/api/info/metrics/' + lcname + '/monthly' + addAlias(),
headers: { Accept: "application/json" },
success: function(data) {
data = data.data;
var yLabel = "Number of " + name;
var visualization = d3plus.viz()
.data(data)
.title(name)
.container("#" + lcname)
.type("stacked")
.id(groupby)
.x({
"value": "date",
"label": "Month"
})
.y({
"value": "count",
"label": yLabel
})
.format(function(text){if((typeof text) == 'string') {text = text.replace(/["]+/g,'');} return text;})
.mouse({
"click": function(d) {
window.open(dvserver + "/dataset.xhtml?persistentId=" + JSON.stringify(d.d3plus_data[groupby]).replace(/["]+/g,''), target="_blank");
}
})
.resize(true);
if(config.hasOwnProperty("multitimeseries." + lcname + ".definition")) {
var explain = config["multitimeseries." + lcname + ".definition"];
visualization.footer(config["multitimeseries." + lcname + ".definition"]);
}
visualization.draw();
}
});
$("#" + lcname).append($("<a/>").addClass("button").attr("href", "/api/info/metrics/" + lcname + "/monthly" + addAlias()).attr("type", "text/csv").text("CSV"));
}
function filesByType(config) {
var color = config["colors"]["files/byType"];
$.ajax({
url: dvserver + '/api/info/metrics/files/byType' + addAlias(),
headers: { Accept: "application/json" },
success: function(data) {
data = data.data;
var countVisualization = d3plus.viz()
.data(data).dev(true)
.title("File Count By Type")
.container("#files-by-type-count")
.type("bar")
.id("contenttype")
.x({
"value": "contenttype",
"label": "Content Type"
})
.y({
"value": "count",
"label": "File Count",
"scale": "linear"
})
.order("count")
.text("contenttype")
.resize(true);
if(config.hasOwnProperty("filesbytype.definition")) {
var explain = config["filesbytype.definition"];
countVisualization.footer(config["filesbytype.definition"]);
}
countVisualization.draw();
var sizeVisualization = d3plus.viz()
.data(data.filter(d=>d.size > 0)).dev(true)
.title("File Size By Type")
.container("#files-by-type-size")
.type("bar")
.id("contenttype")
.x({
"value": "contenttype",
"label": "Content Type"
})
.y({
"value": "size",
"label": "Total Size By File Type",
"scale": "log"
})
.order("size")
.text("contenttype")
.resize(true);
if(config.hasOwnProperty("filesbytype.definition")) {
var explain = config["filesbytype.definition"];
sizeVisualization.footer(config["filesbytype.definition"]);
}
sizeVisualization.draw();
}
});
$("#files-by-type-count").append($("<a/>").addClass("button").attr("href", "/api/info/metrics/files/byType" + addAlias()).attr("type", "text/csv").text("CSV"));
$("#files-by-type-size").append($("<span/>").addClass("redundant").attr("title", "These metrics are included in the CSV for the 'File Count By Type'").text("CSV").append($("<span/>").addClass("glyphicon glyphicon-question-sign")));
}
//Shows the unique download count per PID
//The max number of elements (e.g. PIDs) to include can be controlled with the config.maxBars parameter
function uniqueDownloads(config) {
var color = config["colors"]["downloads/unique"];
$.ajax({
url: dvserver + '/api/info/metrics/uniquedownloads' + addAlias(),
headers: { Accept: "application/json" },
success: function(data) {
data = data.data;
var title = "Unique Downloads per " + config.datasetTerm;
var maxBars = config["maxBars"];
if (typeof maxBars !== "undefined") {
data = data.slice(0, maxBars);
title = title + " (top " + maxBars + ")";
}
var visualization = d3plus.viz()
.data(data)
.title(title)
.container("#uniquedownloads-by-pid")
.type("bar")
.id("pid")
.x({
"value": "pid",
"label": config.datasetTerm + " Identifier"
})
.y({
"value": "count",
"label": "Unique Download Count",
"scale": "linear"
})
//the API orders the results (so the slice gets the ones with the most counts), but the graph will reorder the without this
.order("count")
.text("pid")
.format(function(text){if((typeof text) == 'string') {text = text.replace(/["]+/g,'');} return text;})
.mouse({
"click": function(d) {
window.open(dvserver + "/dataset.xhtml?persistentId=" + JSON.stringify(d.pid).replace(/["]+/g,''), target="_blank");
}
})
.resize(true);
if(config.hasOwnProperty("uniquedownloads.definition")) {
var explain = config["uniquedownloads.definition"];
visualization.footer(config["uniquedownloads.definition"]);
}
visualization.draw();
}
});
$("#uniquedownloads-by-pid").append($("<a/>").addClass("button").attr("href", "/api/info/metrics/uniquedownloads" + addAlias()).attr("type", "text/csv").text("CSV"));
}
//The max number of elements (e.g. PIDs) to include can be controlled with the config.maxBars parameter
function fileDownloads(config) {
var color = config["colors"]["filedownloads/unique"];
$.ajax({
url: dvserver + '/api/info/metrics/filedownloads' + addAlias(),
headers: { Accept: "application/json" },
success: function(data) {
data = data.data;
var xName = "pid";
if(data[0].pid.length==0) {
xName="id";
}
var title = "Downloads per DataFile";
var maxBars = config["maxBars"];
if (typeof maxBars !== "undefined") {
data = data.slice(0, maxBars);
title = title + " (top " + maxBars + ")";
}
var visualization = d3plus.viz()
.data(data)
.title(title)
.container("#filedownloads-by-id")
.type("bar")
.id("id")
.x({
"value": xName,
"label": config.datasetTerm + " Identifier"
})
.y({
"value": "count",
"label": "Download Count",
"scale": "linear"
})
//the API orders the results (so the slice gets the ones with the most counts), but the graph will reorder the without this
.order("count")
.format(function(text){if((typeof text) == 'string') {text = text.replace(/["]+/g,'');} return text;})
.text(xName)
.mouse({
"click": function(d) {
if(!d.hasOwnProperty("pid") || d.pid.length==0) {
window.open(dvserver + "/file.xhtml?fileId=" + JSON.stringify(d.id).replace(/["]+/g,''), target="_blank");
} else {
window.open(dvserver + "/file.xhtml?persistentId=" + JSON.stringify(d.pid).replace(/["]+/g,''), target="_blank");
}
}
})
.resize(true);
if(config.hasOwnProperty("filedownloads.definition")) {
var explain = config["filedownloads.definition"];
visualization.footer(config["filedownloads.definition"]);
}
visualization.draw();
}
});
$("#filedownloads-by-id").append($("<a/>").addClass("button").attr("href", "/api/info/metrics/filedownloads" + addAlias()).attr("type", "text/csv").text("CSV"));
}
//Add the parentAlias param at the end of URLs if alias is set
function addAlias() {
return ((alias === null) ? '' : '?parentAlias=' + alias);
}
//Turn dataverse names into links to the metrics page using that dataverse as the parent
function updateNames(node) {
node.name = "<a href='" + window.location.href.split("?")[0] + "?parentAlias=" + node.alias + "'>" + node.alias + "</a>";
if (typeof node.children !== 'undefined') {
node.children.forEach((childnode) => {
updateNames(childnode);
});
}
}