1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-09-18 18:06:13 -04:00
v2fly/transport/internet/authenticator.go

84 lines
1.8 KiB
Go
Raw Normal View History

2016-08-06 15:59:22 -04:00
package internet
import (
2016-08-20 14:55:45 -04:00
"v2ray.com/core/common"
"v2ray.com/core/common/alloc"
"v2ray.com/core/common/loader"
2016-08-06 15:59:22 -04:00
)
type Authenticator interface {
Seal(*alloc.Buffer)
Open(*alloc.Buffer) bool
Overhead() int
}
type AuthenticatorFactory interface {
Create(AuthenticatorConfig) Authenticator
}
type AuthenticatorConfig interface {
}
var (
authenticatorCache = make(map[string]AuthenticatorFactory)
configCache loader.ConfigLoader
)
func RegisterAuthenticator(name string, factory AuthenticatorFactory, configCreator loader.ConfigCreator) error {
if _, found := authenticatorCache[name]; found {
2016-08-18 02:34:21 -04:00
return common.ErrDuplicatedName
2016-08-06 15:59:22 -04:00
}
authenticatorCache[name] = factory
return configCache.RegisterCreator(name, configCreator)
}
func CreateAuthenticator(name string, config AuthenticatorConfig) (Authenticator, error) {
factory, found := authenticatorCache[name]
if !found {
2016-08-18 02:34:21 -04:00
return nil, common.ErrObjectNotFound
2016-08-06 15:59:22 -04:00
}
2016-08-08 16:47:59 -04:00
return factory.Create(config), nil
2016-08-06 15:59:22 -04:00
}
func CreateAuthenticatorConfig(rawConfig []byte) (string, AuthenticatorConfig, error) {
config, name, err := configCache.Load(rawConfig)
if err != nil {
return name, nil, err
}
return name, config, nil
}
type AuthenticatorChain struct {
authenticators []Authenticator
}
func NewAuthenticatorChain(auths ...Authenticator) Authenticator {
return &AuthenticatorChain{
authenticators: auths,
}
}
func (this *AuthenticatorChain) Overhead() int {
total := 0
for _, auth := range this.authenticators {
total += auth.Overhead()
}
return total
}
func (this *AuthenticatorChain) Open(payload *alloc.Buffer) bool {
for _, auth := range this.authenticators {
if !auth.Open(payload) {
return false
}
}
return true
}
func (this *AuthenticatorChain) Seal(payload *alloc.Buffer) {
for i := len(this.authenticators) - 1; i >= 0; i-- {
auth := this.authenticators[i]
auth.Seal(payload)
}
}