]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blame - server/helpers/custom-jsonld-signature.ts
Misc cleanup
[github/Chocobozzz/PeerTube.git] / server / helpers / custom-jsonld-signature.ts
CommitLineData
9a27cdc2
C
1import * as AsyncLRU from 'async-lru'
2import * as jsonld from 'jsonld'
3import * as jsig from 'jsonld-signatures'
4
5jsig.use('jsonld', jsonld)
6
7const nodeDocumentLoader = jsonld.documentLoaders.node()
8
9const lru = new AsyncLRU({
10 max: 10,
11 load: (key, cb) => {
12 nodeDocumentLoader(key, cb)
13 }
14})
15
16jsonld.documentLoader = (url, cb) => {
17 lru.get(url, cb)
18}
19
20export { jsig }