client.go 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. package client
  2. import (
  3. "context"
  4. "fmt"
  5. "github.com/ip2location/ip2location-go/v9"
  6. "github.com/vladimirok5959/golang-ip2location/internal/consts"
  7. )
  8. const dbFileName = "IP2LOCATION-LITE-DB3.BIN"
  9. type Client struct {
  10. ctx context.Context
  11. base *ip2location.DB
  12. }
  13. type Result struct {
  14. City string
  15. CountryLong string
  16. CountryShort string
  17. Region string
  18. }
  19. func New(ctx context.Context, shutdown context.CancelFunc) (*Client, error) {
  20. f, err := consts.DataPathFile(dbFileName)
  21. if err != nil {
  22. return nil, err
  23. }
  24. b, err := ip2location.OpenDB(f)
  25. if err != nil {
  26. return nil, err
  27. }
  28. c := Client{
  29. ctx: ctx,
  30. base: b,
  31. }
  32. return &c, nil
  33. }
  34. func (c *Client) IP2Location(ctx context.Context, ip string) (*Result, error) {
  35. if c.base == nil {
  36. return nil, fmt.Errorf("database is not opened")
  37. }
  38. r, err := c.base.Get_all(ip)
  39. return &Result{
  40. City: r.City,
  41. CountryLong: r.Country_long,
  42. CountryShort: r.Country_short,
  43. Region: r.Region,
  44. }, err
  45. }
  46. func (c *Client) ReloadDatabase(ctx context.Context) error {
  47. f, err := consts.DataPathFile(dbFileName)
  48. if err != nil {
  49. return err
  50. }
  51. b, err := ip2location.OpenDB(f)
  52. if err != nil {
  53. return err
  54. }
  55. c.base.Close()
  56. c.base = b
  57. return nil
  58. }
  59. func (c *Client) Shutdown(ctx context.Context) error {
  60. c.base.Close()
  61. return nil
  62. }