Rails 5生成器db:虽然在删除迁移文件之前调用,但回滚不执行任何操作

时间:2016-10-13 18:46:13

标签: ruby-on-rails ruby rails-generators

我可能误解了rails生成器工作流程,但经过几天搜索代码和文档后,我找不到解决问题的方法。

我创建了一个自定义脚手架生成器,用于添加一些额外的文件,并在创建脚手架文件后立即运行生成的迁移。 使用相同的方法我尝试回滚迁移作为第一件事,当执行 rails destroy my_scaffold 命令时,为了在删除迁移文件之前回滚。

我的自定义生成器代码 scaffold_meta.rb ,在创建迁移文件后运行db:migrate命令。这是工作部分。

require 'generators/resource/resource_generator'
module Rails
  module Generators
    class ScaffoldMetaGenerator < ResourceGenerator # :nodoc:
      remove_hook_for :resource_controller
      remove_class_option :actions

      class_option :stylesheets, type: :boolean, desc: "Generate Stylesheets"
      class_option :stylesheet_engine, desc: "Engine for Stylesheets"
      class_option :assets, type: :boolean
      class_option :resource_route, type: :boolean
      class_option :scaffold_stylesheet, type: :boolean
      class_option :steps, type: :boolean, default: 'step'

      def handle_skip
        @options = @options.merge(stylesheets: false) unless options[:assets]
        @options = @options.merge(stylesheet_engine: false) unless options[:stylesheets] && options[:scaffold_stylesheet]
      end

      hook_for :scaffold_controller, required: true

      hook_for :assets do |assets|
        invoke assets, [controller_name]
      end

      hook_for :stylesheet_engine do |stylesheet_engine|
        if behavior == :invoke
          invoke stylesheet_engine, [controller_name]
        end
      end

      def mirate_if_invoke
        if behavior == :invoke
          say behavior.to_s + ' migrate', :green
          rake("db:migrate --trace")
        end
      end

      invoke 'step'

    end
  end
end

之前的代码最终会调用我的自定义 model_generator.rb ,它会在删除迁移文件之前尝试回滚。

require 'rails/generators/model_helpers'

module Rails
  module Generators
    class ModelGenerator < Rails::Generators::NamedBase # :nodoc:
      include Rails::Generators::ModelHelpers

      def rollback_if_revoke
        if self.behavior == :revoke
          say behavior.to_s + ' rollback', :red
          rake("db:rollback --trace")
        end
      end

      argument :attributes, type: :array, default: [], banner: "field[:type][:index] field[:type][:index]"
      hook_for :orm, required: true, desc: "ORM to be invoked"
    end
  end
end

具有撤销行为的生成器输出显示如何调用 rake db:rollback 但是没有效果。

$rails d  scaffold_meta pez edad:integer nombre

Running via Spring preloader in process 8888

***revoke rollback

    rake  db:rollback --trace***
  invoke  active_record
  remove    db/migrate/20161013145014_create_pezs.rb
  remove    app/models/pez.rb
  invoke    rspec`

任何帮助都会非常苛刻。

1 个答案:

答案 0 :(得分:0)

我在Rails 4.7.0中遇到了同样的挑战。

我注意到rake db:rollbackbehavior == :invoke时有效,但behavior == :revoke时无效。

查看rake方法来源:

  # GEMDIR/railties-4.2.7/lib/rails/generators/actions.rb:

  # Runs the supplied rake task
  #
  #   rake("db:migrate")
  #   rake("db:migrate", env: "production")
  #   rake("gems:install", sudo: true)
  def rake(command, options={})
    log :rake, command
    env  = options[:env] || ENV["RAILS_ENV"] || 'development'
    sudo = options[:sudo] && RbConfig::CONFIG['host_os'] !~ /mswin|mingw/ ? 'sudo ' : ''
    in_root { run("#{sudo}#{extify(:rake)} #{command} RAILS_ENV=#{env}", verbose: false) }
  end

传递给run的块中调用的in_root方法来自Thor::Actions模块:

# GEMDIR/thor-0.19.1/lib/thor/actions.rb:

# Executes a command returning the contents of the command.
#
# ==== Parameters
# command<String>:: the command to be executed.
# config<Hash>:: give :verbose => false to not log the status, :capture => true to hide to output. Specify :with
#                to append an executable to command execution.
#
# ==== Example
#
#   inside('vendor') do
#     run('ln -s ~/edge rails')
#   end
#
def run(command, config = {})
  return unless behavior == :invoke

  destination = relative_to_original_destination_root(destination_root, false)
  desc = "#{command} from #{destination.inspect}"

  if config[:with]
    desc = "#{File.basename(config[:with].to_s)} #{desc}"
    command = "#{config[:with]} #{command}"
  end

  say_status :run, desc, config.fetch(:verbose, true)

  unless options[:pretend]
    config[:capture] ? `#{command}` : system("#{command}")
  end
end

方法的第一行return unless behavior == :invoke将执行原始rake 'db:rollback'命令的调用短路。

Railties也有一个Actions模块(Rails::Generators::Actions),似乎遵循了Thor的invoke \ {{}}逻辑。所以我得出结论,当发生器处于revoke状态时,最好不要尝试回滚。

我最终遵循Rails约定在:revoke上生成迁移文件,并在:invoke上将其销毁,并依赖用户手动执行:revoke或{ {1}}在需要时。

希望有所帮助。