run/image-processing/main.go (56 lines of code) (raw):
// Copyright 2019 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
//
// https://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.
// [START cloudrun_imageproc_controller]
// Sample image-processing is a Cloud Run service which performs asynchronous processing on images.
package main
import (
"encoding/json"
"io"
"log"
"net/http"
"os"
"github.com/GoogleCloudPlatform/golang-samples/run/image-processing/imagemagick"
)
func main() {
http.HandleFunc("/", HelloPubSub)
// Determine port for HTTP service.
port := os.Getenv("PORT")
if port == "" {
port = "8080"
}
// Start HTTP server.
log.Printf("Listening on port %s", port)
if err := http.ListenAndServe(":"+port, nil); err != nil {
log.Fatal(err)
}
}
// PubSubMessage is the payload of a Pub/Sub event.
// See the documentation for more details:
// https://cloud.google.com/pubsub/docs/reference/rest/v1/PubsubMessage
type PubSubMessage struct {
Message struct {
Data []byte `json:"data,omitempty"`
ID string `json:"id"`
} `json:"message"`
Subscription string `json:"subscription"`
}
// HelloPubSub receives and processes a Pub/Sub push message.
func HelloPubSub(w http.ResponseWriter, r *http.Request) {
var m PubSubMessage
body, err := io.ReadAll(r.Body)
if err != nil {
log.Printf("ioutil.ReadAll: %v", err)
http.Error(w, "Bad Request", http.StatusBadRequest)
return
}
if err := json.Unmarshal(body, &m); err != nil {
log.Printf("json.Unmarshal: %v", err)
http.Error(w, "Bad Request", http.StatusBadRequest)
return
}
var e imagemagick.GCSEvent
if err := json.Unmarshal(m.Message.Data, &e); err != nil {
log.Printf("json.Unmarshal: %v", err)
http.Error(w, "Bad Request", http.StatusBadRequest)
return
}
if e.Name == "" || e.Bucket == "" {
log.Printf("invalid GCSEvent: expected name and bucket")
http.Error(w, "Bad Request", http.StatusBadRequest)
return
}
if err := imagemagick.BlurOffensiveImages(r.Context(), e); err != nil {
log.Printf("imagemagick.BlurOffensiveImages: %v", err)
http.Error(w, "Internal Server Error", http.StatusInternalServerError)
}
}
// [END cloudrun_imageproc_controller]