aws-sdk 1.0.0
Sign up to get free protection for your applications and to get access to all the features.
- data/.yardopts +6 -0
- data/LICENSE.txt +171 -0
- data/NOTICE.txt +2 -0
- data/README.rdoc +189 -0
- data/lib/aws-sdk.rb +14 -0
- data/lib/aws.rb +63 -0
- data/lib/aws/api_config.rb +45 -0
- data/lib/aws/api_config/.document +0 -0
- data/lib/aws/api_config/EC2-2011-02-28.yml +2314 -0
- data/lib/aws/api_config/SNS-2010-03-31.yml +171 -0
- data/lib/aws/api_config/SQS-2009-02-01.yml +161 -0
- data/lib/aws/api_config/SimpleDB-2009-04-15.yml +278 -0
- data/lib/aws/api_config/SimpleEmailService-2010-12-01.yml +147 -0
- data/lib/aws/api_config_transform.rb +32 -0
- data/lib/aws/async_handle.rb +90 -0
- data/lib/aws/authorize_v2.rb +37 -0
- data/lib/aws/authorize_v3.rb +37 -0
- data/lib/aws/base_client.rb +524 -0
- data/lib/aws/cacheable.rb +92 -0
- data/lib/aws/common.rb +228 -0
- data/lib/aws/configurable.rb +36 -0
- data/lib/aws/configuration.rb +272 -0
- data/lib/aws/configured_client_methods.rb +81 -0
- data/lib/aws/configured_grammars.rb +65 -0
- data/lib/aws/configured_option_grammars.rb +46 -0
- data/lib/aws/configured_xml_grammars.rb +47 -0
- data/lib/aws/default_signer.rb +38 -0
- data/lib/aws/ec2.rb +321 -0
- data/lib/aws/ec2/attachment.rb +149 -0
- data/lib/aws/ec2/attachment_collection.rb +57 -0
- data/lib/aws/ec2/availability_zone.rb +80 -0
- data/lib/aws/ec2/availability_zone_collection.rb +47 -0
- data/lib/aws/ec2/block_device_mappings.rb +53 -0
- data/lib/aws/ec2/client.rb +54 -0
- data/lib/aws/ec2/client/xml.rb +127 -0
- data/lib/aws/ec2/collection.rb +39 -0
- data/lib/aws/ec2/config_transform.rb +63 -0
- data/lib/aws/ec2/elastic_ip.rb +107 -0
- data/lib/aws/ec2/elastic_ip_collection.rb +85 -0
- data/lib/aws/ec2/errors.rb +29 -0
- data/lib/aws/ec2/filtered_collection.rb +65 -0
- data/lib/aws/ec2/has_permissions.rb +46 -0
- data/lib/aws/ec2/image.rb +245 -0
- data/lib/aws/ec2/image_collection.rb +235 -0
- data/lib/aws/ec2/instance.rb +515 -0
- data/lib/aws/ec2/instance_collection.rb +276 -0
- data/lib/aws/ec2/key_pair.rb +86 -0
- data/lib/aws/ec2/key_pair_collection.rb +102 -0
- data/lib/aws/ec2/permission_collection.rb +177 -0
- data/lib/aws/ec2/region.rb +81 -0
- data/lib/aws/ec2/region_collection.rb +55 -0
- data/lib/aws/ec2/request.rb +27 -0
- data/lib/aws/ec2/reserved_instances.rb +50 -0
- data/lib/aws/ec2/reserved_instances_collection.rb +44 -0
- data/lib/aws/ec2/reserved_instances_offering.rb +55 -0
- data/lib/aws/ec2/reserved_instances_offering_collection.rb +43 -0
- data/lib/aws/ec2/resource.rb +340 -0
- data/lib/aws/ec2/resource_tag_collection.rb +218 -0
- data/lib/aws/ec2/security_group.rb +246 -0
- data/lib/aws/ec2/security_group/ip_permission.rb +70 -0
- data/lib/aws/ec2/security_group/ip_permission_collection.rb +59 -0
- data/lib/aws/ec2/security_group_collection.rb +132 -0
- data/lib/aws/ec2/snapshot.rb +138 -0
- data/lib/aws/ec2/snapshot_collection.rb +90 -0
- data/lib/aws/ec2/tag.rb +88 -0
- data/lib/aws/ec2/tag_collection.rb +114 -0
- data/lib/aws/ec2/tagged_collection.rb +48 -0
- data/lib/aws/ec2/tagged_item.rb +87 -0
- data/lib/aws/ec2/volume.rb +190 -0
- data/lib/aws/ec2/volume_collection.rb +95 -0
- data/lib/aws/errors.rb +129 -0
- data/lib/aws/http/builtin_handler.rb +69 -0
- data/lib/aws/http/curb_handler.rb +123 -0
- data/lib/aws/http/handler.rb +77 -0
- data/lib/aws/http/httparty_handler.rb +61 -0
- data/lib/aws/http/request.rb +136 -0
- data/lib/aws/http/request_param.rb +63 -0
- data/lib/aws/http/response.rb +75 -0
- data/lib/aws/ignore_result_element.rb +38 -0
- data/lib/aws/indifferent_hash.rb +86 -0
- data/lib/aws/inflection.rb +46 -0
- data/lib/aws/lazy_error_classes.rb +64 -0
- data/lib/aws/meta_utils.rb +43 -0
- data/lib/aws/model.rb +57 -0
- data/lib/aws/naming.rb +32 -0
- data/lib/aws/option_grammar.rb +544 -0
- data/lib/aws/policy.rb +912 -0
- data/lib/aws/rails.rb +209 -0
- data/lib/aws/record.rb +79 -0
- data/lib/aws/record/attribute.rb +94 -0
- data/lib/aws/record/attribute_macros.rb +288 -0
- data/lib/aws/record/attributes/boolean.rb +49 -0
- data/lib/aws/record/attributes/datetime.rb +86 -0
- data/lib/aws/record/attributes/float.rb +48 -0
- data/lib/aws/record/attributes/integer.rb +68 -0
- data/lib/aws/record/attributes/sortable_float.rb +60 -0
- data/lib/aws/record/attributes/sortable_integer.rb +95 -0
- data/lib/aws/record/attributes/string.rb +69 -0
- data/lib/aws/record/base.rb +728 -0
- data/lib/aws/record/conversion.rb +38 -0
- data/lib/aws/record/dirty_tracking.rb +286 -0
- data/lib/aws/record/errors.rb +153 -0
- data/lib/aws/record/exceptions.rb +48 -0
- data/lib/aws/record/finder_methods.rb +262 -0
- data/lib/aws/record/naming.rb +31 -0
- data/lib/aws/record/scope.rb +157 -0
- data/lib/aws/record/validations.rb +653 -0
- data/lib/aws/record/validator.rb +237 -0
- data/lib/aws/record/validators/acceptance.rb +51 -0
- data/lib/aws/record/validators/block.rb +38 -0
- data/lib/aws/record/validators/confirmation.rb +43 -0
- data/lib/aws/record/validators/count.rb +108 -0
- data/lib/aws/record/validators/exclusion.rb +43 -0
- data/lib/aws/record/validators/format.rb +57 -0
- data/lib/aws/record/validators/inclusion.rb +56 -0
- data/lib/aws/record/validators/length.rb +107 -0
- data/lib/aws/record/validators/numericality.rb +138 -0
- data/lib/aws/record/validators/presence.rb +45 -0
- data/lib/aws/resource_cache.rb +39 -0
- data/lib/aws/response.rb +113 -0
- data/lib/aws/response_cache.rb +50 -0
- data/lib/aws/s3.rb +109 -0
- data/lib/aws/s3/access_control_list.rb +252 -0
- data/lib/aws/s3/acl_object.rb +266 -0
- data/lib/aws/s3/bucket.rb +320 -0
- data/lib/aws/s3/bucket_collection.rb +122 -0
- data/lib/aws/s3/bucket_version_collection.rb +85 -0
- data/lib/aws/s3/client.rb +999 -0
- data/lib/aws/s3/client/xml.rb +190 -0
- data/lib/aws/s3/data_options.rb +99 -0
- data/lib/aws/s3/errors.rb +43 -0
- data/lib/aws/s3/multipart_upload.rb +318 -0
- data/lib/aws/s3/multipart_upload_collection.rb +78 -0
- data/lib/aws/s3/object_collection.rb +159 -0
- data/lib/aws/s3/object_metadata.rb +67 -0
- data/lib/aws/s3/object_upload_collection.rb +83 -0
- data/lib/aws/s3/object_version.rb +141 -0
- data/lib/aws/s3/object_version_collection.rb +78 -0
- data/lib/aws/s3/paginated_collection.rb +94 -0
- data/lib/aws/s3/policy.rb +76 -0
- data/lib/aws/s3/prefix_and_delimiter_collection.rb +56 -0
- data/lib/aws/s3/prefixed_collection.rb +84 -0
- data/lib/aws/s3/presigned_post.rb +504 -0
- data/lib/aws/s3/request.rb +198 -0
- data/lib/aws/s3/s3_object.rb +794 -0
- data/lib/aws/s3/tree.rb +116 -0
- data/lib/aws/s3/tree/branch_node.rb +71 -0
- data/lib/aws/s3/tree/child_collection.rb +108 -0
- data/lib/aws/s3/tree/leaf_node.rb +99 -0
- data/lib/aws/s3/tree/node.rb +22 -0
- data/lib/aws/s3/tree/parent.rb +90 -0
- data/lib/aws/s3/uploaded_part.rb +82 -0
- data/lib/aws/s3/uploaded_part_collection.rb +86 -0
- data/lib/aws/service_interface.rb +60 -0
- data/lib/aws/simple_db.rb +202 -0
- data/lib/aws/simple_db/attribute.rb +159 -0
- data/lib/aws/simple_db/attribute_collection.rb +227 -0
- data/lib/aws/simple_db/client.rb +52 -0
- data/lib/aws/simple_db/client/options.rb +34 -0
- data/lib/aws/simple_db/client/xml.rb +68 -0
- data/lib/aws/simple_db/consistent_read_option.rb +42 -0
- data/lib/aws/simple_db/delete_attributes.rb +64 -0
- data/lib/aws/simple_db/domain.rb +118 -0
- data/lib/aws/simple_db/domain_collection.rb +116 -0
- data/lib/aws/simple_db/domain_metadata.rb +112 -0
- data/lib/aws/simple_db/errors.rb +46 -0
- data/lib/aws/simple_db/expect_condition_option.rb +45 -0
- data/lib/aws/simple_db/item.rb +84 -0
- data/lib/aws/simple_db/item_collection.rb +594 -0
- data/lib/aws/simple_db/item_data.rb +70 -0
- data/lib/aws/simple_db/put_attributes.rb +62 -0
- data/lib/aws/simple_db/request.rb +27 -0
- data/lib/aws/simple_email_service.rb +373 -0
- data/lib/aws/simple_email_service/client.rb +39 -0
- data/lib/aws/simple_email_service/client/options.rb +24 -0
- data/lib/aws/simple_email_service/client/xml.rb +38 -0
- data/lib/aws/simple_email_service/email_address_collection.rb +66 -0
- data/lib/aws/simple_email_service/errors.rb +29 -0
- data/lib/aws/simple_email_service/quotas.rb +64 -0
- data/lib/aws/simple_email_service/request.rb +27 -0
- data/lib/aws/sns.rb +69 -0
- data/lib/aws/sns/client.rb +37 -0
- data/lib/aws/sns/client/options.rb +24 -0
- data/lib/aws/sns/client/xml.rb +38 -0
- data/lib/aws/sns/errors.rb +29 -0
- data/lib/aws/sns/policy.rb +49 -0
- data/lib/aws/sns/request.rb +27 -0
- data/lib/aws/sns/subscription.rb +100 -0
- data/lib/aws/sns/subscription_collection.rb +84 -0
- data/lib/aws/sns/topic.rb +384 -0
- data/lib/aws/sns/topic_collection.rb +70 -0
- data/lib/aws/sns/topic_subscription_collection.rb +58 -0
- data/lib/aws/sqs.rb +70 -0
- data/lib/aws/sqs/client.rb +38 -0
- data/lib/aws/sqs/client/xml.rb +36 -0
- data/lib/aws/sqs/errors.rb +33 -0
- data/lib/aws/sqs/policy.rb +50 -0
- data/lib/aws/sqs/queue.rb +507 -0
- data/lib/aws/sqs/queue_collection.rb +105 -0
- data/lib/aws/sqs/received_message.rb +184 -0
- data/lib/aws/sqs/received_sns_message.rb +112 -0
- data/lib/aws/sqs/request.rb +44 -0
- data/lib/aws/xml_grammar.rb +923 -0
- data/rails/init.rb +15 -0
- metadata +298 -0
@@ -0,0 +1,43 @@
|
|
1
|
+
# Copyright 2011 Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
2
|
+
#
|
3
|
+
# Licensed under the Apache License, Version 2.0 (the "License"). You
|
4
|
+
# may not use this file except in compliance with the License. A copy of
|
5
|
+
# the License is located at
|
6
|
+
#
|
7
|
+
# http://aws.amazon.com/apache2.0/
|
8
|
+
#
|
9
|
+
# or in the "license" file accompanying this file. This file is
|
10
|
+
# distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF
|
11
|
+
# ANY KIND, either express or implied. See the License for the specific
|
12
|
+
# language governing permissions and limitations under the License.
|
13
|
+
|
14
|
+
require 'aws/record/validators/inclusion'
|
15
|
+
|
16
|
+
module AWS
|
17
|
+
module Record
|
18
|
+
|
19
|
+
# @private
|
20
|
+
class ExclusionValidator < InclusionValidator
|
21
|
+
|
22
|
+
ACCEPTED_OPTIONS = [:in, :message, :allow_nil, :on, :if, :unless]
|
23
|
+
|
24
|
+
def setup record_class
|
25
|
+
ensure_present(:in)
|
26
|
+
ensure_type(Enumerable, :in)
|
27
|
+
end
|
28
|
+
|
29
|
+
def validate_attribute record, attribute_name, value_or_values
|
30
|
+
each_value(value_or_values) do |value|
|
31
|
+
included = value_included?(value)
|
32
|
+
record.errors.add(attribute_name, message) if included
|
33
|
+
end
|
34
|
+
end
|
35
|
+
|
36
|
+
def message
|
37
|
+
options[:message] || 'is reserved'
|
38
|
+
end
|
39
|
+
|
40
|
+
end
|
41
|
+
|
42
|
+
end
|
43
|
+
end
|
@@ -0,0 +1,57 @@
|
|
1
|
+
# Copyright 2011 Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
2
|
+
#
|
3
|
+
# Licensed under the Apache License, Version 2.0 (the "License"). You
|
4
|
+
# may not use this file except in compliance with the License. A copy of
|
5
|
+
# the License is located at
|
6
|
+
#
|
7
|
+
# http://aws.amazon.com/apache2.0/
|
8
|
+
#
|
9
|
+
# or in the "license" file accompanying this file. This file is
|
10
|
+
# distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF
|
11
|
+
# ANY KIND, either express or implied. See the License for the specific
|
12
|
+
# language governing permissions and limitations under the License.
|
13
|
+
|
14
|
+
require 'aws/record/validator'
|
15
|
+
|
16
|
+
module AWS
|
17
|
+
module Record
|
18
|
+
|
19
|
+
# @private
|
20
|
+
class FormatValidator < Validator
|
21
|
+
|
22
|
+
ACCEPTED_OPTIONS = [
|
23
|
+
:with, :without,
|
24
|
+
:message, :allow_nil, :on, :if, :unless,
|
25
|
+
]
|
26
|
+
|
27
|
+
def setup record_class
|
28
|
+
ensure_type(Regexp, :with, :without)
|
29
|
+
ensure_at_least_one(:with, :without)
|
30
|
+
end
|
31
|
+
|
32
|
+
def validate_attribute record, attribute_name, value_or_values
|
33
|
+
each_value(value_or_values) do |value|
|
34
|
+
|
35
|
+
if options[:with]
|
36
|
+
unless value.to_s =~ options[:with]
|
37
|
+
record.errors.add(attribute_name, message)
|
38
|
+
end
|
39
|
+
end
|
40
|
+
|
41
|
+
if options[:without]
|
42
|
+
unless value.to_s !~ options[:without]
|
43
|
+
record.errors.add(attribute_name, message)
|
44
|
+
end
|
45
|
+
end
|
46
|
+
|
47
|
+
end
|
48
|
+
end
|
49
|
+
|
50
|
+
def message
|
51
|
+
options[:message] || 'is invalid'
|
52
|
+
end
|
53
|
+
|
54
|
+
end
|
55
|
+
|
56
|
+
end
|
57
|
+
end
|
@@ -0,0 +1,56 @@
|
|
1
|
+
# Copyright 2011 Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
2
|
+
#
|
3
|
+
# Licensed under the Apache License, Version 2.0 (the "License"). You
|
4
|
+
# may not use this file except in compliance with the License. A copy of
|
5
|
+
# the License is located at
|
6
|
+
#
|
7
|
+
# http://aws.amazon.com/apache2.0/
|
8
|
+
#
|
9
|
+
# or in the "license" file accompanying this file. This file is
|
10
|
+
# distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF
|
11
|
+
# ANY KIND, either express or implied. See the License for the specific
|
12
|
+
# language governing permissions and limitations under the License.
|
13
|
+
|
14
|
+
require 'aws/record/validator'
|
15
|
+
|
16
|
+
module AWS
|
17
|
+
module Record
|
18
|
+
|
19
|
+
# @private
|
20
|
+
class InclusionValidator < Validator
|
21
|
+
|
22
|
+
ACCEPTED_OPTIONS = [:in, :message, :allow_nil, :on, :if, :unless]
|
23
|
+
|
24
|
+
def setup record_class
|
25
|
+
ensure_present(:in)
|
26
|
+
ensure_type(Enumerable, :in)
|
27
|
+
end
|
28
|
+
|
29
|
+
def validate_attribute record, attribute_name, value_or_values
|
30
|
+
each_value(value_or_values) do |value|
|
31
|
+
|
32
|
+
included = if value.is_a?(Enumerable)
|
33
|
+
value.all?{|v| value_included?(v) }
|
34
|
+
else
|
35
|
+
value_included?(value)
|
36
|
+
end
|
37
|
+
|
38
|
+
record.errors.add(attribute_name, message) unless included
|
39
|
+
|
40
|
+
end
|
41
|
+
end
|
42
|
+
|
43
|
+
def value_included? value
|
44
|
+
options[:in].respond_to?(:cover?) ?
|
45
|
+
options[:in].cover?(value) :
|
46
|
+
options[:in].include?(value)
|
47
|
+
end
|
48
|
+
|
49
|
+
def message
|
50
|
+
options[:message] || 'is not included in the list'
|
51
|
+
end
|
52
|
+
|
53
|
+
end
|
54
|
+
|
55
|
+
end
|
56
|
+
end
|
@@ -0,0 +1,107 @@
|
|
1
|
+
# Copyright 2011 Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
2
|
+
#
|
3
|
+
# Licensed under the Apache License, Version 2.0 (the "License"). You
|
4
|
+
# may not use this file except in compliance with the License. A copy of
|
5
|
+
# the License is located at
|
6
|
+
#
|
7
|
+
# http://aws.amazon.com/apache2.0/
|
8
|
+
#
|
9
|
+
# or in the "license" file accompanying this file. This file is
|
10
|
+
# distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF
|
11
|
+
# ANY KIND, either express or implied. See the License for the specific
|
12
|
+
# language governing permissions and limitations under the License.
|
13
|
+
|
14
|
+
require 'aws/record/validator'
|
15
|
+
|
16
|
+
module AWS
|
17
|
+
module Record
|
18
|
+
|
19
|
+
# @private
|
20
|
+
class LengthValidator < Validator
|
21
|
+
|
22
|
+
ACCEPTED_OPTIONS = [
|
23
|
+
:exactly, :within, :minimum, :maximum,
|
24
|
+
:too_long, :too_short, :wrong_length,
|
25
|
+
:allow_nil, :on, :if, :unless,
|
26
|
+
]
|
27
|
+
|
28
|
+
def setup record_class
|
29
|
+
ensure_at_least_one(:within, :exactly, :minimum, :maximum)
|
30
|
+
ensure_exclusive(:within, :exactly, [:minimum, :maximum])
|
31
|
+
ensure_type(Range, :within)
|
32
|
+
ensure_type(Integer, :exactly, :minimum, :maximum)
|
33
|
+
ensure_type(String, :too_long, :too_short, :wrong_length)
|
34
|
+
end
|
35
|
+
|
36
|
+
def validate_attribute record, attribute_name, value_or_values
|
37
|
+
each_value(value_or_values) do |value|
|
38
|
+
|
39
|
+
length = value.respond_to?(:length) ? value.length : value.to_s.length
|
40
|
+
|
41
|
+
if exact = options[:exactly]
|
42
|
+
unless length == exact
|
43
|
+
record.errors.add(attribute_name, wrong_length(exact, length))
|
44
|
+
end
|
45
|
+
end
|
46
|
+
|
47
|
+
if within = options[:within]
|
48
|
+
if length < within.first
|
49
|
+
record.errors.add(attribute_name, too_short(within.first, length))
|
50
|
+
end
|
51
|
+
if length > within.last
|
52
|
+
record.errors.add(attribute_name, too_long(within.last, length))
|
53
|
+
end
|
54
|
+
end
|
55
|
+
|
56
|
+
if min = options[:minimum]
|
57
|
+
if length < min
|
58
|
+
record.errors.add(attribute_name, too_short(min, length))
|
59
|
+
end
|
60
|
+
end
|
61
|
+
|
62
|
+
if max = options[:maximum]
|
63
|
+
if length > max
|
64
|
+
record.errors.add(attribute_name, too_long(max, length))
|
65
|
+
end
|
66
|
+
end
|
67
|
+
|
68
|
+
end
|
69
|
+
end
|
70
|
+
|
71
|
+
# @private
|
72
|
+
protected
|
73
|
+
def wrong_length exactly, got
|
74
|
+
msg = options[:wrong_length] ||
|
75
|
+
"is the wrong length (should be %{exactly} characters)"
|
76
|
+
interpolate(msg, :exactly => exactly, :length => got)
|
77
|
+
end
|
78
|
+
|
79
|
+
# @private
|
80
|
+
protected
|
81
|
+
def too_short min, got
|
82
|
+
msg = options[:too_short] ||
|
83
|
+
"is too short (minimum is %{minimum} characters)"
|
84
|
+
interpolate(msg, :minimum => min, :length => got)
|
85
|
+
end
|
86
|
+
|
87
|
+
# @private
|
88
|
+
protected
|
89
|
+
def too_long max, got
|
90
|
+
msg = options[:too_long] ||
|
91
|
+
"is too long (maximum is %{maximum} characters)"
|
92
|
+
interpolate(msg, :maximum => max, :length => got)
|
93
|
+
end
|
94
|
+
|
95
|
+
protected
|
96
|
+
def interpolate message_with_placeholders, values
|
97
|
+
msg = message_with_placeholders.dup
|
98
|
+
values.each_pair do |key,value|
|
99
|
+
msg.gsub!(/%\{#{key}\}/, value.to_s)
|
100
|
+
end
|
101
|
+
msg
|
102
|
+
end
|
103
|
+
|
104
|
+
end
|
105
|
+
|
106
|
+
end
|
107
|
+
end
|
@@ -0,0 +1,138 @@
|
|
1
|
+
# Copyright 2011 Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
2
|
+
#
|
3
|
+
# Licensed under the Apache License, Version 2.0 (the "License"). You
|
4
|
+
# may not use this file except in compliance with the License. A copy of
|
5
|
+
# the License is located at
|
6
|
+
#
|
7
|
+
# http://aws.amazon.com/apache2.0/
|
8
|
+
#
|
9
|
+
# or in the "license" file accompanying this file. This file is
|
10
|
+
# distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF
|
11
|
+
# ANY KIND, either express or implied. See the License for the specific
|
12
|
+
# language governing permissions and limitations under the License.
|
13
|
+
|
14
|
+
require 'aws/record/validator'
|
15
|
+
|
16
|
+
module AWS
|
17
|
+
module Record
|
18
|
+
|
19
|
+
# @private
|
20
|
+
class NumericalityValidator < Validator
|
21
|
+
|
22
|
+
ACCEPTED_OPTIONS = [
|
23
|
+
:greater_than, :greater_than_or_equal_to,
|
24
|
+
:less_than, :less_than_or_equal_to,
|
25
|
+
:equal_to, :only_integer, :odd, :even,
|
26
|
+
:message, :allow_nil, :on, :if, :unless,
|
27
|
+
]
|
28
|
+
|
29
|
+
COMPARISONS = {
|
30
|
+
:equal_to => :==,
|
31
|
+
:greater_than => :>,
|
32
|
+
:greater_than_or_equal_to => :>=,
|
33
|
+
:less_than => :<,
|
34
|
+
:less_than_or_equal_to => :<=,
|
35
|
+
:even => lambda{|value| value.to_i % 2 == 0 },
|
36
|
+
:odd => lambda{|value| value.to_i % 2 == 1 },
|
37
|
+
}
|
38
|
+
|
39
|
+
def setup record_class
|
40
|
+
|
41
|
+
ensure_exclusive(:odd, :even)
|
42
|
+
|
43
|
+
ensure_exclusive(:equal_to,
|
44
|
+
[:greater_than, :greater_than_or_equal_to,
|
45
|
+
:less_than, :less_than_or_equal_to])
|
46
|
+
|
47
|
+
ensure_type([TrueClass, FalseClass], :only_integer)
|
48
|
+
|
49
|
+
ensure_type(TrueClass, :odd, :even)
|
50
|
+
|
51
|
+
ensure_type([Numeric, Symbol, Proc],
|
52
|
+
:greater_than, :greater_than_or_equal_to,
|
53
|
+
:less_than, :less_than_or_equal_to,
|
54
|
+
:equal_to)
|
55
|
+
|
56
|
+
end
|
57
|
+
|
58
|
+
def read_attribute_for_validation(record, attribute_name)
|
59
|
+
if record.respond_to?("#{attribute_name}_before_type_cast")
|
60
|
+
record.send("#{attribute_name}_before_type_cast")
|
61
|
+
else
|
62
|
+
record.send(attribute_name)
|
63
|
+
end
|
64
|
+
end
|
65
|
+
|
66
|
+
def validate_attribute record, attribute_name, raw
|
67
|
+
each_value(raw) do |raw_value|
|
68
|
+
|
69
|
+
if options[:only_integer] or options[:odd] or options[:even]
|
70
|
+
value = as_integer(raw_value)
|
71
|
+
error_type = :not_an_integer
|
72
|
+
else
|
73
|
+
value = as_number(raw_value)
|
74
|
+
error_type = :not_a_number
|
75
|
+
end
|
76
|
+
|
77
|
+
unless value
|
78
|
+
record.errors.add(attribute_name, message_for(error_type))
|
79
|
+
return
|
80
|
+
end
|
81
|
+
|
82
|
+
COMPARISONS.each do |option,method|
|
83
|
+
|
84
|
+
next unless options.has_key?(option)
|
85
|
+
|
86
|
+
requirement = case options[option]
|
87
|
+
when Symbol then record.send(options[option])
|
88
|
+
when Proc then options[option].call(record)
|
89
|
+
else options[option]
|
90
|
+
end
|
91
|
+
|
92
|
+
valid = case method
|
93
|
+
when Symbol then value.send(method, requirement)
|
94
|
+
else method.call(value)
|
95
|
+
end
|
96
|
+
|
97
|
+
unless valid
|
98
|
+
message = message_for(option, requirement)
|
99
|
+
record.errors.add(attribute_name, message)
|
100
|
+
end
|
101
|
+
|
102
|
+
end
|
103
|
+
end
|
104
|
+
end
|
105
|
+
|
106
|
+
def message_for error_type, requirement = nil
|
107
|
+
return options[:message] if options[:message]
|
108
|
+
case error_type
|
109
|
+
when :not_a_number then 'is not a number'
|
110
|
+
when :not_an_integer then 'must be an integer'
|
111
|
+
when :even then 'must be an even number'
|
112
|
+
when :odd then 'must be an odd number'
|
113
|
+
when :equal_to then "should equal #{requirement}"
|
114
|
+
else
|
115
|
+
"must be #{error_type.to_s.gsub(/_/, ' ')} #{requirement}"
|
116
|
+
end
|
117
|
+
end
|
118
|
+
|
119
|
+
def as_number value
|
120
|
+
begin
|
121
|
+
Kernel.Float(value)
|
122
|
+
rescue ArgumentError, TypeError
|
123
|
+
nil
|
124
|
+
end
|
125
|
+
end
|
126
|
+
|
127
|
+
def as_integer value
|
128
|
+
begin
|
129
|
+
Kernel.Integer(value)
|
130
|
+
rescue ArgumentError, TypeError
|
131
|
+
nil
|
132
|
+
end
|
133
|
+
end
|
134
|
+
|
135
|
+
end
|
136
|
+
|
137
|
+
end
|
138
|
+
end
|
@@ -0,0 +1,45 @@
|
|
1
|
+
# Copyright 2011 Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
2
|
+
#
|
3
|
+
# Licensed under the Apache License, Version 2.0 (the "License"). You
|
4
|
+
# may not use this file except in compliance with the License. A copy of
|
5
|
+
# the License is located at
|
6
|
+
#
|
7
|
+
# http://aws.amazon.com/apache2.0/
|
8
|
+
#
|
9
|
+
# or in the "license" file accompanying this file. This file is
|
10
|
+
# distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF
|
11
|
+
# ANY KIND, either express or implied. See the License for the specific
|
12
|
+
# language governing permissions and limitations under the License.
|
13
|
+
|
14
|
+
require 'aws/record/validator'
|
15
|
+
|
16
|
+
module AWS
|
17
|
+
module Record
|
18
|
+
|
19
|
+
# @private
|
20
|
+
class PresenceValidator < Validator
|
21
|
+
|
22
|
+
ACCEPTED_OPTIONS = [:message, :allow_nil, :on, :if, :unless]
|
23
|
+
|
24
|
+
def validate_attribute record, attribute_name, value
|
25
|
+
|
26
|
+
blank = case
|
27
|
+
when value.nil? then true
|
28
|
+
when value.is_a?(String) then value !~ /\S/
|
29
|
+
when value == false then false # defeat false.blank? == true
|
30
|
+
when value.respond_to?(:empty?) then value.empty?
|
31
|
+
when value.respond_to?(:blank?) then value.blank?
|
32
|
+
else false
|
33
|
+
end
|
34
|
+
|
35
|
+
record.errors.add(attribute_name, message) if blank
|
36
|
+
|
37
|
+
end
|
38
|
+
|
39
|
+
def message
|
40
|
+
options[:message] || 'may not be blank'
|
41
|
+
end
|
42
|
+
|
43
|
+
end
|
44
|
+
end
|
45
|
+
end
|