tube/app/config.go

90 lines
1.9 KiB
Go
Raw Normal View History

2019-06-27 23:09:17 +03:00
package app
import (
"encoding/json"
"os"
)
2019-06-30 01:02:05 +03:00
// Config settings for main App.
2019-06-27 23:09:17 +03:00
type Config struct {
Library []*PathConfig `json:"library"`
Server *ServerConfig `json:"server"`
Thumbnailer *ThumbnailerConfig `json:"thumbnailer"`
Transcoder *TranscoderConfig `json:"transcoder"`
Feed *FeedConfig `json:"feed"`
}
// PathConfig settings for media library path.
type PathConfig struct {
Path string `json:"path"`
Prefix string `json:"prefix"`
2019-06-27 23:09:17 +03:00
}
2019-06-30 01:02:05 +03:00
// ServerConfig settings for App Server.
2019-06-27 23:09:17 +03:00
type ServerConfig struct {
2020-03-22 11:01:27 +03:00
Host string `json:"host"`
Port int `json:"port"`
StorePath string `json:"store_path"`
2020-03-22 11:01:27 +03:00
UploadPath string `json:"upload_path"`
2019-06-27 23:09:17 +03:00
}
// ThumbnailerConfig settings for Transcoder
type ThumbnailerConfig struct {
Timeout int `json:"timeout"`
}
2020-03-22 14:41:26 +03:00
// TranscoderConfig settings for Transcoder
type TranscoderConfig struct {
Timeout int `json:"timeout"`
}
2019-06-30 01:02:05 +03:00
// FeedConfig settings for App Feed.
2019-06-29 06:50:59 +03:00
type FeedConfig struct {
ExternalURL string `json:"external_url"`
Title string `json:"title"`
Link string `json:"link"`
Description string `json:"description"`
Author struct {
Name string `json:"name"`
Email string `json:"email"`
} `json:"author"`
Copyright string `json:"copyright"`
}
2019-06-30 01:02:05 +03:00
// DefaultConfig returns Config initialized with default values.
2019-06-27 23:09:17 +03:00
func DefaultConfig() *Config {
return &Config{
Library: []*PathConfig{
&PathConfig{
Path: "videos",
Prefix: "",
},
},
2019-06-27 23:09:17 +03:00
Server: &ServerConfig{
2020-03-22 14:41:26 +03:00
Host: "127.0.0.1",
Port: 0,
UploadPath: "uploads",
},
Thumbnailer: &ThumbnailerConfig{
Timeout: 30,
},
2020-03-22 14:41:26 +03:00
Transcoder: &TranscoderConfig{
Timeout: 60,
2019-06-27 23:09:17 +03:00
},
2019-06-29 06:50:59 +03:00
Feed: &FeedConfig{
ExternalURL: "http://localhost",
},
2019-06-27 23:09:17 +03:00
}
}
2019-06-30 01:02:05 +03:00
// ReadFile reads a JSON file into Config.
2019-06-27 23:09:17 +03:00
func (c *Config) ReadFile(path string) error {
f, err := os.Open(path)
if err != nil {
return err
}
defer f.Close()
d := json.NewDecoder(f)
return d.Decode(c)
}