Commit 84f24370 authored by Eric's avatar Eric

rename path

parent e1b0e42c
...@@ -329,7 +329,6 @@ ...@@ -329,7 +329,6 @@
"github.com/aws/aws-sdk-go/aws", "github.com/aws/aws-sdk-go/aws",
"github.com/aws/aws-sdk-go/aws/credentials", "github.com/aws/aws-sdk-go/aws/credentials",
"github.com/aws/aws-sdk-go/aws/session", "github.com/aws/aws-sdk-go/aws/session",
"github.com/aws/aws-sdk-go/service/s3",
"github.com/aws/aws-sdk-go/service/s3/s3manager", "github.com/aws/aws-sdk-go/service/s3/s3manager",
"github.com/elastic/go-elasticsearch", "github.com/elastic/go-elasticsearch",
"github.com/gliderlabs/ssh", "github.com/gliderlabs/ssh",
......
...@@ -3,15 +3,15 @@ BRANCH := $(shell git symbolic-ref HEAD 2>/dev/null | cut -d"/" -f 3) ...@@ -3,15 +3,15 @@ BRANCH := $(shell git symbolic-ref HEAD 2>/dev/null | cut -d"/" -f 3)
BUILD := $(shell git rev-parse --short HEAD) BUILD := $(shell git rev-parse --short HEAD)
VERSION = $(BRANCH)-$(BUILD) VERSION = $(BRANCH)-$(BUILD)
NAME := coco NAME := koko
DIRNAME := cocogo DIRNAME := kokodir
BASEPATH := $(shell pwd) BASEPATH := $(shell pwd)
CGO_ENABLED = 0 CGO_ENABLED = 0
GOCMD = go GOCMD = go
GOBUILD = $(GOCMD) build GOBUILD = $(GOCMD) build
SOFTWARENAME=$(NAME)-$(VERSION) SOFTWARENAME=$(NAME)-$(VERSION)
COCOSRCFILE= coco.go KOKOSRCFILE= koko.go
BUILDDIR:=$(BASEPATH)/../build BUILDDIR:=$(BASEPATH)/../build
ASSETS=locale static templates config_example.yml ASSETS=locale static templates config_example.yml
...@@ -30,14 +30,14 @@ Asset: ...@@ -30,14 +30,14 @@ Asset:
.PHONY: $(PLATFORMS) .PHONY: $(PLATFORMS)
$(PLATFORMS): Asset $(PLATFORMS): Asset
@echo "编译" $@ @echo "编译" $@
GOOS=$@ GOARCH=amd64 go build -o $(NAME) $(COCOSRCFILE) GOOS=$@ GOARCH=amd64 go build -o $(NAME) $(KOKOSRCFILE)
cp -f $(NAME) $(DIRNAME) cp -f $(NAME) $(DIRNAME)
tar czvf $(BUILDDIR)/$(SOFTWARENAME)-$@-amd64.tar.gz $(DIRNAME) tar czvf $(BUILDDIR)/$(SOFTWARENAME)-$@-amd64.tar.gz $(DIRNAME)
.PHONY: docker .PHONY: docker
docker: docker:
@echo "build docker images" @echo "build docker images"
docker build -t cocogo --build-arg http_proxy=$(http_proxy) --build-arg https_proxy=$(https_proxy) $(BASEPATH)/../ docker build -t koko --build-arg http_proxy=$(http_proxy) --build-arg https_proxy=$(https_proxy) $(BASEPATH)/../
.PHONY: clean .PHONY: clean
clean: clean:
......
NAME: coco2 NAME: coco3
BOOTSTRAP_TOKEN: PleaseChangeMe BOOTSTRAP_TOKEN: uuvdKUxvhW3v
CORE_HOST: http://127.0.0.1:8080 CORE_HOST: http://127.0.0.1:8080
LOG_LEVEL: INFO LOG_LEVEL: INFO
package main package main
import ( import (
"koko/pkg/coco" "github.com/jumpserver/koko/pkg/koko"
) )
func main() { func main() {
coco.RunForever() koko.RunForever()
} }
...@@ -6,12 +6,12 @@ import ( ...@@ -6,12 +6,12 @@ import (
"github.com/gliderlabs/ssh" "github.com/gliderlabs/ssh"
gossh "golang.org/x/crypto/ssh" gossh "golang.org/x/crypto/ssh"
"koko/pkg/cctx" "github.com/jumpserver/koko/pkg/cctx"
"koko/pkg/common" "github.com/jumpserver/koko/pkg/common"
"koko/pkg/config" "github.com/jumpserver/koko/pkg/config"
"koko/pkg/i18n" "github.com/jumpserver/koko/pkg/i18n"
"koko/pkg/logger" "github.com/jumpserver/koko/pkg/logger"
"koko/pkg/service" "github.com/jumpserver/koko/pkg/service"
) )
var mfaInstruction = i18n.T("Please enter 6 digits.") var mfaInstruction = i18n.T("Please enter 6 digits.")
......
...@@ -5,7 +5,7 @@ import ( ...@@ -5,7 +5,7 @@ import (
"github.com/gliderlabs/ssh" "github.com/gliderlabs/ssh"
"koko/pkg/model" "github.com/jumpserver/koko/pkg/model"
) )
type contextKey struct { type contextKey struct {
......
...@@ -128,7 +128,7 @@ func (c *Client) SetReqHeaders(req *http.Request) { ...@@ -128,7 +128,7 @@ func (c *Client) SetReqHeaders(req *http.Request) {
if req.Header.Get("Content-Type") == "" { if req.Header.Get("Content-Type") == "" {
req.Header.Set("Content-Type", "application/json") req.Header.Set("Content-Type", "application/json")
} }
req.Header.Set("user-Agent", "coco-client") req.Header.Set("user-Agent", "koko-client")
c.setAuthHeader(req) c.setAuthHeader(req)
} }
......
...@@ -8,10 +8,10 @@ import ( ...@@ -8,10 +8,10 @@ import (
"github.com/gliderlabs/ssh" "github.com/gliderlabs/ssh"
"koko/pkg/config" "github.com/jumpserver/koko/pkg/config"
"koko/pkg/i18n" "github.com/jumpserver/koko/pkg/i18n"
"koko/pkg/logger" "github.com/jumpserver/koko/pkg/logger"
"koko/pkg/utils" "github.com/jumpserver/koko/pkg/utils"
) )
var defaultTitle string var defaultTitle string
......
...@@ -5,11 +5,11 @@ import ( ...@@ -5,11 +5,11 @@ import (
"strconv" "strconv"
"strings" "strings"
"koko/pkg/common" "github.com/jumpserver/koko/pkg/common"
"koko/pkg/config" "github.com/jumpserver/koko/pkg/config"
"koko/pkg/i18n" "github.com/jumpserver/koko/pkg/i18n"
"koko/pkg/model" "github.com/jumpserver/koko/pkg/model"
"koko/pkg/utils" "github.com/jumpserver/koko/pkg/utils"
) )
func NewAssetPagination(term *utils.Terminal, assets []model.Asset) *AssetPagination { func NewAssetPagination(term *utils.Terminal, assets []model.Asset) *AssetPagination {
......
...@@ -12,14 +12,14 @@ import ( ...@@ -12,14 +12,14 @@ import (
"github.com/olekukonko/tablewriter" "github.com/olekukonko/tablewriter"
"github.com/xlab/treeprint" "github.com/xlab/treeprint"
"koko/pkg/cctx" "github.com/jumpserver/koko/pkg/cctx"
"koko/pkg/config" "github.com/jumpserver/koko/pkg/config"
"koko/pkg/i18n" "github.com/jumpserver/koko/pkg/i18n"
"koko/pkg/logger" "github.com/jumpserver/koko/pkg/logger"
"koko/pkg/model" "github.com/jumpserver/koko/pkg/model"
"koko/pkg/proxy" "github.com/jumpserver/koko/pkg/proxy"
"koko/pkg/service" "github.com/jumpserver/koko/pkg/service"
"koko/pkg/utils" "github.com/jumpserver/koko/pkg/utils"
) )
type assetsCacheContainer struct { type assetsCacheContainer struct {
......
...@@ -14,12 +14,12 @@ import ( ...@@ -14,12 +14,12 @@ import (
"github.com/pkg/sftp" "github.com/pkg/sftp"
gossh "golang.org/x/crypto/ssh" gossh "golang.org/x/crypto/ssh"
"koko/pkg/cctx" "github.com/jumpserver/koko/pkg/cctx"
"koko/pkg/config" "github.com/jumpserver/koko/pkg/config"
"koko/pkg/logger" "github.com/jumpserver/koko/pkg/logger"
"koko/pkg/model" "github.com/jumpserver/koko/pkg/model"
"koko/pkg/service" "github.com/jumpserver/koko/pkg/service"
"koko/pkg/srvconn" "github.com/jumpserver/koko/pkg/srvconn"
) )
func SftpHandler(sess ssh.Session) { func SftpHandler(sess ssh.Session) {
......
...@@ -6,7 +6,7 @@ import ( ...@@ -6,7 +6,7 @@ import (
"github.com/gliderlabs/ssh" "github.com/gliderlabs/ssh"
socketio "github.com/googollee/go-socket.io" socketio "github.com/googollee/go-socket.io"
"koko/pkg/model" "github.com/jumpserver/koko/pkg/model"
) )
type Client struct { type Client struct {
......
...@@ -6,7 +6,7 @@ import ( ...@@ -6,7 +6,7 @@ import (
"github.com/gliderlabs/ssh" "github.com/gliderlabs/ssh"
socketio "github.com/googollee/go-socket.io" socketio "github.com/googollee/go-socket.io"
"koko/pkg/model" "github.com/jumpserver/koko/pkg/model"
) )
var conns = &connections{container: make(map[string]*WebConn), mu: new(sync.RWMutex)} var conns = &connections{container: make(map[string]*WebConn), mu: new(sync.RWMutex)}
......
package httpd package httpd
import "koko/pkg/model" import "github.com/jumpserver/koko/pkg/model"
type WebContext struct { type WebContext struct {
User *model.User User *model.User
......
...@@ -11,10 +11,10 @@ import ( ...@@ -11,10 +11,10 @@ import (
socketio "github.com/googollee/go-socket.io" socketio "github.com/googollee/go-socket.io"
"github.com/gorilla/mux" "github.com/gorilla/mux"
"koko/pkg/cctx" "github.com/jumpserver/koko/pkg/cctx"
"koko/pkg/logger" "github.com/jumpserver/koko/pkg/logger"
"koko/pkg/model" "github.com/jumpserver/koko/pkg/model"
"koko/pkg/service" "github.com/jumpserver/koko/pkg/service"
) )
func AuthDecorator(handler http.HandlerFunc) http.HandlerFunc { func AuthDecorator(handler http.HandlerFunc) http.HandlerFunc {
......
...@@ -10,9 +10,9 @@ import ( ...@@ -10,9 +10,9 @@ import (
socketio "github.com/googollee/go-socket.io" socketio "github.com/googollee/go-socket.io"
uuid "github.com/satori/go.uuid" uuid "github.com/satori/go.uuid"
"koko/pkg/logger" "github.com/jumpserver/koko/pkg/logger"
"koko/pkg/proxy" "github.com/jumpserver/koko/pkg/proxy"
"koko/pkg/service" "github.com/jumpserver/koko/pkg/service"
) )
// OnConnectHandler 当websocket连接后触发 // OnConnectHandler 当websocket连接后触发
......
...@@ -8,8 +8,8 @@ import ( ...@@ -8,8 +8,8 @@ import (
socketio "github.com/googollee/go-socket.io" socketio "github.com/googollee/go-socket.io"
"github.com/gorilla/mux" "github.com/gorilla/mux"
"koko/pkg/config" "github.com/jumpserver/koko/pkg/config"
"koko/pkg/logger" "github.com/jumpserver/koko/pkg/logger"
) )
var ( var (
...@@ -43,9 +43,9 @@ func StartHTTPServer() { ...@@ -43,9 +43,9 @@ func StartHTTPServer() {
router.PathPrefix("/static/").Handler(http.StripPrefix("/static/", fs)) router.PathPrefix("/static/").Handler(http.StripPrefix("/static/", fs))
router.Handle("/socket.io/", server) router.Handle("/socket.io/", server)
router.HandleFunc("/coco/elfinder/sftp/{host}/", AuthDecorator(sftpHostFinder)) router.HandleFunc("/koko/elfinder/sftp/{host}/", AuthDecorator(sftpHostFinder))
router.HandleFunc("/coco/elfinder/sftp/", AuthDecorator(sftpFinder)) router.HandleFunc("/koko/elfinder/sftp/", AuthDecorator(sftpFinder))
router.HandleFunc("/coco/elfinder/sftp/connector/{host}/", router.HandleFunc("/koko/elfinder/sftp/connector/{host}/",
AuthDecorator(sftpHostConnectorView)).Methods("GET", "POST") AuthDecorator(sftpHostConnectorView)).Methods("GET", "POST")
addr := net.JoinHostPort(conf.BindHost, conf.HTTPPort) addr := net.JoinHostPort(conf.BindHost, conf.HTTPPort)
......
...@@ -12,12 +12,12 @@ import ( ...@@ -12,12 +12,12 @@ import (
"github.com/pkg/sftp" "github.com/pkg/sftp"
gossh "golang.org/x/crypto/ssh" gossh "golang.org/x/crypto/ssh"
"koko/pkg/common" "github.com/jumpserver/koko/pkg/common"
"koko/pkg/config" "github.com/jumpserver/koko/pkg/config"
"koko/pkg/logger" "github.com/jumpserver/koko/pkg/logger"
"koko/pkg/model" "github.com/jumpserver/koko/pkg/model"
"koko/pkg/service" "github.com/jumpserver/koko/pkg/service"
"koko/pkg/srvconn" "github.com/jumpserver/koko/pkg/srvconn"
) )
var ( var (
......
...@@ -6,16 +6,16 @@ import ( ...@@ -6,16 +6,16 @@ import (
"github.com/leonelquinteros/gotext" "github.com/leonelquinteros/gotext"
"koko/pkg/config" "github.com/jumpserver/koko/pkg/config"
) )
func init() { func init() {
cf := config.GetConf() cf := config.GetConf()
localePath := path.Join(cf.RootPath, "locale") localePath := path.Join(cf.RootPath, "locale")
if strings.HasPrefix(cf.Language, "zh") { if strings.HasPrefix(cf.Language, "zh") {
gotext.Configure(localePath, "zh_CN", "coco") gotext.Configure(localePath, "zh_CN", "koko")
} else { } else {
gotext.Configure(localePath, "en_US", "coco") gotext.Configure(localePath, "en_US", "koko")
} }
} }
......
...@@ -8,7 +8,7 @@ import ( ...@@ -8,7 +8,7 @@ import (
func TestT(t *testing.T) { func TestT(t *testing.T) {
//loc := gotext.NewLocale("./locale", "zh_CN") //loc := gotext.NewLocale("./locale", "zh_CN")
//loc.AddDomain("coco") //loc.AddDomain("koko")
fmt.Println(T("Welcome to use Jumpserver open source fortress system")) fmt.Println(T("Welcome to use Jumpserver open source fortress system"))
} }
......
package coco package koko
import ( import (
"fmt" "fmt"
...@@ -7,11 +7,11 @@ import ( ...@@ -7,11 +7,11 @@ import (
"syscall" "syscall"
"time" "time"
"koko/pkg/config" "github.com/jumpserver/koko/pkg/config"
"koko/pkg/httpd" "github.com/jumpserver/koko/pkg/httpd"
"koko/pkg/logger" "github.com/jumpserver/koko/pkg/logger"
"koko/pkg/service" "github.com/jumpserver/koko/pkg/service"
"koko/pkg/sshd" "github.com/jumpserver/koko/pkg/sshd"
) )
const version = "1.4.0" const version = "1.4.0"
......
package coco package koko
import ( import (
"os" "os"
...@@ -6,11 +6,11 @@ import ( ...@@ -6,11 +6,11 @@ import (
"strings" "strings"
"time" "time"
"koko/pkg/common" "github.com/jumpserver/koko/pkg/common"
"koko/pkg/config" "github.com/jumpserver/koko/pkg/config"
"koko/pkg/logger" "github.com/jumpserver/koko/pkg/logger"
"koko/pkg/proxy" "github.com/jumpserver/koko/pkg/proxy"
"koko/pkg/service" "github.com/jumpserver/koko/pkg/service"
) )
func Initial() { func Initial() {
......
...@@ -8,8 +8,8 @@ import ( ...@@ -8,8 +8,8 @@ import (
"github.com/sirupsen/logrus" "github.com/sirupsen/logrus"
"koko/pkg/common" "github.com/jumpserver/koko/pkg/common"
"koko/pkg/config" "github.com/jumpserver/koko/pkg/config"
) )
var logger = logrus.New() var logger = logrus.New()
...@@ -38,7 +38,7 @@ func Initial() { ...@@ -38,7 +38,7 @@ func Initial() {
logger.SetLevel(level) logger.SetLevel(level)
// Output to file // Output to file
logFilePath := path.Join(conf.RootPath, "logs", "coco.log") logFilePath := path.Join(conf.RootPath, "logs", "koko.log")
logDirPath := path.Dir(logFilePath) logDirPath := path.Dir(logFilePath)
if common.FileExists(logDirPath) { if common.FileExists(logDirPath) {
err := os.MkdirAll(logDirPath, os.ModePerm) err := os.MkdirAll(logDirPath, os.ModePerm)
......
...@@ -5,10 +5,10 @@ import ( ...@@ -5,10 +5,10 @@ import (
"fmt" "fmt"
"sync" "sync"
"koko/pkg/i18n" "github.com/jumpserver/koko/pkg/i18n"
"koko/pkg/logger" "github.com/jumpserver/koko/pkg/logger"
"koko/pkg/model" "github.com/jumpserver/koko/pkg/model"
"koko/pkg/utils" "github.com/jumpserver/koko/pkg/utils"
) )
var ( var (
......
...@@ -5,7 +5,7 @@ import ( ...@@ -5,7 +5,7 @@ import (
"regexp" "regexp"
"strings" "strings"
"koko/pkg/utils" "github.com/jumpserver/koko/pkg/utils"
) )
var ps1Pattern = regexp.MustCompile(`^\[?.*@.*\]?[\\$#]\s|mysql>\s`) var ps1Pattern = regexp.MustCompile(`^\[?.*@.*\]?[\\$#]\s|mysql>\s`)
......
...@@ -6,13 +6,13 @@ import ( ...@@ -6,13 +6,13 @@ import (
"strings" "strings"
"time" "time"
"koko/pkg/config" "github.com/jumpserver/koko/pkg/config"
"koko/pkg/i18n" "github.com/jumpserver/koko/pkg/i18n"
"koko/pkg/logger" "github.com/jumpserver/koko/pkg/logger"
"koko/pkg/model" "github.com/jumpserver/koko/pkg/model"
"koko/pkg/service" "github.com/jumpserver/koko/pkg/service"
"koko/pkg/srvconn" "github.com/jumpserver/koko/pkg/srvconn"
"koko/pkg/utils" "github.com/jumpserver/koko/pkg/utils"
) )
type ProxyServer struct { type ProxyServer struct {
......
...@@ -8,10 +8,10 @@ import ( ...@@ -8,10 +8,10 @@ import (
"strings" "strings"
"time" "time"
"koko/pkg/common" "github.com/jumpserver/koko/pkg/common"
"koko/pkg/config" "github.com/jumpserver/koko/pkg/config"
"koko/pkg/logger" "github.com/jumpserver/koko/pkg/logger"
"koko/pkg/model" "github.com/jumpserver/koko/pkg/model"
) )
func NewCommandRecorder(sid string) (recorder *CommandRecorder) { func NewCommandRecorder(sid string) (recorder *CommandRecorder) {
......
...@@ -8,7 +8,7 @@ import ( ...@@ -8,7 +8,7 @@ import (
"github.com/Azure/azure-storage-blob-go/azblob" "github.com/Azure/azure-storage-blob-go/azblob"
"koko/pkg/logger" "github.com/jumpserver/koko/pkg/logger"
) )
type AzureReplayStorage struct { type AzureReplayStorage struct {
......
...@@ -7,8 +7,8 @@ import ( ...@@ -7,8 +7,8 @@ import (
"github.com/elastic/go-elasticsearch" "github.com/elastic/go-elasticsearch"
"koko/pkg/logger" "github.com/jumpserver/koko/pkg/logger"
"koko/pkg/model" "github.com/jumpserver/koko/pkg/model"
) )
type ESCommandStorage struct { type ESCommandStorage struct {
......
...@@ -4,7 +4,7 @@ import ( ...@@ -4,7 +4,7 @@ import (
"fmt" "fmt"
"os" "os"
"koko/pkg/model" "github.com/jumpserver/koko/pkg/model"
) )
func NewFileCommandStorage(name string) (storage *FileCommandStorage, err error) { func NewFileCommandStorage(name string) (storage *FileCommandStorage, err error) {
......
...@@ -3,7 +3,7 @@ package recorderstorage ...@@ -3,7 +3,7 @@ package recorderstorage
import ( import (
"github.com/aliyun/aliyun-oss-go-sdk/oss" "github.com/aliyun/aliyun-oss-go-sdk/oss"
"koko/pkg/logger" "github.com/jumpserver/koko/pkg/logger"
) )
type OSSReplayStorage struct { type OSSReplayStorage struct {
......
...@@ -8,7 +8,7 @@ import ( ...@@ -8,7 +8,7 @@ import (
"github.com/aws/aws-sdk-go/aws/session" "github.com/aws/aws-sdk-go/aws/session"
"github.com/aws/aws-sdk-go/service/s3/s3manager" "github.com/aws/aws-sdk-go/service/s3/s3manager"
"koko/pkg/logger" "github.com/jumpserver/koko/pkg/logger"
) )
type S3ReplayStorage struct { type S3ReplayStorage struct {
......
...@@ -4,8 +4,8 @@ import ( ...@@ -4,8 +4,8 @@ import (
"path/filepath" "path/filepath"
"strings" "strings"
"koko/pkg/model" "github.com/jumpserver/koko/pkg/model"
"koko/pkg/service" "github.com/jumpserver/koko/pkg/service"
) )
type ServerCommandStorage struct { type ServerCommandStorage struct {
......
...@@ -4,11 +4,11 @@ import ( ...@@ -4,11 +4,11 @@ import (
"sync" "sync"
"time" "time"
"koko/pkg/i18n" "github.com/jumpserver/koko/pkg/i18n"
"koko/pkg/logger" "github.com/jumpserver/koko/pkg/logger"
"koko/pkg/model" "github.com/jumpserver/koko/pkg/model"
"koko/pkg/service" "github.com/jumpserver/koko/pkg/service"
"koko/pkg/utils" "github.com/jumpserver/koko/pkg/utils"
) )
var sessionMap = make(map[string]*SwitchSession) var sessionMap = make(map[string]*SwitchSession)
......
...@@ -8,12 +8,12 @@ import ( ...@@ -8,12 +8,12 @@ import (
uuid "github.com/satori/go.uuid" uuid "github.com/satori/go.uuid"
"koko/pkg/config" "github.com/jumpserver/koko/pkg/config"
"koko/pkg/i18n" "github.com/jumpserver/koko/pkg/i18n"
"koko/pkg/logger" "github.com/jumpserver/koko/pkg/logger"
"koko/pkg/model" "github.com/jumpserver/koko/pkg/model"
"koko/pkg/srvconn" "github.com/jumpserver/koko/pkg/srvconn"
"koko/pkg/utils" "github.com/jumpserver/koko/pkg/utils"
) )
func NewSwitchSession(p *ProxyServer) (sw *SwitchSession) { func NewSwitchSession(p *ProxyServer) (sw *SwitchSession) {
......
...@@ -3,7 +3,7 @@ package proxy ...@@ -3,7 +3,7 @@ package proxy
import ( import (
"io" "io"
"koko/pkg/logger" "github.com/jumpserver/koko/pkg/logger"
) )
type Transport interface { type Transport interface {
......
...@@ -3,9 +3,9 @@ package proxy ...@@ -3,9 +3,9 @@ package proxy
import ( import (
"strings" "strings"
"koko/pkg/config" "github.com/jumpserver/koko/pkg/config"
"koko/pkg/model" "github.com/jumpserver/koko/pkg/model"
storage "koko/pkg/proxy/recorderstorage" storage "github.com/jumpserver/koko/pkg/proxy/recorderstorage"
) )
type ReplayStorage interface { type ReplayStorage interface {
......
...@@ -8,9 +8,9 @@ import ( ...@@ -8,9 +8,9 @@ import (
"path" "path"
"strings" "strings"
"koko/pkg/common" "github.com/jumpserver/koko/pkg/common"
"koko/pkg/config" "github.com/jumpserver/koko/pkg/config"
"koko/pkg/logger" "github.com/jumpserver/koko/pkg/logger"
) )
var ( var (
......
...@@ -3,8 +3,8 @@ package service ...@@ -3,8 +3,8 @@ package service
import ( import (
"fmt" "fmt"
"koko/pkg/logger" "github.com/jumpserver/koko/pkg/logger"
"koko/pkg/model" "github.com/jumpserver/koko/pkg/model"
) )
func GetSystemUserAssetAuthInfo(systemUserID, assetID string) (info model.SystemUserAuthInfo) { func GetSystemUserAssetAuthInfo(systemUserID, assetID string) (info model.SystemUserAuthInfo) {
......
...@@ -7,9 +7,9 @@ import ( ...@@ -7,9 +7,9 @@ import (
"path/filepath" "path/filepath"
"time" "time"
"koko/pkg/common" "github.com/jumpserver/koko/pkg/common"
"koko/pkg/config" "github.com/jumpserver/koko/pkg/config"
"koko/pkg/logger" "github.com/jumpserver/koko/pkg/logger"
) )
var client = common.NewClient(30, "") var client = common.NewClient(30, "")
......
...@@ -3,8 +3,8 @@ package service ...@@ -3,8 +3,8 @@ package service
import ( import (
"fmt" "fmt"
"koko/pkg/logger" "github.com/jumpserver/koko/pkg/logger"
"koko/pkg/model" "github.com/jumpserver/koko/pkg/model"
) )
func GetUserAssets(userID, cachePolicy string) (assets model.AssetList) { func GetUserAssets(userID, cachePolicy string) (assets model.AssetList) {
......
...@@ -3,8 +3,8 @@ package service ...@@ -3,8 +3,8 @@ package service
import ( import (
"fmt" "fmt"
"koko/pkg/logger" "github.com/jumpserver/koko/pkg/logger"
"koko/pkg/model" "github.com/jumpserver/koko/pkg/model"
) )
func RegisterTerminal(name, token, comment string) (res model.Terminal) { func RegisterTerminal(name, token, comment string) (res model.Terminal) {
......
...@@ -5,8 +5,8 @@ import ( ...@@ -5,8 +5,8 @@ import (
"github.com/pkg/errors" "github.com/pkg/errors"
"koko/pkg/logger" "github.com/jumpserver/koko/pkg/logger"
"koko/pkg/model" "github.com/jumpserver/koko/pkg/model"
) )
type AuthResp struct { type AuthResp struct {
......
package srvconn package srvconn
import ( import (
"koko/pkg/service" "github.com/jumpserver/koko/pkg/service"
"encoding/json" "encoding/json"
"errors" "errors"
"fmt" "fmt"
...@@ -12,8 +12,8 @@ import ( ...@@ -12,8 +12,8 @@ import (
gossh "golang.org/x/crypto/ssh" gossh "golang.org/x/crypto/ssh"
"koko/pkg/logger" "github.com/jumpserver/koko/pkg/logger"
"koko/pkg/model" "github.com/jumpserver/koko/pkg/model"
) )
var ( var (
......
...@@ -7,7 +7,7 @@ import ( ...@@ -7,7 +7,7 @@ import (
gossh "golang.org/x/crypto/ssh" gossh "golang.org/x/crypto/ssh"
"koko/pkg/model" "github.com/jumpserver/koko/pkg/model"
) )
type ServerSSHConnection struct { type ServerSSHConnection struct {
......
...@@ -10,8 +10,8 @@ import ( ...@@ -10,8 +10,8 @@ import (
gossh "golang.org/x/crypto/ssh" gossh "golang.org/x/crypto/ssh"
"koko/pkg/logger" "github.com/jumpserver/koko/pkg/logger"
"koko/pkg/model" "github.com/jumpserver/koko/pkg/model"
) )
const ( const (
......
...@@ -7,7 +7,7 @@ import ( ...@@ -7,7 +7,7 @@ import (
"golang.org/x/crypto/ssh" "golang.org/x/crypto/ssh"
"koko/pkg/common" "github.com/jumpserver/koko/pkg/common"
) )
type HostKey struct { type HostKey struct {
......
...@@ -5,10 +5,10 @@ import ( ...@@ -5,10 +5,10 @@ import (
"github.com/gliderlabs/ssh" "github.com/gliderlabs/ssh"
"koko/pkg/auth" "github.com/jumpserver/koko/pkg/auth"
"koko/pkg/config" "github.com/jumpserver/koko/pkg/config"
"koko/pkg/handler" "github.com/jumpserver/koko/pkg/handler"
"koko/pkg/logger" "github.com/jumpserver/koko/pkg/logger"
) )
var sshServer *ssh.Server var sshServer *ssh.Server
......
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