This repository was archived by the owner on Nov 24, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.ts
57 lines (40 loc) · 1.88 KB
/
index.ts
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
import { FilterErrorResult, FilterPluginInterface, FilterResult } from 'shepherd-plugin-interfaces'
import AWS from 'aws-sdk'
import axios from 'axios'
/**
* Files to be classified arrive as arraybuffers from shepherd's internal Filter Host.
* It's up to you how you want to send them to your filter container, but this stub is where you do it.
* You could send them directly via http API call or pass them to an S3 Bucket. Whatever best suits your case.
*/
/* Naive API implementation. (Suitable for fast returning functions only) */
const checkFileAPI = async(buffer: Buffer, mimetype: string, txid: string): Promise<FilterResult | FilterErrorResult> => {
// how long will this take with shepherd waiting for this on the call stack? may not perform too well
const { data } = await axios.post('http://your-container/check', { buffer, mimetype, txid})
// just return true or false directly to shepherd (for another option see S3 example's return type)
return {
flagged: data.flaggedResult,
}
}
/* Potential S3 based implementation */
const s3 = new AWS.S3({ apiVersion: '2006-03-01' })
const bucketName = process.env.AWS_INPUT_BUCKET
const checkFileS3 = async(buffer: Buffer, mimetype: string, txid: string): Promise<FilterResult | FilterErrorResult> => {
// upload to your S3 bucket where your container could be triggered to find it
const res = await s3.upload({
Bucket: bucketName!,
Key: txid,
ContentType: mimetype,
Body: buffer,
}).promise()
// return a special 'noop' message, so that shepherd knows the file is being processed, but doesn't wait for the return.
return {
data_reason: 'noop',
flagged: undefined,
}
}
/* Here is the required shape of the export */
const NsfwjsPlugin: FilterPluginInterface = {
init: async()=>console.log('any initialisation could go here to be called early'),
checkImage: checkFileS3, // or checkFileAPI
}
export default NsfwjsPlugin;