client.go 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103
  1. package fcm
  2. import (
  3. "bytes"
  4. "encoding/json"
  5. "fmt"
  6. "io/ioutil"
  7. "net/http"
  8. "time"
  9. )
  10. const (
  11. // PriorityHigh used for high notification priority
  12. PriorityHigh = "high"
  13. // PriorityNormal used for normal notification priority
  14. PriorityNormal = "normal"
  15. // HeaderRetryAfter HTTP header constant
  16. HeaderRetryAfter = "Retry-After"
  17. // ErrorKey readable error caching
  18. ErrorKey = "error"
  19. // MethodPOST indicates http post method
  20. MethodPOST = "POST"
  21. // ServerURL push server url
  22. ServerURL = "https://fcm.googleapis.com/fcm/send"
  23. )
  24. // retryableErrors whether the error is a retryable
  25. var retryableErrors = map[string]bool{
  26. "Unavailable": true,
  27. "InternalServerError": true,
  28. }
  29. // Client stores client with api key to firebase
  30. type Client struct {
  31. APIKey string
  32. HTTPClient *http.Client
  33. }
  34. // NewClient creates a new client
  35. func NewClient(apiKey string, timeout time.Duration) *Client {
  36. return &Client{
  37. APIKey: apiKey,
  38. HTTPClient: &http.Client{Timeout: timeout},
  39. }
  40. }
  41. func (f *Client) authorization() string {
  42. return fmt.Sprintf("key=%v", f.APIKey)
  43. }
  44. // Send sends message to FCM
  45. func (f *Client) Send(message *Message) (*Response, error) {
  46. data, err := json.Marshal(message)
  47. if err != nil {
  48. return &Response{}, err
  49. }
  50. req, err := http.NewRequest(MethodPOST, ServerURL, bytes.NewBuffer(data))
  51. if err != nil {
  52. return &Response{}, err
  53. }
  54. req.Header.Set("Authorization", f.authorization())
  55. req.Header.Set("Content-Type", "application/json")
  56. resp, err := f.HTTPClient.Do(req)
  57. if err != nil {
  58. return &Response{}, err
  59. }
  60. defer resp.Body.Close()
  61. response := &Response{StatusCode: resp.StatusCode}
  62. if resp.StatusCode >= 500 {
  63. response.RetryAfter = resp.Header.Get(HeaderRetryAfter)
  64. }
  65. if resp.StatusCode != 200 {
  66. return response, fmt.Errorf("fcm status code(%d)", resp.StatusCode)
  67. }
  68. body, err := ioutil.ReadAll(resp.Body)
  69. if err != nil {
  70. return response, err
  71. }
  72. if err := json.Unmarshal(body, &response); err != nil {
  73. return response, err
  74. }
  75. if err := f.Failed(response); err != nil {
  76. return response, err
  77. }
  78. response.Ok = true
  79. return response, nil
  80. }
  81. // Failed method indicates if the server couldn't process
  82. // the request in time.
  83. func (f *Client) Failed(response *Response) error {
  84. for _, response := range response.Results {
  85. if retryableErrors[response.Error] {
  86. return fmt.Errorf("fcm push error(%s)", response.Error)
  87. }
  88. }
  89. return nil
  90. }