Add support to dropbox_file_url_agent for permanent links

bennlich 10 years ago
parent
commit
ab017ad2e2
1 changed files with 19 additions and 3 deletions
  1. 19 3
      app/models/agents/dropbox_file_url_agent.rb

+ 19 - 3
app/models/agents/dropbox_file_url_agent.rb

@@ -6,7 +6,7 @@ module Agents
6 6
     no_bulk_receive!
7 7
 
8 8
     description <<-MD
9
-      The Dropbox File Url Agent is used to work with Dropbox. It takes a file path (or multiple file paths) and emits events with [temporary links](https://www.dropbox.com/developers/core/docs#media).
9
+      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).
10 10
 
11 11
       #{'## 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?}
12 12
 
@@ -28,6 +28,8 @@ module Agents
28 28
 
29 29
       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.
30 30
 
31
+      Set `link_type` to `'temporary'` if you want temporary links, or to `'permanent'` for permanent ones.
32
+
31 33
     MD
32 34
 
33 35
     event_description <<-MD
@@ -39,21 +41,35 @@ module Agents
39 41
           }
40 42
     MD
41 43
 
44
+    def default_options
45
+      {
46
+        'link_type' => 'temporary'
47
+      }
48
+    end
49
+
42 50
     def working?
43 51
       !recent_error_logs?
44 52
     end
45 53
 
46 54
     def receive(events)
47 55
       events.map { |e| e.payload['paths'].split(',').map(&:strip) }
48
-        .flatten.each { |path| create_event payload: url_for(path) }
56
+        .flatten.each do |path|
57
+          create_event payload: (options['link_type'] == 'permanent' ? permanent_url_for(path) : temporary_url_for(path))
58
+        end
49 59
     end
50 60
 
51 61
     private
52 62
 
53
-    def url_for(path)
63
+    def temporary_url_for(path)
54 64
       dropbox.find(path).direct_url
55 65
     end
56 66
 
67
+    def permanent_url_for(path)
68
+      result = dropbox.find(path).share_url({ :short_url => false })
69
+      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
70
+      result
71
+    end
72
+
57 73
   end
58 74
 
59 75
 end