forked from canada-ca/tracker
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathverify-account.js
More file actions
125 lines (113 loc) · 3.45 KB
/
Copy pathverify-account.js
File metadata and controls
125 lines (113 loc) · 3.45 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
import { GraphQLNonNull, GraphQLString } from 'graphql'
import { mutationWithClientMutationId } from 'graphql-relay'
import { t } from '@lingui/macro'
import { verifyAccountUnion } from '../unions'
export const verifyAccount = new mutationWithClientMutationId({
name: 'VerifyAccount',
description:
'This mutation allows the user to verify their account through a token sent in an email.',
inputFields: () => ({
verifyTokenString: {
type: GraphQLNonNull(GraphQLString),
description: 'Token sent via email, and located in url.',
},
}),
outputFields: () => ({
result: {
type: verifyAccountUnion,
description:
'`VerifyAccountUnion` returning either a `VerifyAccountResult`, or `VerifyAccountError` object.',
resolve: (payload) => payload,
},
}),
mutateAndGetPayload: async (
args,
{
i18n,
query,
collections,
transaction,
auth: { verifyToken },
loaders: { loadUserByKey },
validators: { cleanseInput },
},
) => {
// Cleanse Input
const verifyTokenString = cleanseInput(args.verifyTokenString)
// Get info from token
const tokenParameters = verifyToken({ token: verifyTokenString })
// Check to see if userKey exists in tokenParameters
if (
tokenParameters.userKey === 'undefined' ||
typeof tokenParameters.userKey === 'undefined'
) {
console.warn(
`When validating account, user attempted to verify account, but userKey is not located in the token parameters.`,
)
return {
_type: 'error',
code: 400,
description: i18n._(
t`Unable to verify account. Please request a new email.`,
),
}
}
// Auth shouldn't be needed with this
// Check if user exists
const { userKey } = tokenParameters
const user = await loadUserByKey.load(userKey)
if (typeof user === 'undefined') {
console.warn(
`User: ${userKey} attempted to verify account, however no account is associated with this id.`,
)
return {
_type: 'error',
code: 400,
description: i18n._(
t`Unable to verify account. Please request a new email.`,
),
}
}
// Generate list of collections names
const collectionStrings = []
for (const property in collections) {
collectionStrings.push(property.toString())
}
// Setup Transaction
const trx = await transaction(collectionStrings)
// Verify users account
try {
await trx.step(
() => query`
WITH users
UPSERT { _key: ${user._key} }
INSERT { emailValidated: true }
UPDATE { emailValidated: true }
IN users
`,
)
} catch (err) {
console.error(
`Trx step error occurred when upserting email validation for user: ${user._key}: ${err}`,
)
throw new Error(i18n._(t`Unable to verify account. Please try again.`))
}
try {
await trx.commit()
} catch (err) {
console.error(
`Trx commit error occurred when upserting email validation for user: ${user._key}: ${err}`,
)
throw new Error(i18n._(t`Unable to verify account. Please try again.`))
}
console.info(
`User: ${user._key} successfully email validated their account.`,
)
return {
_type: 'success',
status: i18n._(
t`Successfully email verified account, and set TFA send method to email.`,
),
}
},
})