| // Copyright 2016 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. |
| |
| // Package appengine contains an AppEngine app for perfdata.golang.org |
| package appengine |
| |
| import ( |
| "fmt" |
| "log" |
| "net/http" |
| "os" |
| |
| _ "github.com/go-sql-driver/mysql" |
| "golang.org/x/perf/storage/app" |
| "golang.org/x/perf/storage/db" |
| "golang.org/x/perf/storage/fs/gcs" |
| "google.golang.org/appengine" |
| aelog "google.golang.org/appengine/log" |
| ) |
| |
| // connectDB returns a DB initialized from the environment variables set in app.yaml. CLOUDSQL_CONNECTION_NAME, CLOUDSQL_USER, and CLOUDSQL_DATABASE must be set to point to the Cloud SQL instance. CLOUDSQL_PASSWORD can be set if needed. |
| func connectDB() (*db.DB, error) { |
| var ( |
| connectionName = mustGetenv("CLOUDSQL_CONNECTION_NAME") |
| user = mustGetenv("CLOUDSQL_USER") |
| password = os.Getenv("CLOUDSQL_PASSWORD") // NOTE: password may be empty |
| dbName = mustGetenv("CLOUDSQL_DATABASE") |
| ) |
| |
| return db.OpenSQL("mysql", fmt.Sprintf("%s:%s@cloudsql(%s)/%s", user, password, connectionName, dbName)) |
| } |
| |
| func mustGetenv(k string) string { |
| v := os.Getenv(k) |
| if v == "" { |
| log.Panicf("%s environment variable not set.", k) |
| } |
| return v |
| } |
| |
| // appHandler is the default handler, registered to serve "/". |
| // It creates a new App instance using the appengine Context and then |
| // dispatches the request to the App. The environment variable |
| // GCS_BUCKET must be set in app.yaml with the name of the bucket to |
| // write to. |
| func appHandler(w http.ResponseWriter, r *http.Request) { |
| ctx := appengine.NewContext(r) |
| // GCS clients need to be constructed with an AppEngine |
| // context, so we can't actually make the App until the |
| // request comes in. |
| // TODO(quentin): Figure out if there's a way to construct the |
| // app and clients once, in init(), instead of on every request. |
| db, err := connectDB() |
| if err != nil { |
| aelog.Errorf(ctx, "connectDB: %v", err) |
| http.Error(w, err.Error(), 500) |
| return |
| } |
| defer db.Close() |
| |
| fs, err := gcs.NewFS(ctx, mustGetenv("GCS_BUCKET")) |
| if err != nil { |
| aelog.Errorf(ctx, "gcs.NewFS: %v", err) |
| http.Error(w, err.Error(), 500) |
| return |
| } |
| mux := http.NewServeMux() |
| app := &app.App{DB: db, FS: fs} |
| app.RegisterOnMux(mux) |
| mux.ServeHTTP(w, r) |
| } |
| |
| func init() { |
| http.HandleFunc("/", appHandler) |
| } |