| // Copyright 2022 The LUCI Authors. |
| // |
| // 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 app |
| |
| import ( |
| "context" |
| "encoding/json" |
| "net/http" |
| |
| "go.chromium.org/luci/common/errors" |
| "go.chromium.org/luci/common/tsmon/field" |
| "go.chromium.org/luci/common/tsmon/metric" |
| cvv1 "go.chromium.org/luci/cv/api/v1" |
| "go.chromium.org/luci/server/router" |
| "google.golang.org/protobuf/encoding/protojson" |
| |
| "go.chromium.org/luci/analysis/internal/ingestion/join" |
| ) |
| |
| var ( |
| cvRunCounter = metric.NewCounter( |
| "analysis/ingestion/pubsub/cv_runs", |
| "The number of CV runs received by LUCI Analysis from PubSub.", |
| nil, |
| // The LUCI Project. |
| field.String("project"), |
| // "success", "transient-failure", "permanent-failure" or "ignored". |
| field.String("status")) |
| ) |
| |
| type handleCVRunMethod func(ctx context.Context, psRun *cvv1.PubSubRun) (project string, processed bool, err error) |
| |
| // CVRunHandler accepts and processes CV Run Pub/Sub messages. |
| type CVRunHandler struct { |
| // The method to use to handle the deserialized CV Run pub/sub message. |
| // Used to allow the handler to be replaced for testing. |
| handleCVRun handleCVRunMethod |
| } |
| |
| // NewCVRunHandler initialises a new CVRunHandler. |
| func NewCVRunHandler() *CVRunHandler { |
| return &CVRunHandler{ |
| handleCVRun: join.JoinCVRun, |
| } |
| } |
| |
| // Handle processes a CV Pub/Sub message. |
| func (h *CVRunHandler) Handle(ctx *router.Context) { |
| status := "unknown" |
| project := "unknown" |
| defer func() { |
| // Closure for late binding. |
| cvRunCounter.Add(ctx.Context, 1, project, status) |
| }() |
| project, processed, err := h.handlerImpl(ctx.Context, ctx.Request) |
| |
| switch { |
| case err != nil: |
| errors.Log(ctx.Context, errors.Annotate(err, "handling cv pubsub event").Err()) |
| status = processErr(ctx, err) |
| return |
| case !processed: |
| status = "ignored" |
| // Use subtly different "success" response codes to surface in |
| // standard GAE logs whether an ingestion was ignored or not, |
| // while still acknowledging the pub/sub. |
| // See https://cloud.google.com/pubsub/docs/push#receiving_messages. |
| ctx.Writer.WriteHeader(http.StatusNoContent) // 204 |
| default: |
| status = "success" |
| ctx.Writer.WriteHeader(http.StatusOK) |
| } |
| } |
| |
| func (h *CVRunHandler) handlerImpl(ctx context.Context, request *http.Request) (project string, processed bool, err error) { |
| psRun, err := extractPubSubRun(request) |
| if err != nil { |
| return "unknown", false, errors.Annotate(err, "failed to extract run").Err() |
| } |
| |
| return h.handleCVRun(ctx, psRun) |
| } |
| |
| func extractPubSubRun(r *http.Request) (*cvv1.PubSubRun, error) { |
| var msg pubsubMessage |
| if err := json.NewDecoder(r.Body).Decode(&msg); err != nil { |
| return nil, errors.Annotate(err, "could not decode cv pubsub message").Err() |
| } |
| |
| var run cvv1.PubSubRun |
| err := protojson.Unmarshal(msg.Message.Data, &run) |
| if err != nil { |
| return nil, errors.Annotate(err, "could not parse cv pubsub message data").Err() |
| } |
| return &run, nil |
| } |