uploadcare-ruby 2.1.2 → 3.0.3
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.github/workflows/gem-push.yml +20 -0
- data/.github/workflows/ruby.yml +52 -0
- data/.gitignore +13 -6
- data/.rspec +2 -0
- data/.rubocop.yml +20 -0
- data/.yardopts +4 -0
- data/CHANGELOG.md +24 -51
- data/DEVELOPMENT.md +18 -0
- data/Gemfile +2 -0
- data/LICENSE +1 -1
- data/README.md +164 -578
- data/Rakefile +5 -5
- data/bin/console +15 -0
- data/bin/setup +8 -0
- data/lib/uploadcare.rb +36 -32
- data/lib/uploadcare/api/api.rb +25 -0
- data/lib/uploadcare/client/file_client.rb +44 -0
- data/lib/uploadcare/client/file_list_client.rb +46 -0
- data/lib/uploadcare/client/group_client.rb +45 -0
- data/lib/uploadcare/client/multipart_upload/chunks_client.rb +46 -0
- data/lib/uploadcare/client/multipart_upload_client.rb +62 -0
- data/lib/uploadcare/client/project_client.rb +18 -0
- data/lib/uploadcare/client/rest_client.rb +73 -0
- data/lib/uploadcare/client/rest_group_client.rb +23 -0
- data/lib/uploadcare/client/upload_client.rb +35 -0
- data/lib/uploadcare/client/uploader_client.rb +93 -0
- data/lib/uploadcare/client/webhook_client.rb +43 -0
- data/lib/uploadcare/concern/error_handler.rb +54 -0
- data/lib/uploadcare/concern/throttle_handler.rb +25 -0
- data/lib/uploadcare/concern/upload_error_handler.rb +32 -0
- data/lib/uploadcare/entity/decorator/paginator.rb +81 -0
- data/lib/uploadcare/entity/entity.rb +18 -0
- data/lib/uploadcare/entity/file.rb +81 -0
- data/lib/uploadcare/entity/file_list.rb +30 -0
- data/lib/uploadcare/entity/group.rb +41 -0
- data/lib/uploadcare/entity/group_list.rb +24 -0
- data/lib/uploadcare/entity/project.rb +13 -0
- data/lib/uploadcare/entity/uploader.rb +73 -0
- data/lib/uploadcare/entity/webhook.rb +14 -0
- data/lib/uploadcare/exception/request_error.rb +9 -0
- data/lib/uploadcare/exception/throttle_error.rb +14 -0
- data/lib/uploadcare/param/authentication_header.rb +25 -0
- data/lib/uploadcare/param/param.rb +10 -0
- data/lib/uploadcare/param/secure_auth_header.rb +37 -0
- data/lib/uploadcare/param/simple_auth_header.rb +14 -0
- data/lib/uploadcare/param/upload/signature_generator.rb +24 -0
- data/lib/uploadcare/param/upload/upload_params_generator.rb +23 -0
- data/lib/uploadcare/param/user_agent.rb +21 -0
- data/lib/uploadcare/ruby/version.rb +5 -0
- data/uploadcare-ruby.gemspec +50 -37
- metadata +98 -113
- data/.travis.yml +0 -26
- data/UPGRADE_NOTES.md +0 -36
- data/lib/uploadcare/api.rb +0 -26
- data/lib/uploadcare/api/file_api.rb +0 -7
- data/lib/uploadcare/api/file_list_api.rb +0 -19
- data/lib/uploadcare/api/file_storage_api.rb +0 -34
- data/lib/uploadcare/api/group_api.rb +0 -38
- data/lib/uploadcare/api/group_list_api.rb +0 -17
- data/lib/uploadcare/api/project_api.rb +0 -9
- data/lib/uploadcare/api/raw_api.rb +0 -38
- data/lib/uploadcare/api/uploading_api.rb +0 -71
- data/lib/uploadcare/api/uploading_api/upload_params.rb +0 -72
- data/lib/uploadcare/api/validators/file_list_options_validator.rb +0 -73
- data/lib/uploadcare/api/validators/group_list_options_validator.rb +0 -49
- data/lib/uploadcare/errors/errors.rb +0 -64
- data/lib/uploadcare/resources/file.rb +0 -164
- data/lib/uploadcare/resources/file_list.rb +0 -14
- data/lib/uploadcare/resources/group.rb +0 -115
- data/lib/uploadcare/resources/group_list.rb +0 -14
- data/lib/uploadcare/resources/project.rb +0 -13
- data/lib/uploadcare/resources/resource_list.rb +0 -83
- data/lib/uploadcare/rest/auth/auth.rb +0 -31
- data/lib/uploadcare/rest/auth/secure.rb +0 -43
- data/lib/uploadcare/rest/auth/simple.rb +0 -16
- data/lib/uploadcare/rest/connections/api_connection.rb +0 -53
- data/lib/uploadcare/rest/connections/upload_connection.rb +0 -22
- data/lib/uploadcare/rest/middlewares/auth_middleware.rb +0 -24
- data/lib/uploadcare/rest/middlewares/parse_json_middleware.rb +0 -33
- data/lib/uploadcare/rest/middlewares/raise_error_middleware.rb +0 -21
- data/lib/uploadcare/utils/parser.rb +0 -71
- data/lib/uploadcare/utils/user_agent.rb +0 -44
- data/lib/uploadcare/version.rb +0 -3
- data/spec/api/file_list_api_spec.rb +0 -95
- data/spec/api/file_storage_api_spec.rb +0 -88
- data/spec/api/group_list_api_spec.rb +0 -59
- data/spec/api/raw_api_spec.rb +0 -25
- data/spec/api/uploading_api/upload_params_spec.rb +0 -99
- data/spec/api/uploading_api_spec.rb +0 -59
- data/spec/resources/file_list_spec.rb +0 -25
- data/spec/resources/file_spec.rb +0 -223
- data/spec/resources/group_list_spec.rb +0 -25
- data/spec/resources/group_spec.rb +0 -101
- data/spec/resources/operations_spec.rb +0 -59
- data/spec/resources/project_spec.rb +0 -21
- data/spec/rest/api_connection_spec.rb +0 -68
- data/spec/rest/auth/secure_spec.rb +0 -66
- data/spec/rest/auth/simple_spec.rb +0 -31
- data/spec/rest/errors_spec.rb +0 -75
- data/spec/rest/upload_connection_spec.rb +0 -19
- data/spec/shared/resource_list.rb +0 -188
- data/spec/spec_helper.rb +0 -54
- data/spec/uploadcare_spec.rb +0 -43
- data/spec/utils/parser_spec.rb +0 -85
- data/spec/utils/user_agent_spec.rb +0 -46
- data/spec/view.png +0 -0
- data/spec/view2.jpg +0 -0
@@ -1,38 +0,0 @@
|
|
1
|
-
module Uploadcare
|
2
|
-
module GroupApi
|
3
|
-
|
4
|
-
def group uuid_or_cdn_url
|
5
|
-
group = Uploadcare::Api::Group.new self, uuid_or_cdn_url
|
6
|
-
end
|
7
|
-
|
8
|
-
|
9
|
-
def create_group ary
|
10
|
-
unless ary.kind_of?(Array)
|
11
|
-
raise ArgumentError.new "You should send and array of files or valid UUIDs"
|
12
|
-
else
|
13
|
-
if ary.select {|f| !!f.kind_of?(Uploadcare::Api::File) }.any?
|
14
|
-
files = Hash.new
|
15
|
-
ary.each_with_index do |file, i|
|
16
|
-
files["files[#{i}]"] = file.uuid
|
17
|
-
end
|
18
|
-
elsif ary.select {|f| !!f.kind_of?(String) }.any?
|
19
|
-
files = Hash.new
|
20
|
-
ary.each_with_index do |uuid, i|
|
21
|
-
files["files[#{i}]"] = uuid
|
22
|
-
end
|
23
|
-
else
|
24
|
-
raise ArgumentError.new "You should send and array of files or valid UUIDs"
|
25
|
-
end
|
26
|
-
end
|
27
|
-
|
28
|
-
|
29
|
-
data = {
|
30
|
-
pub_key: @options[:public_key],
|
31
|
-
}
|
32
|
-
|
33
|
-
data.merge! files
|
34
|
-
post = @upload_connection.send :post, "/group/", data
|
35
|
-
group = Uploadcare::Api::Group.new self, post.body["id"], post.body
|
36
|
-
end
|
37
|
-
end
|
38
|
-
end
|
@@ -1,17 +0,0 @@
|
|
1
|
-
module Uploadcare
|
2
|
-
module GroupListApi
|
3
|
-
# Available options:
|
4
|
-
#
|
5
|
-
# limit -- a number of objects retrieved per request. Default: 100
|
6
|
-
# ordering -- sorting order of groups in a list. Default: datetime_creataed
|
7
|
-
# from -- a starting point for filtering groups.
|
8
|
-
#
|
9
|
-
# Documentation: http://uploadcare.com/documentation/rest/#group-groups
|
10
|
-
def group_list options={}
|
11
|
-
Validators::GroupListOptionsValidator.new(options).validate
|
12
|
-
|
13
|
-
data = get '/groups/', options
|
14
|
-
list = Uploadcare::Api::GroupList.new self, data, options
|
15
|
-
end
|
16
|
-
end
|
17
|
-
end
|
@@ -1,38 +0,0 @@
|
|
1
|
-
require 'json'
|
2
|
-
|
3
|
-
module Uploadcare
|
4
|
-
module RawApi
|
5
|
-
def initialize(options = {})
|
6
|
-
@options = Uploadcare::default_settings.merge(options)
|
7
|
-
@api_connection = Uploadcare::Connections::ApiConnection.new(@options)
|
8
|
-
@upload_connection = Uploadcare::Connections::UploadConnection.new(@options)
|
9
|
-
end
|
10
|
-
|
11
|
-
# basic request method
|
12
|
-
def request(method = :get, path = '/files/', params = {})
|
13
|
-
response = @api_connection.send method, path, params
|
14
|
-
response.body
|
15
|
-
end
|
16
|
-
alias_method :api_request, :request
|
17
|
-
|
18
|
-
# request with GET verb
|
19
|
-
def get(path = '/files/', params = {})
|
20
|
-
request :get, path, params
|
21
|
-
end
|
22
|
-
|
23
|
-
# request with POST verb
|
24
|
-
def post(path = '/files/', params = {})
|
25
|
-
request :post, path, params
|
26
|
-
end
|
27
|
-
|
28
|
-
# request with PUT verb
|
29
|
-
def put(path = '/files/', params = {})
|
30
|
-
request :put, path, params
|
31
|
-
end
|
32
|
-
|
33
|
-
# request with DELETE verb
|
34
|
-
def delete(path = '/files/', params = {})
|
35
|
-
request :delete, path, params
|
36
|
-
end
|
37
|
-
end
|
38
|
-
end
|
@@ -1,71 +0,0 @@
|
|
1
|
-
require_relative 'uploading_api/upload_params'
|
2
|
-
|
3
|
-
module Uploadcare
|
4
|
-
module UploadingApi
|
5
|
-
# intelegent guess for file or URL uploading
|
6
|
-
def upload(object, options = {})
|
7
|
-
case object
|
8
|
-
when File then upload_file(object, options)
|
9
|
-
when Array then upload_files(object, options)
|
10
|
-
# if object is a string, try to upload it as an URL
|
11
|
-
when String then upload_url(object, options)
|
12
|
-
else
|
13
|
-
raise ArgumentError, "Expected `object` to be an Uploadcare::Api::File, "\
|
14
|
-
"an Array or a valid URL string, received: `#{object}`"
|
15
|
-
end
|
16
|
-
end
|
17
|
-
|
18
|
-
# Upload multiple files
|
19
|
-
def upload_files(files, options = {})
|
20
|
-
data = upload_params(options).for_file_upload(files)
|
21
|
-
|
22
|
-
response = @upload_connection.post('/base/', data)
|
23
|
-
|
24
|
-
response.body.values.map! { |f| Uploadcare::Api::File.new(self, f) }
|
25
|
-
end
|
26
|
-
|
27
|
-
# Upload single file
|
28
|
-
def upload_file(file, options = {})
|
29
|
-
upload_files([file], options).first
|
30
|
-
end
|
31
|
-
alias_method :create_file, :upload_file
|
32
|
-
|
33
|
-
# Upload from an URL
|
34
|
-
def upload_url(url, options = {})
|
35
|
-
params = upload_params(options).for_url_upload(url)
|
36
|
-
token = request_file_upload(params)
|
37
|
-
|
38
|
-
upload_status = poll_upload_result(token)
|
39
|
-
if upload_status['status'] == 'error'
|
40
|
-
raise ArgumentError.new(upload_status['error'])
|
41
|
-
end
|
42
|
-
|
43
|
-
Uploadcare::Api::File.new(self, upload_status['file_id'])
|
44
|
-
end
|
45
|
-
alias_method :upload_from_url, :upload_url
|
46
|
-
|
47
|
-
private
|
48
|
-
|
49
|
-
def get_status_response(token)
|
50
|
-
response = @upload_connection.post('/from_url/status/', {token: token})
|
51
|
-
response.body
|
52
|
-
end
|
53
|
-
|
54
|
-
def request_file_upload(upload_params)
|
55
|
-
response = @upload_connection.post('/from_url/', upload_params)
|
56
|
-
token = response.body['token']
|
57
|
-
end
|
58
|
-
|
59
|
-
def poll_upload_result(token)
|
60
|
-
while true
|
61
|
-
response = get_status_response(token)
|
62
|
-
break(response) if ['success', 'error'].include?(response['status'])
|
63
|
-
sleep 0.5
|
64
|
-
end
|
65
|
-
end
|
66
|
-
|
67
|
-
def upload_params(request_options)
|
68
|
-
UploadParams.new(@options, request_options)
|
69
|
-
end
|
70
|
-
end
|
71
|
-
end
|
@@ -1,72 +0,0 @@
|
|
1
|
-
require 'uri'
|
2
|
-
require 'mime/types'
|
3
|
-
|
4
|
-
module Uploadcare
|
5
|
-
module UploadingApi
|
6
|
-
class UploadParams
|
7
|
-
def initialize(global_options, request_options)
|
8
|
-
@global_options = global_options
|
9
|
-
@request_options = request_options
|
10
|
-
end
|
11
|
-
|
12
|
-
def for_url_upload(url)
|
13
|
-
{
|
14
|
-
source_url: parse_url(url),
|
15
|
-
pub_key: public_key,
|
16
|
-
store: store
|
17
|
-
}.reject { |k, v| v.nil? }
|
18
|
-
end
|
19
|
-
|
20
|
-
def for_file_upload(files)
|
21
|
-
{
|
22
|
-
UPLOADCARE_PUB_KEY: public_key,
|
23
|
-
UPLOADCARE_STORE: store
|
24
|
-
}.reject { |k, v| v.nil? }.merge(file_params(files))
|
25
|
-
end
|
26
|
-
|
27
|
-
private
|
28
|
-
|
29
|
-
attr_reader :global_options, :request_options
|
30
|
-
|
31
|
-
def public_key
|
32
|
-
global_options[:public_key]
|
33
|
-
end
|
34
|
-
|
35
|
-
def store
|
36
|
-
mapping = { true => 1, false => 0, auto: 'auto' }
|
37
|
-
|
38
|
-
global_value = global_options[:autostore]
|
39
|
-
per_request_value = request_options[:store]
|
40
|
-
|
41
|
-
mapping[per_request_value] || mapping[global_value]
|
42
|
-
end
|
43
|
-
|
44
|
-
def file_params(files)
|
45
|
-
Hash[files.map.with_index { |file, i| ["file[#{i}]", build_upload_io(file)] }]
|
46
|
-
end
|
47
|
-
|
48
|
-
def parse_url(url)
|
49
|
-
uri = URI.parse(url)
|
50
|
-
|
51
|
-
unless uri.is_a?(URI::HTTP) # will also be true for https
|
52
|
-
raise ArgumentError, 'invalid url was given'
|
53
|
-
end
|
54
|
-
|
55
|
-
uri
|
56
|
-
end
|
57
|
-
|
58
|
-
def build_upload_io(file)
|
59
|
-
unless file.is_a?(File)
|
60
|
-
raise ArgumentError, "expected File object, #{file} given"
|
61
|
-
end
|
62
|
-
|
63
|
-
Faraday::UploadIO.new file.path, extract_mime_type(file)
|
64
|
-
end
|
65
|
-
|
66
|
-
def extract_mime_type file
|
67
|
-
types = MIME::Types.of(file.path)
|
68
|
-
types[0].content_type
|
69
|
-
end
|
70
|
-
end
|
71
|
-
end
|
72
|
-
end
|
@@ -1,73 +0,0 @@
|
|
1
|
-
module Uploadcare
|
2
|
-
module Validators
|
3
|
-
|
4
|
-
class FileListOptionsValidator
|
5
|
-
SUPPORTED_KEYS = [:from, :ordering, :limit, :stored, :removed]
|
6
|
-
|
7
|
-
def initialize(options)
|
8
|
-
@options = options
|
9
|
-
end
|
10
|
-
|
11
|
-
def validate
|
12
|
-
check_for_unsupported_keys(@options)
|
13
|
-
|
14
|
-
validate_limit(@options[:limit])
|
15
|
-
validate_stored(@options[:stored])
|
16
|
-
validate_removed(@options[:removed])
|
17
|
-
validate_ordering_and_from(@options[:ordering], @options[:from])
|
18
|
-
end
|
19
|
-
|
20
|
-
private
|
21
|
-
|
22
|
-
def check_for_unsupported_keys(options)
|
23
|
-
unsupported_keys = options.keys.reject{|k,_| SUPPORTED_KEYS.include?(k)}
|
24
|
-
error("Unknown options: #{unsupported_keys}") if unsupported_keys.any?
|
25
|
-
end
|
26
|
-
|
27
|
-
def validate_ordering_and_from(ordering, from)
|
28
|
-
case ordering
|
29
|
-
when nil, /^-?datetime_uploaded$/
|
30
|
-
validate_from_as_date(from)
|
31
|
-
when /^-?size$/
|
32
|
-
validate_from_as_size(from)
|
33
|
-
else
|
34
|
-
error("Unknown value for :ordering option: #{ordering.inspect}")
|
35
|
-
end
|
36
|
-
end
|
37
|
-
|
38
|
-
def validate_from_as_date(from)
|
39
|
-
return if from.nil? || from.to_s =~ /^\d{4}-\d{2}-\d{2}T\d{2}.*/
|
40
|
-
error(":from value should be a DateTime or an iso8601 string when "\
|
41
|
-
"ordering is `datetime_uploaded` or `-datetime_uploaded`, "\
|
42
|
-
"#{from.inspect} given")
|
43
|
-
end
|
44
|
-
|
45
|
-
def validate_from_as_size(from)
|
46
|
-
return if from.nil? || (from.is_a?(Integer) && from >= 0)
|
47
|
-
error(":from value should be a positive integer when ordering is "\
|
48
|
-
"`size` or `-size`, #{from.inspect} given")
|
49
|
-
end
|
50
|
-
|
51
|
-
def validate_limit(limit)
|
52
|
-
return if limit.nil? || (limit.is_a?(Integer) && (1..1000).include?(limit))
|
53
|
-
error(":limit should be a positive integer from 1 to 1000, "\
|
54
|
-
"#{limit.inspect} given")
|
55
|
-
end
|
56
|
-
|
57
|
-
def validate_stored(stored)
|
58
|
-
return if [nil, true, false].include?(stored)
|
59
|
-
error(":stored can be true or false, #{stored.inspect} given")
|
60
|
-
end
|
61
|
-
|
62
|
-
def validate_removed(removed)
|
63
|
-
return if [nil, true, false].include?(removed)
|
64
|
-
error(":removed can be true or false, #{removed.inspect} given")
|
65
|
-
end
|
66
|
-
|
67
|
-
def error(message)
|
68
|
-
raise ArgumentError, message
|
69
|
-
end
|
70
|
-
end
|
71
|
-
|
72
|
-
end
|
73
|
-
end
|
@@ -1,49 +0,0 @@
|
|
1
|
-
module Uploadcare
|
2
|
-
module Validators
|
3
|
-
|
4
|
-
class GroupListOptionsValidator
|
5
|
-
SUPPORTED_KEYS = [:from, :ordering, :limit]
|
6
|
-
|
7
|
-
def initialize(options)
|
8
|
-
@options = options
|
9
|
-
end
|
10
|
-
|
11
|
-
def validate
|
12
|
-
check_for_unsupported_keys(@options)
|
13
|
-
|
14
|
-
validate_limit(@options[:limit])
|
15
|
-
validate_ordering(@options[:ordering])
|
16
|
-
validate_from(@options[:from])
|
17
|
-
end
|
18
|
-
|
19
|
-
private
|
20
|
-
|
21
|
-
def check_for_unsupported_keys(options)
|
22
|
-
unsupported_keys = options.keys.reject{|k,_| SUPPORTED_KEYS.include?(k)}
|
23
|
-
error("Unknown options: #{unsupported_keys}") if unsupported_keys.any?
|
24
|
-
end
|
25
|
-
|
26
|
-
def validate_ordering(ordering)
|
27
|
-
return if !ordering || ordering =~ /^-?datetime_created$/
|
28
|
-
error("Unknown value for :ordering option: #{ordering.inspect}")
|
29
|
-
end
|
30
|
-
|
31
|
-
def validate_from(from)
|
32
|
-
return if from.nil? || from.to_s =~ /^\d{4}-\d{2}-\d{2}T\d{2}.*/
|
33
|
-
error(":from value should be a DateTime or an iso8601 string, "\
|
34
|
-
"#{from.inspect} given")
|
35
|
-
end
|
36
|
-
|
37
|
-
def validate_limit(limit)
|
38
|
-
return if limit.nil? || (limit.is_a?(Integer) && (1..1000).include?(limit))
|
39
|
-
error(":limit should be a positive integer from 1 to 1000, "\
|
40
|
-
"#{limit.inspect} given")
|
41
|
-
end
|
42
|
-
|
43
|
-
def error(message)
|
44
|
-
raise ArgumentError, message
|
45
|
-
end
|
46
|
-
end
|
47
|
-
|
48
|
-
end
|
49
|
-
end
|
@@ -1,64 +0,0 @@
|
|
1
|
-
module Uploadcare
|
2
|
-
class Error < ::StandardError
|
3
|
-
|
4
|
-
def self.define_error code, klass, message
|
5
|
-
class_eval <<-EOD
|
6
|
-
class #{klass} < self
|
7
|
-
def initialize( message = nil )
|
8
|
-
super( message || "HTTP #{code} - #{message}" )
|
9
|
-
end
|
10
|
-
end
|
11
|
-
EOD
|
12
|
-
end
|
13
|
-
|
14
|
-
def self.errors
|
15
|
-
@errors ||= {
|
16
|
-
400 => Uploadcare::Error::RequestError::BadRequest,
|
17
|
-
401 => Uploadcare::Error::RequestError::Unauthorized,
|
18
|
-
403 => Uploadcare::Error::RequestError::Forbidden,
|
19
|
-
404 => Uploadcare::Error::RequestError::NotFound,
|
20
|
-
406 => Uploadcare::Error::RequestError::NotAcceptable,
|
21
|
-
408 => Uploadcare::Error::RequestError::RequestTimeout,
|
22
|
-
422 => Uploadcare::Error::RequestError::UnprocessableEntity,
|
23
|
-
429 => Uploadcare::Error::RequestError::TooManyRequests,
|
24
|
-
500 => Uploadcare::Error::ServerError::InternalServerError,
|
25
|
-
502 => Uploadcare::Error::ServerError::BadGateway,
|
26
|
-
503 => Uploadcare::Error::ServerError::ServiceUnavailable,
|
27
|
-
504 => Uploadcare::Error::ServerError::GatewayTimeout,
|
28
|
-
}
|
29
|
-
end
|
30
|
-
|
31
|
-
|
32
|
-
# Overall service error so you could escape it no matter what code is return
|
33
|
-
|
34
|
-
# all 4xx error
|
35
|
-
class RequestError < self;
|
36
|
-
def initialize( message = nil )
|
37
|
-
super( message || "HTTP 4xx - a request error occured." )
|
38
|
-
end
|
39
|
-
|
40
|
-
define_error 400, "BadRequest", "the request cannot be fulfilled due to bad syntax."
|
41
|
-
define_error 401, "Unauthorized", "authentication is required and has failed or has not yet been provided."
|
42
|
-
define_error 403, "Forbidden", "the request was a valid request, but the server is refusing to respond to it."
|
43
|
-
define_error 404, "NotFound", "the requested resource could not be found."
|
44
|
-
define_error 406, "NotAcceptable", "the requested resource is only capable of generating content"
|
45
|
-
define_error 408, "RequestTimeout", "the server timed out waiting for the request."
|
46
|
-
define_error 422, "UnprocessableEntity", "the request was well-formed but was unable to be followed due to semantic errors."
|
47
|
-
define_error 429, "TooManyRequests", "too many requests in a given amount of time."
|
48
|
-
end
|
49
|
-
|
50
|
-
# all 5xx error
|
51
|
-
class ServerError < self;
|
52
|
-
def initialize( message = nil )
|
53
|
-
super( message || "HTTP 5xx - a server error occured." )
|
54
|
-
end
|
55
|
-
|
56
|
-
define_error 500, "InternalServerError", "some error occured on server."
|
57
|
-
define_error 502, "BadGateway", "received an invalid response from the upstream server."
|
58
|
-
define_error 503, "ServiceUnavailable", "the server is currently unavailable."
|
59
|
-
define_error 504, "GatewayTimeout", "the server did not receive a timely response from the upstream server."
|
60
|
-
end
|
61
|
-
|
62
|
-
# specific error
|
63
|
-
end
|
64
|
-
end
|
@@ -1,164 +0,0 @@
|
|
1
|
-
require 'ostruct'
|
2
|
-
|
3
|
-
module Uploadcare
|
4
|
-
class Api
|
5
|
-
class File < OpenStruct
|
6
|
-
def initialize api, uuid_or_cdn_url, data=nil
|
7
|
-
result = Uploadcare::Parser.parse_file_string uuid_or_cdn_url
|
8
|
-
|
9
|
-
file = {uuid: result.uuid, operations: result.operations}
|
10
|
-
|
11
|
-
@api = api
|
12
|
-
|
13
|
-
super file
|
14
|
-
|
15
|
-
set_data(data) if data
|
16
|
-
end
|
17
|
-
|
18
|
-
def cdn_url add_operations=false
|
19
|
-
if add_operations
|
20
|
-
cdn_url_with_operations
|
21
|
-
else
|
22
|
-
cdn_url_without_operations
|
23
|
-
end
|
24
|
-
end
|
25
|
-
alias_method :public_url, :cdn_url
|
26
|
-
|
27
|
-
|
28
|
-
def cdn_url_without_operations
|
29
|
-
@api.options[:static_url_base] + "/#{@table[:uuid]}/"
|
30
|
-
end
|
31
|
-
alias_method :public_url_without_operations, :cdn_url_without_operations
|
32
|
-
|
33
|
-
|
34
|
-
def cdn_url_with_operations
|
35
|
-
url = cdn_url_without_operations
|
36
|
-
unless operations.empty?
|
37
|
-
ops = operations.join("/-/")
|
38
|
-
url = url + "-/#{ops}/"
|
39
|
-
end
|
40
|
-
url
|
41
|
-
end
|
42
|
-
alias_method :public_url_with_operations, :cdn_url_with_operations
|
43
|
-
|
44
|
-
|
45
|
-
def load_data
|
46
|
-
load_data! unless is_loaded?
|
47
|
-
self
|
48
|
-
end
|
49
|
-
alias_method :load, :load_data
|
50
|
-
|
51
|
-
def load_data!
|
52
|
-
data = @api.get "/files/#{uuid}/"
|
53
|
-
set_data(data)
|
54
|
-
|
55
|
-
self
|
56
|
-
end
|
57
|
-
alias_method :load!, :load_data!
|
58
|
-
|
59
|
-
def is_loaded?
|
60
|
-
!send(:datetime_uploaded).nil?
|
61
|
-
end
|
62
|
-
alias_method :loaded?, :is_loaded?
|
63
|
-
|
64
|
-
|
65
|
-
def store
|
66
|
-
data = @api.put "/files/#{uuid}/storage/"
|
67
|
-
set_data data
|
68
|
-
self
|
69
|
-
end
|
70
|
-
|
71
|
-
# nil is returning if there is no way to say for sure
|
72
|
-
def is_stored?
|
73
|
-
return nil unless is_loaded?
|
74
|
-
!send(:datetime_stored).nil?
|
75
|
-
end
|
76
|
-
alias_method :stored?, :is_stored?
|
77
|
-
|
78
|
-
|
79
|
-
def delete
|
80
|
-
data = @api.delete "/files/#{uuid}/storage/"
|
81
|
-
set_data data
|
82
|
-
self
|
83
|
-
end
|
84
|
-
|
85
|
-
# nil is returning if there is no way to say for sure
|
86
|
-
def is_deleted?
|
87
|
-
return nil unless is_loaded?
|
88
|
-
!send(:datetime_removed).nil?
|
89
|
-
end
|
90
|
-
alias_method :deleted?, :is_deleted?
|
91
|
-
alias_method :removed?, :is_deleted?
|
92
|
-
alias_method :is_removed?, :is_deleted?
|
93
|
-
|
94
|
-
|
95
|
-
# copy file to target location
|
96
|
-
# note what file copied with operations
|
97
|
-
def copy with_operations=true, target=nil
|
98
|
-
warn "[DEPRECATION] `copy` is deprecated and will be removed in "\
|
99
|
-
"version 3.0. Please use `internal_copy` or `external_copy` instead."
|
100
|
-
data = Hash.new
|
101
|
-
data[:target] = target if target
|
102
|
-
data[:source] = self.cdn_url_with_operations if with_operations
|
103
|
-
data[:source] = self.cdn_url_without_operations unless with_operations
|
104
|
-
|
105
|
-
@api.post "/files/", data
|
106
|
-
end
|
107
|
-
|
108
|
-
# Create a copy of the file in a default storage
|
109
|
-
def internal_copy(options={})
|
110
|
-
data = {
|
111
|
-
source: cdn_url(!options.fetch(:strip_operations){ false }),
|
112
|
-
store: options.fetch(:store){ nil }
|
113
|
-
}.reject{|_,v| v.nil?}
|
114
|
-
|
115
|
-
@api.post "/files/", data
|
116
|
-
end
|
117
|
-
|
118
|
-
# Copy file to a custom storage
|
119
|
-
def external_copy(target, options={})
|
120
|
-
data = {
|
121
|
-
source: cdn_url(!options.fetch(:strip_operations){ false }),
|
122
|
-
target: target,
|
123
|
-
pattern: options.fetch(:pattern){ nil },
|
124
|
-
make_public: options.fetch(:make_public){ nil },
|
125
|
-
}.reject{|_,v| v.nil?}
|
126
|
-
|
127
|
-
@api.post "/files/", data
|
128
|
-
end
|
129
|
-
|
130
|
-
|
131
|
-
# Datetime methods
|
132
|
-
# practicly try and parse the string to date objects
|
133
|
-
["original", "uploaded", "stored", "removed"].each do |dt|
|
134
|
-
define_method "datetime_#{dt}" do
|
135
|
-
date = @table["datetime_#{dt}".to_sym]
|
136
|
-
if date.is_a?(String)
|
137
|
-
begin
|
138
|
-
parsed = DateTime.parse(date)
|
139
|
-
self.send("datetime_#{dt}=", parsed)
|
140
|
-
parsed
|
141
|
-
rescue Exception => e
|
142
|
-
date
|
143
|
-
end
|
144
|
-
else
|
145
|
-
date
|
146
|
-
end
|
147
|
-
end
|
148
|
-
end
|
149
|
-
alias_method :datetime_deleted, :datetime_removed
|
150
|
-
|
151
|
-
|
152
|
-
private
|
153
|
-
def set_data data
|
154
|
-
if data.respond_to? :each
|
155
|
-
data.each do |key, value|
|
156
|
-
self.send "#{key}=", value
|
157
|
-
end
|
158
|
-
else
|
159
|
-
self.data = data
|
160
|
-
end
|
161
|
-
end
|
162
|
-
end
|
163
|
-
end
|
164
|
-
end
|