All files / routes/pro/company-profile index.ts

100% Statements 144/144
100% Branches 32/32
100% Functions 11/11
100% Lines 128/128

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                                                                  1x     1x           1x 3x 3x   3x 3x 1x   2x       1x 4x 4x 4x   4x 4x   3x 3x 3x 2x   1x               1x 4x 4x 4x   4x 4x   3x 3x 3x       2x   1x       1x     5x 5x 5x   5x         5x   4x 4x   3x 3x 3x         1x   2x         1x     4x 4x 4x   4x         4x   3x 3x   2x 2x 1x   1x                 1x 4x 4x 4x   4x 4x   3x 3x 3x 1x   2x       1x     5x 5x 5x   5x         5x   4x 4x   3x 3x 3x         1x   2x         1x     5x 5x 5x   5x         5x   4x 4x   3x 3x 1x   2x                 1x 4x 4x 4x   4x 4x   3x 3x 3x       1x   2x       1x     5x 5x 5x   5x 5x   4x 4x   3x 3x 3x         1x   2x         1x     5x 5x 5x   5x 5x   4x 4x   3x 3x 1x   2x            
// Pro Company Profile Routes
import { Hono } from "hono";
import type { Dal } from "../../../dal";
import type { Services } from "../../../services";
import { success } from "../../../lib/response";
import { requireProAccess } from "../../../middleware";
import type {
	UpdateProfileInput,
	AddLeadershipInput,
	UpdateLeadershipInput,
	AddCertificationInput,
	UpdateCertificationInput,
	AddTestimonialInput,
	UpdateTestimonialInput,
} from "../../../services";
import {
	requireManagerRole,
	parseNumericId,
	handleServiceError,
} from "./helpers";
 
type Env = {
	Bindings: CloudflareBindings;
	Variables: {
		user: { id: string; name: string; email: string } | null;
		session: unknown;
		dal: Dal;
		services: Services;
		proId: string;
		proRole: string;
	};
};
 
const companyProfile = new Hono<Env>();
 
// All company profile routes require pro access
companyProfile.use("/:proId/*", requireProAccess);
 
// ============================================================================
// Profile (Business Info + Social Links)
// ============================================================================
 
companyProfile.get("/:proId/company-profile", async (c) => {
	const services = c.get("services");
	const proId = c.req.param("proId");
 
	try {
		const profile = await services.companyProfile.getCompanyProfile(proId);
		return success(c, profile);
	} catch (err) {
		return handleServiceError(c, err, "fetch", "company profile");
	}
});
 
companyProfile.put("/:proId/company-profile", async (c) => {
	const services = c.get("services");
	const proId = c.req.param("proId");
	const proRole = c.get("proRole");
 
	const forbidden = requireManagerRole(c, proRole, "update company profile");
	if (forbidden) return forbidden;
 
	try {
		const body = await c.req.json<UpdateProfileInput>();
		const profile = await services.companyProfile.updateProfile(proId, body);
		return success(c, profile);
	} catch (err) {
		return handleServiceError(c, err, "update", "company profile");
	}
});
 
// ============================================================================
// Leadership Team
// ============================================================================
 
companyProfile.post("/:proId/company-profile/leadership", async (c) => {
	const services = c.get("services");
	const proId = c.req.param("proId");
	const proRole = c.get("proRole");
 
	const forbidden = requireManagerRole(c, proRole, "add leadership members");
	if (forbidden) return forbidden;
 
	try {
		const body = await c.req.json<AddLeadershipInput>();
		const member = await services.companyProfile.addLeadershipMember(
			proId,
			body,
		);
		return success(c, member, 201);
	} catch (err) {
		return handleServiceError(c, err, "create", "leadership member");
	}
});
 
companyProfile.put(
	"/:proId/company-profile/leadership/:memberId",
	async (c) => {
		const services = c.get("services");
		const proId = c.req.param("proId");
		const proRole = c.get("proRole");
 
		const forbidden = requireManagerRole(
			c,
			proRole,
			"update leadership members",
		);
		if (forbidden) return forbidden;
 
		const memberId = parseNumericId(c, "memberId", "member");
		if (typeof memberId !== "number") return memberId;
 
		try {
			const body = await c.req.json<UpdateLeadershipInput>();
			const member = await services.companyProfile.updateLeadershipMember(
				proId,
				memberId,
				body,
			);
			return success(c, member);
		} catch (err) {
			return handleServiceError(c, err, "update", "leadership member");
		}
	},
);
 
companyProfile.delete(
	"/:proId/company-profile/leadership/:memberId",
	async (c) => {
		const services = c.get("services");
		const proId = c.req.param("proId");
		const proRole = c.get("proRole");
 
		const forbidden = requireManagerRole(
			c,
			proRole,
			"delete leadership members",
		);
		if (forbidden) return forbidden;
 
		const memberId = parseNumericId(c, "memberId", "member");
		if (typeof memberId !== "number") return memberId;
 
		try {
			await services.companyProfile.deleteLeadershipMember(proId, memberId);
			return success(c, { message: "Leadership member deleted successfully" });
		} catch (err) {
			return handleServiceError(c, err, "delete", "leadership member");
		}
	},
);
 
// ============================================================================
// Certifications & Awards
// ============================================================================
 
companyProfile.post("/:proId/company-profile/certifications", async (c) => {
	const services = c.get("services");
	const proId = c.req.param("proId");
	const proRole = c.get("proRole");
 
	const forbidden = requireManagerRole(c, proRole, "add certifications");
	if (forbidden) return forbidden;
 
	try {
		const body = await c.req.json<AddCertificationInput>();
		const cert = await services.companyProfile.addCertification(proId, body);
		return success(c, cert, 201);
	} catch (err) {
		return handleServiceError(c, err, "create", "certification");
	}
});
 
companyProfile.put(
	"/:proId/company-profile/certifications/:certId",
	async (c) => {
		const services = c.get("services");
		const proId = c.req.param("proId");
		const proRole = c.get("proRole");
 
		const forbidden = requireManagerRole(
			c,
			proRole,
			"update certifications",
		);
		if (forbidden) return forbidden;
 
		const certId = parseNumericId(c, "certId", "certification");
		if (typeof certId !== "number") return certId;
 
		try {
			const body = await c.req.json<UpdateCertificationInput>();
			const cert = await services.companyProfile.updateCertification(
				proId,
				certId,
				body,
			);
			return success(c, cert);
		} catch (err) {
			return handleServiceError(c, err, "update", "certification");
		}
	},
);
 
companyProfile.delete(
	"/:proId/company-profile/certifications/:certId",
	async (c) => {
		const services = c.get("services");
		const proId = c.req.param("proId");
		const proRole = c.get("proRole");
 
		const forbidden = requireManagerRole(
			c,
			proRole,
			"delete certifications",
		);
		if (forbidden) return forbidden;
 
		const certId = parseNumericId(c, "certId", "certification");
		if (typeof certId !== "number") return certId;
 
		try {
			await services.companyProfile.deleteCertification(proId, certId);
			return success(c, { message: "Certification deleted successfully" });
		} catch (err) {
			return handleServiceError(c, err, "delete", "certification");
		}
	},
);
 
// ============================================================================
// Testimonials
// ============================================================================
 
companyProfile.post("/:proId/company-profile/testimonials", async (c) => {
	const services = c.get("services");
	const proId = c.req.param("proId");
	const proRole = c.get("proRole");
 
	const forbidden = requireManagerRole(c, proRole, "add testimonials");
	if (forbidden) return forbidden;
 
	try {
		const body = await c.req.json<AddTestimonialInput>();
		const testimonial = await services.companyProfile.addTestimonial(
			proId,
			body,
		);
		return success(c, testimonial, 201);
	} catch (err) {
		return handleServiceError(c, err, "create", "testimonial");
	}
});
 
companyProfile.put(
	"/:proId/company-profile/testimonials/:testimonialId",
	async (c) => {
		const services = c.get("services");
		const proId = c.req.param("proId");
		const proRole = c.get("proRole");
 
		const forbidden = requireManagerRole(c, proRole, "update testimonials");
		if (forbidden) return forbidden;
 
		const testimonialId = parseNumericId(c, "testimonialId", "testimonial");
		if (typeof testimonialId !== "number") return testimonialId;
 
		try {
			const body = await c.req.json<UpdateTestimonialInput>();
			const testimonial = await services.companyProfile.updateTestimonial(
				proId,
				testimonialId,
				body,
			);
			return success(c, testimonial);
		} catch (err) {
			return handleServiceError(c, err, "update", "testimonial");
		}
	},
);
 
companyProfile.delete(
	"/:proId/company-profile/testimonials/:testimonialId",
	async (c) => {
		const services = c.get("services");
		const proId = c.req.param("proId");
		const proRole = c.get("proRole");
 
		const forbidden = requireManagerRole(c, proRole, "delete testimonials");
		if (forbidden) return forbidden;
 
		const testimonialId = parseNumericId(c, "testimonialId", "testimonial");
		if (typeof testimonialId !== "number") return testimonialId;
 
		try {
			await services.companyProfile.deleteTestimonial(proId, testimonialId);
			return success(c, { message: "Testimonial deleted successfully" });
		} catch (err) {
			return handleServiceError(c, err, "delete", "testimonial");
		}
	},
);
 
export default companyProfile;