mirror of
https://github.com/logseq/logseq.git
synced 2026-04-27 07:35:01 +00:00
107 lines
4.5 KiB
Clojure
107 lines
4.5 KiB
Clojure
(ns validate-db
|
|
"Script that validates the datascript db of a DB graph
|
|
NOTE: This script is also used in CI to confirm our db's schema is up to date"
|
|
(:require ["os" :as os]
|
|
["path" :as node-path]
|
|
[babashka.cli :as cli]
|
|
[cljs.pprint :as pprint]
|
|
[clojure.string :as string]
|
|
[datascript.core :as d]
|
|
[logseq.db.frontend.malli-schema :as db-malli-schema]
|
|
[logseq.db.frontend.validate :as db-validate]
|
|
[logseq.db.common.sqlite-cli :as sqlite-cli]
|
|
[malli.core :as m]
|
|
[malli.error :as me]
|
|
[nbb.core :as nbb]))
|
|
|
|
(defn validate-db*
|
|
"Validate datascript db as a vec of entity maps"
|
|
[db ent-maps* {:keys [verbose group-errors humanize closed-maps]}]
|
|
(let [ent-maps (db-malli-schema/update-properties-in-ents db ent-maps*)
|
|
explainer (db-validate/get-schema-explainer closed-maps)]
|
|
(if-let [explanation (binding [db-malli-schema/*db-for-validate-fns* db]
|
|
(->> (map (fn [e] (dissoc e :db/id)) ent-maps) explainer not-empty))]
|
|
(do
|
|
(if group-errors
|
|
(let [ent-errors (db-validate/group-errors-by-entity db ent-maps (:errors explanation))]
|
|
(println "Found" (count ent-errors) "entities in errors:")
|
|
(cond
|
|
verbose
|
|
(pprint/pprint ent-errors)
|
|
humanize
|
|
(pprint/pprint (map #(-> (dissoc % :errors-by-type)
|
|
(update :errors (fn [errs] (me/humanize {:errors errs}))))
|
|
ent-errors))
|
|
:else
|
|
(pprint/pprint (map :entity ent-errors))))
|
|
(let [errors (:errors explanation)]
|
|
(println "Found" (count errors) "errors:")
|
|
(cond
|
|
verbose
|
|
(pprint/pprint
|
|
(map #(assoc %
|
|
:entity (get ent-maps (-> % :in first))
|
|
:schema (m/form (:schema %)))
|
|
errors))
|
|
humanize
|
|
(pprint/pprint (me/humanize {:errors errors}))
|
|
:else
|
|
(pprint/pprint errors))))
|
|
(js/process.exit 1))
|
|
(println "Valid!"))))
|
|
|
|
(defn- get-dir-and-db-name
|
|
"Gets dir and db name for use with open-db! Works for relative and absolute paths and
|
|
defaults to ~/logseq/graphs/ when no '/' present in name"
|
|
[graph-dir]
|
|
(if (string/includes? graph-dir "/")
|
|
(let [resolve-path' #(if (node-path/isAbsolute %) %
|
|
;; $ORIGINAL_PWD used by bb tasks to correct current dir
|
|
(node-path/join (or js/process.env.ORIGINAL_PWD ".") %))]
|
|
((juxt node-path/dirname node-path/basename) (resolve-path' graph-dir)))
|
|
[(node-path/join (os/homedir) "logseq" "graphs") graph-dir]))
|
|
|
|
(def spec
|
|
"Options spec"
|
|
{:help {:alias :h
|
|
:desc "Print help"}
|
|
:humanize {:alias :H
|
|
:default true
|
|
:desc "Humanize errors as an alternative to -v"}
|
|
:verbose {:alias :v
|
|
:desc "Print more info"}
|
|
:closed-maps {:alias :c
|
|
:default true
|
|
:desc "Validate maps marked with closed as :closed"}
|
|
:group-errors {:alias :g
|
|
:default true
|
|
:desc "Groups errors by their entity id"}})
|
|
|
|
(defn validate-db [db db-name options]
|
|
(let [datoms (d/datoms db :eavt)
|
|
ent-maps (db-malli-schema/datoms->entities datoms)]
|
|
(println "Read graph" (str db-name " with counts: "
|
|
(pr-str (assoc (db-validate/graph-counts db ent-maps)
|
|
:datoms (count datoms)))))
|
|
(validate-db* db ent-maps options)))
|
|
|
|
(defn- validate-graph [graph-dir options]
|
|
(let [[dir db-name] (get-dir-and-db-name graph-dir)
|
|
conn (try (sqlite-cli/open-db! dir db-name)
|
|
(catch :default e
|
|
(println "Error: For graph" (str (pr-str graph-dir) ":") (str e))
|
|
(js/process.exit 1)))]
|
|
(validate-db @conn db-name options)))
|
|
|
|
(defn -main [argv]
|
|
(let [{:keys [args opts]} (cli/parse-args argv {:spec spec})
|
|
_ (when (or (empty? args) (:help opts))
|
|
(println (str "Usage: $0 GRAPH-NAME [& ADDITIONAL-GRAPHS] [OPTIONS]\nOptions:\n"
|
|
(cli/format-opts {:spec spec})))
|
|
(js/process.exit 1))]
|
|
(doseq [graph-dir args]
|
|
(validate-graph graph-dir opts))))
|
|
|
|
(when (= nbb/*file* (nbb/invoked-file))
|
|
(-main *command-line-args*))
|