mirror of
https://github.com/serverless/serverless.git
synced 2026-01-18 14:58:43 +00:00
189 lines
7.5 KiB
JavaScript
189 lines
7.5 KiB
JavaScript
'use strict';
|
|
|
|
const BbPromise = require('bluebird');
|
|
const wait = require('timers-ext/promise/sleep');
|
|
const ServerlessError = require('../../../serverless-error');
|
|
const { log, style, progress } = require('@serverless/utils/log');
|
|
const getMonitoringFrequency = require('../utils/get-monitoring-frequency');
|
|
|
|
const mainProgress = progress.get('main');
|
|
const validStatuses = new Set(['CREATE_COMPLETE', 'UPDATE_COMPLETE', 'DELETE_COMPLETE']);
|
|
|
|
const normalizerPattern = /(?<!^)([A-Z])/g;
|
|
const resourceTypePattern = /^(?<domain>[^:]+)::(?<service>[^:]+)(?:::(?<method>.+))?$/;
|
|
const resourceTypeToErrorCodePostfix = (resourceType) => {
|
|
const { domain, service, method } = resourceType.match(resourceTypePattern).groups;
|
|
if (domain !== 'AWS') return `_${domain.replace(normalizerPattern, '_$1').toUpperCase()}`;
|
|
return `_${service.replace(normalizerPattern, '_$1')}_${method.replace(
|
|
normalizerPattern,
|
|
'_$1'
|
|
)}`.toUpperCase();
|
|
};
|
|
|
|
module.exports = {
|
|
async checkStackProgress(
|
|
action,
|
|
cfData,
|
|
stackUrl,
|
|
options,
|
|
{
|
|
loggedEventIds = new Set(),
|
|
stackStatus = null,
|
|
stackLatestError = null,
|
|
firstEventId = null,
|
|
completedResources = new Set(),
|
|
}
|
|
) {
|
|
return wait(getMonitoringFrequency(options.frequency))
|
|
.then(() =>
|
|
this.provider
|
|
.request('CloudFormation', 'describeStackEvents', { StackName: cfData.StackId })
|
|
.then(
|
|
({ StackEvents: stackEvents }) => {
|
|
if (!stackEvents.length) return;
|
|
|
|
// Resolve only events applicable to current deployment
|
|
stackEvents.some((event, index) => {
|
|
if (firstEventId) {
|
|
if (event.EventId !== firstEventId) return false;
|
|
} else {
|
|
if (event.ResourceType !== 'AWS::CloudFormation::Stack') return false;
|
|
if (event.ResourceStatus !== `${action.toUpperCase()}_IN_PROGRESS`) return false;
|
|
firstEventId = event.EventId;
|
|
}
|
|
stackEvents = stackEvents.slice(0, index + 1);
|
|
return true;
|
|
});
|
|
stackEvents.reverse();
|
|
|
|
// Loop through stack events
|
|
stackEvents.forEach((event) => {
|
|
if (loggedEventIds.has(event.EventId)) return;
|
|
const eventStatus = event.ResourceStatus || null;
|
|
// Keep track of stack status
|
|
if (
|
|
event.ResourceType === 'AWS::CloudFormation::Stack' &&
|
|
event.StackName === event.LogicalResourceId
|
|
) {
|
|
stackStatus = eventStatus;
|
|
}
|
|
// Keep track of first failed event
|
|
if (
|
|
eventStatus &&
|
|
(eventStatus.endsWith('FAILED') ||
|
|
eventStatus === 'UPDATE_ROLLBACK_IN_PROGRESS') &&
|
|
stackLatestError === null
|
|
) {
|
|
stackLatestError = event;
|
|
}
|
|
// Log stack events
|
|
log.info(
|
|
style.aside(
|
|
` ${eventStatus} - ${event.ResourceType} - ${event.LogicalResourceId}`
|
|
)
|
|
);
|
|
|
|
if (
|
|
event.ResourceType !== 'AWS::CloudFormation::Stack' &&
|
|
eventStatus &&
|
|
eventStatus.endsWith('COMPLETE')
|
|
) {
|
|
completedResources.add(event.LogicalResourceId);
|
|
}
|
|
|
|
if (action !== 'delete' && cfData.Changes) {
|
|
const progressMessagePrefix = (() => {
|
|
if (action === 'create') return 'Creating';
|
|
if (action === 'update') return 'Updating';
|
|
throw new Error(`Unrecgonized action: ${action}`);
|
|
})();
|
|
mainProgress.notice(
|
|
`${progressMessagePrefix} CloudFormation stack (${completedResources.size}/${cfData.Changes.length})`
|
|
);
|
|
}
|
|
|
|
// Prepare for next monitoring action
|
|
loggedEventIds.add(event.EventId);
|
|
});
|
|
// Handle stack create/update/delete failures
|
|
if (
|
|
stackLatestError &&
|
|
(!this.options.verbose ||
|
|
(stackStatus &&
|
|
(stackStatus.endsWith('ROLLBACK_COMPLETE') ||
|
|
['DELETE_FAILED', 'DELETE_COMPLETE'].includes(stackStatus))))
|
|
) {
|
|
const decoratedErrorMessage = `${stackLatestError.ResourceStatus}: ${
|
|
stackLatestError.LogicalResourceId
|
|
} ${style.aside(`(${stackLatestError.ResourceType})`)}\n${
|
|
stackLatestError.ResourceStatusReason
|
|
}\n\n${style.aside(`View the full error: ${style.link(stackUrl)}`)}`;
|
|
|
|
let errorMessage = 'An error occurred: ';
|
|
errorMessage += `${stackLatestError.LogicalResourceId} - `;
|
|
errorMessage += `${
|
|
stackLatestError.ResourceStatusReason || stackLatestError.ResourceStatus
|
|
}.`;
|
|
const errorCode = (() => {
|
|
if (stackLatestError.ResourceStatusReason) {
|
|
if (
|
|
stackLatestError.ResourceStatusReason.startsWith(
|
|
'Properties validation failed'
|
|
)
|
|
) {
|
|
return `AWS_CLOUD_FORMATION_${action.toUpperCase()}_STACK_INTERNAL_VALIDATION_ERROR`;
|
|
}
|
|
if (
|
|
stackLatestError.ResourceStatusReason.includes('is not authorized to perform')
|
|
) {
|
|
return `AWS_CLOUD_FORMATION_${action.toUpperCase()}_STACK_INTERNAL_INSUFFICIENT_PERMISSIONS`;
|
|
}
|
|
}
|
|
return (
|
|
`AWS_CLOUD_FORMATION_${action.toUpperCase()}_STACK_INTERNAL` +
|
|
`${resourceTypeToErrorCodePostfix(stackLatestError.ResourceType)}_${
|
|
stackLatestError.ResourceStatus
|
|
}`
|
|
);
|
|
})();
|
|
throw new ServerlessError(errorMessage, errorCode, {
|
|
decoratedMessage: decoratedErrorMessage,
|
|
});
|
|
}
|
|
},
|
|
(e) => {
|
|
if (action === 'delete' && e.message.includes('does not exist')) {
|
|
stackStatus = 'DELETE_COMPLETE';
|
|
return;
|
|
}
|
|
throw e;
|
|
}
|
|
)
|
|
)
|
|
.then(() => {
|
|
if (validStatuses.has(stackStatus)) return stackStatus;
|
|
return this.checkStackProgress(action, cfData, stackUrl, options, {
|
|
loggedEventIds,
|
|
stackStatus,
|
|
stackLatestError,
|
|
firstEventId,
|
|
completedResources,
|
|
});
|
|
});
|
|
},
|
|
async monitorStack(action, cfData, options = {}) {
|
|
// Skip monitoring if stack was already created
|
|
if (cfData === 'alreadyCreated') return BbPromise.bind(this).then(BbPromise.resolve());
|
|
|
|
const region = this.provider.getRegion();
|
|
const baseCfUrl = `https://${region}.console.aws.amazon.com/cloudformation/home`;
|
|
const encodedStackId = `${encodeURIComponent(cfData.StackId)}`;
|
|
const cfQueryString = `region=${region}#/stack/detail?stackId=${encodedStackId}`;
|
|
const stackUrl = `${baseCfUrl}?${cfQueryString}`;
|
|
|
|
// Monitor stack creation/update/removal
|
|
|
|
return this.checkStackProgress(action, cfData, stackUrl, options, {});
|
|
},
|
|
};
|