-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.go
834 lines (607 loc) · 14.5 KB
/
main.go
1
2
3
4
5
6
7
8
9
10
11
12
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
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
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
//Anchor CM: 1.0.0
//DSL Spec: 1.0.0
//License: MIT
//Author: Gani Mendoza (itjumpstart.wordpress.com)
/*
Anchor Configuration Management Workflow
Note:
Anchor CM is designed for configuring one machine only
Configuring multiple machines is up to you (your workflow) OR
you can delegate it to a separate orchestration tool
Anchor CM is Data Plane
- Anchor CM is data (it is just a sequence of instructions)
- No conditionals
- No loop
Orchestration is Control Plane
- Control plane is sequence
- Control plane has conditional
- Control plane has loop
Assumption:
Your SSH key has been uploaded and configured accordingly at remote machine
Definitions:
control machine - SSH client
remote machine - machine to be configured (must be SSH server)
cmdfile - your virtual script to be executed by Anchor CM
1. Prepare cmdfile and other optional files on your control machine
2. SSH to remote machine (using SSH agent recommended)
3. SCP cmdfile and other optional files to remote machine
4. From your local control machine, execute cmdfile at remote machine via SSH
anchor /path/to/cmdfile
Note:
There is only one cmdfile for execution but you can include multiple cmdfiles
5. Debug error displayed on your control machine (if any)
6. Done!
*/
package main
import (
"bufio"
"bytes"
"encoding/json"
"errors"
"fmt"
"github.com/daviddengcn/go-colortext"
"github.com/hoisie/mustache"
"github.com/ibmendoza/go-ini"
"io/ioutil"
"log"
"os"
"os/exec"
"runtime"
"strings"
)
//global variables
var shell, flag string
func printError(err error) {
if err != nil {
ct.ChangeColor(ct.Red, false, ct.None, false)
os.Stderr.WriteString(fmt.Sprintf("==> ERROR: %s\n", err.Error()))
ct.ResetColor()
}
}
func printOutput(outs []byte) {
if len(outs) > 0 {
ct.ChangeColor(ct.Green, false, ct.None, false)
fmt.Printf("==> OUTPUT: %s\n", string(outs))
ct.ResetColor()
}
}
func getShellAndFlag() (string, string) {
if runtime.GOOS == "windows" {
return "cmd", "/C"
} else {
return "/bin/sh", "-c"
}
}
func runCmd(args string) error {
fmt.Println(args)
splitSpace := strings.Split(args, " ")
var err error
switch splitSpace[0] {
case "mkdir":
dir := splitSpace[1]
//make dir only if not existing
if _, err := os.Stat(dir); os.IsNotExist(err) {
cmd := exec.Command(shell, flag, args)
output, err := cmd.CombinedOutput()
printError(err)
printOutput(output)
}
default:
cmd := exec.Command(shell, flag, args)
output, err := cmd.CombinedOutput()
printError(err)
printOutput(output)
}
return err
}
func runflagCmd(args string, cmdfile ini.File) error {
/*
- Flag sections must only include key/value entries
- To simplify parsing, flag must be either single dash or double dashes
- As a consequence of above, do not mix % and @ in one line
- E.g. docker -d %section1 @section2 (wrong)
https://docs.docker.com/reference/commandline/cli/
Case 1: single dash flags
docker run -d -m 100m -e DEVELOPMENT=1 \
-e BRANCH=example-code \
-v $(pwd):/app/bin:ro \
--name app appserver
can be rewritten as
[docker]
m = 100m
e = DEVELOPMENT=1
e = BRANCH=example-code
v = $(pwd):/app/bin:ro
[code]
RUNFLAG sudo docker run -d --name app appserver %docker
Case 2: double dash flags
VBoxManage modifyvm tklinux --nic1 bridged --nic2 hostonly
can be rewritten as
[network]
nic1 = bridged
nic2 = hostonly
[code]
RUNFLAG VBoxManage modifyvm tklinux @network
*/
var err error
fmt.Println(args)
//for docker cli, it's better to use --flags for readability
if strings.Contains(args, "%") && strings.Contains(args, "@") {
err = errors.New("RUNFLAG cannot contain % and @ in the same line")
printError(err)
return err
}
var strSymbol, strDash string
//address case 1
if strings.Contains(args, "%") {
strSymbol = "%"
strDash = " -"
}
//address case 2
if strings.Contains(args, "@") {
strSymbol = "@"
strDash = " --"
}
if strings.Contains(args, strSymbol) {
slcArgs := strings.Split(args, strSymbol)
//RUNFLAG VBoxManage modifyvm tklinux @network
// RUNFLAG VBoxManage modifyvm tklinux
args1 := slcArgs[0]
// ::network
section := slcArgs[1]
var val, flags string
var e error
for key, value := range cmdfile[section] {
//[network]
//nic1 = bridged
//nic2 = hostonly
val, e = eval(value)
if e != nil {
printError(e)
break
//return err
} else {
flags = flags + strDash + key + " " + val
}
}
if e != nil {
return e
}
fmt.Println(args1 + flags)
args = args1 + flags
}
cmd := exec.Command(shell, flag, args)
output, err := cmd.CombinedOutput()
printError(err)
printOutput(output)
return err
}
//returns itself if plain string otherwise executes the command
func eval(v string) (string, error) {
/*
[network]
nic1 = bridged
nic2 = hostonly
[consul]
keygen = RUN consul keygen
[security]
# no need to enclose in single or double quote
pem = READFILE /etc/ssl/certs/cert.pem
*/
var err error
//READFILE and RUN are reserved words in cmdfile
isAt := strings.Contains(v, "READFILE") || strings.Contains(v, "RUN")
//nic1 = bridged
if !isAt {
return v, nil
}
if strings.Contains(v, "READFILE") {
slcStr := strings.Split(v, "READFILE")
v = strings.TrimSpace(slcStr[1])
_, err = os.Stat(v)
if err == nil {
//return content of file
var fileContent []byte
fileContent, err = ioutil.ReadFile(v)
if err != nil {
return "", err
} else {
return string(fileContent), nil
}
}
}
if strings.Contains(v, "RUN") {
v := strings.Replace(v, "RUN", "", -1)
v = strings.TrimSpace(v)
cmd := exec.Command(shell, flag, v)
var output []byte
output, err = cmd.CombinedOutput()
if err != nil {
return "", err
} else {
return string(output), nil
}
}
//compiler insists a return
return "", err
}
func chdirCmd(dir string) error {
fmt.Println("chdir " + dir)
err := os.Chdir(dir)
if err != nil {
printError(err)
} else {
printOutput([]byte("chdir to " + dir))
}
return err
}
func getenvCmd(key string) error {
fmt.Println("getenv " + key)
result := os.Getenv(key)
if len(result) == 0 {
err := errors.New("No environment variable named " + key)
printError(err)
return err
} else {
printOutput([]byte("getenv " + key + "=" + result))
return nil
}
}
func setenvCmd(key, value string) error {
if key == "" || value == "" {
return errors.New("Error in ENV. Key or value is blank")
}
fmt.Println("ENV " + key + " " + value)
err := os.Setenv(key, value)
if err != nil {
printError(err)
return err
} else {
printOutput([]byte("ENV " + key + "=" + value))
return nil
}
}
func hostenvCmd(key string) error {
fmt.Println("hostenv " + key)
slc := os.Environ()
found := false
for _, v := range slc {
//fmt.Println(slc[k])
pair := strings.Split(v, "=")
if pair[0] == key {
printOutput([]byte("hostenv: " + key + "=" + v))
found = true
break
}
}
if !found {
err := errors.New("No host environment variable named " + key)
printError(err)
return err
} else {
return nil
}
}
func goCmd(argCommand string, args []string) error {
var err error
switch argCommand {
case "chdir":
if len(args) != 1 {
err = errors.New("GO chdir. Directory not specified")
printError(err)
return err
} else {
err = chdirCmd(args[0])
}
case "getenv":
if len(args) != 1 {
err = errors.New("GO getenv. Key is blank")
printError(err)
return err
} else {
err = getenvCmd(args[0])
}
case "hostenv":
if len(args) != 1 {
err = errors.New("GO setenv. Key is blank")
printError(err)
return err
} else {
err = hostenvCmd(args[0])
}
case "hostname":
var str string
str, err = os.Hostname()
if err != nil {
printError(err)
return err
} else {
printOutput([]byte("hostname: " + str))
}
}
return err
}
/*
func ankoCmd(filename string) error {
fmt.Println("ANKO " + filename)
if len(filename) == 0 {
err := errors.New("Please specify an Anko script file")
printError(err)
return err
}
file, err := os.Open(filename)
defer file.Close()
if err != nil {
printError(err)
return err
}
env := vm.NewEnv()
anko_core.Import(env)
anko_flag.Import(env)
anko_net.Import(env)
anko_encoding.Import(env)
anko_os.Import(env)
anko_io.Import(env)
anko_math.Import(env)
anko_path.Import(env)
anko_regexp.Import(env)
anko_sort.Import(env)
anko_strings.Import(env)
anko_term.Import(env)
var ln, code string
lnScanner := bufio.NewScanner(file)
for lnScanner.Scan() {
ln = lnScanner.Text()
code = code + ln + "\n"
if err != nil {
break
printError(err)
return err
}
}
scanner := new(parser.Scanner)
scanner.Init(code)
stmts, err := parser.Parse(scanner)
if err != nil {
printError(err)
return err
}
_, err = vm.Run(stmts, env)
if err != nil {
printError(err)
return err
}
return err
}
*/
func includeCmd(filename string) error {
//can include nested cmdfile
fmt.Println("INCLUDE " + filename)
err := parseCmdfile(filename)
if err != nil {
printError(err)
return err
}
return err
}
//USAGE: TEMPLATE template file, json file, destination file, shell script file
//Uses Mustache to render template + json into destination file
//Optional shell script file to run after completion
//WARNING: Destination file will be overwritten
//TEST: TEMPLATE test.tmpl test.json testconfig.txt testecho.bat
func templateCmd(args string) (err error) {
slcStr := strings.Split(args, " ")
if len(slcStr) < 3 || len(slcStr) > 4 {
err = errors.New("TEMPLATE expects in order: template, json, " +
"destination file and optional shell script")
printError(err)
return err
}
strTemplate := slcStr[0]
strJson := slcStr[1]
strDestination := slcStr[2]
var strShell string
if len(slcStr) == 4 {
strShell = slcStr[3]
}
var fileContent []byte
var jsonData map[string]interface{}
var template string
//read template file
fileContent, err = ioutil.ReadFile(strTemplate)
if err != nil {
err = errors.New("Error reading template file named " + strTemplate)
printError(err)
return err
} else {
template = string(fileContent)
}
//read json file
fileContent, err = ioutil.ReadFile(strJson)
if err != nil {
err = errors.New("Error reading json file named " + strJson)
printError(err)
return err
} else {
err := json.Unmarshal(fileContent, &jsonData)
if err != nil {
err = errors.New("Error parsing JSON data file named " + strJson)
printError(err)
return err
}
}
//render mustache template + JSON data
rendered := mustache.Render(template, jsonData)
//write rendered template to file
var file *os.File
file, err = os.Create(strDestination)
defer file.Close()
if err != nil {
err = errors.New("Error writing to destination file named " + strDestination)
printError(err)
return err
} else {
w := bufio.NewWriter(file)
_, err := w.WriteString(rendered)
if err != nil {
err = errors.New("Error writing rendered template to destination file named " + strDestination)
printError(err)
return err
} else {
w.Flush()
}
}
//execute shell file if any
if strShell > "" {
_, err = os.Stat(strShell)
if err != nil {
err = errors.New("Shell script file named " + strShell + " does not exist")
return err
} else {
cmd := exec.Command(shell, flag, strShell)
output, err := cmd.CombinedOutput()
printError(err)
printOutput(output)
}
}
return err
}
func processCmd(command string, cmdfile ini.File) error {
var err error
s := strings.TrimSpace(command)
slcStr := strings.Split(s, " ")
args := []string{}
var argCommand string
cmd := strings.ToUpper(slcStr[0])
if !strings.Contains(cmd, "FROM") || !strings.Contains(cmd, "MAINTAINER") ||
!strings.Contains(cmd, "LICENSE") {
fmt.Println(cmd)
}
for i, _ := range slcStr {
if i == 1 {
argCommand = slcStr[i]
} else if i > 1 {
args = append(args, slcStr[i])
}
}
switch cmd {
case "RUN":
err = runCmd(strings.Join(slcStr[1:], " "))
case "GO":
err = goCmd(argCommand, args)
case "ENV":
err = setenvCmd(argCommand, args[0])
/* case "ANKO":
ankoFilename := argCommand
err = ankoCmd(ankoFilename)
*/
case "RUNFLAG":
err = runflagCmd(strings.Join(slcStr[1:], " "), cmdfile)
case "INCLUDE":
filename := argCommand
err = includeCmd(filename)
case "TEMPLATE":
err = templateCmd(strings.Join(slcStr[1:], " "))
}
return err
}
func parseIniSections(filename string) string {
file, err := os.Open(filename)
if err != nil {
printError(err)
log.Fatal(err)
}
var line string
scanner := bufio.NewScanner(file)
hasReachedCodeSection := false
strForIniParsing := ""
for scanner.Scan() {
line = scanner.Text()
line = strings.TrimSpace(line)
//skip blank line
if len(line) != 0 {
if strings.Contains(line, "[code]") {
hasReachedCodeSection = true
continue
}
if !hasReachedCodeSection {
//build string for ini parsing
if strings.Contains(line, "[") ||
strings.Contains(line, "]") ||
strings.Contains(line, "=") {
strForIniParsing = strForIniParsing + line + "\n"
}
}
}
if err != nil {
break
log.Fatal(err)
}
}
file.Close()
return strForIniParsing
}
func parseCode(filename string, cmdfile ini.File) error {
file, err := os.Open(filename)
defer file.Close()
if err != nil {
printError(err)
log.Fatal(err)
}
var line string
scanner := bufio.NewScanner(file)
hasReachedCodeSection := false
for scanner.Scan() {
line = scanner.Text()
line = strings.TrimSpace(line)
//skip blank line
if len(line) != 0 {
if strings.Contains(line, "[code]") {
hasReachedCodeSection = true
continue
}
if hasReachedCodeSection {
if !strings.Contains(line, "#") &&
!strings.Contains(line, "[") &&
!strings.Contains(line, "]") &&
!strings.Contains(line, "=") &&
!strings.Contains(line, ";") {
err = processCmd(line, cmdfile)
}
}
}
if err != nil {
break
return err
}
}
return err
}
func parseCmdfile(filename string) error {
str := parseIniSections(filename)
//convert string to io.Reader
input := bytes.NewBufferString(str)
cmdfile, err := ini.Load(input)
if err != nil {
return errors.New("Stop parsing ini section(s) of " + filename)
}
err = parseCode(filename, cmdfile)
if err != nil {
return errors.New("Stop parsing code section of " + filename)
}
return err
}
func main() {
filename := os.Args[1]
if len(os.Args) != 2 {
printError(errors.New("Please specify a cmdfile"))
os.Exit(1)
}
shell, flag = getShellAndFlag()
err := parseCmdfile(filename)
if err != nil {
printError(err)
}
fmt.Println("")
fmt.Println("If any error appears, cmdfile run is not completed")
}