require 'fileutils' require 'colorize' require 'thor' module Ufo class Sequence < Thor::Group include Thor::Actions add_runtime_options! # force, pretend, quiet, skip options # https://github.com/erikhuda/thor/blob/master/lib/thor/actions.rb#L49 def self.source_paths [File.expand_path("../../template", __FILE__)] end private def inferred_app File.basename(Dir.pwd) end def get_execution_role_arn_input return @execution_role_arn if @execution_role_arn if @options[:execution_role_arn] @execution_role_arn = @options[:execution_role_arn] return @execution_role_arn end return unless @options[:launch_type] == "fargate" # execution role arn required for fargate puts "For fargate ECS tasks an ECS Task Execution IAM Role is required. " puts "More details here: https://docs.aws.amazon.com/AmazonECS/latest/developerguide/task_execution_IAM_role.html" print "Please provide a execution role arn role for the ecs task: " @execution_role_arn = $stdin.gets.strip end def override_source_paths(*paths) # Using string with instance_eval because block doesnt have access to # path at runtime. self.class.instance_eval %{ def self.source_paths #{paths.flatten.inspect} end } end def sync_template_repo unless git_installed? abort "Unable to detect git installation on your system. Git needs to be installed in order to use the --template option." end template_path = "#{ENV['HOME']}/.ufo/templates/#{options[:template]}" if File.exist?(template_path) sh("cd #{template_path} && git pull") else FileUtils.mkdir_p(File.dirname(template_path)) sh("git clone #{repo_url} #{template_path}") end end # normalize repo_url def repo_url template = options[:template] if template.include?('github.com') template # leave as is, user has provided full github url else "https://github.com/#{template}" end end def git_installed? system("type git > /dev/null") end def sh(command) puts "=> #{command}" system(command) end def copy_project puts "Creating new project called #{project_name}." directory ".", project_name end end end