From 31c46a90b461d5484ac8fa21e6aa77f0159e245b Mon Sep 17 00:00:00 2001 From: Andrey Antukh Date: Sat, 11 Nov 2023 00:07:58 +0100 Subject: [PATCH] :sparkles: Add file structure validation on binfile import --- backend/src/app/rpc/commands/binfile.clj | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/backend/src/app/rpc/commands/binfile.clj b/backend/src/app/rpc/commands/binfile.clj index d9db769fa..852516ebf 100644 --- a/backend/src/app/rpc/commands/binfile.clj +++ b/backend/src/app/rpc/commands/binfile.clj @@ -12,6 +12,7 @@ [app.common.features :as cfeat] [app.common.files.defaults :as cfd] [app.common.files.migrations :as pmg] + [app.common.files.validate :as fval] [app.common.fressian :as fres] [app.common.logging :as l] [app.common.spec :as us] @@ -743,7 +744,13 @@ (update :pages-index relink-shapes) (update :components relink-shapes) (update :media relink-media) - (pmg/migrate-data)))) + (pmg/migrate-data) + (d/without-nils)))) + + ;; Without providing all libs, here we just + ;; peform a structural file data validation, + ;; full referential check is omited. + (fval/validate-file!) (postprocess-file) (update :features #(db/create-array conn "text" %)) (update :data blob/encode))]