1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-06-20 22:45:24 +00:00
v2fly/proxy/blackhole/config_json.go

40 lines
1.0 KiB
Go
Raw Normal View History

// +build json
package blackhole
import (
2016-06-10 21:01:17 +00:00
"encoding/json"
2016-06-11 20:52:37 +00:00
"errors"
2016-06-10 21:01:17 +00:00
2016-08-20 18:55:45 +00:00
"v2ray.com/core/common/loader"
"v2ray.com/core/proxy/registry"
)
2016-06-10 20:26:39 +00:00
func (this *Config) UnmarshalJSON(data []byte) error {
2016-06-10 21:01:17 +00:00
type JSONConfig struct {
Response json.RawMessage `json:"response"`
}
jsonConfig := new(JSONConfig)
if err := json.Unmarshal(data, jsonConfig); err != nil {
2016-06-11 20:52:37 +00:00
return errors.New("Blackhole: Failed to parse config: " + err.Error())
2016-06-10 21:01:17 +00:00
}
2016-06-10 21:09:14 +00:00
this.Response = new(NoneResponse)
2016-06-10 23:32:55 +00:00
if jsonConfig.Response != nil {
2016-06-10 21:01:17 +00:00
loader := loader.NewJSONConfigLoader("type", "")
loader.RegisterCreator("none", func() interface{} { return new(NoneResponse) })
loader.RegisterCreator("http", func() interface{} { return new(HTTPResponse) })
2016-08-06 19:59:22 +00:00
response, _, err := loader.Load(jsonConfig.Response)
2016-06-10 21:01:17 +00:00
if err != nil {
2016-06-11 20:52:37 +00:00
return errors.New("Blackhole: Failed to parse response config: " + err.Error())
2016-06-10 21:01:17 +00:00
}
this.Response = response.(Response)
}
2016-06-10 20:26:39 +00:00
return nil
}
func init() {
registry.RegisterOutboundConfig("blackhole", func() interface{} { return new(Config) })
}