2020-02-05 02:27:46 +07:00
|
|
|
import * as fs from "fs-extra"
|
2020-02-15 05:41:42 +07:00
|
|
|
import * as path from "path"
|
2020-05-10 12:35:42 +07:00
|
|
|
import { extend, paths } from "./util"
|
2020-02-05 02:27:46 +07:00
|
|
|
import { logger } from "@coder/logger"
|
|
|
|
|
|
|
|
export type Settings = { [key: string]: Settings | string | boolean | number }
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Provides read and write access to settings.
|
|
|
|
*/
|
|
|
|
export class SettingsProvider<T> {
|
|
|
|
public constructor(private readonly settingsPath: string) {}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Read settings from the file. On a failure return last known settings and
|
|
|
|
* log a warning.
|
|
|
|
*/
|
|
|
|
public async read(): Promise<T> {
|
|
|
|
try {
|
|
|
|
const raw = (await fs.readFile(this.settingsPath, "utf8")).trim()
|
|
|
|
return raw ? JSON.parse(raw) : {}
|
|
|
|
} catch (error) {
|
|
|
|
if (error.code !== "ENOENT") {
|
|
|
|
logger.warn(error.message)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return {} as T
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Write settings combined with current settings. On failure log a warning.
|
|
|
|
* Objects will be merged and everything else will be replaced.
|
|
|
|
*/
|
|
|
|
public async write(settings: Partial<T>): Promise<void> {
|
|
|
|
try {
|
2020-02-15 05:41:42 +07:00
|
|
|
await fs.writeFile(this.settingsPath, JSON.stringify(extend(await this.read(), settings), null, 2))
|
2020-02-05 02:27:46 +07:00
|
|
|
} catch (error) {
|
|
|
|
logger.warn(error.message)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2020-02-15 05:41:42 +07:00
|
|
|
|
2020-02-21 04:50:01 +07:00
|
|
|
export interface UpdateSettings {
|
|
|
|
update: {
|
|
|
|
checked: number
|
|
|
|
version: string
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-02-15 05:41:42 +07:00
|
|
|
/**
|
|
|
|
* Global code-server settings.
|
|
|
|
*/
|
2020-02-21 04:50:01 +07:00
|
|
|
export interface CoderSettings extends UpdateSettings {
|
2020-02-15 05:41:42 +07:00
|
|
|
lastVisited: {
|
|
|
|
url: string
|
|
|
|
workspace: boolean
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Global code-server settings file.
|
|
|
|
*/
|
2020-05-10 12:35:42 +07:00
|
|
|
export const settings = new SettingsProvider<CoderSettings>(path.join(paths.data, "coder.json"))
|