-
Notifications
You must be signed in to change notification settings - Fork 568
Expand file tree
/
Copy pathgoogle-cloud-pubsub.rb
More file actions
160 lines (151 loc) · 6.02 KB
/
google-cloud-pubsub.rb
File metadata and controls
160 lines (151 loc) · 6.02 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
# Copyright 2016 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.
##
# This file is here to be autorequired by bundler, so that the
# Google::Cloud.pubsub and Google::Cloud#pubsub methods can be available, but
# the library and all dependencies won't be loaded until required and used.
gem "google-cloud-core"
require "google/cloud" unless defined? Google::Cloud.new
require "google/cloud/config"
require "googleauth"
require "logger"
module Google
module Cloud
##
# Creates a new object for connecting to the Pub/Sub service.
# Each call creates a new connection.
#
# For more information on connecting to Google Cloud see the
# {file:AUTHENTICATION.md Authentication Guide}.
#
# @param [String, Array<String>] scope The OAuth 2.0 scopes controlling the
# set of resources and operations that the connection can access. See
# [Using OAuth 2.0 to Access Google
# APIs](https://developers.google.com/identity/protocols/OAuth2).
#
# The default scope is:
#
# * `https://www.googleapis.com/auth/pubsub`
# @param [Numeric] timeout Default timeout to use in requests. Optional.
#
# @return [Google::Cloud::PubSub::Project]
#
# @example
# require "google/cloud"
#
# gcloud = Google::Cloud.new
# pubsub = gcloud.pubsub
# topic_admin = pubsub.topic_admin
# publisher = pubsub.publisher "my-topic"
# publisher.publish "task completed"
#
# @example The default scope can be overridden with the `scope` option:
# require "google/cloud"
#
# gcloud = Google::Cloud.new
# platform_scope = "https://www.googleapis.com/auth/cloud-platform"
# pubsub = gcloud.pubsub scope: platform_scope
#
def pubsub scope: nil, timeout: nil
timeout ||= @timeout
Google::Cloud.pubsub @project, @keyfile, scope: scope, timeout: timeout
end
##
# Creates a new object for connecting to the Pub/Sub service.
# Each call creates a new connection.
#
# For more information on connecting to Google Cloud see the
# {file:AUTHENTICATION.md Authentication Guide}.
#
# @param [String] project_id Project identifier for the Pub/Sub service you
# are connecting to. If not present, the default project for the
# credentials is used.
# @param [Google::Auth::Credentials] credentials A Google::Auth::Credentials
# object. (See {Google::Cloud::PubSub::Credentials})
# @note Warning: Passing a `String` to a keyfile path or a `Hash` of credentials
# is deprecated. Providing an unvalidated credential configuration to
# Google APIs can compromise the security of your systems and data.
#
# @example
#
# # The recommended way to provide credentials is to use the `make_creds` method
# # on the appropriate credentials class for your environment.
#
# require "googleauth"
#
# credentials = ::Google::Auth::ServiceAccountCredentials.make_creds(
# json_key_io: ::File.open("/path/to/keyfile.json")
# )
#
# pubsub = Google::Cloud::Pubsub.new project_id: "my-project", credentials: credentials
# @param [String, Array<String>] scope The OAuth 2.0 scopes controlling the
# set of resources and operations that the connection can access. See
# [Using OAuth 2.0 to Access Google
# APIs](https://developers.google.com/identity/protocols/OAuth2).
#
# The default scope is:
#
# * `https://www.googleapis.com/auth/pubsub`
# @param [Numeric] timeout Default timeout to use in requests. Optional.
#
# @return [Google::Cloud::PubSub::Project]
#
# @example
# require "google/cloud"
#
# pubsub = Google::Cloud.pubsub
#
# publisher = pubsub.publisher "my-topic"
# publisher.publish "task completed"
#
def self.pubsub project_id = nil,
credentials = nil,
scope: nil,
timeout: nil
require "google/cloud/pubsub"
Google::Cloud::PubSub.new project_id: project_id, credentials: credentials, scope: scope, timeout: timeout
end
end
end
# Set the default pubsub configuration
Google::Cloud.configure.add_config! :pubsub do |config| # rubocop:disable Metrics/BlockLength
default_project = Google::Cloud::Config.deferred do
ENV["PUBSUB_PROJECT"]
end
default_creds = Google::Cloud::Config.deferred do
Google::Cloud::Config.credentials_from_env(
"PUBSUB_CREDENTIALS", "PUBSUB_CREDENTIALS_JSON", "PUBSUB_KEYFILE", "PUBSUB_KEYFILE_JSON"
)
end
default_emulator = Google::Cloud::Config.deferred do
ENV["PUBSUB_EMULATOR_HOST"]
end
default_scopes = [
"https://www.googleapis.com/auth/cloud-platform",
"https://www.googleapis.com/auth/pubsub"
]
default_logger = Logger.new $stdout
config.add_field! :project_id, default_project, match: String, allow_nil: true
config.add_alias! :project, :project_id
config.add_field! :credentials, default_creds, match: [String, Hash, Google::Auth::Credentials], allow_nil: true
config.add_alias! :keyfile, :credentials
config.add_field! :scope, default_scopes, match: [String, Array]
config.add_field! :quota_project, nil, match: String
config.add_field! :timeout, nil, match: Numeric
config.add_field! :emulator_host, default_emulator, match: String, allow_nil: true
config.add_field! :on_error, nil, match: Proc
config.add_field! :endpoint, nil, match: String
config.add_field! :universe_domain, nil, match: String
config.add_field! :logger, default_logger, match: Logger, allow_nil: true
end