2020-10-31 13:33:59 -07:00
|
|
|
import { Router } from 'express';
|
|
|
|
import SQL from 'sql-template-strings';
|
|
|
|
import {ulid} from "ulid";
|
2020-11-02 10:31:05 -08:00
|
|
|
import {buildDict, makeId} from "../../src/helpers";
|
2020-10-31 13:33:59 -07:00
|
|
|
import translations from "../translations";
|
|
|
|
import jwt from "../../src/jwt";
|
|
|
|
import mailer from "../../src/mailer";
|
2020-11-02 10:31:05 -08:00
|
|
|
import config from '../config';
|
2020-10-31 13:33:59 -07:00
|
|
|
|
|
|
|
const now = Math.floor(Date.now() / 1000);
|
|
|
|
|
|
|
|
const USERNAME_CHARS = 'A-Za-zĄĆĘŁŃÓŚŻŹąćęłńóśżź0-9._-';
|
|
|
|
|
|
|
|
const normalise = s => s.trim().toLowerCase();
|
|
|
|
|
|
|
|
const saveAuthenticator = async (db, type, user, payload, validForMinutes = null) => {
|
|
|
|
const id = ulid();
|
|
|
|
await db.get(SQL`INSERT INTO authenticators (id, userId, type, payload, validUntil) VALUES (
|
|
|
|
${id},
|
|
|
|
${user ? user.id : null},
|
|
|
|
${type},
|
|
|
|
${JSON.stringify(payload)},
|
|
|
|
${validForMinutes ? (now + validForMinutes * 60) : null}
|
|
|
|
)`);
|
|
|
|
return id;
|
|
|
|
}
|
|
|
|
|
|
|
|
const findAuthenticator = async (db, id, type) => {
|
|
|
|
const authenticator = await db.get(SQL`SELECT * FROM authenticators
|
|
|
|
WHERE id = ${id}
|
|
|
|
AND type = ${type}
|
|
|
|
AND (validUntil IS NULL OR validUntil > ${now})
|
|
|
|
`);
|
|
|
|
|
|
|
|
if (authenticator) {
|
|
|
|
authenticator.payload = JSON.parse(authenticator.payload);
|
|
|
|
}
|
|
|
|
|
|
|
|
return authenticator
|
|
|
|
}
|
|
|
|
|
|
|
|
const invalidateAuthenticator = async (db, id) => {
|
|
|
|
await db.get(SQL`UPDATE authenticators
|
|
|
|
SET validUntil = ${now}
|
|
|
|
WHERE id = ${id}
|
|
|
|
`);
|
|
|
|
}
|
|
|
|
|
|
|
|
const defaultUsername = async (db, email) => {
|
2020-11-02 10:31:05 -08:00
|
|
|
const base = email.substring(0, email.includes('@') ? email.indexOf('@') : email.length)
|
2020-10-31 13:33:59 -07:00
|
|
|
.padEnd(4, '0')
|
|
|
|
.substring(0, 12)
|
|
|
|
.replace(new RegExp(`[^${USERNAME_CHARS}]`, 'g'), '_');
|
|
|
|
|
|
|
|
let c = 0;
|
|
|
|
while (true) {
|
|
|
|
let proposal = base + (c || '');
|
|
|
|
let dbUser = await db.get(SQL`SELECT id FROM users WHERE lower(trim(username)) = ${normalise(proposal)}`);
|
|
|
|
if (!dbUser) {
|
|
|
|
return proposal;
|
|
|
|
}
|
|
|
|
c++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-11-02 10:31:05 -08:00
|
|
|
const fetchOrCreateUser = async (db, user) => {
|
2020-10-31 13:33:59 -07:00
|
|
|
let dbUser = await db.get(SQL`SELECT * FROM users WHERE email = ${normalise(user.email)}`);
|
|
|
|
if (!dbUser) {
|
|
|
|
dbUser = {
|
|
|
|
id: ulid(),
|
2020-11-02 10:31:05 -08:00
|
|
|
username: await defaultUsername(db, user.name || user.email),
|
2020-10-31 13:33:59 -07:00
|
|
|
email: normalise(user.email),
|
|
|
|
roles: 'user',
|
|
|
|
avatarSource: null,
|
|
|
|
}
|
|
|
|
await db.get(SQL`INSERT INTO users(id, username, email, roles, avatarSource)
|
|
|
|
VALUES (${dbUser.id}, ${dbUser.username}, ${dbUser.email}, ${dbUser.roles}, ${dbUser.avatarSource})`)
|
|
|
|
}
|
|
|
|
|
2020-11-02 10:31:05 -08:00
|
|
|
return dbUser;
|
|
|
|
}
|
|
|
|
|
|
|
|
const issueAuthentication = async (db, user) => {
|
|
|
|
const dbUser = await fetchOrCreateUser(db, user);
|
|
|
|
|
|
|
|
return jwt.sign({
|
|
|
|
...dbUser,
|
|
|
|
authenticated: true,
|
|
|
|
});
|
2020-10-31 13:33:59 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
const validateEmail = (email) => {
|
|
|
|
const re = /^(([^<>()\[\]\\.,;:\s@"]+(\.[^<>()\[\]\\.,;:\s@"]+)*)|(".+"))@((\[[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\])|(([a-zA-Z\-0-9]+\.)+[a-zA-Z]{2,}))$/;
|
|
|
|
return re.test(String(email).toLowerCase());
|
|
|
|
}
|
|
|
|
|
|
|
|
const router = Router();
|
|
|
|
|
|
|
|
router.post('/user/init', async (req, res) => {
|
|
|
|
let user = undefined;
|
|
|
|
let usernameOrEmail = req.body.usernameOrEmail;
|
|
|
|
|
|
|
|
const isEmail = usernameOrEmail.indexOf('@') > -1;
|
|
|
|
let isTest = false;
|
|
|
|
|
|
|
|
if (process.env.NODE_ENV === 'development' && usernameOrEmail.endsWith('+')) {
|
|
|
|
isTest = true;
|
|
|
|
usernameOrEmail = usernameOrEmail.substring(0, usernameOrEmail.length - 1);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (isEmail) {
|
|
|
|
user = await req.db.get(SQL`SELECT * FROM users WHERE email = ${normalise(usernameOrEmail)}`);
|
|
|
|
} else {
|
|
|
|
user = await req.db.get(SQL`SELECT * FROM users WHERE lower(trim(username)) = ${normalise(usernameOrEmail)}`);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!user && !isEmail) {
|
|
|
|
return res.json({error: 'user.login.userNotFound'})
|
|
|
|
}
|
|
|
|
|
|
|
|
const payload = {
|
|
|
|
username: isEmail ? (user ? user.username : null) : usernameOrEmail,
|
|
|
|
email: isEmail ? normalise(usernameOrEmail) : user.email,
|
|
|
|
code: isTest ? '999999' : makeId(6, '0123456789'),
|
|
|
|
}
|
|
|
|
|
|
|
|
const codeKey = await saveAuthenticator(req.db, 'email', user, payload, 15);
|
|
|
|
|
|
|
|
if (!isTest) {
|
|
|
|
mailer(
|
|
|
|
payload.email,
|
|
|
|
`[${translations.title}] ${translations.user.login.email.subject.replace('%code%', payload.code)}`,
|
|
|
|
translations.user.login.email.content.replace('%code%', payload.code),
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
return res.json({
|
|
|
|
token: jwt.sign({...payload, code: null, codeKey}, '15m'),
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
router.post('/user/validate', async (req, res) => {
|
|
|
|
if (!req.rawUser || !req.rawUser.codeKey) {
|
|
|
|
return res.json({error: 'user.tokenExpired'});
|
|
|
|
}
|
|
|
|
|
|
|
|
const authenticator = await findAuthenticator(req.db, req.rawUser.codeKey, 'email');
|
|
|
|
if (!authenticator) {
|
|
|
|
return res.json({error: 'user.tokenExpired'});
|
|
|
|
}
|
|
|
|
|
|
|
|
if (authenticator.payload.code !== normalise(req.body.code)) {
|
|
|
|
return res.json({error: 'user.code.invalid'});
|
|
|
|
}
|
|
|
|
|
|
|
|
await invalidateAuthenticator(req.db, authenticator);
|
|
|
|
|
2020-11-02 10:31:05 -08:00
|
|
|
return res.json({token: await issueAuthentication(req.db, req.rawUser)});
|
2020-10-31 13:33:59 -07:00
|
|
|
});
|
|
|
|
|
|
|
|
router.post('/user/change-username', async (req, res) => {
|
|
|
|
if (!req.user) {
|
|
|
|
return res.status(401).json({error: 'Unauthorised'});
|
|
|
|
}
|
|
|
|
|
|
|
|
if (req.body.username.length < 4 || req.body.username.length > 16 || !req.body.username.match(new RegExp(`^[${USERNAME_CHARS}]+$`))) {
|
|
|
|
return { error: 'user.account.changeUsername.invalid' }
|
|
|
|
}
|
|
|
|
|
|
|
|
const dbUser = await req.db.get(SQL`SELECT * FROM users WHERE lower(trim(username)) = ${normalise(req.body.username)}`);
|
|
|
|
if (dbUser) {
|
|
|
|
return res.json({ error: 'user.account.changeUsername.taken' })
|
|
|
|
}
|
|
|
|
|
|
|
|
await req.db.get(SQL`UPDATE users SET username = ${req.body.username} WHERE email = ${normalise(req.user.email)}`);
|
|
|
|
|
2020-11-02 10:31:05 -08:00
|
|
|
return res.json({token: await issueAuthentication(req.db, req.user)});
|
2020-10-31 13:33:59 -07:00
|
|
|
});
|
|
|
|
|
|
|
|
router.post('/user/change-email', async (req, res) => {
|
|
|
|
if (!req.user) {
|
|
|
|
return res.status(401).json({error: 'Unauthorised'});
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!validateEmail(req.user.email)) {
|
|
|
|
return res.json({ error: 'user.account.changeEmail.invalid' })
|
|
|
|
}
|
|
|
|
|
|
|
|
const dbUser = await req.db.get(SQL`SELECT * FROM users WHERE lower(trim(email)) = ${normalise(req.body.email)}`);
|
|
|
|
if (dbUser) {
|
|
|
|
return res.json({ error: 'user.account.changeEmail.taken' })
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!req.body.authId) {
|
|
|
|
const payload = {
|
|
|
|
from: req.user.email,
|
|
|
|
to: normalise(req.body.email),
|
|
|
|
code: makeId(6, '0123456789'),
|
|
|
|
};
|
|
|
|
|
|
|
|
const authId = await saveAuthenticator(req.db, 'changeEmail', req.user, payload, 15);
|
|
|
|
|
|
|
|
mailer(
|
|
|
|
payload.to,
|
|
|
|
`[${translations.title}] ${translations.user.login.email.subject.replace('%code%', payload.code)}`,
|
|
|
|
translations.user.login.email.content.replace('%code%', payload.code),
|
|
|
|
)
|
|
|
|
|
|
|
|
return res.json({ authId });
|
|
|
|
}
|
|
|
|
|
|
|
|
const authenticator = await findAuthenticator(req.db, req.body.authId, 'changeEmail');
|
|
|
|
if (!authenticator) {
|
|
|
|
return res.json({error: 'user.tokenExpired'});
|
|
|
|
}
|
|
|
|
|
|
|
|
if (authenticator.payload.code !== normalise(req.body.code)) {
|
|
|
|
return res.json({error: 'user.code.invalid'});
|
|
|
|
}
|
|
|
|
|
|
|
|
await invalidateAuthenticator(req.db, authenticator);
|
|
|
|
|
|
|
|
await req.db.get(SQL`UPDATE users SET email = ${authenticator.payload.to} WHERE email = ${normalise(req.user.email)}`);
|
|
|
|
req.user.email = authenticator.payload.to;
|
|
|
|
|
2020-11-02 10:31:05 -08:00
|
|
|
return res.json({token: await issueAuthentication(req.db, req.user)});
|
2020-10-31 13:33:59 -07:00
|
|
|
});
|
|
|
|
|
|
|
|
router.post('/user/delete', async (req, res) => {
|
|
|
|
if (!req.user) {
|
|
|
|
return res.status(401).json({error: 'Unauthorised'});
|
|
|
|
}
|
|
|
|
|
|
|
|
const userId = (await req.db.get(SQL`SELECT id FROM users WHERE username = ${req.user.username}`)).id;
|
|
|
|
if (!userId) {
|
|
|
|
return res.json(false);
|
|
|
|
}
|
|
|
|
|
|
|
|
await req.db.get(SQL`DELETE FROM profiles WHERE userId = ${userId}`)
|
|
|
|
await req.db.get(SQL`DELETE FROM authenticators WHERE userId = ${userId}`)
|
|
|
|
await req.db.get(SQL`DELETE FROM users WHERE id = ${userId}`)
|
|
|
|
|
|
|
|
return res.json(true);
|
|
|
|
});
|
|
|
|
|
2020-11-02 10:31:05 -08:00
|
|
|
const socialLoginHandlers = {
|
|
|
|
twitter(r) {
|
|
|
|
return {
|
|
|
|
id: r.profile.id_str,
|
|
|
|
email: r.profile.email,
|
|
|
|
name: r.profile.screen_name,
|
|
|
|
avatar: r.profile.profile_image_url_https.replace('_normal', '_400x400'),
|
|
|
|
access_token: r.access_token,
|
|
|
|
access_secret: r.access_secret,
|
|
|
|
}
|
|
|
|
},
|
|
|
|
facebook(r) {
|
|
|
|
console.log(r);
|
|
|
|
return {
|
|
|
|
id: r.profile.id,
|
|
|
|
email: r.profile.email,
|
|
|
|
name: r.profile.name,
|
|
|
|
avatar: r.profile.picture.data.url,
|
|
|
|
access_token: r.access_token,
|
|
|
|
access_secret: r.access_secret,
|
|
|
|
}
|
|
|
|
},
|
|
|
|
google(r) {
|
|
|
|
console.log(r);
|
|
|
|
return {
|
|
|
|
id: r.profile.sub,
|
|
|
|
email: r.profile.email_verified !== false ? r.profile.email : undefined,
|
|
|
|
name: r.profile.email,
|
|
|
|
avatar: r.profile.picture,
|
|
|
|
access_token: r.access_token,
|
|
|
|
access_secret: r.access_secret,
|
|
|
|
}
|
|
|
|
},
|
|
|
|
};
|
|
|
|
|
|
|
|
router.get('/user/social/:provider', async (req, res) => {
|
|
|
|
const payload = socialLoginHandlers[req.params.provider](req.session.grant.response)
|
|
|
|
|
|
|
|
const auth = await req.db.get(SQL`
|
|
|
|
SELECT * FROM authenticators
|
|
|
|
WHERE type = ${req.params.provider}
|
|
|
|
AND payload LIKE ${'{"id":"' + payload.id + '"%'}
|
|
|
|
AND (validUntil IS NULL OR validUntil > ${now})
|
|
|
|
`)
|
|
|
|
|
|
|
|
const user = auth ? await req.db.get(SQL`
|
|
|
|
SELECT * FROM users
|
|
|
|
WHERE id = ${auth.userId}
|
|
|
|
`) : req.user;
|
|
|
|
|
|
|
|
const dbUser = await fetchOrCreateUser(req.db, user || {
|
|
|
|
email: payload.email || `${payload.id}@${req.params.provider}.oauth`,
|
|
|
|
name: payload.name,
|
|
|
|
});
|
|
|
|
|
|
|
|
const token = jwt.sign({
|
|
|
|
...dbUser,
|
|
|
|
authenticated: true,
|
|
|
|
});
|
|
|
|
|
|
|
|
if (auth) {
|
|
|
|
await invalidateAuthenticator(req.db, auth.id);
|
|
|
|
}
|
|
|
|
await saveAuthenticator(req.db, req.params.provider, dbUser, payload);
|
|
|
|
|
|
|
|
return res.cookie('token', token).redirect('/' + config.user.route);
|
|
|
|
});
|
|
|
|
|
|
|
|
router.get('/user/social-connections', async (req, res) => {
|
|
|
|
if (!req.user) {
|
|
|
|
return res.status(401).json({error: 'Unauthorised'});
|
|
|
|
}
|
|
|
|
|
|
|
|
const authenticators = await req.db.all(SQL`
|
|
|
|
SELECT type, payload FROM authenticators
|
|
|
|
WHERE type IN (`.append(Object.keys(socialLoginHandlers).map(k => `'${k}'`).join(',')).append(SQL`)
|
|
|
|
AND userId = ${req.user.id}
|
|
|
|
AND (validUntil IS NULL OR validUntil > ${now})
|
|
|
|
`));
|
|
|
|
|
|
|
|
return res.json(buildDict(function* () {
|
|
|
|
for (let auth of authenticators) {
|
|
|
|
yield [auth.type, JSON.parse(auth.payload)];
|
|
|
|
}
|
|
|
|
}));
|
|
|
|
});
|
|
|
|
|
|
|
|
router.post('/user/social-connection/:provider/disconnect', async (req, res) => {
|
|
|
|
if (!req.user) {
|
|
|
|
return res.status(401).json({error: 'Unauthorised'});
|
|
|
|
}
|
|
|
|
|
|
|
|
const auth = await req.db.get(SQL`
|
|
|
|
SELECT id FROM authenticators
|
|
|
|
WHERE type = ${req.params.provider}
|
|
|
|
AND userId = ${req.user.id}
|
|
|
|
AND (validUntil IS NULL OR validUntil > ${now})
|
|
|
|
`)
|
|
|
|
|
|
|
|
await invalidateAuthenticator(req.db, auth.id)
|
|
|
|
|
|
|
|
return res.json('ok');
|
|
|
|
});
|
|
|
|
|
2020-10-31 13:33:59 -07:00
|
|
|
export default router;
|