UserStorage.js
1.89 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
'use strict';
//파일시스템 이용해서 파일 접근 및 DB 관리
const fs = require("fs").promises;
class UserStorage {
static #getUserInfo(data, id) {
const users = JSON.parse(data);
const idx = users.id.indexOf(id);
const userKeys = Object.keys(users); // [id, password, name]
const userInfo = userKeys.reduce((newUser, info) => {
newUser[info] = users[info][idx];
return newUser;
}, {});
// console.log(userInfo);
return userInfo;
}
static #getUsers(data, isAll, fields) {
const users = JSON.parse(data);
if (isAll) return users;
const newUsers = fields.reduce((newUsers, field) => {
if (users.hasOwnProperty(field)) {
newUsers[field] = users[field];
}
return newUsers;
}, {});
return newUsers;
}
static getUsers(isAll, ...fields) {
return fs
.readFile("./src/databases/users.json")
.then((data) => {
return this.#getUsers(data, isAll, fields);
})
.catch((err) => console.error);
}
static getUserInfo(id) {
return fs
.readFile("./src/databases/users.json")
.then((data) => {
return this.#getUserInfo(data, id);
})
.catch((err) => console.error);
}
static async save(userInfo) {
const users = await this.getUsers(true);
//id가 없으면 회원가입 가능
if (users.id.includes(userInfo.id)) {
throw "이미 존재하는 아이디입니다.";
}
users.id.push(userInfo.id);
users.name.push(userInfo.name);
users.password.push(userInfo.password);
fs.writeFile("./src/databases/users.json", JSON.stringify(users));
return { success: true};
}
}
module.exports = UserStorage;