forked from cyclic-software/starter-express-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
db-connector.js
84 lines (84 loc) · 2.54 KB
/
db-connector.js
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
module.exports = class DBConnector {
/**
*
* @param {("filesystem"|"mariadb"|"mongodb")} type
* @param {string} credentials
*/
constructor(type,credentials) {
this.type = type;
this.credentials = credentials;
switch(type) {
case "filesystem":
this.db = require("fs");
break;
case "mariadb":
this.db = require("mariadb").MongoClient;
break;
case "mongodb":
this.db = require("mongodb").MongoClient;
break;
default:
this.db = "No DB!";
}
}
connect() {
switch(this.type) {
case "filesystem":
this.connection = this.db;
break;
case "mariadb":
this.connection = this.db.createPool(this.credentials);
break;
case "mongodb":
this.connection = this.db.connect(this.credentials);
}
}
createFolder(location,name) {
switch(this.type) {
case "filesystem":
this.connection.mkdirSync("filesystem/" + location + "/" + (name||""),{
recursive:true
});
break;
}
}
writeFile(location,data) {
switch(this.type) {
case "filesystem":
this.connection.writeFileSync("filesystem/" + location,data);
break;
}
}
writeJSON(location,data) {
switch(this.type) {
case "filesystem":
this.connection.writeFileSync("filesystem/" + location + ".json",JSON.stringify(data),{
encoding: "utf8"
});
break;
}
}
readFile(location) {
switch(this.type) {
case "filesystem":
return this.connection.readFileSync("filesystem/" + location);
}
}
readJSON(location) {
switch(this.type) {
case "filesystem":
if(this.connection.existsSync("filesystem/" + location + ".json")) {
try {
var json = JSON.parse(this.connection.readFileSync("filesystem/" + location + ".json",{
encoding: "utf8"
}));
return json;
} catch(e) {
return false;
}
} else {
return false;
}
}
}
}