added full token value display, scope display, and expiration display to token ui

pull/576/head
Justin Richer 2014-03-01 10:32:17 +00:00
parent 9d981d034e
commit 028feeaab4
2 changed files with 55 additions and 6 deletions

View File

@ -51,19 +51,41 @@ var AccessTokenView = Backbone.View.extend({
this.template = _.template($('#tmpl-access-token').html());
}
if (!this.scopeTemplate) {
this.scopeTemplate = _.template($('#tmpl-scope-list').html());
}
this.model.bind('change', this.render, this);
},
events: {
'click .btn-delete':'deleteToken'
'click .btn-delete':'deleteToken',
'click .token-substring':'showTokenValue'
},
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));
// 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;
},
@ -108,6 +130,11 @@ var AccessTokenView = Backbone.View.extend({
close:function () {
$(this.el).unbind();
$(this.el).empty();
},
showTokenValue:function () {
$('.token-substring', this.el).hide();
$('.token-full', this.el).show();
}
});

View File

@ -20,6 +20,10 @@
<button class="btn btn-small refresh-table"><i class="icon-refresh"></i> Refresh</button> &nbsp;
</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">
There are no active access tokens.
</div>
@ -29,6 +33,7 @@
<tr>
<th>Client</th>
<th>Token Information</th>
<th>Expires</th>
<th></th>
</tr>
</thead>
@ -36,6 +41,10 @@
</tbody>
</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">
There are no active refresh tokens.
</div>
@ -45,6 +54,7 @@
<tr>
<th>Client</th>
<th>Token Information</th>
<th>Expires</th>
<th></th>
</tr>
</thead>
@ -59,19 +69,31 @@
<script type="text/html" id="tmpl-access-token">
<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>
<div class="token-value">
<code class="token-substring"><%= token.value.substr(0,27) %> ...</code>
<code class="token-full hidden"><%= token.value %></code>
<button class="btn btn-mini">Show Full Token Value</button>
<code class="token-substring" style="cursor: pointer" title="Click to display full token value"><%= token.value.substr(0,27) %> ...</code>
<input type="text" readonly style="cursor: text" class="token-full input-xxlarge" value="<%= token.value %>" />
</div>
<div class="scope-list"></div>
<!--expandable future information-->
</td>
<td>
<%= formattedExpiration %>
</td>
<td>
<button class="btn btn-danger btn-delete pull-right"><i class="icon-trash icon-white"></i> Delete</button>
</td>