Compare commits
2 commits
f4a4a30f24
...
bd7ea0ccba
Author | SHA1 | Date | |
---|---|---|---|
bd7ea0ccba | |||
9441cfa773 |
3 changed files with 18 additions and 4 deletions
src/dda/backup
|
@ -3,7 +3,8 @@
|
|||
[orchestra.core :refer [defn-spec]]
|
||||
[clojure.spec.alpha :as s]
|
||||
[dda.backup.cred-rot.domain :as domain]
|
||||
[dda.backup.infrastructure :as i]))
|
||||
[dda.backup.infrastructure :as i]
|
||||
[cheshire.core :as cc]))
|
||||
|
||||
(s/def ::new-password-file string?)
|
||||
|
||||
|
@ -19,9 +20,13 @@
|
|||
(if (not (nil? new-password-file))
|
||||
(i/execute! (domain/add-password-command config) config))))
|
||||
|
||||
(defn-spec list-passwords! nil?
|
||||
(defn-spec list-passwords! map?
|
||||
[config ::cred-rot]
|
||||
(i/execute! (domain/list-passwords-command config) config))
|
||||
(i/execute-out! (domain/list-passwords-command config) config))
|
||||
|
||||
(defn-spec parse-passwords! nil?
|
||||
[config ::cred-rot]
|
||||
(println (cc/parse-string (list-passwords! config))))
|
||||
|
||||
(defn-spec replace-old-password! nil?
|
||||
[]
|
||||
|
|
|
@ -57,7 +57,7 @@
|
|||
|
||||
(defn-spec list-passwords-command ::cd/command
|
||||
[config ::config]
|
||||
[(base-command config ["key" "list" "--json"])])
|
||||
(base-command config ["key" "list" "--json"]))
|
||||
|
||||
(defn-spec add-password-command ::cd/command
|
||||
[config ::config]
|
||||
|
|
|
@ -12,3 +12,12 @@
|
|||
(println c))
|
||||
(when-not dry-run
|
||||
(apply t/shell c)))))
|
||||
|
||||
(defn-spec execute-out! string?
|
||||
[command ::core/command
|
||||
config ::core/execution]
|
||||
(let [{:keys [dry-run debug]} config]
|
||||
(when debug
|
||||
(println command))
|
||||
(when-not dry-run
|
||||
(:out (t/shell {:out :string} (clojure.string/join " " command))))))
|
Loading…
Add table
Reference in a new issue