options.go 6.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204
  1. package client
  2. import (
  3. "fmt"
  4. "heckel.io/ntfy/v2/util"
  5. "net/http"
  6. "strings"
  7. "time"
  8. )
  9. // RequestOption is a generic request option that can be added to Client calls
  10. type RequestOption = func(r *http.Request) error
  11. // PublishOption is an option that can be passed to the Client.Publish call
  12. type PublishOption = RequestOption
  13. // SubscribeOption is an option that can be passed to a Client.Subscribe or Client.Poll call
  14. type SubscribeOption = RequestOption
  15. // WithMessage sets the notification message. This is an alternative way to passing the message body.
  16. func WithMessage(message string) PublishOption {
  17. return WithHeader("X-Message", message)
  18. }
  19. // WithTitle adds a title to a message
  20. func WithTitle(title string) PublishOption {
  21. return WithHeader("X-Title", title)
  22. }
  23. // WithPriority adds a priority to a message. The priority can be either a number (1=min, 5=max),
  24. // or the corresponding names (see util.ParsePriority).
  25. func WithPriority(priority string) PublishOption {
  26. return WithHeader("X-Priority", priority)
  27. }
  28. // WithTagsList adds a list of tags to a message. The tags parameter must be a comma-separated list
  29. // of tags. To use a slice, use WithTags instead
  30. func WithTagsList(tags string) PublishOption {
  31. return WithHeader("X-Tags", tags)
  32. }
  33. // WithTags adds a list of a tags to a message
  34. func WithTags(tags []string) PublishOption {
  35. return WithTagsList(strings.Join(tags, ","))
  36. }
  37. // WithDelay instructs the server to send the message at a later date. The delay parameter can be a
  38. // Unix timestamp, a duration string or a natural langage string. See https://ntfy.sh/docs/publish/#scheduled-delivery
  39. // for details.
  40. func WithDelay(delay string) PublishOption {
  41. return WithHeader("X-Delay", delay)
  42. }
  43. // WithClick makes the notification action open the given URL as opposed to entering the detail view
  44. func WithClick(url string) PublishOption {
  45. return WithHeader("X-Click", url)
  46. }
  47. // WithIcon makes the notification use the given URL as its icon
  48. func WithIcon(icon string) PublishOption {
  49. return WithHeader("X-Icon", icon)
  50. }
  51. // WithActions adds custom user actions to the notification. The value can be either a JSON array or the
  52. // simple format definition. See https://ntfy.sh/docs/publish/#action-buttons for details.
  53. func WithActions(value string) PublishOption {
  54. return WithHeader("X-Actions", value)
  55. }
  56. // WithAttach sets a URL that will be used by the client to download an attachment
  57. func WithAttach(attach string) PublishOption {
  58. return WithHeader("X-Attach", attach)
  59. }
  60. // WithMarkdown instructs the server to interpret the message body as Markdown
  61. func WithMarkdown() PublishOption {
  62. return WithHeader("X-Markdown", "yes")
  63. }
  64. // WithFilename sets a filename for the attachment, and/or forces the HTTP body to interpreted as an attachment
  65. func WithFilename(filename string) PublishOption {
  66. return WithHeader("X-Filename", filename)
  67. }
  68. // WithEmail instructs the server to also send the message to the given e-mail address
  69. func WithEmail(email string) PublishOption {
  70. return WithHeader("X-Email", email)
  71. }
  72. // WithBasicAuth adds the Authorization header for basic auth to the request
  73. func WithBasicAuth(user, pass string) PublishOption {
  74. return WithHeader("Authorization", util.BasicAuth(user, pass))
  75. }
  76. // WithBearerAuth adds the Authorization header for Bearer auth to the request
  77. func WithBearerAuth(token string) PublishOption {
  78. return WithHeader("Authorization", fmt.Sprintf("Bearer %s", token))
  79. }
  80. // WithEmptyAuth clears the Authorization header
  81. func WithEmptyAuth() PublishOption {
  82. return RemoveHeader("Authorization")
  83. }
  84. // WithNoCache instructs the server not to cache the message server-side
  85. func WithNoCache() PublishOption {
  86. return WithHeader("X-Cache", "no")
  87. }
  88. // WithNoFirebase instructs the server not to forward the message to Firebase
  89. func WithNoFirebase() PublishOption {
  90. return WithHeader("X-Firebase", "no")
  91. }
  92. // WithSince limits the number of messages returned from the server. The parameter since can be a Unix
  93. // timestamp (see WithSinceUnixTime), a duration (WithSinceDuration) the word "all" (see WithSinceAll).
  94. func WithSince(since string) SubscribeOption {
  95. return WithQueryParam("since", since)
  96. }
  97. // WithSinceAll instructs the server to return all messages for the given topic from the server
  98. func WithSinceAll() SubscribeOption {
  99. return WithSince("all")
  100. }
  101. // WithSinceDuration instructs the server to return all messages since the given duration ago
  102. func WithSinceDuration(since time.Duration) SubscribeOption {
  103. return WithSinceUnixTime(time.Now().Add(-1 * since).Unix())
  104. }
  105. // WithSinceUnixTime instructs the server to return only messages newer or equal to the given timestamp
  106. func WithSinceUnixTime(since int64) SubscribeOption {
  107. return WithSince(fmt.Sprintf("%d", since))
  108. }
  109. // WithPoll instructs the server to close the connection after messages have been returned. Don't use this option
  110. // directly. Use Client.Poll instead.
  111. func WithPoll() SubscribeOption {
  112. return WithQueryParam("poll", "1")
  113. }
  114. // WithScheduled instructs the server to also return messages that have not been sent yet, i.e. delayed/scheduled
  115. // messages (see WithDelay). The messages will have a future date.
  116. func WithScheduled() SubscribeOption {
  117. return WithQueryParam("scheduled", "1")
  118. }
  119. // WithFilter is a generic subscribe option meant to be used to filter for certain messages only
  120. func WithFilter(param, value string) SubscribeOption {
  121. return WithQueryParam(param, value)
  122. }
  123. // WithMessageFilter instructs the server to only return messages that match the exact message
  124. func WithMessageFilter(message string) SubscribeOption {
  125. return WithQueryParam("message", message)
  126. }
  127. // WithTitleFilter instructs the server to only return messages with a title that match the exact string
  128. func WithTitleFilter(title string) SubscribeOption {
  129. return WithQueryParam("title", title)
  130. }
  131. // WithPriorityFilter instructs the server to only return messages with the matching priority. Not that messages
  132. // without priority also implicitly match priority 3.
  133. func WithPriorityFilter(priority int) SubscribeOption {
  134. return WithQueryParam("priority", fmt.Sprintf("%d", priority))
  135. }
  136. // WithTagsFilter instructs the server to only return messages that contain all of the given tags
  137. func WithTagsFilter(tags []string) SubscribeOption {
  138. return WithQueryParam("tags", strings.Join(tags, ","))
  139. }
  140. // WithHeader is a generic option to add headers to a request
  141. func WithHeader(header, value string) RequestOption {
  142. return func(r *http.Request) error {
  143. if value != "" {
  144. r.Header.Set(header, value)
  145. }
  146. return nil
  147. }
  148. }
  149. // WithQueryParam is a generic option to add query parameters to a request
  150. func WithQueryParam(param, value string) RequestOption {
  151. return func(r *http.Request) error {
  152. if value != "" {
  153. q := r.URL.Query()
  154. q.Add(param, value)
  155. r.URL.RawQuery = q.Encode()
  156. }
  157. return nil
  158. }
  159. }
  160. // RemoveHeader is a generic option to remove a header from a request
  161. func RemoveHeader(header string) RequestOption {
  162. return func(r *http.Request) error {
  163. if header != "" {
  164. delete(r.Header, header)
  165. }
  166. return nil
  167. }
  168. }