forked from cgrimal/serverless-python-requirements
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
117 lines (107 loc) Β· 3.31 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
105
106
107
108
109
110
111
112
113
114
115
116
117
/* jshint ignore:start */
'use strict';
const BbPromise = require('bluebird');
const fse = require('fs-extra');
const {addVendorHelper, removeVendorHelper, packRequirements} = require('./lib/zip');
const {installRequirements} = require('./lib/pip');
const {pipfileToRequirements} = require('./lib/pipenv');
const {linkRequirements, unlinkRequirements} = require('./lib/link');
const {cleanup} = require('./lib/clean');
BbPromise.promisifyAll(fse);
/**
* Plugin for Serverless 1.x that bundles python requirements!
*/
class ServerlessPythonRequirements {
/**
* get the custom.pythonRequirements contents, with defaults set
* @return {Object}
*/
get options() {
const options = Object.assign({
zip: false,
cleanupZipHelper: true,
invalidateCaches: false,
fileName: 'requirements.txt',
usePipenv: true,
pythonBin: this.serverless.service.provider.runtime || 'python',
dockerizePip: false,
dockerImage: `lambci/lambda:build-${this.serverless.service.provider.runtime}`,
pipCmdExtraArgs: [],
noDeploy: [
'boto3',
'botocore',
'docutils',
'jmespath',
'python-dateutil',
's3transfer',
'six',
'pip',
'setuptools',
],
}, this.serverless.service.custom && this.serverless.service.custom.pythonRequirements || {});
if (options.dockerizePip === 'non-linux')
options.dockerizePip = process.platform !== 'linux';
return options;
}
/**
* The plugin constructor
* @param {Object} serverless
* @param {Object} options
* @return {undefined}
*/
constructor(serverless, options) {
this.serverless = serverless;
this.servicePath = this.serverless.config.servicePath;
this.commands = {
requirements: {
commands: {
clean: {
usage: 'Remove .requirements and requirements.zip',
lifecycleEvents: [
'clean',
],
},
install: {
usage: 'install requirements manually',
lifecycleEvents: [
'install',
],
},
},
},
};
const before = () => BbPromise.bind(this)
.then(pipfileToRequirements)
.then(addVendorHelper)
.then(installRequirements)
.then(packRequirements)
.then(linkRequirements);
const after = () => BbPromise.bind(this)
.then(removeVendorHelper)
.then(unlinkRequirements);
const invalidateCaches = () => {
if (this.options.invalidateCaches) {
return BbPromise.bind(this)
.then(cleanup)
.then(removeVendorHelper);
}
return BbPromise.resolve();
};
this.hooks = {
'after:package:cleanup': invalidateCaches,
'before:package:createDeploymentArtifacts': before,
'after:package:createDeploymentArtifacts': after,
'before:deploy:function:packageFunction': before,
'after:deploy:function:packageFunction': after,
'requirements:install:install': () => BbPromise.bind(this)
.then(pipfileToRequirements)
.then(addVendorHelper)
.then(installRequirements)
.then(packRequirements),
'requirements:clean:clean': () => BbPromise.bind(this)
.then(cleanup)
.then(removeVendorHelper),
};
}
}
module.exports = ServerlessPythonRequirements;