2016-01-15 06:43:06 -05:00
|
|
|
// +build json
|
|
|
|
|
|
|
|
package http
|
|
|
|
|
|
|
|
import (
|
2016-05-07 04:06:12 -04:00
|
|
|
"crypto/tls"
|
2016-01-26 05:28:09 -05:00
|
|
|
"encoding/json"
|
|
|
|
|
2016-06-10 16:26:39 -04:00
|
|
|
"github.com/v2ray/v2ray-core/proxy/internal"
|
2016-01-15 06:43:06 -05:00
|
|
|
)
|
|
|
|
|
2016-05-29 10:46:31 -04:00
|
|
|
// UnmarshalJSON implements json.Unmarshaler
|
2016-05-07 04:06:12 -04:00
|
|
|
func (this *CertificateConfig) UnmarshalJSON(data []byte) error {
|
|
|
|
type JsonConfig struct {
|
|
|
|
Domain string `json:"domain"`
|
|
|
|
CertFile string `json:"cert"`
|
|
|
|
KeyFile string `json:"key"`
|
|
|
|
}
|
|
|
|
jsonConfig := new(JsonConfig)
|
|
|
|
if err := json.Unmarshal(data, jsonConfig); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
cert, err := tls.LoadX509KeyPair(jsonConfig.CertFile, jsonConfig.KeyFile)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
this.Domain = jsonConfig.Domain
|
|
|
|
this.Certificate = cert
|
2016-05-07 04:06:56 -04:00
|
|
|
return nil
|
2016-05-07 04:06:12 -04:00
|
|
|
}
|
|
|
|
|
2016-05-29 10:46:31 -04:00
|
|
|
// UnmarshalJSON implements json.Unmarshaler
|
|
|
|
func (this *TLSConfig) UnmarshalJSON(data []byte) error {
|
2016-04-25 09:30:28 -04:00
|
|
|
type JsonConfig struct {
|
2016-05-07 04:06:12 -04:00
|
|
|
Enabled bool `json:"enable"`
|
|
|
|
Certs []*CertificateConfig `json:"certs"`
|
2016-04-25 09:30:28 -04:00
|
|
|
}
|
|
|
|
jsonConfig := new(JsonConfig)
|
|
|
|
if err := json.Unmarshal(data, jsonConfig); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
this.Enabled = jsonConfig.Enabled
|
2016-05-07 04:06:12 -04:00
|
|
|
this.Certs = jsonConfig.Certs
|
2016-04-25 09:30:28 -04:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2016-05-29 10:46:31 -04:00
|
|
|
// UnmarshalJSON implements json.Unmarshaler
|
2016-01-26 05:28:09 -05:00
|
|
|
func (this *Config) UnmarshalJSON(data []byte) error {
|
|
|
|
type JsonConfig struct {
|
2016-05-29 10:46:31 -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
|
|
|
|
}
|
|
|
|
|
2016-05-29 10:46:31 -04:00
|
|
|
this.TLSConfig = jsonConfig.Tls
|
2016-04-25 09:30:28 -04:00
|
|
|
|
2016-01-26 05:28:09 -05:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2016-01-15 06:43:06 -05:00
|
|
|
func init() {
|
2016-06-10 16:26:39 -04:00
|
|
|
internal.RegisterInboundConfig("http", func() interface{} { return new(Config) })
|
2016-01-15 06:43:06 -05:00
|
|
|
}
|