-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.js
More file actions
48 lines (48 loc) · 1.6 KB
/
main.js
File metadata and controls
48 lines (48 loc) · 1.6 KB
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
var fs = require('fs');
var diff = require('diff');
module.exports = {
replace: function (context, methodName, method) {
if (undefined != context[methodName]) {
context[methodName] = method;
}
},
append: function (context, methodName, method) {
if (undefined == context[methodName]) {
context[methodName] = method;
}
},
file: function (file, patchFile, callback) {
// Read the file
fs.readFile(file, 'utf8', function (error, fileData) {
if (error) {
callback(error);
return;
}
fileData = fileData.split("\r\n").join("\n");
// Read the patch
fs.readFile(patchFile, 'utf8', function (error, patchData) {
if (error) {
callback(error);
return;
}
patchData = patchData.split("\r\n").join("\n");
// Parse the patch rule
var parsedPatch = diff.parsePatch(patchData);
// Apply the patch
var patchedFile = diff.applyPatch(fileData, parsedPatch);
if (!patchedFile) {
callback(undefined, false);
return;
}
// Save the patch
fs.writeFile(file, patchedFile, function (error) {
if (error) {
callback(error);
return;
}
callback(undefined, true);
});
});
});
}
};