goldwarden-vaultwarden-bitw.../agent/bitwarden/sync.go

105 lines
2.3 KiB
Go
Raw Normal View History

2023-07-17 03:23:26 +02:00
package bitwarden
import (
"context"
2023-07-17 06:00:26 +02:00
"encoding/json"
2023-07-17 03:23:26 +02:00
"fmt"
2023-07-17 06:00:26 +02:00
"os"
2023-07-17 03:23:26 +02:00
"github.com/LlamaNite/llamalog"
"github.com/quexten/goldwarden/agent/bitwarden/crypto"
"github.com/quexten/goldwarden/agent/bitwarden/models"
"github.com/quexten/goldwarden/agent/config"
"github.com/quexten/goldwarden/agent/vault"
)
var log = llamalog.NewLogger("Goldwarden", "Bitwarden API")
2023-07-17 06:00:26 +02:00
const path = "/.cache/goldwarden-vault.json"
2023-07-17 03:23:26 +02:00
func Sync(ctx context.Context, config *config.Config) (models.SyncData, error) {
var sync models.SyncData
if err := authenticatedHTTPGet(ctx, config.ConfigFile.ApiUrl+"/sync", &sync); err != nil {
return models.SyncData{}, fmt.Errorf("could not sync: %v", err)
}
2023-07-17 06:00:26 +02:00
home, _ := os.UserHomeDir()
WriteVault(sync, home+path)
2023-07-17 03:23:26 +02:00
return sync, nil
}
2023-07-17 06:00:26 +02:00
func DoFullSync(ctx context.Context, vault *vault.Vault, config *config.Config, userSymmetricKey *crypto.SymmetricEncryptionKey, allowCache bool) error {
2023-07-17 03:23:26 +02:00
log.Info("Performing full sync...")
sync, err := Sync(ctx, config)
if err != nil {
2023-07-17 06:00:26 +02:00
if allowCache {
home, _ := os.UserHomeDir()
sync, err = ReadVault(home + path)
} else {
return err
}
2023-07-17 03:23:26 +02:00
}
if userSymmetricKey != nil {
2023-07-17 03:23:26 +02:00
var orgKeys map[string]string = make(map[string]string)
for _, org := range sync.Profile.Organizations {
orgId := org.Id.String()
orgKeys[orgId] = org.Key
}
crypto.InitKeyringFromUserSymmetricKey(vault.Keyring, *userSymmetricKey, sync.Profile.PrivateKey, orgKeys)
2023-07-17 03:23:26 +02:00
}
vault.Clear()
for _, cipher := range sync.Ciphers {
switch cipher.Type {
case models.CipherLogin:
vault.AddOrUpdateLogin(cipher)
break
case models.CipherNote:
vault.AddOrUpdateSecureNote(cipher)
break
}
}
return nil
}
2023-07-17 06:00:26 +02:00
func WriteVault(data models.SyncData, path string) error {
dataJson, err := json.Marshal(data)
if err != nil {
return err
}
// write to disk
os.Remove(path)
file, err := os.OpenFile(path, os.O_CREATE|os.O_WRONLY, 0600)
if err != nil {
return err
}
defer file.Close()
_, err = file.Write(dataJson)
if err != nil {
return err
}
return nil
}
func ReadVault(path string) (models.SyncData, error) {
file, err := os.Open(path)
if err != nil {
return models.SyncData{}, err
}
defer file.Close()
decoder := json.NewDecoder(file)
data := models.SyncData{}
err = decoder.Decode(&data)
if err != nil {
return models.SyncData{}, err
}
return data, nil
}