JWK Set by value UI added to resource registration
parent
d09b003bc3
commit
49c8804a1c
|
@ -28,7 +28,10 @@ var ResRegClient = Backbone.Model.extend({
|
||||||
token_endpoint_auth_method:null,
|
token_endpoint_auth_method:null,
|
||||||
scope:null,
|
scope:null,
|
||||||
policy_uri:null,
|
policy_uri:null,
|
||||||
|
|
||||||
jwks_uri:null,
|
jwks_uri:null,
|
||||||
|
jwks:null,
|
||||||
|
jwksType:'URI',
|
||||||
|
|
||||||
application_type:null,
|
application_type:null,
|
||||||
registration_access_token:null,
|
registration_access_token:null,
|
||||||
|
@ -105,6 +108,16 @@ var ResRegRootView = Backbone.View.extend({
|
||||||
|
|
||||||
client.fetch({success: function() {
|
client.fetch({success: function() {
|
||||||
|
|
||||||
|
if (client.get("jwks")) {
|
||||||
|
client.set({
|
||||||
|
jwksType: "VAL"
|
||||||
|
}, { silent: true });
|
||||||
|
} else {
|
||||||
|
client.set({
|
||||||
|
jwksType: "URI"
|
||||||
|
}, { silent: true });
|
||||||
|
}
|
||||||
|
|
||||||
var view = new ResRegEditView({model: client, systemScopeList: app.systemScopeList});
|
var view = new ResRegEditView({model: client, systemScopeList: app.systemScopeList});
|
||||||
|
|
||||||
view.load(function() {
|
view.load(function() {
|
||||||
|
@ -168,7 +181,8 @@ var ResRegEditView = Backbone.View.extend({
|
||||||
"click .btn-cancel":"cancel",
|
"click .btn-cancel":"cancel",
|
||||||
"click .btn-delete":"deleteClient",
|
"click .btn-delete":"deleteClient",
|
||||||
"change #logoUri input":"previewLogo",
|
"change #logoUri input":"previewLogo",
|
||||||
"change #tokenEndpointAuthMethod input:radio":"toggleClientCredentials"
|
"change #tokenEndpointAuthMethod input:radio":"toggleClientCredentials",
|
||||||
|
"change #jwkSelector input:radio":"toggleJWKSetType"
|
||||||
},
|
},
|
||||||
|
|
||||||
cancel:function(e) {
|
cancel:function(e) {
|
||||||
|
@ -237,6 +251,25 @@ var ResRegEditView = Backbone.View.extend({
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Set up the form based on the JWK Set selector
|
||||||
|
*/
|
||||||
|
toggleJWKSetType:function() {
|
||||||
|
var jwkSelector = $('#jwkSelector input:radio', this.el).filter(':checked').val();
|
||||||
|
|
||||||
|
if (jwkSelector == 'URI') {
|
||||||
|
$('#jwksUri', this.el).show();
|
||||||
|
$('#jwks', this.el).hide();
|
||||||
|
} else if (jwkSelector == 'VAL') {
|
||||||
|
$('#jwksUri', this.el).hide();
|
||||||
|
$('#jwks', this.el).show();
|
||||||
|
} else {
|
||||||
|
$('#jwksUri', this.el).hide();
|
||||||
|
$('#jwks', this.el).hide();
|
||||||
|
}
|
||||||
|
|
||||||
|
},
|
||||||
|
|
||||||
disableUnsupportedJOSEItems:function(serverSupported, query) {
|
disableUnsupportedJOSEItems:function(serverSupported, query) {
|
||||||
var supported = ['default'];
|
var supported = ['default'];
|
||||||
if (serverSupported) {
|
if (serverSupported) {
|
||||||
|
@ -282,6 +315,38 @@ var ResRegEditView = Backbone.View.extend({
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// process the JWKS
|
||||||
|
var jwksUri = null;
|
||||||
|
var jwks = null;
|
||||||
|
var jwkSelector = $('#jwkSelector input:radio', this.el).filter(':checked').val();
|
||||||
|
|
||||||
|
if (jwkSelector == 'URI') {
|
||||||
|
jwksUri = $('#jwksUri input').val();
|
||||||
|
jwks = null;
|
||||||
|
} else if (jwkSelector == 'VAL') {
|
||||||
|
jwksUri = null;
|
||||||
|
try {
|
||||||
|
jwks = JSON.parse($('#jwks textarea').val());
|
||||||
|
} catch (e) {
|
||||||
|
console.log("An error occurred when parsing the JWK Set");
|
||||||
|
|
||||||
|
//Display an alert with an error message
|
||||||
|
$('#modalAlert div.modal-header').html("JWK Set Error");
|
||||||
|
$('#modalAlert div.modal-body').html("There was an error parsing the public key from the JSON Web Key set. Check the value and try again.");
|
||||||
|
|
||||||
|
$("#modalAlert").modal({ // wire up the actual modal functionality and show the dialog
|
||||||
|
"backdrop" : "static",
|
||||||
|
"keyboard" : true,
|
||||||
|
"show" : true // ensure the modal is shown immediately
|
||||||
|
});
|
||||||
|
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
jwksUri = null;
|
||||||
|
jwks = null;
|
||||||
|
}
|
||||||
|
|
||||||
var attrs = {
|
var attrs = {
|
||||||
client_name:$('#clientName input').val(),
|
client_name:$('#clientName input').val(),
|
||||||
logo_uri:$('#logoUri input').val(),
|
logo_uri:$('#logoUri input').val(),
|
||||||
|
@ -291,7 +356,8 @@ var ResRegEditView = Backbone.View.extend({
|
||||||
policy_uri: $('#policyUri input').val(),
|
policy_uri: $('#policyUri input').val(),
|
||||||
client_uri: $('#clientUri input').val(),
|
client_uri: $('#clientUri input').val(),
|
||||||
application_type: $('#applicationType input').filter(':checked').val(),
|
application_type: $('#applicationType input').filter(':checked').val(),
|
||||||
jwks_uri: $('#jwksUri input').val(),
|
jwks_uri: jwksUri,
|
||||||
|
jwks: jwks,
|
||||||
token_endpoint_auth_method: $('#tokenEndpointAuthMethod input').filter(':checked').val(),
|
token_endpoint_auth_method: $('#tokenEndpointAuthMethod input').filter(':checked').val(),
|
||||||
contacts: contacts,
|
contacts: contacts,
|
||||||
token_endpoint_auth_signing_alg: this.defaultToNull($('#tokenEndpointAuthSigningAlg select').val())
|
token_endpoint_auth_signing_alg: this.defaultToNull($('#tokenEndpointAuthSigningAlg select').val())
|
||||||
|
@ -310,6 +376,17 @@ var ResRegEditView = Backbone.View.extend({
|
||||||
// switch to an "edit" view
|
// switch to an "edit" view
|
||||||
app.navigate('dev/resource/edit', {trigger: true});
|
app.navigate('dev/resource/edit', {trigger: true});
|
||||||
_self.remove();
|
_self.remove();
|
||||||
|
|
||||||
|
if (_self.model.get("jwks")) {
|
||||||
|
_self.model.set({
|
||||||
|
jwksType: "VAL"
|
||||||
|
}, { silent: true });
|
||||||
|
} else {
|
||||||
|
_self.model.set({
|
||||||
|
jwksType: "URI"
|
||||||
|
}, { silent: true });
|
||||||
|
}
|
||||||
|
|
||||||
var view = new ResRegEditView({model: _self.model, systemScopeList: _self.options.systemScopeList});
|
var view = new ResRegEditView({model: _self.model, systemScopeList: _self.options.systemScopeList});
|
||||||
|
|
||||||
view.load(function() {
|
view.load(function() {
|
||||||
|
@ -376,6 +453,7 @@ var ResRegEditView = Backbone.View.extend({
|
||||||
|
|
||||||
this.toggleClientCredentials();
|
this.toggleClientCredentials();
|
||||||
this.previewLogo();
|
this.previewLogo();
|
||||||
|
this.toggleJWKSetType();
|
||||||
|
|
||||||
// disable unsupported JOSE algorithms
|
// disable unsupported JOSE algorithms
|
||||||
this.disableUnsupportedJOSEItems(app.serverConfiguration.token_endpoint_auth_signing_alg_values_supported, '#tokenEndpointAuthSigningAlg option');
|
this.disableUnsupportedJOSEItems(app.serverConfiguration.token_endpoint_auth_signing_alg_values_supported, '#tokenEndpointAuthSigningAlg option');
|
||||||
|
|
|
@ -259,12 +259,24 @@
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div class="control-group" id="jwksUri">
|
<div class="control-group">
|
||||||
<label class="control-label" data-i18n="client.client-form.jwk-set">JWK Set</label>
|
<label class="control-label" data-i18n="client.client-form.jwk-set">Public Key Set</label>
|
||||||
<div class="controls">
|
<div class="controls" id="jwkSelector">
|
||||||
<input placeholder="https://" value="<%-client.jwks_uri ? client.jwks_uri : ''%>" maxlength="1000" type="text" class=""/>
|
<div>
|
||||||
<p class="help-block" data-i18n="client.client-form.jwk-set-help">URL for the client's JSON Web Key set</p>
|
<input id="jwkstype-uri" type="radio" name="jwksType" value="URI" <%-(client.jwksType == 'URI' ? 'checked' : '')%>>
|
||||||
</div>
|
<label for="jwkstype-uri" class="radio inline" data-i18n="client.client-form.jwks-by-uri">By URI</label>
|
||||||
|
<input id="jwkstype-value" type="radio" name="jwksType" value="VAL" <%-(client.jwksType == 'VAL' ? 'checked' : '')%>>
|
||||||
|
<label for="jwkstype-value" class="radio inline" data-i18n="client.client-form.jwks-by-value">By Value</label>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
<div class="controls" id="jwksUri">
|
||||||
|
<input placeholder="https://" value="<%-client.jwks_uri%>" maxlength="1000" type="text" class=""/>
|
||||||
|
<p class="help-block" data-i18n="client.client-form.jwk-set-help">URL for the client's JSON Web Key set (must be reachable by the server)</p>
|
||||||
|
</div>
|
||||||
|
<div class="controls" id="jwks">
|
||||||
|
<textarea class="input-xlarge" placeholder="{ "keys": [ ] }" maxlength="4000" type="text" rows="8"><%- (client.jwks != null ? JSON.stringify(client.jwks, null, ' ') : "") %></textarea>
|
||||||
|
<p class="help-block" data-i18n="client.client-form.jwk-set-value-help">JSON Web Key set</p>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
|
|
Loading…
Reference in New Issue