303 lines
11 KiB
TypeScript
303 lines
11 KiB
TypeScript
import { invoke } from '@tauri-apps/api/core'
|
|
import { BaseDirectory, appLocalDataDir } from '@tauri-apps/api/path'
|
|
import { tempDir } from '@tauri-apps/api/path'
|
|
import { ask, message } from '@tauri-apps/plugin-dialog'
|
|
import { copyFile, exists, mkdir, readTextFile, remove } from '@tauri-apps/plugin-fs'
|
|
import { writeFile } from '@tauri-apps/plugin-fs'
|
|
import { fetch } from '@tauri-apps/plugin-http'
|
|
import { platform } from '@tauri-apps/plugin-os'
|
|
import { exit } from '@tauri-apps/plugin-process'
|
|
import { Command } from '@tauri-apps/plugin-shell'
|
|
import { usePersistedStore } from '../store'
|
|
import {
|
|
getConfigPath,
|
|
getDefaultPath,
|
|
isInternalRcloneInstalled,
|
|
isSystemRcloneInstalled,
|
|
} from './common'
|
|
|
|
export async function initRclone(args: string[]) {
|
|
console.log('[initRclone]')
|
|
|
|
const system = await isSystemRcloneInstalled()
|
|
let internal = await isInternalRcloneInstalled()
|
|
|
|
// rclone not available, let's download it
|
|
if (!system && !internal) {
|
|
const success = await provisionRclone()
|
|
if (!success) {
|
|
await new Promise((resolve) => setTimeout(resolve, 1000))
|
|
await exit(0)
|
|
return
|
|
}
|
|
internal = true
|
|
}
|
|
|
|
const state = usePersistedStore.getState()
|
|
let configFiles = state.configFiles || []
|
|
let activeConfigFile = state.activeConfigFile
|
|
const defaultPath = await getDefaultPath(system ? 'system' : 'internal')
|
|
|
|
if (configFiles.length === 0) {
|
|
if (system) {
|
|
let isEncrypted = false
|
|
|
|
// Detect if the config is encrypted
|
|
try {
|
|
const configContent = await readTextFile(defaultPath)
|
|
isEncrypted = configContent.includes('RCLONE_ENCRYPT_V0:')
|
|
} catch (error) {
|
|
console.log('[initRclone] could not read config file, asking user:', error)
|
|
isEncrypted = await ask(
|
|
'Is your configuration encrypted? Press "No" if you\'re unsure or using the default config file.',
|
|
{
|
|
title: 'Config file found',
|
|
kind: 'info',
|
|
okLabel: 'Yes',
|
|
cancelLabel: 'No',
|
|
}
|
|
)
|
|
}
|
|
|
|
if (isEncrypted) {
|
|
await ask(
|
|
'Encrypted config files cannot be imported during the initial setup. Use a blank conf file and import the encrypted configuration later in Settings.',
|
|
{
|
|
title: 'Not supported yet',
|
|
kind: 'error',
|
|
okLabel: 'OK',
|
|
cancelLabel: '',
|
|
}
|
|
)
|
|
await exit(0)
|
|
return
|
|
}
|
|
}
|
|
}
|
|
|
|
configFiles = configFiles.filter((config) => config.id !== 'default')
|
|
configFiles.unshift({
|
|
id: 'default',
|
|
label: 'Default config',
|
|
sync: undefined,
|
|
isEncrypted: false,
|
|
pass: undefined,
|
|
passCommand: undefined,
|
|
})
|
|
usePersistedStore.setState({ configFiles })
|
|
|
|
if (!activeConfigFile) {
|
|
activeConfigFile = configFiles[0]
|
|
if (!activeConfigFile) {
|
|
throw new Error('Failed to get active config file')
|
|
}
|
|
|
|
usePersistedStore.setState({ activeConfigFile })
|
|
}
|
|
|
|
let configFolderPath = activeConfigFile.sync
|
|
? activeConfigFile.sync
|
|
: (await getConfigPath({ id: activeConfigFile.id!, validate: true })).replace(
|
|
/\/rclone\.conf$/,
|
|
''
|
|
)
|
|
|
|
if (activeConfigFile.sync) {
|
|
const slashSymbol = platform() === 'windows' ? '\\' : '/'
|
|
if (!(await exists(configFolderPath + slashSymbol + 'rclone.conf'))) {
|
|
await message('The config file could not be found. Switching to the default config.', {
|
|
title: 'Invalid synced config',
|
|
kind: 'error',
|
|
okLabel: 'OK',
|
|
})
|
|
configFolderPath = (await getConfigPath({ id: 'default', validate: true })).replace(
|
|
/\/rclone\.conf$/,
|
|
''
|
|
)
|
|
usePersistedStore.setState({ activeConfigFile: configFiles[0] })
|
|
}
|
|
}
|
|
|
|
const extraParams =
|
|
activeConfigFile.id === 'default'
|
|
? undefined
|
|
: {
|
|
env: {
|
|
...(activeConfigFile.isEncrypted
|
|
? activeConfigFile.passCommand
|
|
? { RCLONE_CONFIG_PASS_COMMAND: activeConfigFile.passCommand }
|
|
: { RCLONE_CONFIG_PASS: activeConfigFile.pass! }
|
|
: {}),
|
|
RCLONE_CONFIG_DIR: configFolderPath,
|
|
},
|
|
}
|
|
|
|
if (system) {
|
|
console.log('[initRclone] running system rclone')
|
|
const instance = Command.create('rclone-system', args, extraParams)
|
|
return { system: instance }
|
|
}
|
|
if (internal) {
|
|
console.log('[initRclone] running internal rclone')
|
|
const instance = Command.create('rclone-internal', args, extraParams)
|
|
return { internal: instance }
|
|
}
|
|
|
|
throw new Error('Failed to initialize rclone, please try again later.')
|
|
}
|
|
|
|
/**
|
|
* Downloads and provisions the latest version of rclone for the current platform
|
|
* @throws {Error} If architecture detection fails or installation is unsuccessful
|
|
* @returns {Promise<void>}
|
|
*/
|
|
export async function provisionRclone() {
|
|
console.log('[provisionRclone]')
|
|
|
|
const currentVersionString = await fetch('https://downloads.rclone.org/version.txt').then(
|
|
(res) => res.text()
|
|
)
|
|
console.log('[provisionRclone] currentVersionString', currentVersionString)
|
|
|
|
const currentVersion = currentVersionString.split('v')?.[1]?.trim()
|
|
|
|
if (!currentVersion) {
|
|
console.error('[provisionRclone] failed to get latest version')
|
|
await message('Failed to get latest rclone version, please try again later.')
|
|
return
|
|
}
|
|
console.log('[provisionRclone] currentVersion', currentVersion)
|
|
|
|
const currentPlatform = platform()
|
|
console.log('currentPlatform', currentPlatform)
|
|
|
|
const currentOs = currentPlatform === 'macos' ? 'osx' : currentPlatform
|
|
console.log('currentOs', currentOs)
|
|
|
|
let tempDirPath = await tempDir()
|
|
if (tempDirPath.endsWith('/') || tempDirPath.endsWith('\\')) {
|
|
tempDirPath = tempDirPath.slice(0, -1)
|
|
}
|
|
console.log('[provisionRclone] tempDirPath', tempDirPath)
|
|
|
|
const arch = (await invoke('get_arch')) as 'arm64' | 'amd64' | '386' | 'unknown'
|
|
console.log('[provisionRclone] arch', arch)
|
|
|
|
if (arch === 'unknown') {
|
|
console.error('[provisionRclone] failed to get architecture')
|
|
await message('Failed to get current arch, please try again later.')
|
|
return
|
|
}
|
|
|
|
const downloadUrl = `https://downloads.rclone.org/v${currentVersion}/rclone-v${currentVersion}-${currentOs}-${arch}.zip`
|
|
console.log('[provisionRclone] downloadUrl', downloadUrl)
|
|
|
|
const downloadedFile = await fetch(downloadUrl).then((res) => res.arrayBuffer())
|
|
console.log('[provisionRclone] downloadedFile')
|
|
|
|
let tempDirExists
|
|
try {
|
|
tempDirExists = await exists('rclone', {
|
|
baseDir: BaseDirectory.Temp,
|
|
})
|
|
console.log('[provisionRclone] tempDirExists', tempDirExists)
|
|
} catch (error) {
|
|
console.error('[provisionRclone] failed to check if rclone temp dir exists', error)
|
|
}
|
|
|
|
if (tempDirExists) {
|
|
try {
|
|
await remove('rclone', {
|
|
recursive: true,
|
|
baseDir: BaseDirectory.Temp,
|
|
})
|
|
console.log('[provisionRclone] removed rclone temp dir')
|
|
} catch (error) {
|
|
console.error('[provisionRclone] failed to remove rclone temp dir', error)
|
|
await message('Failed to provision rclone.')
|
|
return
|
|
}
|
|
}
|
|
|
|
try {
|
|
await mkdir('rclone', {
|
|
baseDir: BaseDirectory.Temp,
|
|
})
|
|
console.log('[provisionRclone] created rclone temp dir')
|
|
} catch (error) {
|
|
console.error('[provisionRclone] failed to create rclone temp dir', error)
|
|
await message('Failed to provision rclone.')
|
|
return
|
|
}
|
|
|
|
const zipPath = `${tempDirPath}/rclone/rclone-v${currentVersion}-${currentOs}-${arch}.zip`
|
|
console.log('[provisionRclone] zipPath', zipPath)
|
|
|
|
try {
|
|
await writeFile(zipPath, new Uint8Array(downloadedFile))
|
|
console.log('[provisionRclone] wrote zip file')
|
|
} catch (error) {
|
|
console.error('[provisionRclone] failed to write zip file', error)
|
|
await message('Failed to provision rclone.')
|
|
return
|
|
}
|
|
|
|
try {
|
|
await invoke('unzip_file', {
|
|
zipPath,
|
|
outputFolder: `${tempDirPath}/rclone/rclone-ui`,
|
|
})
|
|
console.log('[provisionRclone] successfully unzipped file')
|
|
} catch (error) {
|
|
console.error('[provisionRclone] failed to unzip file', error)
|
|
await message('Failed to provision rclone.')
|
|
return
|
|
}
|
|
|
|
const unarchivedPath = `${tempDirPath}/rclone/rclone-ui/rclone-v${currentVersion}-${currentOs}-${arch}`
|
|
console.log('[provisionRclone] unarchivedPath', unarchivedPath)
|
|
|
|
const binaryName = currentPlatform === 'windows' ? 'rclone.exe' : 'rclone'
|
|
|
|
// "/" here looks to be working on windows
|
|
const rcloneBinaryPath = unarchivedPath + '/' + binaryName
|
|
console.log('[provisionRclone] rcloneBinaryPath', rcloneBinaryPath)
|
|
|
|
try {
|
|
const binaryExists = await exists(rcloneBinaryPath)
|
|
console.log('[provisionRclone] rcloneBinaryPathExists', binaryExists)
|
|
if (!binaryExists) {
|
|
throw new Error('Could not find rclone binary in zip')
|
|
}
|
|
} catch (error) {
|
|
console.error('[provisionRclone] failed to check if rclone binary exists', error)
|
|
await message('Failed to provision rclone.')
|
|
}
|
|
|
|
const appLocalDataDirPath = await appLocalDataDir()
|
|
console.log('[provisionRclone] appLocalDataDirPath', appLocalDataDirPath)
|
|
|
|
const appLocalDataDirPathExists = await exists(appLocalDataDirPath)
|
|
console.log('[provisionRclone] appLocalDataDirPathExists', appLocalDataDirPathExists)
|
|
|
|
if (!appLocalDataDirPathExists) {
|
|
await mkdir(appLocalDataDirPath, {
|
|
recursive: true,
|
|
})
|
|
console.log('[provisionRclone] appLocalDataDirPath created')
|
|
}
|
|
|
|
await copyFile(rcloneBinaryPath, `${appLocalDataDirPath}/${binaryName}`)
|
|
console.log('[provisionRclone] copied rclone binary')
|
|
|
|
const hasInstalled = await isInternalRcloneInstalled()
|
|
|
|
if (!hasInstalled) {
|
|
throw new Error('Failed to install rclone')
|
|
}
|
|
|
|
console.log('[provisionRclone] rclone has been installed')
|
|
|
|
return true
|
|
}
|