OpenID-Connect-Java-Spring-.../openid-connect-server-webapp/src/main/webapp/resources/js/grant.js

313 lines
10 KiB
JavaScript

/*******************************************************************************
* Copyright 2014 The MITRE Corporation
* and the MIT Kerberos and Internet Trust Consortium
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
******************************************************************************/
var ApprovedSiteModel = Backbone.Model.extend({
idAttribute: 'id',
initialize: function() { },
urlRoot: 'api/approved'
});
var ApprovedSiteCollection = Backbone.Collection.extend({
initialize: function() { },
model: ApprovedSiteModel,
url: 'api/approved'
});
var ApprovedSiteListView = Backbone.View.extend({
tagName: 'span',
initialize:function(options) {
this.options = options;
},
load:function(callback) {
if (this.model.isFetched &&
this.options.clientList.isFetched &&
this.options.systemScopeList.isFetched) {
callback();
return;
}
$('#loadingbox').sheet('show');
$('#loading').html('<span class="label" id="loading-grants">Approved Sites</span> ' +
'<span class="label" id="loading-clients">Clients</span> ' +
'<span class="label" id="loading-scopes">Scopes</span> '
);
$.when(this.model.fetchIfNeeded({success:function(e) {$('#loading-grants').addClass('label-success');}}),
this.options.clientList.fetchIfNeeded({success:function(e) {$('#loading-clients').addClass('label-success');}}),
this.options.systemScopeList.fetchIfNeeded({success:function(e) {$('#loading-scopes').addClass('label-success');}}))
.done(function() {
$('#loadingbox').sheet('hide');
callback();
});
},
events: {
"click .refresh-table":"refreshTable"
},
render:function (eventName) {
$(this.el).html($('#tmpl-grant-table').html());
var approvedSiteCount = 0;
var whitelistCount = 0;
var _self = this;
_.each(this.model.models, function(approvedSite) {
// look up client
var client = this.options.clientList.getByClientId(approvedSite.get('clientId'));
if (client != null) {
if (approvedSite.get('whitelistedSite') != null) {
var view = new ApprovedSiteView({model: approvedSite, client: client, systemScopeList: this.options.systemScopeList});
view.parentView = _self;
$('#grant-whitelist-table', this.el).append(view.render().el);
whitelistCount = whitelistCount + 1;
} else {
var view = new ApprovedSiteView({model: approvedSite, client: client, systemScopeList: this.options.systemScopeList});
view.parentView = _self;
$('#grant-table', this.el).append(view.render().el);
approvedSiteCount = approvedSiteCount + 1;
}
}
}, this);
this.togglePlaceholder();
return this;
},
togglePlaceholder:function() {
// count the whitelisted and non-whitelisted entries
var wl = 0;
var gr = 0;
for (var i = 0; i < this.model.length; i++) {
if (this.model.at(i).get('whitelistedSite') != null) {
wl += 1;
} else {
gr += 1;
}
}
if (wl > 0) {
$('#grant-whitelist-table', this.el).show();
$('#grant-whitelist-table-empty', this.el).hide();
} else {
$('#grant-whitelist-table', this.el).hide();
$('#grant-whitelist-table-empty', this.el).show();
}
if (gr > 0) {
$('#grant-table', this.el).show();
$('#grant-table-empty', this.el).hide();
} else {
$('#grant-table', this.el).hide();
$('#grant-table-empty', this.el).show();
}
$('#approvde-site-count', this.el).html(gr);
$('#whitelist-count', this.el).html(wl);
},
refreshTable:function(e) {
e.preventDefault();
var _self = this;
$('#loadingbox').sheet('show');
$('#loading').html('<span class="label" id="loading-grants">Approved Sites</span> ' +
'<span class="label" id="loading-clients">Clients</span> ' +
'<span class="label" id="loading-scopes">Scopes</span> '
);
$.when(this.model.fetch({success:function(e) {$('#loading-grants').addClass('label-success');}}),
this.options.clientList.fetch({success:function(e) {$('#loading-clients').addClass('label-success');}}),
this.options.systemScopeList.fetch({success:function(e) {$('#loading-scopes').addClass('label-success');}}))
.done(function() {
$('#loadingbox').sheet('hide');
_self.render();
});
}
});
var ApprovedSiteView = Backbone.View.extend({
tagName: 'tr',
initialize: function(options) {
this.options = options;
if (!this.template) {
this.template = _.template($('#tmpl-grant').html());
}
if (!this.scopeTemplate) {
this.scopeTemplate = _.template($('#tmpl-scope-list').html());
}
if (!this.moreInfoTemplate) {
this.moreInfoTemplate = _.template($('#tmpl-client-more-info-block').html());
}
},
render: function() {
var creationDate = this.model.get("creationDate");
var accessDate = this.model.get("accessDate");
var timeoutDate = this.model.get("timeoutDate");
var displayCreationDate = "Unknown";
var hoverCreationDate = "";
if (creationDate == null || !moment(creationDate).isValid()) {
displayCreationDate = "Unknown";
hoverCreationDate = "";
} else {
creationDate = moment(creationDate);
if (moment().diff(creationDate, 'months') < 6) {
displayCreationDate = creationDate.fromNow();
} else {
displayCreationDate = creationDate.format("MMMM Do, YYYY");
}
hoverCreationDate = creationDate.format("MMMM Do, YYYY [at] h:mmA");
}
var displayAccessDate = "Unknown";
var hoverAccessDate = "";
if (accessDate == null || !moment(accessDate).isValid()) {
displayAccessDate = "Unknown";
hoverAccessDate = "";
} else {
accessDate = moment(accessDate);
if (moment().diff(accessDate, 'months') < 6) {
displayAccessDate = accessDate.fromNow();
} else {
displayAccessDate = accessDate.format("MMMM Do, YYYY");
}
hoverAccessDate = accessDate.format("MMMM Do, YYYY [at] h:mmA");
}
var displayTimeoutDate = "Unknown";
var hoverTimeoutDate = "";
if (timeoutDate == null) {
displayTimeoutDate = "Never";
hoverTimeoutDate = "";
} else if(!moment(timeoutDate).isValid()) {
displayTimeoutDate = "Unknown";
hoverTimeoutDate = "";
} else {
timeoutDate = moment(timeoutDate);
if (moment().diff(timeoutDate, 'months') < 6) {
displayTimeoutDate = timeoutDate.fromNow();
} else {
displayTimeoutDate = timeoutDate.format("MMMM Do, YYYY");
}
hoverTimeoutDate = timeoutDate.format("MMMM Do, YYYY [at] h:mmA");
}
var formattedDate = {displayCreationDate: displayCreationDate, hoverCreationDate: hoverCreationDate,
displayAccessDate: displayAccessDate, hoverAccessDate: hoverAccessDate,
displayTimeoutDate: displayTimeoutDate, hoverTimeoutDate: hoverTimeoutDate};
var json = {grant: this.model.toJSON(), client: this.options.client.toJSON(), formattedDate: formattedDate};
this.$el.html(this.template(json));
$('.scope-list', this.el).html(this.scopeTemplate({scopes: this.model.get('allowedScopes'), systemScopes: this.options.systemScopeList}));
$('.client-more-info-block', this.el).html(this.moreInfoTemplate({client: this.options.client.toJSON()}));
this.$('.dynamically-registered').tooltip({title: 'This client was dynamically registered'});
this.$('.whitelisted-site').tooltip({title: 'This site was whitelisted by an adminstrator'});
this.$('.tokens').tooltip({title: 'Number of currently active access tokens.'});
return this;
},
events: {
'click .btn-delete': 'deleteApprovedSite',
'click .toggleMoreInformation': 'toggleMoreInformation'
},
deleteApprovedSite:function(e) {
e.preventDefault();
if (confirm("Are you sure you want to revoke access to this site?")) {
var self = this;
this.model.destroy({
success:function () {
self.$el.fadeTo("fast", 0.00, function () { //fade
$(this).slideUp("fast", function () { //slide up
$(this).remove(); //then remove from the DOM
self.parentView.togglePlaceholder();
});
});
},
error:function (error, response) {
//Pull out the response text.
var responseJson = JSON.parse(response.responseText);
//Display an alert with an error message
$('#modalAlert div.modal-header').html(responseJson.error);
$('#modalAlert div.modal-body').html(responseJson.error_description);
$("#modalAlert").modal({ // wire up the actual modal functionality and show the dialog
"backdrop" : "static",
"keyboard" : true,
"show" : true // ensure the modal is shown immediately
});
}
});
this.parentView.delegateEvents();
}
return false;
},
toggleMoreInformation:function(e) {
e.preventDefault();
if ($('.moreInformation', this.el).is(':visible')) {
// hide it
$('.moreInformation', this.el).hide('fast');
$('.toggleMoreInformation i', this.el).attr('class', 'icon-chevron-right');
$('.moreInformationContainer', this.el).removeClass('alert').removeClass('alert-info').addClass('muted');
} else {
// show it
$('.moreInformation', this.el).show('fast');
$('.toggleMoreInformation i', this.el).attr('class', 'icon-chevron-down');
$('.moreInformationContainer', this.el).addClass('alert').addClass('alert-info').removeClass('muted');
}
},
close:function() {
$(this.el).unbind();
$(this.el).empty();
}
});