|
|
@ -4,7 +4,7 @@ import { unlinkSync } from 'fs'
|
|
|
|
import { tmpdir } from 'os'
|
|
|
|
import { tmpdir } from 'os'
|
|
|
|
import { join, resolve } from 'path'
|
|
|
|
import { join, resolve } from 'path'
|
|
|
|
|
|
|
|
|
|
|
|
import { config, CONFIG_FILE, INSTALL_DIR, VERSION } from './autorestic'
|
|
|
|
import { config, INSTALL_DIR, VERSION } from './autorestic'
|
|
|
|
import { checkAndConfigureBackends, getEnvFromBackend } from './backend'
|
|
|
|
import { checkAndConfigureBackends, getEnvFromBackend } from './backend'
|
|
|
|
import { backupAll } from './backup'
|
|
|
|
import { backupAll } from './backup'
|
|
|
|
import { Backends, Flags, Locations } from './types'
|
|
|
|
import { Backends, Flags, Locations } from './types'
|
|
|
@ -17,16 +17,18 @@ import {
|
|
|
|
singleToArray,
|
|
|
|
singleToArray,
|
|
|
|
} from './utils'
|
|
|
|
} from './utils'
|
|
|
|
|
|
|
|
|
|
|
|
export type Handlers = { [command: string]: (args: string[], flags: Flags) => void }
|
|
|
|
export type Handlers = {
|
|
|
|
|
|
|
|
[command: string]: (args: string[], flags: Flags) => void
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
const parseBackend = (flags: Flags): Backends => {
|
|
|
|
const parseBackend = (flags: Flags): Backends => {
|
|
|
|
if (!flags.all && !flags.backend)
|
|
|
|
if (!flags.all && !flags.backend)
|
|
|
|
throw new Error('No backends specified.'.red
|
|
|
|
throw new Error(
|
|
|
|
+ '\n--all [-a]\t\t\t\tCheck all.'
|
|
|
|
'No backends specified.'.red +
|
|
|
|
+ '\n--backend [-b] myBackend\t\tSpecify one or more backend',
|
|
|
|
'\n--all [-a]\t\t\t\tCheck all.' +
|
|
|
|
|
|
|
|
'\n--backend [-b] myBackend\t\tSpecify one or more backend'
|
|
|
|
)
|
|
|
|
)
|
|
|
|
if (flags.all)
|
|
|
|
if (flags.all) return config.backends
|
|
|
|
return config.backends
|
|
|
|
|
|
|
|
else {
|
|
|
|
else {
|
|
|
|
const backends = singleToArray<string>(flags.backend)
|
|
|
|
const backends = singleToArray<string>(flags.backend)
|
|
|
|
for (const backend of backends)
|
|
|
|
for (const backend of backends)
|
|
|
@ -38,9 +40,10 @@ const parseBackend = (flags: Flags): Backends => {
|
|
|
|
|
|
|
|
|
|
|
|
const parseLocations = (flags: Flags): Locations => {
|
|
|
|
const parseLocations = (flags: Flags): Locations => {
|
|
|
|
if (!flags.all && !flags.location)
|
|
|
|
if (!flags.all && !flags.location)
|
|
|
|
throw new Error('No locations specified.'.red
|
|
|
|
throw new Error(
|
|
|
|
+ '\n--all [-a]\t\t\t\tBackup all.'
|
|
|
|
'No locations specified.'.red +
|
|
|
|
+ '\n--location [-l] site1\t\t\tSpecify one or more locations',
|
|
|
|
'\n--all [-a]\t\t\t\tBackup all.' +
|
|
|
|
|
|
|
|
'\n--location [-l] site1\t\t\tSpecify one or more locations'
|
|
|
|
)
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
if (flags.all) {
|
|
|
|
if (flags.all) {
|
|
|
@ -68,7 +71,9 @@ const handlers: Handlers = {
|
|
|
|
for (const to of Object.values(locations).map(location => location.to))
|
|
|
|
for (const to of Object.values(locations).map(location => location.to))
|
|
|
|
Array.isArray(to) ? to.forEach(t => backends.add(t)) : backends.add(to)
|
|
|
|
Array.isArray(to) ? to.forEach(t => backends.add(t)) : backends.add(to)
|
|
|
|
|
|
|
|
|
|
|
|
checkAndConfigureBackends(filterObjectByKey(config.backends, Array.from(backends)))
|
|
|
|
checkAndConfigureBackends(
|
|
|
|
|
|
|
|
filterObjectByKey(config.backends, Array.from(backends))
|
|
|
|
|
|
|
|
)
|
|
|
|
backupAll(locations)
|
|
|
|
backupAll(locations)
|
|
|
|
|
|
|
|
|
|
|
|
console.log('\nFinished!'.underline + ' 🎉')
|
|
|
|
console.log('\nFinished!'.underline + ' 🎉')
|
|
|
@ -78,12 +83,16 @@ const handlers: Handlers = {
|
|
|
|
const locations = parseLocations(flags)
|
|
|
|
const locations = parseLocations(flags)
|
|
|
|
for (const [name, location] of Object.entries(locations)) {
|
|
|
|
for (const [name, location] of Object.entries(locations)) {
|
|
|
|
const w = new Writer(name.green + `\t\tRestoring... ⏳`)
|
|
|
|
const w = new Writer(name.green + `\t\tRestoring... ⏳`)
|
|
|
|
const env = getEnvFromBackend(config.backends[Array.isArray(location.to) ? location.to[0] : location.to])
|
|
|
|
const env = getEnvFromBackend(
|
|
|
|
|
|
|
|
config.backends[
|
|
|
|
|
|
|
|
Array.isArray(location.to) ? location.to[0] : location.to
|
|
|
|
|
|
|
|
]
|
|
|
|
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
exec(
|
|
|
|
exec(
|
|
|
|
'restic',
|
|
|
|
'restic',
|
|
|
|
['restore', 'latest', '--path', resolve(location.from), ...args],
|
|
|
|
['restore', 'latest', '--path', resolve(location.from), ...args],
|
|
|
|
{ env },
|
|
|
|
{ env }
|
|
|
|
)
|
|
|
|
)
|
|
|
|
w.done(name.green + '\t\tDone 🎉')
|
|
|
|
w.done(name.green + '\t\tDone 🎉')
|
|
|
|
}
|
|
|
|
}
|
|
|
@ -104,8 +113,7 @@ const handlers: Handlers = {
|
|
|
|
checkIfResticIsAvailable()
|
|
|
|
checkIfResticIsAvailable()
|
|
|
|
console.log('Restic is already installed')
|
|
|
|
console.log('Restic is already installed')
|
|
|
|
return
|
|
|
|
return
|
|
|
|
} catch (e) {
|
|
|
|
} catch (e) {}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
const w = new Writer('Checking latest version... ⏳')
|
|
|
|
const w = new Writer('Checking latest version... ⏳')
|
|
|
|
checkIfCommandIsAvailable('bzip2')
|
|
|
|
checkIfCommandIsAvailable('bzip2')
|
|
|
@ -116,16 +124,19 @@ const handlers: Handlers = {
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
|
|
const archMap: { [a: string]: string } = {
|
|
|
|
const archMap: { [a: string]: string } = {
|
|
|
|
'x32': '386',
|
|
|
|
x32: '386',
|
|
|
|
'x64': 'amd64',
|
|
|
|
x64: 'amd64',
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
w.replaceLn('Downloading binary... 🌎')
|
|
|
|
w.replaceLn('Downloading binary... 🌎')
|
|
|
|
const name = `${json.name.replace(' ', '_')}_${process.platform}_${archMap[process.arch]}.bz2`
|
|
|
|
const name = `${json.name.replace(' ', '_')}_${process.platform}_${
|
|
|
|
|
|
|
|
archMap[process.arch]
|
|
|
|
|
|
|
|
}.bz2`
|
|
|
|
const dl = json.assets.find((asset: any) => asset.name === name)
|
|
|
|
const dl = json.assets.find((asset: any) => asset.name === name)
|
|
|
|
if (!dl) return console.log(
|
|
|
|
if (!dl)
|
|
|
|
|
|
|
|
return console.log(
|
|
|
|
'Cannot get the right binary.'.red,
|
|
|
|
'Cannot get the right binary.'.red,
|
|
|
|
'Please see https://bit.ly/2Y1Rzai',
|
|
|
|
'Please see https://bit.ly/2Y1Rzai'
|
|
|
|
)
|
|
|
|
)
|
|
|
|
|
|
|
|
|
|
|
|
const tmp = join(tmpdir(), name)
|
|
|
|
const tmp = join(tmpdir(), name)
|
|
|
@ -143,7 +154,9 @@ const handlers: Handlers = {
|
|
|
|
exec('chmod', ['+x', extracted])
|
|
|
|
exec('chmod', ['+x', extracted])
|
|
|
|
exec('mv', [extracted, INSTALL_DIR + '/restic'])
|
|
|
|
exec('mv', [extracted, INSTALL_DIR + '/restic'])
|
|
|
|
|
|
|
|
|
|
|
|
w.done(`\nFinished! restic is installed under: ${INSTALL_DIR}`.underline + ' 🎉')
|
|
|
|
w.done(
|
|
|
|
|
|
|
|
`\nFinished! restic is installed under: ${INSTALL_DIR}`.underline + ' 🎉'
|
|
|
|
|
|
|
|
)
|
|
|
|
},
|
|
|
|
},
|
|
|
|
uninstall() {
|
|
|
|
uninstall() {
|
|
|
|
for (const bin of ['restic', 'autorestic'])
|
|
|
|
for (const bin of ['restic', 'autorestic'])
|
|
|
@ -159,20 +172,21 @@ const handlers: Handlers = {
|
|
|
|
const w = new Writer('Checking for latest restic version... ⏳')
|
|
|
|
const w = new Writer('Checking for latest restic version... ⏳')
|
|
|
|
exec('restic', ['self-update'])
|
|
|
|
exec('restic', ['self-update'])
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
w.replaceLn('Checking for latest autorestic version... ⏳')
|
|
|
|
w.replaceLn('Checking for latest autorestic version... ⏳')
|
|
|
|
const { data: json } = await axios({
|
|
|
|
const { data: json } = await axios({
|
|
|
|
method: 'get',
|
|
|
|
method: 'get',
|
|
|
|
url: 'https://api.github.com/repos/cupcakearmy/autorestic/releases/latest',
|
|
|
|
url:
|
|
|
|
|
|
|
|
'https://api.github.com/repos/cupcakearmy/autorestic/releases/latest',
|
|
|
|
responseType: 'json',
|
|
|
|
responseType: 'json',
|
|
|
|
})
|
|
|
|
})
|
|
|
|
|
|
|
|
|
|
|
|
if (json.tag_name != VERSION) {
|
|
|
|
if (json.tag_name != VERSION) {
|
|
|
|
const platformMap: { [key: string]: string } = {
|
|
|
|
const platformMap: { [key: string]: string } = {
|
|
|
|
'darwin': 'macos',
|
|
|
|
darwin: 'macos',
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
const name = `autorestic_${platformMap[process.platform] || process.platform}_${process.arch}`
|
|
|
|
const name = `autorestic_${platformMap[process.platform] ||
|
|
|
|
|
|
|
|
process.platform}_${process.arch}`
|
|
|
|
const dl = json.assets.find((asset: any) => asset.name === name)
|
|
|
|
const dl = json.assets.find((asset: any) => asset.name === name)
|
|
|
|
|
|
|
|
|
|
|
|
const to = INSTALL_DIR + '/autorestic'
|
|
|
|
const to = INSTALL_DIR + '/autorestic'
|
|
|
@ -187,30 +201,36 @@ const handlers: Handlers = {
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
export const help = () => {
|
|
|
|
export const help = () => {
|
|
|
|
console.log('\nAutorestic'.blue + ` - ${VERSION} - Easy Restic CLI Utility`
|
|
|
|
console.log(
|
|
|
|
+ '\n'
|
|
|
|
'\nAutorestic'.blue +
|
|
|
|
+ '\nOptions:'.yellow
|
|
|
|
` - ${VERSION} - Easy Restic CLI Utility` +
|
|
|
|
+ `\n -c, --config Specify config file. Default: ${CONFIG_FILE}`
|
|
|
|
'\n' +
|
|
|
|
+ '\n'
|
|
|
|
'\nOptions:'.yellow +
|
|
|
|
+ '\nCommands:'.yellow
|
|
|
|
`\n -c, --config Specify config file. Default: .autorestic.yml` +
|
|
|
|
+ '\n check [-b, --backend] [-a, --all] Check backends'
|
|
|
|
'\n' +
|
|
|
|
+ '\n backup [-l, --location] [-a, --all] Backup all or specified locations'
|
|
|
|
'\nCommands:'.yellow +
|
|
|
|
+ '\n restore [-l, --location] [-- --target <out dir>] Check backends'
|
|
|
|
'\n check [-b, --backend] [-a, --all] Check backends' +
|
|
|
|
+ '\n'
|
|
|
|
'\n backup [-l, --location] [-a, --all] Backup all or specified locations' +
|
|
|
|
+ '\n exec [-b, --backend] [-a, --all] <command> -- [native options] Execute native restic command'
|
|
|
|
'\n restore [-l, --location] [-- --target <out dir>] Restore all or specified locations' +
|
|
|
|
+ '\n'
|
|
|
|
'\n' +
|
|
|
|
+ '\n install install restic'
|
|
|
|
'\n exec [-b, --backend] [-a, --all] <command> -- [native options] Execute native restic command' +
|
|
|
|
+ '\n uninstall uninstall restic'
|
|
|
|
'\n' +
|
|
|
|
+ '\n update update restic'
|
|
|
|
'\n install install restic' +
|
|
|
|
+ '\n help Show help'
|
|
|
|
'\n uninstall uninstall restic' +
|
|
|
|
+ '\n'
|
|
|
|
'\n update update restic' +
|
|
|
|
+ '\nExamples: '.yellow + 'https://git.io/fjVbg'
|
|
|
|
'\n help Show help' +
|
|
|
|
+ '\n',
|
|
|
|
'\n' +
|
|
|
|
|
|
|
|
'\nExamples: '.yellow +
|
|
|
|
|
|
|
|
'https://git.io/fjVbg' +
|
|
|
|
|
|
|
|
'\n'
|
|
|
|
)
|
|
|
|
)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
export const error = () => {
|
|
|
|
export const error = () => {
|
|
|
|
help()
|
|
|
|
help()
|
|
|
|
console.log(`Invalid Command:`.red.underline, `${process.argv.slice(2).join(' ')}`)
|
|
|
|
console.log(
|
|
|
|
|
|
|
|
`Invalid Command:`.red.underline,
|
|
|
|
|
|
|
|
`${process.argv.slice(2).join(' ')}`
|
|
|
|
|
|
|
|
)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
export default handlers
|
|
|
|
export default handlers
|