v2fly/app/proxyman/command/command.go

150 lines
4.4 KiB
Go
Raw Normal View History

2018-02-05 22:38:24 +00:00
package command
import (
"context"
2021-06-19 13:36:54 +00:00
"github.com/v2fly/v2ray-core/v4/common/serial"
2018-02-05 22:38:24 +00:00
grpc "google.golang.org/grpc"
2018-10-21 08:27:13 +00:00
2021-02-16 20:31:50 +00:00
core "github.com/v2fly/v2ray-core/v4"
"github.com/v2fly/v2ray-core/v4/common"
"github.com/v2fly/v2ray-core/v4/features/inbound"
"github.com/v2fly/v2ray-core/v4/features/outbound"
"github.com/v2fly/v2ray-core/v4/proxy"
2018-02-05 22:38:24 +00:00
)
2018-02-08 21:53:01 +00:00
// InboundOperation is the interface for operations that applies to inbound handlers.
2018-02-05 22:38:24 +00:00
type InboundOperation interface {
2018-03-15 02:32:10 +00:00
// ApplyInbound applies this operation to the given inbound handler.
ApplyInbound(context.Context, inbound.Handler) error
2018-02-05 22:38:24 +00:00
}
2018-02-08 21:53:01 +00:00
// OutboundOperation is the interface for operations that applies to outbound handlers.
2018-02-05 22:38:24 +00:00
type OutboundOperation interface {
2018-02-08 21:53:01 +00:00
// ApplyOutbound applies this operation to the given outbound handler.
ApplyOutbound(context.Context, outbound.Handler) error
2018-02-05 22:38:24 +00:00
}
func getInbound(handler inbound.Handler) (proxy.Inbound, error) {
2018-02-08 21:53:01 +00:00
gi, ok := handler.(proxy.GetInbound)
2018-02-05 22:38:24 +00:00
if !ok {
2018-02-08 21:53:01 +00:00
return nil, newError("can't get inbound proxy from handler.")
}
return gi.GetInbound(), nil
}
// ApplyInbound implements InboundOperation.
func (op *AddUserOperation) ApplyInbound(ctx context.Context, handler inbound.Handler) error {
2018-02-08 21:53:01 +00:00
p, err := getInbound(handler)
if err != nil {
return err
2018-02-05 22:38:24 +00:00
}
um, ok := p.(proxy.UserManager)
if !ok {
return newError("proxy is not a UserManager")
2018-02-05 22:38:24 +00:00
}
2018-08-26 22:11:32 +00:00
mUser, err := op.User.ToMemoryUser()
if err != nil {
return newError("failed to parse user").Base(err)
}
return um.AddUser(ctx, mUser)
2018-02-05 22:38:24 +00:00
}
2018-02-08 21:53:01 +00:00
// ApplyInbound implements InboundOperation.
func (op *RemoveUserOperation) ApplyInbound(ctx context.Context, handler inbound.Handler) error {
2018-02-08 21:53:01 +00:00
p, err := getInbound(handler)
if err != nil {
return err
2018-02-05 22:38:24 +00:00
}
um, ok := p.(proxy.UserManager)
if !ok {
return newError("proxy is not a UserManager")
2018-02-05 22:38:24 +00:00
}
2018-02-08 21:53:01 +00:00
return um.RemoveUser(ctx, op.Email)
2018-02-05 22:38:24 +00:00
}
type handlerServer struct {
s *core.Instance
ihm inbound.Manager
2018-10-12 21:57:56 +00:00
ohm outbound.Manager
2018-02-05 22:38:24 +00:00
}
func (s *handlerServer) AddInbound(ctx context.Context, request *AddInboundRequest) (*AddInboundResponse, error) {
2018-10-21 19:27:05 +00:00
if err := core.AddInboundHandler(s.s, request.Inbound); err != nil {
2018-02-05 22:38:24 +00:00
return nil, err
}
2018-10-21 19:27:05 +00:00
return &AddInboundResponse{}, nil
2018-02-05 22:38:24 +00:00
}
func (s *handlerServer) RemoveInbound(ctx context.Context, request *RemoveInboundRequest) (*RemoveInboundResponse, error) {
return &RemoveInboundResponse{}, s.ihm.RemoveHandler(ctx, request.Tag)
}
func (s *handlerServer) AlterInbound(ctx context.Context, request *AlterInboundRequest) (*AlterInboundResponse, error) {
2021-06-19 13:36:54 +00:00
rawOperation, err := serial.GetInstanceOf(request.Operation)
2018-02-05 22:38:24 +00:00
if err != nil {
return nil, newError("unknown operation").Base(err)
}
operation, ok := rawOperation.(InboundOperation)
if !ok {
return nil, newError("not an inbound operation")
}
handler, err := s.ihm.GetHandler(ctx, request.Tag)
if err != nil {
return nil, newError("failed to get handler: ", request.Tag).Base(err)
}
return &AlterInboundResponse{}, operation.ApplyInbound(ctx, handler)
}
func (s *handlerServer) AddOutbound(ctx context.Context, request *AddOutboundRequest) (*AddOutboundResponse, error) {
2018-10-21 19:27:05 +00:00
if err := core.AddOutboundHandler(s.s, request.Outbound); err != nil {
2018-02-05 22:38:24 +00:00
return nil, err
}
2018-10-21 19:27:05 +00:00
return &AddOutboundResponse{}, nil
2018-02-05 22:38:24 +00:00
}
func (s *handlerServer) RemoveOutbound(ctx context.Context, request *RemoveOutboundRequest) (*RemoveOutboundResponse, error) {
return &RemoveOutboundResponse{}, s.ohm.RemoveHandler(ctx, request.Tag)
}
func (s *handlerServer) AlterOutbound(ctx context.Context, request *AlterOutboundRequest) (*AlterOutboundResponse, error) {
2021-06-19 13:36:54 +00:00
rawOperation, err := serial.GetInstanceOf(request.Operation)
2018-02-05 22:38:24 +00:00
if err != nil {
return nil, newError("unknown operation").Base(err)
}
operation, ok := rawOperation.(OutboundOperation)
if !ok {
return nil, newError("not an outbound operation")
}
handler := s.ohm.GetHandler(request.Tag)
return &AlterOutboundResponse{}, operation.ApplyOutbound(ctx, handler)
}
func (s *handlerServer) mustEmbedUnimplementedHandlerServiceServer() {}
2018-02-08 22:24:35 +00:00
type service struct {
v *core.Instance
2018-02-05 22:38:24 +00:00
}
2018-02-08 22:24:35 +00:00
func (s *service) Register(server *grpc.Server) {
2018-10-21 08:27:13 +00:00
hs := &handlerServer{
s: s.v,
}
2018-11-13 22:19:58 +00:00
common.Must(s.v.RequireFeatures(func(im inbound.Manager, om outbound.Manager) {
2018-10-22 09:26:22 +00:00
hs.ihm = im
hs.ohm = om
2018-11-13 22:19:58 +00:00
}))
2018-10-21 08:27:13 +00:00
RegisterHandlerServiceServer(server, hs)
2018-02-08 14:39:46 +00:00
}
2018-02-05 22:38:24 +00:00
func init() {
common.Must(common.RegisterConfig((*Config)(nil), func(ctx context.Context, cfg interface{}) (interface{}, error) {
2018-02-21 16:05:29 +00:00
s := core.MustFromContext(ctx)
2018-02-08 22:24:35 +00:00
return &service{v: s}, nil
2018-02-05 22:38:24 +00:00
}))
}