A package for Cloudflare Workers that validates AWS SNS requests. The request body is parsed and the signature is verified. If the signature is valid, the payload is returned. If the signature is invalid, an error is thrown.
npm install sns-cloudflare-validator
Please note: This package is intended to be used with Cloudflare Workers. To validate AWS SNS requests in Node.js, please use sns-payload-validator
import { Validator } from 'sns-cloudflare-validator';
export default {
async fetch(request) {
try {
const validator = new Validator();
const payload = await validator.validate(request);
return new Response(JSON.stringify(payload), {
status: 200,
headers: {
'Content-Type': 'application/json'
}
});
}
catch (error) {
return new Response(error.message, {
status: 400,
headers: {
'Content-Type': 'text/plain'
}
});
}
}
};
There are four setting that can be passed to the constructor:
autoSubscribe
- A message type ofSubscriptionConfirmation
automatically subscribes the endpoint to the topic after validation, defaulttrue
.autoResubscribe
- A message type ofUnsubscribeConfirmation
automatically resubscribes the endpoint to the topic after validation, defaulttrue
.useCache
- The plugin uses a cache to store the certificate for each topic. This is enabled by default, but can be disabled if you don't want to use the cache. If disabled, the certificate will be fetched from the SNS service for each request.maxCerts
- The maximum number of certificates to store in the cache. This is only used ifuseCache
is enabled. The default is5000
.
All settings can be passed to the constructor as an object:
const validator = new Validator({
autoSubscribe: false,
autoResubscribe: false,
useCache: false,
maxCerts: 100
});
The returned payload will have the following properties:
Type
- The message type:Notification
,SubscriptionConfirmation
orUnsubscribeConfirmation
.MessageId
- A uuid provided by the SNS service for each message.Token
- The token that must be passed to theSubscribeURL
to confirm the subscription when the message type isSubscriptionConfirmation
orUnsubscribeConfirmation
.TopicArn
- The ARN of the topic the message was sent from.Subject
- The subject of the message when the message type isNotification
. This is not present if a Subject was not provided when the message was published.Message
- The message body when the message type isNotification
.Timestamp
- The time the message was sent.SignatureVersion
- The version of the signature algorithm used to sign the message. Defaults to1
, can also be2
.Signature
- The signature of the message used to verify the message integrity.SigningCertURL
- The URL of the certificate used to sign the message.SubscribeURL
- The URL used to subscribe the route when the message type isSubscriptionConfirmation
orUnsubscribeConfirmation
.UnsubscribeURL
- The URL used to unsubscribe the route when the message type isNotification
.