Class: EPM::Deploy
- Inherits:
-
Object
- Object
- EPM::Deploy
- Defined in:
- lib/epm/deploy.rb
Instance Method Summary collapse
- #deploy(command) ⇒ Object
- #deploy_package ⇒ Object
- #get_remote_if_remote ⇒ Object
-
#initialize(def_file, settings = {}) ⇒ Deploy
constructor
A new instance of Deploy.
- #is_it_a_remote_file? ⇒ Boolean
- #log(command) ⇒ Object
- #modify_deploy(command) ⇒ Object
- #query(command) ⇒ Object
- #remote_cleanup(tmp) ⇒ Object
- #set_var(command) ⇒ Object
- #setup(settings) ⇒ Object
- #transact(command) ⇒ Object
Constructor Details
#initialize(def_file, settings = {}) ⇒ Deploy
Returns a new instance of Deploy.
5 6 7 8 9 10 11 |
# File 'lib/epm/deploy.rb', line 5 def initialize def_file, settings={} @dirname = File.dirname(File.absolute_path(def_file)) @log_file = File.join(ENV['HOME'], '.epm', 'deployed-log.csv') setup settings @brain = {} @def_file = def_file end |
Instance Method Details
#deploy(command) ⇒ Object
46 47 48 49 50 51 52 53 |
# File 'lib/epm/deploy.rb', line 46 def deploy command deploy_k = command.shift k_name = command.shift p "Deploying #{deploy_k} with name of #{k_name.gsub(/(\{|\})/,'')}." k_address = EPM::Create.new(File.join(@dirname, deploy_k), @settings).deploy @brain[k_name] = k_address p "#{k_name} => #{k_address}" end |
#deploy_package ⇒ Object
13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 |
# File 'lib/epm/deploy.rb', line 13 def deploy_package get_remote_if_remote if @def_file p "Deploying: #{@def_file}." commands = File.readlines @def_file commands = commands.reject{|cmd| cmd[/\A#/] || cmd[/\A$/]}.map{|cmd| cmd.gsub("\n",'')} commands = commands.inject([]) do |arr,ele| ele[/\A\S+/] ? arr << [ele] : arr[-1] << ele.strip.split(' => ') arr end commands.each do |cmd| dowit = cmd.shift case dowit when 'deploy:' deploy cmd.shift sleep 1 when 'modify-deploy:' modify_deploy cmd sleep 1 when 'transact:' transact cmd.shift sleep 1 when 'query:' query cmd.shift when 'log:' log cmd.shift when 'set:' set_var cmd.shift end end end end |
#get_remote_if_remote ⇒ Object
128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 |
# File 'lib/epm/deploy.rb', line 128 def get_remote_if_remote if is_it_a_remote_file? begin p "Cloning into Remote." tmp = Tempfile.new 'epm' Dir.chdir File.dirname tmp.path unless File.directory? 'cloned' Dir.mkdir 'cloned' end Dir.chdir 'cloned' begin `git clone #{@def_file}` end dir = Dir.glob('*')[0] dir = File.dirname(tmp.path) + '/cloned/' + dir Dir.chdir dir def_files = Dir.glob('*').select {|f| File.extname(f) == '.package-definition'} if def_files.empty? dirs = Dir.glob('*').select {|f| File.directory? f} dirs.each do |d| Dir.chdir d def_files << Dir.glob('*').inject([]) do |arr,f| if File.extname(f) == '.package-definition' arr << d + '/' + f end arr end Dir.chdir dir end end def_files.flatten! def_files.each do |df| this_def_dir = File.dirname df this_def_file = File.basename df Dir.chdir this_def_dir EPM::Deploy.new(this_def_file, @settings).deploy_package Dir.chdir dir end rescue Exception => e p "There was an error during that deploy." puts e. ensure remote_cleanup tmp tmp.unlink @def_file = false end end end |
#is_it_a_remote_file? ⇒ Boolean
177 178 179 180 181 182 183 184 |
# File 'lib/epm/deploy.rb', line 177 def is_it_a_remote_file? @remote = false if @def_file[/https*:\/\//] || @def_file[/gits*:\/\//] || @def_file[/.+@.+\..+:/] @remote = true return true end false end |
#log(command) ⇒ Object
107 108 109 110 111 112 113 114 115 116 117 118 119 |
# File 'lib/epm/deploy.rb', line 107 def log command address = command.shift name = command.shift until ! address[/(\{\{.*?\}\})/] address.gsub!($1,@brain[$1]) end until ! name[/(\{\{.*?\}\})/] name.gsub!($1,@brain[$1]) end log_entry = [address, name].join(',') p "Logging [#{address},#{name}]" `echo #{log_entry} >> #{@log_file}` end |
#modify_deploy(command) ⇒ Object
55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 |
# File 'lib/epm/deploy.rb', line 55 def modify_deploy command deploy_k = command[0].shift deploy_k = EPM::FileHelpers.file_guard(File.join(@dirname, deploy_k)) k_name = command[0].shift dump = command.shift until command.empty? cmd = command.shift to_replace = cmd.shift replacer = cmd.shift until ! replacer[/(\{\{.*?\}\})/] replacer.gsub!($1, @brain[$1]) end k_value = File.read deploy_k k_value = k_value.gsub "#{to_replace}", "#{replacer}" File.open(deploy_k, 'w'){|f| f.write k_value} end p "After modifying, am deploying #{deploy_k} with name of #{k_name.gsub(/(\{|\})/,'')}." k_address = EPM::Create.new(deploy_k, @settings).deploy @brain[k_name] = k_address p "#{k_name} => #{k_address}" end |
#query(command) ⇒ Object
91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 |
# File 'lib/epm/deploy.rb', line 91 def query command contract = command.shift address = command.shift name = command.shift until ! contract[/(\{\{.*?\}\})/] contract.gsub!($1,@brain[$1]) end until ! address[/(\{\{.*?\}\})/] address.gsub!($1,@brain[$1]) end p "Querying #{contract} at: #{address}." storage = EPM::Query.new(contract, address, @settings).query p "#{contract}:#{address} => #{storage}" @brain[name] = storage end |
#remote_cleanup(tmp) ⇒ Object
186 187 188 189 190 191 |
# File 'lib/epm/deploy.rb', line 186 def remote_cleanup tmp if @remote Dir.chdir File.dirname tmp.path FileUtils.rm_rf 'cloned' end end |
#set_var(command) ⇒ Object
121 122 123 124 125 126 |
# File 'lib/epm/deploy.rb', line 121 def set_var command key = command.shift value = command.shift p "Setting #{key} to #{value}" @brain[key] = value end |
#setup(settings) ⇒ Object
193 194 195 196 197 198 199 |
# File 'lib/epm/deploy.rb', line 193 def setup settings unless settings.empty? @settings = settings else @settings = EPM::Settings.check end end |
#transact(command) ⇒ Object
77 78 79 80 81 82 83 84 85 86 87 88 89 |
# File 'lib/epm/deploy.rb', line 77 def transact command recipient = command.shift until ! recipient[/(\{\{.*?\}\})/] recipient.gsub!($1, @brain[$1]) end data = command.shift until ! data[/(\{\{.*?\}\})/] data.gsub!($1,@brain[$1]) end data = data.split(' ') p "Sending #{recipient} the data: #{data}." EPM::Transact.new(recipient, data, @settings).transact end |