1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-06-03 14:40:42 +00:00
v2fly/proxy/blackhole/config.go

72 lines
1.5 KiB
Go
Raw Normal View History

2015-12-06 17:21:15 +00:00
package blackhole
2016-06-10 20:26:39 +00:00
import (
2016-08-20 18:55:45 +00:00
"v2ray.com/core/common/alloc"
v2io "v2ray.com/core/common/io"
2016-06-10 20:26:39 +00:00
2016-09-22 10:01:36 +00:00
"github.com/golang/protobuf/proto"
"github.com/golang/protobuf/ptypes"
"github.com/golang/protobuf/ptypes/any"
"strings"
"v2ray.com/core/common/loader"
)
2016-06-10 20:26:39 +00:00
const (
http403response = `HTTP/1.1 403 Forbidden
Connection: close
Cache-Control: max-age=3600, public
Content-Length: 0
2016-06-10 21:01:17 +00:00
2016-06-10 20:26:39 +00:00
`
)
2016-09-22 10:01:36 +00:00
type ResponseConfig interface {
AsAny() *any.Any
WriteTo(v2io.Writer)
}
func (this *NoneResponse) WriteTo(v2io.Writer) {}
func (this *NoneResponse) AsAny() *any.Any {
r, _ := ptypes.MarshalAny(this)
return r
}
2016-06-10 20:26:39 +00:00
func (this *HTTPResponse) WriteTo(writer v2io.Writer) {
writer.Write(alloc.NewLocalBuffer(512).Clear().AppendString(http403response))
2015-12-06 17:21:15 +00:00
}
2016-09-22 10:01:36 +00:00
func (this *HTTPResponse) AsAny() *any.Any {
r, _ := ptypes.MarshalAny(this)
return r
}
func (this *Response) GetInternalResponse() (ResponseConfig, error) {
if this == nil {
return new(NoneResponse), nil
}
var r ResponseConfig
switch this.Type {
case Response_None:
r = new(NoneResponse)
case Response_HTTP:
r = new(HTTPResponse)
}
err := ptypes.UnmarshalAny(this.Settings, r.(proto.Message))
if err != nil {
return nil, err
}
return r, nil
}
var (
cache = loader.ConfigCreatorCache{}
)
func init() {
cache.RegisterCreator(strings.ToLower(Response_Type_name[int32(Response_None)]), func() interface{} { return new(NoneResponse) })
cache.RegisterCreator(strings.ToLower(Response_Type_name[int32(Response_HTTP)]), func() interface{} { return new(HTTPResponse) })
}