-
Notifications
You must be signed in to change notification settings - Fork 12
/
CognitoAuthScheme.js
211 lines (175 loc) · 5.02 KB
/
CognitoAuthScheme.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
if (!process.client || !"fetch" in window) {
require("cross-fetch/polyfill");
}
import {
AuthenticationDetails,
CognitoUserPool,
CognitoUser,
} from "amazon-cognito-identity-js";
import { UniversalStorageWrapper } from "@sirdiego/nuxt-auth-cognito-scheme/UniversalStorageWrapper";
export default class CognitoAuthScheme {
constructor(auth, options) {
this.$auth = auth;
this.name = options._name;
this.options = Object.assign({}, DEFAULTS, options);
this.$storage = new UniversalStorageWrapper(this.$auth.$storage, this.options.clientId);
this.$pool = new CognitoUserPool({
UserPoolId: this.options.userPoolId,
ClientId: this.options.clientId,
Storage: this.$storage,
});
}
_setToken(token) {
if (this.options.globalToken) {
this.$auth.ctx.app.$axios.setHeader(this.options.tokenName, token);
}
}
_clearToken() {
if (this.options.globalToken) {
this.$auth.ctx.app.$axios.setHeader(this.options.tokenName, false);
}
}
async mounted() {
if (this.options.tokenRequired) {
const cognitoUser = this.$pool.getCurrentUser();
let token = false;
if (cognitoUser) {
try {
token = await new Promise((resolve, reject) => {
cognitoUser.getSession((err, cognitoUserSession) => {
if (err) {
return reject(err);
}
return resolve(cognitoUserSession.getIdToken().getJwtToken());
});
});
} catch (error) {}
}
this._setToken(token);
}
return this.$auth.fetchUserOnce();
}
_scheduleRefresh() {
if (
this.options.refreshInterval &&
process.client &&
!this.$auth.$storage.getState("interval") &&
this.$auth.$state.user
) {
this.$auth.$storage.setState(
"interval",
setInterval(() => {
this.$auth.fetchUser(true);
}, this.options.refreshInterval)
);
}
}
async login({ data }) {
await this.$auth.reset();
const result = await this._login(data.username, data.password);
const idToken = result.getIdToken().getJwtToken();
const token = this.options.tokenType
? this.options.tokenType + " " + idToken
: idToken;
this._setToken(token);
if (this.options.autoFetchUser) {
await this.fetchUser();
}
return result;
}
async setUserToken(tokenValue) {
const token = this.options.tokenType
? this.options.tokenType + " " + tokenValue
: tokenValue;
this._setToken(token);
return this.fetchUser();
}
async fetchUser(forceRefresh) {
const cognitoUser = this.$pool.getCurrentUser();
if (cognitoUser === null) {
return;
}
const user = await new Promise((resolve, reject) => {
const handler = (err, cognitoUserSession) => {
if (err) {
return reject(err);
}
cognitoUser.getUserAttributes(async (err, attributes) => {
if (err) {
return reject(err);
}
let user = {};
attributes.map(({Name, Value}) => (user[Name] = Value));
user.groups =
cognitoUserSession.getIdToken().payload["cognito:groups"] || [];
if (this.options.fetchUserCallback) {
const custom = await fetchUserCallback(cognitoUser);
user = {...user, ...custom};
}
return resolve(user);
});
}
return cognitoUser.getSession((error, session) => {
if (error) {
return reject(error);
}
if (!forceRefresh) {
return handler(error, session);
}
return cognitoUser.refreshSession(session.getRefreshToken(), handler);
});
});
this._scheduleRefresh();
this.$auth.setUser(user);
}
async logout() {
const cognitoUser = this.$pool.getCurrentUser();
if (cognitoUser) {
cognitoUser.signOut();
}
return this.$auth.reset();
}
async reset() {
if (this.options.tokenRequired) {
this._clearToken();
}
if (process.client) {
const interval = this.$auth.$storage.getState("interval");
if (interval) {
clearInterval(interval);
this.$auth.$storage.removeState("interval");
}
}
this.$auth.setUser(false);
this.$storage.clear();
return Promise.resolve();
}
async _login(Username, Password) {
return new Promise((resolve, reject) => {
const authenticationDetails = new AuthenticationDetails({
Username,
Password,
});
const cognitoUser = new CognitoUser({
Username,
Pool: this.$pool,
Storage: this.$storage,
});
cognitoUser.authenticateUser(authenticationDetails, {
onSuccess: (result) => resolve(result),
onFailure: (error) => reject(error),
});
});
}
}
const DEFAULTS = {
tokenType: "Bearer",
globalToken: true,
tokenRequired: true,
tokenName: "Authorization",
autoFetchUser: true,
userPoolId: undefined,
clientId: undefined,
refreshInterval: 5 * 60 * 1000,
fetchUserCallback: false,
};