2015-09-19 09:07:10 -04:00
|
|
|
package json
|
|
|
|
|
|
|
|
import (
|
2015-09-19 09:35:20 -04:00
|
|
|
"encoding/json"
|
|
|
|
"io/ioutil"
|
2015-09-20 05:45:40 -04:00
|
|
|
"os"
|
2015-09-19 09:35:20 -04:00
|
|
|
|
2015-09-19 18:50:21 -04:00
|
|
|
"github.com/v2ray/v2ray-core/common/log"
|
2015-10-06 17:11:08 -04:00
|
|
|
"github.com/v2ray/v2ray-core/config"
|
2015-09-19 09:07:10 -04:00
|
|
|
)
|
|
|
|
|
|
|
|
type ConnectionConfig struct {
|
2015-10-06 17:11:08 -04:00
|
|
|
ProtocolString string `json:"protocol"`
|
|
|
|
SettingsMessage json.RawMessage `json:"settings"`
|
2015-09-19 09:07:10 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
func (config *ConnectionConfig) Protocol() string {
|
2015-09-19 09:35:20 -04:00
|
|
|
return config.ProtocolString
|
2015-09-19 09:07:10 -04:00
|
|
|
}
|
|
|
|
|
2015-10-06 17:11:08 -04:00
|
|
|
func (config *ConnectionConfig) Settings(configType config.Type) interface{} {
|
|
|
|
creator, found := configCache[getConfigKey(config.Protocol(), configType)]
|
|
|
|
if !found {
|
|
|
|
panic("Unknown protocol " + config.Protocol())
|
2015-09-19 09:35:20 -04:00
|
|
|
}
|
2015-10-06 17:11:08 -04:00
|
|
|
configObj := creator()
|
|
|
|
err := json.Unmarshal(config.SettingsMessage, configObj)
|
2015-09-19 09:35:20 -04:00
|
|
|
if err != nil {
|
2015-10-06 17:11:08 -04:00
|
|
|
log.Error("Unable to parse connection config: %v", err)
|
|
|
|
panic("Failed to parse connection config.")
|
2015-09-19 09:35:20 -04:00
|
|
|
}
|
2015-10-06 17:11:08 -04:00
|
|
|
return configObj
|
2015-09-19 09:07:10 -04:00
|
|
|
}
|
|
|
|
|
2015-10-09 11:43:27 -04:00
|
|
|
type LogConfig struct {
|
|
|
|
AccessLogValue string `json:"access"`
|
|
|
|
}
|
|
|
|
|
|
|
|
func (config *LogConfig) AccessLog() string {
|
|
|
|
return config.AccessLogValue
|
|
|
|
}
|
|
|
|
|
2015-09-19 09:07:10 -04:00
|
|
|
// Config is the config for Point server.
|
|
|
|
type Config struct {
|
2015-09-19 09:35:20 -04:00
|
|
|
PortValue uint16 `json:"port"` // Port of this Point server.
|
2015-10-09 11:43:27 -04:00
|
|
|
LogConfigValue *LogConfig `json:"log"`
|
2015-09-19 09:07:10 -04:00
|
|
|
InboundConfigValue *ConnectionConfig `json:"inbound"`
|
|
|
|
OutboundConfigValue *ConnectionConfig `json:"outbound"`
|
|
|
|
}
|
|
|
|
|
|
|
|
func (config *Config) Port() uint16 {
|
2015-09-19 09:35:20 -04:00
|
|
|
return config.PortValue
|
2015-09-19 09:07:10 -04:00
|
|
|
}
|
|
|
|
|
2015-10-09 11:43:27 -04:00
|
|
|
func (config *Config) LogConfig() config.LogConfig {
|
2015-10-10 06:14:04 -04:00
|
|
|
if config.LogConfigValue == nil {
|
|
|
|
return nil
|
|
|
|
}
|
2015-10-09 11:43:27 -04:00
|
|
|
return config.LogConfigValue
|
|
|
|
}
|
|
|
|
|
2015-10-06 17:11:08 -04:00
|
|
|
func (config *Config) InboundConfig() config.ConnectionConfig {
|
2015-10-10 06:14:04 -04:00
|
|
|
if config.InboundConfigValue == nil {
|
|
|
|
return nil
|
|
|
|
}
|
2015-09-19 09:35:20 -04:00
|
|
|
return config.InboundConfigValue
|
2015-09-19 09:07:10 -04:00
|
|
|
}
|
|
|
|
|
2015-10-06 17:11:08 -04:00
|
|
|
func (config *Config) OutboundConfig() config.ConnectionConfig {
|
2015-10-10 06:14:04 -04:00
|
|
|
if config.OutboundConfigValue == nil {
|
|
|
|
return nil
|
|
|
|
}
|
2015-09-19 09:35:20 -04:00
|
|
|
return config.OutboundConfigValue
|
2015-09-19 09:07:10 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
func LoadConfig(file string) (*Config, error) {
|
2015-09-20 05:45:40 -04:00
|
|
|
fixedFile := os.ExpandEnv(file)
|
|
|
|
rawConfig, err := ioutil.ReadFile(fixedFile)
|
2015-09-19 09:35:20 -04:00
|
|
|
if err != nil {
|
2015-10-06 17:11:08 -04:00
|
|
|
log.Error("Failed to read server config file (%s): %v", file, err)
|
2015-09-19 09:35:20 -04:00
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2015-09-19 09:07:10 -04:00
|
|
|
config := &Config{}
|
|
|
|
err = json.Unmarshal(rawConfig, config)
|
2015-10-04 10:53:37 -04:00
|
|
|
if err != nil {
|
2015-10-06 17:11:08 -04:00
|
|
|
log.Error("Failed to load server config: %v", err)
|
2015-10-04 10:53:37 -04:00
|
|
|
return nil, err
|
|
|
|
}
|
2015-09-19 09:35:20 -04:00
|
|
|
|
2015-09-19 09:07:10 -04:00
|
|
|
return config, err
|
|
|
|
}
|