You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
cointop/cointop/util.go

65 lines
1.3 KiB
Go

package cointop
import (
"bytes"
"encoding/gob"
"os"
"path/filepath"
"runtime"
6 years ago
"strings"
5 years ago
"github.com/miguelmota/cointop/cointop/common/open"
)
// OpenLink opens the url in a browser
func (ct *Cointop) OpenLink() error {
open.URL(ct.RowLink())
return nil
}
// GetBytes returns the interface in bytes form
func GetBytes(key interface{}) ([]byte, error) {
var buf bytes.Buffer
enc := gob.NewEncoder(&buf)
err := enc.Encode(key)
if err != nil {
return nil, err
}
return buf.Bytes(), nil
}
// UserPreferredHomeDir returns the preferred home directory for the user
func UserPreferredHomeDir() string {
var home string
if runtime.GOOS == "windows" {
home = os.Getenv("HOMEDRIVE") + os.Getenv("HOMEPATH")
6 years ago
} else if runtime.GOOS == "linux" {
home = os.Getenv("XDG_CONFIG_HOME")
}
if home == "" {
home, _ = os.UserHomeDir()
}
return home
}
6 years ago
// NormalizePath normalizes and extends the path string
func NormalizePath(path string) string {
// expand tilde
if strings.HasPrefix(path, "~/") {
path = filepath.Join(UserPreferredHomeDir(), path[2:])
}
5 years ago
path = strings.Replace(path, "/", string(filepath.Separator), -1)
return path
}
// Slugify returns a slugified string
func (ct *Cointop) Slugify(s string) string {
s = strings.TrimSpace(strings.ToLower(s))
6 years ago
return s
}