A ruby wrapper for Uploadcare.com service.
Add this line to your application's Gemfile:
gem 'uploadcare-ruby'
And then execute:
$ bundle install
Or install it yourself:
$ gem install uploadcare-ruby
--
Just create an API object - and you're good to go.
@api = Uploadcare::Api.new(CONFIG)
--
Raw API is a simple interface that allows you to make custom requests to Uploadcare REST API. Just in case you want some low-level control over your app.
# any request
@api.request :get, "/files/", {page: 2}
# you also have the shortcuts for methods
@api.get '/files', {page: 2}
@api.post ...
@api.put ...
@api.delete ...
All raw API methods return parsed JSON response or raise an error (which you should handle yourself).
--
Using Uploadcare is pretty easy (which is the essence of the service itself).
Create the API object:
@api = Uploadcare::Api.new(CONFIG)
Upload file
@file_to_upload = File.open("your-file.png")
@uc_file = @api.upload(@file_to_upload)
# => #<Uploadcare::Api::File ...
Use file
# file uuid (you probably want to store it somewhere)
@uc_file.uuid
# => "c969be02-9925-4a7e-aa6d-b0730368791c"
# url for the file - just paste in your template and you good to go.
@uc_file.cdn_url
# => "http://www.ucarecdn.com/c969be02-9925-4a7e-aa6d-b0730368791c/"
Store or delete file
# store file (if you dont use autostore option)
@uc_file.store
# => #<Uploadcare::Api::File ...
# and delete file
@uc_file.delete
# => #<Uploadcare::Api::File ...
You can upload either File object (array of files will also cut it) or custom URL.
Just throw your URL into API - and you're good to go.
# smart upload
@file = @api.upload "http://your.awesome/avatar.jpg"
# => #<Uploadcare::Api::File ...
# explicitly upload from URL
@file = @api.upload_from_url "http://your.awesome/avatar.jpg"
# => #<Uploadcare::Api::File ...
Keep in mind that invalid URL will raise an ArgumentError
.
Like with URL - just start throwing your file into API
file = File.open("path/to/your/file.png")
@uc_file = @api.upload file
# => #<Uploadcare::Api::File ...
And that's it.
Uploading of an array is just as easy as uploading a single file.
Note, that every object in array must be an instance of File
.
file1 = File.open("path/to/your/file.png")
file2 = File.open("path/to/your/another-file.png")
files = [file1, file2]
@uc_files = @api.upload files
# => [#<Uploadcare::Api::File uuid="24626d2f-3f23-4464-b190-37115ce7742a">,
# #<Uploadcare::Api::File uuid="7bb9efa4-05c0-4f36-b0ef-11a4221867f6">]
It is returning you an array of Uploadcare files.
@uc_files[0]
# => #<Uploadcare::Api::File uuid="24626d2f-3f23-4464-b190-37115ce7742a">
@uc_files[0].load_data
# => #<Uploadcare::Api::File uuid="7bb9efa4-05c0-4f36-b0ef-11a4221867f6", original_file_url="http://www.ucarecdn.com/7bb9efa4-05c0-4f36-b0ef-11a4221867f6/view.png", image_info={"width"=>800, "geo_location"=>nil, "datetime_original"=>nil, "height"=>600}, ....>
File
- is the primary object for Uploadcare API. Basically it's an avatar for file stored for you ).
So all the operations you do - you do it with the file object.
@file_to_upload = File.open("your-file.png")
@uc_file = @api.upload(@file_to_upload)
# => #<Uploadcare::Api::File ...
@uc_file.uuid
# => "c969be02-9925-4a7e-aa6d-b0730368791c"
@uc_file.cdn_url
# => "http://www.ucarecdn.com/c969be02-9925-4a7e-aa6d-b0730368791c/"
There is one issue with files - all data associated with it accesible with separate HTTP request only. So if don't specificaly need image data (like file name, geolocation data etc.) - you could just use :uuid and :cdn_url methods for file output:
<img src="#{@file.cdn_url}"/>
And that's it. Saves precious loading time.
If you do however need image data - you could do it manualy:
@uc_file.load_data
Then your file object will respond to any method, described in API documentation (it basicaly an OpenStruct, so you know what to do):
@uc_file.original_filename
# => "logo.png"
@uc_file.image_info
# => {"width"=>397, "geo_location"=>nil, "datetime_original"=>nil, "height"=>81}
You could read more: https://uploadcare.com/documentation/rest/#file
At this point you probably store your files UUIDs or CDN urls in some kind of storage. Then you can create file object by passing them into API:
# file by UUID
@file = @api.file "c969be02-9925-4a7e-aa6d-b0730368791c"
# => #<Uploadcare::Api::File uuid="7bb9efa4-05c0-4f36-b0ef-11a4221867f6"
# file by CDN url
@file = @api.file "http://www.ucarecdn.com/a8775cf7-0c2c-44fa-b071-4dd48637ecac/"
# => #<Uploadcare::Api::File uuid="7bb9efa4-05c0-4f36-b0ef-11a4221867f6"
# not that generated files aren't loaded by initializing, you need to load it.
@file.is_loaded?
# => false
Uploadcare gives you some awesome CDN operations for croping, resizing, rotation, format convertation etc. You could read more at https://uploadcare.com/documentation/cdn/ . Version 1.0.0 of the gem has no specific methods for this kind of operations, we expect to add support for it later in 1.1 releases. For the moment all your file objects can store operations passed by cdn url:
@file = @api.file "http://www.ucarecdn.com/a8775cf7-0c2c-44fa-b071-4dd48637ecac/-/crop/150x150/center/-/format/png/"
# => #<Uploadcare::Api::File uuid="a8775cf7-0c2c-44fa-b071-4dd48637ecac"
@file.operations
# => ["crop/150x150/center", "format/png"]
# note that by default :cdn_url method will return url without any operations:
@file.cdn_url
# => "http://www.ucarecdn.com/a8775cf7-0c2c-44fa-b071-4dd48637ecac/""
# you can pass true to :cdn_url methods to get url with included operations:
@file.cdn_url(true)
# => "http://www.ucarecdn.com/a8775cf7-0c2c-44fa-b071-4dd48637ecac/-/crop/150x150/center/-/format/png/"
# or call specific methods for url with or without them:
@file.cdn_url_with_operations
@file.cdn_url_without_operations
Until operations wrapper is released the best way for you to manage operation is simply add them to URL as a string:
<img src="#{file.cdn_url}-/crop/#{width}x#{height}/center/"/>
# or something like that
File list is a paginated collection of files for you project. You could read more at https://uploadcare.com/documentation/rest/#pagination. In our gem file list is a single page containing 20 (by default, value may change) files and some methods for navigating through pages.
@list = @api.file_list 1 #page number, 1 by default
# => #<Uploadcare::Api::FileList ....
# method :resulst will return you an array of files
@list.results
# => [#<Uploadcare::Api::File uuid="24626d2f-3f23-4464-b190-37115ce7742a" ...>,
# ... 20 of them ...
# #<Uploadcare::Api::File uuid="7bb9efa4-05c0-4f36-b0ef-11a4221867f6" ...>]
# note that every file is already loaded
@list.results[1].is_loaded?
# => true
# there is also shortcuts for you
@list.to_a
# => [#<Uploadcare::Api::File uuid="24626d2f-3f23-4464-b190-37115ce7742a" ...>,
# ... 20 of them ...
# #<Uploadcare::Api::File uuid="7bb9efa4-05c0-4f36-b0ef-11a4221867f6" ...>]
@list[3]
# => #<Uploadcare::Api::File ....
And don't forget that you can navigate throught pages:
@list = @api.files_list 3
@list.next_page
# => #<Uploadcare::Api::FileList page=4 ....
@list.previous_page
# => #<Uploadcare::Api::FileList page=2 ....
@list.go_to 5
# => #<Uploadcare::Api::FileList page=5 ....
# there is also methods described in API docs avaliable for you:
# total pages
@list.pages
# => 16
# current page
@list.page
# => 3
# files per page
@list.per_page
# => 20
# total files in project
@list.total
# => 308
Project provides basic information about the connecting project. Project object is basicly openstruct so every method described in API docs accessible to you:
project = @api.project
# => #<Uploadcare::Api::Project collaborators=[], name="demo", pub_key="demopublickey", autostore_enabled=true>
project.name
# => "demo"
p.collaborators
# => []
# more often it should look like
# [{"email": collaborator@gmail.com, "name": "Collaborator"}, {"email": collaborator@gmail.com, "name": "Collaborator"}]
Groups of files - https://uploadcare.com/documentation/rest/#group.
Stores files as group by the single UUID.
Note that UUID has a ~#{files_count}
part at the end and it is required by API to work properly.
# group can be created eather by array of Uploadcare Files:
@files_ary = [@file, @file2]
@files = @api.upload @files_ary
@group = @api.create_group @files
# => #<Uploadcare::Api::Group uuid="0d192d66-c7a6-4465-b2cd-46716c5e3df3~2", files_count=2 ...
# or by array of strings containing UUIDs
@uuids_ary = ["c969be02-9925-4a7e-aa6d-b0730368791c", "c969be02-9925-4a7e-aa6d-b0730368791c"]
@group = @api.create_group @uuids_ary
# => #<Uploadcare::Api::Group uuid="0d192d66-c7a6-4465-b2cd-46716c5e3df3~2", files_count=2 ...
# you can also create group object just by passing group UUID
@group_uloaded = @api.group "#{uuid}"
As with files, group created by passing just the UUID is not loaded by default - you need to load data manually, as it requires separate HTTP GET request. New groups created by :create_group method is loaded by default.
@group = @api.group "#{uuid}"
@group.is_loaded?
# => false
@group.load_data
# => #<Uploadcare::Api::Group uuid="0d192d66-c7a6-4465-b2cd-46716c5e3df3~2", files_count=2 ...
# loaded group has methods described by API docs and more importantly an array of files
# this files are loaded by default.
@group.files
# => [#<Uploadcare::Api::File uuid="24626d2f-3f23-4464-b190-37115ce7742a" ...>,
# ... #{files_count} of them ...
# #<Uploadcare::Api::File uuid="7bb9efa4-05c0-4f36-b0ef-11a4221867f6" ...>]
From version 1.0.2 we have a custom exceptions which will raise when Uploadcare service return something with 4xx or 5xx HTTP status.
List of custom errors:
400 => Uploadcare::Error::RequestError::BadRequest,
401 => Uploadcare::Error::RequestError::Unauthorized,
403 => Uploadcare::Error::RequestError::Forbidden,
404 => Uploadcare::Error::RequestError::NotFound,
406 => Uploadcare::Error::RequestError::NotAcceptable,
408 => Uploadcare::Error::RequestError::RequestTimeout,
422 => Uploadcare::Error::RequestError::UnprocessableEntity,
429 => Uploadcare::Error::RequestError::TooManyRequests,
500 => Uploadcare::Error::ServerError::InternalServerError,
502 => Uploadcare::Error::ServerError::BadGateway,
503 => Uploadcare::Error::ServerError::ServiceUnavailable,
504 => Uploadcare::Error::ServerError::GatewayTimeout
so now you could escape particular error (in that case 404: Not Found error):
begin
@connection.send :get, '/random_url/', {}
rescue Uploadcare::Error::RequestError::NotFound => e
nil
end
... any request error (covers all 4xx status codes):
begin
@connection.send :get, '/random_url/', {}
rescue Uploadcare::Error::RequestError => e
nil
end
...and actually any Uploadcare service errors:
begin
@connection.send :get, '/random_url/', {}
rescue Uploadcare::Error => e
nil
end
Please note what almost all actions depends on Uploadcare servers and it will be wise of you to expect that servers will return error code (at least some times).
Run bundle exec rspec
.
To run tests with your own keys, make a spec/config.yml
file like this:
public_key: 'PUBLIC KEY'
private_key: 'PRIVATE KEY'
This is open source, fork, hack, request a pull, receive a discount)