mirror of
https://github.com/superseriousbusiness/gotosocial.git
synced 2024-11-01 06:50:00 +00:00
b315eee43b
* Update webfingering a little, add tests * fix broken tests oops
258 lines
8.3 KiB
Go
258 lines
8.3 KiB
Go
package config
|
|
|
|
import "github.com/coreos/go-oidc/v3/oidc"
|
|
|
|
// TestDefault returns a default config for testing
|
|
func TestDefault() *Config {
|
|
defaults := GetTestDefaults()
|
|
return &Config{
|
|
LogLevel: defaults.LogLevel,
|
|
ApplicationName: defaults.ApplicationName,
|
|
Host: defaults.Host,
|
|
AccountDomain: defaults.AccountDomain,
|
|
Protocol: defaults.Protocol,
|
|
Port: defaults.Port,
|
|
TrustedProxies: defaults.TrustedProxies,
|
|
SoftwareVersion: defaults.SoftwareVersion,
|
|
DBConfig: &DBConfig{
|
|
Type: defaults.DbType,
|
|
Address: defaults.DbAddress,
|
|
Port: defaults.DbPort,
|
|
User: defaults.DbUser,
|
|
Password: defaults.DbPassword,
|
|
Database: defaults.DbDatabase,
|
|
ApplicationName: defaults.ApplicationName,
|
|
},
|
|
TemplateConfig: &TemplateConfig{
|
|
BaseDir: defaults.TemplateBaseDir,
|
|
AssetBaseDir: defaults.AssetBaseDir,
|
|
},
|
|
AccountsConfig: &AccountsConfig{
|
|
OpenRegistration: defaults.AccountsOpenRegistration,
|
|
RequireApproval: defaults.AccountsRequireApproval,
|
|
ReasonRequired: defaults.AccountsReasonRequired,
|
|
},
|
|
MediaConfig: &MediaConfig{
|
|
MaxImageSize: defaults.MediaMaxImageSize,
|
|
MaxVideoSize: defaults.MediaMaxVideoSize,
|
|
MinDescriptionChars: defaults.MediaMinDescriptionChars,
|
|
MaxDescriptionChars: defaults.MediaMaxDescriptionChars,
|
|
},
|
|
StorageConfig: &StorageConfig{
|
|
Backend: defaults.StorageBackend,
|
|
BasePath: defaults.StorageBasePath,
|
|
ServeProtocol: defaults.StorageServeProtocol,
|
|
ServeHost: defaults.StorageServeHost,
|
|
ServeBasePath: defaults.StorageServeBasePath,
|
|
},
|
|
StatusesConfig: &StatusesConfig{
|
|
MaxChars: defaults.StatusesMaxChars,
|
|
CWMaxChars: defaults.StatusesCWMaxChars,
|
|
PollMaxOptions: defaults.StatusesPollMaxOptions,
|
|
PollOptionMaxChars: defaults.StatusesPollOptionMaxChars,
|
|
MaxMediaFiles: defaults.StatusesMaxMediaFiles,
|
|
},
|
|
LetsEncryptConfig: &LetsEncryptConfig{
|
|
Enabled: defaults.LetsEncryptEnabled,
|
|
Port: defaults.LetsEncryptPort,
|
|
CertDir: defaults.LetsEncryptCertDir,
|
|
EmailAddress: defaults.LetsEncryptEmailAddress,
|
|
},
|
|
OIDCConfig: &OIDCConfig{
|
|
Enabled: defaults.OIDCEnabled,
|
|
IDPName: defaults.OIDCIdpName,
|
|
SkipVerification: defaults.OIDCSkipVerification,
|
|
Issuer: defaults.OIDCIssuer,
|
|
ClientID: defaults.OIDCClientID,
|
|
ClientSecret: defaults.OIDCClientSecret,
|
|
Scopes: defaults.OIDCScopes,
|
|
},
|
|
}
|
|
}
|
|
|
|
// Default returns a config with all default values set
|
|
func Default() *Config {
|
|
defaults := GetDefaults()
|
|
return &Config{
|
|
LogLevel: defaults.LogLevel,
|
|
ApplicationName: defaults.ApplicationName,
|
|
Host: defaults.Host,
|
|
Protocol: defaults.Protocol,
|
|
Port: defaults.Port,
|
|
TrustedProxies: defaults.TrustedProxies,
|
|
SoftwareVersion: defaults.SoftwareVersion,
|
|
DBConfig: &DBConfig{
|
|
Type: defaults.DbType,
|
|
Address: defaults.DbAddress,
|
|
Port: defaults.DbPort,
|
|
User: defaults.DbUser,
|
|
Password: defaults.DbPassword,
|
|
Database: defaults.DbDatabase,
|
|
ApplicationName: defaults.ApplicationName,
|
|
},
|
|
TemplateConfig: &TemplateConfig{
|
|
BaseDir: defaults.TemplateBaseDir,
|
|
AssetBaseDir: defaults.AssetBaseDir,
|
|
},
|
|
AccountsConfig: &AccountsConfig{
|
|
OpenRegistration: defaults.AccountsOpenRegistration,
|
|
RequireApproval: defaults.AccountsRequireApproval,
|
|
ReasonRequired: defaults.AccountsReasonRequired,
|
|
},
|
|
MediaConfig: &MediaConfig{
|
|
MaxImageSize: defaults.MediaMaxImageSize,
|
|
MaxVideoSize: defaults.MediaMaxVideoSize,
|
|
MinDescriptionChars: defaults.MediaMinDescriptionChars,
|
|
MaxDescriptionChars: defaults.MediaMaxDescriptionChars,
|
|
},
|
|
StorageConfig: &StorageConfig{
|
|
Backend: defaults.StorageBackend,
|
|
BasePath: defaults.StorageBasePath,
|
|
ServeProtocol: defaults.StorageServeProtocol,
|
|
ServeHost: defaults.StorageServeHost,
|
|
ServeBasePath: defaults.StorageServeBasePath,
|
|
},
|
|
StatusesConfig: &StatusesConfig{
|
|
MaxChars: defaults.StatusesMaxChars,
|
|
CWMaxChars: defaults.StatusesCWMaxChars,
|
|
PollMaxOptions: defaults.StatusesPollMaxOptions,
|
|
PollOptionMaxChars: defaults.StatusesPollOptionMaxChars,
|
|
MaxMediaFiles: defaults.StatusesMaxMediaFiles,
|
|
},
|
|
LetsEncryptConfig: &LetsEncryptConfig{
|
|
Enabled: defaults.LetsEncryptEnabled,
|
|
Port: defaults.LetsEncryptPort,
|
|
CertDir: defaults.LetsEncryptCertDir,
|
|
EmailAddress: defaults.LetsEncryptEmailAddress,
|
|
},
|
|
OIDCConfig: &OIDCConfig{
|
|
Enabled: defaults.OIDCEnabled,
|
|
IDPName: defaults.OIDCIdpName,
|
|
SkipVerification: defaults.OIDCSkipVerification,
|
|
Issuer: defaults.OIDCIssuer,
|
|
ClientID: defaults.OIDCClientID,
|
|
ClientSecret: defaults.OIDCClientSecret,
|
|
Scopes: defaults.OIDCScopes,
|
|
},
|
|
}
|
|
}
|
|
|
|
// GetDefaults returns a populated Defaults struct with most of the values set to reasonable defaults.
|
|
// Note that if you use this function, you still need to set Host and, if desired, ConfigPath.
|
|
func GetDefaults() Defaults {
|
|
return Defaults{
|
|
LogLevel: "info",
|
|
ApplicationName: "gotosocial",
|
|
ConfigPath: "",
|
|
Host: "",
|
|
AccountDomain: "",
|
|
Protocol: "https",
|
|
Port: 8080,
|
|
TrustedProxies: []string{"127.0.0.1/32"}, // localhost
|
|
|
|
DbType: "postgres",
|
|
DbAddress: "localhost",
|
|
DbPort: 5432,
|
|
DbUser: "postgres",
|
|
DbPassword: "postgres",
|
|
DbDatabase: "postgres",
|
|
DBTlsMode: "disable",
|
|
DBTlsCACert: "",
|
|
|
|
TemplateBaseDir: "./web/template/",
|
|
AssetBaseDir: "./web/assets/",
|
|
|
|
AccountsOpenRegistration: true,
|
|
AccountsRequireApproval: true,
|
|
AccountsReasonRequired: true,
|
|
|
|
MediaMaxImageSize: 2097152, //2mb
|
|
MediaMaxVideoSize: 10485760, //10mb
|
|
MediaMinDescriptionChars: 0,
|
|
MediaMaxDescriptionChars: 500,
|
|
|
|
StorageBackend: "local",
|
|
StorageBasePath: "/gotosocial/storage",
|
|
StorageServeProtocol: "https",
|
|
StorageServeHost: "localhost",
|
|
StorageServeBasePath: "/fileserver",
|
|
|
|
StatusesMaxChars: 5000,
|
|
StatusesCWMaxChars: 100,
|
|
StatusesPollMaxOptions: 6,
|
|
StatusesPollOptionMaxChars: 50,
|
|
StatusesMaxMediaFiles: 6,
|
|
|
|
LetsEncryptEnabled: true,
|
|
LetsEncryptPort: 80,
|
|
LetsEncryptCertDir: "/gotosocial/storage/certs",
|
|
LetsEncryptEmailAddress: "",
|
|
|
|
OIDCEnabled: false,
|
|
OIDCIdpName: "",
|
|
OIDCSkipVerification: false,
|
|
OIDCIssuer: "",
|
|
OIDCClientID: "",
|
|
OIDCClientSecret: "",
|
|
OIDCScopes: []string{oidc.ScopeOpenID, "profile", "email", "groups"},
|
|
}
|
|
}
|
|
|
|
// GetTestDefaults returns a Defaults struct with values set that are suitable for local testing.
|
|
func GetTestDefaults() Defaults {
|
|
return Defaults{
|
|
LogLevel: "trace",
|
|
ApplicationName: "gotosocial",
|
|
ConfigPath: "",
|
|
Host: "localhost:8080",
|
|
AccountDomain: "localhost:8080",
|
|
Protocol: "http",
|
|
Port: 8080,
|
|
TrustedProxies: []string{"127.0.0.1/32"},
|
|
|
|
DbType: "sqlite",
|
|
DbAddress: ":memory:",
|
|
DbPort: 5432,
|
|
DbUser: "postgres",
|
|
DbPassword: "postgres",
|
|
DbDatabase: "postgres",
|
|
|
|
TemplateBaseDir: "./web/template/",
|
|
AssetBaseDir: "./web/assets/",
|
|
|
|
AccountsOpenRegistration: true,
|
|
AccountsRequireApproval: true,
|
|
AccountsReasonRequired: true,
|
|
|
|
MediaMaxImageSize: 1048576, //1mb
|
|
MediaMaxVideoSize: 5242880, //5mb
|
|
MediaMinDescriptionChars: 0,
|
|
MediaMaxDescriptionChars: 500,
|
|
|
|
StorageBackend: "local",
|
|
StorageBasePath: "/gotosocial/storage",
|
|
StorageServeProtocol: "http",
|
|
StorageServeHost: "localhost:8080",
|
|
StorageServeBasePath: "/fileserver",
|
|
|
|
StatusesMaxChars: 5000,
|
|
StatusesCWMaxChars: 100,
|
|
StatusesPollMaxOptions: 6,
|
|
StatusesPollOptionMaxChars: 50,
|
|
StatusesMaxMediaFiles: 6,
|
|
|
|
LetsEncryptEnabled: false,
|
|
LetsEncryptPort: 0,
|
|
LetsEncryptCertDir: "",
|
|
LetsEncryptEmailAddress: "",
|
|
|
|
OIDCEnabled: false,
|
|
OIDCIdpName: "",
|
|
OIDCSkipVerification: false,
|
|
OIDCIssuer: "",
|
|
OIDCClientID: "",
|
|
OIDCClientSecret: "",
|
|
OIDCScopes: []string{oidc.ScopeOpenID, "profile", "email", "groups"},
|
|
}
|
|
}
|