mirror of
https://github.com/spacedriveapp/spacedrive.git
synced 2026-02-20 07:37:26 -05:00
* custom updater with toasts * new state management + updated router route * tauri-specific update route * ref * update in prod only * change 'Install' to 'Update' * fix tsconfig * desktop tauri * remove tauri patch * tauri 1.5 * tauri 1.5 * use tauri script * native-deps * Rework preprep and tauri script to better support tauri 1.5 * Update to tauri 1.5.1 - Update workspace and apps/desktop dependencies - Fix mustache import, @types/mustache is not compatible with ES imports - Replace arm64 with aarch64 in machineID, they should be treated the same and this simplyfies the code * Fix tauri updater not building due to missing key - Fix dmg background not being found - Generate an adhoc key for tauri updater with it is enabled and the user is doing a prod build * Fix ctrl+c/ctrl+v typo * Normalie @tanstack/react-query version through workspace - Use undici in scripts instead of global fetch - Fix typecheck * Fix linux prod and dev builds - Improve error handling in tauri.mjs * Normalize dev deps in workspace - Improve linux shared libs setup * Fix CI and server docker * Fix windows - Remove superfluous envvar * Attempt to fix server, mobile, deb and release updater * Attempt to fix deb and mobile again - Fix type on deb dependency - Enable release deb for aarch64-unknown-linux-gnu * Github doesn't have arm runners - Fix typo in server Dockerfile * Publish deb and updater artifacts * remove version from asset name * update commands * log release * Some logs on updater errors * show updater errors on frontend * fix desktop ui caching --------- Co-authored-by: Vítor Vasconcellos <vasconcellos.dev@gmail.com> Co-authored-by: Ericson Fogo Soares <ericson.ds999@gmail.com>
88 lines
2.2 KiB
JavaScript
88 lines
2.2 KiB
JavaScript
import { exec as execCb } from 'node:child_process'
|
|
import * as fs from 'node:fs/promises'
|
|
import * as path from 'node:path'
|
|
import { env } from 'node:process'
|
|
import { promisify } from 'node:util'
|
|
|
|
const __debug = env.NODE_ENV === 'debug'
|
|
|
|
const exec = promisify(execCb)
|
|
|
|
/**
|
|
* @param {string} repoPath
|
|
* @returns {Promise<string?>}
|
|
*/
|
|
async function getRemoteBranchName(repoPath) {
|
|
let branchName
|
|
try {
|
|
branchName = (await exec('git symbolic-ref --short HEAD', { cwd: repoPath })).stdout.trim()
|
|
if (!branchName) throw new Error('Empty local branch name')
|
|
} catch (error) {
|
|
if (__debug) {
|
|
console.warn(`Failed to read git local branch name`)
|
|
console.error(error)
|
|
}
|
|
return null
|
|
}
|
|
|
|
let remoteBranchName
|
|
try {
|
|
remoteBranchName = (
|
|
await exec(`git for-each-ref --format="%(upstream:short)" refs/heads/${branchName}`, {
|
|
cwd: repoPath,
|
|
})
|
|
).stdout.trim()
|
|
const [_, branch] = remoteBranchName.split('/')
|
|
if (!branch) throw new Error('Empty remote branch name')
|
|
remoteBranchName = branch
|
|
} catch (error) {
|
|
if (__debug) {
|
|
console.warn(`Failed to read git remote branch name`)
|
|
console.error(error)
|
|
}
|
|
return null
|
|
}
|
|
|
|
return remoteBranchName
|
|
}
|
|
|
|
// https://stackoverflow.com/q/3651860#answer-67151923
|
|
// eslint-disable-next-line no-control-regex
|
|
const REF_REGEX = /ref:\s+refs\/heads\/(?<branch>[^\s\x00-\x1F:?[\\^~]+)/
|
|
const GITHUB_REF_REGEX = /^refs\/heads\//
|
|
|
|
/**
|
|
* @param {string} repoPath
|
|
* @returns {Promise<string[]>}
|
|
*/
|
|
export async function getGitBranches(repoPath) {
|
|
const branches = ['main', 'master']
|
|
|
|
if (env.GITHUB_HEAD_REF) {
|
|
branches.unshift(env.GITHUB_HEAD_REF)
|
|
} else if (env.GITHUB_REF) {
|
|
branches.unshift(env.GITHUB_REF.replace(GITHUB_REF_REGEX, ''))
|
|
}
|
|
|
|
const remoteBranchName = await getRemoteBranchName(repoPath)
|
|
if (remoteBranchName) {
|
|
branches.unshift(remoteBranchName)
|
|
} else {
|
|
let head
|
|
try {
|
|
head = await fs.readFile(path.join(repoPath, '.git', 'HEAD'), { encoding: 'utf8' })
|
|
} catch (error) {
|
|
if (__debug) {
|
|
console.warn(`Failed to read git HEAD file`)
|
|
console.error(error)
|
|
}
|
|
return branches
|
|
}
|
|
|
|
const match = REF_REGEX.exec(head)
|
|
if (match?.groups?.branch) branches.unshift(match.groups.branch)
|
|
}
|
|
|
|
return branches
|
|
}
|