added full token value display, scope display, and expiration display to token ui
parent
9d981d034e
commit
028feeaab4
|
@ -51,19 +51,41 @@ var AccessTokenView = Backbone.View.extend({
|
||||||
this.template = _.template($('#tmpl-access-token').html());
|
this.template = _.template($('#tmpl-access-token').html());
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (!this.scopeTemplate) {
|
||||||
|
this.scopeTemplate = _.template($('#tmpl-scope-list').html());
|
||||||
|
}
|
||||||
|
|
||||||
this.model.bind('change', this.render, this);
|
this.model.bind('change', this.render, this);
|
||||||
|
|
||||||
},
|
},
|
||||||
|
|
||||||
events: {
|
events: {
|
||||||
'click .btn-delete':'deleteToken'
|
'click .btn-delete':'deleteToken',
|
||||||
|
'click .token-substring':'showTokenValue'
|
||||||
},
|
},
|
||||||
|
|
||||||
render:function (eventName) {
|
render:function (eventName) {
|
||||||
var json = {token: this.model.toJSON(), client: this.options.client.toJSON()};
|
|
||||||
|
var expirationDate = this.model.get("expiration");
|
||||||
|
|
||||||
|
if (expirationDate == null) {
|
||||||
|
expirationDate = "Never";
|
||||||
|
} else if (!moment(expirationDate).isValid()) {
|
||||||
|
expirationDate = "Unknown";
|
||||||
|
} else {
|
||||||
|
expirationDate = moment(expirationDate).calendar();
|
||||||
|
}
|
||||||
|
|
||||||
|
var json = {token: this.model.toJSON(), client: this.options.client.toJSON(), formattedExpiration: expirationDate};
|
||||||
|
|
||||||
this.$el.html(this.template(json));
|
this.$el.html(this.template(json));
|
||||||
|
|
||||||
|
// hide full value
|
||||||
|
$('.token-full', this.el).hide();
|
||||||
|
|
||||||
|
// show scopes
|
||||||
|
$('.scope-list', this.el).html(this.scopeTemplate({scopes: this.model.get('scopes'), systemScopes: app.systemScopeList}));
|
||||||
|
|
||||||
return this;
|
return this;
|
||||||
},
|
},
|
||||||
|
|
||||||
|
@ -108,6 +130,11 @@ var AccessTokenView = Backbone.View.extend({
|
||||||
close:function () {
|
close:function () {
|
||||||
$(this.el).unbind();
|
$(this.el).unbind();
|
||||||
$(this.el).empty();
|
$(this.el).empty();
|
||||||
|
},
|
||||||
|
|
||||||
|
showTokenValue:function () {
|
||||||
|
$('.token-substring', this.el).hide();
|
||||||
|
$('.token-full', this.el).show();
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
|
@ -20,6 +20,10 @@
|
||||||
<button class="btn btn-small refresh-table"><i class="icon-refresh"></i> Refresh</button>
|
<button class="btn btn-small refresh-table"><i class="icon-refresh"></i> Refresh</button>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
<h2>Access Tokens</h2>
|
||||||
|
|
||||||
|
<div><p>Access tokens and ID tokens are usually short-lived and provide clients with access to specific resources.</p></div>
|
||||||
|
|
||||||
<div id="access-token-table-empty" class="alert alert-info">
|
<div id="access-token-table-empty" class="alert alert-info">
|
||||||
There are no active access tokens.
|
There are no active access tokens.
|
||||||
</div>
|
</div>
|
||||||
|
@ -29,6 +33,7 @@
|
||||||
<tr>
|
<tr>
|
||||||
<th>Client</th>
|
<th>Client</th>
|
||||||
<th>Token Information</th>
|
<th>Token Information</th>
|
||||||
|
<th>Expires</th>
|
||||||
<th></th>
|
<th></th>
|
||||||
</tr>
|
</tr>
|
||||||
</thead>
|
</thead>
|
||||||
|
@ -36,6 +41,10 @@
|
||||||
</tbody>
|
</tbody>
|
||||||
</table>
|
</table>
|
||||||
|
|
||||||
|
<h2>Refresh Tokens</h2>
|
||||||
|
|
||||||
|
<div><p>Refresh tokens are usually long-lived and provide clients with the ability to get new access tokens without end-user involvement.</p></div>
|
||||||
|
|
||||||
<div id="refresh-token-table-empty" class="alert alert-info">
|
<div id="refresh-token-table-empty" class="alert alert-info">
|
||||||
There are no active refresh tokens.
|
There are no active refresh tokens.
|
||||||
</div>
|
</div>
|
||||||
|
@ -45,6 +54,7 @@
|
||||||
<tr>
|
<tr>
|
||||||
<th>Client</th>
|
<th>Client</th>
|
||||||
<th>Token Information</th>
|
<th>Token Information</th>
|
||||||
|
<th>Expires</th>
|
||||||
<th></th>
|
<th></th>
|
||||||
</tr>
|
</tr>
|
||||||
</thead>
|
</thead>
|
||||||
|
@ -59,19 +69,31 @@
|
||||||
|
|
||||||
<script type="text/html" id="tmpl-access-token">
|
<script type="text/html" id="tmpl-access-token">
|
||||||
<td>
|
<td>
|
||||||
<%= client.clientName != null ? client.clientName : client.clientId %>
|
<span title="<%= client.clientId %>"><%= client.clientName != null ? client.clientName : ( client.clientId.substr(0,15) + '...' ) %></span>
|
||||||
|
<% if (token.refreshTokenId != null) { %>
|
||||||
|
<br />
|
||||||
|
<span class="label label-important" title="This access token was issued with an associated refresh token.">+ <i class="icon-time icon-white"></i> Refresh Token</span>
|
||||||
|
<% } %>
|
||||||
|
<% if (token.idTokenId != null) { %>
|
||||||
|
<br />
|
||||||
|
<span class="label label-info" title="This access token was issued with an associated ID token.">+ <i class="icon-user icon-white"></i> ID Token</span>
|
||||||
|
<% } %>
|
||||||
|
|
||||||
</td>
|
</td>
|
||||||
|
|
||||||
<td>
|
<td>
|
||||||
<div class="token-value">
|
<div class="token-value">
|
||||||
<code class="token-substring"><%= token.value.substr(0,27) %> ...</code>
|
<code class="token-substring" style="cursor: pointer" title="Click to display full token value"><%= token.value.substr(0,27) %> ...</code>
|
||||||
<code class="token-full hidden"><%= token.value %></code>
|
<input type="text" readonly style="cursor: text" class="token-full input-xxlarge" value="<%= token.value %>" />
|
||||||
<button class="btn btn-mini">Show Full Token Value</button>
|
|
||||||
</div>
|
</div>
|
||||||
<div class="scope-list"></div>
|
<div class="scope-list"></div>
|
||||||
<!--expandable future information-->
|
<!--expandable future information-->
|
||||||
</td>
|
</td>
|
||||||
|
|
||||||
|
<td>
|
||||||
|
<%= formattedExpiration %>
|
||||||
|
</td>
|
||||||
|
|
||||||
<td>
|
<td>
|
||||||
<button class="btn btn-danger btn-delete pull-right"><i class="icon-trash icon-white"></i> Delete</button>
|
<button class="btn btn-danger btn-delete pull-right"><i class="icon-trash icon-white"></i> Delete</button>
|
||||||
</td>
|
</td>
|
||||||
|
|
Loading…
Reference in New Issue