// getDeployCommand returns the deployment command for a given // environment as a string slice that has been split on spaces. func getDeployCommand(projects []goship.Project, projectName, environmentName string) (s []string, err error) { e, err := goship.EnvironmentFromName(projects, projectName, environmentName) if err != nil { return s, err } return strings.Split(e.Deploy, " "), nil }
func TestGetEnvironmentFromName(t *testing.T) { var ( want = goship.Environment{Name: "TestEnvironment"} envs = []goship.Environment{want} ) projects := []goship.Project{goship.Project{Name: "TestProject", Environments: envs}} got, err := goship.EnvironmentFromName(projects, "TestProject", "TestEnvironment") if err != nil { t.Fatal(err) } if !reflect.DeepEqual(got, &want) { t.Errorf("goship.EnvironmentFromName = %v, want %v", got, want) } got, err = goship.EnvironmentFromName(projects, "BadProject", "BadEnvironment") if err == nil { t.Errorf("goship.EnvironmentFromName error case did not error") } }
func extractDeployLogHandler(fn func(http.ResponseWriter, *http.Request, string, goship.Environment, string)) http.HandlerFunc { return func(w http.ResponseWriter, r *http.Request) { m := validPathWithEnv.FindStringSubmatch(r.URL.Path) if m == nil { http.NotFound(w, r) return } c, err := goship.ParseETCD(etcd.NewClient([]string{*ETCDServer})) if err != nil { log.Println("ERROR: ", err) http.Error(w, err.Error(), http.StatusInternalServerError) return } // auth check for user u, err := getUser(r) if err != nil { log.Println("Failed to get a user while deploying in Auth Mode! ") http.Error(w, err.Error(), http.StatusUnauthorized) } c.Projects = removeUnauthorizedProjects(c.Projects, r, u) // get project name and env from url a := strings.Split(m[2], "-") l := len(a) environmentName := a[l-1] var projectName string if m[1] == "commits" { projectName = m[2] } else { projectName = strings.Join(a[0:l-1], "-") } e, err := goship.EnvironmentFromName(c.Projects, projectName, environmentName) if err != nil { log.Println("ERROR: Can't get environment from name", err) http.Error(w, err.Error(), http.StatusInternalServerError) return } fn(w, r, m[2], *e, projectName) } }