Module: SerializationHelper::Utils

Defined in:
lib/serialization_helper.rb

Class Method Summary collapse

Class Method Details

.boolean_columns(table) ⇒ Object



139
140
141
142
# File 'lib/serialization_helper.rb', line 139

def self.boolean_columns(table)
  columns = ActiveRecord::Base.connection.columns(table).reject { |c| silence_warnings { c.type != :boolean } }
  columns.map { |c| c.name }
end

.convert_boolean(value) ⇒ Object



135
136
137
# File 'lib/serialization_helper.rb', line 135

def self.convert_boolean(value)
  ['t', '1', true, 1].include?(value)
end

.convert_booleans(records, columns) ⇒ Object



125
126
127
128
129
130
131
132
133
# File 'lib/serialization_helper.rb', line 125

def self.convert_booleans(records, columns)
  records.each do |record|
    columns.each do |column|
      next if is_boolean(record[column])
      record[column] = convert_boolean(record[column])
    end
  end
  records
end

.is_boolean(value) ⇒ Object



144
145
146
# File 'lib/serialization_helper.rb', line 144

def self.is_boolean(value)
  value.kind_of?(TrueClass) or value.kind_of?(FalseClass)
end

.quote_table(table) ⇒ Object



148
149
150
# File 'lib/serialization_helper.rb', line 148

def self.quote_table(table)
  ActiveRecord::Base.connection.quote_table_name(table)
end

.unhash(hash, keys) ⇒ Object



104
105
106
107
108
109
110
111
112
113
114
115
# File 'lib/serialization_helper.rb', line 104

def self.unhash(hash, keys)
  column_hash = keys.dup
  keys = column_hash.keys

  keys.map { |key|
    if hash[key].blank? && !column_hash[key]
      '0'
    else
      hash[key]
    end
  }
end

.unhash_records(records, keys) ⇒ Object



117
118
119
120
121
122
123
# File 'lib/serialization_helper.rb', line 117

def self.unhash_records(records, keys)
  records.each_with_index do |record, index|
    records[index] = unhash(record, keys)
  end

  records
end