import * as fs from 'fs'; import { createWriteStream } from 'fs'; import * as path from 'path'; import { promisify } from 'util'; import { GitHubRelease, GitHubReleaseAsset } from '../utils/checkForUpdatesUtils'; const pipeline = promisify(require('stream').pipeline); export interface Context { repo: string; // {owner}/{repo} githubToken: string; targetTag: string; } const apiBaseUrl = 'https://api.github.com/repos/'; const defaultApiHeaders = (context: Context) => ({ 'Authorization': `token ${context.githubToken}`, 'X-GitHub-Api-Version': '2022-11-28', 'Accept': 'application/vnd.github+json', }); export const getTargetRelease = async (context: Context, targetTag: string): Promise => { console.log('Fetching releases...'); // Note: We need to fetch all releases, not just /releases/tag/tag-name-here. // The latter doesn't include draft releases. const result = await fetch(`${apiBaseUrl}${context.repo}/releases`, { method: 'GET', headers: defaultApiHeaders(context), }); const releases = await result.json(); if (!result.ok) { throw new Error(`Error fetching release: ${JSON.stringify(releases)}`); } for (const release of releases) { if (release.tag_name === targetTag) { return release; } } throw new Error(`No release with tag ${targetTag} found!`); }; // Download a file from Joplin Desktop releases export const downloadFile = async (asset: GitHubReleaseAsset, destinationDir: string): Promise => { const downloadPath = path.join(destinationDir, asset.name); if (!fs.existsSync(destinationDir)) { fs.mkdirSync(destinationDir); } /* eslint-disable no-console */ console.log(`Downloading ${asset.name} to ${downloadPath}`); const response = await fetch(asset.browser_download_url); if (!response.ok) { throw new Error(`Failed to download file: Status Code ${response.status}`); } const fileStream = createWriteStream(downloadPath); await pipeline(response.body, fileStream); console.log('Download successful!'); /* eslint-enable no-console */ return downloadPath; }; export const updateReleaseAsset = async (context: Context, assetUrl: string, newName: string) => { console.log('Updating asset with URL', assetUrl, 'to have name, ', newName); // See https://docs.github.com/en/rest/releases/assets?apiVersion=2022-11-28#update-a-release-asset const result = await fetch(assetUrl, { method: 'PATCH', headers: defaultApiHeaders(context), body: JSON.stringify({ name: newName, }), }); if (!result.ok) { throw new Error(`Unable to update release asset: ${await result.text()}`); } }; export const uploadReleaseAsset = async (context: Context, release: GitHubRelease, filePath: string): Promise => { console.log(`Uploading file from ${filePath} to release ${release.tag_name}`); const fileContent = fs.readFileSync(filePath); const fileName = path.basename(filePath); const uploadUrl = `https://uploads.github.com/repos/${context.repo}/releases/${release.id}/assets?name=${encodeURIComponent(fileName)}`; const response = await fetch(uploadUrl, { method: 'POST', headers: { ...defaultApiHeaders(context), 'Content-Type': 'application/octet-stream', }, body: fileContent, }); if (!response.ok) { throw new Error(`Failed to upload asset: ${await response.text()}`); } else { console.log(`${fileName} uploaded successfully.`); } };