aboutsummaryrefslogtreecommitdiffstats
path: root/railties/lib/rails/generators/generated_attribute.rb
blob: 5ba37737a206c25dd6d4d1505f25abc81cf72455 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
require 'active_support/time'
require 'active_support/core_ext/object/inclusion'

module Rails
  module Generators
    class GeneratedAttribute
      attr_accessor :name, :type, :has_index, :attr_options

      def initialize(column_definition)
        parse column_definition
      end

      def field_type
        @field_type ||= case type
          when :integer              then :number_field
          when :float, :decimal      then :text_field
          when :time                 then :time_select
          when :datetime, :timestamp then :datetime_select
          when :date                 then :date_select
          when :text                 then :text_area
          when :boolean              then :check_box
          else
            :text_field
        end
      end

      def default
        @default ||= case type
          when :integer                     then 1
          when :float                       then 1.5
          when :decimal                     then "9.99"
          when :datetime, :timestamp, :time then Time.now.to_s(:db)
          when :date                        then Date.today.to_s(:db)
          when :string                      then name == "type" ? "" : "MyString"
          when :text                        then "MyText"
          when :boolean                     then false
          when :references, :belongs_to     then nil
          else
            ""
        end
      end

      def human_name
        name.to_s.humanize
      end

      def reference?
        self.type.in?([:references, :belongs_to])
      end
      
      def has_index?
        @has_index
      end

      def has_uniq_index?
        @has_uniq_index
      end

      def parse(column_definition)
        name, type, has_index = column_definition.split(':')
        # if user provided "name:index" instead of "name:string:index" type should be set blank
        # so GeneratedAttribute's constructor could set it to :string
        if type =~ /index|uniq|unique/i
          has_index = type
          type = nil
        end
        type = :string if type.blank?

        @name = name
        @type, @attr_options = *parse_type_and_options(type)
        @has_index = ['index','uniq','unique'].include?(has_index)
        @has_uniq_index = ['uniq','unique'].include?(has_index)
      end

      # parse possible attribute options like :limit for string/text/binary/integer or :precision/:scale for decimals
      # when declaring options curly brackets should be used
      def parse_type_and_options(type)
        attribute_options = case type 
          when /(string|text|binary|integer){(\d+)}/
            {:limit => $2.to_i}
          when /decimal{(\d+),(\d+)}/
            {:precision => $1.to_i, :scale => $2.to_i}
          else; {}
        end
        [type.to_s.gsub(/{.*}/,'').to_sym, attribute_options]
      end

      def inject_options
        @attr_options.blank? ? '' : ", #{@attr_options.to_s.gsub(/[{}]/, '')}"
      end

      def inject_index_options
        has_uniq_index? ? ", :unique => true" : ''
      end
    end
  end
end