feat(auth): implement WhatsApp OTP sending function for login
- Create sendCodeOtp utility function using otp.wibudev.com API - Update login route to use new sendCodeOtp function - Replace old URL-based WhatsApp approach with authenticated API call - Add WA_SERVER_TOKEN environment variable documentation - Support flexible codeOtp type (string | number) for better reusability Co-authored-by: Qwen-Coder <qwen-coder@alibabacloud.com>
This commit is contained in:
@@ -11,6 +11,9 @@ SEAFILE_PUBLIC_SHARE_TOKEN=your_seafile_public_share_token
|
|||||||
WIBU_UPLOAD_DIR=uploads
|
WIBU_UPLOAD_DIR=uploads
|
||||||
WIBU_DOWNLOAD_DIR=./download
|
WIBU_DOWNLOAD_DIR=./download
|
||||||
|
|
||||||
|
# WhatsApp Server Configuration
|
||||||
|
WA_SERVER_TOKEN=your_whatsapp_server_token
|
||||||
|
|
||||||
# Application Configuration
|
# Application Configuration
|
||||||
# IMPORTANT: For staging/production, set this to your actual domain
|
# IMPORTANT: For staging/production, set this to your actual domain
|
||||||
# Local development: NEXT_PUBLIC_BASE_URL=http://localhost:3000
|
# Local development: NEXT_PUBLIC_BASE_URL=http://localhost:3000
|
||||||
|
|||||||
32
src/app/api/auth/_lib/sendCodeOtp.ts
Normal file
32
src/app/api/auth/_lib/sendCodeOtp.ts
Normal file
@@ -0,0 +1,32 @@
|
|||||||
|
// app/api/auth/_lib/sendCodeOtp.ts
|
||||||
|
|
||||||
|
const sendCodeOtp = async ({
|
||||||
|
nomor,
|
||||||
|
codeOtp,
|
||||||
|
newMessage,
|
||||||
|
}: {
|
||||||
|
nomor: string;
|
||||||
|
codeOtp?: string | number;
|
||||||
|
newMessage?: string;
|
||||||
|
}) => {
|
||||||
|
const msg =
|
||||||
|
newMessage ||
|
||||||
|
`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 enCode = msg;
|
||||||
|
|
||||||
|
const res = await fetch(`https://otp.wibudev.com/api/wa/send-text`, {
|
||||||
|
method: "POST",
|
||||||
|
headers: {
|
||||||
|
"Content-Type": "application/json",
|
||||||
|
Authorization: `Bearer ${process.env.WA_SERVER_TOKEN}`,
|
||||||
|
},
|
||||||
|
body: JSON.stringify({
|
||||||
|
number: nomor,
|
||||||
|
text: enCode,
|
||||||
|
}),
|
||||||
|
});
|
||||||
|
|
||||||
|
return res;
|
||||||
|
};
|
||||||
|
|
||||||
|
export { sendCodeOtp };
|
||||||
@@ -2,6 +2,7 @@
|
|||||||
import prisma from "@/lib/prisma";
|
import prisma from "@/lib/prisma";
|
||||||
import { NextResponse } from "next/server";
|
import { NextResponse } from "next/server";
|
||||||
import { randomOTP } from "../_lib/randomOTP";
|
import { randomOTP } from "../_lib/randomOTP";
|
||||||
|
import { sendCodeOtp } from "../_lib/sendCodeOtp";
|
||||||
import { cookies } from "next/headers";
|
import { cookies } from "next/headers";
|
||||||
|
|
||||||
export async function POST(req: Request) {
|
export async function POST(req: Request) {
|
||||||
@@ -35,18 +36,17 @@ export async function POST(req: Request) {
|
|||||||
|
|
||||||
console.log(`🔑 DEBUG OTP [${nomor}]: ${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 waUrl = `https://wa.wibudev.com/code?nom=${encodeURIComponent(nomor)}&text=${encodeURIComponent(waMessage)}`;
|
|
||||||
|
|
||||||
console.log("🔍 Debug WA URL:", waUrl);
|
|
||||||
|
|
||||||
try {
|
try {
|
||||||
const res = await fetch(waUrl);
|
const waResponse = await sendCodeOtp({
|
||||||
if (!res.ok) {
|
nomor,
|
||||||
console.error(`⚠️ WA Service HTTP Error: ${res.status} ${res.statusText}. Continuing since OTP is logged.`);
|
codeOtp,
|
||||||
console.log(`💡 Use this OTP to login: ${codeOtp}`);
|
});
|
||||||
|
|
||||||
|
if (!waResponse.ok) {
|
||||||
|
console.error(`⚠️ WA Service HTTP Error: ${waResponse.status} ${waResponse.statusText}. Continuing since OTP is logged.`);
|
||||||
|
console.log(`💡 Use this OTP to login: ${codeOtp}`);
|
||||||
} else {
|
} else {
|
||||||
const sendWa = await res.json();
|
const sendWa = await waResponse.json();
|
||||||
console.log("📱 WA Response:", sendWa);
|
console.log("📱 WA Response:", sendWa);
|
||||||
if (sendWa.status !== "success") {
|
if (sendWa.status !== "success") {
|
||||||
console.error("⚠️ WA Service Logic Error:", sendWa);
|
console.error("⚠️ WA Service Logic Error:", sendWa);
|
||||||
|
|||||||
Reference in New Issue
Block a user