sing-box/outbound/builder.go

39 lines
1.3 KiB
Go
Raw Normal View History

2022-07-02 06:07:50 +00:00
package outbound
import (
"github.com/sagernet/sing-box/adapter"
C "github.com/sagernet/sing-box/constant"
"github.com/sagernet/sing-box/log"
"github.com/sagernet/sing-box/option"
2022-07-08 15:03:57 +00:00
"github.com/sagernet/sing/common"
E "github.com/sagernet/sing/common/exceptions"
F "github.com/sagernet/sing/common/format"
2022-07-02 06:07:50 +00:00
)
func New(router adapter.Router, logger log.Logger, index int, options option.Outbound) (adapter.Outbound, error) {
2022-07-02 17:57:04 +00:00
if common.IsEmpty(options) {
return nil, E.New("empty outbound config")
}
2022-07-02 06:07:50 +00:00
var tag string
if options.Tag != "" {
tag = options.Tag
} else {
tag = F.ToString(index)
}
outboundLogger := logger.WithPrefix(F.ToString("outbound/", options.Type, "[", tag, "]: "))
switch options.Type {
case C.TypeDirect:
2022-07-02 17:57:04 +00:00
return NewDirect(router, outboundLogger, options.Tag, options.DirectOptions), nil
case C.TypeBlock:
return NewBlock(outboundLogger, options.Tag), nil
2022-07-03 05:14:49 +00:00
case C.TypeSocks:
return NewSocks(router, outboundLogger, options.Tag, options.SocksOptions)
case C.TypeHTTP:
return NewHTTP(router, outboundLogger, options.Tag, options.HTTPOptions), nil
2022-07-02 06:07:50 +00:00
case C.TypeShadowsocks:
2022-07-02 17:57:04 +00:00
return NewShadowsocks(router, outboundLogger, options.Tag, options.ShadowsocksOptions)
2022-07-02 06:07:50 +00:00
default:
2022-07-02 17:57:04 +00:00
return nil, E.New("unknown outbound type: ", options.Type)
2022-07-02 06:07:50 +00:00
}
}