2009-01-30 03:45:01 +01:00
|
|
|
module CouchRest
|
2009-07-20 23:17:27 +02:00
|
|
|
|
2009-02-06 02:06:12 +01:00
|
|
|
# Basic attribute support for adding getter/setter + validation
|
2009-01-30 03:45:01 +01:00
|
|
|
class Property
|
2009-02-09 20:20:23 +01:00
|
|
|
attr_reader :name, :type, :read_only, :alias, :default, :casted, :init_method, :options
|
2009-07-20 23:17:27 +02:00
|
|
|
|
2009-01-30 03:45:01 +01:00
|
|
|
# attribute to define
|
2009-02-06 02:06:12 +01:00
|
|
|
def initialize(name, type = nil, options = {})
|
2009-02-09 20:20:23 +01:00
|
|
|
@name = name.to_s
|
2009-02-13 05:28:07 +01:00
|
|
|
parse_type(type)
|
2009-01-30 03:45:01 +01:00
|
|
|
parse_options(options)
|
|
|
|
self
|
|
|
|
end
|
2009-07-20 23:17:27 +02:00
|
|
|
|
2009-01-30 03:45:01 +01:00
|
|
|
private
|
2009-07-20 23:17:27 +02:00
|
|
|
|
2009-02-13 05:28:07 +01:00
|
|
|
def parse_type(type)
|
|
|
|
if type.nil?
|
2010-03-30 22:50:47 +02:00
|
|
|
@type = String
|
2009-02-25 07:51:13 +01:00
|
|
|
elsif type.is_a?(Array) && type.empty?
|
2010-03-30 22:50:47 +02:00
|
|
|
@type = [Object]
|
2009-02-13 05:28:07 +01:00
|
|
|
else
|
2010-03-30 22:50:47 +02:00
|
|
|
base_type = type.is_a?(Array) ? type.first : type
|
|
|
|
if base_type.is_a?(String)
|
2010-03-31 10:25:33 +02:00
|
|
|
if base_type.downcase == 'boolean'
|
|
|
|
base_type = TrueClass
|
|
|
|
else
|
|
|
|
begin
|
2010-05-12 23:43:17 +02:00
|
|
|
base_type = base_type.constantize
|
2010-03-31 10:25:33 +02:00
|
|
|
rescue # leave base type as a string and convert in more/typecast
|
|
|
|
end
|
2010-03-30 22:50:47 +02:00
|
|
|
end
|
|
|
|
end
|
|
|
|
@type = type.is_a?(Array) ? [base_type] : base_type
|
2009-02-13 05:28:07 +01:00
|
|
|
end
|
|
|
|
end
|
2009-07-20 23:17:27 +02:00
|
|
|
|
2009-01-30 03:45:01 +01:00
|
|
|
def parse_options(options)
|
|
|
|
return if options.empty?
|
2009-02-06 03:57:11 +01:00
|
|
|
@validation_format = options.delete(:format) if options[:format]
|
|
|
|
@read_only = options.delete(:read_only) if options[:read_only]
|
|
|
|
@alias = options.delete(:alias) if options[:alias]
|
2009-04-26 04:31:19 +02:00
|
|
|
@default = options.delete(:default) unless options[:default].nil?
|
2009-02-09 20:20:23 +01:00
|
|
|
@casted = options[:casted] ? true : false
|
2009-10-24 03:42:48 +02:00
|
|
|
@init_method = options[:init_method] ? options.delete(:init_method) : 'new'
|
2009-02-06 02:06:12 +01:00
|
|
|
@options = options
|
2009-01-30 03:45:01 +01:00
|
|
|
end
|
2009-07-20 23:17:27 +02:00
|
|
|
|
2009-01-30 03:45:01 +01:00
|
|
|
end
|
2009-04-26 04:31:19 +02:00
|
|
|
end
|