Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 | 1x 1x 8x 8x 8x 8x 8x 8x 8x 6x 5x 5x 4x 6x 2x | import { Hono } from "hono";
import type { Dal } from "../../../dal";
import type { Services } from "../../../services";
import { success, handleError } from "../../../lib/response";
import { requireUser } from "../../../lib/utils";
type Env = {
Bindings: CloudflareBindings;
Variables: {
user: { id: string; name: string; email: string } | null;
session: unknown;
dal: Dal;
services: Services;
};
};
const contacts = new Hono<Env>();
// GET / - Search contacts from DB for audience builder
contacts.get("/", async (c) => {
try {
requireUser(c.get("user"));
const dal = c.get("dal");
const source = c.req.query("source") ?? "all";
const city = c.req.query("city");
const results: Array<{
phone: string;
name: string;
source: string;
city?: string;
}> = [];
// Get pros with WhatsApp numbers
if (source === "all" || source === "pros") {
const pros = await dal.pros.findAll(
{ cityId: city, status: "published" },
0,
500,
);
for (const v of pros) {
if (v.whatsapp) {
results.push({
phone: v.whatsapp,
name: v.businessName,
source: "pro",
city: v.cityId ?? undefined,
});
}
}
}
return success(c, { contacts: results, total: results.length });
} catch (err) {
return handleError(c, err);
}
});
export default contacts;
|