2018-10-06 21:50:06 +03:00
|
|
|
import * as fs from 'fs'
|
|
|
|
import * as path from 'path'
|
|
|
|
import * as yaml from 'js-yaml'
|
|
|
|
import { app } from 'electron'
|
|
|
|
|
2021-06-30 00:57:04 +03:00
|
|
|
export function migrateConfig (): void {
|
|
|
|
const configPath = path.join(app.getPath('userData'), 'config.yaml')
|
|
|
|
const legacyConfigPath = path.join(app.getPath('userData'), '../terminus', 'config.yaml')
|
|
|
|
if (fs.existsSync(legacyConfigPath) && (
|
|
|
|
!fs.existsSync(configPath) ||
|
|
|
|
fs.statSync(configPath).mtime < fs.statSync(legacyConfigPath).mtime
|
|
|
|
)) {
|
|
|
|
fs.writeFileSync(configPath, fs.readFileSync(legacyConfigPath))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-10-06 21:50:06 +03:00
|
|
|
export function loadConfig (): any {
|
2021-06-30 00:57:04 +03:00
|
|
|
migrateConfig()
|
|
|
|
|
2020-12-24 16:03:14 +03:00
|
|
|
const configPath = path.join(app.getPath('userData'), 'config.yaml')
|
2018-10-06 21:50:06 +03:00
|
|
|
if (fs.existsSync(configPath)) {
|
2021-01-28 23:52:11 +03:00
|
|
|
return yaml.load(fs.readFileSync(configPath, 'utf8'))
|
2018-10-06 21:50:06 +03:00
|
|
|
} else {
|
|
|
|
return {}
|
|
|
|
}
|
|
|
|
}
|