-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathupgrade_policy.js
52 lines (46 loc) · 1.13 KB
/
upgrade_policy.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
#!/usr/bin/env
const fs = require('fs');
const path = require('path');
async function readJSONFile(filePath) {
return new Promise((resolve, reject) => {
fs.readFile(filePath, 'utf8', (err, text) => {
if (err) reject(err)
else resolve(JSON.parse(text))
})
})
}
async function writeJSONFile(filePath, content) {
const json = JSON.stringify(content, null, 4)
return new Promise((resolve, reject) => {
fs.writeFile(filePath, json, function(err) {
if (err) reject(err)
else resolve()
})
})
}
;(async () => {
const filePath = process.argv[2]
if (!filePath) {
console.log('Usage) node upgrade_policy.js <policy JSON file>')
process.exit(2)
return
}
const document = await readJSONFile(filePath)
if (document.Document) {
console.warn('[WARN] %s : This policy definition is already new version.', filePath)
process.exit(3)
return
}
const newDoc = {
Policy: {
PolicyName: path.basename(filePath, '.json'),
Path: '/'
},
Document: document
}
await writeJSONFile(filePath, newDoc)
})()
.catch(err => {
console.error(err)
process.exit(1)
})