-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
72 lines (56 loc) · 2.03 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
'use strict';
const path = require('path');
const buildFiles = require('build-files');
const buildDir = require('build-dir');
const buildData = require('build-data');
const Scube = require('scube');
const mimeTypes = require('mime-types');
const maxAge = require('./lib/max-age');
const delivr = {};
delivr.prepare = async (option) => {
const config = Object.assign({}, option);
const cwd = path.resolve(config.cwd || '');
config.cwd = cwd;
if (!config.bucket) {
throw new Error('A bucket name is required to upload build files.');
}
const willDeploy = Boolean(config.deploy || (typeof config.deploy === 'undefined' && process.env.CI));
const awsClient = new Scube({
bucket : config.bucket
});
const buildConf = Object.assign({ cwd }, await buildData(config));
const dir = await buildDir.prepare(buildConf);
return {
path : dir.path,
async finalize() {
await dir.finalize();
if (!willDeploy) {
return;
}
const files = await buildFiles.latest(buildConf);
const uploadFile = (file) => {
const payload = {
key : file.path,
body : file.content,
aCL : 'public-read',
cacheControl : 'public, max-age=' + maxAge(file.path)
};
const type = mimeTypes.contentType(path.extname(file.path));
if (type) {
payload.contentType = type;
}
return awsClient.upload(payload);
};
await Promise.all([
awsClient.deleteDir({
prefix : path.posix.join(buildConf.branch, buildConf.version)
}),
awsClient.deleteDir({
prefix : path.posix.join(buildConf.branch, 'latest')
})
]);
return Promise.all(files.map(uploadFile));
}
};
};
module.exports = delivr;