util.go 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192
  1. package util
  2. import (
  3. "crypto/rand"
  4. "crypto/rsa"
  5. "crypto/x509"
  6. "encoding/pem"
  7. "errors"
  8. "fmt"
  9. "github.com/chzyer/readline"
  10. "github.com/mitchellh/go-homedir"
  11. "golang.org/x/crypto/ssh"
  12. "io"
  13. fs "io/ioutil"
  14. "net"
  15. "net/url"
  16. "os"
  17. "path/filepath"
  18. "regexp"
  19. )
  20. func Keygen(publicPath, privatePath string, bits int) error {
  21. privateKey, err := rsa.GenerateKey(rand.Reader, bits)
  22. if err != nil {
  23. return err
  24. }
  25. // generate and write private key as PEM
  26. privateFile, err := os.Create(privatePath)
  27. defer privateFile.Close()
  28. if err != nil {
  29. return err
  30. }
  31. privatePEM := &pem.Block{
  32. Type: "RSA PRIVATE KEY",
  33. Bytes: x509.MarshalPKCS1PrivateKey(privateKey),
  34. }
  35. if err := pem.Encode(privateFile, privatePEM); err != nil {
  36. return err
  37. }
  38. // generate and write public key
  39. publicKey, err := ssh.NewPublicKey(&privateKey.PublicKey)
  40. if err != nil {
  41. return err
  42. }
  43. return fs.WriteFile(publicPath, ssh.MarshalAuthorizedKey(publicKey), 0755)
  44. }
  45. func JoinHostPort(host, port string) string {
  46. if port != "" {
  47. return fmt.Sprintf("%s:%s", host, port)
  48. } else {
  49. return host
  50. }
  51. }
  52. func SplitHostPort(host string) (string, string) {
  53. h, p, err := net.SplitHostPort(host)
  54. if err != nil {
  55. return host, ""
  56. } else {
  57. return h, p
  58. }
  59. }
  60. var ScpRe = regexp.MustCompile(`^([a-zA-Z0-9_]+)@([a-zA-Z0-9._-]+):(.*)$`)
  61. var Schemes = []string{"git", "https", "http", "git+ssh", "ssh"}
  62. func ParseURL(repo string) (*url.URL, error) {
  63. var err error
  64. var repoURL *url.URL
  65. if m := ScpRe.FindStringSubmatch(repo); m != nil {
  66. repoURL = &url.URL{
  67. Scheme: "ssh",
  68. User: url.User(m[1]),
  69. Host: m[2],
  70. Path: m[3],
  71. }
  72. } else {
  73. repoURL, err = url.Parse(repo)
  74. if err != nil {
  75. return nil, err
  76. }
  77. }
  78. for _, scheme := range Schemes {
  79. if repoURL.Scheme == scheme {
  80. return repoURL, nil
  81. }
  82. }
  83. return nil, errors.New(repoURL.Scheme + " is not supported")
  84. }
  85. type PromptConfig struct {
  86. Prompt string
  87. Default string
  88. Silent bool
  89. }
  90. func (c *PromptConfig) String() string {
  91. if c.Default != "" {
  92. return fmt.Sprintf("%s(%s) ", c.Prompt, c.Default)
  93. } else {
  94. return c.Prompt
  95. }
  96. }
  97. func CheckError(err error) {
  98. if err == nil {
  99. return
  100. }
  101. fmt.Printf("\x1b[31;1m%s\x1b[0m\n", fmt.Sprintf("Error: %s", err))
  102. os.Exit(1)
  103. }
  104. func Prompt(cfg *PromptConfig) string {
  105. r, err := readline.NewEx(&readline.Config{
  106. Prompt: cfg.String(),
  107. EnableMask: cfg.Silent,
  108. MaskRune: 42,
  109. })
  110. CheckError(err)
  111. defer r.Close()
  112. for {
  113. line, err := r.Readline()
  114. CheckError(err)
  115. if line != "" {
  116. return line
  117. }
  118. if cfg.Default != "" {
  119. return cfg.Default
  120. }
  121. }
  122. }
  123. func IsExist(path string) bool {
  124. p, err := homedir.Expand(path)
  125. if err != nil {
  126. return false
  127. }
  128. if _, err := os.Stat(p); os.IsNotExist(err) {
  129. return false
  130. }
  131. return true
  132. }
  133. func Mkdir(paths ...string) (string, error) {
  134. p, err := homedir.Expand(filepath.Join(paths...))
  135. if err != nil {
  136. return "", err
  137. }
  138. if err := os.MkdirAll(p, 0755); err != nil {
  139. return "", err
  140. }
  141. return p, nil
  142. }
  143. func JoinPath(paths ...string) (string, error) {
  144. p, err := homedir.Expand(filepath.Join(paths...))
  145. if err != nil {
  146. return "", err
  147. }
  148. return p, nil
  149. }
  150. func Copy(src, dst string) error {
  151. in, err := os.Open(src)
  152. if err != nil {
  153. return err
  154. }
  155. defer in.Close()
  156. out, err := os.Create(dst)
  157. if err != nil {
  158. return err
  159. }
  160. defer out.Close()
  161. _, err = io.Copy(out, in)
  162. if err != nil {
  163. return err
  164. }
  165. return out.Close()
  166. }
  167. func SysSSHConfig() (string, error) {
  168. keypairs := []string{"~/.ssh/id_rsa", "~/.ssh/id_ed25519"}
  169. for _, k := range keypairs {
  170. if IsExist(k) && IsExist(k+".pub") {
  171. return homedir.Expand(k)
  172. }
  173. }
  174. return "", errors.New("System ssh config not found")
  175. }