12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- package libbox
- import (
- "os"
- "os/user"
- "strconv"
- "github.com/sagernet/sing-box/common/humanize"
- C "github.com/sagernet/sing-box/constant"
- _ "github.com/sagernet/sing-box/include"
- )
- var (
- sBasePath string
- sWorkingPath string
- sTempPath string
- sUserID int
- sGroupID int
- sTVOS bool
- )
- func Setup(basePath string, workingPath string, tempPath string, isTVOS bool) {
- sBasePath = basePath
- sWorkingPath = workingPath
- sTempPath = tempPath
- sUserID = os.Getuid()
- sGroupID = os.Getgid()
- sTVOS = isTVOS
- os.MkdirAll(sWorkingPath, 0o777)
- os.MkdirAll(sTempPath, 0o777)
- }
- func SetupWithUsername(basePath string, workingPath string, tempPath string, username string) error {
- sBasePath = basePath
- sWorkingPath = workingPath
- sTempPath = tempPath
- sUser, err := user.Lookup(username)
- if err != nil {
- return err
- }
- sUserID, _ = strconv.Atoi(sUser.Uid)
- sGroupID, _ = strconv.Atoi(sUser.Gid)
- os.MkdirAll(sWorkingPath, 0o777)
- os.MkdirAll(sTempPath, 0o777)
- os.Chown(sWorkingPath, sUserID, sGroupID)
- os.Chown(sTempPath, sUserID, sGroupID)
- return nil
- }
- func Version() string {
- return C.Version
- }
- func FormatBytes(length int64) string {
- return humanize.Bytes(uint64(length))
- }
- func FormatMemoryBytes(length int64) string {
- return humanize.MemoryBytes(uint64(length))
- }
- func ProxyDisplayType(proxyType string) string {
- return C.ProxyDisplayName(proxyType)
- }
|