fix(auth/swagger): make WA failure non-fatal and include /api prefix in docs

This commit is contained in:
2026-04-01 17:04:25 +08:00
parent a3940321a7
commit b751f031cd
5 changed files with 182 additions and 172 deletions

View File

@@ -81,7 +81,7 @@ const Utils = new Elysia({
if (!process.env.WIBU_UPLOAD_DIR) if (!process.env.WIBU_UPLOAD_DIR)
throw new Error("WIBU_UPLOAD_DIR is not defined"); throw new Error("WIBU_UPLOAD_DIR is not defined");
const ApiServer = new Elysia() const ApiServer = new Elysia({ prefix: "/api" })
.use( .use(
staticPlugin({ staticPlugin({
assets: UPLOAD_DIR, assets: UPLOAD_DIR,
@@ -89,16 +89,6 @@ const ApiServer = new Elysia()
}), }),
) )
.use(cors(corsConfig)) .use(cors(corsConfig))
.onError(({ code }) => {
if (code === "NOT_FOUND") {
return {
status: 404,
body: "Route not found :(",
};
}
})
.group("/api", (app) =>
app
.use( .use(
swagger({ swagger({
path: "/docs", path: "/docs",
@@ -110,6 +100,14 @@ const ApiServer = new Elysia()
}, },
}), }),
) )
.onError(({ code }) => {
if (code === "NOT_FOUND") {
return {
status: 404,
body: "Route not found :(",
};
}
})
.use(Utils) .use(Utils)
.use(FileStorage) .use(FileStorage)
.use(LandingPage) .use(LandingPage)
@@ -232,7 +230,6 @@ const ApiServer = new Elysia()
files: t.Files(), files: t.Files(),
}), }),
}, },
),
); );
export const GET = ApiServer.handle; export const GET = ApiServer.handle;

View File

@@ -33,6 +33,8 @@ export async function POST(req: Request) {
const codeOtp = randomOTP(); const codeOtp = randomOTP();
const otpNumber = Number(codeOtp); const otpNumber = Number(codeOtp);
console.log(`🔑 DEBUG OTP [${nomor}]: ${codeOtp}`);
const waMessage = `Website Desa Darmasaba - Kode ini bersifat RAHASIA dan JANGAN DI BAGIKAN KEPADA SIAPAPUN, termasuk anggota ataupun Admin lainnya.\n\n>> Kode OTP anda: ${codeOtp}.`; const waMessage = `Website Desa Darmasaba - Kode ini bersifat RAHASIA dan JANGAN DI BAGIKAN KEPADA SIAPAPUN, termasuk anggota ataupun Admin lainnya.\n\n>> Kode OTP anda: ${codeOtp}.`;
const waUrl = `https://wa.wibudev.com/code?nom=${encodeURIComponent(nomor)}&text=${encodeURIComponent(waMessage)}`; const waUrl = `https://wa.wibudev.com/code?nom=${encodeURIComponent(nomor)}&text=${encodeURIComponent(waMessage)}`;
@@ -40,26 +42,19 @@ export async function POST(req: Request) {
try { try {
const res = await fetch(waUrl); const res = await fetch(waUrl);
if (!res.ok) {
const errorText = await res.text();
console.error(`⚠️ WA Service HTTP Error: ${res.status} ${res.statusText}. Continuing since OTP is logged.`);
console.log(`💡 Use this OTP to login: ${codeOtp}`);
} else {
const sendWa = await res.json(); const sendWa = await res.json();
console.log("📱 WA Response:", sendWa); console.log("📱 WA Response:", sendWa);
if (sendWa.status !== "success") { if (sendWa.status !== "success") {
console.error(" WA Service Error:", sendWa); console.error("⚠️ WA Service Logic Error:", sendWa);
return NextResponse.json(
{
success: false,
message: "Gagal mengirim OTP via WhatsApp",
debug: sendWa
},
{ status: 400 }
);
} }
} catch (waError) { }
console.error("❌ Fetch WA Error:", waError); } catch (waError: any) {
return NextResponse.json( console.error("⚠️ WA Connection Exception. Continuing since OTP is logged.", waError.message);
{ success: false, message: "Terjadi kesalahan saat mengirim WA" },
{ status: 500 }
);
} }
const createOtpId = await prisma.kodeOtp.create({ const createOtpId = await prisma.kodeOtp.create({

View File

@@ -22,14 +22,21 @@ export async function POST(req: Request) {
// ✅ Generate dan kirim OTP // ✅ Generate dan kirim OTP
const codeOtp = randomOTP(); const codeOtp = randomOTP();
const otpNumber = Number(codeOtp); const otpNumber = Number(codeOtp);
console.log(`🔑 DEBUG REGISTER OTP [${nomor}]: ${codeOtp}`);
const waMessage = `Website Desa Darmasaba - Kode verifikasi Anda: ${codeOtp}`; const waMessage = `Website Desa Darmasaba - Kode verifikasi Anda: ${codeOtp}`;
const waUrl = `https://wa.wibudev.com/code?nom=${encodeURIComponent(nomor)}&text=${encodeURIComponent(waMessage)}`; const waUrl = `https://wa.wibudev.com/code?nom=${encodeURIComponent(nomor)}&text=${encodeURIComponent(waMessage)}`;
const waRes = await fetch(waUrl);
const waData = await waRes.json();
if (waData.status !== "success") { try {
return NextResponse.json({ success: false, message: 'Gagal mengirim OTP via WhatsApp' }, { status: 400 }); const waRes = await fetch(waUrl);
if (!waRes.ok) {
console.warn(`⚠️ WA Service HTTP Error (Register): ${waRes.status} ${waRes.statusText}. Continuing since OTP is logged.`);
} else {
const waData = await waRes.json();
console.log("📱 WA Response (Register):", waData);
}
} catch (waError: any) {
console.warn("⚠️ WA Connection Exception (Register). Continuing since OTP is logged.", waError.message);
} }
// ✅ Simpan OTP ke database // ✅ Simpan OTP ke database

View File

@@ -17,18 +17,22 @@ export async function POST(req: Request) {
const codeOtp = randomOTP(); const codeOtp = randomOTP();
const otpNumber = Number(codeOtp); const otpNumber = Number(codeOtp);
console.log(`🔑 DEBUG RESEND OTP [${nomor}]: ${codeOtp}`);
// Kirim OTP via WhatsApp // Kirim OTP via WhatsApp
const waMessage = `Website Desa Darmasaba - Kode ini bersifat RAHASIA dan JANGAN DI BAGIKAN KEPADA SIAPAPUN, termasuk anggota ataupun Admin lainnya.\n\n>> Kode OTP anda: ${codeOtp}.`; const waMessage = `Website Desa Darmasaba - Kode ini bersifat RAHASIA dan JANGAN DI BAGIKAN KEPADA SIAPAPUN, termasuk anggota ataupun Admin lainnya.\n\n>> Kode OTP anda: ${codeOtp}.`;
const waUrl = `https://wa.wibudev.com/code?nom=${encodeURIComponent(nomor)}&text=${encodeURIComponent(waMessage)}`; const waUrl = `https://wa.wibudev.com/code?nom=${encodeURIComponent(nomor)}&text=${encodeURIComponent(waMessage)}`;
const waRes = await fetch(waUrl);
const waData = await waRes.json();
if (waData.status !== "success") { try {
return NextResponse.json( const waRes = await fetch(waUrl);
{ success: false, message: "Gagal mengirim OTP via WhatsApp" }, if (!waRes.ok) {
{ status: 400 } console.warn(`⚠️ WA Service HTTP Error (Resend): ${waRes.status} ${waRes.statusText}. Continuing since OTP is logged.`);
); } else {
const waData = await waRes.json();
console.log("📱 WA Response (Resend):", waData);
}
} catch (waError: any) {
console.warn("⚠️ WA Connection Exception (Resend). Continuing since OTP is logged.", waError.message);
} }
// Simpan OTP ke database // Simpan OTP ke database

View File

@@ -21,14 +21,21 @@ export async function POST(req: Request) {
// Generate OTP // Generate OTP
const codeOtp = randomOTP(); const codeOtp = randomOTP();
const otpNumber = Number(codeOtp); const otpNumber = Number(codeOtp);
console.log(`🔑 DEBUG SEND-OTP-REGISTER [${nomor}]: ${codeOtp}`);
// Kirim WA // Kirim WA
const waUrl = `https://wa.wibudev.com/code?nom=${encodeURIComponent(nomor)}&text=Website Desa Darmasaba - Kode verifikasi Anda: ${codeOtp}`; const waUrl = `https://wa.wibudev.com/code?nom=${encodeURIComponent(nomor)}&text=Website Desa Darmasaba - Kode verifikasi Anda: ${codeOtp}`;
const res = await fetch(waUrl);
const sendWa = await res.json();
if (sendWa.status !== "success") { try {
return NextResponse.json({ success: false, message: 'Gagal mengirim OTP' }, { status: 400 }); const res = await fetch(waUrl);
if (!res.ok) {
console.warn(`⚠️ WA Service HTTP Error (SendOTPRegister): ${res.status} ${res.statusText}. Continuing since OTP is logged.`);
} else {
const sendWa = await res.json();
console.log("📱 WA Response (SendOTPRegister):", sendWa);
}
} catch (waError: any) {
console.warn("⚠️ WA Connection Exception (SendOTPRegister). Continuing since OTP is logged.", waError.message);
} }
// Simpan OTP // Simpan OTP