From e8052ce7fc8c37cd8b34cfeb3cd3aeea1f292afe Mon Sep 17 00:00:00 2001 From: xnacly Date: Tue, 10 Aug 2021 16:51:45 +0200 Subject: added removal of metadata includes all posted assets --- src/util/FileStorage.ts | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) (limited to 'src') diff --git a/src/util/FileStorage.ts b/src/util/FileStorage.ts index 453133f3..6e74788f 100644 --- a/src/util/FileStorage.ts +++ b/src/util/FileStorage.ts @@ -3,6 +3,8 @@ import fs from "fs"; import fse from "fs-extra"; import { join, relative, dirname } from "path"; import "missing-native-js-functions"; +import { Readable } from "stream"; +import ExifTransformer = require("exif-be-gone"); function getPath(path: string) { // STORAGE_LOCATION has a default value in start.ts @@ -26,7 +28,10 @@ export class FileStorage implements Storage { path = getPath(path); fse.ensureDirSync(dirname(path)); - return fs.writeFileSync(path, value, { encoding: "binary" }); + value = Readable.from(value); + const cleaned_file = fs.createWriteStream(path); + + return value.pipe(new ExifTransformer()).pipe(cleaned_file); } async delete(path: string) { -- cgit 1.5.1