Skip to content

Commit edd10a6

Browse files
committed
Added GET /ps/restart.
1 parent fa50cfe commit edd10a6

File tree

2 files changed

+59
-0
lines changed

2 files changed

+59
-0
lines changed

index.js

+11
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ var raw = require('./routes/raw');
66
var pending = require('./routes/pending');
77
var apps = require('./routes/apps');
88
var domains = require('./routes/domains');
9+
var ps = require('./routes/ps');
910

1011
// Routes
1112
app.get('/api/v1/raw', raw.get);
@@ -25,6 +26,16 @@ app.get('/api/v1/domains/enable', domains.enable);
2526
app.get('/api/v1/domains/remove', domains.remove);
2627
app.get('/api/v1/domains/set-global', domains.setGlobal);
2728

29+
app.get('/api/v1/ps', ps.get);
30+
app.get('/api/v1/ps/rebuildall', ps.rebuildall);
31+
app.get('/api/v1/ps/rebuild', ps.rebuild);
32+
app.get('/api/v1/ps/restartall', ps.restartall);
33+
app.get('/api/v1/ps/restart', ps.restart);
34+
app.get('/api/v1/ps/restore', ps.restore);
35+
app.get('/api/v1/ps/scale', ps.scale);
36+
app.get('/api/v1/ps/start', ps.start);
37+
app.get('/api/v1/ps/stop', ps.stop);
38+
2839
// Start server
2940
var port = process.env.PORT || 5000;
3041
http.listen(port, function() {

routes/ps.js

+48
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,48 @@
1+
var ssh = require('../utils/ssh');
2+
3+
function get(req, res) {
4+
5+
}
6+
7+
function rebuildall(req, res) {
8+
9+
}
10+
11+
function rebuild(req, res) {
12+
13+
}
14+
15+
function restartall(req, res) {
16+
17+
}
18+
19+
function restart(req, res) {
20+
ssh.execBinaryLong('ps:restart ' + req.query.app, req, res);
21+
}
22+
23+
function restore(req, res) {
24+
25+
}
26+
27+
function scale(req, res) {
28+
29+
}
30+
31+
function start(req, res) {
32+
33+
}
34+
35+
function stop(req, res) {
36+
37+
}
38+
39+
// Exports
40+
exports.get = get;
41+
exports.rebuildall = rebuildall;
42+
exports.rebuild = rebuild;
43+
exports.restartall = restartall;
44+
exports.restart = restart;
45+
exports.restore = restore;
46+
exports.scale = scale;
47+
exports.start = start;
48+
exports.stop = stop

0 commit comments

Comments
 (0)