jchris-couchrest 0.12.6 → 0.16

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (59) hide show
  1. data/README.md +33 -8
  2. data/Rakefile +1 -1
  3. data/examples/model/example.rb +19 -13
  4. data/lib/couchrest.rb +27 -2
  5. data/lib/couchrest/core/database.rb +113 -41
  6. data/lib/couchrest/core/document.rb +48 -27
  7. data/lib/couchrest/core/response.rb +15 -0
  8. data/lib/couchrest/core/server.rb +47 -10
  9. data/lib/couchrest/mixins.rb +4 -0
  10. data/lib/couchrest/mixins/attachments.rb +31 -0
  11. data/lib/couchrest/mixins/callbacks.rb +442 -0
  12. data/lib/couchrest/mixins/design_doc.rb +63 -0
  13. data/lib/couchrest/mixins/document_queries.rb +48 -0
  14. data/lib/couchrest/mixins/extended_attachments.rb +68 -0
  15. data/lib/couchrest/mixins/extended_document_mixins.rb +6 -0
  16. data/lib/couchrest/mixins/properties.rb +120 -0
  17. data/lib/couchrest/mixins/validation.rb +234 -0
  18. data/lib/couchrest/mixins/views.rb +168 -0
  19. data/lib/couchrest/monkeypatches.rb +75 -0
  20. data/lib/couchrest/more/casted_model.rb +28 -0
  21. data/lib/couchrest/more/extended_document.rb +215 -0
  22. data/lib/couchrest/more/property.rb +40 -0
  23. data/lib/couchrest/support/blank.rb +42 -0
  24. data/lib/couchrest/support/class.rb +175 -0
  25. data/lib/couchrest/validation/auto_validate.rb +163 -0
  26. data/lib/couchrest/validation/contextual_validators.rb +78 -0
  27. data/lib/couchrest/validation/validation_errors.rb +118 -0
  28. data/lib/couchrest/validation/validators/absent_field_validator.rb +74 -0
  29. data/lib/couchrest/validation/validators/confirmation_validator.rb +99 -0
  30. data/lib/couchrest/validation/validators/format_validator.rb +117 -0
  31. data/lib/couchrest/validation/validators/formats/email.rb +66 -0
  32. data/lib/couchrest/validation/validators/formats/url.rb +43 -0
  33. data/lib/couchrest/validation/validators/generic_validator.rb +120 -0
  34. data/lib/couchrest/validation/validators/length_validator.rb +134 -0
  35. data/lib/couchrest/validation/validators/method_validator.rb +89 -0
  36. data/lib/couchrest/validation/validators/numeric_validator.rb +104 -0
  37. data/lib/couchrest/validation/validators/required_field_validator.rb +109 -0
  38. data/spec/couchrest/core/database_spec.rb +183 -67
  39. data/spec/couchrest/core/design_spec.rb +1 -1
  40. data/spec/couchrest/core/document_spec.rb +271 -173
  41. data/spec/couchrest/core/server_spec.rb +35 -0
  42. data/spec/couchrest/helpers/pager_spec.rb +1 -1
  43. data/spec/couchrest/more/casted_model_spec.rb +97 -0
  44. data/spec/couchrest/more/extended_doc_attachment_spec.rb +129 -0
  45. data/spec/couchrest/more/extended_doc_spec.rb +509 -0
  46. data/spec/couchrest/more/extended_doc_view_spec.rb +204 -0
  47. data/spec/couchrest/more/property_spec.rb +129 -0
  48. data/spec/fixtures/more/article.rb +34 -0
  49. data/spec/fixtures/more/card.rb +20 -0
  50. data/spec/fixtures/more/course.rb +14 -0
  51. data/spec/fixtures/more/event.rb +6 -0
  52. data/spec/fixtures/more/invoice.rb +17 -0
  53. data/spec/fixtures/more/person.rb +8 -0
  54. data/spec/fixtures/more/question.rb +6 -0
  55. data/spec/fixtures/more/service.rb +12 -0
  56. data/spec/spec_helper.rb +13 -7
  57. metadata +76 -3
  58. data/lib/couchrest/core/model.rb +0 -613
  59. data/spec/couchrest/core/model_spec.rb +0 -855
@@ -0,0 +1,63 @@
1
+ require 'digest/md5'
2
+
3
+ module CouchRest
4
+ module Mixins
5
+ module DesignDoc
6
+
7
+ def self.included(base)
8
+ base.extend(ClassMethods)
9
+ end
10
+
11
+ module ClassMethods
12
+ def design_doc_id
13
+ "_design/#{design_doc_slug}"
14
+ end
15
+
16
+ def design_doc_slug
17
+ return design_doc_slug_cache if (design_doc_slug_cache && design_doc_fresh)
18
+ funcs = []
19
+ design_doc['views'].each do |name, view|
20
+ funcs << "#{name}/#{view['map']}#{view['reduce']}"
21
+ end
22
+ md5 = Digest::MD5.hexdigest(funcs.sort.join(''))
23
+ self.design_doc_slug_cache = "#{self.to_s}-#{md5}"
24
+ end
25
+
26
+ def default_design_doc
27
+ {
28
+ "language" => "javascript",
29
+ "views" => {
30
+ 'all' => {
31
+ 'map' => "function(doc) {
32
+ if (doc['couchrest-type'] == '#{self.to_s}') {
33
+ emit(null,null);
34
+ }
35
+ }"
36
+ }
37
+ }
38
+ }
39
+ end
40
+
41
+ def refresh_design_doc
42
+ did = design_doc_id
43
+ saved = database.get(did) rescue nil
44
+ if saved
45
+ design_doc['views'].each do |name, view|
46
+ saved['views'][name] = view
47
+ end
48
+ database.save_doc(saved)
49
+ self.design_doc = saved
50
+ else
51
+ design_doc['_id'] = did
52
+ design_doc.delete('_rev')
53
+ design_doc.database = database
54
+ design_doc.save
55
+ end
56
+ self.design_doc_fresh = true
57
+ end
58
+
59
+ end # module ClassMethods
60
+
61
+ end
62
+ end
63
+ end
@@ -0,0 +1,48 @@
1
+ module CouchRest
2
+ module Mixins
3
+ module DocumentQueries
4
+
5
+ def self.included(base)
6
+ base.extend(ClassMethods)
7
+ end
8
+
9
+ module ClassMethods
10
+
11
+ # Load all documents that have the "couchrest-type" field equal to the
12
+ # name of the current class. Take the standard set of
13
+ # CouchRest::Database#view options.
14
+ def all(opts = {}, &block)
15
+ self.design_doc ||= Design.new(default_design_doc)
16
+ unless design_doc_fresh
17
+ refresh_design_doc
18
+ end
19
+ view(:all, opts, &block)
20
+ end
21
+
22
+ # Load the first document that have the "couchrest-type" field equal to
23
+ # the name of the current class.
24
+ #
25
+ # ==== Returns
26
+ # Object:: The first object instance available
27
+ # or
28
+ # Nil:: if no instances available
29
+ #
30
+ # ==== Parameters
31
+ # opts<Hash>::
32
+ # View options, see <tt>CouchRest::Database#view</tt> options for more info.
33
+ def first(opts = {})
34
+ first_instance = self.all(opts.merge!(:limit => 1))
35
+ first_instance.empty? ? nil : first_instance.first
36
+ end
37
+
38
+ # Load a document from the database by id
39
+ def get(id)
40
+ doc = database.get id
41
+ new(doc)
42
+ end
43
+
44
+ end
45
+
46
+ end
47
+ end
48
+ end
@@ -0,0 +1,68 @@
1
+ module CouchRest
2
+ module Mixins
3
+ module ExtendedAttachments
4
+
5
+ # creates a file attachment to the current doc
6
+ def create_attachment(args={})
7
+ raise ArgumentError unless args[:file] && args[:name]
8
+ return if has_attachment?(args[:name])
9
+ self['_attachments'] ||= {}
10
+ set_attachment_attr(args)
11
+ rescue ArgumentError => e
12
+ raise ArgumentError, 'You must specify :file and :name'
13
+ end
14
+
15
+ # reads the data from an attachment
16
+ def read_attachment(attachment_name)
17
+ Base64.decode64(database.fetch_attachment(self, attachment_name))
18
+ end
19
+
20
+ # modifies a file attachment on the current doc
21
+ def update_attachment(args={})
22
+ raise ArgumentError unless args[:file] && args[:name]
23
+ return unless has_attachment?(args[:name])
24
+ delete_attachment(args[:name])
25
+ set_attachment_attr(args)
26
+ rescue ArgumentError => e
27
+ raise ArgumentError, 'You must specify :file and :name'
28
+ end
29
+
30
+ # deletes a file attachment from the current doc
31
+ def delete_attachment(attachment_name)
32
+ return unless self['_attachments']
33
+ self['_attachments'].delete attachment_name
34
+ end
35
+
36
+ # returns true if attachment_name exists
37
+ def has_attachment?(attachment_name)
38
+ !!(self['_attachments'] && self['_attachments'][attachment_name] && !self['_attachments'][attachment_name].empty?)
39
+ end
40
+
41
+ # returns URL to fetch the attachment from
42
+ def attachment_url(attachment_name)
43
+ return unless has_attachment?(attachment_name)
44
+ "#{database.root}/#{self.id}/#{attachment_name}"
45
+ end
46
+
47
+ private
48
+
49
+ def encode_attachment(data)
50
+ ::Base64.encode64(data).gsub(/\r|\n/,'')
51
+ end
52
+
53
+ def get_mime_type(file)
54
+ ::MIME::Types.type_for(file.path).empty? ?
55
+ 'text\/plain' : MIME::Types.type_for(file.path).first.content_type.gsub(/\//,'\/')
56
+ end
57
+
58
+ def set_attachment_attr(args)
59
+ content_type = args[:content_type] ? args[:content_type] : get_mime_type(args[:file])
60
+ self['_attachments'][args[:name]] = {
61
+ 'content-type' => content_type,
62
+ 'data' => encode_attachment(args[:file].read)
63
+ }
64
+ end
65
+
66
+ end # module ExtendedAttachments
67
+ end
68
+ end
@@ -0,0 +1,6 @@
1
+ require File.join(File.dirname(__FILE__), 'properties')
2
+ require File.join(File.dirname(__FILE__), 'document_queries')
3
+ require File.join(File.dirname(__FILE__), 'views')
4
+ require File.join(File.dirname(__FILE__), 'design_doc')
5
+ require File.join(File.dirname(__FILE__), 'validation')
6
+ require File.join(File.dirname(__FILE__), 'extended_attachments')
@@ -0,0 +1,120 @@
1
+ require File.join(File.dirname(__FILE__), '..', 'more', 'property')
2
+
3
+ module CouchRest
4
+ module Mixins
5
+ module Properties
6
+
7
+ class IncludeError < StandardError; end
8
+
9
+ def self.included(base)
10
+ base.cattr_accessor(:properties)
11
+ base.class_eval <<-EOS, __FILE__, __LINE__
12
+ @@properties = []
13
+ EOS
14
+ base.extend(ClassMethods)
15
+ raise CouchRest::Mixins::Properties::IncludeError, "You can only mixin Properties in a class responding to [] and []=, if you tried to mixin CastedModel, make sure your class inherits from Hash or responds to the proper methods" unless (base.new.respond_to?(:[]) && base.new.respond_to?(:[]=))
16
+ end
17
+
18
+ def apply_defaults
19
+ return unless self.respond_to?(:new_document?) && new_document?
20
+ return unless self.class.respond_to?(:properties)
21
+ return if self.class.properties.empty?
22
+ # TODO: cache the default object
23
+ self.class.properties.each do |property|
24
+ key = property.name.to_s
25
+ # let's make sure we have a default and we can assign the value
26
+ if property.default && (self.respond_to?("#{key}=") || self.key?(key))
27
+ if property.default.class == Proc
28
+ self[key] = property.default.call
29
+ else
30
+ self[key] = Marshal.load(Marshal.dump(property.default))
31
+ end
32
+ end
33
+ end
34
+ end
35
+
36
+ def cast_keys
37
+ return unless self.class.properties
38
+ self.class.properties.each do |property|
39
+ next unless property.casted
40
+ key = self.has_key?(property.name) ? property.name : property.name.to_sym
41
+ target = property.type
42
+ if target.is_a?(Array)
43
+ next unless self[key]
44
+ klass = ::CouchRest.constantize(target[0])
45
+ self[property.name] = self[key].collect do |value|
46
+ # Auto parse Time objects
47
+ obj = ( (property.init_method == 'new') && klass == Time) ? Time.parse(value) : klass.send(property.init_method, value)
48
+ obj.casted_by = self if obj.respond_to?(:casted_by)
49
+ obj
50
+ end
51
+ else
52
+ # Auto parse Time objects
53
+ self[property.name] = if ((property.init_method == 'new') && target == 'Time')
54
+ self[key].is_a?(String) ? Time.parse(self[key].dup) : self[key]
55
+ else
56
+ # Let people use :send as a Time parse arg
57
+ klass = ::CouchRest.constantize(target)
58
+ klass.send(property.init_method, self[key])
59
+ end
60
+ self[key].casted_by = self if self[key].respond_to?(:casted_by)
61
+ end
62
+ end
63
+ end
64
+
65
+ module ClassMethods
66
+
67
+ def property(name, options={})
68
+ define_property(name, options) unless self.properties.map{|p| p.name}.include?(name.to_s)
69
+ end
70
+
71
+ protected
72
+
73
+ # This is not a thread safe operation, if you have to set new properties at runtime
74
+ # make sure to use a mutex.
75
+ def define_property(name, options={})
76
+ # check if this property is going to casted
77
+ options[:casted] = options[:cast_as] ? options[:cast_as] : false
78
+ property = CouchRest::Property.new(name, (options.delete(:cast_as) || options.delete(:type)), options)
79
+ create_property_getter(property)
80
+ create_property_setter(property) unless property.read_only == true
81
+ properties << property
82
+ end
83
+
84
+ # defines the getter for the property (and optional aliases)
85
+ def create_property_getter(property)
86
+ # meth = property.name
87
+ class_eval <<-EOS, __FILE__, __LINE__
88
+ def #{property.name}
89
+ self['#{property.name}']
90
+ end
91
+ EOS
92
+
93
+ if property.alias
94
+ class_eval <<-EOS, __FILE__, __LINE__
95
+ alias #{property.alias.to_sym} #{property.name.to_sym}
96
+ EOS
97
+ end
98
+ end
99
+
100
+ # defines the setter for the property (and optional aliases)
101
+ def create_property_setter(property)
102
+ meth = property.name
103
+ class_eval <<-EOS
104
+ def #{meth}=(value)
105
+ self['#{meth}'] = value
106
+ end
107
+ EOS
108
+
109
+ if property.alias
110
+ class_eval <<-EOS
111
+ alias #{property.alias.to_sym}= #{meth.to_sym}=
112
+ EOS
113
+ end
114
+ end
115
+
116
+ end # module ClassMethods
117
+
118
+ end
119
+ end
120
+ end
@@ -0,0 +1,234 @@
1
+ # Extracted from dm-validations 0.9.10
2
+ #
3
+ # Copyright (c) 2007 Guy van den Berg
4
+ #
5
+ # Permission is hereby granted, free of charge, to any person obtaining
6
+ # a copy of this software and associated documentation files (the
7
+ # "Software"), to deal in the Software without restriction, including
8
+ # without limitation the rights to use, copy, modify, merge, publish,
9
+ # distribute, sublicense, and/or sell copies of the Software, and to
10
+ # permit persons to whom the Software is furnished to do so, subject to
11
+ # the following conditions:
12
+ #
13
+ # The above copyright notice and this permission notice shall be
14
+ # included in all copies or substantial portions of the Software.
15
+ #
16
+ # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
17
+ # EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
18
+ # MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
19
+ # NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
20
+ # LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
21
+ # OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
22
+ # WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
23
+
24
+ class Object
25
+ def validatable?
26
+ false
27
+ end
28
+ end
29
+
30
+ require 'pathname'
31
+ require File.join(File.dirname(__FILE__), '..', 'support', 'class')
32
+
33
+ dir = File.join(Pathname(__FILE__).dirname.expand_path, '..', 'validation')
34
+
35
+ require File.join(dir, 'validation_errors')
36
+ require File.join(dir, 'contextual_validators')
37
+ require File.join(dir, 'auto_validate')
38
+
39
+ require File.join(dir, 'validators', 'generic_validator')
40
+ require File.join(dir, 'validators', 'required_field_validator')
41
+ require File.join(dir, 'validators', 'absent_field_validator')
42
+ require File.join(dir, 'validators', 'format_validator')
43
+ require File.join(dir, 'validators', 'length_validator')
44
+ require File.join(dir, 'validators', 'numeric_validator')
45
+ require File.join(dir, 'validators', 'method_validator')
46
+ require File.join(dir, 'validators', 'confirmation_validator')
47
+
48
+ module CouchRest
49
+ module Validation
50
+
51
+ def self.included(base)
52
+ base.cattr_accessor(:auto_validation)
53
+ base.class_eval <<-EOS, __FILE__, __LINE__
54
+ # Turn off auto validation by default
55
+ @@auto_validation = false
56
+
57
+ # Force the auto validation for the class properties
58
+ # This feature is still not fully ported over,
59
+ # test are lacking, so please use with caution
60
+ def self.auto_validate!
61
+ self.auto_validation = true
62
+ end
63
+ EOS
64
+
65
+ base.extend(ClassMethods)
66
+ base.class_eval <<-EOS, __FILE__, __LINE__
67
+ if method_defined?(:_run_save_callbacks)
68
+ save_callback :before, :check_validations
69
+ end
70
+ EOS
71
+ base.class_eval <<-RUBY_EVAL, __FILE__, __LINE__ + 1
72
+ def self.define_property(name, options={})
73
+ super
74
+ auto_generate_validations(properties.last)
75
+ autovalidation_check = true
76
+ end
77
+ RUBY_EVAL
78
+ end
79
+
80
+ # Ensures the object is valid for the context provided, and otherwise
81
+ # throws :halt and returns false.
82
+ #
83
+ def check_validations(context = :default)
84
+ throw(:halt, false) unless context.nil? || valid?(context)
85
+ end
86
+
87
+ # Return the ValidationErrors
88
+ #
89
+ def errors
90
+ @errors ||= ValidationErrors.new
91
+ end
92
+
93
+ # Mark this resource as validatable. When we validate associations of a
94
+ # resource we can check if they respond to validatable? before trying to
95
+ # recursivly validate them
96
+ #
97
+ def validatable?
98
+ true
99
+ end
100
+
101
+ # Alias for valid?(:default)
102
+ #
103
+ def valid_for_default?
104
+ valid?(:default)
105
+ end
106
+
107
+ # Check if a resource is valid in a given context
108
+ #
109
+ def valid?(context = :default)
110
+ self.class.validators.execute(context, self)
111
+ end
112
+
113
+ # Begin a recursive walk of the model checking validity
114
+ #
115
+ def all_valid?(context = :default)
116
+ recursive_valid?(self, context, true)
117
+ end
118
+
119
+ # Do recursive validity checking
120
+ #
121
+ def recursive_valid?(target, context, state)
122
+ valid = state
123
+ target.instance_variables.each do |ivar|
124
+ ivar_value = target.instance_variable_get(ivar)
125
+ if ivar_value.validatable?
126
+ valid = valid && recursive_valid?(ivar_value, context, valid)
127
+ elsif ivar_value.respond_to?(:each)
128
+ ivar_value.each do |item|
129
+ if item.validatable?
130
+ valid = valid && recursive_valid?(item, context, valid)
131
+ end
132
+ end
133
+ end
134
+ end
135
+ return valid && target.valid?
136
+ end
137
+
138
+
139
+ def validation_property_value(name)
140
+ self.respond_to?(name, true) ? self.send(name) : nil
141
+ end
142
+
143
+ # Get the corresponding Object property, if it exists.
144
+ def validation_property(field_name)
145
+ properties.find{|p| p.name == field_name}
146
+ end
147
+
148
+ module ClassMethods
149
+ include CouchRest::Validation::ValidatesPresent
150
+ include CouchRest::Validation::ValidatesAbsent
151
+ include CouchRest::Validation::ValidatesIsConfirmed
152
+ # include CouchRest::Validation::ValidatesIsPrimitive
153
+ # include CouchRest::Validation::ValidatesIsAccepted
154
+ include CouchRest::Validation::ValidatesFormat
155
+ include CouchRest::Validation::ValidatesLength
156
+ # include CouchRest::Validation::ValidatesWithin
157
+ include CouchRest::Validation::ValidatesIsNumber
158
+ include CouchRest::Validation::ValidatesWithMethod
159
+ # include CouchRest::Validation::ValidatesWithBlock
160
+ # include CouchRest::Validation::ValidatesIsUnique
161
+ include CouchRest::Validation::AutoValidate
162
+
163
+ # Return the set of contextual validators or create a new one
164
+ #
165
+ def validators
166
+ @validations ||= ContextualValidators.new
167
+ end
168
+
169
+ # Clean up the argument list and return a opts hash, including the
170
+ # merging of any default opts. Set the context to default if none is
171
+ # provided. Also allow :context to be aliased to :on, :when & group
172
+ #
173
+ def opts_from_validator_args(args, defaults = nil)
174
+ opts = args.last.kind_of?(Hash) ? args.pop : {}
175
+ context = :default
176
+ context = opts[:context] if opts.has_key?(:context)
177
+ context = opts.delete(:on) if opts.has_key?(:on)
178
+ context = opts.delete(:when) if opts.has_key?(:when)
179
+ context = opts.delete(:group) if opts.has_key?(:group)
180
+ opts[:context] = context
181
+ opts.merge!(defaults) unless defaults.nil?
182
+ opts
183
+ end
184
+
185
+ # Given a new context create an instance method of
186
+ # valid_for_<context>? which simply calls valid?(context)
187
+ # if it does not already exist
188
+ #
189
+ def create_context_instance_methods(context)
190
+ name = "valid_for_#{context.to_s}?" # valid_for_signup?
191
+ if !self.instance_methods.include?(name)
192
+ class_eval <<-EOS, __FILE__, __LINE__
193
+ def #{name} # def valid_for_signup?
194
+ valid?('#{context.to_s}'.to_sym) # valid?('signup'.to_sym)
195
+ end # end
196
+ EOS
197
+ end
198
+
199
+ all = "all_valid_for_#{context.to_s}?" # all_valid_for_signup?
200
+ if !self.instance_methods.include?(all)
201
+ class_eval <<-EOS, __FILE__, __LINE__
202
+ def #{all} # def all_valid_for_signup?
203
+ all_valid?('#{context.to_s}'.to_sym) # all_valid?('signup'.to_sym)
204
+ end # end
205
+ EOS
206
+ end
207
+ end
208
+
209
+ # Create a new validator of the given klazz and push it onto the
210
+ # requested context for each of the attributes in the fields list
211
+ #
212
+ def add_validator_to_context(opts, fields, klazz)
213
+ fields.each do |field|
214
+ validator = klazz.new(field.to_sym, opts)
215
+ if opts[:context].is_a?(Symbol)
216
+ unless validators.context(opts[:context]).include?(validator)
217
+ validators.context(opts[:context]) << validator
218
+ create_context_instance_methods(opts[:context])
219
+ end
220
+ elsif opts[:context].is_a?(Array)
221
+ opts[:context].each do |c|
222
+ unless validators.context(c).include?(validator)
223
+ validators.context(c) << validator
224
+ create_context_instance_methods(c)
225
+ end
226
+ end
227
+ end
228
+ end
229
+ end
230
+
231
+ end # module ClassMethods
232
+ end # module Validation
233
+
234
+ end # module CouchRest