1
+ #!/usr/bin/env ruby
2
+
3
+ class EnvMissing < Exception
4
+ end
5
+
6
+ begin
7
+ require 'colorize'
8
+ require 'optparse'
9
+ require 'aws-sdk'
10
+ require 'fileutils'
11
+ raise EnvMissing unless ENV [ 'YOUTOO_AWS_ACCESS_KEY' ]
12
+ raise EnvMissing unless ENV [ 'YOUTOO_AWS_SECRET_KEY' ]
13
+ rescue LoadError
14
+ puts "Running this program requires the following gems to be installed:
15
+ - colorize
16
+ - aws-sdk
17
+ Fix this problem by installing the gems with this command:
18
+ gem install colorize aws-sdk
19
+ "
20
+ exit 1
21
+ rescue EnvMissing
22
+ puts "This program requires two environment variables be set and valid:
23
+ YOUTOO_AWS_ACCESS_KEY
24
+ YOUTOO_AWS_SECRET_KEY
25
+ Add these keys with their proper values to your .zshrc/.bashrc, open a new tab, and try again."
26
+ exit 1
27
+ end
28
+
29
+ $ec2 = AWS ::EC2 . new (
30
+ :access_key_id => ENV [ 'YOUTOO_AWS_ACCESS_KEY' ] ,
31
+ :secret_access_key => ENV [ 'YOUTOO_AWS_SECRET_KEY' ]
32
+ )
33
+
34
+ class SSHBuilder
35
+ def initialize ( opts )
36
+ @backup_enabled = opts [ :backup ]
37
+ @detailed = opts [ :detailed ]
38
+ end
39
+
40
+ def log ( msg )
41
+ puts " #{ '>' . green } #{ msg . blue } "
42
+ end
43
+
44
+ def pounds ( n )
45
+ output = ""
46
+ n . times do
47
+ output += "#"
48
+ end
49
+
50
+ output
51
+ end
52
+
53
+ def date
54
+ Time . now . strftime ( "%F_%T" )
55
+ end
56
+
57
+ def config_path
58
+ File . expand_path ( "~/.ssh/config" )
59
+ end
60
+
61
+ def personal_config_path
62
+ "#{ config_path } _personal"
63
+ end
64
+
65
+ def backup_config_path
66
+ "#{ config_path } .sshbuilder_#{ date } .backup"
67
+ end
68
+
69
+ def get_name ( instance )
70
+ instance . tags . to_h . fetch ( 'Name' , '' ) . to_s
71
+ end
72
+
73
+ def tag_html ( instance )
74
+ tag_template = "
75
+ # %{key}: %{val}"
76
+ output = ""
77
+ instance . tags . each do |key , val |
78
+ output += tag_template % { key : key , val : val }
79
+ end
80
+
81
+ output
82
+ end
83
+
84
+ def header
85
+ "#{ pounds 40 }
86
+ # SSH Config
87
+ #
88
+ # Built on: %{date}
89
+ #{ pounds 40 }
90
+
91
+ "
92
+ end
93
+
94
+ def personal_config
95
+ output = ""
96
+ File . open ( personal_config_path , "r" ) do |f |
97
+ f . each_line do |line |
98
+ output += "#{ line } "
99
+ end
100
+ end
101
+
102
+ output
103
+ end
104
+
105
+ def youtoo_config
106
+ output = ""
107
+ instance_template = "
108
+ Host youtoo-%{host}
109
+ HostName %{hostname}
110
+ User ec2-user
111
+ Port %{port}
112
+ PasswordAuthentication no
113
+ IdentityFile ~/.ssh/[email protected]
114
+ "
115
+ detailed_instance_template = "
116
+ # Instance Name: %{host}
117
+ # Instance ID: %{id}
118
+ # Instance Type: %{type}
119
+ # Launched: %{launch_time}
120
+ # Availability Zone: %{availability_zone}
121
+ # Tags: %{tags}
122
+ Host youtoo-%{host}
123
+ HostName %{hostname}
124
+ User ec2-user
125
+ Port %{port}
126
+ PasswordAuthentication no
127
+ IdentityFile ~/.ssh/[email protected]
128
+ "
129
+ region_template = "
130
+ #{ pounds 40 }
131
+ # Youtoo AWS Region: %{region} (%{count} instances)
132
+ #{ pounds 40 }
133
+ "
134
+
135
+ AWS . memoize do
136
+ $ec2. regions . each do |region |
137
+ log "Parsing region: #{ region . name } "
138
+ instance_count = region . instances . map ( &:id ) . length
139
+
140
+ unless instance_count == 0
141
+ log " - Found #{ instance_count } instances"
142
+ output += region_template % { region : region . name , count : instance_count }
143
+
144
+ region . instances . each do |instance |
145
+ if instance . status == :running
146
+ name = get_name ( instance )
147
+
148
+ case name
149
+ when "aspera-01"
150
+ port = 33001
151
+ when "storage-02"
152
+ port = 46732
153
+ else
154
+ port = 22
155
+ end
156
+
157
+ template = @detailed ? detailed_instance_template : instance_template
158
+ output += template % {
159
+ region : region . name ,
160
+ host : name ,
161
+ hostname : instance . ip_address ,
162
+ port : port ,
163
+ tags : tag_html ( instance ) ,
164
+ id : instance . id ,
165
+ type : instance . instance_type ,
166
+ launch_time : instance . launch_time ,
167
+ availability_zone : instance . availability_zone
168
+ }
169
+ end
170
+ end
171
+ end
172
+ end
173
+ end
174
+
175
+ output
176
+ end
177
+
178
+ def build_config
179
+ log "Building SSH config file"
180
+ @compiled_config = "#{ header % { date : date } }
181
+ #{ pounds 60 }
182
+ # Personal SSH Config
183
+ #{ pounds 60 }
184
+ #{ personal_config }
185
+
186
+ #{ pounds 60 }
187
+ # Youtoo AWS Config
188
+ #{ pounds 60 }
189
+ #{ youtoo_config } "
190
+ log "SSH config file built"
191
+ end
192
+
193
+ def do_config_backup
194
+ log "Backing up existing config: #{ config_path } > #{ backup_config_path } "
195
+ FileUtils . move config_path , backup_config_path
196
+ log "Config backed up to #{ backup_config_path } "
197
+ end
198
+
199
+ def write_config
200
+ log "Writing config to #{ config_path } "
201
+ File . open ( config_path , "w" ) do |file |
202
+ file . write ( @compiled_config )
203
+ end
204
+ log "Config written to #{ config_path } "
205
+ end
206
+
207
+ def generate
208
+ log "Generating SSH config (detailed: #{ @detailed } , backup_enabled: #{ @backup_enabled } )"
209
+ build_config
210
+ do_config_backup if @backup_enabled
211
+ write_config
212
+ log "SSH config generated successfully!"
213
+ end
214
+ end
215
+
216
+ options = {
217
+ detailed : false ,
218
+ backup : false
219
+ }
220
+
221
+ opt_parser = OptionParser . new do |opts |
222
+ opts . banner = "Usage: ruby build-ssh-config.rb [options]"
223
+
224
+ opts . on ( "-d" , "--detailed" , "Include detailed instance info" ) do |d |
225
+ options [ :detailed ] = d
226
+ end
227
+
228
+ opts . on ( "-b" , "--backup" , "Backup existing ~/.ssh/config" ) do |b |
229
+ options [ :backup ] = b
230
+ end
231
+
232
+ opts . on ( "-h" , "--help" , "Show this help message" ) do |h |
233
+ puts opts
234
+ exit 0
235
+ end
236
+ end
237
+
238
+ begin
239
+ opt_parser . parse!
240
+ rescue OptionParser ::InvalidOption => e
241
+ puts e
242
+ puts opt_parser
243
+ exit 1
244
+ end
245
+
246
+ builder = SSHBuilder . new ( options )
247
+ builder . generate
0 commit comments