mirror of
https://github.com/IT4Change/Ocelot-Social.git
synced 2026-01-20 20:01:22 +00:00
57 lines
1.9 KiB
JavaScript
57 lines
1.9 KiB
JavaScript
import uuid from 'uuid/v4'
|
|
import bcrypt from 'bcryptjs'
|
|
|
|
export async function createPasswordReset(options) {
|
|
const { driver, code, email, issuedAt = new Date() } = options
|
|
const session = driver.session()
|
|
const cypher = `
|
|
MATCH (u:User)-[:PRIMARY_EMAIL]->(e:EmailAddress {email:$email})
|
|
CREATE(pr:PasswordReset {code: $code, issuedAt: datetime($issuedAt), usedAt: NULL})
|
|
MERGE (u)-[:REQUESTED]->(pr)
|
|
RETURN u
|
|
`
|
|
const transactionRes = await session.run(cypher, {
|
|
issuedAt: issuedAt.toISOString(),
|
|
code,
|
|
email,
|
|
})
|
|
const users = transactionRes.records.map(record => record.get('u'))
|
|
session.close()
|
|
return users
|
|
}
|
|
|
|
export default {
|
|
Mutation: {
|
|
requestPasswordReset: async (_, { email }, { driver }) => {
|
|
const code = uuid().substring(0, 6)
|
|
const [user] = await createPasswordReset({ driver, code, email })
|
|
const name = (user && user.name) || ''
|
|
return { user, code, name, response: true }
|
|
},
|
|
resetPassword: async (_, { email, code, newPassword }, { driver }) => {
|
|
const session = driver.session()
|
|
const stillValid = new Date()
|
|
stillValid.setDate(stillValid.getDate() - 1)
|
|
const encryptedNewPassword = await bcrypt.hashSync(newPassword, 10)
|
|
const cypher = `
|
|
MATCH (pr:PasswordReset {code: $code})
|
|
MATCH (e:EmailAddress {email: $email})<-[:PRIMARY_EMAIL]-(u:User)-[:REQUESTED]->(pr)
|
|
WHERE duration.between(pr.issuedAt, datetime()).days <= 0 AND pr.usedAt IS NULL
|
|
SET pr.usedAt = datetime()
|
|
SET u.encryptedPassword = $encryptedNewPassword
|
|
RETURN pr
|
|
`
|
|
const transactionRes = await session.run(cypher, {
|
|
stillValid,
|
|
email,
|
|
code,
|
|
encryptedNewPassword,
|
|
})
|
|
const [reset] = transactionRes.records.map(record => record.get('pr'))
|
|
const result = !!(reset && reset.properties.usedAt)
|
|
session.close()
|
|
return result
|
|
},
|
|
},
|
|
}
|