mirror of
https://github.com/serverless/serverless.git
synced 2025-12-08 19:46:03 +00:00
80 lines
2.8 KiB
JavaScript
80 lines
2.8 KiB
JavaScript
'use strict';
|
|
|
|
const validate = require('../lib/validate');
|
|
const monitorStack = require('../lib/monitor-stack');
|
|
const checkIfBucketExists = require('../lib/check-if-bucket-exists');
|
|
const emptyS3Bucket = require('./lib/bucket');
|
|
const removeStack = require('./lib/stack');
|
|
const removeEcrRepository = require('./lib/ecr');
|
|
const checkIfEcrRepositoryExists = require('../lib/check-if-ecr-repository-exists');
|
|
const { log, style, progress } = require('@serverless/utils/log');
|
|
|
|
const mainProgress = progress.get('main');
|
|
|
|
class AwsRemove {
|
|
constructor(serverless, options) {
|
|
this.serverless = serverless;
|
|
this.options = options || {};
|
|
this.provider = this.serverless.getProvider('aws');
|
|
|
|
Object.assign(
|
|
this,
|
|
validate,
|
|
emptyS3Bucket,
|
|
removeStack,
|
|
monitorStack,
|
|
removeEcrRepository,
|
|
checkIfEcrRepositoryExists,
|
|
checkIfBucketExists
|
|
);
|
|
|
|
this.hooks = {
|
|
'initialize': async () => {
|
|
if (this.serverless.processedInput.commands.join(' ') === 'remove') {
|
|
log.notice(
|
|
`Removing ${this.serverless.service.service} from stage ${this.serverless
|
|
.getProvider('aws')
|
|
.getStage()} ${style.aside(`(${this.serverless.getProvider('aws').getRegion()})`)}`
|
|
);
|
|
log.info(); // Ensure gap between verbose logging
|
|
|
|
// This is used to ensure that for `remove` command, the `accountId` will be resolved and available
|
|
// for `generatePayload` telemetry logic
|
|
this.provider.getAccountId().then(
|
|
(accountId) => (this.provider.accountId = accountId),
|
|
() => {
|
|
/* pass on all errors */
|
|
}
|
|
);
|
|
}
|
|
},
|
|
'remove:remove': async () => {
|
|
const doesEcrRepositoryExistPromise = this.checkIfEcrRepositoryExists();
|
|
await this.validate();
|
|
mainProgress.notice('Removing objects from S3 bucket', { isMainEvent: true });
|
|
await this.emptyS3Bucket();
|
|
mainProgress.notice('Removing CloudFormation stack', { isMainEvent: true });
|
|
const cfData = await this.removeStack();
|
|
await this.monitorStack('delete', cfData);
|
|
if (await doesEcrRepositoryExistPromise) {
|
|
mainProgress.notice('Removing ECR repository', { isMainEvent: true });
|
|
await this.removeEcrRepository();
|
|
}
|
|
},
|
|
'finalize': async () => {
|
|
if (this.serverless.processedInput.commands.join(' ') !== 'remove') return;
|
|
log.notice();
|
|
log.notice.success(
|
|
`Service ${this.serverless.service.service} has been successfully removed ${style.aside(
|
|
`(${Math.floor(
|
|
(Date.now() - this.serverless.pluginManager.commandRunStartTime) / 1000
|
|
)}s)`
|
|
)}`
|
|
);
|
|
},
|
|
};
|
|
}
|
|
}
|
|
|
|
module.exports = AwsRemove;
|