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.

74 lines
2.0 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. // Auto-join on invite (bad idea).
  28. AutoJoinInvites bool `json:"autoJoinInvites"`
  29. // Use SASL authorization if supported.
  30. SASL *SASLConfig `json:"sasl"`
  31. }
  32. type SASLConfig struct {
  33. AuthenticationIdentity string `json:"authenticationIdentity"`
  34. AuthorizationIdentity string `json:"authorizationIdentity"`
  35. Password string `json:"password"`
  36. }
  37. // WithDefaults returns the config with the default values
  38. func (config Config) WithDefaults() Config {
  39. if config.Nick == "" {
  40. config.Nick = "IrcUser"
  41. }
  42. if config.User == "" {
  43. config.User = "IrcUser"
  44. }
  45. if config.RealName == "" {
  46. config.RealName = "..."
  47. }
  48. if len(config.Alternatives) == 0 {
  49. config.Alternatives = make([]string, 9)
  50. for i := 0; i < 9; i++ {
  51. config.Alternatives[i] = config.Nick + strconv.FormatInt(int64(i+1), 10)
  52. }
  53. }
  54. if config.SendRate <= 0 {
  55. config.SendRate = 2
  56. }
  57. return config
  58. }