serverless/lib/plugins/aws/deploy/lib/extendedValidate.js

98 lines
3.9 KiB
JavaScript

'use strict';
const path = require('path');
const _ = require('lodash');
const findReferences = require('../../utils/findReferences');
const ServerlessError = require('../../../../serverless-error');
module.exports = {
extendedValidate() {
// Restore state
const serviceStateFileName = this.provider.naming.getServiceStateFileName();
const serviceStateFilePath = path.join(
this.serverless.serviceDir,
'.serverless',
serviceStateFileName
);
if (!this.serverless.utils.fileExistsSync(serviceStateFilePath)) {
throw new ServerlessError(
`No ${serviceStateFileName} file found in the package path you provided.`,
'MISSING_SERVICE_STATE_FILE'
);
}
const state = this.serverless.utils.readFileSync(serviceStateFilePath);
const selfReferences = findReferences(state.service, '${self:}');
selfReferences.forEach((ref) => _.set(state.service, ref, this.serverless.service));
Object.assign(this.serverless.service, state.service);
this.serverless.service.package.artifactDirectoryName = state.package.artifactDirectoryName;
// only restore the default artifact path if the user is not using a custom path
if (state.package.artifact && this.serverless.service.artifact) {
this.serverless.service.package.artifact = path.join(
this.serverless.serviceDir,
'.serverless',
state.package.artifact
);
}
// Check function's attached to API Gateway timeout
if (Object.keys(this.serverless.service.functions).length) {
this.serverless.service.getAllFunctions().forEach((functionName) => {
const functionObject = this.serverless.service.getFunction(functionName);
// Check if function timeout is greater than API Gateway timeout
if (functionObject.timeout > 30 && functionObject.events) {
functionObject.events.forEach((event) => {
if (Object.keys(event)[0] === 'http' && !event.http.async) {
const warnMessage = [
`WARNING: Function ${functionName} has timeout of ${functionObject.timeout} `,
"seconds, however, it's attached to API Gateway so it's automatically ",
'limited to 30 seconds.',
].join('');
this.serverless.cli.log(warnMessage);
}
});
}
});
}
if (Object.keys(this.serverless.service.functions).length) {
this.serverless.service.getAllFunctions().forEach((functionName) => {
const functionObject = this.serverless.service.getFunction(functionName);
if (functionObject.image) return;
const individually =
_.get(functionObject, 'package.individually') ||
this.serverless.service.package.individually;
// By default assume service-level package
let artifactFileName = this.provider.naming.getServiceArtifactName();
let artifactFilePath = path.join(this.packagePath, artifactFileName);
if (individually) {
// Use function-level generated artifact
artifactFileName = this.provider.naming.getFunctionArtifactName(functionName);
artifactFilePath = path.join(this.packagePath, artifactFileName);
if (_.get(functionObject, 'package.artifact')) {
// Use function-level artifact
artifactFilePath = functionObject.package.artifact;
artifactFileName = path.basename(artifactFilePath);
}
} else if (this.serverless.service.package.artifact) {
// Use service-level artifact
artifactFileName = artifactFilePath = this.serverless.service.package.artifact;
}
if (!this.serverless.utils.fileExistsSync(artifactFilePath)) {
throw new ServerlessError(
`No ${artifactFileName} file found in the package path you provided.`,
'MISSING_ARTIFACT_FILE'
);
}
});
}
},
};