46 lines
1.3 KiB
TypeScript
46 lines
1.3 KiB
TypeScript
import { env } from "@/env.mjs";
|
|
import { getUserRecords } from "@/lib/dto/cloudflare-dns-record";
|
|
import { updateUserShortUrl } from "@/lib/dto/short-urls";
|
|
import { checkUserStatus } from "@/lib/dto/user";
|
|
import { getCurrentUser } from "@/lib/session";
|
|
import { createUrlSchema } from "@/lib/validations/url";
|
|
|
|
export async function POST(req: Request) {
|
|
try {
|
|
const user = checkUserStatus(await getCurrentUser());
|
|
if (user instanceof Response) return user;
|
|
|
|
const { data } = await req.json();
|
|
if (!data?.id) {
|
|
return Response.json(`Url id is required`, {
|
|
status: 400,
|
|
});
|
|
}
|
|
|
|
const { target, url, prefix, visible, active, id, expiration, password } =
|
|
createUrlSchema.parse(data);
|
|
const res = await updateUserShortUrl({
|
|
id,
|
|
userId: user.id,
|
|
userName: user.name || "Anonymous",
|
|
target,
|
|
prefix,
|
|
url,
|
|
visible,
|
|
active,
|
|
expiration,
|
|
password,
|
|
});
|
|
if (res.status !== "success") {
|
|
return Response.json(res.status, {
|
|
status: 400,
|
|
});
|
|
}
|
|
return Response.json(res.data);
|
|
} catch (error) {
|
|
return Response.json(error?.statusText || error, {
|
|
status: error.status || 500,
|
|
});
|
|
}
|
|
}
|