Please note that this is an SDK for webhooks integration, and not the FormSG system.
This SDK provides convenient utilities for verifying FormSG webhooks and decrypting submissions in JavaScript and Node.js.
Install the package with
npm install @opengovsg/formsg-sdk --save
const formsg = require('@opengovsg/formsg-sdk')({
mode: 'production',
})
Option | Default | Description |
---|---|---|
mode | 'production' | Set to 'staging' if integrating against FormSG staging servers. |
// This example uses Express to receive webhooks
const express = require('express')
const app = express()
// Instantiating formsg-sdk without parameters default to using the package's
// production public signing key.
const formsg = require('@opengovsg/formsg-sdk')()
// This is where your domain is hosted, and should match
// the URI supplied to FormSG in the form dashboard
const POST_URI = 'https://my-domain.com/submissions'
// Your form's secret key downloaded from FormSG upon form creation
const formSecretKey = process.env.FORM_SECRET_KEY
app.post(
'/submissions',
// Endpoint authentication by verifying signatures
function (req, res, next) {
try {
formsg.webhooks.authenticate(req.get('X-FormSG-Signature'), POST_URI)
// Continue processing the POST body
return next()
} catch (e) {
return res.status(401).send({ message: 'Unauthorized' })
}
},
// Parse JSON from raw request body
express.json(),
// Decrypt the submission
function (req, res, next) {
// `req.body.data` is an object fulfilling the DecryptParams interface.
// interface DecryptParams {
// encryptedContent: EncryptedContent
// version: number
// verifiedContent?: EncryptedContent
// }
/** @type {{responses: FormField[], verified?: Record<string, any>}} */
const submission = formsg.crypto.decrypt(
formSecretKey,
// If `verifiedContent` is provided in `req.body.data`, the return object
// will include a verified key.
req.body.data
)
// If the decryption failed, submission will be `null`.
if (submission) {
// Continue processing the submission
} else {
// Could not decrypt the submission
}
}
)
app.listen(8080, () => console.log('Running on port 8080'))
FormSG uses end-to-end encryption with elliptic curve cryptography to protect submission data and ensure only intended recipients are able to view form submissions. As such, FormSG servers are unable to access the data.
The underlying cryptosystem is x25519-xsalsa20-poly1305
which is implemented by the tweetnacl-js library. Its source code has been audited) by Cure53.
Key | Type | Description |
---|---|---|
formId | string | Unique form identifier. |
submissionId | string | Unique submission identifier. |
encryptedContent | string | The encrypted submission in base64. |
created | string | Creation timestamp. |
formsg.crypto.decrypt(formSecretKey: string, decryptParams: DecryptParams)
takes in decryptParams
as the second argument, and returns an an object with
the shape
{ responses: FormField[] verified?: Record<string, any> }
encryptedContent: EncryptedContent version: number verifiedContent?: EncryptedContent
The decryptParams.encryptedContent
field decrypts into an array of FormField
objects, which will be assigned to the responses
key of the returned object.
Furthermore, if decryptParams.verifiedContent
exists, the function will
decrypt and open the signed decrypted content with the package's own
signingPublicKey
in
signing-keys.ts
.
The resulting decrypted verifiedContent will be assigned to the verified
key
of the returned object.
NOTE
If any errors occur, either from the failure to decrypt eitherencryptedContent
orverifiedContent
, or the failure to authenticate the decrypted signed message inverifiedContent
,null
will be returned.
Note that due to end-to-end encryption, FormSG servers are unable to verify the data format.
However, the decrypt
function exposed by this library validates the decrypted content and will return null
if the
decrypted content does not fit the schema displayed below.
Key | Type | Description |
---|---|---|
question | string | The question listed on the form |
answer | string | The submitter's answer to the question on form. Either this key or answerArray must exist. |
answerArray | string[] | The submitter's answer to the question on form. Either this key or answer must exist. |
fieldType | string | The type of field for the question. |
_id | string | A unique identifier of the form field. WARNING: Changes when new fields are created/removed in the form. |
The full schema can be viewed in
validate.ts
.
If the decrypted content is the correct shape, then:
- the decrypted content (from
decryptParams.encryptedContent
) will be set as the value of theresponses
key. - if
decryptParams.verifiedContent
exists, then an attempt to decrypted the verified content will be called, and the result set as the value ofverified
key. There is no shape validation for the decrypted verified content. If the verification fails,null
is returned, even ifdecryptParams.encryptedContent
was successfully decrypted.
You can use the following information to create a custom solution, although we recommend using this SDK.
The X-FormSG-Signature
header contains the following information:
- Epoch timestamp prefixed by
t=
- The FormSG submission ID prefixed by
s=
- The FormSG form ID, prefixed by
f=
- The signature scheme, prefixed by
v1=
. Currently this is the only signature scheme.
X-FormSG-Signature: t=1582558358788,
s=5e53ec96b10ee1010e00380b,
f=5e4b8e3d1f61f00036c9937d,
v1=rUAgQ9krNZspCrQtfSvRfjME6Nq4+I80apGXnCsNrwPbcq44SBNglWtA1MkpC/VhWtDeJfuV89uV2Aqi42UQBA==
Note that newlines have been added for clarity, but a real signature will be all in one line.
Extract the the timestamp, signature, submission ID and form ID from the header, by using the ,
character as
a separator to get a list of elements, before splitting each element to get a key-value pair.
This is achieved by concatenating the following strings with the .
fullstop as the delimiter.
- The href of the URI
- The submission ID
- The form ID
- The epoch timestamp
https://my-domain.com/submissions.5e53ec96b10ee1010e00380b.5e4b8e3d1f61f00036c9937d.1582558358788
The signature is signed with ed25519.
Verify that the v1
signature is valid using a library of your choice (we use tweetnacl-js).
FormSG environment | Public Key in base64 |
---|---|
production | '3Tt8VduXsjjd4IrpdCd7BAkdZl/vUCstu9UvTX84FWw=' |
staging | 'rjv41kYqZwcbe3r6ymMEEKQ+Vd+DPuogN+Gzq3lP2Og=' |
If the signature is valid, compute the difference between the current timestamp and the received epoch, and decide if the difference is within your tolerance. We use a tolerance of 5 minutes.
- Check that request is for an expected form by verifying the form ID
- Check that the submission ID is new, and that your system has not received it before