-
-
Notifications
You must be signed in to change notification settings - Fork 137
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat: batch endpoints for column creation and retrieval #206
base: master
Are you sure you want to change the base?
Changes from all commits
f5a6782
6fd3b24
69515d8
cafcf99
dc86a6e
358f683
fe11fbf
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,11 @@ | ||
import { Type } from '@sinclair/typebox' | ||
import { FastifyInstance } from 'fastify' | ||
import { PostgresMeta } from '../../lib' | ||
import { | ||
PostgresColumnCreate, | ||
postgresColumnSchema, | ||
postgresColumnCreateSchema, | ||
} from '../../lib/types' | ||
import { DEFAULT_POOL_CONFIG } from '../constants' | ||
import { extractRequestForLogging } from '../utils' | ||
|
||
|
@@ -56,22 +62,51 @@ export default async (fastify: FastifyInstance) => { | |
|
||
fastify.post<{ | ||
Headers: { pg: string } | ||
Body: any | ||
}>('/', async (request, reply) => { | ||
const connectionString = request.headers.pg | ||
Body: PostgresColumnCreate | PostgresColumnCreate[] | ||
}>( | ||
'/', | ||
{ | ||
schema: { | ||
headers: Type.Object({ | ||
pg: Type.String(), | ||
}), | ||
body: Type.Union([postgresColumnCreateSchema, Type.Array(postgresColumnCreateSchema)]), | ||
response: { | ||
200: Type.Union([postgresColumnSchema, Type.Array(postgresColumnSchema)]), | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. If we wanted to be really nice about it, would be cool to pluck the table name out of the array, since we don't allow multiple different values for the field here anyway There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I think it's better to make the response format consistent: |
||
400: Type.Object({ | ||
error: Type.String(), | ||
}), | ||
404: Type.Object({ | ||
error: Type.String(), | ||
}), | ||
}, | ||
}, | ||
}, | ||
async (request, reply) => { | ||
const connectionString = request.headers.pg | ||
let batchCreateArg: PostgresColumnCreate[] | ||
if (Array.isArray(request.body)) { | ||
batchCreateArg = request.body | ||
} else { | ||
batchCreateArg = [request.body] | ||
} | ||
|
||
const pgMeta = new PostgresMeta({ ...DEFAULT_POOL_CONFIG, connectionString }) | ||
const { data, error } = await pgMeta.columns.create(request.body) | ||
await pgMeta.end() | ||
if (error) { | ||
request.log.error({ error, request: extractRequestForLogging(request) }) | ||
reply.code(400) | ||
if (error.message.startsWith('Cannot find')) reply.code(404) | ||
return { error: error.message } | ||
} | ||
const pgMeta = new PostgresMeta({ ...DEFAULT_POOL_CONFIG, connectionString }) | ||
const { data, error } = await pgMeta.columns.batchCreate(batchCreateArg) | ||
await pgMeta.end() | ||
if (error) { | ||
request.log.error({ error, request: extractRequestForLogging(request) }) | ||
reply.code(400) | ||
if (error.message.startsWith('Cannot find')) reply.code(404) | ||
return { error: error.message } | ||
} | ||
|
||
return data | ||
}) | ||
if (Array.isArray(request.body)) { | ||
return data | ||
} | ||
return data[0] | ||
} | ||
) | ||
|
||
fastify.patch<{ | ||
Headers: { pg: string } | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I really dislike this way of everything being optional - can we use a discriminated union type instead?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It's a TS thing - the 2 function declaration above it means it's either
ids
ornames
+table
+schema