Mirror of github.com/gissleh/irc
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

51 lines
1.4 KiB

6 years ago
  1. package irc
  2. import (
  3. "strconv"
  4. )
  5. // The Config for an IRC client.
  6. type Config struct {
  7. // The nick that you go by. By default it's "IrcUser"
  8. Nick string `json:"nick"`
  9. // Alternatives are a list of nicks to try if Nick is occupied, in order of preference. By default
  10. // it's your nick with numbers 1 through 9.
  11. Alternatives []string `json:"alternatives"`
  12. // User is sent along with all messages and commonly shown before the @ on join, quit, etc....
  13. // Some servers tack on a ~ in front of it if you do not have an ident server.
  14. User string `json:"user"`
  15. // RealName is shown in WHOIS as your real name. By default "..."
  16. RealName string `json:"realName"`
  17. // SkipSSLVerification disables SSL certificate verification. Do not do this
  18. // in production.
  19. SkipSSLVerification bool `json:"skipSslVerification"`
  20. // The Password used upon connection. This is not your NickServ/SASL password!
  21. Password string
  22. }
  23. // WithDefaults returns the config with the default values
  24. func (config Config) WithDefaults() Config {
  25. if config.Nick == "" {
  26. config.Nick = "IrcUser"
  27. }
  28. if config.User == "" {
  29. config.User = "IrcUser"
  30. }
  31. if config.RealName == "" {
  32. config.RealName = "..."
  33. }
  34. if len(config.Alternatives) == 0 {
  35. config.Alternatives = make([]string, 9)
  36. for i := 0; i < 9; i++ {
  37. config.Alternatives[i] = config.Nick + strconv.FormatInt(int64(i+1), 10)
  38. }
  39. }
  40. return config
  41. }