ssh.go 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103
  1. package ssh
  2. import (
  3. "github.com/jsmartx/giter/util"
  4. "github.com/kevinburke/ssh_config"
  5. "os"
  6. fs "io/ioutil"
  7. "path/filepath"
  8. )
  9. type Config struct {
  10. cfg *ssh_config.Config
  11. }
  12. func loadConfig() *ssh_config.Config {
  13. p, err := util.JoinPath("~/.ssh/", "config")
  14. if err != nil {
  15. return nil
  16. }
  17. f, err := os.Open(p)
  18. defer f.Close()
  19. if err != nil {
  20. return nil
  21. }
  22. cfg, err := ssh_config.Decode(f)
  23. if err != nil {
  24. return nil
  25. }
  26. return cfg
  27. }
  28. func saveConfig(cfg *ssh_config.Config) error {
  29. root, err := util.Mkdir("~/.ssh/")
  30. if err != nil {
  31. return err
  32. }
  33. b, err := cfg.MarshalText()
  34. if err != nil {
  35. return err
  36. }
  37. cfgPath := filepath.Join(root, "config")
  38. // write marshaled data to the file
  39. return fs.WriteFile(cfgPath, b, 0755)
  40. }
  41. func New() *Config {
  42. cfg := loadConfig()
  43. if cfg != nil {
  44. return &Config{cfg: cfg}
  45. }
  46. cfg = &ssh_config.Config{
  47. Hosts: make([]*ssh_config.Host, 0),
  48. }
  49. saveConfig(cfg)
  50. return &Config{cfg: cfg}
  51. }
  52. type Host struct {
  53. Key string
  54. Hostname string
  55. Port string
  56. IdentityFile string
  57. }
  58. func (h *Host) Transform() (*ssh_config.Host, error) {
  59. pattern, err := ssh_config.NewPattern(h.Key)
  60. if err != nil {
  61. return nil, err
  62. }
  63. nodes := make([]ssh_config.Node, 0)
  64. if h.Hostname != "" {
  65. nodes = append(nodes, &ssh_config.KV{Key: " HostName", Value: h.Hostname})
  66. }
  67. if h.Port != "" {
  68. nodes = append(nodes, &ssh_config.KV{Key: " Port", Value: h.Port})
  69. }
  70. if h.IdentityFile != "" {
  71. nodes = append(nodes, &ssh_config.KV{Key: " IdentityFile", Value: h.IdentityFile})
  72. }
  73. nodes = append(nodes, &ssh_config.Empty{})
  74. return &ssh_config.Host{
  75. Patterns: []*ssh_config.Pattern{pattern},
  76. Nodes: nodes,
  77. EOLComment: " -- added by giter",
  78. }, nil
  79. }
  80. func (c *Config) SetHost(h *Host) error {
  81. host, err := h.Transform()
  82. if err != nil {
  83. return err
  84. }
  85. for i, v := range c.cfg.Hosts {
  86. for _, pattern := range v.Patterns {
  87. if pattern.String() == h.Key {
  88. c.cfg.Hosts[i] = host
  89. return saveConfig(c.cfg)
  90. }
  91. }
  92. }
  93. c.cfg.Hosts = append(c.cfg.Hosts, host)
  94. return saveConfig(c.cfg)
  95. }