-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.js
62 lines (59 loc) · 1.46 KB
/
index.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
/*
L114 compiler service.
@flow weak
*/
const path = require('path');
const compiler = require('./lib/compile.js');
const {
AuthError,
createCloudFunction,
createLambda,
createValidateToken,
} = require('@graffiticode/graffiticode-compiler-framework');
function isError(err) {
if (err instanceof Error) {
return true;
}
if (Array.isArray(err) && err.length > 0) {
return true;
}
return false;
}
function setBuildsMetadata(data, build) {
if (!data._) {
data._ = {};
}
if (!data._.builds) {
data._.builds = [];
}
data._.builds.push(build);
}
const build = require('./build.json');
const langID = 114;
const language = `L${langID}`;
const validateToken = createValidateToken({ lang: language });
const compilerDefinition = {
language,
compile: (code, data, config) => {
return new Promise((resolve, reject) => {
compiler.compile(code, data, (err, val) => {
if (isError(err)) {
reject(err);
} else {
setBuildsMetadata(val, build);
resolve(val);
}
});
});
},
auth: async (token) => {
const res = await validateToken(token);
if (res.access.indexOf('compile') === -1) {
throw new AuthError('User does not have compile access');
}
},
assetPath: path.join(__dirname, 'pub'),
};
exports.compiler = compilerDefinition;
exports.lambdaHandler = createLambda(compilerDefinition);
exports.cloudFunctionHandler = createCloudFunction(compilerDefinition);