From 31ea8d85c83f6d0c185fd9c4a9ceaef12226d3f6 Mon Sep 17 00:00:00 2001 From: Anders Betts Date: Thu, 17 Sep 2026 22:35:14 +0200 Subject: scripts: replace sudo credential wrapper with a Bitwarden launcher brw/bw lookup in user space; optional token via custom field --- scripts/bokftui-bw | 74 ++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 74 insertions(+) create mode 100755 scripts/bokftui-bw (limited to 'scripts/bokftui-bw') diff --git a/scripts/bokftui-bw b/scripts/bokftui-bw new file mode 100755 index 0000000..284828f --- /dev/null +++ b/scripts/bokftui-bw @@ -0,0 +1,74 @@ +#!/bin/sh +# Start bokftui with a credential fetched from a Bitwarden/Vaultwarden item. +# Runs entirely as the invoking user — no root, no sudo. +# +# BOKF_BW_ITEM item name (default: bokf) +# BOKF_BW_FIELD custom field that holds the secret (default: the password) +# BOKF_BW_KIND password (default) exports BOKFD_PASSWORD; +# token exports BOKFD_TOKEN +# +# Works with the official Bitwarden CLI (bw) or with rbw. With bw the session +# key is cached in ~/.cache/bokf/bw-session (mode 0600) so the master password +# is only asked when the session expires or after a logout. +set -eu + +item="${BOKF_BW_ITEM:-bokf}" +field="${BOKF_BW_FIELD:-}" +kind="${BOKF_BW_KIND:-password}" +BOKFTUI="${BOKFTUI:-bokftui}" + +if command -v rbw >/dev/null 2>&1; then + if ! rbw unlocked >/dev/null 2>&1; then + rbw unlock + fi + if [ -n "$field" ]; then + secret=$(rbw get --field "$field" "$item") + else + secret=$(rbw get "$item") + fi +elif command -v bw >/dev/null 2>&1; then + umask 077 + cache="${XDG_CACHE_HOME:-$HOME/.cache}/bokf/bw-session" + if [ -f "$cache" ]; then + BW_SESSION=$(cat "$cache") + export BW_SESSION + fi + if ! bw status 2>/dev/null | jq -e '.status == "unlocked"' >/dev/null 2>&1 + then + mkdir -p "$(dirname "$cache")" + BW_SESSION=$(bw unlock --raw) + export BW_SESSION + printf '%s\n' "$BW_SESSION" > "$cache" + fi + if [ -n "$field" ]; then + secret=$(bw get item "$item" | jq -r --arg f "$field" \ + '.fields[]? | select(.name == $f) | .value' | head -n 1) + else + secret=$(bw get password "$item") + fi +else + echo "bokftui-bw: install rbw or the Bitwarden CLI (bw)" >&2 + exit 1 +fi + +if [ -z "$secret" ] || [ "$secret" = "null" ]; then + echo "bokftui-bw: no secret named '$field' in item '$item'" >&2 + exit 1 +fi + +case "$kind" in + token) + BOKFD_TOKEN="$secret" + export BOKFD_TOKEN + ;; + password) + BOKFD_PASSWORD="$secret" + export BOKFD_PASSWORD + ;; + *) + echo "bokftui-bw: BOKF_BW_KIND must be password or token" >&2 + exit 1 + ;; +esac + +exec "$BOKFTUI" "$@" -- cgit v1.3