mirror of
https://github.com/zitadel/zitadel.git
synced 2025-08-11 19:07:30 +00:00
feat: store assets in database (#3290)
* feat: use database as asset storage * being only uploading assets if allowed * tests * fixes * cleanup after merge * renaming * various fixes * fix: change to repository event types and removed unused code * feat: set default features * error handling * error handling and naming * fix tests * fix tests * fix merge * rename
This commit is contained in:
@@ -1,114 +1,30 @@
|
||||
package config
|
||||
|
||||
import (
|
||||
"context"
|
||||
"encoding/json"
|
||||
"io"
|
||||
"net/url"
|
||||
"time"
|
||||
"database/sql"
|
||||
|
||||
"github.com/caos/zitadel/internal/domain"
|
||||
"github.com/caos/zitadel/internal/errors"
|
||||
"github.com/caos/zitadel/internal/static"
|
||||
"github.com/caos/zitadel/internal/static/database"
|
||||
"github.com/caos/zitadel/internal/static/s3"
|
||||
)
|
||||
|
||||
type AssetStorageConfig struct {
|
||||
Type string
|
||||
Config static.Config
|
||||
Config map[string]interface{} `mapstructure:",remain"`
|
||||
}
|
||||
|
||||
var storage = map[string]func() static.Config{
|
||||
"s3": func() static.Config { return &s3.Config{} },
|
||||
"none": func() static.Config { return &NoStorage{} },
|
||||
"": func() static.Config { return &NoStorage{} },
|
||||
}
|
||||
|
||||
func (c *AssetStorageConfig) UnmarshalJSON(data []byte) error {
|
||||
var rc struct {
|
||||
Type string
|
||||
Config json.RawMessage
|
||||
}
|
||||
|
||||
if err := json.Unmarshal(data, &rc); err != nil {
|
||||
return errors.ThrowInternal(err, "STATIC-Bfn5r", "error parsing config")
|
||||
}
|
||||
|
||||
c.Type = rc.Type
|
||||
|
||||
var err error
|
||||
c.Config, err = newStorageConfig(c.Type, rc.Config)
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
|
||||
return nil
|
||||
}
|
||||
|
||||
func newStorageConfig(storageType string, configData []byte) (static.Config, error) {
|
||||
t, ok := storage[storageType]
|
||||
func (a *AssetStorageConfig) NewStorage(client *sql.DB) (static.Storage, error) {
|
||||
t, ok := storage[a.Type]
|
||||
if !ok {
|
||||
return nil, errors.ThrowInternalf(nil, "STATIC-dsbjh", "config type %s not supported", storageType)
|
||||
return nil, errors.ThrowInternalf(nil, "STATIC-dsbjh", "config type %s not supported", a.Type)
|
||||
}
|
||||
|
||||
staticConfig := t()
|
||||
if len(configData) == 0 {
|
||||
return staticConfig, nil
|
||||
}
|
||||
|
||||
if err := json.Unmarshal(configData, staticConfig); err != nil {
|
||||
return nil, errors.ThrowInternal(err, "STATIC-GB4nw", "Could not read config: %v")
|
||||
}
|
||||
|
||||
return staticConfig, nil
|
||||
return t(client, a.Config)
|
||||
}
|
||||
|
||||
var (
|
||||
errNoStorage = errors.ThrowInternal(nil, "STATIC-ashg4", "Errors.Assets.Store.NotConfigured")
|
||||
)
|
||||
|
||||
type NoStorage struct{}
|
||||
|
||||
func (_ *NoStorage) NewStorage() (static.Storage, error) {
|
||||
return &NoStorage{}, nil
|
||||
}
|
||||
|
||||
func (_ *NoStorage) CreateBucket(ctx context.Context, name, location string) error {
|
||||
return errNoStorage
|
||||
}
|
||||
|
||||
func (_ *NoStorage) RemoveBucket(ctx context.Context, name string) error {
|
||||
return errNoStorage
|
||||
}
|
||||
|
||||
func (_ *NoStorage) ListBuckets(ctx context.Context) ([]*domain.BucketInfo, error) {
|
||||
return nil, errNoStorage
|
||||
}
|
||||
|
||||
func (_ *NoStorage) PutObject(ctx context.Context, bucketName, objectName, contentType string, object io.Reader, objectSize int64, createBucketIfNotExisting bool) (*domain.AssetInfo, error) {
|
||||
return nil, errNoStorage
|
||||
}
|
||||
|
||||
func (_ *NoStorage) GetObjectInfo(ctx context.Context, bucketName, objectName string) (*domain.AssetInfo, error) {
|
||||
return nil, errNoStorage
|
||||
}
|
||||
|
||||
func (_ *NoStorage) GetObject(ctx context.Context, bucketName, objectName string) (io.Reader, func() (*domain.AssetInfo, error), error) {
|
||||
return nil, nil, errNoStorage
|
||||
}
|
||||
|
||||
func (_ *NoStorage) ListObjectInfos(ctx context.Context, bucketName, prefix string, recursive bool) ([]*domain.AssetInfo, error) {
|
||||
return nil, errNoStorage
|
||||
}
|
||||
|
||||
func (_ *NoStorage) GetObjectPresignedURL(ctx context.Context, bucketName, objectName string, expiration time.Duration) (*url.URL, error) {
|
||||
return nil, errNoStorage
|
||||
}
|
||||
|
||||
func (_ *NoStorage) RemoveObject(ctx context.Context, bucketName, objectName string) error {
|
||||
return errNoStorage
|
||||
}
|
||||
|
||||
func (_ *NoStorage) RemoveObjects(ctx context.Context, bucketName, path string, recursive bool) error {
|
||||
return errNoStorage
|
||||
var storage = map[string]static.CreateStorage{
|
||||
"db": database.NewStorage,
|
||||
"": database.NewStorage,
|
||||
"s3": s3.NewStorage,
|
||||
}
|
||||
|
Reference in New Issue
Block a user