authnEvents.js 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. $('#myTabs a').click(function (e) {
  2. e.preventDefault();
  3. $(this).tab('show');
  4. });
  5. (function () {
  6. var getData = function () {
  7. $.getJSON(urls.getEvents, function (data) {
  8. authnEventsTable(data);
  9. });
  10. };
  11. var authnEventsTable = function (jsonData) {
  12. var t = $('#authnEventsTable').DataTable({
  13. 'order': [[2, 'desc']],
  14. retrieve: true,
  15. columnDefs: [
  16. {
  17. 'targets': 0,
  18. render: function (data) {
  19. return '<span class="glyphicon glyphicon-flash" aria-hidden="true">&nbsp;</span>' + data;
  20. }
  21. }
  22. ]
  23. });
  24. for (var i = 0; i < jsonData.length; i++) {
  25. var rec = jsonData[i];
  26. var type = rec.type.split('.');
  27. t.row.add([
  28. type[type.length - 1],
  29. rec.principalId,
  30. new Date(rec.creationTime*1000),
  31. new Date(rec.timestamp),
  32. rec.properties.agent,
  33. rec.clientIpAddress,
  34. rec.serverIpAddress,
  35. rec.properties.geoLatitude === 'undefined' ? '' : Number(rec.properties.geoLatitude).toFixed(2),
  36. rec.properties.geoLongitude === 'undefined' ? '' : Number(rec.properties.geoLongitude).toFixed(2),
  37. rec.properties.geoAccuracy === 'undefined' ? '' : Number(rec.properties.geoAccuracy).toFixed(2)
  38. ]).draw(false);
  39. }
  40. };
  41. // initialization *******
  42. (function init () {
  43. getData();
  44. })();
  45. })();