| // Copyright 2015 The Go Authors. All rights reserved. |
| // Use of this source code is governed by a BSD-style |
| // license that can be found in the LICENSE file. |
| |
| // Code interacting with build.golang.org ("the dashboard"). |
| |
| package main |
| |
| import ( |
| "bytes" |
| "crypto/hmac" |
| "crypto/md5" |
| "encoding/json" |
| "errors" |
| "fmt" |
| "io" |
| "io/ioutil" |
| "log" |
| "net/http" |
| "net/url" |
| "strings" |
| "sync" |
| "time" |
| |
| "google.golang.org/cloud/compute/metadata" |
| ) |
| |
| // dashBase returns the base URL of the build dashboard. |
| // It must be called after initGCE (so not at init time). |
| func dashBase() string { |
| if devCluster { |
| return "https://go-dashboard-dev.appspot.com/" |
| } |
| return "https://build.golang.org/" |
| } |
| |
| // dash is copied from the builder binary. It runs the given method and command on the dashboard. |
| // |
| // TODO(bradfitz,adg): unify this somewhere? |
| // |
| // If args is non-nil it is encoded as the URL query string. |
| // If req is non-nil it is JSON-encoded and passed as the body of the HTTP POST. |
| // If resp is non-nil the server's response is decoded into the value pointed |
| // to by resp (resp must be a pointer). |
| func dash(meth, cmd string, args url.Values, req, resp interface{}) error { |
| const builderVersion = 1 // keep in sync with dashboard/app/build/handler.go |
| argsCopy := url.Values{"version": {fmt.Sprint(builderVersion)}} |
| for k, v := range args { |
| if k == "version" { |
| panic(`dash: reserved args key: "version"`) |
| } |
| argsCopy[k] = v |
| } |
| var r *http.Response |
| var err error |
| cmd = dashBase() + cmd + "?" + argsCopy.Encode() |
| switch meth { |
| case "GET": |
| if req != nil { |
| log.Panicf("%s to %s with req", meth, cmd) |
| } |
| r, err = http.Get(cmd) |
| case "POST": |
| var body io.Reader |
| if req != nil { |
| b, err := json.Marshal(req) |
| if err != nil { |
| return err |
| } |
| body = bytes.NewBuffer(b) |
| } |
| r, err = http.Post(cmd, "text/json", body) |
| default: |
| log.Panicf("%s: invalid method %q", cmd, meth) |
| panic("invalid method: " + meth) |
| } |
| if err != nil { |
| return err |
| } |
| defer r.Body.Close() |
| if r.StatusCode != http.StatusOK { |
| return fmt.Errorf("bad http response: %v", r.Status) |
| } |
| body := new(bytes.Buffer) |
| if _, err := body.ReadFrom(r.Body); err != nil { |
| return err |
| } |
| |
| // Read JSON-encoded Response into provided resp |
| // and return an error if present. |
| var result = struct { |
| Response interface{} |
| Error string |
| }{ |
| // Put the provided resp in here as it can be a pointer to |
| // some value we should unmarshal into. |
| Response: resp, |
| } |
| if err = json.Unmarshal(body.Bytes(), &result); err != nil { |
| log.Printf("json unmarshal %#q: %s\n", body.Bytes(), err) |
| return err |
| } |
| if result.Error != "" { |
| return errors.New(result.Error) |
| } |
| |
| return nil |
| } |
| |
| // recordResult sends build results to the dashboard |
| func recordResult(builderName string, ok bool, hash, buildLog string, runTime time.Duration) error { |
| req := map[string]interface{}{ |
| "Builder": builderName, |
| "PackagePath": "", |
| "Hash": hash, |
| "GoHash": "", |
| "OK": ok, |
| "Log": buildLog, |
| "RunTime": runTime, |
| } |
| args := url.Values{"key": {builderKey(builderName)}, "builder": {builderName}} |
| if *mode == "dev" { |
| log.Printf("In dev mode, not recording result: %v", req) |
| return nil |
| } |
| return dash("POST", "result", args, req, nil) |
| } |
| |
| // pingDashboard runs in its own goroutine, created periodically to |
| // POST to build.golang.org/building to let it know that we're still working on a build. |
| func (st *buildStatus) pingDashboard() { |
| if st.conf.TryOnly { |
| // Builders that are trybot-only don't appear on the dashboard. |
| return |
| } |
| if *mode == "dev" { |
| log.Print("In dev mode, not pinging dashboard") |
| return |
| } |
| u := dashBase() + "building?" + url.Values{ |
| "builder": []string{st.name}, |
| "key": []string{builderKey(st.name)}, |
| "hash": []string{st.rev}, |
| "url": []string{fmt.Sprintf("http://farmer.golang.org/logs?name=%s&rev=%s&st=%p", st.name, st.rev, st)}, |
| }.Encode() |
| for { |
| st.mu.Lock() |
| done := st.done |
| st.mu.Unlock() |
| if !done.IsZero() { |
| return |
| } |
| if res, _ := http.PostForm(u, nil); res != nil { |
| res.Body.Close() |
| } |
| time.Sleep(60 * time.Second) |
| } |
| } |
| |
| func builderKey(builder string) string { |
| master := masterKey() |
| if len(master) == 0 { |
| return "" |
| } |
| h := hmac.New(md5.New, master) |
| io.WriteString(h, builder) |
| return fmt.Sprintf("%x", h.Sum(nil)) |
| } |
| |
| func masterKey() []byte { |
| keyOnce.Do(loadKey) |
| return masterKeyCache |
| } |
| |
| var ( |
| keyOnce sync.Once |
| masterKeyCache []byte |
| ) |
| |
| func loadKey() { |
| if *masterKeyFile != "" { |
| b, err := ioutil.ReadFile(*masterKeyFile) |
| if err != nil { |
| log.Fatal(err) |
| } |
| masterKeyCache = bytes.TrimSpace(b) |
| return |
| } |
| if *mode == "dev" { |
| masterKeyCache = []byte("gophers rule") |
| return |
| } |
| masterKey, err := metadata.ProjectAttributeValue("builder-master-key") |
| if err != nil { |
| log.Fatalf("No builder master key available: %v", err) |
| } |
| masterKeyCache = []byte(strings.TrimSpace(masterKey)) |
| } |