Created
August 29, 2014 00:26
-
-
Save griggheo/d28b13daab12dacb87f6 to your computer and use it in GitHub Desktop.
Version 2 of compare_env.go
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package main | |
import ( | |
"fmt" | |
"log" | |
"bytes" | |
"strings" | |
"flag" | |
"sort" | |
"os/exec" | |
"io/ioutil" | |
) | |
func getChefEnvironment(environment *string, verbose bool) map[string]string { | |
fmt.Println("Getting Chef cookbook versions for environment:", *environment) | |
cmd := exec.Command("knife", "environment", "show", *environment) | |
var out bytes.Buffer | |
cmd.Stdout = &out | |
err := cmd.Run() | |
if err != nil { | |
log.Fatal(err) | |
} | |
//fmt.Printf("%s\n", out.String()) | |
lines := strings.Split(out.String(), "\n") | |
m := make(map[string]string) | |
keys := make([]string, 0, len(lines)) | |
var cookbook, version string; | |
for _, line := range lines { | |
if ! strings.Contains(line, "=") { | |
continue | |
} | |
//fmt.Println(line) | |
values := strings.Split(line, "=") | |
/* | |
for _, value := range values { | |
fmt.Printf("value: %s\n", value) | |
} | |
*/ | |
cookbook = strings.Trim(values[0], ": ") | |
version = strings.Trim(values[1], " ") | |
m[cookbook] = version | |
keys = append(keys, cookbook) | |
} | |
if verbose { | |
sort.Strings(keys) | |
for _, key := range keys { | |
fmt.Printf("cookbook \"%s\" has version \"%s\"\n", key, m[key]) | |
} | |
} | |
return m | |
} | |
func getLocalEnvironment(environment *string, verbose bool) map[string]string { | |
fmt.Println("Getting local cookbook versions for environment:", *environment) | |
filename := fmt.Sprintf("/Users/grig.gheorghiu/chef-repo/environments/%s.rb", *environment) | |
content, err := ioutil.ReadFile(filename) | |
if err != nil { | |
log.Fatalln("Error reading file", filename) | |
} | |
// content returned as []byte not string | |
lines := strings.Split(string(content), "\n") | |
m := make(map[string]string) | |
keys := make([]string, 0, len(lines)) | |
var cookbook, version string; | |
for _, line := range lines { | |
if ! strings.Contains(line, "=") { | |
continue | |
} | |
line = strings.Replace(line, "\"", "", -1) | |
line = strings.Replace(line, ",", "", -1) | |
line = strings.Replace(line, "cookbook", "", -1) | |
//fmt.Println(line) | |
values := strings.Split(line, "=") | |
/* | |
for _, value := range values { | |
fmt.Printf("value: %s\n", value) | |
} | |
*/ | |
cookbook = strings.Trim(values[0], ": ") | |
version = strings.Trim(values[1], " ") | |
m[cookbook] = version | |
keys = append(keys, cookbook) | |
} | |
if verbose { | |
sort.Strings(keys) | |
for _, key := range keys { | |
fmt.Printf("cookbook \"%s\" has version \"%s\"\n", key, m[key]) | |
} | |
} | |
return m | |
} | |
func getGitStatus(environment *string) int { | |
fmt.Println("\nGetting git status for environment:", *environment) | |
cmd := exec.Command("git", "status") | |
var out bytes.Buffer | |
cmd.Stdout = &out | |
err := cmd.Run() | |
if err != nil { | |
log.Fatal(err) | |
} | |
lines := strings.Split(out.String(), "\n") | |
for _, line := range lines { | |
if strings.Contains(line, "modified") && strings.Contains(line, *environment) { | |
return 1 | |
} | |
} | |
return 0 | |
} | |
func main() { | |
environment := flag.String("env", "prod", "the environment we are inspecting") | |
flag.Parse() | |
from_chef := getChefEnvironment(environment, false) | |
/* | |
for cookbook, version := range from_chef { | |
fmt.Printf("Chef cookbook \"%s\" has version \"%s\"\n", cookbook, version) | |
} | |
*/ | |
from_local := getLocalEnvironment(environment, false) | |
/* | |
for cookbook, version := range from_local { | |
fmt.Printf("Local cookbook \"%s\" has version \"%s\"\n", cookbook, version) | |
} | |
*/ | |
found := false | |
for key := range from_local { | |
if from_chef[key] != from_local[key] { | |
fmt.Printf("Found a difference for %s! Local: %s Chef: %s\n", key, from_local[key], from_chef[key]) | |
found = true | |
} | |
} | |
if ! found { | |
fmt.Printf("Found no differences between Chef and local!\n") | |
} | |
git_status_code := getGitStatus(environment) | |
if git_status_code > 0 { | |
fmt.Printf("Found differences in local version vs git!\n") | |
} else { | |
fmt.Printf("Found no differences in local version vs git.\n") | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment