forked from serverless/serverless
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
104 lines (84 loc) · 2.86 KB
/
index.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
'use strict';
const BbPromise = require('bluebird');
const fs = require('fs');
const validate = require('../lib/validate');
const filesize = require('filesize');
// The Package plugin which is used to zip the service
const Package = require('../../package');
class AwsDeployFunction {
constructor(serverless, options) {
this.serverless = serverless;
this.options = options || {};
this.provider = this.serverless.getProvider('aws');
this.pkg = new Package(this.serverless, this.options);
Object.assign(this, validate);
this.hooks = {
'deploy:function:initialize': () => BbPromise.bind(this)
.then(this.validate)
.then(this.logStatus)
.then(this.checkIfFunctionExists),
'deploy:function:packageFunction': () => BbPromise.bind(this)
.then(this.packageFunction),
'deploy:function:deploy': () => BbPromise.bind(this)
.then(this.deployFunction)
.then(this.cleanup),
};
}
logStatus() {
this.serverless.cli.log(`Deploying function: ${this.options.function}...`);
return BbPromise.resolve();
}
checkIfFunctionExists() {
// check if the function exists in the service
this.options.functionObj = this.serverless.service.getFunction(this.options.function);
// check if function exists on AWS
const params = {
FunctionName: this.options.functionObj.name,
};
this.provider.request(
'Lambda',
'getFunction',
params,
this.options.stage, this.options.region
).catch(() => {
const errorMessage = [
`The function "${this.options.function}" you want to update is not yet deployed.`,
' Please run "serverless deploy" to deploy your service.',
' After that you can redeploy your services functions with the',
' "serverless deploy function" command.',
].join('');
throw new this.serverless.classes
.Error(errorMessage);
});
return BbPromise.resolve();
}
packageFunction() {
this.serverless.cli.log(`Packaging function: ${this.options.function}...`);
return this.pkg.packageFunction(this.options.function);
}
deployFunction() {
const data = fs.readFileSync(this.options.functionObj.artifact);
const params = {
FunctionName: this.options.functionObj.name,
ZipFile: data,
};
// Get function stats
const stats = fs.statSync(this.options.functionObj.artifact);
this.serverless.cli.log(
`Uploading function: ${this.options.function} (${filesize(stats.size)})…`
);
// Perform upload
return this.provider.request(
'Lambda',
'updateFunctionCode',
params,
this.options.stage, this.options.region
).then(() => {
this.serverless.cli.log(`Successfully deployed function: ${this.options.function}`);
});
}
cleanup() {
return this.pkg.cleanup();
}
}
module.exports = AwsDeployFunction;