data_output_agent.rb 15KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414
  1. module Agents
  2. class DataOutputAgent < Agent
  3. include WebRequestConcern
  4. cannot_be_scheduled!
  5. description do
  6. <<-MD
  7. The Data Output Agent outputs received events as either RSS or JSON. Use it to output a public or private stream of Huginn data.
  8. This Agent will output data at:
  9. `https://#{ENV['DOMAIN']}#{Rails.application.routes.url_helpers.web_requests_path(agent_id: ':id', user_id: user_id, secret: ':secret', format: :xml)}`
  10. where `:secret` is one of the allowed secrets specified in your options and the extension can be `xml` or `json`.
  11. You can setup multiple secrets so that you can individually authorize external systems to
  12. access your Huginn data.
  13. Options:
  14. * `secrets` - An array of tokens that the requestor must provide for light-weight authentication.
  15. * `expected_receive_period_in_days` - How often you expect data to be received by this Agent from other Agents.
  16. * `template` - A JSON object representing a mapping between item output keys and incoming event values. Use [Liquid](https://github.com/cantino/huginn/wiki/Formatting-Events-using-Liquid) to format the values. Values of the `link`, `title`, `description` and `icon` keys will be put into the \\<channel\\> section of RSS output. Value of the `self` key will be used as URL for this feed itself, which is useful when you serve it via reverse proxy. The `item` key will be repeated for every Event. The `pubDate` key for each item will have the creation time of the Event unless given.
  17. * `events_to_show` - The number of events to output in RSS or JSON. (default: `40`)
  18. * `ttl` - A value for the \\<ttl\\> element in RSS output. (default: `60`)
  19. * `ns_media` - Add [yahoo media namespace](https://en.wikipedia.org/wiki/Media_RSS) in output xml
  20. * `ns_itunes` - Add [itunes compatible namespace](http://lists.apple.com/archives/syndication-dev/2005/Nov/msg00002.html) in output xml
  21. * `push_hubs` - Set to a list of PubSubHubbub endpoints you want to publish an update to every time this agent receives an event. (default: none) Popular hubs include [Superfeedr](https://pubsubhubbub.superfeedr.com/) and [Google](https://pubsubhubbub.appspot.com/). Note that publishing updates will make your feed URL known to the public, so if you want to keep it secret, set up a reverse proxy to serve your feed via a safe URL and specify it in `template.self`.
  22. If you'd like to output RSS tags with attributes, such as `enclosure`, use something like the following in your `template`:
  23. "enclosure": {
  24. "_attributes": {
  25. "url": "{{media_url}}",
  26. "length": "1234456789",
  27. "type": "audio/mpeg"
  28. }
  29. },
  30. "another_tag": {
  31. "_attributes": {
  32. "key": "value",
  33. "another_key": "another_value"
  34. },
  35. "_contents": "tag contents (can be an object for nesting)"
  36. }
  37. # Ordering events
  38. #{description_events_order('events')}
  39. DataOutputAgent will select the last `events_to_show` entries of its received events sorted in the order specified by `events_order`, which is defaulted to the event creation time.
  40. So, if you have multiple source agents that may create many events in a run, you may want to either increase `events_to_show` to have a larger "window", or specify the `events_order` option to an appropriate value (like `date_published`) so events from various sources are properly mixed in the resulted feed.
  41. There is also an option `events_list_order` that only controls the order of events listed in the final output, without attempting to maintain a total order of received events. It has the same format as `events_order` and is defaulted to `#{Utils.jsonify(DEFAULT_EVENTS_ORDER['events_list_order'])}` so the selected events are listed in reverse order like most popular RSS feeds list their articles.
  42. # Liquid Templating
  43. In Liquid templating, the following variable is available:
  44. * `events`: An array of events being output, sorted in the given order, up to `events_to_show` in number. For example, if source events contain a site title in the `site_title` key, you can refer to it in `template.title` by putting `{{events.first.site_title}}`.
  45. MD
  46. end
  47. def default_options
  48. {
  49. "secrets" => ["a-secret-key"],
  50. "expected_receive_period_in_days" => 2,
  51. "template" => {
  52. "title" => "XKCD comics as a feed",
  53. "description" => "This is a feed of recent XKCD comics, generated by Huginn",
  54. "item" => {
  55. "title" => "{{title}}",
  56. "description" => "Secret hovertext: {{hovertext}}",
  57. "link" => "{{url}}"
  58. }
  59. },
  60. "ns_media" => "true"
  61. }
  62. end
  63. def working?
  64. last_receive_at && last_receive_at > options['expected_receive_period_in_days'].to_i.days.ago && !recent_error_logs?
  65. end
  66. def validate_options
  67. if options['secrets'].is_a?(Array) && options['secrets'].length > 0
  68. options['secrets'].each do |secret|
  69. case secret
  70. when %r{[/.]}
  71. errors.add(:base, "secret may not contain a slash or dot")
  72. when String
  73. else
  74. errors.add(:base, "secret must be a string")
  75. end
  76. end
  77. else
  78. errors.add(:base, "Please specify one or more secrets for 'authenticating' incoming feed requests")
  79. end
  80. unless options['expected_receive_period_in_days'].present? && options['expected_receive_period_in_days'].to_i > 0
  81. errors.add(:base, "Please provide 'expected_receive_period_in_days' to indicate how many days can pass before this Agent is considered to be not working")
  82. end
  83. unless options['template'].present? && options['template']['item'].present? && options['template']['item'].is_a?(Hash)
  84. errors.add(:base, "Please provide template and template.item")
  85. end
  86. case options['push_hubs']
  87. when nil
  88. when Array
  89. options['push_hubs'].each do |hub|
  90. case hub
  91. when /\{/
  92. # Liquid templating
  93. when String
  94. begin
  95. URI.parse(hub)
  96. rescue URI::Error
  97. errors.add(:base, "invalid URL found in push_hubs")
  98. break
  99. end
  100. else
  101. errors.add(:base, "push_hubs must be an array of endpoint URLs")
  102. break
  103. end
  104. end
  105. else
  106. errors.add(:base, "push_hubs must be an array")
  107. end
  108. end
  109. def events_to_show
  110. (interpolated['events_to_show'].presence || 40).to_i
  111. end
  112. def feed_ttl
  113. (interpolated['ttl'].presence || 60).to_i
  114. end
  115. def feed_title
  116. interpolated['template']['title'].presence || "#{name} Event Feed"
  117. end
  118. def feed_link
  119. interpolated['template']['link'].presence || "https://#{ENV['DOMAIN']}"
  120. end
  121. def feed_url(options = {})
  122. interpolated['template']['self'].presence ||
  123. feed_link + Rails.application.routes.url_helpers.
  124. web_requests_path(agent_id: id || ':id',
  125. user_id: user_id,
  126. secret: options[:secret],
  127. format: options[:format])
  128. end
  129. def feed_icon
  130. interpolated['template']['icon'].presence || feed_link + '/favicon.ico'
  131. end
  132. def feed_description
  133. interpolated['template']['description'].presence || "A feed of Events received by the '#{name}' Huginn Agent"
  134. end
  135. def xml_namespace
  136. namespaces = ['xmlns:atom="http://www.w3.org/2005/Atom"']
  137. if (boolify(interpolated['ns_media']))
  138. namespaces << 'xmlns:media="http://search.yahoo.com/mrss/"'
  139. end
  140. if (boolify(interpolated['ns_itunes']))
  141. namespaces << 'xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd"'
  142. end
  143. namespaces.join(' ')
  144. end
  145. def push_hubs
  146. interpolated['push_hubs'].presence || []
  147. end
  148. DEFAULT_EVENTS_ORDER = {
  149. 'events_order' => nil,
  150. 'events_list_order' => [["{{_index_}}", "number", true]],
  151. }
  152. def events_order(key = SortableEvents::EVENTS_ORDER_KEY)
  153. super || DEFAULT_EVENTS_ORDER[key]
  154. end
  155. def latest_events(reload = false)
  156. events =
  157. if (event_ids = memory[:event_ids]) &&
  158. memory[:events_order] == events_order &&
  159. memory[:events_to_show] >= events_to_show
  160. received_events.where(id: event_ids).to_a
  161. else
  162. memory[:last_event_id] = nil
  163. reload = true
  164. []
  165. end
  166. if reload
  167. memory[:events_order] = events_order
  168. memory[:events_to_show] = events_to_show
  169. new_events =
  170. if last_event_id = memory[:last_event_id]
  171. received_events.where(Event.arel_table[:id].gt(last_event_id)).
  172. order(id: :asc).to_a
  173. else
  174. source_ids.flat_map { |source_id|
  175. # dig twice as many events as the number of
  176. # `events_to_show`
  177. received_events.where(agent_id: source_id).
  178. last(2 * events_to_show)
  179. }.sort_by(&:id)
  180. end
  181. unless new_events.empty?
  182. memory[:last_event_id] = new_events.last.id
  183. events.concat(new_events)
  184. end
  185. end
  186. events = sort_events(events).last(events_to_show)
  187. if reload
  188. memory[:event_ids] = events.map(&:id)
  189. end
  190. events
  191. end
  192. def receive_web_request(params, method, format)
  193. unless interpolated['secrets'].include?(params['secret'])
  194. if format =~ /json/
  195. return [{ error: "Not Authorized" }, 401]
  196. else
  197. return ["Not Authorized", 401]
  198. end
  199. end
  200. source_events = sort_events(latest_events(), 'events_list_order')
  201. interpolation_context.stack do
  202. interpolation_context['events'] = source_events
  203. items = source_events.map do |event|
  204. interpolated = interpolate_options(options['template']['item'], event)
  205. interpolated['guid'] = {'_attributes' => {'isPermaLink' => 'false'},
  206. '_contents' => interpolated['guid'].presence || event.id}
  207. date_string = interpolated['pubDate'].to_s
  208. date =
  209. begin
  210. Time.zone.parse(date_string) # may return nil
  211. rescue => e
  212. error "Error parsing a \"pubDate\" value \"#{date_string}\": #{e.message}"
  213. nil
  214. end || event.created_at
  215. interpolated['pubDate'] = date.rfc2822.to_s
  216. interpolated
  217. end
  218. now = Time.now
  219. if format =~ /json/
  220. content = {
  221. 'title' => feed_title,
  222. 'description' => feed_description,
  223. 'pubDate' => now,
  224. 'items' => simplify_item_for_json(items)
  225. }
  226. return [content, 200]
  227. else
  228. hub_links = push_hubs.map { |hub|
  229. <<-XML
  230. <atom:link rel="hub" href=#{hub.encode(xml: :attr)}/>
  231. XML
  232. }.join
  233. items = simplify_item_for_xml(items)
  234. .to_xml(skip_types: true, root: "items", skip_instruct: true, indent: 1)
  235. .gsub(%r{^</?items>\n}, '')
  236. return [<<-XML, 200, 'text/xml']
  237. <?xml version="1.0" encoding="UTF-8" ?>
  238. <rss version="2.0" #{xml_namespace}>
  239. <channel>
  240. <atom:link href=#{feed_url(secret: params['secret'], format: :xml).encode(xml: :attr)} rel="self" type="application/rss+xml" />
  241. <atom:icon>#{feed_icon.encode(xml: :text)}</atom:icon>
  242. #{hub_links}
  243. <title>#{feed_title.encode(xml: :text)}</title>
  244. <description>#{feed_description.encode(xml: :text)}</description>
  245. <link>#{feed_link.encode(xml: :text)}</link>
  246. <lastBuildDate>#{now.rfc2822.to_s.encode(xml: :text)}</lastBuildDate>
  247. <pubDate>#{now.rfc2822.to_s.encode(xml: :text)}</pubDate>
  248. <ttl>#{feed_ttl}</ttl>
  249. #{items}
  250. </channel>
  251. </rss>
  252. XML
  253. end
  254. end
  255. end
  256. def receive(incoming_events)
  257. url = feed_url(secret: interpolated['secrets'].first, format: :xml)
  258. # Reload new events and update cache
  259. latest_events(true)
  260. push_hubs.each do |hub|
  261. push_to_hub(hub, url)
  262. end
  263. end
  264. private
  265. class XMLNode
  266. def initialize(tag_name, attributes, contents)
  267. @tag_name, @attributes, @contents = tag_name, attributes, contents
  268. end
  269. def to_xml(options)
  270. if @contents.is_a?(Hash)
  271. options[:builder].tag! @tag_name, @attributes do
  272. @contents.each { |key, value| ActiveSupport::XmlMini.to_tag(key, value, options.merge(skip_instruct: true)) }
  273. end
  274. else
  275. options[:builder].tag! @tag_name, @attributes, @contents
  276. end
  277. end
  278. end
  279. def simplify_item_for_xml(item)
  280. if item.is_a?(Hash)
  281. item.each.with_object({}) do |(key, value), memo|
  282. if value.is_a?(Hash)
  283. if value.key?('_attributes') || value.key?('_contents')
  284. memo[key] = XMLNode.new(key, value['_attributes'], simplify_item_for_xml(value['_contents']))
  285. else
  286. memo[key] = simplify_item_for_xml(value)
  287. end
  288. else
  289. memo[key] = value
  290. end
  291. end
  292. elsif item.is_a?(Array)
  293. item.map { |value| simplify_item_for_xml(value) }
  294. else
  295. item
  296. end
  297. end
  298. def simplify_item_for_json(item)
  299. if item.is_a?(Hash)
  300. item.each.with_object({}) do |(key, value), memo|
  301. if value.is_a?(Hash)
  302. if value.key?('_attributes') || value.key?('_contents')
  303. contents = if value['_contents'] && value['_contents'].is_a?(Hash)
  304. simplify_item_for_json(value['_contents'])
  305. elsif value['_contents']
  306. { "contents" => value['_contents'] }
  307. else
  308. {}
  309. end
  310. memo[key] = contents.merge(value['_attributes'] || {})
  311. else
  312. memo[key] = simplify_item_for_json(value)
  313. end
  314. else
  315. memo[key] = value
  316. end
  317. end
  318. elsif item.is_a?(Array)
  319. item.map { |value| simplify_item_for_json(value) }
  320. else
  321. item
  322. end
  323. end
  324. def push_to_hub(hub, url)
  325. hub_uri =
  326. begin
  327. URI.parse(hub)
  328. rescue URI::Error
  329. nil
  330. end
  331. if !hub_uri.is_a?(URI::HTTP)
  332. error "Invalid push endpoint: #{hub}"
  333. return
  334. end
  335. log "Pushing #{url} to #{hub_uri}"
  336. return if dry_run?
  337. begin
  338. faraday.post hub_uri, {
  339. 'hub.mode' => 'publish',
  340. 'hub.url' => url
  341. }
  342. rescue => e
  343. error "Push failed: #{e.message}"
  344. end
  345. end
  346. end
  347. end