forked from GoogleCloudPlatform/nodejs-docs-samples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
subscription.js
331 lines (302 loc) · 8.82 KB
/
subscription.js
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
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
// Copyright 2016, Google, Inc.
// 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.
'use strict';
var async = require('async');
// [START auth]
// By default, gcloud will authenticate using the service account file specified
// by the GOOGLE_APPLICATION_CREDENTIALS environment variable and use the
// project specified by the GCLOUD_PROJECT environment variable. See
// https://googlecloudplatform.github.io/gcloud-node/#/docs/guides/authentication
var gcloud = require('gcloud');
// Get a reference to the pubsub component
var pubsub = gcloud.pubsub();
// [END auth]
// [START create_topic]
/**
* @param {string} topicName Name for the new topic.
* @param {Function} callback Callback function.
*/
function createTopicExample (topicName, callback) {
var topic = pubsub.topic(topicName);
// Get the topic if it exists. Create it if it does not exist.
topic.get({
autoCreate: true
}, function (err, topic, apiResponse) {
if (err) {
return callback(err);
}
// Created the topic
console.log('Created topic ' + topicName);
callback(null, topic, apiResponse);
});
}
// [END create_topic]
// [START delete_topic]
/**
* @param {string} topicName Name of the topic to delete.
* @param {Function} callback Callback function.
*/
function deleteTopicExample (topicName, callback) {
var topic = pubsub.topic(topicName);
// Delete the topic
topic.delete(function (err, apiResponse) {
if (err) {
return callback(err);
}
// Deleted the topic
console.log('Deleted topic ' + topicName);
callback(null, apiResponse);
});
}
// [END delete_topic]
// [START delete_subscription]
/**
* @param {string} subscriptionName Name of the subscription to delete.
* @param {Function} callback Callback function.
*/
function deleteSubscriptionExample (subscriptionName, callback) {
var subscription = pubsub.subscription(subscriptionName);
// Delete the subscription
subscription.delete(function (err, apiResponse) {
if (err) {
return callback(err);
}
// Deleted the subscription
console.log('Deleted subscription ' + subscriptionName);
callback(null, apiResponse);
});
}
// [END delete_subscription]
// [START publish]
/**
* @param {string} topicName Name of the topic to which to publish.
* @param {Function} callback Callback function.
*/
function publishExample (topicName, callback) {
// Grab a reference to an existing topic
var topic = pubsub.topic(topicName);
// Publish a message to the topic
topic.publish({
data: 'Hello, world!'
}, function (err, messageIds, apiResponse) {
if (err) {
return callback(err);
}
console.log('Published ' + messageIds.length + ' messages');
callback(null, messageIds, apiResponse);
});
}
// [END publish]
// [START list_topics]
/**
* @param {string} [pageToken] Page to retrieve.
* @param {Function} callback Callback function.
*/
function getAllTopicsExample (pageToken, callback) {
if (typeof pageToken === 'function') {
callback = pageToken;
pageToken = undefined;
}
var options = {};
if (pageToken) {
options.pageToken = pageToken;
}
// Grab paginated topics
pubsub.getTopics(options, function (err, topics, nextQuery) {
// Quit on error
if (err) {
return callback(err);
}
// There is another page of topics
if (nextQuery) {
// Grab the remaining pages of topics recursively
return getAllTopicsExample(nextQuery.token, function (err, _topics) {
if (err) {
return callback(err);
}
if (_topics) {
topics = topics.concat(_topics);
}
callback(null, topics);
});
}
// Last page of topics
return callback(null, topics);
});
}
// [END list_topics]
// [START get_all_subscriptions]
/**
* @param {string} [pageToken] Page to retrieve.
* @param {Function} callback Callback function.
*/
function getAllSubscriptionsExample (pageToken, callback) {
if (typeof pageToken === 'function') {
callback = pageToken;
pageToken = undefined;
}
var options = {};
if (pageToken) {
options.pageToken = pageToken;
}
// Grab paginated subscriptions
pubsub.getSubscriptions(
options,
function (err, subscriptions, nextQuery) {
// Quit on error
if (err) {
return callback(err);
}
// There is another page of subscriptions
if (nextQuery) {
// Grab the remaining pages of subscriptions recursively
return getAllSubscriptionsExample(
nextQuery.token,
function (err, _subscriptions) {
if (err) {
return callback(err);
}
if (_subscriptions) {
subscriptions = subscriptions.concat(_subscriptions);
}
callback(null, subscriptions);
}
);
}
// Last page of subscriptions
return callback(null, subscriptions);
}
);
}
// [END get_all_subscriptions]
// [START create_subscription]
/**
* @param {string} topicName Name of the topic for the new subscription.
* @param {string} subscriptionName Name for the new subscription.
* @param {Function} callback Callback function.
*/
function subscribeExample (topicName, subscriptionName, callback) {
var options = {
reuseExisting: true
};
pubsub.subscribe(
topicName,
subscriptionName,
options,
function (err, subscription, apiResponse) {
if (err) {
return callback(err);
}
// Got the subscription
console.log('Subscribed to ' + topicName);
callback(null, subscription, apiResponse);
}
);
}
// [END create_subscription]
// [START handle_message]
function handleMessageExample (message) {
console.log('received message: ' + message.data);
}
// [END handle_message]
// [START pull_messages]
/**
*
*/
function pullMessagesExample (topicName, subscriptionName, callback) {
// Use the "async" library to handle a chain of asynchronous functions
async.waterfall([
function (cb) {
// Create a topic
createTopicExample(topicName, cb);
},
function (topic, apiResponse, cb) {
// Create a subscription
subscribeExample(topicName, subscriptionName, cb);
},
function (subscription, apiResponse, cb) {
var options = {
// Limit the amount of messages pulled.
maxResults: 100,
// If set, the system will respond immediately. Otherwise, wait until
// new messages are available. Returns if timeout is reached.
returnImmediately: false
};
// Pull any messages on the subscription
subscription.pull(options, cb);
},
function (messages, apiResponse, cb) {
// Do something for each message
messages.forEach(handleMessageExample);
// Acknowledge messages
var subscription = pubsub.subscription(subscriptionName);
subscription.ack(messages.map(function (message) {
return message.ackId;
}), function (err) {
if (err) {
return cb(err);
}
cb(null, messages);
});
}
], function (err, messages) {
if (err) {
return callback(err);
}
console.log('Pulled ' + messages.length + ' messages');
callback(null, messages);
});
}
// [END pull_messages]
exports.createTopicExample = createTopicExample;
exports.deleteTopicExample = deleteTopicExample;
exports.subscribeExample = subscribeExample;
exports.deleteSubscriptionExample = deleteSubscriptionExample;
exports.publishExample = publishExample;
exports.getAllTopicsExample = getAllTopicsExample;
exports.getAllSubscriptionsExample = getAllSubscriptionsExample;
exports.subscribeExample = subscribeExample;
exports.pubsub = pubsub;
exports.main = function (cb) {
var topicName = 'messageCenter';
var subscriptionName = 'newMessages';
async.series([
function (cb) {
createTopicExample(topicName, cb);
},
function (cb) {
subscribeExample(topicName, subscriptionName, cb);
},
function (cb) {
getAllTopicsExample(cb);
},
function (cb) {
getAllSubscriptionsExample(cb);
},
function (cb) {
publishExample(topicName, cb);
},
function (cb) {
pullMessagesExample(topicName, subscriptionName, cb);
},
function (cb) {
deleteSubscriptionExample(subscriptionName, cb);
},
function (cb) {
deleteTopicExample(topicName, cb);
}
], cb || console.log);
};
if (module === require.main) {
exports.main();
}