-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathhelpers.js
142 lines (125 loc) · 3.28 KB
/
helpers.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
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
const fs = require("fs/promises");
const path = require("path");
//GENERATE ERROR
const generateError = (msg, status) => {
const err = new Error(msg);
err.statusCode = status;
return err;
};
//CREAR CARPETA
const newProfileFolder = async () => {
const profileFolder = path.join(__dirname, "profilePhotos");
//Comprobamos que exista la carpeta raiz.
try {
//Intentamos acceder al directoiro de subida de archivos mediante access.
await fs.access(profileFolder);
} catch {
//Si no es posible acceder al directorio lanzara un error y creamos el directorio
await fs.mkdir(profileFolder);
}
};
//CREAR CARPETA
const newFolder = async (folderName) => {
const root = path.join(__dirname, process.env.ROOT);
const userFolder = path.join(__dirname, process.env.ROOT, folderName);
//Comprobamos que exista la carpeta raiz.
try {
//Intentamos acceder al directoiro de subida de archivos mediante access.
await fs.access(root);
} catch {
//Si no es posible acceder al directorio lanzara un error y creamos el directorio
await fs.mkdir(root);
}
try {
await fs.access(userFolder);
} catch {
await fs.mkdir(userFolder);
}
};
// Guardar archivo EN USERNAME
const saveFile = async (file, userId, folder) => {
if (!folder) {
const fileName = file.name;
const uploadsPath = path.join(
__dirname,
process.env.ROOT,
userId,
fileName
);
//Comprobamos que exista el archivo.
try {
//Intentamos acceder al directorio.
await fs.access(uploadsPath);
return true;
} catch {
file.mv(uploadsPath, (err) => {
if (err) console.err("ERROR: " + err);
});
return false;
}
}
//SI EL USUARIO ESPECIFICA UNA CARPETA
else {
const fileName = file.name;
const folderPath = path.join(__dirname, process.env.ROOT, userId, folder);
const uploadsPath = path.join(
__dirname,
process.env.ROOT,
userId,
folder,
fileName
);
//Comprobamos que exista la carpeta NEWFOLDERNAME.
try {
//Intentamos acceder al directorio.
await fs.access(folderPath);
} catch {
//Si no es posible acceder al directorio lanzara un error y creamos el directorio
await fs.mkdir(folderPath, (err) => {
if (err) {
return console.error(err);
}
});
}
//Comprobamos que exista el archivo.
try {
//Intentamos acceder al directorio.
await fs.access(uploadsPath);
return true;
} catch {
file.mv(uploadsPath, (err) => {
if (err) console.err("ERROR: " + err);
});
return false;
}
}
};
//////////////////////////////////////
const newPersonalizedFolder = async (username, folder) => {
const newFolderPath = path.join(
__dirname,
"../../",
process.env.ROOT,
username,
folder
);
//Comprobamos que exista la carpeta NEWFOLDERNAME.
try {
//Intentamos acceder al directorio.
await fs.access(newFolderPath);
} catch {
//Si no es posible acceder al directorio lanzara un error y creamos el directorio
await fs.mkdir(newFolderPath, (err) => {
if (err) {
return console.error(err);
}
});
}
};
module.exports = {
generateError,
newFolder,
saveFile,
newPersonalizedFolder,
newProfileFolder,
};