Files
web/packages/trpc/lib/routers/partners/jobylon/query.ts
Matilda Landström 0a89ed6f4f Merged in fix/update-jobylon-cache-time (pull request #3361)
fix: change Jobylon cache from 1d to 1h

* fix: change Jobylon cache from 1d to 1h


Approved-by: Linus Flood
2025-12-17 09:12:45 +00:00

69 lines
2.1 KiB
TypeScript

import { getCacheClient } from "@scandic-hotels/common/dataCache"
import { createCounter } from "@scandic-hotels/common/telemetry"
import { router } from "../../.."
import { publicProcedure } from "../../../procedures"
import { jobylonFeedSchema } from "./output"
// The URL for the Jobylon feed including the hash for the specific feed.
// The URL and hash are generated by Jobylon. Documentation: https://developer.jobylon.com/feed-api
const feedUrl =
"https://feed.jobylon.com/feeds/cc04ba19-f0bd-4412-8b9b-d1d1fcbf0800"
export const jobylonQueryRouter = router({
feed: router({
get: publicProcedure.query(async function () {
const jobylonFeedGetCounter = createCounter("trpc.jobylon.feed.get")
const metricsJobylonFeedGet = jobylonFeedGetCounter.init()
metricsJobylonFeedGet.start()
const url = new URL(feedUrl)
url.search = new URLSearchParams({
format: "json",
}).toString()
const cacheClient = await getCacheClient()
const result = cacheClient.cacheOrGet(
"jobylon:feed",
async () => {
const response = await fetch(url, {
cache: "no-cache",
signal: AbortSignal.timeout(15_000),
})
if (!response.ok) {
await metricsJobylonFeedGet.httpError(response)
const text = await response.text()
throw new Error(
`Failed to fetch Jobylon feed: ${JSON.stringify({
status: response.status,
statusText: response.statusText,
text,
})}`
)
}
const responseJson = await response.json()
const validatedResponse = jobylonFeedSchema.safeParse(responseJson)
if (!validatedResponse.success) {
metricsJobylonFeedGet.validationError(validatedResponse.error)
throw new Error(
`Failed to parse Jobylon feed: ${JSON.stringify(validatedResponse.error)}`
)
}
return validatedResponse.data
},
"1h"
)
metricsJobylonFeedGet.success()
return result
}),
}),
})