cmd/go/functions_framework/template_v0.go (40 lines of code) (raw):
// Copyright 2020 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package main
const mainTextTemplateV0 = `// Binary main file implements an HTTP server that loads and runs user's code
// on incoming HTTP requests.
// As this file must compile statically alongside the user code, this file
// will be copied into the function image and the 'FUNCTION_TARGET' and
// 'FUNCTION_PACKAGE' strings will be replaced by the relevant function and
// package names. That edited file will then be compiled as with the user's
// function code to produce an executable app binary that launches the HTTP
// server.
package main
import (
"log"
"os"
"net/http"
userfunction "{{.Package}}"
"github.com/GoogleCloudPlatform/functions-framework-go/funcframework"
)
func register(fn interface{}) error {
if fnHTTP, ok := fn.(func (http.ResponseWriter, *http.Request)); ok {
funcframework.RegisterHTTPFunction("/", fnHTTP)
} else {
funcframework.RegisterEventFunction("/", fn)
}
return nil
}
func main() {
if err := register(userfunction.{{.Target}}); err != nil {
log.Fatalf("Function failed to register: %v\n", err)
}
// Don't invoke the function for reserved URLs.
http.HandleFunc("/robots.txt", http.NotFound)
http.HandleFunc("/favicon.ico", http.NotFound)
port := os.Getenv("PORT")
if port == "" {
port = "8080"
}
if err := funcframework.Start(port); err != nil {
log.Fatalf("Function failed to start: %v\n", err)
}
}`