cloudfoundry/cloud_controller_ng

View on GitHub
db/migrations/20130911111938_encrypt_app_env_json.rb

Summary

Maintainability
A
40 mins
Test Coverage
require File.expand_path('../../../lib/cloud_controller/encryptor', __FILE__)

Sequel.migration do
  up do
    self[:apps].each do |row|
      salt = VCAP::CloudController::Encryptor.generate_salt
      encrypted = VCAP::CloudController::Encryptor.encrypt(row[:environment_json], salt)
      self['UPDATE apps SET encrypted_environment_json = ?, salt = ? WHERE id = ?', encrypted, salt, row[:id]].update
    end

    alter_table :apps do
      drop_column :environment_json
    end
  end

  down do
    alter_table :apps do
      add_column :environment_json, :text
    end

    self[:apps].each do |row|
      decrypted = VCAP::CloudController::Encryptor.decrypt(row[:encrypted_environment_json], row[:salt])
      self['UPDATE apps SET environment_json = ? WHERE id = ?', decrypted, row[:id]].update
    end
  end
end