Update the Ignore Repo

This commit is contained in:
Arunavo Ray
2025-08-28 12:58:58 +05:30
parent 7dfb6b5d18
commit d99f597988
4 changed files with 422 additions and 49 deletions

View File

@@ -0,0 +1,82 @@
import type { APIContext } from "astro";
import { db, repositories } from "@/lib/db";
import { eq, and } from "drizzle-orm";
import { createSecureErrorResponse } from "@/lib/utils";
import { repoStatusEnum } from "@/types/Repository";
export async function PATCH({ params, request }: APIContext) {
try {
const { id } = params;
const body = await request.json();
const { status, userId } = body;
if (!id || !userId) {
return new Response(
JSON.stringify({
success: false,
error: "Repository ID and User ID are required",
}),
{
status: 400,
headers: { "Content-Type": "application/json" },
}
);
}
// Validate the status
const validStatuses = repoStatusEnum.options;
if (!validStatuses.includes(status)) {
return new Response(
JSON.stringify({
success: false,
error: `Invalid status. Must be one of: ${validStatuses.join(", ")}`,
}),
{
status: 400,
headers: { "Content-Type": "application/json" },
}
);
}
// Update the repository status
const [updatedRepo] = await db
.update(repositories)
.set({
status,
updatedAt: new Date()
})
.where(
and(
eq(repositories.id, id),
eq(repositories.userId, userId)
)
)
.returning();
if (!updatedRepo) {
return new Response(
JSON.stringify({
success: false,
error: "Repository not found or you don't have permission to update it",
}),
{
status: 404,
headers: { "Content-Type": "application/json" },
}
);
}
return new Response(
JSON.stringify({
success: true,
repository: updatedRepo,
}),
{
status: 200,
headers: { "Content-Type": "application/json" },
}
);
} catch (error) {
return createSecureErrorResponse(error);
}
}