-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathserver.js
72 lines (57 loc) · 1.73 KB
/
server.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
/* eslint-disable import/no-unresolved */
const express = require('express');
const { json } = require('express');
const express_static = require('express').static;
const UUID = require('uuid').v4;
const { config } = require('dotenv');
const { WebApi } = require('smile-identity-core');
/* eslint-enable import/no-unresolved */
config();
const SIDWebAPI = WebApi;
const app = express();
app.use(json({ limit: '500kb' }));
app.use(express_static('public'));
app.post('/', async (req, res) => {
try {
const { PARTNER_ID, API_KEY, SID_SERVER, CALLBACK_URL } = process.env;
const connection = new SIDWebAPI(
PARTNER_ID,
CALLBACK_URL, // change call back URL as desired
API_KEY,
SID_SERVER,
);
const getJobType = (images) => {
const hasIDImage =
images.filter((image) => image.image_type_id === 3).length > 0;
return hasIDImage ? 1 : 4;
};
const {
images,
partner_params: { libraryVersion },
} = req.body;
const partner_params_from_server = {
user_id: `user-${UUID()}`,
job_id: `job-${UUID()}`,
// job_type is the simplest job we have which enrolls a user using their selfie.
job_type: getJobType(images),
};
const options = {
return_job_status: true,
// signature: true
};
const partner_params = { ...partner_params_from_server, libraryVersion };
const result = await connection.submit_job(
partner_params,
images,
{},
options,
);
res.json(result);
} catch (e) {
console.error(e);
}
});
// NOTE: This can be used to process responses. Don't forget to add it as a
// callback option in the `connection` config on L22.
app.post('/callback');
app.listen(process.env.PORT || 4000);