mirror of
https://github.com/MadsLorentzen/ai-job-search.git
synced 2026-09-17 16:46:24 +00:00
Add Jobdanmark detail HTML fallback (#115)
This commit is contained in:
@@ -29,6 +29,169 @@ interface JsonLdJobPosting {
|
||||
description?: string
|
||||
}
|
||||
|
||||
interface DetailResult {
|
||||
slug: string
|
||||
url: string
|
||||
title: string
|
||||
datePosted: string
|
||||
validThrough: string | null
|
||||
employmentType: string[]
|
||||
hiringOrganization: {
|
||||
name: string
|
||||
logo: string | null
|
||||
}
|
||||
jobLocation: {
|
||||
streetAddress: string | null
|
||||
addressLocality: string | null
|
||||
addressRegion: string | null
|
||||
postalCode: string | null
|
||||
addressCountry: string | null
|
||||
}
|
||||
description: string
|
||||
applyUrl: string | null
|
||||
}
|
||||
|
||||
function cleanText(text: string): string {
|
||||
return text.replace(/\s+/g, " ").trim()
|
||||
}
|
||||
|
||||
function normalizeUrl(value: string | null | undefined): string | null {
|
||||
if (!value) return null
|
||||
const decoded = value.replace(/&/g, "&")
|
||||
if (decoded.startsWith("http")) return decoded
|
||||
if (decoded.startsWith("/")) return `${BASE_URL}${decoded}`
|
||||
return decoded
|
||||
}
|
||||
|
||||
function findJobPostingJsonLd(root: ReturnType<typeof parse>): JsonLdJobPosting | null {
|
||||
const ldJsonScripts = root.querySelectorAll('script[type="application/ld+json"]')
|
||||
|
||||
for (const script of ldJsonScripts) {
|
||||
try {
|
||||
const parsed = JSON.parse(script.text) as unknown
|
||||
if (isJobPosting(parsed)) return parsed
|
||||
if (Array.isArray(parsed)) {
|
||||
const found = parsed.find(isJobPosting)
|
||||
if (found) return found
|
||||
}
|
||||
} catch {
|
||||
// Continue to next script.
|
||||
}
|
||||
}
|
||||
|
||||
return null
|
||||
}
|
||||
|
||||
function isJobPosting(value: unknown): value is JsonLdJobPosting {
|
||||
return Boolean(value && typeof value === "object" && (value as JsonLdJobPosting)["@type"] === "JobPosting")
|
||||
}
|
||||
|
||||
function fromJsonLd(jobPosting: JsonLdJobPosting, slug: string, url: string): DetailResult {
|
||||
const hiringOrg = jobPosting.hiringOrganization
|
||||
const address = jobPosting.jobLocation?.address
|
||||
|
||||
const employmentType = Array.isArray(jobPosting.employmentType)
|
||||
? jobPosting.employmentType
|
||||
: jobPosting.employmentType
|
||||
? [jobPosting.employmentType]
|
||||
: []
|
||||
|
||||
return {
|
||||
slug,
|
||||
url,
|
||||
title: jobPosting.title ?? "",
|
||||
datePosted: jobPosting.datePosted ?? "",
|
||||
validThrough: jobPosting.validThrough ?? null,
|
||||
employmentType,
|
||||
hiringOrganization: {
|
||||
name: hiringOrg?.name ?? "",
|
||||
logo: hiringOrg?.logo ?? null,
|
||||
},
|
||||
jobLocation: {
|
||||
streetAddress: address?.streetAddress ?? null,
|
||||
addressLocality: address?.addressLocality ?? null,
|
||||
addressRegion: address?.addressRegion ?? null,
|
||||
postalCode: address?.postalCode ?? null,
|
||||
addressCountry: address?.addressCountry ?? null,
|
||||
},
|
||||
description: jobPosting.description ?? "",
|
||||
applyUrl: null,
|
||||
}
|
||||
}
|
||||
|
||||
function overviewValue(root: ReturnType<typeof parse>, label: string): string | null {
|
||||
const normalizedLabel = label.toLowerCase()
|
||||
for (const item of root.querySelectorAll(".job-overview li")) {
|
||||
const strong = item.querySelector("strong")
|
||||
const itemLabel = cleanText(strong?.text ?? "").replace(/:$/, "").toLowerCase()
|
||||
if (itemLabel !== normalizedLabel) continue
|
||||
|
||||
const value = cleanText(item.text.replace(strong?.text ?? "", ""))
|
||||
return value.replace(/^:\s*/, "") || null
|
||||
}
|
||||
return null
|
||||
}
|
||||
|
||||
function fromRenderedHtml(root: ReturnType<typeof parse>, slug: string, url: string): DetailResult {
|
||||
const pageTitle = cleanText(root.querySelector("title")?.text ?? "")
|
||||
if (pageTitle.toLowerCase().includes("404") || root.text.toLowerCase().includes("siden blev ikke fundet")) {
|
||||
throw new Error("NOT_FOUND")
|
||||
}
|
||||
|
||||
const title =
|
||||
cleanText(root.querySelector(".job-list-details .title")?.text ?? "") ||
|
||||
cleanText(root.querySelector("h1")?.text ?? "") ||
|
||||
cleanText(root.querySelector("h3")?.text ?? "").replace(/\s+\|\s+jobdanmark$/, "")
|
||||
|
||||
if (!title) {
|
||||
throw new Error("Failed to parse job page HTML")
|
||||
}
|
||||
|
||||
const companyLink = root.querySelector('.job-details-head a[href^="/virksomheder/"]')
|
||||
const companyName = cleanText(companyLink?.text ?? "")
|
||||
const logoSrc =
|
||||
root.querySelector(".company-logo img")?.getAttribute("src") ??
|
||||
root.querySelector(".company-logo source")?.getAttribute("srcset")?.split(/\s+/)[0]
|
||||
const workplace = overviewValue(root, "Arbejdssted")
|
||||
|
||||
const description = root
|
||||
.querySelectorAll(".job-list-details p, .job-list-details li")
|
||||
.map((node) => cleanText(node.text))
|
||||
.filter(Boolean)
|
||||
.join("\n")
|
||||
|
||||
const employmentType = overviewValue(root, "Jobtype")
|
||||
const applyUrl = normalizeUrl(root.querySelector("a.action.primary")?.getAttribute("href"))
|
||||
|
||||
return {
|
||||
slug,
|
||||
url,
|
||||
title,
|
||||
datePosted: overviewValue(root, "Udgivet") ?? "",
|
||||
validThrough: overviewValue(root, "Ansøgningsfrist"),
|
||||
employmentType: employmentType ? [employmentType] : [],
|
||||
hiringOrganization: {
|
||||
name: companyName,
|
||||
logo: normalizeUrl(logoSrc),
|
||||
},
|
||||
jobLocation: {
|
||||
streetAddress: workplace,
|
||||
addressLocality: null,
|
||||
addressRegion: null,
|
||||
postalCode: null,
|
||||
addressCountry: "DK",
|
||||
},
|
||||
description,
|
||||
applyUrl,
|
||||
}
|
||||
}
|
||||
|
||||
export function parseJobPostingFromHtml(html: string, slug: string, url: string): DetailResult {
|
||||
const root = parse(html)
|
||||
const jobPosting = findJobPostingJsonLd(root)
|
||||
return jobPosting ? fromJsonLd(jobPosting, slug, url) : fromRenderedHtml(root, slug, url)
|
||||
}
|
||||
|
||||
export const detail = defineCommand({
|
||||
name: "detail",
|
||||
description: "Full detail for a single job posting (by slug)",
|
||||
@@ -67,66 +230,10 @@ export const detail = defineCommand({
|
||||
}
|
||||
|
||||
const html = await response.text()
|
||||
const root = parse(html)
|
||||
|
||||
// Find JSON-LD script tag
|
||||
const ldJsonScripts = root.querySelectorAll('script[type="application/ld+json"]')
|
||||
let jobPosting: JsonLdJobPosting | null = null
|
||||
|
||||
for (const script of ldJsonScripts) {
|
||||
try {
|
||||
const parsed = JSON.parse(script.text)
|
||||
if (parsed["@type"] === "JobPosting") {
|
||||
jobPosting = parsed
|
||||
break
|
||||
}
|
||||
} catch {
|
||||
// continue to next script
|
||||
}
|
||||
}
|
||||
|
||||
if (!jobPosting) {
|
||||
// Check for 404 by looking at page content
|
||||
const pageTitle = root.querySelector("title")?.text ?? ""
|
||||
if (pageTitle.toLowerCase().includes("404") || html.toLowerCase().includes("siden blev ikke fundet")) {
|
||||
writeError("Job not found", "NOT_FOUND")
|
||||
} else {
|
||||
writeError("Failed to parse JSON-LD from job page", "PARSE_ERROR")
|
||||
}
|
||||
process.exit(1)
|
||||
}
|
||||
|
||||
if (signal.aborted) return
|
||||
|
||||
const hiringOrg = jobPosting.hiringOrganization
|
||||
const address = jobPosting.jobLocation?.address
|
||||
|
||||
const employmentType = Array.isArray(jobPosting.employmentType)
|
||||
? jobPosting.employmentType
|
||||
: jobPosting.employmentType
|
||||
? [jobPosting.employmentType]
|
||||
: []
|
||||
|
||||
const output = {
|
||||
slug,
|
||||
url,
|
||||
title: jobPosting.title ?? "",
|
||||
datePosted: jobPosting.datePosted ?? "",
|
||||
validThrough: jobPosting.validThrough ?? null,
|
||||
employmentType,
|
||||
hiringOrganization: {
|
||||
name: hiringOrg?.name ?? "",
|
||||
logo: hiringOrg?.logo ?? null,
|
||||
},
|
||||
jobLocation: {
|
||||
streetAddress: address?.streetAddress ?? null,
|
||||
addressLocality: address?.addressLocality ?? null,
|
||||
addressRegion: address?.addressRegion ?? null,
|
||||
postalCode: address?.postalCode ?? null,
|
||||
addressCountry: address?.addressCountry ?? null,
|
||||
},
|
||||
description: jobPosting.description ?? "",
|
||||
}
|
||||
const output = parseJobPostingFromHtml(html, slug, url)
|
||||
|
||||
if (flags.format === "json") {
|
||||
console.log(JSON.stringify(output, null, 2))
|
||||
@@ -136,6 +243,8 @@ export const detail = defineCommand({
|
||||
} catch (err) {
|
||||
if (err instanceof Error && err.message.includes("NOT_FOUND")) {
|
||||
writeError("Job not found", "NOT_FOUND")
|
||||
} else if (err instanceof Error && err.message.includes("Failed to parse")) {
|
||||
writeError(err.message, "PARSE_ERROR")
|
||||
} else {
|
||||
writeError(err instanceof Error ? err.message : String(err), "API_ERROR")
|
||||
}
|
||||
@@ -144,7 +253,7 @@ export const detail = defineCommand({
|
||||
},
|
||||
})
|
||||
|
||||
function outputPlain(data: Record<string, unknown>): void {
|
||||
function outputPlain(data: DetailResult): void {
|
||||
console.log(`slug: ${data.slug}`)
|
||||
console.log(`url: ${data.url}`)
|
||||
console.log(`title: ${data.title}`)
|
||||
@@ -152,14 +261,10 @@ function outputPlain(data: Record<string, unknown>): void {
|
||||
console.log(`validThrough: ${data.validThrough ?? "N/A"}`)
|
||||
const empType = Array.isArray(data.employmentType) ? data.employmentType.join(", ") : "-"
|
||||
console.log(`employmentType: ${empType}`)
|
||||
const org = data.hiringOrganization as { name: string; logo: string | null }
|
||||
const org = data.hiringOrganization
|
||||
console.log(`company: ${org.name}`)
|
||||
const loc = data.jobLocation as {
|
||||
streetAddress: string | null
|
||||
addressLocality: string | null
|
||||
postalCode: string | null
|
||||
addressCountry: string | null
|
||||
}
|
||||
const loc = data.jobLocation
|
||||
console.log(`location: ${[loc.streetAddress, loc.addressLocality, loc.postalCode, loc.addressCountry].filter(Boolean).join(", ")}`)
|
||||
if (data.applyUrl) console.log(`applyUrl: ${data.applyUrl}`)
|
||||
console.log(`description: ${data.description}`)
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user