|
@@ -90,6 +90,10 @@ class Util {
|
|
}
|
|
}
|
|
|
|
|
|
static constructFilePublicLink(file) {
|
|
static constructFilePublicLink(file) {
|
|
|
|
+ /*
|
|
|
|
+ TODO: This wont work without a reverse proxy serving both
|
|
|
|
+ the site and the API under the same domain. Pls fix.
|
|
|
|
+ */
|
|
file.url = `${process.env.DOMAIN}/${file.name}`;
|
|
file.url = `${process.env.DOMAIN}/${file.name}`;
|
|
const thumb = this.getFileThumbnail(file.name);
|
|
const thumb = this.getFileThumbnail(file.name);
|
|
if (thumb) {
|
|
if (thumb) {
|
|
@@ -175,6 +179,18 @@ class Util {
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+ static async deleteAllFilesFromUser(id) {
|
|
|
|
+ try {
|
|
|
|
+ const files = await db.table('files').where({ userId: id });
|
|
|
|
+ for (const file of files) {
|
|
|
|
+ await jetpack.removeAsync(path.join(__dirname, '..', '..', '..', process.env.UPLOAD_FOLDER, file));
|
|
|
|
+ }
|
|
|
|
+ await db.table('files').where({ userId: id }).delete();
|
|
|
|
+ } catch (error) {
|
|
|
|
+ log.error(error);
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+
|
|
static isAuthorized(req) {
|
|
static isAuthorized(req) {
|
|
if (!req.headers.authorization) return false;
|
|
if (!req.headers.authorization) return false;
|
|
const token = req.headers.authorization.split(' ')[1];
|
|
const token = req.headers.authorization.split(' ')[1];
|