-
-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
13 changed files
with
441 additions
and
7 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
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 |
---|---|---|
@@ -0,0 +1,11 @@ | ||
import { updateCheckerRequestHandler } from "@homarr/request-handler/update-checker"; | ||
|
||
import { createTRPCRouter, protectedProcedure } from "../trpc"; | ||
|
||
export const updateCheckerRouter = createTRPCRouter({ | ||
getAvailableUpdates: protectedProcedure.query(async () => { | ||
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
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 |
---|---|---|
@@ -0,0 +1,13 @@ | ||
import { EVERY_HOUR } from "@homarr/cron-jobs-core/expressions"; | ||
import { updateCheckerRequestHandler } from "@homarr/request-handler/update-checker"; | ||
|
||
import { createCronJob } from "../lib"; | ||
|
||
export const updateCheckerJob = createCronJob("updateChecker", EVERY_HOUR, { | ||
runOnStart: true, | ||
}).withCallback(async () => { | ||
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
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 |
---|---|---|
@@ -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: "homarr-update-checker", | ||
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, | ||
tagName: release.tag_name, | ||
})), | ||
}; | ||
}, | ||
createRedisChannel() { | ||
return createChannelWithLatestAndEvents<{ | ||
availableUpdates: { name: string | null; contentHtml?: string; url: string; tagName: string }[]; | ||
}>("homarr:update"); | ||
}, | ||
}); |
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
Oops, something went wrong.