mirror of
https://gitee.com/goploy/goploy.git
synced 2024-12-05 05:29:23 +08:00
76 lines
1.6 KiB
Go
76 lines
1.6 KiB
Go
package core
|
|
|
|
import (
|
|
"github.com/zhenorzz/goploy/config"
|
|
"os"
|
|
"os/exec"
|
|
"path"
|
|
"path/filepath"
|
|
"strconv"
|
|
"strings"
|
|
)
|
|
|
|
//role
|
|
const (
|
|
RoleAdmin = "admin"
|
|
RoleManager = "manager"
|
|
RoleGroupManager = "group-manager"
|
|
RoleMember = "member"
|
|
)
|
|
|
|
//Roles all role
|
|
var Roles = [...]string{RoleAdmin, RoleManager, RoleGroupManager, RoleMember}
|
|
|
|
// NamespaceHeaderName namespace cookie name
|
|
const NamespaceHeaderName = "G-N-ID"
|
|
|
|
var (
|
|
AssetDir string
|
|
)
|
|
|
|
// GetAssetDir if env = 'production' return absolute else return relative
|
|
func GetAssetDir() string {
|
|
if AssetDir != "" {
|
|
return AssetDir
|
|
}
|
|
file, err := exec.LookPath(os.Args[0])
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
app, err := filepath.Abs(file)
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
i := strings.LastIndex(app, "/")
|
|
if i < 0 {
|
|
i = strings.LastIndex(app, "\\")
|
|
}
|
|
if i < 0 {
|
|
panic(err)
|
|
}
|
|
return app[0 : i+1]
|
|
}
|
|
|
|
func GetConfigFile() string {
|
|
return path.Join(GetAssetDir(), "goploy.toml")
|
|
}
|
|
|
|
func GetRepositoryPath() string {
|
|
if config.Toml.APP.RepositoryPath != "" {
|
|
return path.Join(config.Toml.APP.RepositoryPath, "repository")
|
|
}
|
|
return path.Join(GetAssetDir(), "repository")
|
|
}
|
|
|
|
func GetProjectFilePath(projectID int64) string {
|
|
return path.Join(GetRepositoryPath(), "project-file", "project_"+strconv.FormatInt(projectID, 10))
|
|
}
|
|
|
|
func GetProjectPath(projectID int64) string {
|
|
return path.Join(GetRepositoryPath(), "project_"+strconv.FormatInt(projectID, 10))
|
|
}
|
|
|
|
func GetTerminalLogPath(tlID int64) string {
|
|
return path.Join(GetRepositoryPath(), "terminal-log", strconv.FormatInt(tlID, 10)+".cast")
|
|
}
|