72 lines
2.1 KiB
TypeScript
72 lines
2.1 KiB
TypeScript
import { coreModule, NavModelSrv } from 'app/core/core';
|
|
import { dateTimeFormat, dateTimeFormatTimeAgo } from '@grafana/data';
|
|
import { UserSession } from 'app/types';
|
|
import { getBackendSrv } from '@grafana/runtime';
|
|
import { promiseToDigest } from 'app/core/utils/promiseToDigest';
|
|
import { IScope } from 'angular';
|
|
|
|
export class ProfileCtrl {
|
|
sessions: object[] = [];
|
|
navModel: any;
|
|
|
|
/** @ngInject */
|
|
constructor(private $scope: IScope, navModelSrv: NavModelSrv) {
|
|
this.getUserSessions();
|
|
this.navModel = navModelSrv.getNav('profile', 'profile-settings', 0);
|
|
}
|
|
|
|
getUserSessions() {
|
|
promiseToDigest(this.$scope)(
|
|
getBackendSrv()
|
|
.get('/api/user/auth-tokens')
|
|
.then((sessions: UserSession[]) => {
|
|
sessions.reverse();
|
|
|
|
const found = sessions.findIndex((session: UserSession) => {
|
|
return session.isActive;
|
|
});
|
|
|
|
if (found) {
|
|
const now = sessions[found];
|
|
sessions.splice(found, found);
|
|
sessions.unshift(now);
|
|
}
|
|
|
|
this.sessions = sessions.map((session: UserSession) => {
|
|
return {
|
|
id: session.id,
|
|
isActive: session.isActive,
|
|
seenAt: dateTimeFormatTimeAgo(session.seenAt),
|
|
createdAt: dateTimeFormat(session.createdAt, { format: 'MMMM DD, YYYY' }),
|
|
clientIp: session.clientIp,
|
|
browser: session.browser,
|
|
browserVersion: session.browserVersion,
|
|
os: session.os,
|
|
osVersion: session.osVersion,
|
|
device: session.device,
|
|
};
|
|
});
|
|
})
|
|
);
|
|
}
|
|
|
|
revokeUserSession(tokenId: number) {
|
|
promiseToDigest(this.$scope)(
|
|
getBackendSrv()
|
|
.post('/api/user/revoke-auth-token', {
|
|
authTokenId: tokenId,
|
|
})
|
|
.then(() => {
|
|
this.sessions = this.sessions.filter((session: UserSession) => {
|
|
if (session.id === tokenId) {
|
|
return false;
|
|
}
|
|
return true;
|
|
});
|
|
})
|
|
);
|
|
}
|
|
}
|
|
|
|
coreModule.controller('ProfileCtrl', ProfileCtrl);
|