2022-05-17 04:43:40 +00:00
|
|
|
import * as admin from 'firebase-admin'
|
|
|
|
import * as functions from 'firebase-functions'
|
|
|
|
import * as Cors from 'cors'
|
2022-05-26 21:37:51 +00:00
|
|
|
import { z } from 'zod'
|
2022-05-17 04:43:40 +00:00
|
|
|
|
2022-05-21 02:34:26 +00:00
|
|
|
import { User, PrivateUser } from '../../common/user'
|
|
|
|
import {
|
|
|
|
CORS_ORIGIN_MANIFOLD,
|
|
|
|
CORS_ORIGIN_LOCALHOST,
|
|
|
|
} from '../../common/envs/constants'
|
2022-05-17 04:43:40 +00:00
|
|
|
|
2022-05-26 21:37:51 +00:00
|
|
|
type Output = Record<string, unknown>
|
2022-05-17 04:43:40 +00:00
|
|
|
type Request = functions.https.Request
|
|
|
|
type Response = functions.Response
|
|
|
|
type AuthedUser = [User, PrivateUser]
|
2022-05-26 21:37:51 +00:00
|
|
|
type Handler = (req: Request, user: AuthedUser) => Promise<Output>
|
2022-05-17 04:43:40 +00:00
|
|
|
type JwtCredentials = { kind: 'jwt'; data: admin.auth.DecodedIdToken }
|
|
|
|
type KeyCredentials = { kind: 'key'; data: string }
|
|
|
|
type Credentials = JwtCredentials | KeyCredentials
|
|
|
|
|
|
|
|
export class APIError {
|
|
|
|
code: number
|
|
|
|
msg: string
|
2022-05-26 21:37:51 +00:00
|
|
|
details: unknown
|
|
|
|
constructor(code: number, msg: string, details?: unknown) {
|
2022-05-17 04:43:40 +00:00
|
|
|
this.code = code
|
|
|
|
this.msg = msg
|
2022-05-26 21:37:51 +00:00
|
|
|
this.details = details
|
2022-05-17 04:43:40 +00:00
|
|
|
}
|
2022-05-26 21:37:51 +00:00
|
|
|
toJson() {}
|
2022-05-17 04:43:40 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
export const parseCredentials = async (req: Request): Promise<Credentials> => {
|
|
|
|
const authHeader = req.get('Authorization')
|
|
|
|
if (!authHeader) {
|
|
|
|
throw new APIError(403, 'Missing Authorization header.')
|
|
|
|
}
|
|
|
|
const authParts = authHeader.split(' ')
|
|
|
|
if (authParts.length !== 2) {
|
|
|
|
throw new APIError(403, 'Invalid Authorization header.')
|
|
|
|
}
|
|
|
|
|
|
|
|
const [scheme, payload] = authParts
|
|
|
|
switch (scheme) {
|
|
|
|
case 'Bearer':
|
|
|
|
try {
|
|
|
|
const jwt = await admin.auth().verifyIdToken(payload)
|
|
|
|
return { kind: 'jwt', data: jwt }
|
|
|
|
} catch (err) {
|
|
|
|
// This is somewhat suspicious, so get it into the firebase console
|
|
|
|
functions.logger.error('Error verifying Firebase JWT: ', err)
|
2022-05-26 21:37:51 +00:00
|
|
|
throw new APIError(403, 'Error validating token.')
|
2022-05-17 04:43:40 +00:00
|
|
|
}
|
|
|
|
case 'Key':
|
|
|
|
return { kind: 'key', data: payload }
|
|
|
|
default:
|
|
|
|
throw new APIError(403, 'Invalid auth scheme; must be "Key" or "Bearer".')
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
export const lookupUser = async (creds: Credentials): Promise<AuthedUser> => {
|
|
|
|
const firestore = admin.firestore()
|
|
|
|
const users = firestore.collection('users')
|
|
|
|
const privateUsers = firestore.collection('private-users')
|
|
|
|
switch (creds.kind) {
|
|
|
|
case 'jwt': {
|
|
|
|
const { user_id } = creds.data
|
2022-05-26 21:37:51 +00:00
|
|
|
if (typeof user_id !== 'string') {
|
|
|
|
throw new APIError(403, 'JWT must contain Manifold user ID.')
|
|
|
|
}
|
2022-05-17 04:43:40 +00:00
|
|
|
const [userSnap, privateUserSnap] = await Promise.all([
|
|
|
|
users.doc(user_id).get(),
|
|
|
|
privateUsers.doc(user_id).get(),
|
|
|
|
])
|
|
|
|
if (!userSnap.exists || !privateUserSnap.exists) {
|
|
|
|
throw new APIError(403, 'No user exists with the provided ID.')
|
|
|
|
}
|
|
|
|
const user = userSnap.data() as User
|
|
|
|
const privateUser = privateUserSnap.data() as PrivateUser
|
|
|
|
return [user, privateUser]
|
|
|
|
}
|
|
|
|
case 'key': {
|
|
|
|
const key = creds.data
|
|
|
|
const privateUserQ = await privateUsers.where('apiKey', '==', key).get()
|
|
|
|
if (privateUserQ.empty) {
|
|
|
|
throw new APIError(403, `No private user exists with API key ${key}.`)
|
|
|
|
}
|
|
|
|
const privateUserSnap = privateUserQ.docs[0]
|
|
|
|
const userSnap = await users.doc(privateUserSnap.id).get()
|
|
|
|
if (!userSnap.exists) {
|
|
|
|
throw new APIError(403, `No user exists with ID ${privateUserSnap.id}.`)
|
|
|
|
}
|
|
|
|
const user = userSnap.data() as User
|
|
|
|
const privateUser = privateUserSnap.data() as PrivateUser
|
|
|
|
return [user, privateUser]
|
|
|
|
}
|
|
|
|
default:
|
|
|
|
throw new APIError(500, 'Invalid credential type.')
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-05-21 02:34:26 +00:00
|
|
|
export const applyCors = (
|
|
|
|
req: Request,
|
|
|
|
res: Response,
|
|
|
|
params: Cors.CorsOptions
|
|
|
|
) => {
|
2022-05-17 04:43:40 +00:00
|
|
|
return new Promise((resolve, reject) => {
|
|
|
|
Cors(params)(req, res, (result) => {
|
|
|
|
if (result instanceof Error) {
|
|
|
|
return reject(result)
|
|
|
|
}
|
|
|
|
return resolve(result)
|
|
|
|
})
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2022-05-26 21:37:51 +00:00
|
|
|
export const zTimestamp = () => {
|
|
|
|
return z.preprocess((arg) => {
|
|
|
|
return typeof arg == 'number' ? new Date(arg) : undefined
|
|
|
|
}, z.date())
|
|
|
|
}
|
|
|
|
|
|
|
|
export const validate = <T extends z.ZodTypeAny>(schema: T, val: unknown) => {
|
|
|
|
const result = schema.safeParse(val)
|
|
|
|
if (!result.success) {
|
|
|
|
const issues = result.error.issues.map((i) => {
|
|
|
|
return {
|
|
|
|
field: i.path.join('.') || null,
|
|
|
|
error: i.message,
|
|
|
|
}
|
|
|
|
})
|
|
|
|
throw new APIError(400, 'Error validating request.', issues)
|
|
|
|
} else {
|
|
|
|
return result.data as z.infer<T>
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-05-17 04:43:40 +00:00
|
|
|
export const newEndpoint = (methods: [string], fn: Handler) =>
|
|
|
|
functions.runWith({ minInstances: 1 }).https.onRequest(async (req, res) => {
|
|
|
|
await applyCors(req, res, {
|
2022-05-21 02:34:26 +00:00
|
|
|
origin: [CORS_ORIGIN_MANIFOLD, CORS_ORIGIN_LOCALHOST],
|
2022-05-17 04:43:40 +00:00
|
|
|
methods: methods,
|
|
|
|
})
|
|
|
|
try {
|
|
|
|
if (!methods.includes(req.method)) {
|
|
|
|
const allowed = methods.join(', ')
|
|
|
|
throw new APIError(405, `This endpoint supports only ${allowed}.`)
|
|
|
|
}
|
2022-05-26 21:37:51 +00:00
|
|
|
const authedUser = await lookupUser(await parseCredentials(req))
|
|
|
|
res.status(200).json(await fn(req, authedUser))
|
2022-05-17 04:43:40 +00:00
|
|
|
} catch (e) {
|
|
|
|
if (e instanceof APIError) {
|
2022-05-26 21:37:51 +00:00
|
|
|
const output: { [k: string]: unknown } = { message: e.msg }
|
|
|
|
if (e.details != null) {
|
|
|
|
output.details = e.details
|
|
|
|
}
|
|
|
|
res.status(e.code).json(output)
|
2022-05-17 04:43:40 +00:00
|
|
|
} else {
|
2022-05-26 21:37:51 +00:00
|
|
|
functions.logger.error(e)
|
2022-05-20 21:58:14 +00:00
|
|
|
res.status(500).json({ message: 'An unknown error occurred.' })
|
2022-05-17 04:43:40 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
})
|