1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00
rails--rails/railties/lib/rails/command.rb

112 lines
3.4 KiB
Ruby
Raw Normal View History

2016-05-28 16:04:13 -04:00
require "active_support"
require "active_support/dependencies/autoload"
2016-05-28 16:04:13 -04:00
require "active_support/core_ext/enumerable"
require "active_support/core_ext/object/blank"
require "active_support/core_ext/hash/transform_values"
require "thor"
module Rails
module Command
extend ActiveSupport::Autoload
autoload :Behavior
autoload :Base
2016-05-28 16:04:13 -04:00
include Behavior
HELP_MAPPINGS = %w(-h -? --help)
2016-05-28 16:04:13 -04:00
class << self
def hidden_commands # :nodoc:
@hidden_commands ||= []
end
def environment # :nodoc:
ENV["RAILS_ENV"].presence || ENV["RACK_ENV"].presence || "development"
2016-05-28 16:04:13 -04:00
end
# Receives a namespace, arguments and the behavior to invoke the command.
def invoke(full_namespace, args = [], **config)
namespace = full_namespace = full_namespace.to_s
2016-05-28 16:04:13 -04:00
if char = namespace =~ /:(\w+)$/
command_name, namespace = $1, namespace.slice(0, char)
2016-05-28 16:04:13 -04:00
else
command_name = namespace
end
2017-02-23 19:17:13 -05:00
command_name, namespace = "help", "help" if command_name.blank? || HELP_MAPPINGS.include?(command_name)
2017-02-23 19:13:44 -05:00
command_name, namespace = "version", "version" if %w( -v --version ).include?(command_name)
command = find_by_namespace(namespace, command_name)
if command && command.all_commands[command_name]
command.perform(command_name, args, config)
else
find_by_namespace("rake").perform(full_namespace, args, config)
2016-05-28 16:04:13 -04:00
end
end
2016-12-19 20:20:10 -05:00
# Rails finds namespaces similar to Thor, it only adds one rule:
2016-05-28 16:04:13 -04:00
#
# Command names must end with "_command.rb". This is required because Rails
# looks in load paths and loads the command just before it's going to be used.
#
# find_by_namespace :webrat, :rails, :integration
#
# Will search for the following commands:
#
# "rails:webrat", "webrat:integration", "webrat"
#
# Notice that "rails:commands:webrat" could be loaded as well, what
# Rails looks for is the first and last parts of the namespace.
def find_by_namespace(namespace, command_name = nil) # :nodoc:
lookups = [ namespace ]
lookups << "#{namespace}:#{command_name}" if command_name
lookups.concat lookups.map { |lookup| "rails:#{lookup}" }
2016-05-28 16:04:13 -04:00
lookup(lookups)
namespaces = subclasses.index_by(&:namespace)
namespaces[(lookups & namespaces.keys).first]
end
# Returns the root of the Rails engine or app running the command.
def root
if defined?(ENGINE_ROOT)
Pathname.new(ENGINE_ROOT)
elsif defined?(APP_PATH)
Pathname.new(File.expand_path("../..", APP_PATH))
end
end
def print_commands # :nodoc:
sorted_groups.each { |b, n| print_list(b, n) }
end
def sorted_groups # :nodoc:
lookup!
groups = (subclasses - hidden_commands).group_by { |c| c.namespace.split(":").first }
groups.transform_values! { |commands| commands.flat_map(&:printing_commands).sort }
rails = groups.delete("rails")
[[ "rails", rails ]] + groups.sort.to_a
end
private
def command_type # :doc:
2016-05-28 16:04:13 -04:00
@command_type ||= "command"
end
def lookup_paths # :doc:
2016-05-28 16:04:13 -04:00
@lookup_paths ||= %w( rails/commands commands )
end
def file_lookup_paths # :doc:
2016-05-28 16:04:13 -04:00
@file_lookup_paths ||= [ "{#{lookup_paths.join(',')}}", "**", "*_command.rb" ]
end
end
end
end