sms_config.go 1.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  1. package config
  2. import (
  3. "eta/eta_mini_ht_api/common/contants"
  4. "sync"
  5. )
  6. var (
  7. smsOnce sync.Once
  8. smsConfig *SMSConfig
  9. )
  10. type SMSOpts struct {
  11. SmsType string
  12. JhConfig JUHE
  13. EMASConfig EMAS
  14. }
  15. type SMSConfig struct {
  16. BaseConfig
  17. opts SMSOpts
  18. }
  19. type JUHE struct {
  20. Key string
  21. ExpireMinute int
  22. TlpId string
  23. }
  24. type EMAS struct {
  25. url string
  26. ExpireMinute int
  27. Template string
  28. }
  29. func (r *SMSConfig) GetSmsType() string {
  30. return r.opts.SmsType
  31. }
  32. func (r *SMSConfig) GetJhTlpId() string {
  33. return r.opts.JhConfig.TlpId
  34. }
  35. func (r *SMSConfig) GetJhExpireMinute() int {
  36. return r.opts.JhConfig.ExpireMinute
  37. }
  38. func (r *SMSConfig) GetEMASExpireMinute() int {
  39. return r.opts.EMASConfig.ExpireMinute
  40. }
  41. func (r *SMSConfig) GetEMASTemplate() string {
  42. return r.opts.EMASConfig.Template
  43. }
  44. func (r *SMSConfig) GetEMASUrl() string {
  45. return r.opts.EMASConfig.url
  46. }
  47. func (r *SMSConfig) GetKey() string {
  48. return r.opts.JhConfig.Key
  49. }
  50. func (r *SMSConfig) InitConfig() {
  51. opts := SMSOpts{
  52. SmsType: r.GetString("sms_type"),
  53. }
  54. switch opts.SmsType {
  55. case "juhe":
  56. opts.JhConfig.ExpireMinute = r.GetInt("juhe.expire_minute")
  57. opts.JhConfig.Key = r.GetString("juhe.key")
  58. opts.JhConfig.TlpId = r.GetString("juhe.tlp_id")
  59. case "emas":
  60. opts.EMASConfig.ExpireMinute = r.GetInt("emas.expire_minute")
  61. opts.EMASConfig.url = r.GetString("emas.url")
  62. opts.EMASConfig.Template = r.GetString("emas.template")
  63. default:
  64. }
  65. r.opts = opts
  66. }
  67. func NewSMSConfig() Config {
  68. if smsConfig == nil {
  69. smsOnce.Do(func() {
  70. smsConfig = &SMSConfig{
  71. BaseConfig: BaseConfig{prefix: contants.SMS},
  72. opts: SMSOpts{},
  73. }
  74. })
  75. }
  76. return smsConfig
  77. }
  78. func init() {
  79. Register(contants.SMS, NewSMSConfig)
  80. }