mirror of
https://github.com/streetwriters/notesnook.git
synced 2025-12-24 15:39:44 +01:00
81 lines
2.3 KiB
TypeScript
81 lines
2.3 KiB
TypeScript
/*
|
|
This file is part of the Notesnook project (https://notesnook.com/)
|
|
|
|
Copyright (C) 2023 Streetwriters (Private) Limited
|
|
|
|
This program is free software: you can redistribute it and/or modify
|
|
it under the terms of the GNU General Public License as published by
|
|
the Free Software Foundation, either version 3 of the License, or
|
|
(at your option) any later version.
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU General Public License for more details.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
import { getVersion } from "react-native-device-info";
|
|
|
|
export interface GithubRelease {
|
|
url: string;
|
|
assets_url: string;
|
|
upload_url: string;
|
|
html_url: string;
|
|
id: number;
|
|
author: unknown;
|
|
node_id: string;
|
|
tag_name: string;
|
|
target_commitish: string;
|
|
name: string;
|
|
draft: boolean;
|
|
prerelease: boolean;
|
|
created_at: Date;
|
|
published_at: Date;
|
|
assets: unknown[];
|
|
tarball_url: string;
|
|
zipball_url: string;
|
|
body: string;
|
|
mentions_count: number;
|
|
reactions: unknown;
|
|
discussion_url: string;
|
|
}
|
|
|
|
export const getGithubVersion = async () => {
|
|
const url = `https://api.github.com/repos/streetwriters/notesnook/releases`;
|
|
let res;
|
|
try {
|
|
res = await fetch(url, {
|
|
headers: {
|
|
"User-Agent":
|
|
"Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/41.0.2272.96 Mobile Safari/537.36",
|
|
"sec-fetch-site": "same-origin"
|
|
}
|
|
});
|
|
} catch (e) {
|
|
console.warn(e);
|
|
}
|
|
|
|
if (!res?.ok) return null;
|
|
const data = (await res?.json()) as GithubRelease[];
|
|
|
|
const versions = data?.filter(
|
|
(tag) =>
|
|
tag.tag_name.endsWith("android") && !tag.tag_name.endsWith("beta-android")
|
|
);
|
|
const latestVersion = versions[0];
|
|
const version = latestVersion.tag_name.replace("-android", "");
|
|
return {
|
|
version: version || null,
|
|
releasedAt: new Date(latestVersion.published_at).toISOString(),
|
|
notes: "",
|
|
body: latestVersion.body,
|
|
url: latestVersion.url,
|
|
lastChecked: new Date().toISOString(),
|
|
needsUpdate: getVersion() !== version,
|
|
current: getVersion()
|
|
};
|
|
};
|