dbox ==== An easy way to push and pull your Dropbox folders, with fine-grained control over what folder you are syncing, where you are syncing it to, and when you are doing it. **IMPORTANT:** This is **not** an automated Dropbox client. It will exit after sucessfully pushing/pulling, so if you want regular updates, you can run it in cron, a loop, etc. Installation ------------ ### Install dbox ```sh $ gem install dbox ``` ### Get developer keys * Follow the instructions at https://www.dropbox.com/developers/quickstart to create a Dropbox development application, and copy the application keys. Unless you get your app approved for production status, these keys will only work with the account you create them under, so make sure you are logged in with the account you want to access from dbox. * Now either set the keys as environment variables: ```sh $ export DROPBOX_APP_KEY=cmlrrjd3j0gbend $ export DROPBOX_APP_SECRET=uvuulp75xf9jffl ``` * Or include them in calls to dbox: ```sh $ DROPBOX_APP_KEY=cmlrrjd3j0gbend DROPBOX_APP_SECRET=uvuulp75xf9jffl dbox ... ``` ### Generate an auth token * Make an authorize request: ```sh $ dbox authorize Please visit the following URL in your browser, log into Dropbox, and authorize the app you created. http://www.dropbox.com/0/oauth/authorize?oauth_token=j2kuzfvobcpqh0g When you have done so, press [ENTER] to continue. ``` * Visit the given URL in your browser, and then go back to the terminal and press Enter. * Now either set the keys as environment variables: ```sh $ export DROPBOX_AUTH_KEY=v4d7l1rez1czksn $ export DROPBOX_AUTH_SECRET=pqej9rmnj0i1gcxr4 ``` * Or include them in calls to dbox: ```sh $ DROPBOX_AUTH_KEY=v4d7l1rez1czksn DROPBOX_AUTH_SECRET=pqej9rmnj0i1gcxr4 dbox ... ``` * This auth token will last for **10 years**, or when you choose to invalidate it, whichever comes first. So you really only need to do this once, and then keep them around. Using dbox from the Command-Line -------------------------------- ### Usage #### Authorize ```sh $ dbox authorize ``` #### Create a new Dropbox folder ```sh $ dbox create [] ``` #### Clone an existing Dropbox folder ```sh $ dbox clone [] ``` #### Pull (download changes from Dropbox) ```sh $ dbox pull [] ``` #### Push (upload changes to Dropbox) ```sh $ dbox push [] ``` #### Move (move/rename the Dropbox folder) ```sh $ dbox move [] ``` #### Example ```sh $ export DROPBOX_APP_KEY=cmlrrjd3j0gbend $ export DROPBOX_APP_SECRET=uvuulp75xf9jffl ``` ```sh $ dbox authorize ``` ```sh $ open http://www.dropbox.com/0/oauth/authorize?oauth_token=aaoeuhtns123456 ``` ```sh $ export DROPBOX_AUTH_KEY=v4d7l1rez1czksn $ export DROPBOX_AUTH_SECRET=pqej9rmnj0i1gcxr4 ``` ```sh $ cd /tmp $ dbox clone Public $ cd Public $ echo "Hello World" > hello.txt $ dbox push ``` ```sh $ cat ~/Dropbox/Public/hello.txt Hello World $ echo "Oh, Hello" > ~/Dropbox/Public/hello.txt ``` ```sh $ dbox pull $ cat hello.txt Oh, Hello ``` Using dbox from Ruby -------------------- The Ruby clone, pull, and push APIs return a hash listing the changes made during that pull/push. ```ruby { :created => ["foo.txt"], :deleted => [], :updated => [] } ``` ### Usage #### Setup * Authorize beforehand with the command-line tool ```ruby require "dbox" ``` #### Create a new Dropbox folder ```ruby Dbox.create(remote_path, local_path) ``` #### Clone an existing Dropbox folder ```ruby Dbox.clone(remote_path, local_path) ``` #### Pull (download changes from Dropbox) ```ruby Dbox.pull(local_path) ``` #### Push (upload changes to Dropbox) ```ruby Dbox.push(local_path) ``` #### Move (move/rename the Dropbox folder) ```ruby Dbox.move(new_remote_path, local_path) ``` #### Check whether a Dropbox DB file is present ```ruby Dbox.exists?(local_path) ``` #### Example ```sh $ export DROPBOX_APP_KEY=cmlrrjd3j0gbend $ export DROPBOX_APP_SECRET=uvuulp75xf9jffl ``` ```sh $ dbox authorize ``` ```sh $ open http://www.dropbox.com/0/oauth/authorize?oauth_token=aaoeuhtns123456 ``` ```sh $ export DROPBOX_AUTH_KEY=v4d7l1rez1czksn $ export DROPBOX_AUTH_SECRET=pqej9rmnj0i1gcxr4 ``` ```ruby > require "dbox" > Dbox.clone("/Public", "/tmp/public") > File.open("/tmp/public/hello.txt", "w") {|f| f << "Hello World" } > Dbox.push("/tmp/public") > File.read("#{ENV['HOME']}/Dropbox/Public/hello.txt") => "Hello World" > File.open("#{ENV['HOME']}/Dropbox/Public/hello.txt", "w") {|f| f << "Oh, Hello" } > Dbox.pull("/tmp/public") > File.read("#{ENV['HOME']}/Dropbox/Public/hello.txt") => "Oh, Hello" ```