options.go 6.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174
  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. // WithActions adds custom user actions to the notification. The value can be either a JSON array or the
  48. // simple format definition. See https://ntfy.sh/docs/publish/#action-buttons for details.
  49. func WithActions(value string) PublishOption {
  50. return WithHeader("X-Actions", value)
  51. }
  52. // WithAttach sets a URL that will be used by the client to download an attachment
  53. func WithAttach(attach string) PublishOption {
  54. return WithHeader("X-Attach", attach)
  55. }
  56. // WithFilename sets a filename for the attachment, and/or forces the HTTP body to interpreted as an attachment
  57. func WithFilename(filename string) PublishOption {
  58. return WithHeader("X-Filename", filename)
  59. }
  60. // WithEmail instructs the server to also send the message to the given e-mail address
  61. func WithEmail(email string) PublishOption {
  62. return WithHeader("X-Email", email)
  63. }
  64. // WithBasicAuth adds the Authorization header for basic auth to the request
  65. func WithBasicAuth(user, pass string) PublishOption {
  66. return WithHeader("Authorization", util.BasicAuth(user, pass))
  67. }
  68. // WithNoCache instructs the server not to cache the message server-side
  69. func WithNoCache() PublishOption {
  70. return WithHeader("X-Cache", "no")
  71. }
  72. // WithNoFirebase instructs the server not to forward the message to Firebase
  73. func WithNoFirebase() PublishOption {
  74. return WithHeader("X-Firebase", "no")
  75. }
  76. // WithSince limits the number of messages returned from the server. The parameter since can be a Unix
  77. // timestamp (see WithSinceUnixTime), a duration (WithSinceDuration) the word "all" (see WithSinceAll).
  78. func WithSince(since string) SubscribeOption {
  79. return WithQueryParam("since", since)
  80. }
  81. // WithSinceAll instructs the server to return all messages for the given topic from the server
  82. func WithSinceAll() SubscribeOption {
  83. return WithSince("all")
  84. }
  85. // WithSinceDuration instructs the server to return all messages since the given duration ago
  86. func WithSinceDuration(since time.Duration) SubscribeOption {
  87. return WithSinceUnixTime(time.Now().Add(-1 * since).Unix())
  88. }
  89. // WithSinceUnixTime instructs the server to return only messages newer or equal to the given timestamp
  90. func WithSinceUnixTime(since int64) SubscribeOption {
  91. return WithSince(fmt.Sprintf("%d", since))
  92. }
  93. // WithPoll instructs the server to close the connection after messages have been returned. Don't use this option
  94. // directly. Use Client.Poll instead.
  95. func WithPoll() SubscribeOption {
  96. return WithQueryParam("poll", "1")
  97. }
  98. // WithScheduled instructs the server to also return messages that have not been sent yet, i.e. delayed/scheduled
  99. // messages (see WithDelay). The messages will have a future date.
  100. func WithScheduled() SubscribeOption {
  101. return WithQueryParam("scheduled", "1")
  102. }
  103. // WithFilter is a generic subscribe option meant to be used to filter for certain messages only
  104. func WithFilter(param, value string) SubscribeOption {
  105. return WithQueryParam(param, value)
  106. }
  107. // WithMessageFilter instructs the server to only return messages that match the exact message
  108. func WithMessageFilter(message string) SubscribeOption {
  109. return WithQueryParam("message", message)
  110. }
  111. // WithTitleFilter instructs the server to only return messages with a title that match the exact string
  112. func WithTitleFilter(title string) SubscribeOption {
  113. return WithQueryParam("title", title)
  114. }
  115. // WithPriorityFilter instructs the server to only return messages with the matching priority. Not that messages
  116. // without priority also implicitly match priority 3.
  117. func WithPriorityFilter(priority int) SubscribeOption {
  118. return WithQueryParam("priority", fmt.Sprintf("%d", priority))
  119. }
  120. // WithTagsFilter instructs the server to only return messages that contain all of the given tags
  121. func WithTagsFilter(tags []string) SubscribeOption {
  122. return WithQueryParam("tags", strings.Join(tags, ","))
  123. }
  124. // WithHeader is a generic option to add headers to a request
  125. func WithHeader(header, value string) RequestOption {
  126. return func(r *http.Request) error {
  127. if value != "" {
  128. r.Header.Set(header, value)
  129. }
  130. return nil
  131. }
  132. }
  133. // WithQueryParam is a generic option to add query parameters to a request
  134. func WithQueryParam(param, value string) RequestOption {
  135. return func(r *http.Request) error {
  136. if value != "" {
  137. q := r.URL.Query()
  138. q.Add(param, value)
  139. r.URL.RawQuery = q.Encode()
  140. }
  141. return nil
  142. }
  143. }