forked from GoogleCloudPlatform/nodejs-docs-samples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathshim.js
153 lines (136 loc) · 4.73 KB
/
shim.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
/**
* Copyright 2018, 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.
*/
const httpShim = PORT => {
// [START functions_testing_shim_http]
// Import dependencies
const gcfCode = require('./index.js');
const express = require('express');
// TODO(developer): specify the port to use
// const PORT = 3000;
// Start local HTTP server
const app = express();
const server = require(`http`).createServer(app);
server.on('connection', socket => socket.unref());
server.listen(PORT);
// Register HTTP handlers
Object.keys(gcfCode).forEach(gcfFn => {
// Handle a single HTTP request
const handler = (req, res) => {
gcfCode[gcfFn](req, res);
server.close();
};
app.get(`/${gcfFn}`, handler);
app.post(`/${gcfFn}`, handler);
});
// [END functions_testing_shim_http]
};
const pubsubShim = (gcfFn, topicName, subscriptionName) => {
// [START functions_testing_shim_pubsub]
// Import dependencies
const {PubSub} = require('@google-cloud/pubsub');
const pubsub = new PubSub();
// TODO(developer): specify a function to test
// const gcfCode = require('./index.js');
// const gcfFn = gcfCode.YOUR_FUNCTION;
// TODO(developer): specify an existing topic and subscription to use
// const topicName = process.env.TOPIC || 'YOUR_TOPIC';
// const subscriptionName = process.env.SUBSCRIPTION || 'YOUR_SUBSCRIPTION';
// Subscribe to Pub/Sub topic
const subscription = pubsub.topic(topicName).subscription(subscriptionName);
// Handle a single Pub/Sub message
const messageHandler = msg => {
gcfFn({data: msg}, () => {
msg.ack();
subscription.removeListener(`message`, messageHandler);
});
};
subscription.on(`message`, messageHandler);
// [END functions_testing_shim_pubsub]
};
const storageShim = (gcfFn, bucketName, topicName, subscriptionName) => {
// [START functions_testing_shim_storage]
// Import dependencies
const Pubsub = require('@google-cloud/pubsub');
const {Storage} = require(`@google-cloud/storage`);
const pubsub = Pubsub();
const storage = new Storage();
// TODO(developer): specify a function to test
// const gcfCode = require('./index.js');
// const gcfFn = gcfCode.YOUR_FUNCTION;
// TODO(developer): specify a Cloud Storage bucket to monitor
// const bucketName = 'YOUR_GCS_BUCKET'
// TODO(developer): specify an existing topic and subscription to use
// const topicName = process.env.TOPIC || 'YOUR_TOPIC';
// const subscriptionName = process.env.SUBSCRIPTION || 'YOUR_SUBSCRIPTION';
// Create notification on target bucket
// Further info: https://cloud.google.com/storage/docs/reporting-changes
const bucket = storage.bucket(bucketName);
return bucket
.createNotification(topicName)
.then(data => data[0])
.then(
notification =>
new Promise(resolve => {
// Subscribe to Pub/Sub topic
const subscription = pubsub
.topic(topicName)
.subscription(subscriptionName);
// Handle a single Pub/Sub message
const messageHandler = msg => {
const data = JSON.parse(Buffer.from(msg.data, 'base64').toString());
gcfFn({data: data}, () => {
msg.ack();
subscription.removeListener(`message`, messageHandler);
resolve(notification);
});
};
subscription.on(`message`, messageHandler);
})
)
.then(notification => notification.delete()); // Delete notification
// [END functions_testing_shim_storage]
};
const gcfCodeGlobal = require('./index.js');
require(`yargs`) // eslint-disable-line
.demandCommand(1)
.command('http <port>', 'HTTP-triggered-function shim', {}, opts =>
httpShim(opts.port)
)
.command(
'pubsub <functionName> <topic> <subscription>',
'PubSub-triggered-function shim',
{},
opts =>
pubsubShim(
gcfCodeGlobal[opts.functionName],
opts.topic,
opts.subscription
)
)
.command(
'storage <functionName> <bucket> <topic> <subscription>',
'Storage-triggered-function shim',
{},
opts =>
storageShim(
gcfCodeGlobal[opts.functionName],
opts.bucket,
opts.topic,
opts.subscription
)
)
.wrap(120)
.help()
.strict().argv;