-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.js
188 lines (175 loc) · 4.89 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
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
const fs = require('fs-promise')
const path = require('path')
const crypto = require('crypto')
const pm2 = require('pm2')
const Table = require('cli-table')
const username = require('username')
const manager = require('./lib/manager')
const { resolveHome, uuid } = require('./lib/utils')
const { configsFile, startFlagFile } = require('./lib/paths')
module.exports = { start, list, stop }
const __msgListeners = {}
const sendMessage = (id, msg) => {
const msgId = uuid()
return new Promise((resolve, reject) => {
// There are some mistakes in PM2 API doc
// Check:
// - https://github.com/Unitech/pm2/issues/2070
// - /node_modules/pm2/lib/God/ActionMethods.js `God.sendDataToProcessId`
pm2.sendDataToProcessId(id, {
id,
data: {
msg,
id: msgId
},
type: 'process:msg',
topic: 'stupid pm2'
}, err => {
if (err) return reject(err)
__msgListeners[msgId] = resolve
})
})
}
pm2.launchBus((err, bus) => {
bus.on('process:msg', packet => {
if (__msgListeners[packet.data.id]) {
__msgListeners[packet.data.id](packet.data.res)
__msgListeners[packet.data.id] = undefined
}
})
})
function start(relConfigPath) {
const configPath = path.resolve(process.cwd(), resolveHome(relConfigPath))
return manager.deleteAll()
.then(() => manager.addConfig(configPath))
.then(() => manager.setup())
.then(() => console.log('\nStarting easy-pm-server...'))
.then(() => fs.writeFile(startFlagFile, '1', 'utf8'))
.then(() => manager.startAll())
.then(configPaths => new Promise((resolve, reject) => {
pm2.connect(err => {
if (err) return reject(err)
pm2.start({
name: 'easy-pm-server',
script: './task/server.js',
watch: configPaths,
env: {
epm_server: true
}
}, err => {
pm2.disconnect()
if (err) reject(err)
else resolve()
})
})
}))
.then(() => {
console.log('easy-pm-server started.\n')
return list()
})
}
function stop(relConfigPath) {
console.log('Stopping applications...')
const configPath = path.resolve(process.cwd(), resolveHome(relConfigPath))
manager.deleteConfig(configPath)
.then(() => new Promise((resolve, reject) => {
pm2.connect(err => {
if (err) return reject(err)
pm2.list((err, apps) => {
if (err) return reject(err)
resolve(apps)
})
})
}))
.then(apps => new Promise(resolve => {
const epmServer = apps.find(app => app.pm2_env.epm_server)
if (epmServer) {
sendMessage(epmServer.pm_id, {
command: 'stop',
data: [configPath]
})
.then(res => resolve(apps))
} else {
resolve(apps)
}
}))
.then(apps => Promise.all(
apps
.filter(app => app.pm2_env.epm_config_path === configPath)
.map(app => new Promise((resolve, reject) => {
pm2.delete(app.pm_id, err => {
if (err) return reject(err)
resolve()
})
}))
))
.then(() => {
pm2.disconnect()
console.log('Applications stopped.')
list()
})
}
function list() {
return fs.readFile(configsFile, 'utf8')
.then(configsStr => configsStr.split('\n').filter(s => !/^\s*$/.test(s)))
.then(configPaths => listByConfigs(configPaths))
}
function listByConfigs(configPaths) {
const configs = {}
configPaths.forEach(configPath => {
configs[configPath] = {
table: new Table({
head: ['Name', 'branch', 'pid', 'status', 'restart', 'cpu', 'memory'],
style: {
head: ['cyan', 'bold']
}
})
}
})
return new Promise((resolve, reject) => {
pm2.connect(err => {
if (err) return reject(err)
pm2.list((err, apps) => {
pm2.disconnect()
if (err) return reject(err)
apps.forEach(app => {
const name = app.pm2_env.epm_name
const branch = app.pm2_env.epm_branch
const configPath = app.pm2_env.epm_config_path
const pid = app.pid || 'N/A'
const status = app.pm2_env.status
const restart = app.pm2_env.restart_time
const cpu = app.monit.cpu + '%'
let memory = app.monit.memory / 1024
if (memory < 1024) {
memory = memory.toFixed(1) + ' KB'
} else if (memory < 1024 * 1024) {
memory = (memory / 1024).toFixed(1) + ' MB'
} else {
memory = (memory / 1024 / 1024).toFixed(1) + ' GB'
}
if (configs[configPath]) {
const rootRe = new RegExp(`/${name}$`)
configs[configPath].port = configs.port || app.pm2_env.epm_server_port || 80
configs[configPath].root = app.pm2_env.cwd.replace(rootRe, '') || ''
configs[configPath].table.push({
[name]: [branch, pid, status, restart, cpu, memory]
})
}
})
resolve()
})
})
})
.then(() => {
configPaths.forEach(configPath => {
const config = configs[configPath]
const table = config.table
console.log(`Config File: ${configPath}`)
console.log(`App Directory: ${config.root}`)
console.log(`Listening on port ${config.port || 80}: ${table.length} ${table.length > 1 ? 'apps' : 'app'} running`)
console.log(table.toString())
console.log('')
})
})
}