123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297 |
- (ns frontend.handler.file
- (:refer-clojure :exclude [load-file])
- (:require ["/frontend/utils" :as utils]
- [borkdude.rewrite-edn :as rewrite]
- [cljs.core.async.interop :refer [<p!]]
- [clojure.core.async :as async]
- [frontend.config :as config]
- [frontend.db :as db]
- [frontend.fs :as fs]
- [frontend.fs.nfs :as nfs]
- [frontend.handler.common :as common-handler]
- [frontend.handler.ui :as ui-handler]
- [frontend.state :as state]
- [frontend.util :as util]
- [logseq.graph-parser.util :as gp-util]
- [lambdaisland.glogi :as log]
- [promesa.core :as p]
- [frontend.mobile.util :as mobile]
- [clojure.set :as set]
- [frontend.modules.outliner.file :as outliner-file]
- [logseq.graph-parser.config :as gp-config]
- [logseq.graph-parser :as graph-parser]))
- ;; TODO: extract all git ops using a channel
- (defn load-file
- [repo-url path]
- (->
- (p/let [content (fs/read-file (config/get-repo-dir repo-url) path)]
- content)
- (p/catch
- (fn [e]
- (println "Load file failed: " path)
- (js/console.error e)))))
- (defn load-multiple-files
- [repo-url paths]
- (doall
- (mapv #(load-file repo-url %) paths)))
- (defn- keep-formats
- [files formats]
- (filter
- (fn [file]
- (let [format (gp-util/get-format file)]
- (contains? formats format)))
- files))
- (defn- only-text-formats
- [files]
- (keep-formats files (gp-config/text-formats)))
- (defn- only-image-formats
- [files]
- (keep-formats files (gp-config/img-formats)))
- (defn restore-config!
- ([repo-url project-changed-check?]
- (restore-config! repo-url nil project-changed-check?))
- ([repo-url config-content _project-changed-check?]
- (let [config-content (if config-content config-content
- (common-handler/get-config repo-url))]
- (when config-content
- (common-handler/reset-config! repo-url config-content)))))
- (defn load-files-contents!
- [repo-url files ok-handler]
- (let [images (only-image-formats files)
- files (only-text-formats files)]
- (-> (p/all (load-multiple-files repo-url files))
- (p/then (fn [contents]
- (let [file-contents (cond->
- (zipmap files contents)
- (seq images)
- (merge (zipmap images (repeat (count images) ""))))
- file-contents (for [[file content] file-contents]
- {:file/path (gp-util/path-normalize file)
- :file/content content})]
- (ok-handler file-contents))))
- (p/catch (fn [error]
- (log/error :nfs/load-files-error repo-url)
- (log/error :exception error))))))
- (defn- page-exists-in-another-file
- "Conflict of files towards same page"
- [repo-url page file]
- (when-let [page-name (:block/name page)]
- (let [current-file (:file/path (db/get-page-file repo-url page-name))]
- (when (not= file current-file)
- current-file))))
- (defn- get-delete-blocks [repo-url first-page file]
- (let [delete-blocks (->
- (concat
- (db/delete-file-blocks! repo-url file)
- (when first-page (db/delete-page-blocks repo-url (:block/name first-page))))
- (distinct))]
- (when-let [current-file (page-exists-in-another-file repo-url first-page file)]
- (when (not= file current-file)
- (let [error (str "Page already exists with another file: " current-file ", current file: " file)]
- (state/pub-event! [:notification/show
- {:content error
- :status :error
- :clear? false}]))))
- delete-blocks))
- (defn reset-file!
- ([repo-url file content]
- (reset-file! repo-url file content {}))
- ([repo-url file content options]
- (let [electron-local-repo? (and (util/electron?)
- (config/local-db? repo-url))
- file (cond
- (and electron-local-repo?
- util/win32?
- (utils/win32 file))
- file
- (and electron-local-repo? (or
- util/win32?
- (not= "/" (first file))))
- (str (config/get-repo-dir repo-url) "/" file)
- (and (mobile/native-android?) (not= "/" (first file)))
- file
- (and (mobile/native-ios?) (not= "/" (first file)))
- file
- :else
- file)
- file (gp-util/path-normalize file)
- new? (nil? (db/entity [:file/path file]))]
- (graph-parser/parse-file
- (db/get-db repo-url false)
- file
- content
- (merge options
- {:new? new?
- :delete-blocks-fn (partial get-delete-blocks repo-url)
- :extract-options {:user-config (state/get-config)
- :date-formatter (state/get-date-formatter)
- :page-name-order (state/page-name-order)
- :block-pattern (config/get-block-pattern (gp-util/get-format file))
- :supported-formats (gp-config/supported-formats)}})))))
- ;; TODO: Remove this function in favor of `alter-files`
- (defn alter-file
- [repo path content {:keys [reset? re-render-root? from-disk? skip-compare? new-graph?]
- :or {reset? true
- re-render-root? false
- from-disk? false
- skip-compare? false}}]
- (let [original-content (db/get-file repo path)
- write-file! (if from-disk?
- #(p/resolved nil)
- #(fs/write-file! repo (config/get-repo-dir repo) path content
- (assoc (when original-content {:old-content original-content})
- :skip-compare? skip-compare?)))]
- (if reset?
- (do
- (when-let [page-id (db/get-file-page-id path)]
- (db/transact! repo
- [[:db/retract page-id :block/alias]
- [:db/retract page-id :block/tags]]))
- (reset-file! repo path content {:new-graph? new-graph?
- :from-disk? from-disk?}))
- (db/set-file-content! repo path content))
- (util/p-handle (write-file!)
- (fn [_]
- (when (= path (config/get-config-path repo))
- (restore-config! repo true))
- (when (= path (config/get-custom-css-path repo))
- (ui-handler/add-style-if-exists!))
- (when re-render-root? (ui-handler/re-render-root!)))
- (fn [error]
- (println "Write file failed, path: " path ", content: " content)
- (log/error :write/failed error)))))
- (defn set-file-content!
- [repo path new-content]
- (alter-file repo path new-content {:reset? false
- :re-render-root? false}))
- (defn alter-files
- [repo files {:keys [reset? update-db?]
- :or {reset? false
- update-db? true}
- :as opts}]
- ;; old file content
- (let [file->content (let [paths (map first files)]
- (zipmap paths
- (map (fn [path] (db/get-file repo path)) paths)))]
- ;; update db
- (when update-db?
- (doseq [[path content] files]
- (if reset?
- (reset-file! repo path content)
- (db/set-file-content! repo path content))))
- (when-let [chan (state/get-file-write-chan)]
- (let [chan-callback (:chan-callback opts)]
- (async/put! chan [repo files opts file->content])
- (when chan-callback
- (chan-callback))))))
- (defn alter-files-handler!
- [repo files {:keys [finish-handler chan]} file->content]
- (let [write-file-f (fn [[path content]]
- (when path
- (let [original-content (get file->content path)]
- (-> (p/let [_ (or
- (util/electron?)
- (nfs/check-directory-permission! repo))]
- (fs/write-file! repo (config/get-repo-dir repo) path content
- {:old-content original-content}))
- (p/catch (fn [error]
- (state/pub-event! [:notification/show
- {:content (str "Failed to save the file " path ". Error: "
- (str error))
- :status :error
- :clear? false}])
- (state/pub-event! [:instrument {:type :write-file/failed
- :payload {:path path
- :content-length (count content)
- :error-str (str error)
- :error error}}])
- (log/error :write-file/failed {:path path
- :content content
- :error error})))))))
- finish-handler (fn []
- (when finish-handler
- (finish-handler))
- (ui-handler/re-render-file!))]
- (-> (p/all (map write-file-f files))
- (p/then (fn []
- (finish-handler)
- (when chan
- (async/put! chan true))))
- (p/catch (fn [error]
- (println "Alter files failed:")
- (js/console.error error)
- (async/put! chan false))))))
- (defn run-writes-chan!
- []
- (let [chan (state/get-file-write-chan)]
- (async/go-loop []
- (let [args (async/<! chan)]
- ;; return a channel
- (try
- (<p! (apply alter-files-handler! args))
- (catch js/Error e
- (log/error :file/write-failed e))))
- (recur))
- (outliner-file/ratelimit-file-writes!)
- chan))
- (defn watch-for-current-graph-dir!
- []
- (when-let [repo (state/get-current-repo)]
- (when-let [dir (config/get-repo-dir repo)]
- (fs/watch-dir! dir))))
- (defn create-metadata-file
- [repo-url encrypted?]
- (let [repo-dir (config/get-repo-dir repo-url)
- path (str config/app-name "/" config/metadata-file)
- file-path (str "/" path)
- default-content (if encrypted? "{:db/encrypted? true}" "{}")]
- (p/let [_ (fs/mkdir-if-not-exists (str repo-dir "/" config/app-name))
- file-exists? (fs/create-if-not-exists repo-url repo-dir file-path default-content)]
- (when-not file-exists?
- (reset-file! repo-url path default-content)))))
- (defn create-pages-metadata-file
- [repo-url]
- (let [repo-dir (config/get-repo-dir repo-url)
- path (str config/app-name "/" config/pages-metadata-file)
- file-path (str "/" path)
- default-content "{}"]
- (p/let [_ (fs/mkdir-if-not-exists (str repo-dir "/" config/app-name))
- file-exists? (fs/create-if-not-exists repo-url repo-dir file-path default-content)]
- (when-not file-exists?
- (reset-file! repo-url path default-content)))))
- (defn edn-file-set-key-value
- [path k v]
- (when-let [repo (state/get-current-repo)]
- (when-let [content (db/get-file path)]
- (common-handler/read-config content)
- (let [result (common-handler/parse-config content)
- ks (if (vector? k) k [k])
- new-result (rewrite/assoc-in result ks v)
- new-content (str new-result)]
- (set-file-content! repo path new-content)))))
|