2019-02-10 13:04:11 -05:00
|
|
|
package conf
|
|
|
|
|
|
|
|
import (
|
|
|
|
"sort"
|
|
|
|
|
|
|
|
"github.com/golang/protobuf/proto"
|
|
|
|
|
2021-02-16 15:31:50 -05:00
|
|
|
"github.com/v2fly/v2ray-core/v4/transport/internet/headers/http"
|
|
|
|
"github.com/v2fly/v2ray-core/v4/transport/internet/headers/noop"
|
|
|
|
"github.com/v2fly/v2ray-core/v4/transport/internet/headers/srtp"
|
|
|
|
"github.com/v2fly/v2ray-core/v4/transport/internet/headers/tls"
|
|
|
|
"github.com/v2fly/v2ray-core/v4/transport/internet/headers/utp"
|
|
|
|
"github.com/v2fly/v2ray-core/v4/transport/internet/headers/wechat"
|
|
|
|
"github.com/v2fly/v2ray-core/v4/transport/internet/headers/wireguard"
|
2019-02-10 13:04:11 -05:00
|
|
|
)
|
|
|
|
|
|
|
|
type NoOpAuthenticator struct{}
|
|
|
|
|
|
|
|
func (NoOpAuthenticator) Build() (proto.Message, error) {
|
|
|
|
return new(noop.Config), nil
|
|
|
|
}
|
|
|
|
|
|
|
|
type NoOpConnectionAuthenticator struct{}
|
|
|
|
|
|
|
|
func (NoOpConnectionAuthenticator) Build() (proto.Message, error) {
|
|
|
|
return new(noop.ConnectionConfig), nil
|
|
|
|
}
|
|
|
|
|
|
|
|
type SRTPAuthenticator struct{}
|
|
|
|
|
|
|
|
func (SRTPAuthenticator) Build() (proto.Message, error) {
|
|
|
|
return new(srtp.Config), nil
|
|
|
|
}
|
|
|
|
|
|
|
|
type UTPAuthenticator struct{}
|
|
|
|
|
|
|
|
func (UTPAuthenticator) Build() (proto.Message, error) {
|
|
|
|
return new(utp.Config), nil
|
|
|
|
}
|
|
|
|
|
|
|
|
type WechatVideoAuthenticator struct{}
|
|
|
|
|
|
|
|
func (WechatVideoAuthenticator) Build() (proto.Message, error) {
|
|
|
|
return new(wechat.VideoConfig), nil
|
|
|
|
}
|
|
|
|
|
|
|
|
type WireguardAuthenticator struct{}
|
|
|
|
|
|
|
|
func (WireguardAuthenticator) Build() (proto.Message, error) {
|
|
|
|
return new(wireguard.WireguardConfig), nil
|
|
|
|
}
|
|
|
|
|
|
|
|
type DTLSAuthenticator struct{}
|
|
|
|
|
|
|
|
func (DTLSAuthenticator) Build() (proto.Message, error) {
|
|
|
|
return new(tls.PacketConfig), nil
|
|
|
|
}
|
|
|
|
|
2020-10-11 07:22:46 -04:00
|
|
|
type AuthenticatorRequest struct {
|
2019-02-10 13:04:11 -05:00
|
|
|
Version string `json:"version"`
|
|
|
|
Method string `json:"method"`
|
|
|
|
Path StringList `json:"path"`
|
|
|
|
Headers map[string]*StringList `json:"headers"`
|
|
|
|
}
|
|
|
|
|
|
|
|
func sortMapKeys(m map[string]*StringList) []string {
|
|
|
|
var keys []string
|
|
|
|
for key := range m {
|
|
|
|
keys = append(keys, key)
|
|
|
|
}
|
|
|
|
sort.Strings(keys)
|
|
|
|
return keys
|
|
|
|
}
|
|
|
|
|
2020-10-11 07:22:46 -04:00
|
|
|
func (v *AuthenticatorRequest) Build() (*http.RequestConfig, error) {
|
2019-02-10 13:04:11 -05:00
|
|
|
config := &http.RequestConfig{
|
|
|
|
Uri: []string{"/"},
|
|
|
|
Header: []*http.Header{
|
|
|
|
{
|
|
|
|
Name: "Host",
|
|
|
|
Value: []string{"www.baidu.com", "www.bing.com"},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
Name: "User-Agent",
|
|
|
|
Value: []string{
|
|
|
|
"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/53.0.2785.143 Safari/537.36",
|
|
|
|
"Mozilla/5.0 (iPhone; CPU iPhone OS 10_0_2 like Mac OS X) AppleWebKit/601.1 (KHTML, like Gecko) CriOS/53.0.2785.109 Mobile/14A456 Safari/601.1.46",
|
|
|
|
},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
Name: "Accept-Encoding",
|
|
|
|
Value: []string{"gzip, deflate"},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
Name: "Connection",
|
|
|
|
Value: []string{"keep-alive"},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
Name: "Pragma",
|
|
|
|
Value: []string{"no-cache"},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
if len(v.Version) > 0 {
|
|
|
|
config.Version = &http.Version{Value: v.Version}
|
|
|
|
}
|
|
|
|
|
|
|
|
if len(v.Method) > 0 {
|
|
|
|
config.Method = &http.Method{Value: v.Method}
|
|
|
|
}
|
|
|
|
|
|
|
|
if len(v.Path) > 0 {
|
|
|
|
config.Uri = append([]string(nil), (v.Path)...)
|
|
|
|
}
|
|
|
|
|
|
|
|
if len(v.Headers) > 0 {
|
|
|
|
config.Header = make([]*http.Header, 0, len(v.Headers))
|
|
|
|
headerNames := sortMapKeys(v.Headers)
|
|
|
|
for _, key := range headerNames {
|
|
|
|
value := v.Headers[key]
|
|
|
|
if value == nil {
|
|
|
|
return nil, newError("empty HTTP header value: " + key).AtError()
|
|
|
|
}
|
|
|
|
config.Header = append(config.Header, &http.Header{
|
|
|
|
Name: key,
|
|
|
|
Value: append([]string(nil), (*value)...),
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return config, nil
|
|
|
|
}
|
|
|
|
|
2020-10-11 07:22:46 -04:00
|
|
|
type AuthenticatorResponse struct {
|
2019-02-10 13:04:11 -05:00
|
|
|
Version string `json:"version"`
|
|
|
|
Status string `json:"status"`
|
|
|
|
Reason string `json:"reason"`
|
|
|
|
Headers map[string]*StringList `json:"headers"`
|
|
|
|
}
|
|
|
|
|
2020-10-11 07:22:46 -04:00
|
|
|
func (v *AuthenticatorResponse) Build() (*http.ResponseConfig, error) {
|
2019-02-10 13:04:11 -05:00
|
|
|
config := &http.ResponseConfig{
|
|
|
|
Header: []*http.Header{
|
|
|
|
{
|
|
|
|
Name: "Content-Type",
|
|
|
|
Value: []string{"application/octet-stream", "video/mpeg"},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
Name: "Transfer-Encoding",
|
|
|
|
Value: []string{"chunked"},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
Name: "Connection",
|
|
|
|
Value: []string{"keep-alive"},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
Name: "Pragma",
|
|
|
|
Value: []string{"no-cache"},
|
|
|
|
},
|
|
|
|
{
|
|
|
|
Name: "Cache-Control",
|
|
|
|
Value: []string{"private", "no-cache"},
|
|
|
|
},
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
if len(v.Version) > 0 {
|
|
|
|
config.Version = &http.Version{Value: v.Version}
|
|
|
|
}
|
|
|
|
|
|
|
|
if len(v.Status) > 0 || len(v.Reason) > 0 {
|
|
|
|
config.Status = &http.Status{
|
|
|
|
Code: "200",
|
|
|
|
Reason: "OK",
|
|
|
|
}
|
|
|
|
if len(v.Status) > 0 {
|
|
|
|
config.Status.Code = v.Status
|
|
|
|
}
|
|
|
|
if len(v.Reason) > 0 {
|
|
|
|
config.Status.Reason = v.Reason
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if len(v.Headers) > 0 {
|
|
|
|
config.Header = make([]*http.Header, 0, len(v.Headers))
|
|
|
|
headerNames := sortMapKeys(v.Headers)
|
|
|
|
for _, key := range headerNames {
|
|
|
|
value := v.Headers[key]
|
|
|
|
if value == nil {
|
|
|
|
return nil, newError("empty HTTP header value: " + key).AtError()
|
|
|
|
}
|
|
|
|
config.Header = append(config.Header, &http.Header{
|
|
|
|
Name: key,
|
|
|
|
Value: append([]string(nil), (*value)...),
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return config, nil
|
|
|
|
}
|
|
|
|
|
2020-10-11 07:22:46 -04:00
|
|
|
type Authenticator struct {
|
|
|
|
Request AuthenticatorRequest `json:"request"`
|
|
|
|
Response AuthenticatorResponse `json:"response"`
|
2019-02-10 13:04:11 -05:00
|
|
|
}
|
|
|
|
|
2020-10-11 07:22:46 -04:00
|
|
|
func (v *Authenticator) Build() (proto.Message, error) {
|
2019-02-10 13:04:11 -05:00
|
|
|
config := new(http.Config)
|
|
|
|
requestConfig, err := v.Request.Build()
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
config.Request = requestConfig
|
|
|
|
|
|
|
|
responseConfig, err := v.Response.Build()
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
config.Response = responseConfig
|
|
|
|
|
|
|
|
return config, nil
|
|
|
|
}
|