mirror of
https://github.com/serverless/serverless.git
synced 2025-12-08 19:46:03 +00:00
130 lines
3.7 KiB
JavaScript
130 lines
3.7 KiB
JavaScript
'use strict';
|
|
|
|
const path = require('path');
|
|
const validate = require('./lib/validate');
|
|
const stdin = require('get-stdin');
|
|
const formatLambdaLogEvent = require('./utils/format-lambda-log-event');
|
|
const ServerlessError = require('../../serverless-error');
|
|
const { writeText, style } = require('@serverless/utils/log');
|
|
|
|
class AwsInvoke {
|
|
constructor(serverless, options) {
|
|
this.serverless = serverless;
|
|
this.options = options || {};
|
|
this.provider = this.serverless.getProvider('aws');
|
|
|
|
Object.assign(this, validate);
|
|
|
|
this.hooks = {
|
|
'invoke:invoke': async () => {
|
|
await this.extendedValidate();
|
|
this.log(await this.invoke());
|
|
},
|
|
};
|
|
}
|
|
|
|
async validateFile(key) {
|
|
const absolutePath = path.resolve(this.serverless.serviceDir, this.options[key]);
|
|
try {
|
|
return await this.serverless.utils.readFile(absolutePath);
|
|
} catch (err) {
|
|
if (err.code === 'ENOENT') {
|
|
throw new ServerlessError('The file you provided does not exist.', 'FILE_NOT_FOUND');
|
|
}
|
|
throw err;
|
|
}
|
|
}
|
|
|
|
async extendedValidate() {
|
|
this.validate();
|
|
// validate function exists in service
|
|
this.options.functionObj = this.serverless.service.getFunction(this.options.function);
|
|
this.options.data = this.options.data || '';
|
|
|
|
if (!this.options.data) {
|
|
if (this.options.path) {
|
|
this.options.data = await this.validateFile('path');
|
|
} else {
|
|
try {
|
|
this.options.data = await stdin();
|
|
} catch {
|
|
// continue if no stdin was provided
|
|
}
|
|
}
|
|
}
|
|
|
|
if (!this.options.context && this.options.contextPath) {
|
|
this.options.context = await this.validateFile('contextPath');
|
|
}
|
|
|
|
try {
|
|
if (!this.options.raw) {
|
|
this.options.data = JSON.parse(this.options.data);
|
|
}
|
|
} catch (exception) {
|
|
// do nothing if it's a simple string or object already
|
|
}
|
|
|
|
try {
|
|
if (!this.options.raw && this.options.context) {
|
|
this.options.context = JSON.parse(this.options.context);
|
|
}
|
|
} catch (exception) {
|
|
// do nothing if it's a simple string or object already
|
|
}
|
|
}
|
|
|
|
async invoke() {
|
|
const invocationType = this.options.type || 'RequestResponse';
|
|
if (invocationType !== 'RequestResponse') {
|
|
this.options.log = 'None';
|
|
} else {
|
|
this.options.log = this.options.log ? 'Tail' : 'None';
|
|
}
|
|
|
|
const params = {
|
|
FunctionName: this.options.functionObj.name,
|
|
InvocationType: invocationType,
|
|
LogType: this.options.log,
|
|
Payload: Buffer.from(JSON.stringify(this.options.data || {})),
|
|
};
|
|
|
|
if (this.options.context) {
|
|
params.ClientContext = Buffer.from(JSON.stringify(this.options.context)).toString('base64');
|
|
}
|
|
|
|
if (this.options.qualifier) {
|
|
params.Qualifier = this.options.qualifier;
|
|
}
|
|
|
|
return this.provider.request('Lambda', 'invoke', params);
|
|
}
|
|
|
|
log(invocationReply) {
|
|
if (invocationReply.Payload) {
|
|
const response = JSON.parse(invocationReply.Payload);
|
|
|
|
writeText(JSON.stringify(response, null, 4));
|
|
}
|
|
|
|
if (invocationReply.LogResult) {
|
|
writeText(
|
|
style.aside('--------------------------------------------------------------------')
|
|
);
|
|
const logResult = Buffer.from(invocationReply.LogResult, 'base64').toString();
|
|
logResult.split('\n').forEach((line) => {
|
|
if (line.includes('SERVERLESS_ENTERPRISE') || line.startsWith('END')) {
|
|
return;
|
|
}
|
|
writeText(formatLambdaLogEvent(line));
|
|
});
|
|
}
|
|
|
|
if (invocationReply.FunctionError) {
|
|
throw new ServerlessError('Invoked function failed', 'AWS_LAMBDA_INVOCATION_FAILED');
|
|
}
|
|
}
|
|
}
|
|
|
|
module.exports = AwsInvoke;
|