##// END OF EJS Templates
Rails3: replace deprecated 'validate' method at CustomValue model....
Toshi MARUYAMA -
r6794:17312e143c7a
parent child
Show More
@@ -1,71 +1,73
1 1 # Redmine - project management software
2 2 # Copyright (C) 2006-2011 Jean-Philippe Lang
3 3 #
4 4 # This program is free software; you can redistribute it and/or
5 5 # modify it under the terms of the GNU General Public License
6 6 # as published by the Free Software Foundation; either version 2
7 7 # of the License, or (at your option) any later version.
8 8 #
9 9 # This program is distributed in the hope that it will be useful,
10 10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
11 11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 12 # GNU General Public License for more details.
13 13 #
14 14 # You should have received a copy of the GNU General Public License
15 15 # along with this program; if not, write to the Free Software
16 16 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
17 17
18 18 class CustomValue < ActiveRecord::Base
19 19 belongs_to :custom_field
20 20 belongs_to :customized, :polymorphic => true
21 21
22 validate :validate_custom_value
23
22 24 def after_initialize
23 25 if new_record? && custom_field && (customized_type.blank? || (customized && customized.new_record?))
24 26 self.value ||= custom_field.default_value
25 27 end
26 28 end
27 29
28 30 # Returns true if the boolean custom value is true
29 31 def true?
30 32 self.value == '1'
31 33 end
32 34
33 35 def editable?
34 36 custom_field.editable?
35 37 end
36 38
37 39 def visible?
38 40 custom_field.visible?
39 41 end
40 42
41 43 def required?
42 44 custom_field.is_required?
43 45 end
44 46
45 47 def to_s
46 48 value.to_s
47 49 end
48 50
49 51 protected
50 def validate
52 def validate_custom_value
51 53 if value.blank?
52 54 errors.add(:value, :blank) if custom_field.is_required? and value.blank?
53 55 else
54 56 errors.add(:value, :invalid) unless custom_field.regexp.blank? or value =~ Regexp.new(custom_field.regexp)
55 57 errors.add(:value, :too_short, :count => custom_field.min_length) if custom_field.min_length > 0 and value.length < custom_field.min_length
56 58 errors.add(:value, :too_long, :count => custom_field.max_length) if custom_field.max_length > 0 and value.length > custom_field.max_length
57 59
58 60 # Format specific validations
59 61 case custom_field.field_format
60 62 when 'int'
61 63 errors.add(:value, :not_a_number) unless value =~ /^[+-]?\d+$/
62 64 when 'float'
63 65 begin; Kernel.Float(value); rescue; errors.add(:value, :invalid) end
64 66 when 'date'
65 67 errors.add(:value, :not_a_date) unless value =~ /^\d{4}-\d{2}-\d{2}$/
66 68 when 'list'
67 69 errors.add(:value, :inclusion) unless custom_field.possible_values.include?(value)
68 70 end
69 71 end
70 72 end
71 73 end
General Comments 0
You need to be logged in to leave comments. Login now