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 | 1x 104x 8x 6x 6x 6x 1x 94x 92x 1x 1x 11x 11x 11x 18x 18x 18x 18x 108x 18x 1656x 18x 54x 18x 72x 18x 18x 18x 1x 1x 18x 18x 18x 18x 18x 18x 4x 4x 18x 3x 3x 18x 18x 4x 4x 4x 18x 18x | // Sitemap data route — public, no auth required.
// Aggregates all published entity URLs so the marketplace can build its
// dynamic sitemap without duplicating the static-URL enumeration logic.
import { eq } from "drizzle-orm";
import { Hono } from "hono";
import { getDb } from "../../db";
import { blogs, projects, pros } from "../../db/schema";
import { localitiesData, zonesData } from "../../../seeds/taxonomy-data";
const SITE_URL = "https://interioring.com";
// ── Static geo/content URLs ──────────────────────────────────────────────────
// Zones and localities are derived from the seed taxonomy — the same source
// that populates the DB — so renames or additions propagate without manual
// duplication. Slug convention: lowercase name with spaces → hyphens.
const toSlug = (name: string) => name.toLowerCase().replace(/\s+/g, "-");
// Sitemap URLs are hardcoded under `/interiors/hyderabad/`, so only Hyderabad
// zones/localities belong here. Non-Hyderabad zones (sentinel buckets like
// `unlisted`/`overseas` for #626) must be excluded or they leak duplicate
// empty-slug URLs into the sitemap.
const hyderabadZones = zonesData.filter((z) => z.cityId === "hyderabad");
const hyderabadZoneIds = new Set(hyderabadZones.map((z) => z.id));
const ZONES = hyderabadZones.map((z) => ({ slug: toSlug(z.name), name: z.name }));
const zoneSlugById = new Map(hyderabadZones.map((z) => [z.id, toSlug(z.name)] as const));
const LOCALITIES: { zoneSlug: string; localitySlug: string }[] = localitiesData
.filter((l) => hyderabadZoneIds.has(l.zoneId))
.map((l) => ({
zoneSlug: zoneSlugById.get(l.zoneId) ?? "",
localitySlug: toSlug(l.name),
}));
const SERVICES = [
"modular-kitchen",
"full-home-interior",
"2bhk-turnkey-package",
];
const BHK_COUNTS = [1, 2, 3, 4];
export type SitemapEntity = {
url: string;
lastmod: string;
changefreq: string;
priority: number;
};
export type SitemapResponse = {
entities: SitemapEntity[];
generatedAt: string;
};
function toDateString(ts: Date | number | null | undefined): string {
Iif (!ts) return new Date().toISOString().split("T")[0];
const d = typeof ts === "number" ? new Date(ts * 1000) : ts;
return d.toISOString().split("T")[0];
}
function buildStaticEntities(): SitemapEntity[] {
const today = new Date().toISOString().split("T")[0];
const entities: SitemapEntity[] = [];
// City hub
entities.push({
url: `${SITE_URL}/interiors/hyderabad`,
lastmod: today,
changefreq: "daily",
priority: 1.0,
});
// Zone pages
for (const zone of ZONES) {
entities.push({
url: `${SITE_URL}/interiors/hyderabad/${zone.slug}`,
lastmod: today,
changefreq: "weekly",
priority: 0.9,
});
}
// Locality pages
for (const loc of LOCALITIES) {
entities.push({
url: `${SITE_URL}/interiors/hyderabad/${loc.zoneSlug}/${loc.localitySlug}`,
lastmod: today,
changefreq: "weekly",
priority: 0.85,
});
}
// City × service pages
for (const service of SERVICES) {
entities.push({
url: `${SITE_URL}/interiors/hyderabad/${service}`,
lastmod: today,
changefreq: "weekly",
priority: 0.9,
});
}
// BHK × city pages
for (const bhk of BHK_COUNTS) {
entities.push({
url: `${SITE_URL}/interiors/hyderabad/${bhk}bhk-interior`,
lastmod: today,
changefreq: "weekly",
priority: 0.8,
});
}
// Cost calculator tool
entities.push({
url: `${SITE_URL}/tools/interior-design-cost-calculator`,
lastmod: today,
changefreq: "monthly",
priority: 0.8,
});
// FAQ hub
entities.push({
url: `${SITE_URL}/faq`,
lastmod: today,
changefreq: "monthly",
priority: 0.8,
});
return entities;
}
const sitemap = new Hono<{ Bindings: CloudflareBindings }>();
sitemap.get("/", async (c) => {
const db = getDb(c.env.DB);
// Fetch published pros
const publishedPros = await db
.select({
slug: pros.slug,
id: pros.id,
dateUpdated: pros.dateUpdated,
})
.from(pros)
.where(eq(pros.status, "published"))
.all();
// Fetch published projects — include slug so canonical URLs avoid the
// /projects/[id] → /projects/[slug] 301 redirect (saves ~1s LCP).
const publishedProjects = await db
.select({
id: projects.id,
slug: projects.slug,
dateUpdated: projects.dateUpdated,
})
.from(projects)
.where(eq(projects.status, "published"))
.all();
// Fetch published blogs
const publishedBlogs = await db
.select({
slug: blogs.slug,
publishedAt: blogs.publishedAt,
dateUpdated: blogs.dateUpdated,
})
.from(blogs)
.where(eq(blogs.status, "published"))
.all();
const entities: SitemapEntity[] = [...buildStaticEntities()];
// Pros — use slug if available, fall back to id
for (const pro of publishedPros) {
const identifier = pro.slug ?? pro.id;
entities.push({
url: `${SITE_URL}/pros/${identifier}`,
lastmod: toDateString(pro.dateUpdated),
changefreq: "weekly",
priority: 0.8,
});
}
// Projects — prefer slug to avoid the id→slug 301 redirect on canonical URLs.
for (const project of publishedProjects) {
const identifier = project.slug ?? project.id;
entities.push({
url: `${SITE_URL}/projects/${identifier}`,
lastmod: toDateString(project.dateUpdated),
changefreq: "weekly",
priority: 0.8,
});
}
// Blogs — weekly if updated within 30 days, otherwise monthly
const thirtyDaysAgo = Date.now() / 1000 - 30 * 24 * 60 * 60;
for (const blog of publishedBlogs) {
const lastmodTs = blog.publishedAt ?? blog.dateUpdated;
const isRecent = typeof lastmodTs === "number" && lastmodTs > thirtyDaysAgo;
entities.push({
url: `${SITE_URL}/blog/${blog.slug}`,
lastmod: toDateString(lastmodTs),
changefreq: isRecent ? "weekly" : "monthly",
priority: 0.7,
});
}
const body: SitemapResponse = {
entities,
generatedAt: new Date().toISOString(),
};
return c.json(body, 200, {
"Cache-Control": "public, s-maxage=172800, stale-while-revalidate=604800",
});
});
export default sitemap;
|