forked from canada-ca/tracker
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrefresh-tokens.js
More file actions
190 lines (166 loc) · 5.04 KB
/
Copy pathrefresh-tokens.js
File metadata and controls
190 lines (166 loc) · 5.04 KB
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
import { t } from '@lingui/macro'
import { mutationWithClientMutationId } from 'graphql-relay'
import { refreshTokensUnion } from '../unions'
const { REFRESH_TOKEN_EXPIRY, REFRESH_KEY } = process.env
export const refreshTokens = new mutationWithClientMutationId({
name: 'RefreshTokens',
description:
'This mutation allows users to give their current auth token, and refresh token, and receive a freshly updated auth token.',
outputFields: () => ({
result: {
type: refreshTokensUnion,
description:
'Refresh tokens union returning either a `authResult` or `authenticateError` object.',
resolve: (payload) => payload,
},
}),
mutateAndGetPayload: async (
_,
{
i18n,
response,
request,
query,
collections,
transaction,
uuidv4,
jwt,
moment,
auth: { tokenize },
loaders: { loadUserByKey },
},
) => {
// check uuid matches
let refreshToken
if ('refresh_token' in request.cookies) {
refreshToken = request.cookies.refresh_token
}
if (typeof refreshToken === 'undefined') {
console.warn(
`User attempted to refresh tokens without refresh_token set.`,
)
return {
_type: 'error',
code: 400,
description: i18n._(t`Unable to refresh tokens, please sign in.`),
}
}
let decodedRefreshToken
try {
decodedRefreshToken = jwt.verify(refreshToken, REFRESH_KEY)
} catch (err) {
console.warn(
`User attempted to verify refresh token, however the token is invalid: ${err}`,
)
return {
_type: 'error',
code: 400,
description: i18n._(t`Unable to refresh tokens, please sign in.`),
}
}
const { userKey, uuid } = decodedRefreshToken.parameters
const user = await loadUserByKey.load(userKey)
if (typeof user === 'undefined') {
console.warn(
`User: ${userKey} attempted to refresh tokens with an invalid user id.`,
)
return {
_type: 'error',
code: 400,
description: i18n._(t`Unable to refresh tokens, please sign in.`),
}
}
// check to see if refresh token is expired
const currentTime = moment().format()
const expiryTime = moment(user.refreshInfo.expiresAt).format()
if (moment(currentTime).isAfter(expiryTime)) {
console.warn(
`User: ${userKey} attempted to refresh tokens with an expired uuid.`,
)
return {
_type: 'error',
code: 400,
description: i18n._(t`Unable to refresh tokens, please sign in.`),
}
}
// check to see if token ids match
if (user.refreshInfo.refreshId !== uuid) {
console.warn(
`User: ${userKey} attempted to refresh tokens with non matching uuids.`,
)
return {
_type: 'error',
code: 400,
description: i18n._(t`Unable to refresh tokens, please sign in.`),
}
}
const newRefreshId = uuidv4()
const refreshInfo = {
refreshId: newRefreshId,
rememberMe: user.refreshInfo.rememberMe,
expiresAt: new Date(
new Date().getTime() + REFRESH_TOKEN_EXPIRY * 60 * 24 * 60 * 1000,
),
}
// Generate list of collections names
const collectionStrings = []
for (const property in collections) {
collectionStrings.push(property.toString())
}
// Setup Transaction
const trx = await transaction(collectionStrings)
try {
await trx.step(
() => query`
WITH users
UPSERT { _key: ${user._key} }
INSERT { refreshInfo: ${refreshInfo} }
UPDATE { refreshInfo: ${refreshInfo} }
IN users
`,
)
} catch (err) {
console.error(
`Trx step error occurred when attempting to refresh tokens for user: ${userKey}: ${err}`,
)
throw new Error(i18n._(t`Unable to refresh tokens, please sign in.`))
}
try {
await trx.commit()
} catch (err) {
console.error(
`Trx commit error occurred while user: ${userKey} attempted to refresh tokens: ${err}`,
)
throw new Error(i18n._(t`Unable to refresh tokens, please sign in.`))
}
const newAuthToken = tokenize({ parameters: { userKey } })
console.info(`User: ${userKey} successfully refreshed their tokens.`)
const newRefreshToken = tokenize({
parameters: { userKey: user._key, uuid: newRefreshId },
expPeriod: 168,
secret: String(REFRESH_KEY),
})
// if the user does not want to stay logged in, create http session cookie
let cookieData = {
httpOnly: true,
secure: false,
sameSite: true,
expires: 0,
}
// if user wants to stay logged in create normal http cookie
if (user.refreshInfo.rememberMe) {
cookieData = {
maxAge: REFRESH_TOKEN_EXPIRY * 60 * 24 * 60 * 1000,
httpOnly: true,
secure: false,
sameSite: true,
}
}
response.cookie('refresh_token', newRefreshToken, cookieData)
return {
_type: 'authResult',
token: newAuthToken,
user,
}
},
})