-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.js
227 lines (194 loc) · 4.78 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
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
'use strict'
const http = require('http')
const querystring = require('querystring')
const util = require('util')
const { WaitGroup } = require('./sync-wait-group')
/** @typedef {{
id: string;
body: Record<string, string>;
}} EmailInfo
*/
/** @typedef {{
(err?: Error): void
}} Callback
*/
class FakeSESServer {
/**
* @param {{ port?: number }} options
*/
constructor (options = {}) {
/** @type {EmailInfo[]} */
this.emails = []
/** @type {http.Server | null} */
this.httpServer = http.createServer()
/** @type {number} */
this.port = options.port || 0
/** @type {string | null} */
this.hostPort = null
/** @type {number} */
this.emailCount = 0
/** @type {(WaitGroup | null)[]} */
this.waiters = []
}
/** @returns {Promise<string>} */
async bootstrap () {
if (!this.httpServer) {
throw new Error('cannot bootstrap closed server')
}
this.httpServer.on('request', (req, res) => {
this.handleServerRequest(req, res)
})
const server = this.httpServer
await util.promisify((cb) => {
server.listen(this.port, cb)
})()
const addr = this.httpServer.address()
if (!addr || typeof addr === 'string') {
throw new Error('invalid http server address')
}
this.hostPort = `localhost:${addr.port}`
return this.hostPort
}
/** @returns {Promise<void>} */
async close () {
if (this.httpServer === null) {
return
}
const server = this.httpServer
await util.promisify((cb) => {
server.close(cb)
})()
this.httpServer = null
}
/** @returns {EmailInfo[]} */
getEmails () {
return this.emails.slice()
}
/**
* @param {number} count
* @returns {Promise<void>}
*/
async waitForEmails (count) {
if (this.emailCount >= count) {
return
}
const maybeWaiter = this.waiters[count]
if (maybeWaiter) {
return maybeWaiter.wait()
}
const w = this.waiters[count] = new WaitGroup()
w.add(1)
return w.wait()
}
/**
* @param {http.IncomingMessage} req
* @param {http.ServerResponse} res
* @returns {void}
*/
handleServerRequest (req, res) {
let body = ''
req.on('data', (chunk) => {
body += chunk.toString()
})
req.on('end', () => {
const params = /** @type {Record<string, string>} */ (
querystring.parse(body)
)
const xml = this.handleMessage(params.Action, params)
if (!xml) {
res.statusCode = 404
res.end('Not Found')
}
res.writeHead(200, { 'Content-Type': 'text/xml' })
res.end(xml)
})
}
/**
* @param {string} action
* @param {Record<string, string>} params
* @returns {null | string}
*/
handleMessage (action, params) {
switch (action) {
case 'SendEmail':
return this.handleEmail(params)
case 'SendRawEmail':
return this.handleRawEmail(params)
default:
return null
}
}
/**
* @param {Record<string, string>} params
* @returns {string}
*/
handleEmail (params) {
if (!params.Source ||
!params['Message.Subject.Data'] ||
!(
params['Message.Body.Html.Data'] ||
params['Message.Body.Text.Data']
) ||
!params['Destination.ToAddresses.member.1']
) {
return `<Error>
<Code>MessageRejected</Code>
<Message>Missing required params</Message>
</Error>`
}
const id = cuuid()
this.emails.push({
id,
body: params
})
this.emailCount++
this.checkWaiters()
return `<SendEmailResponse>
<SendEmailResult>
<MessageId>${id}</MessageId>
</SendEmailResult>
</SendEmailResponse>`
}
/**
* @param {Record<string, string>} params
* @returns {string}
*/
handleRawEmail (params) {
if (!params['RawMessage.Data']) {
return `<Error>
<Code>MessageRejected</Code>
<Message>Missing required params</Message>
</Error>`
}
const id = cuuid()
this.emails.push({
id,
body: params
})
this.emailCount++
this.checkWaiters()
return `<SendRawEmailResponse>
<SendRawEmailResult>
<MessageId>${id}</MessageId>
</SendRawEmailResult>
</SendRawEmailResponse>`
}
/** @returns {void} */
checkWaiters () {
const w = this.waiters[this.emailCount]
if (w) {
this.waiters[this.emailCount] = null
w.done()
}
}
}
exports.FakeSESServer = FakeSESServer
/** @returns {string} */
function cuuid () {
const str = (
Date.now().toString(16) + Math.random().toString(16).slice(2) +
Math.random().toString(16).slice(2) + Math.random().toString(16).slice(2)
).slice(0, 32)
return str.slice(0, 8) + '-' + str.slice(8, 12) + '-' +
str.slice(12, 16) + '-' + str.slice(16, 20) + '-' + str.slice(20)
}