ssosessions.js 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352
  1. /*eslint-disable no-unused-vars*/
  2. String.prototype.padLeft = function (length, character) {
  3. return new Array(length - this.length + 1).join(character || ' ') + this;
  4. };
  5. Date.prototype.toFormattedString = function () {
  6. return [String(this.getMonth() + 1).padLeft(2, '0'),
  7. String(this.getDate()).padLeft(2, '0'),
  8. String(this.getFullYear()).substr(2, 2)].join('/') + ' ' +
  9. [String(this.getHours()).padLeft(2, '0'),
  10. String(this.getMinutes()).padLeft(2, '0')].join(':');
  11. };
  12. function principalAttributes(obj) {
  13. var output = '<table class="table table-condensed principal_attributes"><tbody>';
  14. for (var key in obj) {
  15. if (obj.hasOwnProperty(key)) {
  16. if (Array.isArray(obj[key])) {
  17. output = output.concat('<tr><td class="field-label active">' + key + '</td><td>' + obj[key].toString() + '</td></tr>');
  18. } else {
  19. output = output.concat('<tr><td class="field-label active">' + key + '</td><td>' + obj[key] + '</td></tr>');
  20. }
  21. }
  22. }
  23. output = output.concat('</tbody></table>');
  24. return output;
  25. }
  26. function authenticatedServices(obj) {
  27. var output = '';
  28. for (var key in obj) {
  29. if (obj.hasOwnProperty(key)) {
  30. output = output.concat('<h5>' + key + '</h5><table class="table table-condensed principal_attributes"><tbody>');
  31. for (var foo in obj[key]) {
  32. if (obj[key].hasOwnProperty(foo)) {
  33. if (Array.isArray(obj[key][foo])) {
  34. output = output.concat('<tr><td class="field-label active">' + foo + ':</td><td>' + obj[key][foo].toString() + '</td></tr>');
  35. } else {
  36. output = output.concat('<tr><td class="field-label active">' + foo + ':</td><td>' + obj[key][foo] + '</td></tr>');
  37. }
  38. }
  39. }
  40. output = output.concat('</tbody></table>');
  41. }
  42. }
  43. return output;
  44. }
  45. /* Formatting function for row details - modify as you need */
  46. function format(d) {
  47. return '<table class="table table-bordered row-detail">' +
  48. '<tbody>' +
  49. '<tr class="hidden-md hidden-lg">' +
  50. '<td class="field-label active">Access Date:</td>' +
  51. '<td>' + d.authentication_date_formatted + '</td>' +
  52. '</tr>' +
  53. '<tr class="hidden-md hidden-lg">' +
  54. '<td class="field-label active">Usage Count:</td>' +
  55. '<td>' + d.number_of_uses + '</td>' +
  56. '</tr>' +
  57. '<tr>' +
  58. '<td class="field-label active">Ticket Granting Ticket:</td>' +
  59. '<td>' + d.ticket_granting_ticket + '</td>' +
  60. '</tr>' +
  61. '<tr>' +
  62. '<td class="field-label active">Principal Attributes:</td>' +
  63. '<td>' +
  64. principalAttributes(d.principal_attributes) +
  65. '</td>' +
  66. '</tr>' +
  67. '<tr>' +
  68. '<td class="field-label active">Authenticated Services:</td>' +
  69. '<td>' +
  70. authenticatedServices(d.authenticated_services) +
  71. '</td>' +
  72. '</tr>' +
  73. '<tr>' +
  74. '<td class="field-label active">Ticket Granting Service:</td>' +
  75. '<td></td>' +
  76. '</tr>' +
  77. '</tbody></table>';
  78. }
  79. function updateAdminPanels(data) {
  80. //$('#totalUsers').text(data.totalPrincipals);
  81. $('#totalUsers').text(data.activeSsoSessions.length);
  82. $('#totalUsageSessions').text(sum(data.activeSsoSessions, 'number_of_uses'));
  83. //$('#totalProxied').text(data.totalTicketGrantingTickets);
  84. $('#totalTGTs').text(data.totalTicketGrantingTickets);
  85. //$('#totalTGTs').text( sum(data.activeSsoSessions, 'is_proxied' ) );
  86. }
  87. function sum(obj, prop) {
  88. var sum = 0;
  89. for (var el in obj) {
  90. if (obj.hasOwnProperty(el)) {
  91. sum += ( typeof obj[el][prop] == 'boolean' ) ? +obj[el][prop] : obj[el][prop];
  92. }
  93. }
  94. return sum;
  95. }
  96. /*
  97. function showError(msg) {
  98. $('#msg').removeClass();
  99. $('#msg').addClass('errors');
  100. $('#msg').text(msg);
  101. $('#msg').show();
  102. }
  103. */
  104. /*
  105. function showInfo(msg) {
  106. $('#msg').removeClass();
  107. $('#msg').addClass('info');
  108. $('#msg').text(msg);
  109. $('#msg').show();
  110. }
  111. */
  112. function alertUser(message, alertType) {
  113. $('#alertWrapper').append('<div id="alertdiv" class="alert alert-' + alertType + ' alert-dismissible">' +
  114. '<button type="button" class="close" data-dismiss="alert" aria-label="Close"><span aria-hidden="true">&times;</span></button>' +
  115. '<span class="alertMessage">' + message + '</span></div>'
  116. );
  117. setTimeout(function () { // this will automatically close the alert and remove this if the users doesnt close it in 5 secs
  118. $('#alertdiv').remove();
  119. }, 5000);
  120. }
  121. function removeSession(ticketId) {
  122. var factory = {};
  123. factory.httpHeaders = {};
  124. factory.messages = {};
  125. factory.httpHeaders[$('meta[name=\'_csrf_header\']').attr('content')] = $('meta[name=\'_csrf\']').attr('content');
  126. factory.ticketId = ticketId;
  127. if (ticketId && (ticketId == 'ALL' || ticketId == 'PROXIED' || ticketId == 'DIRECT' )) {
  128. factory.url = urls.destroy.all;
  129. factory.data = {type: ticketId};
  130. factory.messages.success = 'Removed <strong>' + ticketId + '</strong> tickets successfully.';
  131. factory.messages.error = 'Could not remove <strong>' + ticketId + '</strong> tickets.';
  132. } else {
  133. factory.url = urls.destroy.single;
  134. factory.data = {ticketGrantingTicket: factory.ticketId};
  135. factory.messages.success = 'Ticket is removed successfully.';
  136. factory.messages.error = 'Ticket is not removed successfully.';
  137. }
  138. $.ajax({
  139. type: 'post',
  140. url: factory.url,
  141. //data: { ticketGrantingTicket: factory.ticketId, type: 'ALL' },
  142. data: factory.data,
  143. headers: factory.httpHeaders,
  144. dataType: 'json',
  145. success: function (data) {
  146. // Reinitialize the table data
  147. $('#ssoSessions').DataTable().ajax.reload();
  148. if (data.status != 200) {
  149. alertUser(factory.messages.error, 'danger');
  150. } else {
  151. alertUser(factory.messages.success, 'success');
  152. // Reload the page
  153. location.reload();
  154. }
  155. },
  156. error: function () {
  157. alertUser('There appears to be an error. Please try your request again.', 'danger');
  158. }
  159. });
  160. }
  161. var ssoSessions = (function () {
  162. var createDataTable = function () {
  163. $('#ssoSessions').DataTable({
  164. 'order': [[3, 'desc']],
  165. 'initComplete': function (settings, json) {
  166. if (!json || json.activeSsoSessions.length == 0) {
  167. $('#loadingMessage').hide();
  168. $('#no-cas-sessions').show();
  169. } else {
  170. updateAdminPanels(json);
  171. $('#loadingMessage').hide();
  172. $('#no-cas-sessions').hide();
  173. $('#cas-sessions').show();
  174. }
  175. },
  176. 'language': {
  177. //"infoEmpty": "No active sessions were found",
  178. 'emptyTable': 'No sessions found',
  179. 'zeroRecords': 'No matching sessions found'
  180. },
  181. 'processing': true,
  182. 'ajax': {
  183. 'url': urls.getSessions,
  184. 'dataSrc': 'activeSsoSessions'
  185. },
  186. columnDefs: [
  187. {
  188. 'targets': 0,
  189. 'className': 'details-control',
  190. 'orderable': false,
  191. 'data': null,
  192. 'defaultContent': ''
  193. },
  194. {
  195. 'targets': 1,
  196. 'data': 'is_proxied',
  197. 'className': 'col-xs-2 col-md-1',
  198. 'render': function (data) {
  199. if (data === true) {
  200. return '<span class="label label-primary">Proxy</span>';
  201. } else {
  202. return ' ';
  203. }
  204. }
  205. },
  206. {
  207. 'targets': 2,
  208. 'data': 'authenticated_principal',
  209. 'className': 'col-xs-4 col-md-2',
  210. 'render': function (data, type) {
  211. return type === 'display' && data.length > 20 ?
  212. '<span title="' + data + '">' + data.substr(0, 18) + '...</span>' :
  213. data;
  214. }
  215. },
  216. {
  217. 'targets': 3,
  218. 'data': 'ticket_granting_ticket',
  219. 'className': 'hidden-xs hidden-sm col-md-4',
  220. 'render': function (data, type) {
  221. return type === 'display' && data.length > 20 ?
  222. '<span title="' + data + '">' + data.substr(0, 40) + '...</span>' :
  223. data;
  224. }
  225. },
  226. {
  227. 'targets': 4,
  228. 'data': 'authentication_date_formatted',
  229. 'className': 'col-xs-4 col-sm-4 col-md-2'
  230. },
  231. {
  232. 'targets': 5,
  233. 'data': 'number_of_uses',
  234. 'className': 'hidden-xs hidden-sm visible-md-* col-md-2'
  235. },
  236. {
  237. 'targets': 6,
  238. 'data': 'ticket_granting_ticket',
  239. 'className': 'col-xs-2 col-sm-2 col-md-1',
  240. 'render': function (data) {
  241. return '<button class="btn btn-xs btn-block btn-danger" type="button" value="' + data + '">Destroy</button>';
  242. },
  243. 'orderable': false
  244. },
  245. ]
  246. });
  247. };
  248. var addEventHandlers = function () {
  249. /**
  250. * The Bulk remove button
  251. */
  252. $('#removeAllSessionsButton').on('click', function (e) {
  253. e.preventDefault();
  254. removeSession(this.value);
  255. });
  256. /**
  257. * Individual removal button
  258. */
  259. $(document).on('click', '#ssoSessions tbody tr td:last-child button.btn-danger', function (e) {
  260. e.preventDefault();
  261. removeSession(this.value);
  262. });
  263. /**
  264. * The filter buttons
  265. */
  266. $('#filterButtons .btn').click(function () {
  267. var filter = $(this).data('filter');
  268. var table = $('#ssoSessions').DataTable();
  269. var filterRegex;
  270. var deleteValue;
  271. var btnText;
  272. // Create Filter RegEx:
  273. if (filter == 'proxied') {
  274. filterRegex = '^Proxy$';
  275. deleteValue = 'PROXIED';
  276. btnText = 'Remove <span class="badge">xx</span> Proxied Sessions';
  277. } else if (filter == 'non-proxied') {
  278. filterRegex = '^ $';
  279. deleteValue = 'DIRECT';
  280. btnText = 'Remove <span class="badge">xx</span> Non-Proxied Sessions';
  281. } else {
  282. filterRegex = '';
  283. deleteValue = 'ALL';
  284. btnText = 'Remove All Sessions';
  285. }
  286. var searchTerm = table.column(1).search(filterRegex, true, false).draw();
  287. $('#removeAllSessionsButton').val(deleteValue).html(btnText.replace('xx', searchTerm.page.info().recordsDisplay));
  288. });
  289. // Add event listener for opening and closing details
  290. $(document).on('click', '#ssoSessions tbody td.details-control', function () {
  291. var table = $('#ssoSessions').DataTable();
  292. var tr = $(this).closest('tr');
  293. var row = table.row(tr);
  294. if (row.child.isShown()) {
  295. // This row is already open - close it
  296. row.child.hide();
  297. tr.removeClass('shown');
  298. }
  299. else {
  300. // Open this row
  301. row.child(format(row.data()), 'info').show();
  302. tr.addClass('shown');
  303. }
  304. });
  305. };
  306. // initialization *******
  307. (function init() {
  308. addEventHandlers();
  309. createDataTable();
  310. })();
  311. // Public Methods
  312. return {
  313. /**
  314. * Not used
  315. */
  316. };
  317. })();