* feat(server): moved an http server object into a pkg subdir to be reusable for http, spots, and integrations * feat(web): isolated web module (server, router, middleware, utils) used in spots and new integrations * feat(web): removed possible panic * feat(web): split all handlers from http service into different packages for better management. * feat(web): changed router's method signature * feat(web): added missing handlers interface * feat(web): added health middleware to remove unnecessary checks * feat(web): customizable middleware set for web servers * feat(web): simplified the handler's structure * feat(web): created an unified server.Run method for all web services (http, spot, integrations) * feat(web): fixed a json size limit issue * feat(web): removed Keys and PG connection from router * feat(web): simplified integration's main file * feat(web): simplified spot's main file * feat(web): simplified http's main file (builder) * feat(web): refactored audit trail functionality * feat(web): added ee version of audit trail * feat(web): added ee version of conditions module * feat(web): moved ee version of some web session structs * feat(web): new format of web metrics * feat(web): added new web metrics to all handlers * feat(web): added justExpired feature to web ingest handler * feat(web): added small integrations improvements
45 lines
1.9 KiB
Go
45 lines
1.9 KiB
Go
package http
|
|
|
|
import (
|
|
"openreplay/backend/internal/config/common"
|
|
"openreplay/backend/internal/config/configurator"
|
|
"openreplay/backend/internal/config/objectstorage"
|
|
"openreplay/backend/internal/config/redis"
|
|
"openreplay/backend/pkg/env"
|
|
"openreplay/backend/pkg/logger"
|
|
"time"
|
|
)
|
|
|
|
type Config struct {
|
|
common.Config
|
|
common.Postgres
|
|
redis.Redis
|
|
objectstorage.ObjectsConfig
|
|
common.HTTP
|
|
TopicRawWeb string `env:"TOPIC_RAW_WEB,required"`
|
|
TopicRawMobile string `env:"TOPIC_RAW_IOS,required"`
|
|
TopicRawImages string `env:"TOPIC_RAW_IMAGES,required"`
|
|
TopicCanvasImages string `env:"TOPIC_CANVAS_IMAGES,required"`
|
|
BeaconSizeLimit int64 `env:"BEACON_SIZE_LIMIT,required"`
|
|
CompressionThreshold int64 `env:"COMPRESSION_THRESHOLD,default=20000"`
|
|
FileSizeLimit int64 `env:"FILE_SIZE_LIMIT,default=10000000"`
|
|
TokenSecret string `env:"TOKEN_SECRET,required"`
|
|
UAParserFile string `env:"UAPARSER_FILE,required"`
|
|
MaxMinDBFile string `env:"MAXMINDDB_FILE,required"`
|
|
UseProfiler bool `env:"PROFILER_ENABLED,default=false"`
|
|
ProjectExpiration time.Duration `env:"PROJECT_EXPIRATION,default=10m"`
|
|
RecordCanvas bool `env:"RECORD_CANVAS,default=false"`
|
|
CanvasQuality string `env:"CANVAS_QUALITY,default=low"`
|
|
CanvasFps int `env:"CANVAS_FPS,default=1"`
|
|
MobileQuality string `env:"MOBILE_QUALITY,default=low"` // (low, standard, high)
|
|
MobileFps int `env:"MOBILE_FPS,default=1"`
|
|
IsFeatureFlagEnabled bool `env:"IS_FEATURE_FLAG_ENABLED,default=false"`
|
|
IsUsabilityTestEnabled bool `env:"IS_USABILITY_TEST_ENABLED,default=false"`
|
|
WorkerID uint16
|
|
}
|
|
|
|
func New(log logger.Logger) *Config {
|
|
cfg := &Config{WorkerID: env.WorkerID()}
|
|
configurator.Process(log, cfg)
|
|
return cfg
|
|
}
|