blob: 0f745b99763d2a8c869a5786303460853068427f [file] [log] [blame]
Michelle Sepkap Sime6967fb92022-11-08 08:39:36 -05001/*
2 * Copyright (C) 2022 Savoir-faire Linux Inc.
3 *
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU Affero General Public License as
6 * published by the Free Software Foundation; either version 3 of the
7 * License, or (at your option) any later version.
8 *
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU Affero General Public License for more details.
13 *
14 * You should have received a copy of the GNU Affero General Public
15 * License along with this program. If not, see
16 * <https://www.gnu.org/licenses/>.
17 */
18import { readFileSync } from 'node:fs';
19import { writeFile } from 'node:fs/promises';
20
21import { Service } from 'typedi';
22
23@Service()
24export class AdminConfig {
25 private readonly file = 'admin.json';
26 private account: { admin: string };
27
28 constructor() {
29 let buffer: Buffer;
30
31 try {
32 buffer = readFileSync(this.file);
33 } catch (e) {
34 console.error(e);
35 buffer = Buffer.from('{}');
36 }
37
38 this.account = JSON.parse(buffer.toString());
39 }
40
41 get() {
42 return this.account.admin;
43 }
44
45 set(password: string) {
46 this.account.admin = password;
47 }
48
49 async save() {
Misha Krieger-Raynauldb8d1fa62022-11-11 14:36:24 -050050 await writeFile(this.file, JSON.stringify(this.account) + '\n');
Michelle Sepkap Sime6967fb92022-11-08 08:39:36 -050051 }
52}