- Added add user methods (will need polish imo)

This commit is contained in:
Alexis
2020-07-03 21:44:01 +02:00
parent 3f82b487dc
commit e6f0ee38aa
3 changed files with 51 additions and 22 deletions

View File

@@ -33,13 +33,12 @@ class UserRepository {
resolve(v.toJSON({ omitPivot: true }))
})
.catch(err => {
console.log(err)
reject(new HttpError(500, "Couldn't get users"))
})
})
}
getOneFromUUID(uuid) {
getOneByUUID(uuid) {
return new Promise((resolve, reject) => {
model.forge()
.where({ 'uuid' : uuid })
@@ -48,12 +47,37 @@ class UserRepository {
resolve(v.toJSON({ omitPivot: true }))
})
.catch(err => {
console.log(err)
reject(new HttpError(500, "Couldn't get user"))
})
})
}
getOneByEmail(mail) {
return new Promise((resolve, reject) => {
model.forge()
.where({ 'mail': mail})
.fetch()
.then(v => {
resolve(v.toJSON({ omitPivot: true }))
})
.catch(err => {
reject(new HttpError(500, "Couldn't get user"))
})
})
}
checkIfEmailAvailable(mail) {
return new Promise((resolve, reject) => {
this.getOneByEmail(mail)
.then(() => {
reject(false)
})
.catch(() => {
resolve(true)
})
})
}
addOne(u) {
return new Promise(async (resolve, reject) => {
// Checks if body exists and if the model fits, and throws errors if it doesn't
@@ -67,22 +91,32 @@ class UserRepository {
let hash = await bcrypt.hash(u.password, 10)
let uuid = uuidv4()
// Needs to account for duplicate emails
bookshelf.transaction(t => {
return model.forge({
'uuid': uuid,
'name': u.name,
'mail': u.mail,
'password': hash,
this.checkIfEmailAvailable(u.mail)
.then(() => {
bookshelf.transaction(t => {
return model.forge({
'uuid': uuid,
'name': u.name,
'mail': u.mail,
'password': hash,
})
.save(null, {
transacting: t
})
.catch(err => {
console.log(err)
})
})
.save(null, {
transacting: t
.then(v => {
resolve(this.getOneByUUID(uuid))
})
.catch(err => {
console.log(err)
throw err
})
})
.catch(() => {
reject(new HttpError(403, 'Email is already in use !'))
})
}
})
}