3ff772e342
* moving to invite token field, fixing comments & activity bugs I found, adding role prop to stream invite creation * more fixes * more tests
124 lines
3.6 KiB
JavaScript
124 lines
3.6 KiB
JavaScript
'use strict'
|
|
const debug = require('debug')
|
|
const {
|
|
createUser,
|
|
updateUser,
|
|
validatePasssword,
|
|
getUserByEmail
|
|
} = require('@/modules/core/services/users')
|
|
const { getServerInfo } = require('@/modules/core/services/generic')
|
|
const { respectsLimits } = require('@/modules/core/services/ratelimits')
|
|
const {
|
|
validateServerInvite,
|
|
finalizeInvitedServerRegistration,
|
|
resolveAuthRedirectPath
|
|
} = require('@/modules/serverinvites/services/inviteProcessingService')
|
|
|
|
module.exports = async (app, session, sessionAppId, finalizeAuth) => {
|
|
const strategy = {
|
|
id: 'local',
|
|
name: 'Local',
|
|
icon: 'TODO',
|
|
color: 'accent',
|
|
url: '/auth/local'
|
|
}
|
|
|
|
app.post(
|
|
'/auth/local/login',
|
|
session,
|
|
sessionAppId,
|
|
async (req, res, next) => {
|
|
try {
|
|
const valid = await validatePasssword({
|
|
email: req.body.email,
|
|
password: req.body.password
|
|
})
|
|
|
|
if (!valid) throw new Error('Invalid credentials')
|
|
|
|
const user = await getUserByEmail({ email: req.body.email })
|
|
if (!user) throw new Error('Invalid credentials')
|
|
|
|
if (req.body.suuid && user.suuid !== req.body.suuid) {
|
|
await updateUser(user.id, { suuid: req.body.suuid })
|
|
}
|
|
|
|
req.user = { id: user.id }
|
|
|
|
next()
|
|
} catch (err) {
|
|
return res.status(401).send({ err: true, message: 'Invalid credentials' })
|
|
}
|
|
},
|
|
finalizeAuth
|
|
)
|
|
|
|
app.post(
|
|
'/auth/local/register',
|
|
session,
|
|
sessionAppId,
|
|
async (req, res, next) => {
|
|
const serverInfo = await getServerInfo()
|
|
try {
|
|
if (!req.body.password) throw new Error('Password missing')
|
|
|
|
const user = req.body
|
|
user.ip = req.headers['cf-connecting-ip'] || req.connection.remoteAddress || ''
|
|
const ignorePrefixes = [
|
|
'192.168.',
|
|
'10.',
|
|
'127.',
|
|
'172.1',
|
|
'172.2',
|
|
'172.3',
|
|
'::'
|
|
]
|
|
for (const ipPrefix of ignorePrefixes)
|
|
if (user.ip.startsWith(ipPrefix)) {
|
|
delete user.ip
|
|
break
|
|
}
|
|
if (
|
|
user.ip &&
|
|
!(await respectsLimits({ action: 'USER_CREATE', source: user.ip }))
|
|
) {
|
|
throw new Error('Blocked due to rate-limiting. Try again later')
|
|
}
|
|
|
|
// 1. if the server is invite only you must have an invite
|
|
if (serverInfo.inviteOnly && !req.session.token)
|
|
throw new Error('This server is invite only. Please provide an invite id.')
|
|
|
|
// 2. if you have an invite it must be valid, both for invite only and public servers
|
|
/** @type {import('@/modules/serverinvites/repositories').ServerInviteRecord} */
|
|
let invite
|
|
if (req.session.token) {
|
|
invite = await validateServerInvite(user.email, req.session.token)
|
|
}
|
|
|
|
// 3. at this point we know, that we have one of these cases:
|
|
// * the server is invite only and the user has a valid invite
|
|
// * the server public and the user has a valid invite
|
|
// * the server public and the user doesn't have an invite
|
|
// so we go ahead and register the user
|
|
const userId = await createUser(user)
|
|
req.user = { id: userId, email: user.email }
|
|
|
|
// 4. use up all server-only invites the email had attached to it
|
|
await finalizeInvitedServerRegistration(user.email, userId)
|
|
|
|
// Resolve redirect path
|
|
req.authRedirectPath = resolveAuthRedirectPath(invite)
|
|
|
|
return next()
|
|
} catch (err) {
|
|
debug('speckle:errors')(err)
|
|
return res.status(400).send({ err: err.message })
|
|
}
|
|
},
|
|
finalizeAuth
|
|
)
|
|
|
|
return strategy
|
|
}
|