-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMain.js
More file actions
223 lines (203 loc) · 6.35 KB
/
Main.js
File metadata and controls
223 lines (203 loc) · 6.35 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
const fs = require("fs")
const path = require("path")
const Utils = require("./Utils")
const DanielDBError = require("./DanielDBError")
class Database {
/**
*
* @param { { name: string } } options
*/
constructor(options) {
this.options = options
this.version = require("./package.json").version
if (!options.name || typeof options.name !== "string" || options.name.length > 16) throw new DanielDBError("Name must be a string with maximum of '16' characters!")
this.options.name = `/${this.options.name}.json`
this.init()
}
/**
* Initializes the database
* @returns boolean
*/
init() {
const exists = fs.existsSync(path.join() + this.options.name)
if (!exists) {
fs.writeFileSync(path.join() + this.options.name, JSON.stringify({}))
return true
} else {
return false
}
}
/**
* Deletes the database file
* @returns boolean
*/
close() {
try {
fs.unlinkSync(path.join() + this.options.name)
return true
} catch {
return false
}
}
/**
* Updates the database with the new data
* @param { object } data The new data
* @returns boolean
*/
update(data) {
try {
fs.writeFileSync(path.join() + this.options.name, JSON.stringify(data))
return true
} catch {
return false
}
}
/**
* Returns the database raw data
@returns object
*/
readData() {
try {
return JSON.parse(fs.readFileSync(path.join() + this.options.name, "utf-8"))
} catch {
return {}
}
}
/**
* Sets the value of the key on the database
* @param { string } key The key on the database
* @param value The value
* @returns value
*/
set(key, value) {
const data = this.readData()
if (!key) throw new DanielDBError("No key specified")
if (!value) throw new DanielDBError("No value specified")
data[key] = value
this.update(data)
return this.get(key)
}
/**
* Returns the value of the key in the database
* @param { string } key The key on the database
* @returns any
*/
get(key) {
const data = this.readData()
if (!key) throw new DanielDBError("No key specified")
return data[key]
}
/**
* Deletes the key from the database
* @param { string } key The key on the database
* @returns boolean
*/
delete(key) {
const data = this.readData()
if (!key) throw new DanielDBError("No key specified")
if (!data[key]) return false
delete data[key]
this.update(data)
return true
}
/**
* Pushes a value to the end of the array on the database
* @param { string } key The key of the array on the database
* @param value The value to push to the key
* @returns Array
*/
push(key, value) {
const data = this.readData()
console.log(value)
if (!key) throw new DanielDBError("No key specified")
if (!value) throw new DanielDBError("No value specified")
if (!Array.isArray(data[key] || [])) throw new DanielDBError(`The key '${key}' in the database must be a valid array`)
if (!data[key]) data[key] = []
if (!data[key].includes(value)) data[key].push(value)
this.update(data)
return this.get(key)
}
/**
* Returns if the key exists on the database
* @param { string } key The key on the database
* @returns boolean
*/
has(key) {
const data = this.readData()
if (!key) throw new DanielDBError("No key specified")
return Utils.notFound(data[key])
}
/**
* Deletes the database
* @returns boolean
*/
deleteAll() {
try {
this.update({})
return true
} catch {
return false
}
}
/**
* Returns all the database in a array of objects (ID, data)
* @returns Array<{ ID: string, data: any }>
*/
all() {
return Object.keys(this.readData()).map(key => {
const data = this.get(key)
return {
ID: key,
data
}
})
}
/**
* Increases the value from the current value on the database
* @param { string } key The key on the database
* @param { number } value The number to increase from the current value
* @returns number
*/
add(key, value) {
const data = this.readData()
if (!key) throw new DanielDBError("No key specified")
if (!value) throw new DanielDBError("No value specified")
if (isNaN(value)) throw new DanielDBError("The value must be a valid number")
if (isNaN(data[key]) && data[key]) throw new DanielDBError(`The key '${key}' in the database must be a valid number`)
if (!data[key]) data[key] = 0 + value
else data[key] = data[key] + value
this.update(data)
return this.get(key)
}
/**
* Decreases the value from the current value on the database
* @param { string } key The key on the database
* @param { number } value The number to decrease from the current value
*/
sub(key, value) {
const data = this.readData()
if (!key) throw new DanielDBError("No key specified")
if (!value) throw new DanielDBError("No value specified")
if (isNaN(value)) throw new DanielDBError("The value must be a valid number")
if (isNaN(data[key]) && data[key]) throw new DanielDBError(`The key '${key}' in the database must be a valid number`)
if (!data[key]) data[key] = 0 - value
else data[key] = data[key] - value
this.update(data)
return this.get(key)
}
/**
* Resets the current value to 0
* @param { string } key The key on the database
* @returns number
*/
reset(key) {
const data = this.readData()
if (!key) throw new DanielDBError("No key specified")
if (!data[key]) throw new DanielDBError(`The key '${key}' was not found on the database`)
if (isNaN(data[key])) throw new DanielDBError(`The key '${key}' in the database must be a valid number`)
data[key] = 0
this.update(data)
return this.get(key)
}
}
module.exports = Database