| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156 | package confimport (	"errors"	"v2ray.com/core/common/loader"	"v2ray.com/core/transport/internet/authenticators/http"	"v2ray.com/core/transport/internet/authenticators/noop"	"v2ray.com/core/transport/internet/authenticators/srtp"	"v2ray.com/core/transport/internet/authenticators/utp")type NoOpAuthenticator struct{}func (NoOpAuthenticator) Build() (*loader.TypedSettings, error) {	return loader.NewTypedSettings(new(noop.Config)), nil}type NoOpConnectionAuthenticator struct{}func (NoOpConnectionAuthenticator) Build() (*loader.TypedSettings, error) {	return loader.NewTypedSettings(new(noop.Config)), nil}type SRTPAuthenticator struct{}func (SRTPAuthenticator) Build() (*loader.TypedSettings, error) {	return loader.NewTypedSettings(new(srtp.Config)), nil}type UTPAuthenticator struct{}func (UTPAuthenticator) Build() (*loader.TypedSettings, error) {	return loader.NewTypedSettings(new(utp.Config)), nil}type HTTPAuthenticatorRequest struct {	Version *string                `json:"version"`	Method  *string                `json:"method"`	Path    *StringList            `json:"path"`	Headers map[string]*StringList `json:"headers"`}func (this *HTTPAuthenticatorRequest) Build() (*http.RequestConfig, error) {	config := &http.RequestConfig{		Uri: []string{"/"},		Header: []*http.Header{			{				Name:  "Host",				Value: []string{"www.baidu.com", "www.bing.com"},			},		},	}	if this.Version != nil {		config.Version = &http.Version{Value: *this.Version}	}	if this.Method != nil {		config.Method = &http.Method{Value: *this.Method}	}	if this.Path != nil && this.Path.Len() > 0 {		config.Uri = append([]string(nil), (*this.Path)...)	}	if len(this.Headers) > 0 {		config.Header = make([]*http.Header, 0, len(this.Headers))		for key, value := range this.Headers {			config.Header = append(config.Header, &http.Header{				Name:  key,				Value: append([]string(nil), (*value)...),			})		}	}	return config, nil}type HTTPAuthenticatorResponse struct {	Version *string                `json:"version"`	Status  *string                `json:"status"`	Reason  *string                `json:"reason"`	Headers map[string]*StringList `json:"headers"`}func (this *HTTPAuthenticatorResponse) Build() (*http.ResponseConfig, error) {	config := &http.ResponseConfig{		Header: []*http.Header{			{				Name:  "Content-Type",				Value: []string{"application/octet-stream", "video/mpeg"},			},			{				Name:  "Transfer-Encoding",				Value: []string{"chunked"},			},		},	}	if this.Version != nil {		config.Version = &http.Version{Value: *this.Version}	}	if this.Status != nil || this.Reason != nil {		config.Status = &http.Status{			Code:   "200",			Reason: "OK",		}		if this.Status != nil {			config.Status.Code = *this.Status		}		if this.Reason != nil {			config.Status.Reason = *this.Reason		}	}	if len(this.Headers) > 0 {		config.Header = make([]*http.Header, 0, len(this.Headers))		for key, value := range this.Headers {			config.Header = append(config.Header, &http.Header{				Name:  key,				Value: append([]string(nil), (*value)...),			})		}	}	return config, nil}type HTTPAuthenticator struct {	Request  *HTTPAuthenticatorRequest  `json:"request"`	Response *HTTPAuthenticatorResponse `json:"response"`}func (this *HTTPAuthenticator) Build() (*loader.TypedSettings, error) {	config := new(http.Config)	if this.Request == nil {		return nil, errors.New("HTTP request settings not set.")	}	requestConfig, err := this.Request.Build()	if err != nil {		return nil, err	}	config.Request = requestConfig	if this.Response != nil {		responseConfig, err := this.Response.Build()		if err != nil {			return nil, err		}		config.Response = responseConfig	}	return loader.NewTypedSettings(config), nil}
 |