Create temp git branch when content changes, try to handle merge conflicts (though conflicts are not possible w/current architecture).
This commit is contained in:
parent
0f3e173a5b
commit
4df8bb5d12
28
server.js
28
server.js
@ -110,17 +110,37 @@ io.on('connection', function(socket){
|
|||||||
fileSystem.writeFile(notePath, msg, 'utf-8', function(err) {
|
fileSystem.writeFile(notePath, msg, 'utf-8', function(err) {
|
||||||
if (err) { winston.error(err); }
|
if (err) { winston.error(err); }
|
||||||
var exec = require('child_process').exec;
|
var exec = require('child_process').exec;
|
||||||
var cmd = 'cd note-data && git commit -am "Notes modified via websocket, ' + now + '"';
|
var cmd = `
|
||||||
|
cd note-data && \
|
||||||
|
git checkout -b ${now} && \
|
||||||
|
git commit -am "Notes modified via websocket, ${now}" && \
|
||||||
|
git checkout master && \
|
||||||
|
git merge ${now}
|
||||||
|
`;
|
||||||
winston.info(cmd);
|
winston.info(cmd);
|
||||||
exec(cmd, function(error, stdout, stderr) {
|
exec(cmd, function(error, stdout, stderr) {
|
||||||
if (error) { winston.error(error); }
|
if (error) { winston.error(error); }
|
||||||
winston.info(stdout);
|
if (!stdout.includes('CONFLICT')) { // Case-sensitivity seems brittle here. Better to check return code rather than stdout? Can child_process be called w/signature to include return code?
|
||||||
|
var cmd2 = `cd note-data && git branch -d ${now}`
|
||||||
|
exec(cmd2, function(error, stdout, stderr) {
|
||||||
|
if (error) { winston.error(error); }
|
||||||
|
winston.info('temp branch deleted sucessfully');
|
||||||
winston.info('new contents from client written to allNotes.txt');
|
winston.info('new contents from client written to allNotes.txt');
|
||||||
});
|
|
||||||
});
|
|
||||||
// Send new content to all other clients EXCEPT the orig sender.
|
// Send new content to all other clients EXCEPT the orig sender.
|
||||||
socket.broadcast.emit('download allNotes',msg);
|
socket.broadcast.emit('download allNotes',msg);
|
||||||
winston.info('sent content update to other clients');
|
winston.info('sent content update to other clients');
|
||||||
|
});
|
||||||
|
} else {
|
||||||
|
// Auto-merge failed, keep the new branch.
|
||||||
|
// Send a conflict warning message to socket.io clients (prompt for IAP ;-).
|
||||||
|
socket.emit('conflict', `Auto-merge failed, manually merge ${now} branch to rescue recent edit.`);
|
||||||
|
socket.emit('download allNotes',data); // Send pre-conflict content back down to client.
|
||||||
|
winston.info(`Auto-merge failed, manually merge ${now} branch to rescue recent edit.`);
|
||||||
|
// MVP for now, can deal w/merge conflicts with git on the server if the cotent needs to be saved.
|
||||||
|
}
|
||||||
|
winston.info(stdout);
|
||||||
|
});
|
||||||
|
});
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
@ -65,7 +65,7 @@
|
|||||||
CodeMirror.Vim.map('jj', '<Esc>', 'insert')
|
CodeMirror.Vim.map('jj', '<Esc>', 'insert')
|
||||||
// Hacked semi-colon/colon swap remap into /assets/keymap/vim.js...a heavy-handed fix.
|
// Hacked semi-colon/colon swap remap into /assets/keymap/vim.js...a heavy-handed fix.
|
||||||
// Note, ~/notes.kaplon.us/CodeMirror is symlinked it into /assets!
|
// Note, ~/notes.kaplon.us/CodeMirror is symlinked it into /assets!
|
||||||
// This no worky, there's no concept of <leader> in CodeMirror, but i was hoping this would work-around it.
|
// These 2 mappings don't work, there's no concept of <leader> in CodeMirror, but i was hoping this would work-around it.
|
||||||
//CodeMirror.Vim.map(' c', '<Esc>o- [ ] ', 'normal')
|
//CodeMirror.Vim.map(' c', '<Esc>o- [ ] ', 'normal')
|
||||||
//CodeMirror.Vim.map(' x', '<ESC>;s/\[\s\]/[x]/g<CR>;noh<CR>', 'normal')
|
//CodeMirror.Vim.map(' x', '<ESC>;s/\[\s\]/[x]/g<CR>;noh<CR>', 'normal')
|
||||||
CodeMirror.commands.save = function(){
|
CodeMirror.commands.save = function(){
|
||||||
@ -96,6 +96,8 @@
|
|||||||
2000
|
2000
|
||||||
);
|
);
|
||||||
});
|
});
|
||||||
|
|
||||||
|
socket.on('conflict', alert(msg));
|
||||||
</script>
|
</script>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
Loading…
Reference in New Issue
Block a user