123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245 |
- // Copyright 2016 Google Inc. All Rights Reserved.
- //
- // 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 pubsub
- import (
- "encoding/base64"
- "fmt"
- "net/http"
- "time"
- "golang.org/x/net/context"
- "google.golang.org/api/googleapi"
- raw "google.golang.org/api/pubsub/v1"
- )
- // service provides an internal abstraction to isolate the generated
- // PubSub API; most of this package uses this interface instead.
- // The single implementation, *apiService, contains all the knowledge
- // of the generated PubSub API (except for that present in legacy code).
- type service interface {
- createSubscription(ctx context.Context, topicName, subName string, ackDeadline time.Duration, pushConfig *PushConfig) error
- getSubscriptionConfig(ctx context.Context, subName string) (*SubscriptionConfig, string, error)
- listProjectSubscriptions(ctx context.Context, projName string) ([]string, error)
- deleteSubscription(ctx context.Context, name string) error
- subscriptionExists(ctx context.Context, name string) (bool, error)
- createTopic(ctx context.Context, name string) error
- deleteTopic(ctx context.Context, name string) error
- topicExists(ctx context.Context, name string) (bool, error)
- listProjectTopics(ctx context.Context, projName string) ([]string, error)
- listTopicSubscriptions(ctx context.Context, topicName string) ([]string, error)
- modifyAckDeadline(ctx context.Context, subName string, deadline time.Duration, ackIDs []string) error
- acknowledge(ctx context.Context, subName string, ackIDs []string) error
- fetchMessages(ctx context.Context, subName string, maxMessages int64) ([]*Message, error)
- publishMessages(ctx context.Context, topicName string, msgs []*Message) ([]string, error)
- }
- type apiService struct {
- s *raw.Service
- }
- func newPubSubService(client *http.Client, endpoint string) (*apiService, error) {
- s, err := raw.New(client)
- if err != nil {
- return nil, err
- }
- s.BasePath = endpoint
- return &apiService{s: s}, nil
- }
- func (s *apiService) createSubscription(ctx context.Context, topicName, subName string, ackDeadline time.Duration, pushConfig *PushConfig) error {
- var rawPushConfig *raw.PushConfig
- if pushConfig != nil {
- rawPushConfig = &raw.PushConfig{
- Attributes: pushConfig.Attributes,
- PushEndpoint: pushConfig.Endpoint,
- }
- }
- rawSub := &raw.Subscription{
- AckDeadlineSeconds: int64(ackDeadline.Seconds()),
- PushConfig: rawPushConfig,
- Topic: topicName,
- }
- _, err := s.s.Projects.Subscriptions.Create(subName, rawSub).Context(ctx).Do()
- return err
- }
- func (s *apiService) getSubscriptionConfig(ctx context.Context, subName string) (*SubscriptionConfig, string, error) {
- rawSub, err := s.s.Projects.Subscriptions.Get(subName).Context(ctx).Do()
- if err != nil {
- return nil, "", err
- }
- sub := &SubscriptionConfig{
- AckDeadline: time.Second * time.Duration(rawSub.AckDeadlineSeconds),
- PushConfig: PushConfig{
- Endpoint: rawSub.PushConfig.PushEndpoint,
- Attributes: rawSub.PushConfig.Attributes,
- },
- }
- return sub, rawSub.Topic, err
- }
- func (s *apiService) listProjectSubscriptions(ctx context.Context, projName string) ([]string, error) {
- subs := []string{}
- err := s.s.Projects.Subscriptions.List(projName).
- Pages(ctx, func(res *raw.ListSubscriptionsResponse) error {
- for _, s := range res.Subscriptions {
- subs = append(subs, s.Name)
- }
- return nil
- })
- if err != nil {
- return nil, err
- }
- return subs, nil
- }
- func (s *apiService) deleteSubscription(ctx context.Context, name string) error {
- _, err := s.s.Projects.Subscriptions.Delete(name).Context(ctx).Do()
- return err
- }
- func (s *apiService) subscriptionExists(ctx context.Context, name string) (bool, error) {
- _, err := s.s.Projects.Subscriptions.Get(name).Context(ctx).Do()
- if err == nil {
- return true, nil
- }
- if e, ok := err.(*googleapi.Error); ok && e.Code == http.StatusNotFound {
- return false, nil
- }
- return false, err
- }
- func (s *apiService) createTopic(ctx context.Context, name string) error {
- // Note: The raw API expects a Topic body, but ignores it.
- _, err := s.s.Projects.Topics.Create(name, &raw.Topic{}).
- Context(ctx).
- Do()
- return err
- }
- func (s *apiService) listProjectTopics(ctx context.Context, projName string) ([]string, error) {
- topics := []string{}
- err := s.s.Projects.Topics.List(projName).
- Pages(ctx, func(res *raw.ListTopicsResponse) error {
- for _, topic := range res.Topics {
- topics = append(topics, topic.Name)
- }
- return nil
- })
- if err != nil {
- return nil, err
- }
- return topics, nil
- }
- func (s *apiService) deleteTopic(ctx context.Context, name string) error {
- _, err := s.s.Projects.Topics.Delete(name).Context(ctx).Do()
- return err
- }
- func (s *apiService) topicExists(ctx context.Context, name string) (bool, error) {
- _, err := s.s.Projects.Topics.Get(name).Context(ctx).Do()
- if err == nil {
- return true, nil
- }
- if e, ok := err.(*googleapi.Error); ok && e.Code == http.StatusNotFound {
- return false, nil
- }
- return false, err
- }
- func (s *apiService) listTopicSubscriptions(ctx context.Context, topicName string) ([]string, error) {
- subs := []string{}
- err := s.s.Projects.Topics.Subscriptions.List(topicName).
- Pages(ctx, func(res *raw.ListTopicSubscriptionsResponse) error {
- for _, s := range res.Subscriptions {
- subs = append(subs, s)
- }
- return nil
- })
- if err != nil {
- return nil, err
- }
- return subs, nil
- }
- func (s *apiService) modifyAckDeadline(ctx context.Context, subName string, deadline time.Duration, ackIDs []string) error {
- req := &raw.ModifyAckDeadlineRequest{
- AckDeadlineSeconds: int64(deadline.Seconds()),
- AckIds: ackIDs,
- }
- _, err := s.s.Projects.Subscriptions.ModifyAckDeadline(subName, req).
- Context(ctx).
- Do()
- return err
- }
- func (s *apiService) acknowledge(ctx context.Context, subName string, ackIDs []string) error {
- req := &raw.AcknowledgeRequest{
- AckIds: ackIDs,
- }
- _, err := s.s.Projects.Subscriptions.Acknowledge(subName, req).
- Context(ctx).
- Do()
- return err
- }
- func (s *apiService) fetchMessages(ctx context.Context, subName string, maxMessages int64) ([]*Message, error) {
- req := &raw.PullRequest{
- MaxMessages: maxMessages,
- }
- resp, err := s.s.Projects.Subscriptions.Pull(subName, req).
- Context(ctx).
- Do()
- if err != nil {
- return nil, err
- }
- msgs := make([]*Message, 0, len(resp.ReceivedMessages))
- for i, m := range resp.ReceivedMessages {
- msg, err := toMessage(m)
- if err != nil {
- return nil, fmt.Errorf("pubsub: cannot decode the retrieved message at index: %d, message: %+v", i, m)
- }
- msgs = append(msgs, msg)
- }
- return msgs, nil
- }
- func (s *apiService) publishMessages(ctx context.Context, topicName string, msgs []*Message) ([]string, error) {
- rawMsgs := make([]*raw.PubsubMessage, len(msgs))
- for i, msg := range msgs {
- rawMsgs[i] = &raw.PubsubMessage{
- Data: base64.StdEncoding.EncodeToString(msg.Data),
- Attributes: msg.Attributes,
- }
- }
- req := &raw.PublishRequest{Messages: rawMsgs}
- resp, err := s.s.Projects.Topics.Publish(topicName, req).
- Context(ctx).
- Do()
- if err != nil {
- return nil, err
- }
- return resp.MessageIds, nil
- }
|