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 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 | 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 2x 1x 2x 2x 2x 2x 2x 2x 1x 1x 1x 1x 1x 1x 2x 2x 2x 1x 1x 1x 3x 3x 3x 3x 3x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 1x 1x 3x 3x 3x 3x 3x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 2x 1x 1x 2x 2x 2x 2x 2x 1x 1x 1x 2x 2x 2x 2x 2x 1x 1x 1x 3x 3x 3x 3x 4x 2x 3x 2x 4x 4x 2x 1x 1x 5x 5x 5x 5x 5x 1x 4x 1x 3x 3x 1x 2x 2x 1x 1x 1x 1x 1x 1x 1x 5x 5x 5x 5x 5x 5x 1x 4x 3x 3x 1x 2x 2x 2x 2x 2x 2x 2x 1x 4x 4x 4x 4x 4x 3x 3x 3x 1x 2x 1x 1x 2x 1x | // Admin Pro Routes
import { Hono } from "hono";
import type { Dal } from "../../dal";
import type { Services } from "../../services";
import {
success,
successWithPagination,
handleError,
} from "../../lib/response";
import { buildPaginationMeta, requireUser } from "../../lib/utils";
import { ValidationError, NotFoundError } from "../../lib/errors";
import { PRO_ROLES } from "../../db/schema";
import { createDualCache, CACHE_KEYS, MARKETPLACE } from "../../lib/cache";
import { invalidateUserRoles } from "../../lib/role-cache";
import { logger } from "../../lib/logger";
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);
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 pro detail cache only — homepage expires naturally (5min TTL)
try {
const cache = createDualCache(c.env.KV_CACHE);
c.executionCtx.waitUntil(cache.delete(MARKETPLACE.proFull(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 marketplace caches — pro no longer visible
const cache = createDualCache(c.env.KV_CACHE);
await Promise.all([
cache.delete(MARKETPLACE.proFull(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);
c.executionCtx.waitUntil(
(async () => {
try {
// Invalidate marketplace caches — new pro now visible
const cache = createDualCache(c.env.KV_CACHE);
await Promise.all([
cache.delete(MARKETPLACE.proFull(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 pro = await services.pro.setFeatured(
c.req.param("id"),
isFeatured,
user.id,
);
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 pro = await services.pro.setEarlyAdopter(
c.req.param("id"),
isEarlyAdopter,
user.id,
);
return success(c, pro);
} catch (err) {
return handleError(c, err);
}
});
// Get team members for a pro
pros.get("/:id/team", async (c) => {
try {
const dal = c.get("dal");
const proId = c.req.param("id");
// Get all roles for this pro
const roles = await dal.userTenantRoles.findByProId(proId);
// Batch fetch all users in a single query
const userIds = roles.map((r) => r.userId);
const users = await dal.users.findByIds(userIds);
// Create lookup map for users
const usersMap = new Map(users.map((u) => [u.id, u]));
// Map roles to team members with user details
const teamMembers = roles.map((role) => {
const user = usersMap.get(role.userId);
return {
id: role.id,
userId: role.userId,
role: role.role,
user: user
? {
id: user.id,
name: user.name,
email: user.email,
}
: null,
dateCreated: role.dateCreated,
};
});
return success(c, teamMembers);
} catch (err) {
return handleError(c, err);
}
});
// Add team member to pro
pros.post("/:id/team", async (c) => {
try {
const dal = c.get("dal");
const proId = c.req.param("id");
const body = await c.req.json<{
userId: string;
role: "owner" | "manager" | "staff";
}>();
if (!body.userId) {
return handleError(c, new ValidationError("User ID is required"));
}
if (!PRO_ROLES.includes(body.role)) {
throw new ValidationError(`Invalid role: ${body.role}`);
}
// Check if user exists
const user = await dal.users.findById(body.userId);
if (!user) {
return handleError(c, new NotFoundError("User not found"));
}
// Check if user already has a role for this pro
const existingRole = await dal.userTenantRoles.findUserProRole(
body.userId,
proId,
);
if (existingRole) {
return handleError(
c,
new ValidationError("User already has a role for this pro"),
);
}
// Add the role
const newRole = await dal.userTenantRoles.create({
userId: body.userId,
tenantType: "pro",
tenantId: proId,
role: body.role,
});
// Invalidate cached roles for the affected user
const cache = createDualCache(c.env.KV_CACHE);
await invalidateUserRoles(cache, body.userId);
return success(
c,
{
id: newRole.id,
userId: user.id,
role: newRole.role,
user: {
id: user.id,
name: user.name,
email: user.email,
},
dateCreated: newRole.dateCreated,
},
201,
);
} catch (err) {
return handleError(c, err);
}
});
// Update team member role
pros.put("/:id/team/:roleId", async (c) => {
try {
const dal = c.get("dal");
const proId = c.req.param("id");
const roleId = parseInt(c.req.param("roleId"), 10);
const body = await c.req.json<{
role: "owner" | "manager" | "staff";
}>();
if (!PRO_ROLES.includes(body.role)) {
throw new ValidationError(`Invalid role: ${body.role}`);
}
// Get the existing role
const roles = await dal.userTenantRoles.findByProId(proId);
const existingRole = roles.find((r) => r.id === roleId);
if (!existingRole) {
return handleError(c, new NotFoundError("Team member not found"));
}
// Delete and recreate with new role
await dal.userTenantRoles.delete(roleId);
const newRole = await dal.userTenantRoles.create({
userId: existingRole.userId,
tenantType: "pro",
tenantId: proId,
role: body.role,
});
// Invalidate cached roles for the affected user
const cache = createDualCache(c.env.KV_CACHE);
await invalidateUserRoles(cache, existingRole.userId);
const user = await dal.users.findById(existingRole.userId);
return success(c, {
id: newRole.id,
userId: existingRole.userId,
role: newRole.role,
user: user
? {
id: user.id,
name: user.name,
email: user.email,
}
: null,
dateCreated: newRole.dateCreated,
});
} catch (err) {
return handleError(c, err);
}
});
// Remove team member from pro
pros.delete("/:id/team/:roleId", async (c) => {
try {
const dal = c.get("dal");
const proId = c.req.param("id");
const roleId = parseInt(c.req.param("roleId"), 10);
// Look up the role before deletion to get the userId for cache invalidation
const roles = await dal.userTenantRoles.findByProId(proId, {
includeInactive: true,
});
const roleToDelete = roles.find((r) => r.id === roleId);
const deleted = await dal.userTenantRoles.delete(roleId);
if (!deleted) {
return handleError(c, new NotFoundError("Team member not found"));
}
// Invalidate cached roles for the affected user
if (roleToDelete) {
const cache = createDualCache(c.env.KV_CACHE);
await invalidateUserRoles(cache, roleToDelete.userId);
}
return success(c, { message: "Team member removed successfully" });
} catch (err) {
return handleError(c, err);
}
});
export default pros;
|