hmn/src/config/types.go

88 lines
1.7 KiB
Go
Raw Normal View History

2021-03-09 08:05:07 +00:00
package config
import (
"fmt"
"github.com/jackc/pgx/v4"
2021-05-06 09:12:18 +00:00
"github.com/rs/zerolog"
)
2021-03-09 08:05:07 +00:00
type Environment string
const (
Live Environment = "live"
Beta = "beta"
Dev = "dev"
)
type HMNConfig struct {
2021-06-22 09:50:40 +00:00
Env Environment
Addr string
2021-06-24 13:10:44 +00:00
PrivateAddr string
2021-06-22 09:50:40 +00:00
BaseUrl string
LogLevel zerolog.Level
Postgres PostgresConfig
Auth AuthConfig
2021-08-08 20:05:52 +00:00
Email EmailConfig
2021-06-22 09:50:40 +00:00
DigitalOcean DigitalOceanConfig
Discord DiscordConfig
EpisodeGuide EpisodeGuide
2021-03-09 08:05:07 +00:00
}
type PostgresConfig struct {
User string
Password string
Hostname string
Port int
DbName string
LogLevel pgx.LogLevel
MinConn int32
MaxConn int32
2021-03-09 08:05:07 +00:00
}
2021-03-27 21:10:11 +00:00
type AuthConfig struct {
CookieDomain string
CookieSecure bool
}
2021-06-22 09:50:40 +00:00
type DigitalOceanConfig struct {
AssetsSpacesKey string
AssetsSpacesSecret string
AssetsSpacesRegion string
AssetsSpacesEndpoint string
AssetsSpacesBucket string
AssetsPathPrefix string
AssetsPublicUrlRoot string
}
2021-08-08 20:05:52 +00:00
type EmailConfig struct {
ServerAddress string
ServerPort int
FromAddress string
FromAddressPassword string
FromName string
OverrideRecipientEmail string
}
type DiscordConfig struct {
BotToken string
BotUserID string
2021-08-16 04:40:56 +00:00
OAuthClientID string
OAuthClientSecret string
GuildID string
MemberRoleID string
ShowcaseChannelID string
LibraryChannelID string
}
type EpisodeGuide struct {
CineraOutputPath string
Projects map[string]string // NOTE(asaf): Maps from slugs to default episode guide topic
}
2021-03-09 08:05:07 +00:00
func (info PostgresConfig) DSN() string {
return fmt.Sprintf("user=%s password=%s host=%s port=%d dbname=%s", info.User, info.Password, info.Hostname, info.Port, info.DbName)
}