-
-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
experiment: use request handler for update indicator (#1640)
- Loading branch information
Showing
5 changed files
with
69 additions
and
61 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,11 @@ | ||
import { createSubPubChannel } from "@homarr/redis"; | ||
import { updateCheckerRequestHandler } from "@homarr/request-handler/update-checker"; | ||
|
||
import { createTRPCRouter, protectedProcedure } from "../trpc"; | ||
|
||
export const updateCheckerRouter = createTRPCRouter({ | ||
getAvailableUpdates: protectedProcedure.query(async () => { | ||
const channel = createSubPubChannel<{ | ||
availableUpdates: { name: string | null; contentHtml?: string; url: string; tag_name: string }[]; | ||
}>("homarr:update", { | ||
persist: true, | ||
}); | ||
|
||
const data = await channel.getLastDataAsync(); | ||
|
||
return data?.availableUpdates; | ||
const handler = updateCheckerRequestHandler.handler({}); | ||
const data = await handler.getCachedOrUpdatedDataAsync({}); | ||
return data.data.availableUpdates; | ||
}), | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,58 +1,13 @@ | ||
import { Octokit } from "octokit"; | ||
import { compareSemVer, isValidSemVer } from "semver-parser"; | ||
|
||
import { EVERY_HOUR } from "@homarr/cron-jobs-core/expressions"; | ||
import { logger } from "@homarr/log"; | ||
import { createSubPubChannel } from "@homarr/redis"; | ||
import { updateCheckerRequestHandler } from "@homarr/request-handler/update-checker"; | ||
|
||
import packageJson from "../../../../package.json"; | ||
import { createCronJob } from "../lib"; | ||
|
||
export const updateCheckerJob = createCronJob("updateChecker", EVERY_HOUR, { | ||
runOnStart: true, | ||
}).withCallback(async () => { | ||
const octokit = new Octokit(); | ||
const releases = await octokit.rest.repos.listReleases({ | ||
owner: "homarr-labs", | ||
repo: "homarr", | ||
}); | ||
|
||
const currentVersion = (packageJson as { version: string }).version; | ||
const availableReleases = []; | ||
|
||
for (const release of releases.data) { | ||
if (!isValidSemVer(release.tag_name)) { | ||
logger.warn(`Unable to parse semantic tag '${release.tag_name}'. Update check might not work.`); | ||
continue; | ||
} | ||
|
||
availableReleases.push(release); | ||
} | ||
|
||
const availableNewerReleases = availableReleases | ||
.filter((release) => compareSemVer(release.tag_name, currentVersion) > 0) | ||
.sort((releaseA, releaseB) => compareSemVer(releaseB.tag_name, releaseA.tag_name)); | ||
if (availableReleases.length > 0) { | ||
logger.info( | ||
// eslint-disable-next-line @typescript-eslint/no-non-null-assertion | ||
`Update checker found a new available version: ${availableReleases[0]!.tag_name}. Current version is ${currentVersion}`, | ||
); | ||
} else { | ||
logger.debug(`Update checker did not find any available updates. Current version is ${currentVersion}`); | ||
} | ||
|
||
const channel = createSubPubChannel<{ | ||
availableUpdates: { name: string | null; contentHtml?: string; url: string; tag_name: string }[]; | ||
}>("homarr:update", { | ||
persist: true, | ||
}); | ||
|
||
await channel.publishAsync({ | ||
availableUpdates: availableNewerReleases.map((release) => ({ | ||
name: release.name, | ||
contentHtml: release.body_html, | ||
url: release.html_url, | ||
tag_name: release.tag_name, | ||
})), | ||
const handler = updateCheckerRequestHandler.handler({}); | ||
await handler.getCachedOrUpdatedDataAsync({ | ||
forceUpdate: true, | ||
}); | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,59 @@ | ||
import dayjs from "dayjs"; | ||
import { Octokit } from "octokit"; | ||
import { compareSemVer, isValidSemVer } from "semver-parser"; | ||
|
||
import { logger } from "@homarr/log"; | ||
import { createChannelWithLatestAndEvents } from "@homarr/redis"; | ||
import { createCachedRequestHandler } from "@homarr/request-handler/lib/cached-request-handler"; | ||
|
||
import packageJson from "../../../package.json"; | ||
|
||
export const updateCheckerRequestHandler = createCachedRequestHandler({ | ||
queryKey: "", | ||
cacheDuration: dayjs.duration(1, "hour"), | ||
async requestAsync(_) { | ||
const octokit = new Octokit(); | ||
const releases = await octokit.rest.repos.listReleases({ | ||
owner: "homarr-labs", | ||
repo: "homarr", | ||
}); | ||
|
||
const currentVersion = (packageJson as { version: string }).version; | ||
const availableReleases = []; | ||
|
||
for (const release of releases.data) { | ||
if (!isValidSemVer(release.tag_name)) { | ||
logger.warn(`Unable to parse semantic tag '${release.tag_name}'. Update check might not work.`); | ||
continue; | ||
} | ||
|
||
availableReleases.push(release); | ||
} | ||
|
||
const availableNewerReleases = availableReleases | ||
.filter((release) => compareSemVer(release.tag_name, currentVersion) > 0) | ||
.sort((releaseA, releaseB) => compareSemVer(releaseB.tag_name, releaseA.tag_name)); | ||
if (availableReleases.length > 0) { | ||
logger.info( | ||
// eslint-disable-next-line @typescript-eslint/no-non-null-assertion | ||
`Update checker found a new available version: ${availableReleases[0]!.tag_name}. Current version is ${currentVersion}`, | ||
); | ||
} else { | ||
logger.debug(`Update checker did not find any available updates. Current version is ${currentVersion}`); | ||
} | ||
|
||
return { | ||
availableUpdates: availableNewerReleases.map((release) => ({ | ||
name: release.name, | ||
contentHtml: release.body_html, | ||
url: release.html_url, | ||
tag_name: release.tag_name, | ||
})), | ||
}; | ||
}, | ||
createRedisChannel() { | ||
return createChannelWithLatestAndEvents<{ | ||
availableUpdates: { name: string | null; contentHtml?: string; url: string; tag_name: string }[]; | ||
}>("homarr:update"); | ||
}, | ||
}); |