-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
85 lines (73 loc) · 3.2 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
'use strict';
const {access} = require('node:fs/promises');
const {constants} = require('node:fs');
const path = require('node:path');
const SlsHelper = require('./lib/slsHelper.js');
class StencilPlugin {
constructor(serverless, cliOptions, logUtils) {
const stcModules = require('find-plugins')({
scanAllDirs: true,
dir: path.join(require('node:process').cwd(), 'node_modules'),
includeDev: true,
filter: dep => dep.pkg['@walery/serverless-plugin-stencil']?.alias, // TODO replace by current package name
});
const stcModulePaths = stcModules.reduce((acc, currValue) => {
// TODO check if alias is already in use
acc[currValue.pkg['@walery/serverless-plugin-stencil'].alias] = currValue.dir;
return acc;
}, []);
const slsHelper = new SlsHelper(serverless);
const isFileAccessible = async filename => {
try {
await access(filename, constants.R_OK);
return true;
} catch {
return false;
}
};
this.configurationVariablesSources = {
stencil: {
async resolve(variableUtils) {
const {params, serviceDir, address, resolveVariable} = variableUtils;
if (params.length !== 1) {
throw new serverless.classes.Error(`Please pass exactly one parameter to stencil call. Found ${params.length}: '${params}'.`);
}
const stencilAlias = params[0];
const blockName = address;
if (blockName === null) {
throw new serverless.classes.Error('You must provide block name for stencil alias.');
}
const absoluteModulePath = stcModulePaths[stencilAlias];
if (absoluteModulePath === undefined) {
throw new serverless.classes.Error(`Stencil alias with name '${stencilAlias}' not found.`);
}
const stencilPath = path.relative(serviceDir, absoluteModulePath);
const commonBlockFile = path.join('.', stencilPath, 'blocks', `${blockName}`);
const isYmlBlock = await isFileAccessible(`${commonBlockFile}.yml`);
const isYamlBlock = await isFileAccessible(`${commonBlockFile}.yaml`);
const isJsBlock = await isFileAccessible(`${commonBlockFile}.js`);
// TODO handle case that more than one block is true
let resolvedBlock = null;
if (isYmlBlock) {
resolvedBlock = await resolveVariable(`file(${commonBlockFile}.yml)`);
}
if (isYamlBlock) {
resolvedBlock = await resolveVariable(`file(${commonBlockFile}.yaml)`);
}
if (isJsBlock) {
const requirePath = path.relative(path.join(serviceDir, 'node_modules'), absoluteModulePath);
const jsBlockResolver = require(path.join('.', requirePath, 'blocks', `${blockName}.js`));
resolvedBlock = await jsBlockResolver.resolve({serverless, variableUtils, slsHelper, cliOptions, logUtils});
}
if (resolvedBlock === null) {
throw new serverless.class.Error(`Block with name '${blockName}' not found for '${stencilAlias}' stencil alias.`);
}
return {
value: resolvedBlock,
};
},
},
};
}
}
module.exports = StencilPlugin;