1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-07-12 16:24:19 -04:00
v2fly/infra/conf/v4/blackhole.go

54 lines
1.3 KiB
Go
Raw Normal View History

package v4
2019-02-10 13:04:11 -05:00
import (
"encoding/json"
2021-06-19 08:04:50 -04:00
"github.com/v2fly/v2ray-core/v4/infra/conf/cfgcommon"
2021-06-19 08:28:20 -04:00
"github.com/v2fly/v2ray-core/v4/infra/conf/cfgcommon/loader"
2019-02-10 13:04:11 -05:00
"github.com/golang/protobuf/proto"
2021-02-16 15:31:50 -05:00
"github.com/v2fly/v2ray-core/v4/common/serial"
"github.com/v2fly/v2ray-core/v4/proxy/blackhole"
2019-02-10 13:04:11 -05:00
)
type NoneResponse struct{}
func (*NoneResponse) Build() (proto.Message, error) {
return new(blackhole.NoneResponse), nil
}
type HTTPResponse struct{}
2019-02-10 13:04:11 -05:00
func (*HTTPResponse) Build() (proto.Message, error) {
2019-02-10 13:04:11 -05:00
return new(blackhole.HTTPResponse), nil
}
type BlackholeConfig struct {
Response json.RawMessage `json:"response"`
}
func (v *BlackholeConfig) Build() (proto.Message, error) {
config := new(blackhole.Config)
if v.Response != nil {
response, _, err := configLoader.Load(v.Response)
if err != nil {
return nil, newError("Config: Failed to parse Blackhole response config.").Base(err)
}
2021-06-19 08:04:50 -04:00
responseSettings, err := response.(cfgcommon.Buildable).Build()
2019-02-10 13:04:11 -05:00
if err != nil {
return nil, err
}
config.Response = serial.ToTypedMessage(responseSettings)
}
return config, nil
}
2021-06-19 08:28:20 -04:00
var configLoader = loader.NewJSONConfigLoader(
loader.ConfigCreatorCache{
2021-05-19 17:28:52 -04:00
"none": func() interface{} { return new(NoneResponse) },
"http": func() interface{} { return new(HTTPResponse) },
},
"type",
"")