-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsupport-controller.js
More file actions
255 lines (237 loc) · 7.39 KB
/
Copy pathsupport-controller.js
File metadata and controls
255 lines (237 loc) · 7.39 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
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
const ConfirmedError = require("shared/error");
const Logger = require("shared/logger");
// Middleware
const authenticate = require("../middleware/authenticate.js");
const { body } = require("express-validator/check");
const validateCheck = require("../middleware/validate-check.js");
// Utilities
const { Secure } = require("shared/utilities");
const { Email } = require("shared/utilities");
const { Stripe } = require("shared/utilities");
const rp = require("request-promise");
const aws = require("aws-sdk");
const cloudwatchlogs = new aws.CloudWatchLogs();
// Models
const { SupportUser } = require("shared/models");
const { User } = require("shared/models");
const ENVIRONMENT = process.env.ENVIRONMENT;
const EMAIL_SALT = process.env.EMAIL_SALT;
// Routes
const router = require("express").Router();
/*********************************************
*
* Support Page
*
*********************************************/
router.get("/support",
authenticate,
(request, response, next) => {
response.render("support");
});
/*********************************************
*
* Get Information
*
*********************************************/
router.post("/get-subscriptions-with-email",
[
authenticate,
body("email")
.not().isEmpty().withMessage("Missing email address.")
.isEmail().withMessage("Invalid email address.")
.normalizeEmail({
gmail_remove_dots: false
}),
body("reason")
.not().isEmpty().withMessage("A reason for this request is required."),
validateCheck
],
(request, response, next) => {
var email = request.values.email;
var reason = request.values.reason;
return Email.sendAuditAlert(email, "Look up user's subscriptions.", reason)
.then( success => {
return User.getWithEmail(email, "id");
})
.then(user => {
return user.getSubscriptions();
})
.then(subscriptions => {
subscriptions.forEach(function(v){ delete v.receiptDataEncrypted });
response.status(200).json({
subscriptions: JSON.stringify(subscriptions, null, 2)
});
})
.catch(error => { next(error); });
});
router.post("/get-user-with-email",
[
authenticate,
body("email")
.not().isEmpty().withMessage("Missing email address.")
.isEmail().withMessage("Invalid email address.")
.normalizeEmail({
gmail_remove_dots: false
}),
body("reason")
.not().isEmpty().withMessage("A reason for this request is required."),
validateCheck
],
(request, response, next) => {
var email = request.values.email;
var reason = request.values.reason;
return Email.sendAuditAlert(email, "Look up user's basic registration information.", reason)
.then( success => {
return User.getWithEmail(email, "id, stripe_id, create_date, referred_by, delete_date, delete_reason, banned, month_usage_megabytes, month_usage_update, email_confirmed, do_not_email", true);
})
.then(user => {
response.status(200).json({
subscriptions: JSON.stringify(user, null, 2)
});
})
.catch(error => { next(error); });
});
router.post("/get-hashed-email",
[
authenticate,
body("email")
.not().isEmpty().withMessage("Missing email address.")
.isEmail().withMessage("Invalid email address.")
.normalizeEmail({
gmail_remove_dots: false
}),
body("reason")
.not().isEmpty().withMessage("A reason for this request is required."),
validateCheck
],
(request, response, next) => {
var email = request.values.email;
var reason = request.values.reason;
// Check that we do have this email in the database
return User.getWithEmail(email, "id")
.then(user => {
// Send email alert to user
return Email.sendAuditAlert(email, "Look up user hashed email.", reason);
})
.then(success => {
// Return hashed email to support
var hashedEmail = Secure.hashEmail(email, EMAIL_SALT);
response.status(200).json({
hashedEmail: hashedEmail
});
})
.catch(error => { next(error); });
});
router.post("/get-email-with-stripe-id",
[
authenticate,
body("stripeId")
.not().isEmpty().withMessage("Missing stripeId."),
body("reason")
.not().isEmpty().withMessage("A reason for this request is required."),
validateCheck
],
(request, response, next) => {
var stripeId = request.values.stripeId;
var reason = request.values.reason;
// Check that we do have this Stripe ID in the database
return User.getWithStripeId(stripeId, "id, email, email_encrypted")
.then(user => {
// Send email alert to user
return Email.sendAuditAlert(user.email, "Look up user email using Stripe ID.", reason)
.then(success => {
// Return email
response.status(200).json({
email: user.email
});
});
})
.catch(error => { next(error); });
});
router.post("/get-email-with-user-id",
[
authenticate,
body("userId")
.not().isEmpty().withMessage("Missing userId."),
body("reason")
.not().isEmpty().withMessage("A reason for this request is required."),
validateCheck
],
(request, response, next) => {
var userId = request.values.userId;
var reason = request.values.reason;
return User.getWithId(userId, "id, email, email_encrypted", true)
.then(user => {
return Email.sendAuditAlert(user.email, "Look up user email using User ID.", reason);
})
.then(success => {
response.status(200).json({
email: user.email
});
})
.catch(error => { next(error); });
});
router.post("/get-stripe-id-with-email",
[
authenticate,
body("email")
.not().isEmpty().withMessage("Missing email address.")
.isEmail().withMessage("Invalid email address.")
.normalizeEmail({
gmail_remove_dots: false
}),
body("reason")
.not().isEmpty().withMessage("A reason for this request is required."),
validateCheck
],
(request, response, next) => {
var email = request.values.email;
var reason = request.values.reason;
// Check that we do have this email in the database
return User.getWithEmail(email, "id, stripe_id")
.then(user => {
// Send email alert to user
return Email.sendAuditAlert(email, "Look up user Stripe ID using email.", reason)
.then(success => {
// Return Stripe ID to support
response.status(200).json({
stripeId: user.stripeId
});
});
})
.catch(error => { next(error); });
});
/*********************************************
*
* Change Password
*
*********************************************/
router.get("/change-password",
authenticate,
(request, response, next) => {
response.render("change-password");
});
router.post(["/changePassword", "/change-password"],
[
authenticate,
body("currentPassword")
.not().isEmpty().withMessage("Missing current password.")
.custom((value, {req, location, path}) => {
return req.user.assertPassword(value);
}).withMessage("Current password is incorrect."),
body("newPassword")
.exists().withMessage("Missing new password.")
.not().isEmpty().withMessage("Missing new password.")
.isLength({ min: 8, max: 50 }).withMessage("New password must be at least 8 characters long."),
validateCheck
],
(request, response, next) => {
const currentPassword = request.values.currentPassword;
const newPassword = request.values.newPassword;
return request.user.changePassword(currentPassword, newPassword)
.then( success => {
request.flashRedirect("success", "Password changed successfully.", "/support");
})
.catch(error => { next(error); });
});
module.exports = router;