mirror of
https://github.com/v2fly/v2ray-core.git
synced 2024-11-02 17:27:50 -04:00
54 lines
1.3 KiB
Go
54 lines
1.3 KiB
Go
package v4
|
|
|
|
import (
|
|
"encoding/json"
|
|
|
|
"github.com/golang/protobuf/proto"
|
|
|
|
"github.com/v2fly/v2ray-core/v4/common/serial"
|
|
"github.com/v2fly/v2ray-core/v4/infra/conf/cfgcommon"
|
|
"github.com/v2fly/v2ray-core/v4/infra/conf/cfgcommon/loader"
|
|
"github.com/v2fly/v2ray-core/v4/proxy/blackhole"
|
|
)
|
|
|
|
type NoneResponse struct{}
|
|
|
|
func (*NoneResponse) Build() (proto.Message, error) {
|
|
return new(blackhole.NoneResponse), nil
|
|
}
|
|
|
|
type HTTPResponse struct{}
|
|
|
|
func (*HTTPResponse) Build() (proto.Message, error) {
|
|
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)
|
|
}
|
|
responseSettings, err := response.(cfgcommon.Buildable).Build()
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
config.Response = serial.ToTypedMessage(responseSettings)
|
|
}
|
|
|
|
return config, nil
|
|
}
|
|
|
|
var configLoader = loader.NewJSONConfigLoader(
|
|
loader.ConfigCreatorCache{
|
|
"none": func() interface{} { return new(NoneResponse) },
|
|
"http": func() interface{} { return new(HTTPResponse) },
|
|
},
|
|
"type",
|
|
"")
|