tracker/config/config.go

89 lines
2.2 KiB
Go
Raw Normal View History

// Copyright 2013 The Chihaya Authors. All rights reserved.
// Use of this source code is governed by the BSD 2-Clause license,
// which can be found in the LICENSE file.
// Package config implements the configuration for a BitTorrent tracker
2013-06-22 01:31:32 +02:00
package config
import (
2013-11-24 06:49:20 +01:00
"encoding/json"
"io"
"os"
"time"
2013-06-22 01:31:32 +02:00
)
2014-05-01 06:30:46 +02:00
// Duration wraps a time.Duration and adds JSON marshalling.
2013-06-23 12:21:59 +02:00
type Duration struct {
2013-11-24 06:49:20 +01:00
time.Duration
2013-06-23 12:21:59 +02:00
}
2013-06-22 01:31:32 +02:00
2014-05-01 06:30:46 +02:00
// MarshalJSON transforms a duration into JSON.
2013-06-23 12:21:59 +02:00
func (d *Duration) MarshalJSON() ([]byte, error) {
2013-11-24 06:49:20 +01:00
return json.Marshal(d.String())
2013-06-23 12:21:59 +02:00
}
2013-06-22 01:31:32 +02:00
2014-05-01 06:30:46 +02:00
// UnmarshalJSON transform JSON into a Duration.
2013-06-23 12:21:59 +02:00
func (d *Duration) UnmarshalJSON(b []byte) error {
2013-11-24 06:49:20 +01:00
var str string
err := json.Unmarshal(b, &str)
d.Duration, err = time.ParseDuration(str)
return err
2013-06-22 01:31:32 +02:00
}
2013-08-26 20:38:45 +02:00
// DataStore represents the configuration used to connect to a data store.
type DataStore struct {
2013-11-24 06:49:20 +01:00
Driver string `json:"driver"`
Network string `json:"network`
Host string `json:"host"`
Port string `json:"port"`
Username string `json:"user"`
Password string `json:"pass"`
Schema string `json:"schema,omitempty"`
Encoding string `json:"encoding,omitempty"`
Prefix string `json:"prefix,omitempty"`
2013-11-24 06:49:20 +01:00
MaxIdleConns int `json:"max_idle_conns,omitempty"`
IdleTimeout *Duration `json:"idle_timeout,omitempty"`
2013-06-22 01:31:32 +02:00
}
// Config represents a configuration for a server.Server.
2013-06-23 12:21:59 +02:00
type Config struct {
2013-11-24 06:49:20 +01:00
Addr string `json:"addr"`
2013-12-02 11:00:28 +01:00
Tracker DataStore `json:"tracker"`
Backend DataStore `json:"backend"`
2013-06-22 01:31:32 +02:00
2013-11-24 06:49:20 +01:00
Private bool `json:"private"`
Freeleech bool `json:"freeleech"`
2013-06-22 01:31:32 +02:00
2013-11-24 06:49:20 +01:00
Announce Duration `json:"announce"`
MinAnnounce Duration `json:"min_announce"`
ReadTimeout Duration `json:"read_timeout"`
DefaultNumWant int `json:"default_num_want"`
2013-06-22 01:31:32 +02:00
}
// Open is a shortcut to open a file, read it, and generate a Config.
// It supports relative and absolute paths.
func Open(path string) (*Config, error) {
2014-05-01 06:30:46 +02:00
f, err := os.Open(os.ExpandEnv(path))
2013-11-24 06:49:20 +01:00
if err != nil {
return nil, err
}
defer f.Close()
2013-06-22 01:31:32 +02:00
2014-06-24 04:47:43 +02:00
conf, err := decode(f)
2013-11-24 06:49:20 +01:00
if err != nil {
return nil, err
}
return conf, nil
2013-06-22 01:31:32 +02:00
}
2013-06-23 12:21:59 +02:00
2014-06-24 04:47:43 +02:00
// decode transforms Reader populated with JSON into a *Config.
func decode(raw io.Reader) (*Config, error) {
2013-11-24 06:49:20 +01:00
conf := &Config{}
err := json.NewDecoder(raw).Decode(conf)
if err != nil {
return nil, err
}
return conf, nil
2013-06-23 12:21:59 +02:00
}