-
Notifications
You must be signed in to change notification settings - Fork 1
/
helpers.js
131 lines (107 loc) · 3.11 KB
/
helpers.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
118
119
120
121
122
123
124
125
126
127
128
129
130
const fs = require('fs');
const archiver = require('archiver')
const Ignore = require('node-dockerignore')
const yaml = require('js-yaml')
const configPath = "/.fandogh/config.yml"
const fandoghConfigs = require('./fandogh.json')
const Helpers = {
buildImageZip: (source) => {
return new Promise((resolve, reject) => {
fs.readdir(source, (err, files) => {
if(err) return reject(err)
let dockerfile = files.find(file => {
return file === 'Dockerfile'
})
if(!dockerfile) return reject({error: 'Docker file is not available in current directory', code:'dockerfile-404'})
Helpers.compress(files, source).then(source => {
resolve(source)
})
})
})
},
compress: (files, directory) => {
const path = directory+'/workspace.zip'
const output = fs.createWriteStream(path)
const archive = archiver('zip', {
zlib: { level: 9 } // Sets the compression level.
})
return new Promise((resolve, reject) => {
output.on('close', () => {
resolve(path)
})
archive.on('error', function(err) {
return reject(err)
});
archive.pipe(output)
let DockerIgnore = files.find(file => file === '.dockerignore')
let ignore = Helpers.getIgnore(directory+'/'+DockerIgnore, files)
archive.glob('**/*', {
cwd: directory,
ignore,
dot:true
})
archive.finalize()
})
},
getIgnore: (dockerignore, files) => {
let ignore = ['workspace.zip']
if(dockerignore && fs.existsSync(dockerignore)){
let ignores = fs.readFileSync(dockerignore).toString().trim().replace('\r', '').split("\n")
let ig = Ignore().add(ignores)
if(ignores) {
ig.filter(files)
files.forEach(path => {
if(ig.ignores(path+'/') || ig.ignores(path)){
ignore = ignore.concat([path, path+'/**'])
}
})
}
}
return ignore
},
readYamlFile: (source) => {
try {
if(!fs.existsSync(source+configPath)) return false
let config = fs.readFileSync(source+configPath)
config = yaml.load(config)
return config
} catch(e){
console.error(e)
return false
}
},
createYamlConfig: (configs) => {
const yamlConfig = {};
const configKeys = Object.keys(fandoghConfigs);
let yamlComment = '';
configKeys.forEach(config => {
if(configs[config]){
yamlConfig[config] = configs[config];
} else {
yamlComment += fandoghConfigs[config] +'\n';
}
})
let yml = yaml.dump(yamlConfig);
return yml+yamlComment;
},
createYamlFile: ({source, configs}) => {
try {
if (!fs.existsSync(source+'/.fandogh')){
fs.mkdirSync(source+'/.fandogh');
}
let yml = Helpers.createYamlConfig(configs);
fs.writeFileSync(source+configPath, yml)
return yml
} catch(e){
console.error(e)
return false
}
},
getConfigValue({source, type}){
let config = Helpers.readYamlFile(source)
let configValue
if(config) configValue = config['app.'+type]
return configValue
}
}
module.exports = Helpers