securitycenter/notifications/receive_notifications.go (31 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
//
// 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.
package notifications
// [START securitycenter_receive_notifications]
import (
"bytes"
"context"
"fmt"
"io"
"cloud.google.com/go/pubsub"
"cloud.google.com/go/securitycenter/apiv1/securitycenterpb"
"github.com/golang/protobuf/jsonpb"
)
func receiveMessages(w io.Writer, projectID string, subscriptionName string) error {
// projectID := "your-project-id"
// subsriptionName := "your-subscription-name"
ctx := context.Background()
client, err := pubsub.NewClient(ctx, projectID)
if err != nil {
return fmt.Errorf("pubsub.NewClient: %w", err)
}
defer client.Close()
sub := client.Subscription(subscriptionName)
cctx, cancel := context.WithCancel(ctx)
err = sub.Receive(cctx, func(ctx context.Context, msg *pubsub.Message) {
var notificationMessage = new(securitycenterpb.NotificationMessage)
jsonpb.Unmarshal(bytes.NewReader(msg.Data), notificationMessage)
fmt.Fprintln(w, "Got finding: ", notificationMessage.GetFinding())
msg.Ack()
cancel()
})
if err != nil {
return fmt.Errorf("Receive: %w", err)
}
return nil
}
// [END securitycenter_receive_notifications]