goldwarden-vaultwarden-bitw.../cmd/vault.go

135 lines
3.2 KiB
Go
Raw Normal View History

2023-07-17 03:23:26 +02:00
package cmd
import (
"encoding/json"
2023-12-22 10:44:49 +01:00
"fmt"
"time"
2023-12-22 10:44:49 +01:00
2023-09-20 03:05:44 +02:00
"github.com/quexten/goldwarden/ipc/messages"
2023-07-17 03:23:26 +02:00
"github.com/spf13/cobra"
)
var vaultCmd = &cobra.Command{
Use: "vault",
Short: "Manage the vault",
Long: `Manage the vault.`,
}
var unlockCmd = &cobra.Command{
Use: "unlock",
Short: "Unlocks the vault",
Long: `Unlocks the vault. You will be prompted for your pin. The pin is empty by default.`,
Run: func(cmd *cobra.Command, args []string) {
2023-09-20 03:05:44 +02:00
request := messages.UnlockVaultRequest{}
2023-07-17 03:23:26 +02:00
2023-08-21 13:52:06 +02:00
result, err := commandClient.SendToAgent(request)
2023-07-17 03:23:26 +02:00
if err != nil {
2023-09-11 22:45:01 +02:00
handleSendToAgentError(err)
2023-07-17 03:23:26 +02:00
return
}
switch result.(type) {
2023-09-20 03:05:44 +02:00
case messages.ActionResponse:
if result.(messages.ActionResponse).Success {
fmt.Println("Unlocked")
2023-07-17 03:23:26 +02:00
} else {
fmt.Println("Not unlocked: " + result.(messages.ActionResponse).Message)
2023-07-17 03:23:26 +02:00
}
default:
fmt.Println("Wrong response type")
2023-07-17 03:23:26 +02:00
}
},
}
var lockCmd = &cobra.Command{
Use: "lock",
Short: "Locks the vault",
Long: `Locks the vault.`,
Run: func(cmd *cobra.Command, args []string) {
2023-09-20 03:05:44 +02:00
request := messages.LockVaultRequest{}
2023-07-17 03:23:26 +02:00
2023-08-21 13:52:06 +02:00
result, err := commandClient.SendToAgent(request)
2023-07-17 03:23:26 +02:00
if err != nil {
2023-09-11 22:45:01 +02:00
handleSendToAgentError(err)
2023-07-17 03:23:26 +02:00
return
}
switch result.(type) {
2023-09-20 03:05:44 +02:00
case messages.ActionResponse:
if result.(messages.ActionResponse).Success {
fmt.Println("Locked")
2023-07-17 03:23:26 +02:00
} else {
fmt.Println("Not locked: " + result.(messages.ActionResponse).Message)
2023-07-17 03:23:26 +02:00
}
default:
fmt.Println("Wrong response type")
2023-07-17 03:23:26 +02:00
}
},
}
var purgeCmd = &cobra.Command{
Use: "purge",
Short: "Wipes the vault",
Long: `Wipes the vault and encryption keys from ram and config. Does not delete any entries on the server side.`,
Run: func(cmd *cobra.Command, args []string) {
2023-09-20 03:05:44 +02:00
request := messages.WipeVaultRequest{}
2023-07-17 03:23:26 +02:00
2023-08-21 13:52:06 +02:00
result, err := commandClient.SendToAgent(request)
2023-07-17 03:23:26 +02:00
if err != nil {
2023-09-11 22:45:01 +02:00
handleSendToAgentError(err)
2023-07-17 03:23:26 +02:00
return
}
switch result.(type) {
2023-09-20 03:05:44 +02:00
case messages.ActionResponse:
if result.(messages.ActionResponse).Success {
fmt.Println("Purged")
2023-07-17 03:23:26 +02:00
} else {
fmt.Println("Not purged: " + result.(messages.ActionResponse).Message)
2023-07-17 03:23:26 +02:00
}
default:
fmt.Println("Wrong response type")
2023-07-17 03:23:26 +02:00
}
},
}
2023-12-22 10:44:49 +01:00
var statusCmd = &cobra.Command{
Use: "status",
Short: "Shows the vault status",
Long: `Shows the vault status.`,
Run: func(cmd *cobra.Command, args []string) {
request := messages.VaultStatusRequest{}
result, err := commandClient.SendToAgent(request)
if err != nil {
handleSendToAgentError(err)
return
}
switch result.(type) {
case messages.VaultStatusResponse:
response := map[string]interface{}{}
2023-12-22 10:44:49 +01:00
status := result.(messages.VaultStatusResponse)
response["locked"] = status.Locked
response["loginEntries"] = status.NumberOfLogins
response["noteEntries"] = status.NumberOfNotes
response["lastSynced"] = time.Unix(status.LastSynced, 0).String()
response["websocketConnected"] = status.WebsockedConnected
response["pinSet"] = status.PinSet
response["loggedIn"] = status.LoggedIn
responseJSON, _ := json.Marshal(response)
fmt.Println(string(responseJSON))
2023-12-22 10:44:49 +01:00
default:
fmt.Println("Wrong response type")
2023-12-22 10:44:49 +01:00
}
},
}
2023-07-17 03:23:26 +02:00
func init() {
rootCmd.AddCommand(vaultCmd)
vaultCmd.AddCommand(unlockCmd)
vaultCmd.AddCommand(lockCmd)
vaultCmd.AddCommand(purgeCmd)
2023-12-22 10:44:49 +01:00
vaultCmd.AddCommand(statusCmd)
2023-07-17 03:23:26 +02:00
}