Sha256: f3533cdb6a34cf8f8720b2e8360caa5d65c39ef3a1e2a708535104be6fa8d0be

Contents?: true

Size: 1.27 KB

Versions: 5

Compression:

Stored size: 1.27 KB

Contents

# -*- encoding : utf-8 -*-

class AccountRequestsToSignups < Cardio::Migration::Core
  def up
    newname = "Sign up"
    newname = "*signup" if Card.exists? newname

    # get old codename and name out of the way
    old_signup = Card[:signup]
    old_signup.name = "#{newname} - old"
    old_signup.codename = nil
    old_signup.save!

    # rename Account Request to "Sign up"
    new_signup = Card[:account_request]
    new_signup.name = newname
    new_signup.update_referers = true
    new_signup.codename = :signup
    new_signup.save!

    # move old "*signup+*thanks" to "Sign up+*type+*thanks"
    thanks = Card[:thanks]
    if (signup_thanks = Card["#{old_signup.name}+#{thanks.name}"])
      signup_thanks.name = "#{new_signup.name}+#{Card[:type].name}+#{thanks.name}"
      signup_thanks.update_referers = true
      signup_thanks.save!
    end

    # get rid of old signup card unless there is other data there (most likely +*subject and +*message)
    unless Card.search(return: :id, left_id: old_signup.id).first
      old_signup.delete!
    end

    # turn captcha off by default on signup
    rulename = [:signup, :type, :captcha].map { |code| Card[code].name } * "+"
    captcha_rule = Card.fetch rulename, new: {}
    captcha_rule.content = "0"
    captcha_rule.save!
  end
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
card-1.101.4 db/migrate_core_cards/20140317035504_account_requests_to_signups.rb
card-1.101.3 db/migrate_core_cards/20140317035504_account_requests_to_signups.rb
card-1.101.2 db/migrate_core_cards/20140317035504_account_requests_to_signups.rb
card-1.101.1 db/migrate_core_cards/20140317035504_account_requests_to_signups.rb
card-1.101.0 db/migrate_core_cards/20140317035504_account_requests_to_signups.rb