Commit cde63548 authored by ibuler's avatar ibuler

[Update] 修改一些变量

parent f7cf431a
...@@ -137,7 +137,7 @@ func (p *AssetPagination) displayPageAssets() { ...@@ -137,7 +137,7 @@ func (p *AssetPagination) displayPageAssets() {
row := make(map[string]string) row := make(map[string]string)
row["ID"] = strconv.Itoa(i + 1) row["ID"] = strconv.Itoa(i + 1)
row["hostname"] = j.Hostname row["hostname"] = j.Hostname
row["IP"] = j.Ip row["IP"] = j.IP
systemUser := selectHighestPrioritySystemUsers(j.SystemUsers) systemUser := selectHighestPrioritySystemUsers(j.SystemUsers)
names := make([]string, len(systemUser)) names := make([]string, len(systemUser))
......
...@@ -339,7 +339,7 @@ func (h *interactiveHandler) searchAsset(key string) (assets []model.Asset) { ...@@ -339,7 +339,7 @@ func (h *interactiveHandler) searchAsset(key string) (assets []model.Asset) {
key = strings.ToLower(key) key = strings.ToLower(key)
for _, assetValue := range searchData { for _, assetValue := range searchData {
contents := []string{strings.ToLower(assetValue.Hostname), contents := []string{strings.ToLower(assetValue.Hostname),
strings.ToLower(assetValue.Ip), strings.ToLower(assetValue.Comment)} strings.ToLower(assetValue.IP), strings.ToLower(assetValue.Comment)}
if isSubstring(contents, key) { if isSubstring(contents, key) {
assets = append(assets, assetValue) assets = append(assets, assetValue)
} }
...@@ -347,7 +347,7 @@ func (h *interactiveHandler) searchAsset(key string) (assets []model.Asset) { ...@@ -347,7 +347,7 @@ func (h *interactiveHandler) searchAsset(key string) (assets []model.Asset) {
// assetsData, _ := Cached.Load(h.user.ID) // assetsData, _ := Cached.Load(h.user.ID)
// for _, assetValue := range assetsData.([]model.Asset) { // for _, assetValue := range assetsData.([]model.Asset) {
// if isSubstring([]string{assetValue.Ip, assetValue.Hostname, assetValue.Comment}, key) { // if isSubstring([]string{assetValue.IP, assetValue.Hostname, assetValue.Comment}, key) {
// assets = append(assets, assetValue) // assets = append(assets, assetValue)
// } // }
// } // }
...@@ -462,7 +462,7 @@ func selectHighestPrioritySystemUsers(systemUsers []model.SystemUser) []model.Sy ...@@ -462,7 +462,7 @@ func selectHighestPrioritySystemUsers(systemUsers []model.SystemUser) []model.Sy
// sshConn := userhome.NewSSHConn(i.sess) // sshConn := userhome.NewSSHConn(i.sess)
// serverAuth := transport.ServerAuth{ // serverAuth := transport.ServerAuth{
// SessionID: uuid.NewV4().String(), // SessionID: uuid.NewV4().String(),
// IP: asset.Ip, // IP: asset.IP,
// port: asset.port, // port: asset.port,
// Username: systemUser.Username, // Username: systemUser.Username,
// password: systemUser.password, // password: systemUser.password,
......
...@@ -224,8 +224,8 @@ func (fs *userSftpRequests) Fileread(r *sftp.Request) (io.ReaderAt, error) { ...@@ -224,8 +224,8 @@ func (fs *userSftpRequests) Fileread(r *sftp.Request) (io.ReaderAt, error) {
func (fs *userSftpRequests) GetSftpClient(asset *model.Asset, sysUser *model.SystemUser) (*sftp.Client, error) { func (fs *userSftpRequests) GetSftpClient(asset *model.Asset, sysUser *model.SystemUser) (*sftp.Client, error) {
logger.Debug("Get Sftp Client") logger.Debug("Get Sftp Client")
info := service.GetSystemUserAssetAuthInfo(sysUser.Id, asset.Id) info := service.GetSystemUserAssetAuthInfo(sysUser.ID, asset.ID)
return CreateSFTPConn(sysUser.Username, info.Password, info.PrivateKey, asset.Ip, strconv.Itoa(asset.Port)) return CreateSFTPConn(sysUser.Username, info.Password, info.PrivateKey, asset.IP, strconv.Itoa(asset.Port))
} }
type HostNameDir struct { type HostNameDir struct {
......
package httpd package httpd
import ( import (
"github.com/googollee/go-socket.io"
"sync" "sync"
"github.com/gliderlabs/ssh" "github.com/gliderlabs/ssh"
socketio "github.com/googollee/go-socket.io"
"cocogo/pkg/model" "cocogo/pkg/model"
) )
var conns = &connections{container: make(map[string]*WebConn), mu: new(sync.RWMutex)}
type connections struct { type connections struct {
container map[string]*WebConn container map[string]*WebConn
mu *sync.RWMutex mu *sync.RWMutex
......
...@@ -80,10 +80,10 @@ func OnErrorHandler(e error) { ...@@ -80,10 +80,10 @@ func OnErrorHandler(e error) {
// OnHostHandler 当用户连接Host时触发 // OnHostHandler 当用户连接Host时触发
func OnHostHandler(s socketio.Conn, message HostMsg) { func OnHostHandler(s socketio.Conn, message HostMsg) {
// secret uuid string // secret uuid string
logger.Debug("OnHost trigger") logger.Debug("On host event trigger")
win := ssh.Window{Height: 24, Width: 80} win := ssh.Window{Height: 24, Width: 80}
assetID := message.Uuid assetID := message.Uuid
systemUserId := message.UserID systemUserID := message.UserID
secret := message.Secret secret := message.Secret
width, height := message.Size[0], message.Size[1] width, height := message.Size[0], message.Size[1]
if width != 0 { if width != 0 {
...@@ -97,9 +97,9 @@ func OnHostHandler(s socketio.Conn, message HostMsg) { ...@@ -97,9 +97,9 @@ func OnHostHandler(s socketio.Conn, message HostMsg) {
s.Emit("room", emitMsg) s.Emit("room", emitMsg)
logger.Debug("Asset id: ", assetID) logger.Debug("Asset id: ", assetID)
asset := service.GetAsset(assetID) asset := service.GetAsset(assetID)
systemUser := service.GetSystemUser(systemUserId) systemUser := service.GetSystemUser(systemUserID)
if asset.Id == "" || systemUser.Id == "" { if asset.ID == "" || systemUser.ID == "" {
return return
} }
...@@ -123,7 +123,7 @@ func OnHostHandler(s socketio.Conn, message HostMsg) { ...@@ -123,7 +123,7 @@ func OnHostHandler(s socketio.Conn, message HostMsg) {
// OnTokenHandler 当使用token连接时触发 // OnTokenHandler 当使用token连接时触发
func OnTokenHandler(s socketio.Conn, message TokenMsg) { func OnTokenHandler(s socketio.Conn, message TokenMsg) {
logger.Debug("OnToken trigger") logger.Debug("On token event trigger")
win := ssh.Window{Height: 24, Width: 80} win := ssh.Window{Height: 24, Width: 80}
token := message.Token token := message.Token
secret := message.Secret secret := message.Secret
...@@ -146,18 +146,18 @@ func OnTokenHandler(s socketio.Conn, message TokenMsg) { ...@@ -146,18 +146,18 @@ func OnTokenHandler(s socketio.Conn, message TokenMsg) {
s.Emit("disconnect") s.Emit("disconnect")
} }
tokenUser := service.GetTokenAsset(token) tokenUser := service.GetTokenAsset(token)
if tokenUser.UserId == "" { if tokenUser.UserID == "" {
msg := "Token info is none, maybe token expired" msg := "Token info is none, maybe token expired"
dataMsg := EmitDataMsg{Data: msg, Room: clientID} dataMsg := EmitDataMsg{Data: msg, Room: clientID}
s.Emit("data", dataMsg) s.Emit("data", dataMsg)
s.Emit("disconnect") s.Emit("disconnect")
} }
currentUser := service.GetUserDetail(tokenUser.UserId) currentUser := service.GetUserDetail(tokenUser.UserID)
asset := service.GetAsset(tokenUser.AssetId) asset := service.GetAsset(tokenUser.AssetID)
systemUser := service.GetSystemUser(tokenUser.SystemUserId) systemUser := service.GetSystemUser(tokenUser.SystemUserID)
if asset.Id == "" || systemUser.Id == "" { if asset.ID == "" || systemUser.ID == "" {
return return
} }
...@@ -201,7 +201,7 @@ func OnResizeHandler(s socketio.Conn, message ResizeMsg) { ...@@ -201,7 +201,7 @@ func OnResizeHandler(s socketio.Conn, message ResizeMsg) {
// OnLogoutHandler 用户登出一个会话时触发 // OnLogoutHandler 用户登出一个会话时触发
func OnLogoutHandler(s socketio.Conn, message string) { func OnLogoutHandler(s socketio.Conn, message string) {
logger.Debug("OnLogout trigger") logger.Debug("On logout event trigger")
conn := conns.GetWebConn(s.ID()) conn := conns.GetWebConn(s.ID())
if conn == nil { if conn == nil {
logger.Error("No conn found") logger.Error("No conn found")
...@@ -217,7 +217,7 @@ func OnLogoutHandler(s socketio.Conn, message string) { ...@@ -217,7 +217,7 @@ func OnLogoutHandler(s socketio.Conn, message string) {
// OnDisconnect websocket断开后触发 // OnDisconnect websocket断开后触发
func OnDisconnect(s socketio.Conn, msg string) { func OnDisconnect(s socketio.Conn, msg string) {
logger.Debug("OnDisconnect trigger") logger.Debug("On disconnect event trigger")
conn := conns.GetWebConn(s.ID()) conn := conns.GetWebConn(s.ID())
conn.Close() conn.Close()
} }
package httpd package httpd
import ( import (
"net/http"
"sync"
"github.com/googollee/go-socket.io" "github.com/googollee/go-socket.io"
"net"
"net/http"
"cocogo/pkg/config" "cocogo/pkg/config"
"cocogo/pkg/logger" "cocogo/pkg/logger"
...@@ -12,7 +11,6 @@ import ( ...@@ -12,7 +11,6 @@ import (
var ( var (
httpServer *http.Server httpServer *http.Server
conns = &connections{container: make(map[string]*WebConn), mu: new(sync.RWMutex)}
) )
func StartHTTPServer() { func StartHTTPServer() {
...@@ -34,7 +32,8 @@ func StartHTTPServer() { ...@@ -34,7 +32,8 @@ func StartHTTPServer() {
defer server.Close() defer server.Close()
http.Handle("/socket.io/", server) http.Handle("/socket.io/", server)
logger.Debug("start HTTP Serving ", conf.HTTPPort) addr := net.JoinHostPort(conf.BindHost, conf.HTTPPort)
httpServer = &http.Server{Addr: conf.BindHost + ":" + conf.HTTPPort, Handler: nil} logger.Debug("Start HTTP server at ", addr)
httpServer = &http.Server{Addr: addr, Handler: nil}
logger.Fatal(httpServer.ListenAndServe()) logger.Fatal(httpServer.ListenAndServe())
} }
...@@ -17,7 +17,7 @@ func (a AssetList) SortBy(tp string) AssetList { ...@@ -17,7 +17,7 @@ func (a AssetList) SortBy(tp string) AssetList {
case "ip": case "ip":
sorter := &assetSorter{ sorter := &assetSorter{
data: sortedAssets, data: sortedAssets,
sortBy: assetSortbyIP, sortBy: assetSortByIP,
} }
sort.Sort(sorter) sort.Sort(sorter)
default: default:
...@@ -46,9 +46,9 @@ func (s *assetSorter) Less(i, j int) bool { ...@@ -46,9 +46,9 @@ func (s *assetSorter) Less(i, j int) bool {
return s.sortBy(&s.data[i], &s.data[j]) return s.sortBy(&s.data[i], &s.data[j])
} }
func assetSortbyIP(asset1, asset2 *Asset) bool { func assetSortByIP(asset1, asset2 *Asset) bool {
iIPs := strings.Split(asset1.Ip, ".") iIPs := strings.Split(asset1.IP, ".")
jIPs := strings.Split(asset2.Ip, ".") jIPs := strings.Split(asset2.IP, ".")
for i := 0; i < len(iIPs); i++ { for i := 0; i < len(iIPs); i++ {
if i >= len(jIPs) { if i >= len(jIPs) {
return false return false
...@@ -75,9 +75,9 @@ func assetSortByHostName(asset1, asset2 *Asset) bool { ...@@ -75,9 +75,9 @@ func assetSortByHostName(asset1, asset2 *Asset) bool {
type NodeList []Node type NodeList []Node
type Asset struct { type Asset struct {
Id string `json:"id"` ID string `json:"id"`
Hostname string `json:"hostname"` Hostname string `json:"hostname"`
Ip string `json:"ip"` IP string `json:"ip"`
Port int `json:"port"` Port int `json:"port"`
SystemUsers []SystemUser `json:"system_users_granted"` SystemUsers []SystemUser `json:"system_users_granted"`
IsActive bool `json:"is_active"` IsActive bool `json:"is_active"`
...@@ -109,14 +109,14 @@ type Domain struct { ...@@ -109,14 +109,14 @@ type Domain struct {
} }
type Node struct { type Node struct {
Id string `json:"id"` ID string `json:"id"`
Key string `json:"key"` Key string `json:"key"`
Name string `json:"name"` Name string `json:"name"`
Value string `json:"value"` Value string `json:"value"`
Parent string `json:"parent"` Parent string `json:"parent"`
AssetsGranted []Asset `json:"assets_granted"` AssetsGranted []Asset `json:"assets_granted"`
AssetsAmount int `json:"assets_amount"` AssetsAmount int `json:"assets_amount"`
OrgId string `json:"org_id"` OrgID string `json:"org_id"`
} }
type nodeSortBy func(node1, node2 *Node) bool type nodeSortBy func(node1, node2 *Node) bool
...@@ -179,7 +179,7 @@ func SortAssetNodesByKey(assetNodes []Node) { ...@@ -179,7 +179,7 @@ func SortAssetNodesByKey(assetNodes []Node) {
const LoginModeManual = "manual" const LoginModeManual = "manual"
type SystemUser struct { type SystemUser struct {
Id string `json:"id"` ID string `json:"id"`
Name string `json:"name"` Name string `json:"name"`
Username string `json:"username"` Username string `json:"username"`
Priority int `json:"priority"` Priority int `json:"priority"`
...@@ -191,7 +191,7 @@ type SystemUser struct { ...@@ -191,7 +191,7 @@ type SystemUser struct {
} }
type SystemUserAuthInfo struct { type SystemUserAuthInfo struct {
Id string `json:"id"` ID string `json:"id"`
Name string `json:"name"` Name string `json:"name"`
UserName string `json:"username"` UserName string `json:"username"`
Protocol string `json:"protocol"` Protocol string `json:"protocol"`
......
package model package model
type Command struct { type Command struct {
SessionId string `json:"session"` SessionID string `json:"session"`
OrgId string `json:"org_id"` OrgID string `json:"org_id"`
Input string `json:"input"` Input string `json:"input"`
Output string `json:"output"` Output string `json:"output"`
User string `json:"user"` User string `json:"user"`
......
...@@ -4,7 +4,7 @@ type Terminal struct { ...@@ -4,7 +4,7 @@ type Terminal struct {
Name string `json:"name"` Name string `json:"name"`
Comment string `json:"comment"` Comment string `json:"comment"`
ServiceAccount struct { ServiceAccount struct {
Id string `json:"id"` ID string `json:"id"`
Name string `json:"name"` Name string `json:"name"`
AccessKey struct { AccessKey struct {
ID string `json:"id"` ID string `json:"id"`
...@@ -14,7 +14,7 @@ type Terminal struct { ...@@ -14,7 +14,7 @@ type Terminal struct {
} }
type TerminalTask struct { type TerminalTask struct {
Id string `json:"id"` ID string `json:"id"`
Name string `json:"name"` Name string `json:"name"`
Args string `json:"args"` Args string `json:"args"`
IsFinished bool IsFinished bool
......
...@@ -36,10 +36,10 @@ type User struct { ...@@ -36,10 +36,10 @@ type User struct {
} }
type TokenUser struct { type TokenUser struct {
UserId string `json:"user"` UserID string `json:"user"`
UserName string `json:"username"` UserName string `json:"username"`
AssetId string `json:"asset"` AssetID string `json:"asset"`
Hostname string `json:"hostname"` Hostname string `json:"hostname"`
SystemUserId string `json:"system_user"` SystemUserID string `json:"system_user"`
SystemUserName string `json:"system_user_name"` SystemUserName string `json:"system_user_name"`
} }
...@@ -24,7 +24,7 @@ type ProxyServer struct { ...@@ -24,7 +24,7 @@ type ProxyServer struct {
// getSystemUserAuthOrManualSet 获取系统用户的认证信息或手动设置 // getSystemUserAuthOrManualSet 获取系统用户的认证信息或手动设置
func (p *ProxyServer) getSystemUserAuthOrManualSet() { func (p *ProxyServer) getSystemUserAuthOrManualSet() {
info := service.GetSystemUserAssetAuthInfo(p.SystemUser.Id, p.Asset.Id) info := service.GetSystemUserAssetAuthInfo(p.SystemUser.ID, p.Asset.ID)
p.SystemUser.Password = info.Password p.SystemUser.Password = info.Password
p.SystemUser.PrivateKey = info.PrivateKey p.SystemUser.PrivateKey = info.PrivateKey
needManualSet := false needManualSet := false
...@@ -82,7 +82,7 @@ func (p *ProxyServer) checkProtocolIsGraph() bool { ...@@ -82,7 +82,7 @@ func (p *ProxyServer) checkProtocolIsGraph() bool {
// validatePermission 检查是否有权限连接 // validatePermission 检查是否有权限连接
func (p *ProxyServer) validatePermission() bool { func (p *ProxyServer) validatePermission() bool {
return service.ValidateUserAssetPermission( return service.ValidateUserAssetPermission(
p.User.ID, p.Asset.Id, p.SystemUser.Id, "connect", p.User.ID, p.Asset.ID, p.SystemUser.ID, "connect",
) )
} }
...@@ -149,7 +149,7 @@ func (p *ProxyServer) getServerConn() (srvConn srvconn.ServerConnection, err err ...@@ -149,7 +149,7 @@ func (p *ProxyServer) getServerConn() (srvConn srvconn.ServerConnection, err err
// sendConnectingMsg 发送连接信息 // sendConnectingMsg 发送连接信息
func (p *ProxyServer) sendConnectingMsg(done chan struct{}, delayDuration time.Duration) { func (p *ProxyServer) sendConnectingMsg(done chan struct{}, delayDuration time.Duration) {
delay := 0.0 delay := 0.0
msg := fmt.Sprintf(i18n.T("Connecting to %s@%s %.1f"), p.SystemUser.Username, p.Asset.Ip, delay) msg := fmt.Sprintf(i18n.T("Connecting to %s@%s %.1f"), p.SystemUser.Username, p.Asset.IP, delay)
utils.IgnoreErrWriteString(p.UserConn, msg) utils.IgnoreErrWriteString(p.UserConn, msg)
for int(delay) < int(delayDuration/time.Second) { for int(delay) < int(delayDuration/time.Second) {
select { select {
......
...@@ -119,13 +119,13 @@ func (r *ReplyRecorder) Record(b []byte) { ...@@ -119,13 +119,13 @@ func (r *ReplyRecorder) Record(b []byte) {
} }
func (r *ReplyRecorder) prepare() { func (r *ReplyRecorder) prepare() {
sessionId := r.sessionID sessionID := r.sessionID
rootPath := config.GetConf().RootPath rootPath := config.GetConf().RootPath
today := time.Now().UTC().Format("2006-01-02") today := time.Now().UTC().Format("2006-01-02")
gzFileName := sessionId + ".replay.gz" gzFileName := sessionID + ".replay.gz"
replayDir := filepath.Join(rootPath, "data", "replays", today) replayDir := filepath.Join(rootPath, "data", "replays", today)
r.absFilePath = filepath.Join(replayDir, sessionId) r.absFilePath = filepath.Join(replayDir, sessionID)
r.AbsGzFilePath = filepath.Join(replayDir, gzFileName) r.AbsGzFilePath = filepath.Join(replayDir, gzFileName)
r.Target = strings.Join([]string{today, gzFileName}, "/") r.Target = strings.Join([]string{today, gzFileName}, "/")
r.timeStartNano = time.Now().UnixNano() r.timeStartNano = time.Now().UnixNano()
......
...@@ -17,7 +17,7 @@ func HandleSessionTask(task model.TerminalTask) { ...@@ -17,7 +17,7 @@ func HandleSessionTask(task model.TerminalTask) {
switch task.Name { switch task.Name {
case "kill_session": case "kill_session":
KillSession(task.Args) KillSession(task.Args)
service.FinishTask(task.Id) service.FinishTask(task.ID)
default: default:
} }
...@@ -44,14 +44,14 @@ func GetAliveSessions() []string { ...@@ -44,14 +44,14 @@ func GetAliveSessions() []string {
func RemoveSession(sw *SwitchSession) { func RemoveSession(sw *SwitchSession) {
lock.Lock() lock.Lock()
defer lock.Unlock() defer lock.Unlock()
delete(sessionMap, sw.Id) delete(sessionMap, sw.ID)
finishSession(sw) finishSession(sw)
} }
func AddSession(sw *SwitchSession) { func AddSession(sw *SwitchSession) {
lock.Lock() lock.Lock()
defer lock.Unlock() defer lock.Unlock()
sessionMap[sw.Id] = sw sessionMap[sw.ID] = sw
} }
func CreateSession(p *ProxyServer) (sw *SwitchSession, err error) { func CreateSession(p *ProxyServer) (sw *SwitchSession, err error) {
...@@ -67,7 +67,7 @@ func CreateSession(p *ProxyServer) (sw *SwitchSession, err error) { ...@@ -67,7 +67,7 @@ func CreateSession(p *ProxyServer) (sw *SwitchSession, err error) {
return return
} }
// 获取系统用户的过滤规则,并设置 // 获取系统用户的过滤规则,并设置
cmdRules, err := service.GetSystemUserFilterRules(p.SystemUser.Id) cmdRules, err := service.GetSystemUserFilterRules(p.SystemUser.ID)
if err != nil { if err != nil {
msg := i18n.T("Connect with api server failed") msg := i18n.T("Connect with api server failed")
msg = utils.WrapperWarn(msg) msg = utils.WrapperWarn(msg)
...@@ -93,6 +93,6 @@ func postSession(s *SwitchSession) bool { ...@@ -93,6 +93,6 @@ func postSession(s *SwitchSession) bool {
func finishSession(s *SwitchSession) { func finishSession(s *SwitchSession) {
data := s.MapData() data := s.MapData()
service.FinishSession(data) service.FinishSession(data)
service.FinishReply(s.Id) service.FinishReply(s.ID)
logger.Debugf("Finish session: %s", s.Id) logger.Debugf("Finish session: %s", s.ID)
} }
...@@ -23,7 +23,7 @@ func NewSwitchSession(p *ProxyServer) (sw *SwitchSession) { ...@@ -23,7 +23,7 @@ func NewSwitchSession(p *ProxyServer) (sw *SwitchSession) {
} }
type SwitchSession struct { type SwitchSession struct {
Id string ID string
p *ProxyServer p *ProxyServer
DateStart string DateStart string
...@@ -45,11 +45,11 @@ type SwitchSession struct { ...@@ -45,11 +45,11 @@ type SwitchSession struct {
} }
func (s *SwitchSession) Initial() { func (s *SwitchSession) Initial() {
s.Id = uuid.NewV4().String() s.ID = uuid.NewV4().String()
s.DateStart = time.Now().UTC().Format("2006-01-02 15:04:05 +0000") s.DateStart = time.Now().UTC().Format("2006-01-02 15:04:05 +0000")
s.MaxIdleTime = config.GetConf().MaxIdleTime s.MaxIdleTime = config.GetConf().MaxIdleTime
s.cmdRecorder = NewCommandRecorder(s.Id) s.cmdRecorder = NewCommandRecorder(s.ID)
s.replayRecorder = NewReplyRecord(s.Id) s.replayRecorder = NewReplyRecord(s.ID)
s.parser = newParser() s.parser = newParser()
s.ctx, s.cancel = context.WithCancel(context.Background()) s.ctx, s.cancel = context.WithCancel(context.Background())
} }
...@@ -92,8 +92,8 @@ func (s *SwitchSession) generateCommandResult(command [2]string) *model.Command ...@@ -92,8 +92,8 @@ func (s *SwitchSession) generateCommandResult(command [2]string) *model.Command
} }
return &model.Command{ return &model.Command{
SessionId: s.Id, SessionID: s.ID,
OrgId: s.p.Asset.OrgID, OrgID: s.p.Asset.OrgID,
Input: input, Input: input,
Output: output, Output: output,
User: s.p.User.Username, User: s.p.User.Username,
...@@ -123,11 +123,11 @@ func (s *SwitchSession) SetFilterRules(cmdRules []model.SystemUserFilterRule) { ...@@ -123,11 +123,11 @@ func (s *SwitchSession) SetFilterRules(cmdRules []model.SystemUserFilterRule) {
func (s *SwitchSession) Bridge(userConn UserConnection, srvConn srvconn.ServerConnection) (err error) { func (s *SwitchSession) Bridge(userConn UserConnection, srvConn srvconn.ServerConnection) (err error) {
winCh := userConn.WinCh() winCh := userConn.WinCh()
// 将ReadWriter转换为Channel读写 // 将ReadWriter转换为Channel读写
s.srvTran = NewDirectTransport(s.Id, srvConn) s.srvTran = NewDirectTransport(s.ID, srvConn)
s.userTran = NewDirectTransport(s.Id, userConn) s.userTran = NewDirectTransport(s.ID, userConn)
defer func() { defer func() {
logger.Info("Session bridge done: ", s.Id) logger.Info("Session bridge done: ", s.ID)
s.postBridge() s.postBridge()
}() }()
...@@ -190,7 +190,7 @@ func (s *SwitchSession) MapData() map[string]interface{} { ...@@ -190,7 +190,7 @@ func (s *SwitchSession) MapData() map[string]interface{} {
dataEnd = s.DateEnd dataEnd = s.DateEnd
} }
return map[string]interface{}{ return map[string]interface{}{
"id": s.Id, "id": s.ID,
"user": s.p.User.Name, "user": s.p.User.Name,
"asset": s.p.Asset.Hostname, "asset": s.p.Asset.Hostname,
"org_id": s.p.Asset.OrgID, "org_id": s.p.Asset.OrgID,
......
...@@ -89,7 +89,6 @@ func LoadConfigFromServer() (err error) { ...@@ -89,7 +89,6 @@ func LoadConfigFromServer() (err error) {
func KeepSyncConfigWithServer() { func KeepSyncConfigWithServer() {
for { for {
logger.Debug("Sync config with server")
err := LoadConfigFromServer() err := LoadConfigFromServer()
if err != nil { if err != nil {
logger.Warn("Sync config with server error: ", err) logger.Warn("Sync config with server error: ", err)
......
...@@ -20,12 +20,12 @@ func GetUserAssets(userID, cachePolicy string) (assets model.AssetList) { ...@@ -20,12 +20,12 @@ func GetUserAssets(userID, cachePolicy string) (assets model.AssetList) {
return return
} }
func GetUserNodes(userId, cachePolicy string) (nodes model.NodeList) { func GetUserNodes(userID, cachePolicy string) (nodes model.NodeList) {
if cachePolicy == "" { if cachePolicy == "" {
cachePolicy = "0" cachePolicy = "0"
} }
payload := map[string]string{"cache_policy": cachePolicy} payload := map[string]string{"cache_policy": cachePolicy}
Url := fmt.Sprintf(UserNodesAssetsURL, userId) Url := fmt.Sprintf(UserNodesAssetsURL, userID)
err := authClient.Get(Url, &nodes, payload) err := authClient.Get(Url, &nodes, payload)
if err != nil { if err != nil {
logger.Error("GetUserNodes err") logger.Error("GetUserNodes err")
...@@ -33,11 +33,11 @@ func GetUserNodes(userId, cachePolicy string) (nodes model.NodeList) { ...@@ -33,11 +33,11 @@ func GetUserNodes(userId, cachePolicy string) (nodes model.NodeList) {
return return
} }
func ValidateUserAssetPermission(userId, assetId, systemUserId, action string) bool { func ValidateUserAssetPermission(userID, assetID, systemUserID, action string) bool {
payload := map[string]string{ payload := map[string]string{
"user_id": userId, "user_id": userID,
"asset_id": assetId, "asset_id": assetID,
"system_user_id": systemUserId, "system_user_id": systemUserID,
"action_name": action, "action_name": action,
} }
Url := ValidateUserAssetPermissionURL Url := ValidateUserAssetPermissionURL
......
...@@ -132,7 +132,7 @@ func newClient(asset *model.Asset, systemUser *model.SystemUser, timeout time.Du ...@@ -132,7 +132,7 @@ func newClient(asset *model.Asset, systemUser *model.SystemUser, timeout time.Du
} }
} }
sshConfig := SSHClientConfig{ sshConfig := SSHClientConfig{
Host: asset.Ip, Host: asset.IP,
Port: strconv.Itoa(asset.Port), Port: strconv.Itoa(asset.Port),
User: systemUser.Username, User: systemUser.Username,
Password: systemUser.Password, Password: systemUser.Password,
...@@ -145,13 +145,13 @@ func newClient(asset *model.Asset, systemUser *model.SystemUser, timeout time.Du ...@@ -145,13 +145,13 @@ func newClient(asset *model.Asset, systemUser *model.SystemUser, timeout time.Du
} }
func NewClient(user *model.User, asset *model.Asset, systemUser *model.SystemUser, timeout time.Duration) (client *gossh.Client, err error) { func NewClient(user *model.User, asset *model.Asset, systemUser *model.SystemUser, timeout time.Duration) (client *gossh.Client, err error) {
key := fmt.Sprintf("%s_%s_%s", user.ID, asset.Id, systemUser.Id) key := fmt.Sprintf("%s_%s_%s", user.ID, asset.ID, systemUser.ID)
clientLock.RLock() clientLock.RLock()
client, ok := sshClients[key] client, ok := sshClients[key]
clientLock.RUnlock() clientLock.RUnlock()
var u = user.Username var u = user.Username
var ip = asset.Ip var ip = asset.IP
var sysName = systemUser.Username var sysName = systemUser.Username
if ok { if ok {
...@@ -175,7 +175,7 @@ func NewClient(user *model.User, asset *model.Asset, systemUser *model.SystemUse ...@@ -175,7 +175,7 @@ func NewClient(user *model.User, asset *model.Asset, systemUser *model.SystemUse
} }
func GetClientFromCache(user *model.User, asset *model.Asset, systemUser *model.SystemUser) (client *gossh.Client) { func GetClientFromCache(user *model.User, asset *model.Asset, systemUser *model.SystemUser) (client *gossh.Client) {
key := fmt.Sprintf("%s_%s_%s", user.ID, asset.Id, systemUser.Id) key := fmt.Sprintf("%s_%s_%s", user.ID, asset.ID, systemUser.ID)
clientLock.Lock() clientLock.Lock()
defer clientLock.Unlock() defer clientLock.Unlock()
client, ok := sshClients[key] client, ok := sshClients[key]
......
...@@ -119,11 +119,11 @@ func (tc *ServerTelnetConnection) login(data []byte) AuthStatus { ...@@ -119,11 +119,11 @@ func (tc *ServerTelnetConnection) login(data []byte) AuthStatus {
return AuthFailed return AuthFailed
} else if usernamePattern.Match(data) { } else if usernamePattern.Match(data) {
_, _ = tc.conn.Write([]byte(tc.SystemUser.Username + "\r\n")) _, _ = tc.conn.Write([]byte(tc.SystemUser.Username + "\r\n"))
logger.Debug("usernamePattern ", tc.User) logger.Debug("Username pattern match: ", data)
return AuthPartial return AuthPartial
} else if passwordPattern.Match(data) { } else if passwordPattern.Match(data) {
_, _ = tc.conn.Write([]byte(tc.SystemUser.Password + "\r\n")) _, _ = tc.conn.Write([]byte(tc.SystemUser.Password + "\r\n"))
logger.Debug("passwordPattern ", tc.SystemUser.Password) logger.Debug("Password pattern ", data)
return AuthPartial return AuthPartial
} else if successPattern.Match(data) { } else if successPattern.Match(data) {
return AuthSuccess return AuthSuccess
...@@ -137,7 +137,7 @@ func (tc *ServerTelnetConnection) login(data []byte) AuthStatus { ...@@ -137,7 +137,7 @@ func (tc *ServerTelnetConnection) login(data []byte) AuthStatus {
} }
func (tc *ServerTelnetConnection) Connect(h, w int, term string) (err error) { func (tc *ServerTelnetConnection) Connect(h, w int, term string) (err error) {
var ip = tc.Asset.Ip var ip = tc.Asset.IP
var port = strconv.Itoa(tc.Asset.Port) var port = strconv.Itoa(tc.Asset.Port)
conn, err := net.DialTimeout("tcp", net.JoinHostPort(ip, port), tc.Timeout()) conn, err := net.DialTimeout("tcp", net.JoinHostPort(ip, port), tc.Timeout())
if err != nil { if err != nil {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment