options.go 6.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189
  1. package client
  2. import (
  3. "fmt"
  4. "heckel.io/ntfy/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. // WithNoCache instructs the server not to cache the message server-side
  81. func WithNoCache() PublishOption {
  82. return WithHeader("X-Cache", "no")
  83. }
  84. // WithNoFirebase instructs the server not to forward the message to Firebase
  85. func WithNoFirebase() PublishOption {
  86. return WithHeader("X-Firebase", "no")
  87. }
  88. // WithSince limits the number of messages returned from the server. The parameter since can be a Unix
  89. // timestamp (see WithSinceUnixTime), a duration (WithSinceDuration) the word "all" (see WithSinceAll).
  90. func WithSince(since string) SubscribeOption {
  91. return WithQueryParam("since", since)
  92. }
  93. // WithSinceAll instructs the server to return all messages for the given topic from the server
  94. func WithSinceAll() SubscribeOption {
  95. return WithSince("all")
  96. }
  97. // WithSinceDuration instructs the server to return all messages since the given duration ago
  98. func WithSinceDuration(since time.Duration) SubscribeOption {
  99. return WithSinceUnixTime(time.Now().Add(-1 * since).Unix())
  100. }
  101. // WithSinceUnixTime instructs the server to return only messages newer or equal to the given timestamp
  102. func WithSinceUnixTime(since int64) SubscribeOption {
  103. return WithSince(fmt.Sprintf("%d", since))
  104. }
  105. // WithPoll instructs the server to close the connection after messages have been returned. Don't use this option
  106. // directly. Use Client.Poll instead.
  107. func WithPoll() SubscribeOption {
  108. return WithQueryParam("poll", "1")
  109. }
  110. // WithScheduled instructs the server to also return messages that have not been sent yet, i.e. delayed/scheduled
  111. // messages (see WithDelay). The messages will have a future date.
  112. func WithScheduled() SubscribeOption {
  113. return WithQueryParam("scheduled", "1")
  114. }
  115. // WithFilter is a generic subscribe option meant to be used to filter for certain messages only
  116. func WithFilter(param, value string) SubscribeOption {
  117. return WithQueryParam(param, value)
  118. }
  119. // WithMessageFilter instructs the server to only return messages that match the exact message
  120. func WithMessageFilter(message string) SubscribeOption {
  121. return WithQueryParam("message", message)
  122. }
  123. // WithTitleFilter instructs the server to only return messages with a title that match the exact string
  124. func WithTitleFilter(title string) SubscribeOption {
  125. return WithQueryParam("title", title)
  126. }
  127. // WithPriorityFilter instructs the server to only return messages with the matching priority. Not that messages
  128. // without priority also implicitly match priority 3.
  129. func WithPriorityFilter(priority int) SubscribeOption {
  130. return WithQueryParam("priority", fmt.Sprintf("%d", priority))
  131. }
  132. // WithTagsFilter instructs the server to only return messages that contain all of the given tags
  133. func WithTagsFilter(tags []string) SubscribeOption {
  134. return WithQueryParam("tags", strings.Join(tags, ","))
  135. }
  136. // WithHeader is a generic option to add headers to a request
  137. func WithHeader(header, value string) RequestOption {
  138. return func(r *http.Request) error {
  139. if value != "" {
  140. r.Header.Set(header, value)
  141. }
  142. return nil
  143. }
  144. }
  145. // WithQueryParam is a generic option to add query parameters to a request
  146. func WithQueryParam(param, value string) RequestOption {
  147. return func(r *http.Request) error {
  148. if value != "" {
  149. q := r.URL.Query()
  150. q.Add(param, value)
  151. r.URL.RawQuery = q.Encode()
  152. }
  153. return nil
  154. }
  155. }