model.go 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220
  1. package fcm
  2. import "time"
  3. // Message represents fcm request message
  4. type (
  5. Message struct {
  6. // Data parameter specifies the custom key-value pairs of the message's payload.
  7. //
  8. // For example, with data:{"score":"3x1"}:
  9. //
  10. // On iOS, if the message is sent via APNS, it represents the custom data fields.
  11. // If it is sent via FCM connection server, it would be represented as key value dictionary
  12. // in AppDelegate application:didReceiveRemoteNotification:.
  13. // On Android, this would result in an intent extra named score with the string value 3x1.
  14. // The key should not be a reserved word ("from" or any word starting with "google" or "gcm").
  15. // Do not use any of the words defined in this table (such as collapse_key).
  16. // Values in string types are recommended. You have to convert values in objects
  17. // or other non-string data types (e.g., integers or booleans) to string.
  18. //
  19. Data interface{} `json:"data,omitempty"`
  20. // To this parameter specifies the recipient of a message.
  21. //
  22. // The value must be a registration token, notification key, or topic.
  23. // Do not set this field when sending to multiple topics. See Condition.
  24. To string `json:"to,omitempty"`
  25. // RegistrationIDs for all registration ids
  26. // This parameter specifies a list of devices
  27. // (registration tokens, or IDs) receiving a multicast message.
  28. // It must contain at least 1 and at most 1000 registration tokens.
  29. // Use this parameter only for multicast messaging, not for single recipients.
  30. // Multicast messages (sending to more than 1 registration tokens)
  31. // are allowed using HTTP JSON format only.
  32. RegistrationIDs []string `json:"registration_ids,omitempty"`
  33. // CollapseKey This parameter identifies a group of messages
  34. // (e.g., with collapse_key: "Updates Available") that can be collapsed,
  35. // so that only the last message gets sent when delivery can be resumed.
  36. // This is intended to avoid sending too many of the same messages when the
  37. // device comes back online or becomes active (see delay_while_idle).
  38. CollapseKey string `json:"collapse_key,omitempty"`
  39. // Priority Sets the priority of the message. Valid values are "normal" and "high."
  40. // On iOS, these correspond to APNs priorities 5 and 10.
  41. // By default, notification messages are sent with high priority, and data messages
  42. // are sent with normal priority. Normal priority optimizes the client app's battery
  43. // consumption and should be used unless immediate delivery is required. For messages
  44. // with normal priority, the app may receive the message with unspecified delay.
  45. // When a message is sent with high priority, it is sent immediately, and the app
  46. // can wake a sleeping device and open a network connection to your server.
  47. // For more information, see Setting the priority of a message.
  48. Priority string `json:"priority,omitempty"`
  49. // Notification parameter specifies the predefined, user-visible key-value pairs of
  50. // the notification payload. See Notification payload support for detail.
  51. // For more information about notification message and data message options, see
  52. // Notification
  53. Notification Notification `json:"notification,omitempty"`
  54. // ContentAvailable On iOS, use this field to represent content-available
  55. // in the APNS payload. When a notification or message is sent and this is set
  56. // to true, an inactive client app is awoken. On Android, data messages wake
  57. // the app by default. On Chrome, currently not supported.
  58. ContentAvailable bool `json:"content_available,omitempty"`
  59. // DelayWhenIdle When this parameter is set to true, it indicates that
  60. // the message should not be sent until the device becomes active.
  61. // The default value is false.
  62. DelayWhileIdle bool `json:"delay_while_idle,omitempty"`
  63. // TimeToLive This parameter specifies how long (in seconds) the message
  64. // should be kept in FCM storage if the device is offline. The maximum time
  65. // to live supported is 4 weeks, and the default value is 4 weeks.
  66. // For more information, see
  67. // https://firebase.google.com/docs/cloud-messaging/concept-options#ttl
  68. TimeToLive int `json:"time_to_live,omitempty"`
  69. // RestrictedPackageName This parameter specifies the package name of the
  70. // application where the registration tokens must match in order to
  71. // receive the message.
  72. RestrictedPackageName string `json:"restricted_package_name,omitempty"`
  73. // DryRun This parameter, when set to true, allows developers to test
  74. // a request without actually sending a message.
  75. // The default value is false
  76. DryRun bool `json:"dry_run,omitempty"`
  77. // Condition to set a logical expression of conditions that determine the message target
  78. // This parameter specifies a logical expression of conditions that determine the message target.
  79. // Supported condition: Topic, formatted as "'yourTopic' in topics". This value is case-insensitive.
  80. // Supported operators: &&, ||. Maximum two operators per topic message supported.
  81. Condition string `json:"condition,omitempty"`
  82. // Currently for iOS 10+ devices only. On iOS, use this field to represent mutable-content in the APNS payload.
  83. // When a notification is sent and this is set to true, the content of the notification can be modified before
  84. // it is displayed, using a Notification Service app extension. This parameter will be ignored for Android and web.
  85. MutableContent bool `json:"mutable_content,omitempty"`
  86. Android Android `json:"android,omitempty"`
  87. }
  88. Android struct {
  89. Priority string `json:"priority,omitempty"`
  90. }
  91. // Result Downstream result from FCM, sent in the "results" field of the Response packet
  92. Result struct {
  93. // String specifying a unique ID for each successfully processed message.
  94. MessageID string `json:"message_id"`
  95. // Optional string specifying the canonical registration token for the
  96. // client app that the message was processed and sent to. Sender should
  97. // use this value as the registration token for future requests.
  98. // Otherwise, the messages might be rejected.
  99. RegistrationID string `json:"registration_id"`
  100. // String specifying the error that occurred when processing the message
  101. // for the recipient. The possible values can be found in table 9 here:
  102. // https://firebase.google.com/docs/cloud-messaging/http-server-ref#table9
  103. Error string `json:"error"`
  104. }
  105. // Response represents fcm response message - (tokens and topics)
  106. Response struct {
  107. Ok bool
  108. StatusCode int
  109. // MulticastID a unique ID (number) identifying the multicast message.
  110. MulticastID int `json:"multicast_id"`
  111. // Success number of messages that were processed without an error.
  112. Success int `json:"success"`
  113. // Fail number of messages that could not be processed.
  114. Fail int `json:"failure"`
  115. // CanonicalIDs number of results that contain a canonical registration token.
  116. // A canonical registration ID is the registration token of the last registration
  117. // requested by the client app. This is the ID that the server should use
  118. // when sending messages to the device.
  119. CanonicalIDs int `json:"canonical_ids"`
  120. // Results Array of objects representing the status of the messages processed. The objects are listed in the same order as the request (i.e., for each registration ID in the request, its result is listed in the same index in the response).
  121. // message_id: String specifying a unique ID for each successfully processed message.
  122. // registration_id: Optional string specifying the canonical registration token for the client app that the message was processed and sent to. Sender should use this value as the registration token for future requests. Otherwise, the messages might be rejected.
  123. // error: String specifying the error that occurred when processing the message for the recipient. The possible values can be found in table 9.
  124. Results []Result `json:"results,omitempty"`
  125. // The topic message ID when FCM has successfully received the request and will attempt to deliver to all subscribed devices.
  126. MsgID int `json:"message_id,omitempty"`
  127. // Error that occurred when processing the message. The possible values can be found in table 9.
  128. Err string `json:"error,omitempty"`
  129. // RetryAfter
  130. RetryAfter string
  131. }
  132. // Notification notification message payload
  133. Notification struct {
  134. // Title indicates notification title. This field is not visible on iOS phones and tablets.
  135. Title string `json:"title,omitempty"`
  136. // Body indicates notification body text.
  137. Body string `json:"body,omitempty"`
  138. // Sound indicates a sound to play when the device receives a notification.
  139. // Sound files can be in the main bundle of the client app or in the
  140. // Library/Sounds folder of the app's data container.
  141. // See the iOS Developer Library for more information.
  142. // http://apple.co/2jaGqiE
  143. Sound string `json:"sound,omitempty"`
  144. // Badge indicates the badge on the client app home icon.
  145. Badge string `json:"badge,omitempty"`
  146. // Icon indicates notification icon. Sets value to myicon for drawable resource myicon.
  147. // If you don't send this key in the request, FCM displays the launcher icon specified
  148. // in your app manifest.
  149. Icon string `json:"icon,omitempty"`
  150. // Tag indicates whether each notification results in a new entry in the notification
  151. // drawer on Android. If not set, each request creates a new notification.
  152. // If set, and a notification with the same tag is already being shown,
  153. // the new notification replaces the existing one in the notification drawer.
  154. Tag string `json:"tag,omitempty"`
  155. // Color indicates color of the icon, expressed in #rrggbb format
  156. Color string `json:"color,omitempty"`
  157. // ClickAction indicates the action associated with a user click on the notification.
  158. // When this is set, an activity with a matching intent filter is launched when user
  159. // clicks the notification.
  160. ClickAction string `json:"click_action,omitempty"`
  161. // BodyLockKey indicates the key to the body string for localization. Use the key in
  162. // the app's string resources when populating this value.
  163. BodyLocKey string `json:"body_loc_key,omitempty"`
  164. // BodyLocArgs indicates the string value to replace format specifiers in the body
  165. // string for localization. For more information, see Formatting and Styling.
  166. BodyLocArgs string `json:"body_loc_args,omitempty"`
  167. // TitleLocKey indicates the key to the title string for localization.
  168. // Use the key in the app's string resources when populating this value.
  169. TitleLocKey string `json:"title_loc_key,omitempty"`
  170. // TitleLocArgs indicates the string value to replace format specifiers in the title string for
  171. // localization. For more information, see
  172. // https://developer.android.com/guide/topics/resources/string-resource.html#FormattingAndStyling
  173. TitleLocArgs string `json:"title_loc_args,omitempty"`
  174. }
  175. )
  176. // GetRetryAfterTime converts the retry after response header to a time.Duration
  177. func (r *Response) GetRetryAfterTime() (time.Duration, error) {
  178. return time.ParseDuration(r.RetryAfter)
  179. }