Philipp Muens 48191fc3ed Move saving of bucket name into own method
So that it's more encapsulated and easier to test in isolation.
2016-08-24 11:37:19 +02:00

62 lines
1.8 KiB
JavaScript

'use strict';
const BbPromise = require('bluebird');
const validate = require('../lib/validate');
const createStack = require('./lib/createStack');
const mergeCustomProviderResources = require('./lib/mergeCustomProviderResources');
const generateArtifactDirectoryName = require('./lib/generateArtifactDirectoryName');
const setBucketName = require('./lib/setBucketName');
const cleanupS3Bucket = require('./lib/cleanupS3Bucket');
const uploadArtifacts = require('./lib/uploadArtifacts');
const updateStack = require('./lib/updateStack');
const SDK = require('../');
class AwsDeploy {
constructor(serverless, options) {
this.serverless = serverless;
this.options = options;
this.provider = 'aws';
this.sdk = new SDK(serverless);
Object.assign(
this,
validate,
createStack,
generateArtifactDirectoryName,
mergeCustomProviderResources,
setBucketName,
cleanupS3Bucket,
uploadArtifacts,
updateStack
);
this.hooks = {
'before:deploy:initialize': () => BbPromise.bind(this)
.then(this.validate),
'deploy:setupProviderConfiguration': () => BbPromise.bind(this).then(this.createStack),
'before:deploy:compileFunctions': () => BbPromise.bind(this)
.then(this.generateArtifactDirectoryName),
'before:deploy:deploy': () => BbPromise.bind(this).then(this.mergeCustomProviderResources),
'deploy:deploy': () => BbPromise.bind(this)
.then(this.setBucketName)
.then(this.cleanupS3Bucket)
.then(this.uploadArtifacts)
.then(this.updateStack)
.then(() => {
const msg = this.options.noDeploy ?
'Did not deploy due to --noDeploy' :
'Deployment successful!';
this.serverless.cli.log(msg);
}),
};
}
}
module.exports = AwsDeploy;