bam/lib/listmonk.ts

52 lines
1.5 KiB
TypeScript
Raw Normal View History

2024-10-18 13:12:19 +02:00
import "server-only";
2024-10-18 13:36:15 +02:00
export type listmonkData = {
email: string;
name: string;
status: "enabled" | "blocklisted";
lists: number[];
attribs: {};
};
2024-10-18 13:12:19 +02:00
async function makeApiCall(url: string, options?: RequestInit) {
try {
const response = await fetch(url, options);
if (!response.ok) {
throw new Error(`HTTP error! Status: ${response.status}`);
}
return await response.json();
} catch (error) {
console.error("Error making API call:", error);
throw error;
}
}
2024-10-18 13:36:15 +02:00
async function listmonk(data: listmonkData) {
const listmonkUrl = process.env.LISTMONK_URL ?? "http://localhost:9000/api/";
const listmonkUser = process.env.LISTMONK_USER ?? "nouser";
const listmonkPass = process.env.LISTMONK_PASS ?? "nopass";
// Encode the username and password in base64
const credentials = Buffer.from(`${listmonkUser}:${listmonkPass}`).toString("base64");
const options: RequestInit = {
method: "POST",
headers: {
"Content-Type": "application/json",
Authorization: `Basic ${credentials}`,
},
body: JSON.stringify(data),
};
try {
const response = await fetch(`${listmonkUrl}subscribers`, options);
if (!response.ok) {
throw new Error(`HTTP error! Status: ${response.status}`);
}
const responseData = await response.json();
console.log("Subscriber created successfully:", responseData);
} catch (error) {
console.error("Failed to create subscriber:", error);
}
2024-10-18 13:12:19 +02:00
}
export default listmonk;