mirror of
https://github.com/zitadel/zitadel.git
synced 2024-12-15 12:27:59 +00:00
fbe0f311f2
* feat: comprehensive sentry instrumentation * test: pass * fix: only fetch zitadel dsn in zitadel-operator * chore: use dns for sentry environment as soon as parsed * fix: trust ca certs * ci: update orbos * docs: add usage data explanation * fix: dont send validation errors * docs: improve ingestion data explanation * style: rename flag --disable-ingestion to --disable-analytics * fix: pass --disable-analytics flag to self deployments * fix: destroy command for sentry * fix: update orbos * fix: only switch environment if analytics is enabled * fix: ensure SENTRY_DSN is always set * test: test empty sentry dsn * ci: invalidate build caches * chore: use zitadel-dev if no version is passed * chore: combine dev releases in sentry * refactor: only check for semrel if sentry is enabled
74 lines
1.7 KiB
Go
74 lines
1.7 KiB
Go
package bucket
|
|
|
|
import (
|
|
"context"
|
|
"fmt"
|
|
"strings"
|
|
|
|
"cloud.google.com/go/storage"
|
|
"google.golang.org/api/iterator"
|
|
"google.golang.org/api/option"
|
|
|
|
"github.com/caos/orbos/mntr"
|
|
"github.com/caos/orbos/pkg/kubernetes"
|
|
"github.com/caos/orbos/pkg/secret/read"
|
|
"github.com/caos/orbos/pkg/tree"
|
|
|
|
"github.com/caos/zitadel/operator/database/kinds/backups/core"
|
|
)
|
|
|
|
func BackupList() core.BackupListFunc {
|
|
return func(monitor mntr.Monitor, k8sClient kubernetes.ClientInt, name string, desired *tree.Tree) ([]string, error) {
|
|
desiredKind, err := ParseDesiredV0(desired)
|
|
if err != nil {
|
|
return nil, fmt.Errorf("parsing desired state failed: %w", err)
|
|
}
|
|
desired.Parsed = desiredKind
|
|
|
|
if !monitor.IsVerbose() && desiredKind.Spec.Verbose {
|
|
monitor.Verbose()
|
|
}
|
|
|
|
value, err := read.GetSecretValue(k8sClient, desiredKind.Spec.ServiceAccountJSON, desiredKind.Spec.ExistingServiceAccountJSON)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
return listFilesWithFilter(value, desiredKind.Spec.Bucket, name)
|
|
}
|
|
}
|
|
|
|
func listFilesWithFilter(serviceAccountJSON string, bucketName, name string) ([]string, error) {
|
|
ctx := context.Background()
|
|
client, err := storage.NewClient(ctx, option.WithCredentialsJSON([]byte(serviceAccountJSON)))
|
|
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
bkt := client.Bucket(bucketName)
|
|
|
|
names := make([]string, 0)
|
|
it := bkt.Objects(ctx, &storage.Query{Prefix: name + "/"})
|
|
for {
|
|
attrs, err := it.Next()
|
|
if err == iterator.Done {
|
|
break
|
|
}
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
parts := strings.Split(attrs.Name, "/")
|
|
found := false
|
|
for _, name := range names {
|
|
if name == parts[1] {
|
|
found = true
|
|
}
|
|
}
|
|
if !found {
|
|
names = append(names, parts[1])
|
|
}
|
|
}
|
|
|
|
return names, nil
|
|
}
|