service.go 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. package service
  2. import (
  3. "context"
  4. "image/color"
  5. "sync"
  6. "time"
  7. "go-common/app/interface/main/captcha/conf"
  8. "go-common/app/interface/main/captcha/dao"
  9. "go-common/library/cache"
  10. "go-common/library/ecode"
  11. "github.com/golang/freetype/truetype"
  12. )
  13. // Captcha captcha.
  14. type Captcha struct {
  15. frontColors []color.Color
  16. bkgColors []color.Color
  17. disturbLevel int
  18. fonts []*truetype.Font
  19. }
  20. // Service captcha service.
  21. type Service struct {
  22. conf *conf.Config
  23. dao *dao.Dao
  24. captcha *Captcha
  25. cacheCh *cache.Cache
  26. // captcha mem.
  27. init bool
  28. lock sync.RWMutex
  29. mCode map[string][]string
  30. mImage map[string]map[string][]byte
  31. }
  32. // New new a service.
  33. func New(c *conf.Config) (s *Service) {
  34. s = &Service{
  35. conf: c,
  36. dao: dao.New(c),
  37. captcha: newCaptcha(c.Captcha),
  38. cacheCh: cache.New(1, 1024),
  39. mCode: make(map[string][]string, len(c.Business)),
  40. mImage: make(map[string]map[string][]byte, len(c.Business)),
  41. }
  42. go s.generaterProc()
  43. return s
  44. }
  45. // Close close all dao.
  46. func (s *Service) Close() {
  47. s.dao.Close()
  48. }
  49. // Ping ping dao.
  50. func (s *Service) Ping(c context.Context) error {
  51. if !s.init {
  52. return ecode.CaptchaNotCreate
  53. }
  54. return s.dao.Ping(c)
  55. }
  56. func (s *Service) generaterProc() {
  57. waiter := &sync.WaitGroup{}
  58. for _, b := range s.conf.Business {
  59. waiter.Add(1)
  60. go s.initGenerater(waiter, b.BusinessID, b.LenStart, b.LenEnd, b.Width, b.Length)
  61. }
  62. waiter.Wait()
  63. s.init = true
  64. for {
  65. for _, b := range s.conf.Business {
  66. go s.generater(b.BusinessID, b.LenStart, b.LenEnd, b.Width, b.Length)
  67. }
  68. time.Sleep(time.Duration(s.conf.Captcha.Interval))
  69. }
  70. }