All files / dal inquiries.dal.ts

77.77% Statements 7/9
50% Branches 2/4
80% Functions 4/5
77.77% Lines 7/9

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                              57x     2x         2x       3x         3x                                   1x       1x      
/**
 * Marketplace inquiry submission DAL (create + findById + existsByPhone).
 *
 * NOT deprecated: pro/admin inquiry MANAGEMENT moved to the CRM module
 * (leads.dal.ts), but the `inquiries` table is the source of truth for the
 * homeowner portal (Restrict Direct Contact — homeowner inquiry list, message
 * threads, communication history log), so this creation path is permanent.
 * Homeowner-side reads live in homeowner-inquiries.dal.ts.
 */
import { and, eq, ne, sql } from "drizzle-orm";
import type { DrizzleD1Database } from "drizzle-orm/d1";
import type { Inquiry, NewInquiry } from "../db/schema";
import * as schema from "../db/schema";
 
export class InquiriesDal {
	constructor(private db: DrizzleD1Database<typeof schema>) {}
 
	async findById(id: number): Promise<Inquiry | undefined> {
		const result = await this.db
			.select()
			.from(schema.inquiries)
			.where(eq(schema.inquiries.id, id))
			.limit(1);
		return result[0];
	}
 
	async existsByPhone(phone: string): Promise<boolean> {
		const result = await this.db
			.select({ count: sql<number>`count(*)` })
			.from(schema.inquiries)
			.where(eq(schema.inquiries.customerPhone, phone))
			.limit(1);
		return (result[0]?.count ?? 0) > 0;
	}
 
	async countActiveByPhone(phone: string): Promise<number> {
		const result = await this.db
			.select({ count: sql<number>`count(*)` })
			.from(schema.inquiries)
			.where(
				and(
					eq(schema.inquiries.customerPhone, phone),
					ne(schema.inquiries.status, "closed"),
				),
			)
			.limit(1);
		return Number(result[0]?.count ?? 0);
	}
 
	async create(data: NewInquiry): Promise<Inquiry> {
		const result = await this.db
			.insert(schema.inquiries)
			.values(data)
			.returning();
		return result[0];
	}
}