deemixer/server/src/routes/api/register.ts
RemixDev cb8ab5cfae
Added support for reverse proxy and routing managed by vue
Use --locationbase to specify the path used by the reverse proxy
Updated deezer-js to 1.3.8
2022-07-30 00:23:48 +02:00

47 lines
940 B
TypeScript

import type { Application } from 'express'
import type { ApiHandler } from '../../types'
import getEndpoints from './get'
import deleteEndpoints from './delete'
import postEndpoints from './post'
import patchEndpoints from './patch'
const prependApiPath = (path: string) => `*/api${path}`
interface Method {
method: string
endpoints: ApiHandler[]
}
const methods: Method[] = [
{
method: 'get',
endpoints: getEndpoints
},
{
method: 'delete',
endpoints: deleteEndpoints
},
{
method: 'post',
endpoints: postEndpoints
},
{
method: 'patch',
endpoints: patchEndpoints
}
]
export function registerApis(app: Application) {
methods.forEach(({ method, endpoints }) => {
endpoints.forEach(endpoint => {
// @ts-expect-error
app[method](prependApiPath(endpoint.path), endpoint.handler)
})
})
// Fallback, for SPA mode
app.get('*/api*', (_, res) => {
res.send({ error: "API endpoint doesn't exist" })
})
}