-
Notifications
You must be signed in to change notification settings - Fork 1
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
fix: Release channel unique constraint #205
Changes from all commits
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,7 +1,7 @@ | ||||||||||||||||||||||||||||||
import type { z } from "zod"; | ||||||||||||||||||||||||||||||
import { NextResponse } from "next/server"; | ||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||
import { takeFirst } from "@ctrlplane/db"; | ||||||||||||||||||||||||||||||
import { and, eq, takeFirst, takeFirstOrNull } from "@ctrlplane/db"; | ||||||||||||||||||||||||||||||
import { createReleaseChannel } from "@ctrlplane/db/schema"; | ||||||||||||||||||||||||||||||
import * as SCHEMA from "@ctrlplane/db/schema"; | ||||||||||||||||||||||||||||||
import { Permission } from "@ctrlplane/validators/auth"; | ||||||||||||||||||||||||||||||
|
@@ -21,12 +21,30 @@ export const POST = request() | |||||||||||||||||||||||||||||
), | ||||||||||||||||||||||||||||||
) | ||||||||||||||||||||||||||||||
.handle<{ body: z.infer<typeof createReleaseChannel> }>( | ||||||||||||||||||||||||||||||
async ({ db, body }) => | ||||||||||||||||||||||||||||||
db | ||||||||||||||||||||||||||||||
async ({ db, body }) => { | ||||||||||||||||||||||||||||||
const releaseChannel = await db | ||||||||||||||||||||||||||||||
.select() | ||||||||||||||||||||||||||||||
.from(SCHEMA.releaseChannel) | ||||||||||||||||||||||||||||||
.where( | ||||||||||||||||||||||||||||||
and( | ||||||||||||||||||||||||||||||
eq(SCHEMA.releaseChannel.deploymentId, body.deploymentId), | ||||||||||||||||||||||||||||||
eq(SCHEMA.releaseChannel.name, body.name), | ||||||||||||||||||||||||||||||
), | ||||||||||||||||||||||||||||||
) | ||||||||||||||||||||||||||||||
.then(takeFirstOrNull); | ||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||
if (releaseChannel) | ||||||||||||||||||||||||||||||
return NextResponse.json( | ||||||||||||||||||||||||||||||
{ error: "Release channel already exists" }, | ||||||||||||||||||||||||||||||
{ status: 409 }, | ||||||||||||||||||||||||||||||
); | ||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||
return db | ||||||||||||||||||||||||||||||
.insert(SCHEMA.releaseChannel) | ||||||||||||||||||||||||||||||
.values(body) | ||||||||||||||||||||||||||||||
.returning() | ||||||||||||||||||||||||||||||
.then(takeFirst) | ||||||||||||||||||||||||||||||
.then((releaseChannel) => NextResponse.json(releaseChannel)) | ||||||||||||||||||||||||||||||
.catch((error) => NextResponse.json({ error }, { status: 500 })), | ||||||||||||||||||||||||||||||
.catch((error) => NextResponse.json({ error }, { status: 500 })); | ||||||||||||||||||||||||||||||
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. 🛠️ Refactor suggestion Enhance error handling with logging and specific error codes. The current error handling could be more robust:
- .catch((error) => NextResponse.json({ error }, { status: 500 }));
+ .catch((error) => {
+ console.error('Failed to create release channel:', error);
+ if (error.code === '23505') { // PostgreSQL unique violation
+ return NextResponse.json(
+ { error: 'Release channel with this name already exists' },
+ { status: 409 }
+ );
+ }
+ return NextResponse.json(
+ { error: 'Internal server error' },
+ { status: 500 }
+ );
+ }); 📝 Committable suggestion
Suggested change
|
||||||||||||||||||||||||||||||
}, | ||||||||||||||||||||||||||||||
); |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
CREATE UNIQUE INDEX IF NOT EXISTS "release_channel_deployment_id_name_index" ON "release_channel" USING btree ("deployment_id","name"); |
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.
🛠️ Refactor suggestion
Improve error handling with specific error codes.
The current implementation returns a 500 status code for all errors, which doesn't distinguish between different types of errors (e.g., validation errors, database constraints, server errors).
Consider implementing more specific error handling: