All files / routes/admin pros.routes.ts

98.33% Statements 118/120
100% Branches 16/16
100% Functions 11/11
98.33% Lines 118/120

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 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347                                                      1x       1x 7x 7x 7x 7x       7x 7x   7x   1x 1x     6x     7x 7x                                       7x           6x           1x         1x 2x 2x 2x 1x   1x         1x 3x 3x 3x 3x   2x     1x               1x   2x         1x 3x 3x 3x 3x   3x 3x     2x 2x 2x         2x   1x         1x 2x 2x 2x 1x   1x         1x 4x 4x 4x 4x 4x   3x   3x     3x 3x           3x     3x     3x 3x 3x 3x         3x 3x               3x                           3x   1x         1x 4x 4x 4x 4x 4x     3x       4x   3x     3x 3x           3x     3x     3x 3x 3x 3x         3x 3x               3x                           4x   1x         1x 3x 3x 3x 3x 3x   3x     2x 2x 2x         2x   1x         1x 3x 3x 3x 3x 3x   3x             2x 2x 2x         2x   1x           1x      
// Admin Pro Routes
import { Hono } from "hono";
import type { Dal } from "../../dal";
import { CACHE_KEYS, createDualCache } from "../../lib/cache";
import { invalidateEntity } from "../../lib/cache-invalidation";
import { pingIndexNow } from "../../lib/indexnow";
import { fireInternalNotification } from "../../lib/internal-notifications";
import { logger } from "../../lib/logger";
import {
	handleError,
	success,
	successWithPagination,
} from "../../lib/response";
import { buildPaginationMeta, requireUser } from "../../lib/utils";
import type { Services } from "../../services";
import teamRoutes from "./pros/team.routes";
 
type Env = {
	Bindings: CloudflareBindings;
	Variables: {
		user: { id: string; name: string; email: string } | null;
		session: unknown;
		dal: Dal;
		services: Services;
	};
};
 
const pros = new Hono<Env>();
 
// List all pros with filters and pagination
// Supports both page-based (page=1) and offset-based (offset=0) pagination
pros.get("/", async (c) => {
	try {
		const services = c.get("services");
		const limitParam = Number(c.req.query("limit") || 20);
		const safeLimit = Math.min(100, Math.max(1, limitParam));
 
		// Support both page-based and offset-based pagination
		let page: number;
		const offsetParam = c.req.query("offset");
		const pageParam = c.req.query("page");
 
		if (offsetParam !== undefined) {
			// Offset-based pagination (used by portal infinite scroll)
			const offset = Math.max(0, Number(offsetParam));
			page = Math.floor(offset / safeLimit) + 1;
		} else {
			// Page-based pagination
			page = Math.max(1, Number(pageParam || 1));
		}
 
		const includeIncompleteRaw = c.req.query("includeIncomplete");
		const filters = {
			status: c.req.query("status"),
			search: c.req.query("search"),
			isFeatured: c.req.query("isFeatured")
				? c.req.query("isFeatured") === "true"
				: undefined,
			// Issue #593: when explicitly "false", filter out pros with empty
			// businessName (partial onboarding shells). Defaults to undefined
			// (no filtering) so existing callers — dashboard counts, search
			// typeahead, analytics — see unchanged behavior.
			includeIncomplete:
				includeIncompleteRaw === undefined
					? undefined
					: includeIncompleteRaw !== "false",
			// Taxonomy filters
			businessTypeId: c.req.query("businessTypeId"),
			customerSegmentId: c.req.query("customerSegmentId"),
			cityId: c.req.query("cityId"),
		};
 
		const { pros: data, total } = await services.pro.list(
			filters,
			page,
			safeLimit,
		);
 
		return successWithPagination(
			c,
			data,
			buildPaginationMeta(total, page, safeLimit),
		);
	} catch (err) {
		return handleError(c, err);
	}
});
 
// Get single pro by ID
pros.get("/:id", async (c) => {
	try {
		const services = c.get("services");
		const pro = await services.pro.getById(c.req.param("id"));
		return success(c, pro);
	} catch (err) {
		return handleError(c, err);
	}
});
 
// Create new pro
pros.post("/", async (c) => {
	try {
		const services = c.get("services");
		const user = requireUser(c.get("user"));
		const body = await c.req.json();
 
		const pro = await services.pro.create(body, user.id);
 
		// Internal leadership notification (fire-and-forget)
		fireInternalNotification(c, c.get("dal"), {
			event: "new_pro_internal",
			proId: pro.id,
			businessName: pro.businessName,
			slug: pro.slug,
			userId: user.id,
		});
 
		return success(c, pro, 201);
	} catch (err) {
		return handleError(c, err);
	}
});
 
// Update pro
pros.put("/:id", async (c) => {
	try {
		const services = c.get("services");
		const user = requireUser(c.get("user"));
		const body = await c.req.json();
 
		const proId = c.req.param("id");
		const pro = await services.pro.update(proId, body, user.id, true);
 
		// Invalidate all pro caches (proFull, proCard, and list generation).
		try {
			const cache = createDualCache(c.env.KV_CACHE);
			c.executionCtx.waitUntil(invalidateEntity(cache, "pro", { id: proId }));
		} catch {
			/* executionCtx unavailable in tests */
		}
 
		return success(c, pro);
	} catch (err) {
		return handleError(c, err);
	}
});
 
// Delete pro
pros.delete("/:id", async (c) => {
	try {
		const services = c.get("services");
		await services.pro.delete(c.req.param("id"));
		return success(c, { message: "Pro deleted successfully" });
	} catch (err) {
		return handleError(c, err);
	}
});
 
// Disable (archive) pro
pros.post("/:id/disable", async (c) => {
	try {
		const services = c.get("services");
		const user = requireUser(c.get("user"));
		const proId = c.req.param("id");
		const pro = await services.pro.disable(proId, user.id);
 
		c.executionCtx.waitUntil(
			(async () => {
				try {
					// Invalidate all pro caches (proFull, proCard, list gen) plus
					// the homepage and room-categories which embed pro data.
					const cache = createDualCache(c.env.KV_CACHE);
					await Promise.all([
						invalidateEntity(cache, "pro", { id: proId }),
						cache.delete(CACHE_KEYS.MARKETPLACE_HOMEPAGE),
						cache.delete(CACHE_KEYS.MARKETPLACE_ROOM_CATEGORIES),
					]);
 
					const { CommunicationGateway } = await import(
						"../../lib/communication/gateway"
					);
					const { ProAccountStatusHandler } = await import(
						"../../lib/communication/handlers/pro-account-status.handler"
					);
					const dal = c.get("dal");
					const gateway = new CommunicationGateway(dal, c.env);
					const handler = new ProAccountStatusHandler(gateway, dal);
					await handler.handle({
						proId,
						status: "archived",
						businessName: pro?.businessName ?? "",
					});
					try {
						await c.get("services").notification.notify({
							proId,
							eventType: "pro_account_archived",
							title: "Your profile has been archived",
							body: "Your professional profile is no longer visible on Interioring",
							data: { url: "/profile" },
						});
					} catch (notifErr) {
						logger.error(
							"[ADMIN] Failed to send push notification for pro archived:",
							notifErr,
						);
					}
				} catch (err) {
					logger.error(
						"[ADMIN] Failed to send pro archived notification:",
						err,
					);
				}
			})(),
		);
 
		return success(c, pro);
	} catch (err) {
		return handleError(c, err);
	}
});
 
// Enable (publish) pro
pros.post("/:id/enable", async (c) => {
	try {
		const services = c.get("services");
		const user = requireUser(c.get("user"));
		const proId = c.req.param("id");
		const pro = await services.pro.publish(proId, user.id);
 
		// Notify IndexNow that the pro page is live (no-op until secret is set).
		c.executionCtx.waitUntil(
			pingIndexNow(c.env, [`/pros/${pro.slug ?? proId}`]),
		);
 
		c.executionCtx.waitUntil(
			(async () => {
				try {
					// Invalidate all pro caches (proFull, proCard, list gen) plus
					// the homepage and room-categories which embed pro data.
					const cache = createDualCache(c.env.KV_CACHE);
					await Promise.all([
						invalidateEntity(cache, "pro", { id: proId }),
						cache.delete(CACHE_KEYS.MARKETPLACE_HOMEPAGE),
						cache.delete(CACHE_KEYS.MARKETPLACE_ROOM_CATEGORIES),
					]);
 
					const { CommunicationGateway } = await import(
						"../../lib/communication/gateway"
					);
					const { ProAccountStatusHandler } = await import(
						"../../lib/communication/handlers/pro-account-status.handler"
					);
					const dal = c.get("dal");
					const gateway = new CommunicationGateway(dal, c.env);
					const handler = new ProAccountStatusHandler(gateway, dal);
					await handler.handle({
						proId,
						status: "published",
						businessName: pro?.businessName ?? "",
					});
					try {
						await c.get("services").notification.notify({
							proId,
							eventType: "pro_account_published",
							title: "Your profile is now live!",
							body: "Your professional profile has been published on Interioring",
							data: { url: "/profile" },
						});
					} catch (notifErr) {
						logger.error(
							"[ADMIN] Failed to send push notification for pro published:",
							notifErr,
						);
					}
				} catch (err) {
					logger.error(
						"[ADMIN] Failed to send pro published notification:",
						err,
					);
				}
			})(),
		);
 
		return success(c, pro);
	} catch (err) {
		return handleError(c, err);
	}
});
 
// Set featured status
pros.post("/:id/featured", async (c) => {
	try {
		const services = c.get("services");
		const user = requireUser(c.get("user"));
		const { isFeatured } = await c.req.json();
		const proId = c.req.param("id");
 
		const pro = await services.pro.setFeatured(proId, isFeatured, user.id);
 
		// Invalidate pro caches — isFeatured is returned in list + card results.
		try {
			const cache = createDualCache(c.env.KV_CACHE);
			c.executionCtx.waitUntil(invalidateEntity(cache, "pro", { id: proId }));
		} catch {
			/* executionCtx unavailable in tests */
		}
 
		return success(c, pro);
	} catch (err) {
		return handleError(c, err);
	}
});
 
// Set early adopter status
pros.post("/:id/early-adopter", async (c) => {
	try {
		const services = c.get("services");
		const user = requireUser(c.get("user"));
		const { isEarlyAdopter } = await c.req.json();
		const proId = c.req.param("id");
 
		const pro = await services.pro.setEarlyAdopter(
			proId,
			isEarlyAdopter,
			user.id,
		);
 
		// Invalidate pro caches — isEarlyAdopter is returned in card results.
		try {
			const cache = createDualCache(c.env.KV_CACHE);
			c.executionCtx.waitUntil(invalidateEntity(cache, "pro", { id: proId }));
		} catch {
			/* executionCtx unavailable in tests */
		}
 
		return success(c, pro);
	} catch (err) {
		return handleError(c, err);
	}
});
 
// Team management endpoints (GET/POST/PUT/DELETE under /:id/team) live in
// pros/team.routes.ts; mount them here so they share the same prefix.
pros.route("/", teamRoutes);
 
export default pros;