dropbox_file_url_agent.rb 2.5KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. module Agents
  2. class DropboxFileUrlAgent < Agent
  3. include DropboxConcern
  4. cannot_be_scheduled!
  5. no_bulk_receive!
  6. description <<-MD
  7. The _DropboxFileUrlAgent_ is used to work with Dropbox. It takes a file path (or multiple files paths) and emits events with either [temporary links](https://www.dropbox.com/developers/core/docs#media) or [permanent links](https://www.dropbox.com/developers/core/docs#shares).
  8. #{'## Include the `dropbox-api` and `omniauth-dropbox` gems in your `Gemfile` and set `DROPBOX_OAUTH_KEY` and `DROPBOX_OAUTH_SECRET` in your environment to use Dropbox Agents.' if dependencies_missing?}
  9. The incoming event payload needs to have a `paths` key, with a comma-separated list of files you want the URL for. For example:
  10. {
  11. "paths": "first/path, second/path"
  12. }
  13. __TIP__: You can use the _Event Formatting Agent_ to format events before they come in. Here's an example configuration for formatting an event coming out of a _Dropbox Watch Agent_:
  14. {
  15. "instructions": {
  16. "paths": "{{ added | map: 'path' | join: ',' }}"
  17. },
  18. "matchers": [],
  19. "mode": "clean"
  20. }
  21. An example of usage would be to watch a specific Dropbox directory (with the _DropboxWatchAgent_) and get the URLs for the added or updated files. You could then, for example, send emails with those links.
  22. Set `link_type` to `'temporary'` if you want temporary links, or to `'permanent'` for permanent ones.
  23. MD
  24. event_description <<-MD
  25. The event payload will contain the following fields:
  26. {
  27. "url": "https://dl.dropboxusercontent.com/1/view/abcdefghijk/example",
  28. "expires": "Fri, 16 Sep 2011 01:01:25 +0000"
  29. }
  30. MD
  31. def default_options
  32. {
  33. 'link_type' => 'temporary'
  34. }
  35. end
  36. def working?
  37. !recent_error_logs?
  38. end
  39. def receive(events)
  40. events.flat_map { |e| e.payload['paths'].split(',').map(&:strip) }
  41. .each do |path|
  42. create_event payload: (options['link_type'] == 'permanent' ? permanent_url_for(path) : temporary_url_for(path))
  43. end
  44. end
  45. private
  46. def temporary_url_for(path)
  47. dropbox.find(path).direct_url
  48. end
  49. def permanent_url_for(path)
  50. result = dropbox.find(path).share_url({ :short_url => false })
  51. result.url = result.url.gsub('?dl=0','?dl=1') # cause the url to point to the file, instead of to a preview page for the file
  52. result
  53. end
  54. end
  55. end