Compare commits

...

2 Commits

Author SHA1 Message Date
William Grant ee53b9338c feat: improved download api to only ping the github api every 15 minutes
hold the latest version and when it was found in memory, fixed path to downloads
2023-09-07 14:15:14 +10:00
William Grant 9df5e79e91 build: upgraded nodejs to 16.20.1 2023-09-07 14:13:06 +10:00
2 changed files with 39 additions and 19 deletions

2
.nvmrc
View File

@ -1 +1 @@
16.13.0
16.20.1

View File

@ -7,28 +7,48 @@ export interface IRedirection {
permanent: boolean;
}
// NOTE should update periodically
let fallbackVersion = '1.11.1';
let lastChecked = 1694059030086; // 2023-09-07 03:57
const redirects: IRedirection[] = getConfig().serverRuntimeConfig.redirects;
async function fetchLatestVersion(repo: string) {
const fallbackVersion = '1.11.0'; // NOTE should update periodically
const res = await fetch(
`https://api.github.com/repos/oxen-io/${repo}/releases/latest`
);
const data = await res.json();
if (!data) return fallbackVersion;
// Only update once per 15 minutes
if (lastChecked > Date.now() - 1000 * 60 * 15) {
const res = await fetch(
`https://api.github.com/repos/oxen-io/${repo}/releases/latest`
);
const data = await res.json();
if (!data) return fallbackVersion;
if (res.status !== 200) {
console.warn(
`Redirect Service: Code ${res.status} | ${data.message}`,
`${data.documentation && `| See ${data.documentation}`}`
);
console.log(
`Redirect Service: Falling back to version ${fallbackVersion}.`
);
return fallbackVersion;
if (res.status !== 200) {
console.warn(
`Redirect Service: Code ${res.status} | ${data.message}`,
`${data.documentation && `| See ${data.documentation}`}`
);
console.log(
`Redirect Service: Falling back to version ${fallbackVersion}. Last checked on ${new Date(
lastChecked
).toUTCString()}.}`
);
return fallbackVersion;
}
const foundVersion = data['tag_name'].split('v')[1];
if (foundVersion && foundVersion !== fallbackVersion) {
fallbackVersion = foundVersion;
lastChecked = Date.now();
console.log(
`Redirect Service: Fetched new version from GitHub ${fallbackVersion} at ${new Date(
lastChecked
).toUTCString()}.`
);
}
}
return data['tag_name'].split('v')[1];
return fallbackVersion;
}
async function fetchDynamicRedirects() {
@ -41,12 +61,12 @@ async function fetchDynamicRedirects() {
},
{
source: '/mac',
destination: `https://github.com/oxen-io/session-desktop/releases/download/v${desktopVersion}/session-desktop-mac-${desktopVersion}.dmg`,
destination: `https://github.com/oxen-io/session-desktop/releases/download/v${desktopVersion}/session-desktop-mac-x64-${desktopVersion}.dmg`,
permanent: true,
},
{
source: '/windows',
destination: `https://github.com/oxen-io/session-desktop/releases/download/v${desktopVersion}/session-desktop-win-${desktopVersion}.exe`,
destination: `https://github.com/oxen-io/session-desktop/releases/download/v${desktopVersion}/session-desktop-win-x64-${desktopVersion}.exe`,
permanent: true,
},
];