Git commit triggered by POST request now working.
This commit is contained in:
parent
f871d7483f
commit
7db34b296c
22
server.js
22
server.js
@ -40,19 +40,29 @@ app.get('/', function(req, res){
|
|||||||
|
|
||||||
app.post('/', function(req, res){
|
app.post('/', function(req, res){
|
||||||
winston.info('POST received');
|
winston.info('POST received');
|
||||||
|
var now = Date.now();
|
||||||
// quick/dirty poc is to do a fileSystem.write to create a new file w/contents of req.body!
|
// quick/dirty poc is to do a fileSystem.write to create a new file w/contents of req.body!
|
||||||
//var now = Date.now();
|
|
||||||
//fileSystem.writeFile(__dirname + '/note-data/test-' + now + '.txt', req.body, function(err){
|
//fileSystem.writeFile(__dirname + '/note-data/test-' + now + '.txt', req.body, function(err){
|
||||||
//if (err) { winston.error(err); }
|
//if (err) { winston.error(err); }
|
||||||
//winston.info('new test file written');
|
//winston.info('new test file written');
|
||||||
//});
|
//});
|
||||||
// Overwrite allNotes.txt with new contents from client.
|
// Overwrite allNotes.txt with new contents from client.
|
||||||
fileSystem.readFile(notePath, 'utf-8', function(err, data){
|
fileSystem.readFile(notePath, 'utf-8', function(err, data){
|
||||||
if (err) { winston.error(err); }
|
if (err) {
|
||||||
fileSystem.writeFile(notePath, req.body, 'utf-8', function(err) {
|
winston.error(err);
|
||||||
if (err) { winston.error(err); }
|
} else {
|
||||||
winston.info('new contents from client written to allNotes.txt');
|
fileSystem.writeFile(notePath, req.body, 'utf-8', function(err) {
|
||||||
});
|
if (err) { winston.error(err); }
|
||||||
|
winston.info('new contents from client written to allNotes.txt');
|
||||||
|
var exec = require('child_process').exec;
|
||||||
|
var cmd = 'cd note-data && git commit -am "Notes modified via POST request, ' + now + '"';
|
||||||
|
winston.info(cmd);
|
||||||
|
exec(cmd, function(error, stdout, stderr) {
|
||||||
|
if (error) { winston.error(error); }
|
||||||
|
winston.info(stdout);
|
||||||
|
});
|
||||||
|
});
|
||||||
|
}
|
||||||
});
|
});
|
||||||
// Stage and commit changes to allNotes.txt.
|
// Stage and commit changes to allNotes.txt.
|
||||||
res.status(204).send('POST received');
|
res.status(204).send('POST received');
|
||||||
|
Loading…
Reference in New Issue
Block a user