2021-08-10 08:43:04 +00:00
|
|
|
(ns dda.c4k-nextcloud.browser
|
2021-08-06 15:36:59 +00:00
|
|
|
(:require
|
|
|
|
[clojure.tools.reader.edn :as edn]
|
2021-08-10 08:43:04 +00:00
|
|
|
[dda.c4k-nextcloud.core :as core]
|
|
|
|
[dda.c4k-nextcloud.nextcloud :as nextcloud]
|
|
|
|
[dda.c4k-common.browser :as br]
|
|
|
|
[dda.c4k-common.postgres :as pgc]))
|
2021-08-06 15:36:59 +00:00
|
|
|
|
2021-10-22 13:23:39 +00:00
|
|
|
(defn generate-content
|
|
|
|
[]
|
|
|
|
(into [] (concat [(assoc (br/generate-needs-validation) :content
|
|
|
|
(into [] (concat (br/generate-input-field "fqdn" "Your fqdn:" "nextcloud-neu.prod.meissa-gmbh.de")
|
|
|
|
(br/generate-input-field "nextcloud-data-volume-path" "(Optional) Your nextcloud-data-volume-path:" "/var/nextcloud")
|
|
|
|
(br/generate-input-field "postgres-data-volume-path" "(Optional) Your postgres-data-volume-path:" "/var/postgres")
|
|
|
|
(br/generate-input-field "restic-repository" "(Optional) Your restic-repository:" "restic-repository")
|
|
|
|
(br/generate-input-field "issuer" "(Optional) Your issuer prod/staging:" "")
|
|
|
|
[(br/generate-br)]
|
|
|
|
(br/generate-text-area "auth" "Your auth.edn:" "{:postgres-db-user \"nextcloud\"
|
|
|
|
:postgres-db-password \"nextcloud-db-password\"
|
|
|
|
:nextcloud-admin-password \"nextcloud-admin-password\"
|
|
|
|
:nextcloud-admin-user \"nextcloud-admin-user\"
|
|
|
|
:aws-access-key-id \"aws-id\"
|
|
|
|
:aws-secret-access-key \"aws-secret\"
|
|
|
|
:restic-password \"restic-password\"}"
|
|
|
|
"5")
|
|
|
|
[(br/generate-br)]
|
|
|
|
(br/generate-button "generate-button" "Generate c4k yaml"))))]
|
|
|
|
(br/generate-output "c4k-nextcloud-output" "Your c4k deployment.yaml:" "25"))))
|
|
|
|
|
|
|
|
(defn generate-content-div
|
|
|
|
[]
|
|
|
|
{:type :element
|
|
|
|
:tag :div
|
|
|
|
:content
|
|
|
|
(generate-content)})
|
|
|
|
|
2021-08-06 15:36:59 +00:00
|
|
|
(defn config-from-document []
|
2021-08-10 08:43:04 +00:00
|
|
|
(let [nextcloud-data-volume-path (br/get-content-from-element "nextcloud-data-volume-path" :optional true)
|
|
|
|
postgres-data-volume-path (br/get-content-from-element "postgres-data-volume-path" :optional true)
|
|
|
|
restic-repository (br/get-content-from-element "restic-repository" :optional true)
|
2021-08-06 15:36:59 +00:00
|
|
|
issuer (br/get-content-from-element "issuer" :optional true :deserializer keyword)]
|
|
|
|
(merge
|
|
|
|
{:fqdn (br/get-content-from-element "fqdn")}
|
2021-08-10 08:43:04 +00:00
|
|
|
(when (some? nextcloud-data-volume-path)
|
|
|
|
{:nextcloud-data-volume-path nextcloud-data-volume-path})
|
2021-08-06 15:36:59 +00:00
|
|
|
(when (some? postgres-data-volume-path)
|
|
|
|
{:postgres-data-volume-path postgres-data-volume-path})
|
|
|
|
(when (some? restic-repository)
|
|
|
|
{:restic-repository restic-repository})
|
|
|
|
(when (some? issuer)
|
|
|
|
{:issuer issuer})
|
|
|
|
)))
|
|
|
|
|
|
|
|
(defn validate-all! []
|
2021-08-10 08:43:04 +00:00
|
|
|
(br/validate! "fqdn" ::nextcloud/fqdn)
|
|
|
|
(br/validate! "nextcloud-data-volume-path" ::nextcloud/nextcloud-data-volume-path :optional true)
|
|
|
|
(br/validate! "postgres-data-volume-path" ::pgc/postgres-data-volume-path :optional true)
|
|
|
|
(br/validate! "restic-repository" ::nextcloud/restic-repository :optional true)
|
|
|
|
(br/validate! "issuer" ::nextcloud/issuer :optional true :deserializer keyword)
|
2021-08-06 15:36:59 +00:00
|
|
|
(br/validate! "auth" core/auth? :deserializer edn/read-string)
|
|
|
|
(br/set-validated!))
|
|
|
|
|
2021-10-22 13:23:39 +00:00
|
|
|
(defn add-validate-listener [name]
|
|
|
|
(-> (br/get-element-by-id name)
|
|
|
|
(.addEventListener "blur" #(do (validate-all!)))))
|
|
|
|
|
2021-08-06 15:36:59 +00:00
|
|
|
(defn init []
|
2021-10-22 13:23:39 +00:00
|
|
|
(br/append-hickory (generate-content-div))
|
2021-08-06 15:36:59 +00:00
|
|
|
(-> js/document
|
|
|
|
(.getElementById "generate-button")
|
|
|
|
(.addEventListener "click"
|
|
|
|
#(do (validate-all!)
|
|
|
|
(-> (core/generate
|
|
|
|
(config-from-document)
|
|
|
|
(br/get-content-from-element "auth" :deserializer edn/read-string))
|
|
|
|
(br/set-output!)))))
|
2021-10-22 13:23:39 +00:00
|
|
|
(add-validate-listener "fqdn")
|
|
|
|
(add-validate-listener "nextcloud-data-volume-path")
|
|
|
|
(add-validate-listener "postgres-data-volume-path")
|
|
|
|
(add-validate-listener "restic-repository")
|
|
|
|
(add-validate-listener "issuer")
|
|
|
|
(add-validate-listener "auth")
|
2021-08-06 15:36:59 +00:00
|
|
|
)
|