view plugins/redmine_checkout/db/migrate/20100609153630_apply_setting_changes.rb @ 1628:9c5f8e24dadc live tip

Quieten this cron script
author Chris Cannam
date Tue, 25 Aug 2020 11:38:49 +0100
parents b4b72f1eb644
children
line wrap: on
line source
class ApplySettingChanges < ActiveRecord::Migration
  class Repository < ActiveRecord::Base
    def self.inheritance_column
      # disable single table inheritance
      nil
    end
    
    def scm_name
      self.type || 'Abstract'
    end
    
    serialize :checkout_settings, Hash
  end
  
  def self.up
    default_commands = {
      'Bazaar' => 'bzr checkout',
      'Cvs' => 'cvs checkout',
      'Darcs' => 'darcs get',
      'Git' => 'git clone',
      'Mercurial' => 'hg clone',
      'Subversion' => 'svn checkout'
    }
    
    ## First migrate the individual repositories
    
    Repository.all.each do |r|
      allow_subtree_checkout = ['Cvs', 'Subversion'].include? r.scm_name
      
      protocol = case r.checkout_settings['checkout_url_type']
      when 'none', 'generated'
        nil
      when 'original', 'overwritten'
        HashWithIndifferentAccess.new({ "0" => HashWithIndifferentAccess.new({
          :protocol => r.scm_name,
          :command => Setting.plugin_redmine_checkout["checkout_cmd_#{r.scm_name}"] || default_commands[r.scm_name],
          :regex => "",
          :regex_replacement => "",
          :fixed_url => (r.checkout_settings['checkout_url_type'] == 'original' ? (r.url || "") : r.checkout_settings["checkout_url"]),
          :access => 'permission',
          :append_path => (allow_subtree_checkout ? '1' : '0'),
          :is_default => '1'})
        })
      end
      
      r.checkout_settings = Hash.new({
        'checkout_protocols' => protocol,
        'checkout_description' => "The data contained in this repository can be downloaded to your computer using one of several clients.
Please see the documentation of your version control software client for more information.

Please select the desired protocol below to get the URL.",
        'checkout_display_login' => (r.checkout_settings['display_login'] == 'none' ? '' : r.checkout_settings['display_login']),
        'checkout_overwrite' => (r.checkout_settings['checkout_url_overwrite'] == 'true') ? '1': '0',
        'checkout_display_command' => (r.checkout_settings["render_type"].to_s == 'cmd') ? '1' : '0'
      })
      r.save!
    end
    
    ## Then the global settings
    
    settings = HashWithIndifferentAccess.new({
      'display_login' => Setting.plugin_redmine_checkout['display_login'],
      'use_zero_clipboard' => '1',

      'display_checkout_info' => (Setting.plugin_redmine_checkout['checkout_url_type'] == 'none' ? '0' : '1'),
      'description_Abstract' => <<-EOF
The data contained in this repository can be downloaded to your computer using one of several clients.
Please see the documentation of your version control software client for more information.

Please select the desired protocol below to get the URL.
EOF
    })

    default_commands.keys.each do |scm|
      settings["description_#{scm}"] = ''
      settings["overwrite_description_#{scm}"] = '0'
      
      display_command = (Setting.plugin_redmine_checkout["render_type"].to_s == 'cmd') ? '1' : '0'
      settings["display_command_#{scm}"] = display_command
      
      case Setting.plugin_redmine_checkout['checkout_url_type']
      when 'generated', 'none':
        regex = Setting.plugin_redmine_checkout["checkout_url_regex_#{scm}"]
        replacement = Setting.plugin_redmine_checkout["checkout_url_regex_replacement_#{scm}"]
      when 'original':
        regex = ''
        replacement = ''
      end
      
      settings["protocols_#{scm}"] = HashWithIndifferentAccess.new({
        # access can be one of
        #   read+write => this protocol always allows read/write access
        #   read-only => this protocol always allows read access only
        #   permission => Access depends on redmine permissions
        '0' => HashWithIndifferentAccess.new({
                :protocol => scm,
                :command => Setting.plugin_redmine_checkout["checkout_cmd_#{scm}"] || default_commands[scm],
                :regex => regex,
                :regex_replacement => replacement,
                :fixed_url => '',
                :access => 'permission',
                :append_path => (['Cvs', 'Subversion'].include?(scm) ? '1' : '0'),
                :is_default => '1'
               })
      })
    end
    Setting.plugin_redmine_checkout = settings
  end
  
  def self.down
    raise ActiveRecord::IrreversibleMigration.new "Sorry, there is no down migration yet. If you really need one, please create an issue on http://dev.holgerjust.de/projects/redmine-checkout"
  end
end