From b1154aea9df843cead27a5f0aab94580653faa00 Mon Sep 17 00:00:00 2001 From: brasse Date: Sat, 4 Jul 2026 13:06:35 +0200 Subject: [PATCH] Initial npmctl: NPM CLI + generic API client Rust CLI for Nginx Proxy Manager via its API, with sudo-like token auth (login prompts for password, caches only a short-lived token, never the password) and a generic `api` command to talk to any HTTP API. Commands: login/logout/status, list-hosts/get-host/find, add-proxy, enable/disable/delete-host, list-certs/add-cert/renew-cert, dump (JSON backup), apply (declarative), and generic api (method/url/header/data/ auth-key/insecure). Includes clap help + help-on-bad-input, Gitea Actions release workflow (arm64 native + x64 cross), VS Code build task (-> ./build), README and MIT license. Co-Authored-By: Claude Opus 4.8 (1M context) Claude-Session: https://claude.ai/code/session_011YPrEZVBpPVoCRyJz2exkZ --- .gitea/workflows/release.yaml | 87 ++ .gitignore | 9 + .vscode/tasks.json | 31 + Cargo.lock | 1786 +++++++++++++++++++++++++++++++++ Cargo.toml | 29 + LICENSE | 21 + README.md | 66 ++ src/cli.rs | 215 ++++ src/client.rs | 183 ++++ src/config.rs | 129 +++ src/generic.rs | 89 ++ src/main.rs | 76 ++ src/npm.rs | 378 +++++++ 13 files changed, 3099 insertions(+) create mode 100644 .gitea/workflows/release.yaml create mode 100644 .gitignore create mode 100644 .vscode/tasks.json create mode 100644 Cargo.lock create mode 100644 Cargo.toml create mode 100644 LICENSE create mode 100644 README.md create mode 100644 src/cli.rs create mode 100644 src/client.rs create mode 100644 src/config.rs create mode 100644 src/generic.rs create mode 100644 src/main.rs create mode 100644 src/npm.rs diff --git a/.gitea/workflows/release.yaml b/.gitea/workflows/release.yaml new file mode 100644 index 0000000..062fa37 --- /dev/null +++ b/.gitea/workflows/release.yaml @@ -0,0 +1,87 @@ +name: release + +# Bygger fristående npmctl-binärer för linux-arm64 (native på Pi-runnern) och +# linux-x64 (cross via gcc-x86-64-linux-gnu) och publicerar dem som assets på +# en Gitea-release. Runnern använder sin egen GITHUB_TOKEN mot Gitea-API:t — +# ingen token behöver hanteras manuellt. +on: + push: + branches: [main, master] # varje main-push -> rullande 'latest'-release + tags: ["v*"] # vX.Y.Z -> versionerad release + workflow_dispatch: + inputs: + tag: + description: "Release-tag (lämna tom för 'latest')" + required: false + +jobs: + build-release: + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@v4 + + - name: Bestäm tag + id: t + run: | + case "$GITHUB_REF" in + refs/tags/*) T="$GITHUB_REF_NAME" ;; + *) T="${{ inputs.tag }}"; [ -z "$T" ] && T="latest" ;; + esac + echo "tag=$T" >> "$GITHUB_OUTPUT" + echo "bygger release: $T" + + - name: Installera toolchain + bygg binärer + run: | + set -eux + SUDO=""; [ "$(id -u)" -ne 0 ] && SUDO=sudo + $SUDO apt-get update + $SUDO apt-get install -y --no-install-recommends gcc gcc-x86-64-linux-gnu jq curl ca-certificates + + # Rust (om det saknas på runnern). + if ! command -v cargo >/dev/null 2>&1; then + curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y --profile minimal + fi + . "$HOME/.cargo/env" + + rustup target add aarch64-unknown-linux-gnu x86_64-unknown-linux-gnu + + mkdir -p dist + + # arm64 — native på Pi-runnern. + cargo build --release --target aarch64-unknown-linux-gnu + cp target/aarch64-unknown-linux-gnu/release/npmctl dist/npmctl-linux-arm64 + + # x64 — cross. Peka ut cross-linker och C-compiler (för ring). + export CARGO_TARGET_X86_64_UNKNOWN_LINUX_GNU_LINKER=x86_64-linux-gnu-gcc + export CC_x86_64_unknown_linux_gnu=x86_64-linux-gnu-gcc + export AR_x86_64_unknown_linux_gnu=x86_64-linux-gnu-ar + cargo build --release --target x86_64-unknown-linux-gnu + cp target/x86_64-unknown-linux-gnu/release/npmctl dist/npmctl-linux-x64 + + cd dist + sha256sum npmctl-linux-* > checksums.txt + ls -la + + - name: Skapa Gitea-release + ladda upp assets + env: + API: http://gitea-d:3000/api/v1 + REPO: ${{ github.repository }} + TAG: ${{ steps.t.outputs.tag }} + TOKEN: ${{ secrets.GITHUB_TOKEN }} + run: | + set -eu + B=dist + BODY="npmctl $TAG — CLI för Nginx Proxy Manager (linux x64/arm64). Se wiki: https://gitea.brasse-pc.eu/brasse/Npm-cli/wiki" + rid=$(curl -s -X POST "$API/repos/$REPO/releases" -H "Authorization: token $TOKEN" -H 'Content-Type: application/json' -d "{\"tag_name\":\"$TAG\",\"name\":\"$TAG\",\"body\":\"$BODY\"}" | jq -r '.id // empty') + [ -z "$rid" ] && rid=$(curl -s "$API/repos/$REPO/releases/tags/$TAG" -H "Authorization: token $TOKEN" | jq -r '.id') + echo "release id: $rid" + for f in npmctl-linux-x64 npmctl-linux-arm64 checksums.txt; do + aid=$(curl -s "$API/repos/$REPO/releases/$rid/assets" -H "Authorization: token $TOKEN" | jq -r ".[] | select(.name==\"$f\") | .id") + if [ -n "$aid" ] && [ "$aid" != "null" ]; then + echo "ersätter befintlig $f (id $aid)" + curl -s -X DELETE "$API/repos/$REPO/releases/$rid/assets/$aid" -H "Authorization: token $TOKEN" -o /dev/null + fi + echo "laddar upp $f ..." + curl -s -X POST "$API/repos/$REPO/releases/$rid/assets?name=$f" -H "Authorization: token $TOKEN" -F "attachment=@$B/$f" -o /dev/null -w " -> HTTP %{http_code}\n" + done diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..cd9091c --- /dev/null +++ b/.gitignore @@ -0,0 +1,9 @@ +# Rust build output +/target + +# Lokal build-mapp (VS Code-tasken lägger binären här) — ska inte in i repot +/build + +# Diverse +*.log +.DS_Store diff --git a/.vscode/tasks.json b/.vscode/tasks.json new file mode 100644 index 0000000..37c433b --- /dev/null +++ b/.vscode/tasks.json @@ -0,0 +1,31 @@ +{ + "version": "2.0.0", + "tasks": [ + { + "label": "build (release -> ./build)", + "detail": "Bygger npmctl i release-läge och lägger binären i ./build/npmctl", + "type": "shell", + "options": { + "shell": { "executable": "/bin/bash", "args": ["-c"] }, + "env": { + "//": "Bygg utanför NTFS-disken (cargo skapar många småfiler); kopiera sedan bara binären in i repot.", + "CARGO_TARGET_DIR": "${env:HOME}/.cache/npmctl-target" + } + }, + "command": "cargo build --release && mkdir -p build && cp \"$CARGO_TARGET_DIR/release/npmctl\" build/npmctl && echo '--> build/npmctl' && ls -la build/", + "problemMatcher": ["$rustc"], + "group": { "kind": "build", "isDefault": true } + }, + { + "label": "run -- status", + "detail": "Bygger och kör `npmctl status`", + "type": "shell", + "options": { + "shell": { "executable": "/bin/bash", "args": ["-c"] }, + "env": { "CARGO_TARGET_DIR": "${env:HOME}/.cache/npmctl-target" } + }, + "command": "cargo run --release -- status", + "problemMatcher": ["$rustc"] + } + ] +} diff --git a/Cargo.lock b/Cargo.lock new file mode 100644 index 0000000..dc6685e --- /dev/null +++ b/Cargo.lock @@ -0,0 +1,1786 @@ +# This file is automatically @generated by Cargo. +# It is not intended for manual editing. +version = 4 + +[[package]] +name = "android_system_properties" +version = "0.1.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "819e7219dbd41043ac279b19830f2efc897156490d7fd6ea916720117ee66311" +dependencies = [ + "libc", +] + +[[package]] +name = "anstream" +version = "1.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "824a212faf96e9acacdbd09febd34438f8f711fb84e09a8916013cd7815ca28d" +dependencies = [ + "anstyle", + "anstyle-parse", + "anstyle-query", + "anstyle-wincon", + "colorchoice", + "is_terminal_polyfill", + "utf8parse", +] + +[[package]] +name = "anstyle" +version = "1.0.14" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "940b3a0ca603d1eade50a4846a2afffd5ef57a9feac2c0e2ec2e14f9ead76000" + +[[package]] +name = "anstyle-parse" +version = "1.0.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "52ce7f38b242319f7cabaa6813055467063ecdc9d355bbb4ce0c68908cd8130e" +dependencies = [ + "utf8parse", +] + +[[package]] +name = "anstyle-query" +version = "1.1.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "40c48f72fd53cd289104fc64099abca73db4166ad86ea0b4341abe65af83dadc" +dependencies = [ + "windows-sys 0.61.2", +] + +[[package]] +name = "anstyle-wincon" +version = "3.0.11" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "291e6a250ff86cd4a820112fb8898808a366d8f9f58ce16d1f538353ad55747d" +dependencies = [ + "anstyle", + "once_cell_polyfill", + "windows-sys 0.61.2", +] + +[[package]] +name = "anyhow" +version = "1.0.103" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2a4385e2e34eb35d6b3efe798b9eb88096925d87726c0798709bf56d9ed84af3" + +[[package]] +name = "atomic-waker" +version = "1.1.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1505bd5d3d116872e7271a6d4e16d81d0c8570876c8de68093a09ac269d8aac0" + +[[package]] +name = "autocfg" +version = "1.5.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f2032f911046de80f0a198e0901378627c33f59ea0ac00e363d481118bd70a53" + +[[package]] +name = "base64" +version = "0.22.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "72b3254f16251a8381aa12e40e3c4d2f0199f8c6508fbecb9d91f575e0fbb8c6" + +[[package]] +name = "bitflags" +version = "2.13.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b4388bee8683e3d04af747c73422af53102d2bd24d9eadb6cbc100baef4b43f8" + +[[package]] +name = "bumpalo" +version = "3.20.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "72f5acc6cb2ba439de613abc23857ec3d78374d8ed5ac84e9d11336e87da8649" + +[[package]] +name = "bytes" +version = "1.12.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8ae3f5d315924270530207e2a68396c3cc547f6dca3fbdca317cfb1a51edb593" + +[[package]] +name = "cc" +version = "1.2.65" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e228eec9be7c17ccb640b59b36a5cd805ea2a564a4c5e162c2f659fea30d3b96" +dependencies = [ + "find-msvc-tools", + "shlex", +] + +[[package]] +name = "cfg-if" +version = "1.0.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9330f8b2ff13f34540b44e946ef35111825727b38d33286ef986142615121801" + +[[package]] +name = "cfg_aliases" +version = "0.2.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "613afe47fcd5fac7ccf1db93babcb082c5994d996f20b8b159f2ad1658eb5724" + +[[package]] +name = "chrono" +version = "0.4.45" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1aa79e62e7697b8e29b513a68abacf485adcd1fe8284a4316c5ae868e6633327" +dependencies = [ + "iana-time-zone", + "num-traits", + "windows-link", +] + +[[package]] +name = "clap" +version = "4.6.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1ddb117e43bbf7dacf0a4190fef4d345b9bad68dfc649cb349e7d17d28428e51" +dependencies = [ + "clap_builder", + "clap_derive", +] + +[[package]] +name = "clap_builder" +version = "4.6.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "714a53001bf66416adb0e2ef5ac857140e7dc3a0c48fb28b2f10762fc4b5069f" +dependencies = [ + "anstream", + "anstyle", + "clap_lex", + "strsim", +] + +[[package]] +name = "clap_derive" +version = "4.6.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f2ce8604710f6733aa641a2b3731eaa1e8b3d9973d5e3565da11800813f997a9" +dependencies = [ + "heck", + "proc-macro2", + "quote", + "syn", +] + +[[package]] +name = "clap_lex" +version = "1.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c8d4a3bb8b1e0c1050499d1815f5ab16d04f0959b233085fb31653fbfc9d98f9" + +[[package]] +name = "colorchoice" +version = "1.0.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1d07550c9036bf2ae0c684c4297d503f838287c83c53686d05370d0e139ae570" + +[[package]] +name = "core-foundation-sys" +version = "0.8.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "773648b94d0e5d620f64f280777445740e61fe701025087ec8b57f45c791888b" + +[[package]] +name = "dirs" +version = "5.0.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "44c45a9d03d6676652bcb5e724c7e988de1acad23a711b5217ab9cbecbec2225" +dependencies = [ + "dirs-sys", +] + +[[package]] +name = "dirs-sys" +version = "0.4.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "520f05a5cbd335fae5a99ff7a6ab8627577660ee5cfd6a94a6a929b52ff0321c" +dependencies = [ + "libc", + "option-ext", + "redox_users", + "windows-sys 0.48.0", +] + +[[package]] +name = "displaydoc" +version = "0.2.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1ac70aa55017e108007fbaf5aa0f54b021c98f92ff8af59d42eda9da96e3dd4f" +dependencies = [ + "proc-macro2", + "quote", + "syn", +] + +[[package]] +name = "find-msvc-tools" +version = "0.1.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5baebc0774151f905a1a2cc41989300b1e6fbb29aff0ceffa1064fdd3088d582" + +[[package]] +name = "form_urlencoded" +version = "1.2.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cb4cb245038516f5f85277875cdaa4f7d2c9a0fa0468de06ed190163b1581fcf" +dependencies = [ + "percent-encoding", +] + +[[package]] +name = "futures-channel" +version = "0.3.32" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "07bbe89c50d7a535e539b8c17bc0b49bdb77747034daa8087407d655f3f7cc1d" +dependencies = [ + "futures-core", + "futures-sink", +] + +[[package]] +name = "futures-core" +version = "0.3.32" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7e3450815272ef58cec6d564423f6e755e25379b217b0bc688e295ba24df6b1d" + +[[package]] +name = "futures-io" +version = "0.3.32" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cecba35d7ad927e23624b22ad55235f2239cfa44fd10428eecbeba6d6a717718" + +[[package]] +name = "futures-sink" +version = "0.3.32" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c39754e157331b013978ec91992bde1ac089843443c49cbc7f46150b0fad0893" + +[[package]] +name = "futures-task" +version = "0.3.32" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "037711b3d59c33004d3856fbdc83b99d4ff37a24768fa1be9ce3538a1cde4393" + +[[package]] +name = "futures-util" +version = "0.3.32" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "389ca41296e6190b48053de0321d02a77f32f8a5d2461dd38762c0593805c6d6" +dependencies = [ + "futures-core", + "futures-io", + "futures-sink", + "futures-task", + "memchr", + "pin-project-lite", + "slab", +] + +[[package]] +name = "getrandom" +version = "0.2.17" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ff2abc00be7fca6ebc474524697ae276ad847ad0a6b3faa4bcb027e9a4614ad0" +dependencies = [ + "cfg-if", + "js-sys", + "libc", + "wasi", + "wasm-bindgen", +] + +[[package]] +name = "getrandom" +version = "0.3.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "899def5c37c4fd7b2664648c28120ecec138e4d395b459e5ca34f9cce2dd77fd" +dependencies = [ + "cfg-if", + "js-sys", + "libc", + "r-efi", + "wasip2", + "wasm-bindgen", +] + +[[package]] +name = "heck" +version = "0.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2304e00983f87ffb38b55b444b5e3b60a884b5d30c0fca7d82fe33449bbe55ea" + +[[package]] +name = "http" +version = "1.4.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6970f50e31d6fc17d3fa27329444bfa74e196cf62e95052a3f6fee181dba6425" +dependencies = [ + "bytes", + "itoa", +] + +[[package]] +name = "http-body" +version = "1.0.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1efedce1fb8e6913f23e0c92de8e62cd5b772a67e7b3946df930a62566c93184" +dependencies = [ + "bytes", + "http", +] + +[[package]] +name = "http-body-util" +version = "0.1.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b021d93e26becf5dc7e1b75b1bed1fd93124b374ceb73f43d4d4eafec896a64a" +dependencies = [ + "bytes", + "futures-core", + "http", + "http-body", + "pin-project-lite", +] + +[[package]] +name = "httparse" +version = "1.10.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6dbf3de79e51f3d586ab4cb9d5c3e2c14aa28ed23d180cf89b4df0454a69cc87" + +[[package]] +name = "hyper" +version = "1.10.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "55281c53a1894c864990125767da440a4e630446785086f52523b20033b74498" +dependencies = [ + "atomic-waker", + "bytes", + "futures-channel", + "futures-core", + "http", + "http-body", + "httparse", + "itoa", + "pin-project-lite", + "smallvec", + "tokio", + "want", +] + +[[package]] +name = "hyper-rustls" +version = "0.27.9" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "33ca68d021ef39cf6463ab54c1d0f5daf03377b70561305bb89a8f83aab66e0f" +dependencies = [ + "http", + "hyper", + "hyper-util", + "rustls", + "tokio", + "tokio-rustls", + "tower-service", + "webpki-roots", +] + +[[package]] +name = "hyper-util" +version = "0.1.20" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "96547c2556ec9d12fb1578c4eaf448b04993e7fb79cbaad930a656880a6bdfa0" +dependencies = [ + "base64", + "bytes", + "futures-channel", + "futures-util", + "http", + "http-body", + "hyper", + "ipnet", + "libc", + "percent-encoding", + "pin-project-lite", + "socket2", + "tokio", + "tower-service", + "tracing", +] + +[[package]] +name = "iana-time-zone" +version = "0.1.65" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e31bc9ad994ba00e440a8aa5c9ef0ec67d5cb5e5cb0cc7f8b744a35b389cc470" +dependencies = [ + "android_system_properties", + "core-foundation-sys", + "iana-time-zone-haiku", + "js-sys", + "log", + "wasm-bindgen", + "windows-core", +] + +[[package]] +name = "iana-time-zone-haiku" +version = "0.1.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f31827a206f56af32e590ba56d5d2d085f558508192593743f16b2306495269f" +dependencies = [ + "cc", +] + +[[package]] +name = "icu_collections" +version = "2.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2984d1cd16c883d7935b9e07e44071dca8d917fd52ecc02c04d5fa0b5a3f191c" +dependencies = [ + "displaydoc", + "potential_utf", + "utf8_iter", + "yoke", + "zerofrom", + "zerovec", +] + +[[package]] +name = "icu_locale_core" +version = "2.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "92219b62b3e2b4d88ac5119f8904c10f8f61bf7e95b640d25ba3075e6cac2c29" +dependencies = [ + "displaydoc", + "litemap", + "tinystr", + "writeable", + "zerovec", +] + +[[package]] +name = "icu_normalizer" +version = "2.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c56e5ee99d6e3d33bd91c5d85458b6005a22140021cc324cea84dd0e72cff3b4" +dependencies = [ + "icu_collections", + "icu_normalizer_data", + "icu_properties", + "icu_provider", + "smallvec", + "zerovec", +] + +[[package]] +name = "icu_normalizer_data" +version = "2.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "da3be0ae77ea334f4da67c12f149704f19f81d1adf7c51cf482943e84a2bad38" + +[[package]] +name = "icu_properties" +version = "2.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bee3b67d0ea5c2cca5003417989af8996f8604e34fb9ddf96208a033901e70de" +dependencies = [ + "icu_collections", + "icu_locale_core", + "icu_properties_data", + "icu_provider", + "zerotrie", + "zerovec", +] + +[[package]] +name = "icu_properties_data" +version = "2.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8e2bbb201e0c04f7b4b3e14382af113e17ba4f63e2c9d2ee626b720cbce54a14" + +[[package]] +name = "icu_provider" +version = "2.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "139c4cf31c8b5f33d7e199446eff9c1e02decfc2f0eec2c8d71f65befa45b421" +dependencies = [ + "displaydoc", + "icu_locale_core", + "writeable", + "yoke", + "zerofrom", + "zerotrie", + "zerovec", +] + +[[package]] +name = "idna" +version = "1.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3b0875f23caa03898994f6ddc501886a45c7d3d62d04d2d90788d47be1b1e4de" +dependencies = [ + "idna_adapter", + "smallvec", + "utf8_iter", +] + +[[package]] +name = "idna_adapter" +version = "1.2.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "cb68373c0d6620ef8105e855e7745e18b0d00d3bdb07fb532e434244cdb9a714" +dependencies = [ + "icu_normalizer", + "icu_properties", +] + +[[package]] +name = "ipnet" +version = "2.12.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d98f6fed1fde3f8c21bc40a1abb88dd75e67924f9cffc3ef95607bad8017f8e2" + +[[package]] +name = "is_terminal_polyfill" +version = "1.70.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a6cb138bb79a146c1bd460005623e142ef0181e3d0219cb493e02f7d08a35695" + +[[package]] +name = "itoa" +version = "1.0.18" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8f42a60cbdf9a97f5d2305f08a87dc4e09308d1276d28c869c684d7777685682" + +[[package]] +name = "js-sys" +version = "0.3.103" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "53b44bfcdb3f8d5837a46dae1ca9660a837176eee74a28b229bc626816589102" +dependencies = [ + "cfg-if", + "futures-util", + "wasm-bindgen", +] + +[[package]] +name = "libc" +version = "0.2.186" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "68ab91017fe16c622486840e4c83c9a37afeff978bd239b5293d61ece587de66" + +[[package]] +name = "libredox" +version = "0.1.18" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c943259e342f1e06ff2da7a83eabdfe7f92ce10262688dbf1895ff0b3e6e4652" +dependencies = [ + "libc", +] + +[[package]] +name = "litemap" +version = "0.8.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "92daf443525c4cce67b150400bc2316076100ce0b3686209eb8cf3c31612e6f0" + +[[package]] +name = "log" +version = "0.4.33" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0ceec5bc11778974d1bcb055b18002eba7f4b3518b6a0081b3af5f21666da9ad" + +[[package]] +name = "lru-slab" +version = "0.1.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "112b39cec0b298b6c1999fee3e31427f74f676e4cb9879ed1a121b43661a4154" + +[[package]] +name = "memchr" +version = "2.8.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "88904434abc2901f197fe8cc55f0445e7ded921dba5911dad2e2b39b48e663c4" + +[[package]] +name = "mio" +version = "1.2.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "02bd0af71c67b473010cbbc60715ee815645a4dc942899111f494b4b737d6fda" +dependencies = [ + "libc", + "wasi", + "windows-sys 0.61.2", +] + +[[package]] +name = "npmctl" +version = "0.1.0" +dependencies = [ + "anyhow", + "chrono", + "clap", + "dirs", + "reqwest", + "rpassword", + "serde", + "serde_json", +] + +[[package]] +name = "num-traits" +version = "0.2.19" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "071dfc062690e90b734c0b2273ce72ad0ffa95f0c74596bc250dcfd960262841" +dependencies = [ + "autocfg", +] + +[[package]] +name = "once_cell" +version = "1.21.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9f7c3e4beb33f85d45ae3e3a1792185706c8e16d043238c593331cc7cd313b50" + +[[package]] +name = "once_cell_polyfill" +version = "1.70.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "384b8ab6d37215f3c5301a95a4accb5d64aa607f1fcb26a11b5303878451b4fe" + +[[package]] +name = "option-ext" +version = "0.2.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "04744f49eae99ab78e0d5c0b603ab218f515ea8cfe5a456d7629ad883a3b6e7d" + +[[package]] +name = "percent-encoding" +version = "2.3.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9b4f627cb1b25917193a259e49bdad08f671f8d9708acfd5fe0a8c1455d87220" + +[[package]] +name = "pin-project-lite" +version = "0.2.17" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a89322df9ebe1c1578d689c92318e070967d1042b512afbe49518723f4e6d5cd" + +[[package]] +name = "potential_utf" +version = "0.1.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0103b1cef7ec0cf76490e969665504990193874ea05c85ff9bab8b911d0a0564" +dependencies = [ + "zerovec", +] + +[[package]] +name = "ppv-lite86" +version = "0.2.21" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "85eae3c4ed2f50dcfe72643da4befc30deadb458a9b590d720cde2f2b1e97da9" +dependencies = [ + "zerocopy", +] + +[[package]] +name = "proc-macro2" +version = "1.0.106" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8fd00f0bb2e90d81d1044c2b32617f68fcb9fa3bb7640c23e9c748e53fb30934" +dependencies = [ + "unicode-ident", +] + +[[package]] +name = "quinn" +version = "0.11.11" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0c1a41e437b6bbd489372cd4971de128e85c855f56c57f283d20ff016cf7c0a8" +dependencies = [ + "bytes", + "cfg_aliases", + "pin-project-lite", + "quinn-proto", + "quinn-udp", + "rustc-hash", + "rustls", + "socket2", + "thiserror 2.0.18", + "tokio", + "tracing", + "web-time", +] + +[[package]] +name = "quinn-proto" +version = "0.11.15" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4fcb935c5bec503c2f0e306bdd3e58bb9029dcb14fa8d9ac76e3a5256ac0763e" +dependencies = [ + "bytes", + "getrandom 0.3.4", + "lru-slab", + "rand", + "ring", + "rustc-hash", + "rustls", + "rustls-pki-types", + "slab", + "thiserror 2.0.18", + "tinyvec", + "tracing", + "web-time", +] + +[[package]] +name = "quinn-udp" +version = "0.5.14" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "addec6a0dcad8a8d96a771f815f0eaf55f9d1805756410b39f5fa81332574cbd" +dependencies = [ + "cfg_aliases", + "libc", + "once_cell", + "socket2", + "tracing", + "windows-sys 0.60.2", +] + +[[package]] +name = "quote" +version = "1.0.46" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "dfbc457d0c7a0759a614551b11a6409e5951f6c7537be1f1b7682b9ae9230368" +dependencies = [ + "proc-macro2", +] + +[[package]] +name = "r-efi" +version = "5.3.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "69cdb34c158ceb288df11e18b4bd39de994f6657d83847bdffdbd7f346754b0f" + +[[package]] +name = "rand" +version = "0.9.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "44c5af06bb1b7d3216d91932aed5265164bf384dc89cd6ba05cf59a35f5f76ea" +dependencies = [ + "rand_chacha", + "rand_core", +] + +[[package]] +name = "rand_chacha" +version = "0.9.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d3022b5f1df60f26e1ffddd6c66e8aa15de382ae63b3a0c1bfc0e4d3e3f325cb" +dependencies = [ + "ppv-lite86", + "rand_core", +] + +[[package]] +name = "rand_core" +version = "0.9.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "76afc826de14238e6e8c374ddcc1fa19e374fd8dd986b0d2af0d02377261d83c" +dependencies = [ + "getrandom 0.3.4", +] + +[[package]] +name = "redox_users" +version = "0.4.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ba009ff324d1fc1b900bd1fdb31564febe58a8ccc8a6fdbb93b543d33b13ca43" +dependencies = [ + "getrandom 0.2.17", + "libredox", + "thiserror 1.0.69", +] + +[[package]] +name = "reqwest" +version = "0.12.28" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "eddd3ca559203180a307f12d114c268abf583f59b03cb906fd0b3ff8646c1147" +dependencies = [ + "base64", + "bytes", + "futures-channel", + "futures-core", + "futures-util", + "http", + "http-body", + "http-body-util", + "hyper", + "hyper-rustls", + "hyper-util", + "js-sys", + "log", + "percent-encoding", + "pin-project-lite", + "quinn", + "rustls", + "rustls-pki-types", + "serde", + "serde_json", + "serde_urlencoded", + "sync_wrapper", + "tokio", + "tokio-rustls", + "tower", + "tower-http", + "tower-service", + "url", + "wasm-bindgen", + "wasm-bindgen-futures", + "web-sys", + "webpki-roots", +] + +[[package]] +name = "ring" +version = "0.17.14" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a4689e6c2294d81e88dc6261c768b63bc4fcdb852be6d1352498b114f61383b7" +dependencies = [ + "cc", + "cfg-if", + "getrandom 0.2.17", + "libc", + "untrusted", + "windows-sys 0.52.0", +] + +[[package]] +name = "rpassword" +version = "7.5.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2da316a15f47e3d053de9cb2c439650bd8fa4aaeb9365f2e5f27f492ff73c196" +dependencies = [ + "libc", + "rtoolbox", + "windows-sys 0.61.2", +] + +[[package]] +name = "rtoolbox" +version = "0.0.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "50a0e551c1e27e1731aba276dbeaeac73f53c7cd34d1bda485d02bd1e0f36844" +dependencies = [ + "libc", + "windows-sys 0.59.0", +] + +[[package]] +name = "rustc-hash" +version = "2.1.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6b1e7f9a428571be2dc5bc0505c13fb6bf936822b894ec87abf8a08a4e51742d" + +[[package]] +name = "rustls" +version = "0.23.41" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6b92b125634d9b795e7beca796cc790df15a7fb38323bf3196fda83292d06b1f" +dependencies = [ + "once_cell", + "ring", + "rustls-pki-types", + "rustls-webpki", + "subtle", + "zeroize", +] + +[[package]] +name = "rustls-pki-types" +version = "1.15.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "764899a24af3980067ee14bc143654f297b22eaebfe3c7b6b211920a5a59b046" +dependencies = [ + "web-time", + "zeroize", +] + +[[package]] +name = "rustls-webpki" +version = "0.103.13" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "61c429a8649f110dddef65e2a5ad240f747e85f7758a6bccc7e5777bd33f756e" +dependencies = [ + "ring", + "rustls-pki-types", + "untrusted", +] + +[[package]] +name = "rustversion" +version = "1.0.22" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b39cdef0fa800fc44525c84ccb54a029961a8215f9619753635a9c0d2538d46d" + +[[package]] +name = "ryu" +version = "1.0.23" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9774ba4a74de5f7b1c1451ed6cd5285a32eddb5cccb8cc655a4e50009e06477f" + +[[package]] +name = "serde" +version = "1.0.228" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9a8e94ea7f378bd32cbbd37198a4a91436180c5bb472411e48b5ec2e2124ae9e" +dependencies = [ + "serde_core", + "serde_derive", +] + +[[package]] +name = "serde_core" +version = "1.0.228" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "41d385c7d4ca58e59fc732af25c3983b67ac852c1a25000afe1175de458b67ad" +dependencies = [ + "serde_derive", +] + +[[package]] +name = "serde_derive" +version = "1.0.228" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d540f220d3187173da220f885ab66608367b6574e925011a9353e4badda91d79" +dependencies = [ + "proc-macro2", + "quote", + "syn", +] + +[[package]] +name = "serde_json" +version = "1.0.150" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e8014e44b4736ed0538adeecded0fce2a272f22dc9578a7eb6b2d9993c74cfb9" +dependencies = [ + "itoa", + "memchr", + "serde", + "serde_core", + "zmij", +] + +[[package]] +name = "serde_urlencoded" +version = "0.7.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d3491c14715ca2294c4d6a88f15e84739788c1d030eed8c110436aafdaa2f3fd" +dependencies = [ + "form_urlencoded", + "itoa", + "ryu", + "serde", +] + +[[package]] +name = "shlex" +version = "2.0.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f8fadd59c855ef2080decdef8ff161eb6661b86933c9d82e5ba29dc602a55aba" + +[[package]] +name = "slab" +version = "0.4.12" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0c790de23124f9ab44544d7ac05d60440adc586479ce501c1d6d7da3cd8c9cf5" + +[[package]] +name = "smallvec" +version = "1.15.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8ed6a63f02c8539c91a8685a86f4099661ba3da017932f6ebbea6de3f0fa7c90" + +[[package]] +name = "socket2" +version = "0.6.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "52d1cfed4120b4d927bf7c0f86d2087a4a7d6027c906d9f9d525a80573b9be51" +dependencies = [ + "libc", + "windows-sys 0.61.2", +] + +[[package]] +name = "stable_deref_trait" +version = "1.2.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "6ce2be8dc25455e1f91df71bfa12ad37d7af1092ae736f3a6cd0e37bc7810596" + +[[package]] +name = "strsim" +version = "0.11.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7da8b5736845d9f2fcb837ea5d9e2628564b3b043a70948a3f0b778838c5fb4f" + +[[package]] +name = "subtle" +version = "2.6.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "13c2bddecc57b384dee18652358fb23172facb8a2c51ccc10d74c157bdea3292" + +[[package]] +name = "syn" +version = "2.0.118" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1b9ae57f904213ebb649ce6895b8a66c66f0203b9319718f69a5612a065b1422" +dependencies = [ + "proc-macro2", + "quote", + "unicode-ident", +] + +[[package]] +name = "sync_wrapper" +version = "1.0.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0bf256ce5efdfa370213c1dabab5935a12e49f2c58d15e9eac2870d3b4f27263" +dependencies = [ + "futures-core", +] + +[[package]] +name = "synstructure" +version = "0.13.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "728a70f3dbaf5bab7f0c4b1ac8d7ae5ea60a4b5549c8a5914361c99147a709d2" +dependencies = [ + "proc-macro2", + "quote", + "syn", +] + +[[package]] +name = "thiserror" +version = "1.0.69" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b6aaf5339b578ea85b50e080feb250a3e8ae8cfcdff9a461c9ec2904bc923f52" +dependencies = [ + "thiserror-impl 1.0.69", +] + +[[package]] +name = "thiserror" +version = "2.0.18" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4288b5bcbc7920c07a1149a35cf9590a2aa808e0bc1eafaade0b80947865fbc4" +dependencies = [ + "thiserror-impl 2.0.18", +] + +[[package]] +name = "thiserror-impl" +version = "1.0.69" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4fee6c4efc90059e10f81e6d42c60a18f76588c3d74cb83a0b242a2b6c7504c1" +dependencies = [ + "proc-macro2", + "quote", + "syn", +] + +[[package]] +name = "thiserror-impl" +version = "2.0.18" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ebc4ee7f67670e9b64d05fa4253e753e016c6c95ff35b89b7941d6b856dec1d5" +dependencies = [ + "proc-macro2", + "quote", + "syn", +] + +[[package]] +name = "tinystr" +version = "0.8.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c8323304221c2a851516f22236c5722a72eaa19749016521d6dff0824447d96d" +dependencies = [ + "displaydoc", + "zerovec", +] + +[[package]] +name = "tinyvec" +version = "1.11.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3e61e67053d25a4e82c844e8424039d9745781b3fc4f32b8d55ed50f5f667ef3" +dependencies = [ + "tinyvec_macros", +] + +[[package]] +name = "tinyvec_macros" +version = "0.1.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20" + +[[package]] +name = "tokio" +version = "1.52.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8fc7f01b389ac15039e4dc9531aa973a135d7a4135281b12d7c1bc79fd57fffe" +dependencies = [ + "bytes", + "libc", + "mio", + "pin-project-lite", + "socket2", + "windows-sys 0.61.2", +] + +[[package]] +name = "tokio-rustls" +version = "0.26.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1729aa945f29d91ba541258c8df89027d5792d85a8841fb65e8bf0f4ede4ef61" +dependencies = [ + "rustls", + "tokio", +] + +[[package]] +name = "tower" +version = "0.5.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ebe5ef63511595f1344e2d5cfa636d973292adc0eec1f0ad45fae9f0851ab1d4" +dependencies = [ + "futures-core", + "futures-util", + "pin-project-lite", + "sync_wrapper", + "tokio", + "tower-layer", + "tower-service", +] + +[[package]] +name = "tower-http" +version = "0.6.11" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4cfcf7e2740e6fc6d4d688b4ef00650406bb94adf4731e43c096c3a19fe40840" +dependencies = [ + "bitflags", + "bytes", + "futures-util", + "http", + "http-body", + "pin-project-lite", + "tower", + "tower-layer", + "tower-service", + "url", +] + +[[package]] +name = "tower-layer" +version = "0.3.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "121c2a6cda46980bb0fcd1647ffaf6cd3fc79a013de288782836f6df9c48780e" + +[[package]] +name = "tower-service" +version = "0.3.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8df9b6e13f2d32c91b9bd719c00d1958837bc7dec474d94952798cc8e69eeec3" + +[[package]] +name = "tracing" +version = "0.1.44" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "63e71662fa4b2a2c3a26f570f037eb95bb1f85397f3cd8076caed2f026a6d100" +dependencies = [ + "pin-project-lite", + "tracing-core", +] + +[[package]] +name = "tracing-core" +version = "0.1.36" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "db97caf9d906fbde555dd62fa95ddba9eecfd14cb388e4f491a66d74cd5fb79a" +dependencies = [ + "once_cell", +] + +[[package]] +name = "try-lock" +version = "0.2.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e421abadd41a4225275504ea4d6566923418b7f05506fbc9c0fe86ba7396114b" + +[[package]] +name = "unicode-ident" +version = "1.0.24" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e6e4313cd5fcd3dad5cafa179702e2b244f760991f45397d14d4ebf38247da75" + +[[package]] +name = "untrusted" +version = "0.9.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8ecb6da28b8a351d773b68d5825ac39017e680750f980f3a1a85cd8dd28a47c1" + +[[package]] +name = "url" +version = "2.5.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ff67a8a4397373c3ef660812acab3268222035010ab8680ec4215f38ba3d0eed" +dependencies = [ + "form_urlencoded", + "idna", + "percent-encoding", + "serde", +] + +[[package]] +name = "utf8_iter" +version = "1.0.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b6c140620e7ffbb22c2dee59cafe6084a59b5ffc27a8859a5f0d494b5d52b6be" + +[[package]] +name = "utf8parse" +version = "0.2.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821" + +[[package]] +name = "want" +version = "0.3.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bfa7760aed19e106de2c7c0b581b509f2f25d3dacaf737cb82ac61bc6d760b0e" +dependencies = [ + "try-lock", +] + +[[package]] +name = "wasi" +version = "0.11.1+wasi-snapshot-preview1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ccf3ec651a847eb01de73ccad15eb7d99f80485de043efb2f370cd654f4ea44b" + +[[package]] +name = "wasip2" +version = "1.0.4+wasi-0.2.12" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b67efb37e106e55ce722a510d6b5f9c17f083e5fc79afc2badeb12cc313d9487" +dependencies = [ + "wit-bindgen", +] + +[[package]] +name = "wasm-bindgen" +version = "0.2.126" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4b067c0c11094aef6b7a801c1e34a26affafdf3d051dba08456b868789aaf9a4" +dependencies = [ + "cfg-if", + "once_cell", + "rustversion", + "wasm-bindgen-macro", + "wasm-bindgen-shared", +] + +[[package]] +name = "wasm-bindgen-futures" +version = "0.4.76" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c62df1340f32221cb9c54d6a27b030e3dba64361d4a95bed55f9aacb44da291d" +dependencies = [ + "js-sys", + "wasm-bindgen", +] + +[[package]] +name = "wasm-bindgen-macro" +version = "0.2.126" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "167ce5e579f6bcf889c4f7175a8a5a585de84e8ff93976ce393efa5f2837aab1" +dependencies = [ + "quote", + "wasm-bindgen-macro-support", +] + +[[package]] +name = "wasm-bindgen-macro-support" +version = "0.2.126" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f3997c7839262f4ef12cf90b818d6340c18e80f263f1a94bf157d0ec4420380e" +dependencies = [ + "bumpalo", + "proc-macro2", + "quote", + "syn", + "wasm-bindgen-shared", +] + +[[package]] +name = "wasm-bindgen-shared" +version = "0.2.126" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "dc1b4cb0cc549fcf58d7dfc081778139b3d283a081644e833e84682ad71cea24" +dependencies = [ + "unicode-ident", +] + +[[package]] +name = "web-sys" +version = "0.3.103" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8622dcb61c0bcc9fffa6938bed81210af2da9a7e4a1a834b2e37a59b6dfb6141" +dependencies = [ + "js-sys", + "wasm-bindgen", +] + +[[package]] +name = "web-time" +version = "1.1.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "5a6580f308b1fad9207618087a65c04e7a10bc77e02c8e84e9b00dd4b12fa0bb" +dependencies = [ + "js-sys", + "wasm-bindgen", +] + +[[package]] +name = "webpki-roots" +version = "1.0.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "bf85cb06032201fa7c6f829d7db5a7e5aa45bcc0655327713065f6f0576731bf" +dependencies = [ + "rustls-pki-types", +] + +[[package]] +name = "windows-core" +version = "0.62.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b8e83a14d34d0623b51dce9581199302a221863196a1dde71a7663a4c2be9deb" +dependencies = [ + "windows-implement", + "windows-interface", + "windows-link", + "windows-result", + "windows-strings", +] + +[[package]] +name = "windows-implement" +version = "0.60.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "053e2e040ab57b9dc951b72c264860db7eb3b0200ba345b4e4c3b14f67855ddf" +dependencies = [ + "proc-macro2", + "quote", + "syn", +] + +[[package]] +name = "windows-interface" +version = "0.59.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "3f316c4a2570ba26bbec722032c4099d8c8bc095efccdc15688708623367e358" +dependencies = [ + "proc-macro2", + "quote", + "syn", +] + +[[package]] +name = "windows-link" +version = "0.2.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f0805222e57f7521d6a62e36fa9163bc891acd422f971defe97d64e70d0a4fe5" + +[[package]] +name = "windows-result" +version = "0.4.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7781fa89eaf60850ac3d2da7af8e5242a5ea78d1a11c49bf2910bb5a73853eb5" +dependencies = [ + "windows-link", +] + +[[package]] +name = "windows-strings" +version = "0.5.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "7837d08f69c77cf6b07689544538e017c1bfcf57e34b4c0ff58e6c2cd3b37091" +dependencies = [ + "windows-link", +] + +[[package]] +name = "windows-sys" +version = "0.48.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "677d2418bec65e3338edb076e806bc1ec15693c5d0104683f2efe857f61056a9" +dependencies = [ + "windows-targets 0.48.5", +] + +[[package]] +name = "windows-sys" +version = "0.52.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "282be5f36a8ce781fad8c8ae18fa3f9beff57ec1b52cb3de0789201425d9a33d" +dependencies = [ + "windows-targets 0.52.6", +] + +[[package]] +name = "windows-sys" +version = "0.59.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1e38bc4d79ed67fd075bcc251a1c39b32a1776bbe92e5bef1f0bf1f8c531853b" +dependencies = [ + "windows-targets 0.52.6", +] + +[[package]] +name = "windows-sys" +version = "0.60.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "f2f500e4d28234f72040990ec9d39e3a6b950f9f22d3dba18416c35882612bcb" +dependencies = [ + "windows-targets 0.53.5", +] + +[[package]] +name = "windows-sys" +version = "0.61.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ae137229bcbd6cdf0f7b80a31df61766145077ddf49416a728b02cb3921ff3fc" +dependencies = [ + "windows-link", +] + +[[package]] +name = "windows-targets" +version = "0.48.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9a2fa6e2155d7247be68c096456083145c183cbbbc2764150dda45a87197940c" +dependencies = [ + "windows_aarch64_gnullvm 0.48.5", + "windows_aarch64_msvc 0.48.5", + "windows_i686_gnu 0.48.5", + "windows_i686_msvc 0.48.5", + "windows_x86_64_gnu 0.48.5", + "windows_x86_64_gnullvm 0.48.5", + "windows_x86_64_msvc 0.48.5", +] + +[[package]] +name = "windows-targets" +version = "0.52.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9b724f72796e036ab90c1021d4780d4d3d648aca59e491e6b98e725b84e99973" +dependencies = [ + "windows_aarch64_gnullvm 0.52.6", + "windows_aarch64_msvc 0.52.6", + "windows_i686_gnu 0.52.6", + "windows_i686_gnullvm 0.52.6", + "windows_i686_msvc 0.52.6", + "windows_x86_64_gnu 0.52.6", + "windows_x86_64_gnullvm 0.52.6", + "windows_x86_64_msvc 0.52.6", +] + +[[package]] +name = "windows-targets" +version = "0.53.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "4945f9f551b88e0d65f3db0bc25c33b8acea4d9e41163edf90dcd0b19f9069f3" +dependencies = [ + "windows-link", + "windows_aarch64_gnullvm 0.53.1", + "windows_aarch64_msvc 0.53.1", + "windows_i686_gnu 0.53.1", + "windows_i686_gnullvm 0.53.1", + "windows_i686_msvc 0.53.1", + "windows_x86_64_gnu 0.53.1", + "windows_x86_64_gnullvm 0.53.1", + "windows_x86_64_msvc 0.53.1", +] + +[[package]] +name = "windows_aarch64_gnullvm" +version = "0.48.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "2b38e32f0abccf9987a4e3079dfb67dcd799fb61361e53e2882c3cbaf0d905d8" + +[[package]] +name = "windows_aarch64_gnullvm" +version = "0.52.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "32a4622180e7a0ec044bb555404c800bc9fd9ec262ec147edd5989ccd0c02cd3" + +[[package]] +name = "windows_aarch64_gnullvm" +version = "0.53.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a9d8416fa8b42f5c947f8482c43e7d89e73a173cead56d044f6a56104a6d1b53" + +[[package]] +name = "windows_aarch64_msvc" +version = "0.48.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "dc35310971f3b2dbbf3f0690a219f40e2d9afcf64f9ab7cc1be722937c26b4bc" + +[[package]] +name = "windows_aarch64_msvc" +version = "0.52.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "09ec2a7bb152e2252b53fa7803150007879548bc709c039df7627cabbd05d469" + +[[package]] +name = "windows_aarch64_msvc" +version = "0.53.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b9d782e804c2f632e395708e99a94275910eb9100b2114651e04744e9b125006" + +[[package]] +name = "windows_i686_gnu" +version = "0.48.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "a75915e7def60c94dcef72200b9a8e58e5091744960da64ec734a6c6e9b3743e" + +[[package]] +name = "windows_i686_gnu" +version = "0.52.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8e9b5ad5ab802e97eb8e295ac6720e509ee4c243f69d781394014ebfe8bbfa0b" + +[[package]] +name = "windows_i686_gnu" +version = "0.53.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "960e6da069d81e09becb0ca57a65220ddff016ff2d6af6a223cf372a506593a3" + +[[package]] +name = "windows_i686_gnullvm" +version = "0.52.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0eee52d38c090b3caa76c563b86c3a4bd71ef1a819287c19d586d7334ae8ed66" + +[[package]] +name = "windows_i686_gnullvm" +version = "0.53.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "fa7359d10048f68ab8b09fa71c3daccfb0e9b559aed648a8f95469c27057180c" + +[[package]] +name = "windows_i686_msvc" +version = "0.48.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "8f55c233f70c4b27f66c523580f78f1004e8b5a8b659e05a4eb49d4166cca406" + +[[package]] +name = "windows_i686_msvc" +version = "0.52.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "240948bc05c5e7c6dabba28bf89d89ffce3e303022809e73deaefe4f6ec56c66" + +[[package]] +name = "windows_i686_msvc" +version = "0.53.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1e7ac75179f18232fe9c285163565a57ef8d3c89254a30685b57d83a38d326c2" + +[[package]] +name = "windows_x86_64_gnu" +version = "0.48.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "53d40abd2583d23e4718fddf1ebec84dbff8381c07cae67ff7768bbf19c6718e" + +[[package]] +name = "windows_x86_64_gnu" +version = "0.52.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "147a5c80aabfbf0c7d901cb5895d1de30ef2907eb21fbbab29ca94c5b08b1a78" + +[[package]] +name = "windows_x86_64_gnu" +version = "0.53.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "9c3842cdd74a865a8066ab39c8a7a473c0778a3f29370b5fd6b4b9aa7df4a499" + +[[package]] +name = "windows_x86_64_gnullvm" +version = "0.48.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0b7b52767868a23d5bab768e390dc5f5c55825b6d30b86c844ff2dc7414044cc" + +[[package]] +name = "windows_x86_64_gnullvm" +version = "0.52.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "24d5b23dc417412679681396f2b49f3de8c1473deb516bd34410872eff51ed0d" + +[[package]] +name = "windows_x86_64_gnullvm" +version = "0.53.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0ffa179e2d07eee8ad8f57493436566c7cc30ac536a3379fdf008f47f6bb7ae1" + +[[package]] +name = "windows_x86_64_msvc" +version = "0.48.5" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ed94fce61571a4006852b7389a063ab983c02eb1bb37b47f8272ce92d06d9538" + +[[package]] +name = "windows_x86_64_msvc" +version = "0.52.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "589f6da84c646204747d1270a2a5661ea66ed1cced2631d546fdfb155959f9ec" + +[[package]] +name = "windows_x86_64_msvc" +version = "0.53.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "d6bbff5f0aada427a1e5a6da5f1f98158182f26556f345ac9e04d36d0ebed650" + +[[package]] +name = "wit-bindgen" +version = "0.57.1" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1ebf944e87a7c253233ad6766e082e3cd714b5d03812acc24c318f549614536e" + +[[package]] +name = "writeable" +version = "0.6.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1ffae5123b2d3fc086436f8834ae3ab053a283cfac8fe0a0b8eaae044768a4c4" + +[[package]] +name = "yoke" +version = "0.8.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "709fe23a0424b6a435d82152b1bd3fdfb0833487d5fa90d05d42762a9891fef5" +dependencies = [ + "stable_deref_trait", + "yoke-derive", + "zerofrom", +] + +[[package]] +name = "yoke-derive" +version = "0.8.2" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "de844c262c8848816172cef550288e7dc6c7b7814b4ee56b3e1553f275f1858e" +dependencies = [ + "proc-macro2", + "quote", + "syn", + "synstructure", +] + +[[package]] +name = "zerocopy" +version = "0.8.52" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "ce1022995ff5ff5d841ad7d994facc23098cd40152f2c1d11cd607c6f530653f" +dependencies = [ + "zerocopy-derive", +] + +[[package]] +name = "zerocopy-derive" +version = "0.8.52" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "1ae7f38b72ec2a254e2b87ef277cf2cd4fb97cbebf944faa6f33354da0867930" +dependencies = [ + "proc-macro2", + "quote", + "syn", +] + +[[package]] +name = "zerofrom" +version = "0.1.8" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0ec05a11813ea801ff6d75110ad09cd0824ddba17dfe17128ea0d5f68e6c5272" +dependencies = [ + "zerofrom-derive", +] + +[[package]] +name = "zerofrom-derive" +version = "0.1.7" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "11532158c46691caf0f2593ea8358fed6bbf68a0315e80aae9bd41fbade684a1" +dependencies = [ + "proc-macro2", + "quote", + "syn", + "synstructure", +] + +[[package]] +name = "zeroize" +version = "1.9.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "e13c156562582aa81c60cb29407084cdb54c4164760106ab78e6c5b0858cf64e" + +[[package]] +name = "zerotrie" +version = "0.2.4" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "0f9152d31db0792fa83f70fb2f83148effb5c1f5b8c7686c3459e361d9bc20bf" +dependencies = [ + "displaydoc", + "yoke", + "zerofrom", +] + +[[package]] +name = "zerovec" +version = "0.11.6" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "90f911cbc359ab6af17377d242225f4d75119aec87ea711a880987b18cd7b239" +dependencies = [ + "yoke", + "zerofrom", + "zerovec-derive", +] + +[[package]] +name = "zerovec-derive" +version = "0.11.3" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "625dc425cab0dca6dc3c3319506e6593dcb08a9f387ea3b284dbd52a92c40555" +dependencies = [ + "proc-macro2", + "quote", + "syn", +] + +[[package]] +name = "zmij" +version = "1.0.21" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b8848ee67ecc8aedbaf3e4122217aff892639231befc6a1b58d29fff4c2cabaa" diff --git a/Cargo.toml b/Cargo.toml new file mode 100644 index 0000000..3799f09 --- /dev/null +++ b/Cargo.toml @@ -0,0 +1,29 @@ +[package] +name = "npmctl" +version = "0.1.0" +edition = "2021" +description = "CLI för Nginx Proxy Manager (NPM) med en generisk API-klient för framtidssäkring" +authors = ["brasse"] +license = "MIT" +repository = "https://gitea.brasse-pc.eu/brasse/Npm-cli" + +[[bin]] +name = "npmctl" +path = "src/main.rs" + +[dependencies] +clap = { version = "4.5", features = ["derive", "env"] } +reqwest = { version = "0.12", default-features = false, features = ["blocking", "json", "rustls-tls"] } +serde = { version = "1", features = ["derive"] } +serde_json = "1" +rpassword = "7" +dirs = "5" +anyhow = "1" +chrono = { version = "0.4", default-features = false, features = ["clock", "std"] } + +[profile.release] +strip = true +opt-level = "z" +lto = true +codegen-units = 1 +panic = "abort" diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..6f15bfa --- /dev/null +++ b/LICENSE @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2026 brasse + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/README.md b/README.md new file mode 100644 index 0000000..be63e32 --- /dev/null +++ b/README.md @@ -0,0 +1,66 @@ +# npmctl + +En liten CLI i Rust för att styra **Nginx Proxy Manager (NPM)** via dess API, +plus en generisk `api`-funktion för att prata med vilket HTTP-API som helst +(framtidssäkring om proxyn byts ut mot t.ex. Caddy/Traefik). + +Autentisering fungerar som `sudo`: kör `npmctl login` **en gång** och skriv +lösenordet i prompten (det når aldrig argv/loggar). En kortlivad token cachas +lokalt (`~/.config/npmctl/session.json`, `0600`) och används tills den går ut — +lösenordet sparas aldrig. + +👉 **Användning och alla kommandon:** se [wiki:n](https://gitea.brasse-pc.eu/brasse/Npm-cli/wiki). + +## Installera (färdig binär) + +Hämta senaste binär från [releases](https://gitea.brasse-pc.eu/brasse/Npm-cli/releases): + +```sh +# välj arkitektur: x64 eller arm64 +curl -fsSL -o npmctl https://gitea.brasse-pc.eu/brasse/Npm-cli/releases/download/latest/npmctl-linux-x64 +chmod +x npmctl && sudo mv npmctl /usr/local/bin/ +npmctl --help +``` + +## Sätt upp projektet (utveckling) + +Krav: [Rust](https://rustup.rs) (stable). + +```sh +git clone https://gitea.brasse-pc.eu/brasse/Npm-cli.git +cd Npm-cli +cargo build --release # binär i target/release/npmctl +cargo run -- --help +``` + +### Bygga till ./build + +I VS Code: **Terminal → Run Build Task** (`Ctrl+Shift+B`) kör tasken +*build (release -> ./build)*, som bygger utanför repo-disken och lägger binären +i `build/npmctl`. Mappen `build/` (och `target/`) är gitignoread. + +Motsvarande manuellt: + +```sh +CARGO_TARGET_DIR="$HOME/.cache/npmctl-target" cargo build --release +mkdir -p build && cp "$HOME/.cache/npmctl-target/release/npmctl" build/npmctl +``` + +## Releaser + +Push till `main` (eller en `v*`-tag) triggar Gitea Actions-workflowen +`.gitea/workflows/release.yaml`, som bygger binärer för **linux-x64** och +**linux-arm64** och laddar upp dem till en release. Runnern använder sin egen +`GITHUB_TOKEN` — ingen token hanteras manuellt. + +## Konfiguration + +| Var | Beskrivning | +|-----|-------------| +| `--base-url` / `NPMCTL_BASE_URL` | NPM:s API-bas, t.ex. `http://127.0.0.1:81`. Standard: `http://127.0.0.1:81`. | +| `~/.config/npmctl/config.json` | Icke-hemligt: `base_url`, `identity`, `idle_timeout`. | +| `~/.config/npmctl/session.json` | Cachad token (`0600`). Skapas av `login`, raderas av `logout`. | + +## Licens + +MIT. diff --git a/src/cli.rs b/src/cli.rs new file mode 100644 index 0000000..5c4731f --- /dev/null +++ b/src/cli.rs @@ -0,0 +1,215 @@ +//! Kommandoradsgränssnitt (clap). + +use clap::{Args, Parser, Subcommand}; +use std::path::PathBuf; + +/// npmctl — styr Nginx Proxy Manager via dess API, plus en generisk +/// `api`-funktion för att prata med vilket HTTP-API som helst. +/// +/// Autentisering fungerar som `sudo`: kör `npmctl login` en gång och skriv +/// lösenordet i prompten (det når aldrig loggar/argv). En kortlivad token +/// cachas sedan lokalt (0600) och används för efterföljande anrop tills den +/// går ut — då ombeds du logga in igen. +#[derive(Parser, Debug)] +#[command( + name = "npmctl", + version, + about = "CLI för Nginx Proxy Manager + generisk API-klient", + long_about = None, + propagate_version = true, + arg_required_else_help = true +)] +pub struct Cli { + /// Bas-URL till NPM (t.ex. http://127.0.0.1:81). Kan även sättas via + /// NPMCTL_BASE_URL eller i konfigfilen. Standard: http://127.0.0.1:81 + #[arg(long, global = true, env = "NPMCTL_BASE_URL")] + pub base_url: Option, + + /// Alternativ sökväg till konfig-/sessionskatalog. + #[arg(long, global = true)] + pub config_dir: Option, + + /// Mer utförlig utskrift (visar HTTP-status m.m.). + #[arg(short, long, global = true)] + pub verbose: bool, + + #[command(subcommand)] + pub command: Command, +} + +#[derive(Subcommand, Debug)] +pub enum Command { + /// Logga in mot NPM och cacha en token (frågar efter lösenord). + Login(LoginArgs), + /// Radera den cachade sessionen. + Logout, + /// Visa inloggningsstatus, token-utgång och bas-URL. + Status, + + /// Lista alla proxy hosts. + #[command(visible_alias = "hosts")] + ListHosts, + /// Visa en proxy host (JSON) via id. + GetHost { + /// Proxy host-id. + id: i64, + }, + /// Sök proxy hosts på domännamn (delsträng). + Find { + /// Söksträng, matchas mot domännamn. + query: String, + }, + /// Skapa en proxy host (och valfritt ett Let's Encrypt-cert). + AddProxy(AddProxyArgs), + /// Aktivera en proxy host. + EnableHost { + id: i64, + }, + /// Inaktivera en proxy host. + DisableHost { + id: i64, + }, + /// Ta bort en proxy host. + DeleteHost { + id: i64, + }, + + /// Lista alla certifikat. + ListCerts, + /// Begär ett nytt Let's Encrypt-cert. + AddCert(AddCertArgs), + /// Förnya ett certifikat via id. + RenewCert { + id: i64, + }, + + /// Exportera alla proxy hosts (+ cert-meta) till JSON (git-vänlig backup). + Dump(DumpArgs), + /// Skapa/uppdatera proxy hosts utifrån en JSON-fil (deklarativt). + Apply(ApplyArgs), + + /// Generisk HTTP-förfrågan mot vilket API som helst (curl-liknande). + Api(ApiArgs), +} + +#[derive(Args, Debug)] +pub struct LoginArgs { + /// Användarnamn/e-post. Sparas (icke-hemligt) så du bara behöver ange det en gång. + #[arg(long)] + pub identity: Option, + /// Läs lösenordet från stdin i stället för interaktiv prompt (för skript). + #[arg(long)] + pub password_stdin: bool, + /// Kräv ny inloggning om sessionen varit oanvänd längre än så här (sekunder). 0 = av. + #[arg(long)] + pub idle_timeout: Option, +} + +#[derive(Args, Debug)] +pub struct AddProxyArgs { + /// Domännamn (kan anges flera gånger). + #[arg(long = "domain", required = true)] + pub domains: Vec, + /// Container/host att vidarebefordra till (t.ex. vaultwarden). + #[arg(long)] + pub forward_host: String, + /// Intern port hos target. + #[arg(long)] + pub forward_port: u16, + /// Schema mot target. + #[arg(long, default_value = "http", value_parser = ["http", "https"])] + pub forward_scheme: String, + /// Tillåt websocket-uppgradering. + #[arg(long)] + pub websockets: bool, + /// Blockera vanliga exploits. + #[arg(long)] + pub block_exploits: bool, + /// Aktivera asset-caching. + #[arg(long)] + pub cache_assets: bool, + /// Begär ett nytt Let's Encrypt-cert och koppla det till hosten. + #[arg(long)] + pub ssl: bool, + /// Tvinga HTTPS (kräver --ssl eller --certificate-id). + #[arg(long)] + pub force_ssl: bool, + /// Aktivera HTTP/2. + #[arg(long)] + pub http2: bool, + /// Aktivera HSTS. + #[arg(long)] + pub hsts: bool, + /// E-post för Let's Encrypt (krävs med --ssl). + #[arg(long)] + pub letsencrypt_email: Option, + /// Använd ett befintligt cert-id i stället för att begära nytt. + #[arg(long)] + pub certificate_id: Option, + /// Fri avancerad nginx-config. + #[arg(long)] + pub advanced_config: Option, +} + +#[derive(Args, Debug)] +pub struct AddCertArgs { + /// Domännamn för certet (kan anges flera gånger). + #[arg(long = "domain", required = true)] + pub domains: Vec, + /// E-post för Let's Encrypt. + #[arg(long)] + pub letsencrypt_email: String, +} + +#[derive(Args, Debug)] +pub struct DumpArgs { + /// Skriv till fil i stället för stdout. + #[arg(long, short)] + pub out: Option, +} + +#[derive(Args, Debug)] +pub struct ApplyArgs { + /// JSON-fil att läsa (format från `dump`). + #[arg(long, short)] + pub file: PathBuf, + /// Visa vad som skulle göras utan att ändra något. + #[arg(long)] + pub dry_run: bool, +} + +#[derive(Args, Debug)] +pub struct ApiArgs { + /// HTTP-metod. + #[arg(short = 'X', long, default_value = "GET")] + pub method: String, + /// URL, eller en sökväg som läggs på bas-URL:en (om den börjar med /). + pub url: String, + /// Header "Key: Value" (kan anges flera gånger). + #[arg(short = 'H', long = "header")] + pub headers: Vec, + /// Request-body (rå sträng). + #[arg(short = 'd', long)] + pub data: Option, + /// Läs request-body från fil. + #[arg(long)] + pub data_file: Option, + /// Query-parameter "key=value" (kan anges flera gånger). + #[arg(short = 'q', long = "query")] + pub query: Vec, + /// Sätt Authorization-header med denna nyckel (t.ex. en API-nyckel). + #[arg(long)] + pub auth_key: Option, + /// Schema för --auth-key: "bearer" (Bearer ), "token" (token ) eller "raw". + #[arg(long, default_value = "bearer", value_parser = ["bearer", "token", "raw"])] + pub auth_scheme: String, + /// Använd den cachade NPM-sessionens token som Authorization: Bearer. + #[arg(long)] + pub use_session: bool, + /// Hoppa över TLS-certverifiering (som curl -k). + #[arg(short = 'k', long)] + pub insecure: bool, + /// Skriv bara ut svarskroppen (ingen statusrad). + #[arg(long)] + pub raw: bool, +} diff --git a/src/client.rs b/src/client.rs new file mode 100644 index 0000000..c3f66ee --- /dev/null +++ b/src/client.rs @@ -0,0 +1,183 @@ +//! HTTP-lager: en tunn wrapper runt reqwest (blocking) samt en +//! autentiserad NPM-klient som bär bas-URL + token. + +use anyhow::{anyhow, bail, Context, Result}; +use chrono::Utc; +use reqwest::blocking::{Client, RequestBuilder, Response}; +use reqwest::Method; +use serde_json::Value; +use std::time::Duration; + +use crate::config::{parse_rfc3339, Config, Paths}; + +/// Bygg en reqwest blocking-klient. +pub fn build_client(insecure: bool) -> Result { + let mut b = Client::builder() + .user_agent(concat!("npmctl/", env!("CARGO_PKG_VERSION"))) + .timeout(Duration::from_secs(60)); + if insecure { + b = b.danger_accept_invalid_certs(true); + } + b.build().context("kunde inte bygga HTTP-klient") +} + +/// Slå ihop bas-URL + path till en full URL. +pub fn join_url(base: &str, path: &str) -> String { + if path.starts_with("http://") || path.starts_with("https://") { + return path.to_string(); + } + let base = base.trim_end_matches('/'); + if path.starts_with('/') { + format!("{base}{path}") + } else { + format!("{base}/{path}") + } +} + +/// Autentiserad klient mot NPM:s API (`/api`). +pub struct NpmClient { + http: Client, + base_url: String, + token: String, + verbose: bool, +} + +impl NpmClient { + /// Bygg en klient från en giltig session, med refresh + idle-kontroll. + /// Anropas av alla kommandon som kräver auth. + pub fn from_session(paths: &Paths, cfg: &Config, base_url: &str, verbose: bool) -> Result { + let mut session = paths.load_session().ok_or_else(|| { + anyhow!("ingen aktiv session — kör `npmctl login` först") + })?; + + let now = Utc::now(); + + // Hård utgång från NPM-token. + if let Some(exp) = parse_rfc3339(&session.expires) { + if now >= exp { + paths.clear_session().ok(); + bail!("sessionen har gått ut — kör `npmctl login` igen"); + } + } + + // Idle-timeout (sudo-likt): för länge sedan senaste anrop -> kräv ny login. + if let Some(idle) = cfg.idle_timeout.filter(|v| *v > 0) { + if let Some(last) = session.last_used.as_deref().and_then(parse_rfc3339) { + if (now - last).num_seconds() as u64 > idle { + paths.clear_session().ok(); + bail!("sessionen inaktiv för länge ({idle}s) — kör `npmctl login` igen"); + } + } + } + + let http = build_client(false)?; + + // Proaktiv refresh om mindre än en timme kvar. + if let Some(exp) = parse_rfc3339(&session.expires) { + if (exp - now).num_seconds() < 3600 { + if let Ok(new) = refresh_token(&http, base_url, &session.token, verbose) { + session.token = new.0; + session.expires = new.1; + } + } + } + + session.last_used = Some(now.to_rfc3339()); + session.base_url = base_url.to_string(); + paths.save_session(&session).ok(); + + Ok(Self { + http, + base_url: base_url.to_string(), + token: session.token, + verbose, + }) + } + + fn api(&self, path: &str) -> String { + join_url(&self.base_url, &format!("/api{path}")) + } + + fn send(&self, req: RequestBuilder) -> Result<(u16, Value)> { + let resp = req + .bearer_auth(&self.token) + .send() + .context("HTTP-anrop misslyckades")?; + read_json(resp, self.verbose) + } + + pub fn get(&self, path: &str) -> Result<(u16, Value)> { + self.send(self.http.get(self.api(path))) + } + pub fn post(&self, path: &str, body: &Value) -> Result<(u16, Value)> { + self.send(self.http.post(self.api(path)).json(body)) + } + pub fn put(&self, path: &str, body: &Value) -> Result<(u16, Value)> { + self.send(self.http.put(self.api(path)).json(body)) + } + pub fn delete(&self, path: &str) -> Result<(u16, Value)> { + self.send(self.http.delete(self.api(path))) + } +} + +/// Läs ett svar som (status, JSON). Om kroppen inte är JSON packas den som en sträng. +pub fn read_json(resp: Response, verbose: bool) -> Result<(u16, Value)> { + let status = resp.status().as_u16(); + let text = resp.text().unwrap_or_default(); + if verbose { + eprintln!("<- HTTP {status}"); + } + let val = serde_json::from_str::(&text).unwrap_or(Value::String(text)); + Ok((status, val)) +} + +/// Byt användarnamn+lösen mot en token. Returnerar (token, expires). +pub fn login_request( + http: &Client, + base_url: &str, + identity: &str, + secret: &str, +) -> Result<(String, String)> { + let url = join_url(base_url, "/api/tokens"); + let body = serde_json::json!({ "identity": identity, "secret": secret }); + let resp = http.post(&url).json(&body).send().context("login-anrop misslyckades")?; + let (status, val) = read_json(resp, false)?; + if status != 200 { + bail!("inloggning nekades (HTTP {status}): {}", short(&val)); + } + let token = val["token"].as_str().context("saknar token i svaret")?.to_string(); + let expires = val["expires"].as_str().unwrap_or_default().to_string(); + Ok((token, expires)) +} + +/// Förnya en token via GET /api/tokens. +pub fn refresh_token( + http: &Client, + base_url: &str, + token: &str, + verbose: bool, +) -> Result<(String, String)> { + let url = join_url(base_url, "/api/tokens"); + let resp = http.get(&url).bearer_auth(token).send()?; + let (status, val) = read_json(resp, verbose)?; + if status != 200 { + bail!("kunde inte förnya token (HTTP {status})"); + } + let new = val["token"].as_str().context("saknar token")?.to_string(); + let expires = val["expires"].as_str().unwrap_or_default().to_string(); + Ok((new, expires)) +} + +fn short(v: &Value) -> String { + let s = v.to_string(); + if s.len() > 200 { + format!("{}…", &s[..200]) + } else { + s + } +} + +/// Hjälpare för att bygga en godtycklig metod från sträng. +pub fn parse_method(s: &str) -> Result { + Method::from_bytes(s.to_uppercase().as_bytes()).map_err(|_| anyhow!("ogiltig HTTP-metod: {s}")) +} diff --git a/src/config.rs b/src/config.rs new file mode 100644 index 0000000..e920825 --- /dev/null +++ b/src/config.rs @@ -0,0 +1,129 @@ +//! Konfig och session (token-cache). Lösenord sparas ALDRIG — bara den +//! kortlivade token, precis som sudo cachar en capability, inte ditt lösen. + +use anyhow::{Context, Result}; +use chrono::{DateTime, Utc}; +use serde::{Deserialize, Serialize}; +use std::fs; +use std::path::PathBuf; + +pub const DEFAULT_BASE_URL: &str = "http://127.0.0.1:81"; + +/// Icke-hemlig konfig. +#[derive(Debug, Default, Serialize, Deserialize)] +pub struct Config { + #[serde(skip_serializing_if = "Option::is_none")] + pub base_url: Option, + #[serde(skip_serializing_if = "Option::is_none")] + pub identity: Option, + /// Idle-timeout i sekunder (0/utelämnad = av). + #[serde(skip_serializing_if = "Option::is_none")] + pub idle_timeout: Option, +} + +/// Cachad session. Ligger i en 0600-fil. +#[derive(Debug, Serialize, Deserialize)] +pub struct Session { + pub token: String, + pub expires: String, + pub base_url: String, + /// RFC3339 för senaste användning (för idle-timeout). + #[serde(default)] + pub last_used: Option, +} + +/// Håller reda på var konfig/session bor. +pub struct Paths { + pub dir: PathBuf, +} + +impl Paths { + pub fn new(override_dir: Option) -> Result { + let dir = match override_dir { + Some(d) => d, + None => dirs::config_dir() + .context("kunde inte hitta konfigkatalog")? + .join("npmctl"), + }; + Ok(Self { dir }) + } + + pub fn config_file(&self) -> PathBuf { + self.dir.join("config.json") + } + pub fn session_file(&self) -> PathBuf { + self.dir.join("session.json") + } + + pub fn ensure_dir(&self) -> Result<()> { + fs::create_dir_all(&self.dir) + .with_context(|| format!("kunde inte skapa {}", self.dir.display()))?; + Ok(()) + } + + pub fn load_config(&self) -> Config { + fs::read_to_string(self.config_file()) + .ok() + .and_then(|s| serde_json::from_str(&s).ok()) + .unwrap_or_default() + } + + pub fn save_config(&self, cfg: &Config) -> Result<()> { + self.ensure_dir()?; + let s = serde_json::to_string_pretty(cfg)?; + fs::write(self.config_file(), s)?; + Ok(()) + } + + pub fn load_session(&self) -> Option { + fs::read_to_string(self.session_file()) + .ok() + .and_then(|s| serde_json::from_str(&s).ok()) + } + + pub fn save_session(&self, s: &Session) -> Result<()> { + self.ensure_dir()?; + let path = self.session_file(); + let json = serde_json::to_string_pretty(s)?; + fs::write(&path, json)?; + set_owner_only(&path)?; + Ok(()) + } + + pub fn clear_session(&self) -> Result<()> { + let path = self.session_file(); + if path.exists() { + fs::remove_file(&path)?; + } + Ok(()) + } +} + +/// Sätt filrättigheter till 0600 (endast ägaren). +#[cfg(unix)] +fn set_owner_only(path: &std::path::Path) -> Result<()> { + use std::os::unix::fs::PermissionsExt; + let mut perms = fs::metadata(path)?.permissions(); + perms.set_mode(0o600); + fs::set_permissions(path, perms)?; + Ok(()) +} + +#[cfg(not(unix))] +fn set_owner_only(_path: &std::path::Path) -> Result<()> { + Ok(()) +} + +/// Räkna ut vilken bas-URL som gäller: flagga/env > konfig > default. +pub fn resolve_base_url(cli_base: &Option, cfg: &Config) -> String { + cli_base + .clone() + .or_else(|| cfg.base_url.clone()) + .unwrap_or_else(|| DEFAULT_BASE_URL.to_string()) +} + +pub fn parse_rfc3339(s: &str) -> Option> { + DateTime::parse_from_rfc3339(s) + .ok() + .map(|dt| dt.with_timezone(&Utc)) +} diff --git a/src/generic.rs b/src/generic.rs new file mode 100644 index 0000000..b9c16c6 --- /dev/null +++ b/src/generic.rs @@ -0,0 +1,89 @@ +//! Generisk `api`-funktion: prata med vilket HTTP-API som helst. +//! Framtidssäkrar verktyget — fungerar även om vi byter från NPM till +//! t.ex. Caddy/Traefik, eller mot vilken tjänst som helst. + +use anyhow::{bail, Context, Result}; +use reqwest::header::{HeaderName, HeaderValue}; + +use crate::cli::ApiArgs; +use crate::client::{build_client, join_url, parse_method, read_json}; +use crate::config::Paths; + +pub fn run(paths: &Paths, base_url: &str, args: &ApiArgs, verbose: bool) -> Result<()> { + let http = build_client(args.insecure)?; + let method = parse_method(&args.method)?; + let url = join_url(base_url, &args.url); + + let mut req = http.request(method, &url); + + // Query-parametrar. + let mut pairs: Vec<(String, String)> = Vec::new(); + for q in &args.query { + let (k, v) = q.split_once('=').context("--query måste vara key=value")?; + pairs.push((k.to_string(), v.to_string())); + } + if !pairs.is_empty() { + req = req.query(&pairs); + } + + // Headers. + for h in &args.headers { + let (k, v) = h.split_once(':').context("--header måste vara \"Key: Value\"")?; + let name = HeaderName::from_bytes(k.trim().as_bytes()).context("ogiltigt headernamn")?; + let val = HeaderValue::from_str(v.trim()).context("ogiltigt headervärde")?; + req = req.header(name, val); + } + + // Auth: antingen sessionens token, eller en explicit nyckel. + if args.use_session { + let s = paths + .load_session() + .context("--use-session men ingen aktiv session (kör `npmctl login`)")?; + req = req.bearer_auth(s.token); + } else if let Some(key) = &args.auth_key { + let header_val = match args.auth_scheme.as_str() { + "bearer" => format!("Bearer {key}"), + "token" => format!("token {key}"), + _ => key.clone(), + }; + req = req.header("Authorization", HeaderValue::from_str(&header_val)?); + } + + // Body. + let body = match (&args.data, &args.data_file) { + (Some(_), Some(_)) => bail!("ange antingen --data eller --data-file, inte båda"), + (Some(d), None) => Some(d.clone()), + (None, Some(f)) => Some(std::fs::read_to_string(f).with_context(|| format!("kunde inte läsa {}", f.display()))?), + (None, None) => None, + }; + if let Some(b) = body { + // Sätt JSON-content-type om inget angetts och kroppen ser ut som JSON. + if !args.headers.iter().any(|h| h.to_lowercase().starts_with("content-type")) { + let trimmed = b.trim_start(); + if trimmed.starts_with('{') || trimmed.starts_with('[') { + req = req.header("Content-Type", "application/json"); + } + } + req = req.body(b); + } + + if verbose { + eprintln!("-> {} {}", args.method.to_uppercase(), url); + } + + let resp = req.send().context("HTTP-anrop misslyckades")?; + let (status, val) = read_json(resp, verbose)?; + + let pretty = serde_json::to_string_pretty(&val).unwrap_or_else(|_| val.to_string()); + if args.raw { + println!("{pretty}"); + } else { + println!("HTTP {status}"); + println!("{pretty}"); + } + + if !(200..300).contains(&status) { + std::process::exit(1); + } + Ok(()) +} diff --git a/src/main.rs b/src/main.rs new file mode 100644 index 0000000..4ebbece --- /dev/null +++ b/src/main.rs @@ -0,0 +1,76 @@ +//! npmctl — CLI för Nginx Proxy Manager med en generisk API-klient. + +mod cli; +mod client; +mod config; +mod generic; +mod npm; + +use clap::error::ErrorKind; +use clap::{CommandFactory, Parser}; + +use cli::{Cli, Command}; +use client::NpmClient; +use config::{resolve_base_url, Paths}; + +fn main() { + // Egen parse-hantering: vid felaktig input skriver vi ut hjälpen + // (utöver felmeddelandet), enligt önskemål. --help/--version skrivs ut normalt. + let cli = match Cli::try_parse() { + Ok(c) => c, + Err(e) => match e.kind() { + ErrorKind::DisplayHelp | ErrorKind::DisplayVersion | ErrorKind::DisplayHelpOnMissingArgumentOrSubcommand => { + print!("{e}"); + std::process::exit(0); + } + _ => { + eprintln!("{e}\n"); + Cli::command().print_long_help().ok(); + std::process::exit(2); + } + }, + }; + + if let Err(err) = run(cli) { + eprintln!("fel: {err:#}"); + std::process::exit(1); + } +} + +fn run(cli: Cli) -> anyhow::Result<()> { + let paths = Paths::new(cli.config_dir.clone())?; + let cfg = paths.load_config(); + let base_url = resolve_base_url(&cli.base_url, &cfg); + let verbose = cli.verbose; + + // Hjälpare: bygg en autentiserad NPM-klient. + let auth = |v: bool| NpmClient::from_session(&paths, &cfg, &base_url, v); + + match &cli.command { + // --- session --- + Command::Login(args) => npm::login(&paths, cfg, &base_url, args), + Command::Logout => npm::logout(&paths), + Command::Status => npm::status(&paths, &cfg, &base_url), + + // --- proxy hosts --- + Command::ListHosts => npm::list_hosts(&auth(verbose)?), + Command::GetHost { id } => npm::get_host(&auth(verbose)?, *id), + Command::Find { query } => npm::find(&auth(verbose)?, query), + Command::AddProxy(args) => npm::add_proxy(&auth(verbose)?, args), + Command::EnableHost { id } => npm::set_host_enabled(&auth(verbose)?, *id, true), + Command::DisableHost { id } => npm::set_host_enabled(&auth(verbose)?, *id, false), + Command::DeleteHost { id } => npm::delete_host(&auth(verbose)?, *id), + + // --- certifikat --- + Command::ListCerts => npm::list_certs(&auth(verbose)?), + Command::AddCert(args) => npm::add_cert(&auth(verbose)?, args), + Command::RenewCert { id } => npm::renew_cert(&auth(verbose)?, *id), + + // --- backup/deklarativt --- + Command::Dump(args) => npm::dump(&auth(verbose)?, args), + Command::Apply(args) => npm::apply(&auth(verbose)?, args), + + // --- generisk --- + Command::Api(args) => generic::run(&paths, &base_url, args, verbose), + } +} diff --git a/src/npm.rs b/src/npm.rs new file mode 100644 index 0000000..bbb52c7 --- /dev/null +++ b/src/npm.rs @@ -0,0 +1,378 @@ +//! Implementering av NPM-kommandona. + +use anyhow::{bail, Context, Result}; +use chrono::Utc; +use serde_json::{json, Value}; +use std::io::{self, Write}; + +use crate::cli::{AddCertArgs, AddProxyArgs, ApplyArgs, DumpArgs, LoginArgs}; +use crate::client::{build_client, login_request, NpmClient}; +use crate::config::{parse_rfc3339, Config, Paths, Session}; + +/// `login` — fråga efter lösenord, byt mot token, cacha sessionen. +pub fn login(paths: &Paths, mut cfg: Config, base_url: &str, args: &LoginArgs) -> Result<()> { + // Identitet: flagga > konfig > prompt. + let identity = match &args.identity { + Some(i) => i.clone(), + None => match &cfg.identity { + Some(i) => i.clone(), + None => prompt_line("Användarnamn/e-post: ")?, + }, + }; + + let secret = if args.password_stdin { + let mut s = String::new(); + io::stdin().read_line(&mut s)?; + s.trim_end_matches(['\n', '\r']).to_string() + } else { + // Läses utan eko och skickas aldrig via argv — når aldrig loggar. + rpassword::prompt_password(format!("Lösenord för {identity}: "))? + }; + + let http = build_client(false)?; + let (token, expires) = login_request(&http, base_url, &identity, &secret)?; + + let session = Session { + token, + expires: expires.clone(), + base_url: base_url.to_string(), + last_used: Some(Utc::now().to_rfc3339()), + }; + paths.save_session(&session)?; + + // Spara icke-hemlig konfig så nästa login bara behöver lösenordet. + cfg.identity = Some(identity); + cfg.base_url.get_or_insert_with(|| base_url.to_string()); + if let Some(t) = args.idle_timeout { + cfg.idle_timeout = Some(t); + } + paths.save_config(&cfg)?; + + println!("Inloggad. Token giltig till {}.", if expires.is_empty() { "?".into() } else { expires }); + Ok(()) +} + +/// `logout` — radera sessionen. +pub fn logout(paths: &Paths) -> Result<()> { + paths.clear_session()?; + println!("Utloggad (session raderad)."); + Ok(()) +} + +/// `status` — visa inloggningsläge. +pub fn status(paths: &Paths, cfg: &Config, base_url: &str) -> Result<()> { + println!("Bas-URL: {base_url}"); + if let Some(id) = &cfg.identity { + println!("Identitet: {id}"); + } + match paths.load_session() { + None => println!("Status: inte inloggad (kör `npmctl login`)"), + Some(s) => { + print!("Status: inloggad"); + if let Some(exp) = parse_rfc3339(&s.expires) { + let left = (exp - Utc::now()).num_minutes(); + if left > 0 { + println!(" — token går ut om {left} min ({})", s.expires); + } else { + println!(" — token UTGÅNGEN ({})", s.expires); + } + } else { + println!(); + } + if let Some(idle) = cfg.idle_timeout.filter(|v| *v > 0) { + println!("Idle-timeout: {idle}s"); + } + } + } + Ok(()) +} + +/// `list-hosts` +pub fn list_hosts(c: &NpmClient) -> Result<()> { + let (st, v) = c.get("/nginx/proxy-hosts")?; + ensure_ok(st, &v)?; + print_hosts_table(v.as_array().map(|a| a.as_slice()).unwrap_or(&[])); + Ok(()) +} + +/// `get-host ` +pub fn get_host(c: &NpmClient, id: i64) -> Result<()> { + let (st, v) = c.get(&format!("/nginx/proxy-hosts/{id}"))?; + ensure_ok(st, &v)?; + println!("{}", serde_json::to_string_pretty(&v)?); + Ok(()) +} + +/// `find ` +pub fn find(c: &NpmClient, query: &str) -> Result<()> { + let (st, v) = c.get("/nginx/proxy-hosts")?; + ensure_ok(st, &v)?; + let q = query.to_lowercase(); + let matches: Vec = v + .as_array() + .map(|a| { + a.iter() + .filter(|h| { + h["domain_names"] + .as_array() + .map(|ds| ds.iter().any(|d| d.as_str().unwrap_or("").to_lowercase().contains(&q))) + .unwrap_or(false) + }) + .cloned() + .collect() + }) + .unwrap_or_default(); + if matches.is_empty() { + println!("Inga proxy hosts matchar \"{query}\"."); + } else { + print_hosts_table(&matches); + } + Ok(()) +} + +/// `add-proxy` +pub fn add_proxy(c: &NpmClient, args: &AddProxyArgs) -> Result<()> { + // Steg 1: ev. begär certifikat. + let mut cert_id = args.certificate_id.unwrap_or(0); + if args.ssl && args.certificate_id.is_none() { + let email = args + .letsencrypt_email + .as_deref() + .context("--ssl kräver --letsencrypt-email")?; + println!("Begär Let's Encrypt-cert för {:?} …", args.domains); + cert_id = request_cert(c, &args.domains, email)?; + println!("Cert skapat (id {cert_id})."); + } + + let force_ssl = args.force_ssl || args.ssl; + if force_ssl && cert_id == 0 { + bail!("--force-ssl kräver ett cert (använd --ssl eller --certificate-id)"); + } + + let body = json!({ + "domain_names": args.domains, + "forward_scheme": args.forward_scheme, + "forward_host": args.forward_host, + "forward_port": args.forward_port, + "access_list_id": 0, + "certificate_id": cert_id, + "ssl_forced": force_ssl, + "http2_support": args.http2, + "hsts_enabled": args.hsts, + "hsts_subdomains": false, + "caching_enabled": args.cache_assets, + "block_exploits": args.block_exploits, + "advanced_config": args.advanced_config.clone().unwrap_or_default(), + "allow_websocket_upgrade": args.websockets, + "meta": { "letsencrypt_agree": true, "dns_challenge": false }, + "locations": [] + }); + + let (st, v) = c.post("/nginx/proxy-hosts", &body)?; + ensure_ok(st, &v)?; + println!( + "Proxy host skapad (id {}) för {:?} -> {}:{}", + v["id"], args.domains, args.forward_host, args.forward_port + ); + Ok(()) +} + +fn request_cert(c: &NpmClient, domains: &[String], email: &str) -> Result { + let body = json!({ + "provider": "letsencrypt", + "domain_names": domains, + "meta": { "letsencrypt_email": email, "letsencrypt_agree": true, "dns_challenge": false } + }); + let (st, v) = c.post("/nginx/certificates", &body)?; + ensure_ok(st, &v)?; + v["id"].as_i64().context("saknar cert-id i svaret") +} + +/// `enable-host` / `disable-host` +pub fn set_host_enabled(c: &NpmClient, id: i64, enabled: bool) -> Result<()> { + let verb = if enabled { "enable" } else { "disable" }; + let (st, v) = c.post(&format!("/nginx/proxy-hosts/{id}/{verb}"), &json!({}))?; + ensure_ok(st, &v)?; + println!("Host {id} {}.", if enabled { "aktiverad" } else { "inaktiverad" }); + Ok(()) +} + +/// `delete-host` +pub fn delete_host(c: &NpmClient, id: i64) -> Result<()> { + let (st, v) = c.delete(&format!("/nginx/proxy-hosts/{id}"))?; + ensure_ok(st, &v)?; + println!("Host {id} borttagen."); + Ok(()) +} + +/// `list-certs` +pub fn list_certs(c: &NpmClient) -> Result<()> { + let (st, v) = c.get("/nginx/certificates")?; + ensure_ok(st, &v)?; + let empty = vec![]; + let arr = v.as_array().unwrap_or(&empty); + println!("{:<5} {:<12} {:<35} {}", "ID", "PROVIDER", "NAMN", "GÅR UT"); + for cert in arr { + println!( + "{:<5} {:<12} {:<35} {}", + cert["id"], + cert["provider"].as_str().unwrap_or("-"), + cert["nice_name"].as_str().unwrap_or("-"), + cert["expires_on"].as_str().unwrap_or("-") + ); + } + Ok(()) +} + +/// `add-cert` +pub fn add_cert(c: &NpmClient, args: &AddCertArgs) -> Result<()> { + let id = request_cert(c, &args.domains, &args.letsencrypt_email)?; + println!("Cert skapat (id {id}) för {:?}.", args.domains); + Ok(()) +} + +/// `renew-cert` +pub fn renew_cert(c: &NpmClient, id: i64) -> Result<()> { + let (st, v) = c.post(&format!("/nginx/certificates/{id}/renew"), &json!({}))?; + ensure_ok(st, &v)?; + println!("Cert {id} förnyat."); + Ok(()) +} + +/// `dump` — exportera hosts + cert-meta till JSON. +pub fn dump(c: &NpmClient, args: &DumpArgs) -> Result<()> { + let (sh, hosts) = c.get("/nginx/proxy-hosts")?; + ensure_ok(sh, &hosts)?; + let (sc, certs) = c.get("/nginx/certificates")?; + ensure_ok(sc, &certs)?; + + let out = json!({ + "version": 1, + "exported_at": Utc::now().to_rfc3339(), + "proxy_hosts": hosts, + "certificates": certs, + }); + let text = serde_json::to_string_pretty(&out)?; + match &args.out { + Some(path) => { + std::fs::write(path, &text)?; + println!("Skrev {} proxy hosts till {}", hosts.as_array().map(|a| a.len()).unwrap_or(0), path.display()); + } + None => println!("{text}"), + } + Ok(()) +} + +/// `apply` — skapa/uppdatera proxy hosts utifrån en dump-fil. +pub fn apply(c: &NpmClient, args: &ApplyArgs) -> Result<()> { + let text = std::fs::read_to_string(&args.file) + .with_context(|| format!("kunde inte läsa {}", args.file.display()))?; + let doc: Value = serde_json::from_str(&text).context("ogiltig JSON")?; + let desired = doc["proxy_hosts"].as_array().context("saknar proxy_hosts i filen")?; + + // Hämta nuvarande hosts för att matcha på domän. + let (st, current) = c.get("/nginx/proxy-hosts")?; + ensure_ok(st, ¤t)?; + let current = current.as_array().cloned().unwrap_or_default(); + + for host in desired { + let domains: Vec = host["domain_names"] + .as_array() + .map(|a| a.iter().filter_map(|d| d.as_str().map(String::from)).collect()) + .unwrap_or_default(); + if domains.is_empty() { + continue; + } + let existing_id = current.iter().find_map(|h| { + let hd: Vec<&str> = h["domain_names"].as_array().map(|a| a.iter().filter_map(|d| d.as_str()).collect()).unwrap_or_default(); + if hd.iter().any(|d| domains.iter().any(|dd| dd == d)) { + h["id"].as_i64() + } else { + None + } + }); + + let body = sanitize_host(host); + match existing_id { + Some(id) => { + if args.dry_run { + println!("[dry-run] skulle UPPDATERA host {id} {domains:?}"); + } else { + let (s, v) = c.put(&format!("/nginx/proxy-hosts/{id}"), &body)?; + ensure_ok(s, &v)?; + println!("Uppdaterade host {id} {domains:?}"); + } + } + None => { + if args.dry_run { + println!("[dry-run] skulle SKAPA host {domains:?}"); + } else { + let (s, v) = c.post("/nginx/proxy-hosts", &body)?; + ensure_ok(s, &v)?; + println!("Skapade host {} {domains:?}", v["id"]); + } + } + } + } + Ok(()) +} + +/// Plocka ut bara de fält NPM accepterar vid create/update. +fn sanitize_host(h: &Value) -> Value { + json!({ + "domain_names": h["domain_names"], + "forward_scheme": h["forward_scheme"], + "forward_host": h["forward_host"], + "forward_port": h["forward_port"], + "access_list_id": h.get("access_list_id").cloned().unwrap_or(json!(0)), + "certificate_id": h.get("certificate_id").cloned().unwrap_or(json!(0)), + "ssl_forced": h.get("ssl_forced").cloned().unwrap_or(json!(false)), + "http2_support": h.get("http2_support").cloned().unwrap_or(json!(false)), + "hsts_enabled": h.get("hsts_enabled").cloned().unwrap_or(json!(false)), + "hsts_subdomains": h.get("hsts_subdomains").cloned().unwrap_or(json!(false)), + "caching_enabled": h.get("caching_enabled").cloned().unwrap_or(json!(false)), + "block_exploits": h.get("block_exploits").cloned().unwrap_or(json!(false)), + "advanced_config": h.get("advanced_config").cloned().unwrap_or(json!("")), + "allow_websocket_upgrade": h.get("allow_websocket_upgrade").cloned().unwrap_or(json!(false)), + "meta": h.get("meta").cloned().unwrap_or(json!({"letsencrypt_agree": true, "dns_challenge": false})), + "locations": h.get("locations").cloned().unwrap_or(json!([])), + }) +} + +// ---- hjälpare ---- + +fn ensure_ok(status: u16, body: &Value) -> Result<()> { + if (200..300).contains(&status) { + Ok(()) + } else { + bail!("NPM svarade HTTP {status}: {}", body); + } +} + +fn print_hosts_table(hosts: &[Value]) { + println!("{:<5} {:<4} {:<40} {}", "ID", "ON", "DOMÄNER", "-> TARGET"); + for h in hosts { + let id = h["id"].as_i64().unwrap_or(0); + let enabled = if h["enabled"].as_i64().unwrap_or(0) == 1 || h["enabled"].as_bool().unwrap_or(false) { "✓" } else { "✗" }; + let domains = h["domain_names"] + .as_array() + .map(|a| a.iter().filter_map(|d| d.as_str()).collect::>().join(",")) + .unwrap_or_default(); + let target = format!( + "{}://{}:{}", + h["forward_scheme"].as_str().unwrap_or("http"), + h["forward_host"].as_str().unwrap_or("-"), + h["forward_port"] + ); + println!("{id:<5} {enabled:<4} {domains:<40} -> {target}"); + } + io::stdout().flush().ok(); +} + +fn prompt_line(label: &str) -> Result { + print!("{label}"); + io::stdout().flush()?; + let mut s = String::new(); + io::stdin().read_line(&mut s)?; + Ok(s.trim().to_string()) +}