2016-01-15 06:43:06 -05:00
|
|
|
// +build json
|
|
|
|
|
|
|
|
package http
|
|
|
|
|
|
|
|
import (
|
2016-01-26 05:28:09 -05:00
|
|
|
"encoding/json"
|
|
|
|
|
|
|
|
v2net "github.com/v2ray/v2ray-core/common/net"
|
2016-01-15 06:43:06 -05:00
|
|
|
"github.com/v2ray/v2ray-core/proxy/internal/config"
|
|
|
|
)
|
|
|
|
|
2016-04-25 09:30:28 -04:00
|
|
|
func (this *TlsConfig) UnmarshalJSON(data []byte) error {
|
|
|
|
type JsonConfig struct {
|
|
|
|
Enabled bool
|
|
|
|
CertFile string
|
|
|
|
KeyFile string
|
|
|
|
}
|
|
|
|
jsonConfig := new(JsonConfig)
|
|
|
|
if err := json.Unmarshal(data, jsonConfig); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
this.Enabled = jsonConfig.Enabled
|
|
|
|
this.CertFile = jsonConfig.CertFile
|
|
|
|
this.KeyFile = jsonConfig.KeyFile
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2016-01-26 05:28:09 -05:00
|
|
|
func (this *Config) UnmarshalJSON(data []byte) error {
|
|
|
|
type JsonConfig struct {
|
|
|
|
Hosts []v2net.AddressJson `json:"ownHosts"`
|
2016-04-25 09:30:28 -04:00
|
|
|
Tls *TlsConfig `json:"tls"`
|
2016-01-26 05:28:09 -05:00
|
|
|
}
|
|
|
|
jsonConfig := new(JsonConfig)
|
|
|
|
if err := json.Unmarshal(data, jsonConfig); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
this.OwnHosts = make([]v2net.Address, len(jsonConfig.Hosts), len(jsonConfig.Hosts)+1)
|
|
|
|
for idx, host := range jsonConfig.Hosts {
|
|
|
|
this.OwnHosts[idx] = host.Address
|
|
|
|
}
|
|
|
|
|
|
|
|
v2rayHost := v2net.DomainAddress("local.v2ray.com")
|
|
|
|
if !this.IsOwnHost(v2rayHost) {
|
|
|
|
this.OwnHosts = append(this.OwnHosts, v2rayHost)
|
|
|
|
}
|
|
|
|
|
2016-04-25 09:30:28 -04:00
|
|
|
this.TlsConfig = jsonConfig.Tls
|
|
|
|
|
2016-01-26 05:28:09 -05:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2016-01-15 06:43:06 -05:00
|
|
|
func init() {
|
2016-01-25 11:19:09 -05:00
|
|
|
config.RegisterInboundConfig("http",
|
2016-01-15 06:43:06 -05:00
|
|
|
func(data []byte) (interface{}, error) {
|
2016-01-26 05:28:09 -05:00
|
|
|
rawConfig := new(Config)
|
|
|
|
err := json.Unmarshal(data, rawConfig)
|
|
|
|
return rawConfig, err
|
2016-01-15 06:43:06 -05:00
|
|
|
})
|
|
|
|
}
|