This repository has been archived on 2024-04-05. You can view files and clone it, but cannot push or open issues/pull-requests.
score-tracker/database/accounts/accounts.js

141 lines
4.1 KiB
JavaScript
Raw Normal View History

2021-11-25 00:56:04 +00:00
const database = require('./../database');
const passport = require('passport');
2021-11-25 03:58:49 +00:00
const localStrategy = require('passport-local').Strategy;
2021-11-25 01:13:33 +00:00
const bcrypt = require('bcrypt');
2021-11-25 00:56:04 +00:00
class User {
constructor(id, email, isAdmin) {
this.id = id;
this.email = email;
this.isAdmin = isAdmin;
}
}
2021-11-25 03:58:49 +00:00
async function checkForAdminAccount() {
const adminUsersQuery = `SELECT *
FROM accounts.users
WHERE admin = true;`;
const adminUsers = await database.executeQuery(adminUsersQuery);
if(adminUsers.length == 0) {
const passwordHash = await generateHash('admin');
const createTempAdminQuery = `INSERT INTO accounts.users(email, password, admin)
VALUES('admin@example.com', $1, true);`;
database.executeQuery(createTempAdminQuery, [passwordHash]);
console.log("Created temp admin account 'admin@example.com' with password 'admin'.");
}
}
checkForAdminAccount();
2021-11-25 03:58:49 +00:00
passport.use(new localStrategy({
usernameField: 'email',
passwordField: 'password'},
(username, password, cb) => {
2021-11-25 01:13:33 +00:00
query = `SELECT user_id, email, password, admin
2021-11-25 00:56:04 +00:00
FROM accounts.users
WHERE email = $1`;
2021-11-25 03:58:49 +00:00
database.executeQuery(query, [username])
2021-11-25 01:13:33 +00:00
.then(result => {
if(result.length > 0) {
const first = result[0];
const matches = bcrypt.compareSync(password, first[2]);
if(matches) {
2021-11-25 03:58:49 +00:00
return cb(null, { id: first[0], email: first[1], admin: first[3] })
2021-11-25 01:13:33 +00:00
}
else
{
2021-11-25 03:58:49 +00:00
return cb(null, false)
2021-11-25 01:13:33 +00:00
}
} else {
2021-11-25 03:58:49 +00:00
return cb(null, false)
2021-11-25 00:56:04 +00:00
}
2021-11-25 01:13:33 +00:00
});
2021-11-25 00:56:04 +00:00
}));
passport.serializeUser((user, done) => {
done(null, user.id)
})
passport.deserializeUser((id, cb) => {
2021-11-25 01:13:33 +00:00
query = `SELECT user_id, email, admin
2021-11-25 00:56:04 +00:00
FROM accounts.users
2021-11-25 03:58:49 +00:00
WHERE user_id = $1`;
2021-11-25 01:13:33 +00:00
database.executeQuery(query, [parseInt(id, 10)])
.then(result => {
cb(null, result[0]);
});
});
2021-11-25 19:40:19 +00:00
async function generateHash(password) {
2021-11-25 19:41:22 +00:00
const salt = bcrypt.genSaltSync();
2021-11-25 19:40:19 +00:00
return bcrypt.hashSync(password, salt);
}
2021-11-25 01:13:33 +00:00
2021-11-25 19:40:19 +00:00
async function create(email, password, isAdmin) {
const hash = await generateHash(password);
2021-11-25 01:13:33 +00:00
2021-11-25 04:40:33 +00:00
const query = `INSERT INTO accounts.users(email, password, admin)
VALUES($1, $2, $3)`;
await database.executeQuery(query, [email, hash, isAdmin]);
2021-11-25 01:25:27 +00:00
}
2021-11-25 19:40:19 +00:00
async function edit(id, email, password, isAdmin) {
if(password) {
const hash = await generateHash(password);
const query = `UPDATE accounts.users
SET email = $2,
password = $3,
admin = $4
WHERE user_id = $1;`;
await database.executeQuery(query, [id, email, hash, isAdmin]);
} else {
const query = `UPDATE accounts.users
SET email = $2,
admin = $3
WHERE user_id = $1;`;
await database.executeQuery(query, [id, email, isAdmin]);
}
return new User(id, email, isAdmin);
}
2021-11-25 19:49:31 +00:00
async function remove(id) {
const query = `DELETE FROM accounts.users
WHERE user_id = $1
RETURNING email, admin;`;
const row = (await database.executeQuery(query, [id]))[0];
return new User(id, row[0], row[1]);
}
async function retrieveAll() {
const query = `SELECT user_id, email, admin
FROM accounts.users
ORDER BY email;`
const table = await database.executeQuery(query);
const accountsList = [];
table.forEach((row) => {
accountsList.push(new User(row[0], row[1], row[2]));
});
return accountsList;
}
2021-11-25 19:04:18 +00:00
async function getFromID(id) {
const query = `SELECT user_id, email, admin
FROM accounts.users
WHERE user_id = $1;`;
const row = (await database.executeQuery(query, [id]))[0];
return new User(id, row[1], row[2]);
}
2021-11-25 19:40:19 +00:00
exports.create = create;
exports.edit = edit;
2021-11-25 19:49:31 +00:00
exports.remove = remove;
exports.retrieveAll = retrieveAll;
2021-11-25 19:04:18 +00:00
exports.getFromID = getFromID;
2021-11-25 03:58:49 +00:00
exports.passport = passport;