summaryrefslogtreecommitdiff
path: root/app/models/gs_parameter.rb
blob: f301e95629f55869b4cd56de7bab86cadb51911b (plain)
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
class GsParameter < ActiveRecord::Base
  # https://github.com/rails/strong_parameters
  include ActiveModel::ForbiddenAttributesProtection  

  validates :name,
            :presence => true,
            :uniqueness => { :scope => [ :entity, :section ] }

  validates :class_type,
            :presence => true,
            :inclusion => { :in => ['String', 'Integer', 'Boolean', 'YAML', 'Nil'] }

  def self.get(wanted_variable, entity=nil, section=nil)
    if GsParameter.table_exists?
      if entity || section
        item = GsParameter.where(:name => wanted_variable, :entity => entity, :section => section).first
      else
        item = GsParameter.where(:name => wanted_variable).first
      end
      return GsParameter.cast_variable(item)
    else
      nil
    end
  end

  def self.get_list(entity, section)
    items = {}
    if GsParameter.table_exists?
      GsParameter.where(:entity => entity, :section => section).each do |item|
        items[item.name] = GsParameter.cast_variable(item)
      end
    end

    return items
  end

  def self.cast_variable(item)
    if item.nil? || item.class_type == 'Nil'
      return nil
    else
      return item.value.to_i if item.class_type == 'Integer'
      return item.value.to_s if item.class_type == 'String'
      if item.class_type == 'Boolean'
        return true if item.value == 'true'
        return false if item.value == 'false'
      end
      return YAML.load(item.value) if item.class_type == 'YAML'
    end
  end

  def to_s
    name
  end
end