forked from firebase/functions-samples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.js
69 lines (63 loc) · 2.74 KB
/
index.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
/**
* 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.
*/
'use strict';
const functions = require('firebase-functions');
const admin = require('firebase-admin');
admin.initializeApp();
const nodemailer = require('nodemailer');
// Configure the email transport using the default SMTP transport and a GMail account.
// For other types of transports such as Sendgrid see https://nodemailer.com/transports/
// TODO: Configure the `gmail.email` and `gmail.password` Google Cloud environment variables.
const gmailEmail = encodeURIComponent(functions.config().gmail.email);
const gmailPassword = encodeURIComponent(functions.config().gmail.password);
const mailTransport = nodemailer.createTransport(
`smtps://${gmailEmail}:${gmailPassword}@smtp.gmail.com`);
// TODO: Create yor own survey.
const LINK_TO_SURVEY = 'https://goo.gl/forms/IdurnOZ66h3FtlO33';
const LATEST_VERSION = '2.0';
/**
* After a user has updated the app. Send them a survey to compare the app with the old version.
*/
exports.sendAppUpdateSurvey = functions.analytics.event('app_update').onLog(async (event) => {
const uid = event.user.userId;
const appVerion = event.user.appInfo.appVersion;
// Check that the user has indeed upgraded to the latest version.
if (appVerion === LATEST_VERSION) {
// Fetch the email of the user. In this sample we assume that the app is using Firebase Auth and
// has set the Firebase Analytics User ID to be the same as the Firebase Auth uid using the
// setUserId API.
const user = await admin.auth().getUser(uid);
const email = user.email;
const name = user.displayName;
return sendSurveyEmail(email, name);
}
return null;
});
/**
* Sends an email pointing to the Upgraded App survey.
*/
async function sendSurveyEmail(email, name) {
const mailOptions = {
from: '"MyCoolApp" <[email protected]>',
to: email,
subject: 'How did you like our new app?',
text: `Hey ${name}, We've seen that you have upgraded to the new version of our app!
It would be awesome if you could tell us how you like it.
Fill out our survey: ${LINK_TO_SURVEY}`,
};
await mailTransport.sendMail(mailOptions);
console.log('Upgrade App Survey email sent to:', email);
}