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.

62 lines
1.7 KiB

6 years ago
6 years ago
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 `json:"password"`
  22. // The rate (lines per second) to send with Client.SendQueued. Default is 2, which is how
  23. // clients that don't excess flood does it.
  24. SendRate int `json:"sendRate"`
  25. // Languages to request.
  26. Languages []string `json:"languages"`
  27. }
  28. // WithDefaults returns the config with the default values
  29. func (config Config) WithDefaults() Config {
  30. if config.Nick == "" {
  31. config.Nick = "IrcUser"
  32. }
  33. if config.User == "" {
  34. config.User = "IrcUser"
  35. }
  36. if config.RealName == "" {
  37. config.RealName = "..."
  38. }
  39. if len(config.Alternatives) == 0 {
  40. config.Alternatives = make([]string, 9)
  41. for i := 0; i < 9; i++ {
  42. config.Alternatives[i] = config.Nick + strconv.FormatInt(int64(i+1), 10)
  43. }
  44. }
  45. if config.SendRate <= 0 {
  46. config.SendRate = 2
  47. }
  48. return config
  49. }