2015-12-04 06:42:56 -05:00
|
|
|
package outbound
|
|
|
|
|
2016-01-20 11:31:43 -05:00
|
|
|
import (
|
2016-07-25 10:48:09 -04:00
|
|
|
"time"
|
|
|
|
|
2018-08-26 18:11:32 -04:00
|
|
|
"v2ray.com/core/common"
|
2017-01-13 17:42:39 -05:00
|
|
|
"v2ray.com/core/common/net"
|
2016-08-20 14:55:45 -04:00
|
|
|
"v2ray.com/core/common/protocol"
|
|
|
|
"v2ray.com/core/proxy/vmess"
|
2016-01-20 11:31:43 -05:00
|
|
|
)
|
|
|
|
|
2017-09-19 17:27:49 -04:00
|
|
|
func (h *Handler) handleSwitchAccount(cmd *protocol.CommandSwitchAccount) {
|
2018-08-26 18:11:32 -04:00
|
|
|
rawAccount := &vmess.Account{
|
2016-09-17 18:41:21 -04:00
|
|
|
Id: cmd.ID.String(),
|
|
|
|
AlterId: uint32(cmd.AlterIds),
|
2017-02-11 01:29:29 -05:00
|
|
|
SecuritySettings: &protocol.SecurityConfig{
|
|
|
|
Type: protocol.SecurityType_LEGACY,
|
|
|
|
},
|
2016-09-17 18:41:21 -04:00
|
|
|
}
|
2016-10-16 08:22:21 -04:00
|
|
|
|
2018-08-26 18:11:32 -04:00
|
|
|
account, err := rawAccount.AsAccount()
|
|
|
|
common.Must(err)
|
|
|
|
user := &protocol.MemoryUser{
|
2016-09-17 18:41:21 -04:00
|
|
|
Email: "",
|
|
|
|
Level: cmd.Level,
|
2018-08-26 18:11:32 -04:00
|
|
|
Account: account,
|
2016-05-28 07:44:11 -04:00
|
|
|
}
|
2017-01-13 17:42:39 -05:00
|
|
|
dest := net.TCPDestination(cmd.Host, cmd.Port)
|
2016-07-25 10:48:09 -04:00
|
|
|
until := time.Now().Add(time.Duration(cmd.ValidMin) * time.Minute)
|
2017-09-19 17:27:49 -04:00
|
|
|
h.serverList.AddServer(protocol.NewServerSpec(dest, protocol.BeforeTime(until), user))
|
2016-01-20 11:31:43 -05:00
|
|
|
}
|
|
|
|
|
2017-09-19 17:27:49 -04:00
|
|
|
func (h *Handler) handleCommand(dest net.Destination, cmd protocol.ResponseCommand) {
|
2016-01-20 11:31:43 -05:00
|
|
|
switch typedCommand := cmd.(type) {
|
2016-02-27 10:41:21 -05:00
|
|
|
case *protocol.CommandSwitchAccount:
|
2016-01-21 11:22:56 -05:00
|
|
|
if typedCommand.Host == nil {
|
2016-09-20 05:53:05 -04:00
|
|
|
typedCommand.Host = dest.Address
|
2016-01-21 11:22:56 -05:00
|
|
|
}
|
2017-09-19 17:27:49 -04:00
|
|
|
h.handleSwitchAccount(typedCommand)
|
2016-01-20 11:31:43 -05:00
|
|
|
default:
|
|
|
|
}
|
2015-12-04 06:42:56 -05:00
|
|
|
}
|