mirror of
https://github.com/zitadel/zitadel.git
synced 2024-12-12 11:04:25 +00:00
dcac08b1d5
* fix: caching of assets (correct headers and versioned avatar url) * serve variables.css versioned and extend shared max age of assets * fix TestCommandSide_AddHumanAvatar * refactor: const types * refactor: return values Co-authored-by: Fabi <38692350+hifabienne@users.noreply.github.com> Co-authored-by: adlerhurst <silvan.reusser@gmail.com>
33 lines
815 B
Go
33 lines
815 B
Go
package config
|
|
|
|
import (
|
|
"database/sql"
|
|
|
|
"github.com/zitadel/zitadel/internal/api/http/middleware"
|
|
"github.com/zitadel/zitadel/internal/errors"
|
|
"github.com/zitadel/zitadel/internal/static"
|
|
"github.com/zitadel/zitadel/internal/static/database"
|
|
"github.com/zitadel/zitadel/internal/static/s3"
|
|
)
|
|
|
|
type AssetStorageConfig struct {
|
|
Type string
|
|
Cache middleware.CacheConfig
|
|
Config map[string]interface{} `mapstructure:",remain"`
|
|
}
|
|
|
|
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", a.Type)
|
|
}
|
|
|
|
return t(client, a.Config)
|
|
}
|
|
|
|
var storage = map[string]static.CreateStorage{
|
|
"db": database.NewStorage,
|
|
"": database.NewStorage,
|
|
"s3": s3.NewStorage,
|
|
}
|