Files
speckle-server/packages/server/modules/auth/strategies/local.ts
T
Kristaps Fabians Geikins bde148f286 chore(server): migrating fully to ESM (#5042)
* wip

* some extra fixes

* stuff kinda works?

* need to figure out mocks

* need to figure out mocks

* fix db listener

* gqlgen fix

* minor gqlgen watch adjustment

* lint fixes

* delete old codegen file

* converting migrations to ESM

* getModuleDIrectory

* vitest sort of works

* added back ts-vitest

* resolve gql double load

* fixing test timeout configs

* TSC lint fix

* fix automate tests

* moar debugging

* debugging

* more debugging

* codegen update

* server works

* yargs migrated

* chore(server): getting rid of global mocks for Server ESM (#5046)

* got rid of email mock

* got rid of comment mocks

* got rid of multi region mocks

* got rid of stripe mock

* admin override mock updated

* removed final mock

* fixing import.meta.resolve calls

* another import.meta.resolve fix

* added requested test

* nyc ESM fix

* removed unneeded deps + linting

* yarn lock forgot to commit

* tryna fix flakyness

* email capture util fix

* sendEmail fix

* fix TSX check

* sender transporter fix + CR comments

* merge main fix

* test fixx

* circleci fix

* gqlgen bigint fix

* error formatter fix

* more error formatting improvements

* esmloader added to Dockerfile

* more dockerfile fixes

* bg jobs fix
2025-07-14 10:26:19 +03:00

166 lines
5.7 KiB
TypeScript

import type { ThrowIfRateLimited } from '@/modules/core/utils/ratelimiter'
import { getIpFromRequest } from '@/modules/shared/utils/ip'
import { UserInputError } from '@/modules/core/errors/userinput'
import { ServerInviteResourceType } from '@/modules/serverinvites/domain/constants'
import { getResourceTypeRole } from '@/modules/serverinvites/helpers/core'
import { AuthStrategyMetadata, AuthStrategyBuilder } from '@/modules/auth/helpers/types'
import { ServerInviteRecord } from '@/modules/serverinvites/domain/types'
import { ensureError, Optional } from '@speckle/shared'
import {
FinalizeInvitedServerRegistration,
ResolveAuthRedirectPath,
ValidateServerInvite
} from '@/modules/serverinvites/services/operations'
import {
CreateValidatedUser,
LegacyGetUserByEmail,
ValidateUserPassword
} from '@/modules/core/domain/users/operations'
import { GetServerInfo } from '@/modules/core/domain/server/operations'
import { UserValidationError } from '@/modules/core/errors/user'
import {
resolveErrorInfo,
resolveStatusCode
} from '@/modules/core/rest/defaultErrorHandler'
import { addRateLimitHeadersToResponseFactory } from '@/modules/core/rest/ratelimiter'
const localStrategyBuilderFactory =
(deps: {
validateUserPassword: ValidateUserPassword
getUserByEmail: LegacyGetUserByEmail
getServerInfo: GetServerInfo
validateServerInvite: ValidateServerInvite
createUser: CreateValidatedUser
finalizeInvitedServerRegistration: FinalizeInvitedServerRegistration
resolveAuthRedirectPath: ResolveAuthRedirectPath
throwIfRateLimited: ThrowIfRateLimited
}): AuthStrategyBuilder =>
async (
app,
sessionMiddleware,
moveAuthParamsToSessionMiddleware,
finalizeAuthMiddleware
) => {
const strategy: AuthStrategyMetadata = {
id: 'local',
name: 'Local',
icon: 'TODO',
color: 'accent',
url: '/auth/local'
}
// POST Login
app.post(
'/auth/local/login',
sessionMiddleware,
moveAuthParamsToSessionMiddleware,
async (req, res, next) => {
try {
const valid = await deps.validateUserPassword({
email: req.body.email,
password: req.body.password
})
if (!valid) throw new UserInputError('Invalid credentials.')
const user = await deps.getUserByEmail({ email: req.body.email })
if (!user) throw new UserInputError('Invalid credentials.')
req.user = { id: user.id, email: user.email }
return next()
} catch (err) {
const e = ensureError(err, 'Unexpected issue occurred while logging in')
switch (e.constructor) {
case UserInputError:
case UserValidationError:
req.log.info({ err }, 'Error while logging in.')
break
default:
req.log.error({ err }, 'Error while logging in.')
break
}
return res.status(401).send({ err: true, message: 'Invalid credentials.' })
}
},
finalizeAuthMiddleware
)
// POST Register
app.post(
'/auth/local/register',
sessionMiddleware,
moveAuthParamsToSessionMiddleware,
async (req, res, next) => {
const serverInfo = await deps.getServerInfo()
try {
if (!req.body.password) throw new UserInputError('Password missing')
const user = req.body
const ip = getIpFromRequest(req)
if (ip) user.ip = ip
const source = ip ? ip : 'unknown'
await deps.throwIfRateLimited({
action: 'USER_CREATE',
source,
handleRateLimitBreachPriorToThrowing:
addRateLimitHeadersToResponseFactory(res)
})
// 1. if the server is invite only you must have an invite
if (serverInfo.inviteOnly && !req.session.token)
throw new UserInputError(
'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
let invite: Optional<ServerInviteRecord> = undefined
if (req.session.token) {
invite = await deps.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 deps.createUser({
...user,
role: invite
? getResourceTypeRole(invite.resource, ServerInviteResourceType)
: undefined,
verified: !!invite,
signUpContext: {
req,
isInvite: !!invite,
newsletterConsent: !!req.session.newsletterConsent
}
})
req.user = {
id: userId,
email: user.email,
isNewUser: true,
isInvite: !!invite
}
req.log = req.log.child({ userId })
// 4. use up all server-only invites the email had attached to it
await deps.finalizeInvitedServerRegistration(user.email, userId)
// Resolve redirect path
req.authRedirectPath = deps.resolveAuthRedirectPath(invite)
return next()
} catch (err) {
const e = ensureError(err, 'Unexpected issue occurred while registering')
return res.status(resolveStatusCode(e)).json({ error: resolveErrorInfo(e) })
}
},
finalizeAuthMiddleware
)
return strategy
}
export default localStrategyBuilderFactory