-
Notifications
You must be signed in to change notification settings - Fork 40
/
index.js
1011 lines (963 loc) · 23.4 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
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/*
Gitty
Author: Gordon Hall
Copyright (c) 2012 Gordon Hall
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated
documentation files (the "Software"), to deal in the Software without restriction, including without limitation
the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and
to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of
the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO
THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF
CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
DEALINGS IN THE SOFTWARE.
*/
module.exports = (function() {
// get required modules
var fs = require('fs'),
path = require('path'),
exec = require('child_process').exec,
back = __dirname;
fs.existsSync || (fs.existsSync = path.existsSync);
/*
* repository() - private
* checks the given path for git repo and if it exists, navigates to the directory
*/
function repository(path) {
// does the path exist
if (fs.existsSync(path)) {
// get directory contents
var contents = fs.readdirSync(path);
// iterate over contents
for (var item = 0; item < contents.length; item++) {
// if the current item is .git
if (contents[item] === '.git') {
// move to dir
process.chdir(path);
console.log('"' + process.cwd() + '" is a valid Git repository. Switched to directory.');
return true;
// if current item is not .git
} else {
// if item is last in set
if (contents[item] === contents[contents.length - 1]) {
console.log('"' + path + '" is not a valid Git repository.')
return false;
}
}
}
// return false if path invalid
} else {
return false;
}
process.chdir(back);
}
/*
* history() - public
* set process to run in specified directory and passes an array of commit objects into the callback
*/
function history(path, callback) {
// create output string
var output = '[',
command = '';
// create bash command
command += 'git log --pretty=format:\'{';
command += '"commit": "%H",';
command += '"author": "%an <%ae>",';
command += '"date": "%ad",';
command += '"message": "%s"';
command += '},\'';
// if the path is a valid repository, get the commit log
if (repository(path)) {
// execute bash command
exec(command, function(err, stdout, stderr) {
// if error, pass error object into callback
if (err || stderr) {
console.log(err || stderr);
if (callback) {
callback.call(this, {
error : err || stderr
});
}
// if successful, trim the trailing comma, and close output string
// then parse the JSON object and pass into callback
} else if (stdout) {
output += stdout.substring(0, stdout.length - 1);
output += ']';
output = JSON.parse(output);
if (callback) {
process.chdir(back);
callback.call(this, output);
}
}
});
} else {
if (callback) {
callback.call(this, {
error : 'Invalid Repository'
});
}
}
}
/*
* config() - public
* lists the git config and passes the val as a string into the callback
*/
function config(key, value, callback) {
var command = 'git config --global';
if (key) {
command += ' ' + key;
}
if (value) {
command += ' "' + value + '"';
}
exec(command, function(err, stdout, stderr) {
console.log(err, stdout, stderr);
// if error, pass error object into callback
if (err || stderr) {
console.log('here');
console.log(err || stderr);
if (callback) {
callback.call(this, err || stderr, null);
}
// if successful, trim the trailing comma, and close output string
// then parse the JSON object and pass into callback
} else {
var response;
if (stdout) {
response = stdout.replace('\n', '');
}
if (callback) {
process.chdir(back);
callback.call(this, null, response);
}
}
});
}
/*
* create() - public
* creates a new directory, initializes a git repo, and adds a readme, then passes result into callback
*/
function create(name, description, path, callback) {
// is path valid
if (fs.existsSync(path)) {
// get path to repos
var repos = fs.readdirSync(path),
// create initial readme text
readme_txt = '# ' + name + '\n\n' + description;
// if the dir is not empty
if (repos.length) {
// iterate over items
for (var repo = 0; repo < repos.length; repo++) {
// does the repo already exist
if (repos[repo] === name) {
// pass error object into callback
if (callback) {
callback.call(this, {
error : 'Directory already exists'
});
}
// doesnt exist
} else {
// last in iteration
if (repo === repos.length - 1) {
// call ready()
ready();
}
}
}
// otherwise go ahead
} else {
ready();
}
// called if all is good in the hood
function ready() {
// make sure the path format is good
if (path.charAt(path.length - 1) !== '/') {
path += '/';
}
// create the dir
fs.mkdirSync(path + name);
// move to the new dir
process.chdir(path + name);
// init git repo
exec('git init', function(err, stdout, stderr) {
// if error, pass error object into callback
if (err || stderr) {
console.log(err || stderr);
if (callback) {
process.chdir(back);
callback.call(this, {
error : err || stderr
});
}
// all is good
} else if (stdout) {
// create readme file and place text inside
fs.writeFile(path + name + '/README.md', readme_txt, function() {
// pass success object into callback
var successMsg = stdout;
add(path + name, ['README.md'], function(output) {
if (callback) {
callback.call(this, {
success : successMsg
});
}
});
});
}
});
}
// path isnt valid
} else {
// pass error into callback
if (callback) {
callback.call(this, {
error : 'Invalid path'
});
}
}
}
/*
* destroy() - public
* deletes git repo and optionally all contents
*/
function destroy(path, deletefiles, callback) {
// if the path exists
if (fs.existsSync(path)) {
// make sure the path format is good
if (path.charAt(path.length - 1) !== '/') {
path += '/';
}
// if delete all contents
if (deletefiles) {
// force deletion of entire dir
rmdirSyncForce(path);
// pass success into callback
if (callback) {
callback.call(this, {
success : 'Repository destroyed and contents deleted'
});
}
// if just remove repo
} else {
// force deletion of .git dir
rmdirSyncForce(path + '.git');
// pass success into callback
if (callback) {
callback.call(this, {
success : 'Repository destroyed and contents preserved'
});
}
}
// if not pass error into callback
} else {
if (callback) {
callback.call(this, {
error : 'Invalid path'
});
}
}
// force delete of dir and contents
function rmdirSyncForce(path) {
// init vars
var files, file, fileStats, filesLength;
// make sure the path format is good
if (path.charAt(path.length - 1) !== '/') {
path += '/';
}
// get files in dir
files = fs.readdirSync(path);
// get amount of files
filesLength = files.length;
// if files exists
if (filesLength) {
// iterate over files
for (var i = 0; i < filesLength; i += 1) {
file = files[i];
// get file info
fileStats = fs.statSync(path + file);
// if its a file
if (fileStats.isFile()) {
// kill it
fs.unlinkSync(path + file);
}
// if its a dir
if (fileStats.isDirectory()) {
// kill it and it's contents recursively
rmdirSyncForce(path + file);
}
}
}
// delete now empty dir
fs.rmdirSync(path);
}
}
/*
* status() - public
* executes git status and parses into object containing staged/unstaged files
*/
function status(path, callback) {
// move to repo
if (repository(path)) {
// execute git status parse
exec('git status', function(err, stdout, stderr) {
var status = stdout;
exec('git ls-files --other --exclude-standard', function(err, stdout, stderr) {
// if error, pass error object into callback
if (err || stderr) {
console.log(err || stderr);
if (callback) {
process.chdir(back);
callback.call(this, {
error : err || stderr
});
}
// all is good
} else {
process.chdir(back);
callback.call(this, parseStatus(status, stdout));
}
});
});
} else {
callback.call(this, {
error : 'Invalid repository'
});
}
// status parser
function parseStatus(gitstatus, untracked) {
// create status object
var status = {
staged : [],
not_staged : [],
untracked : untracked.split('\n').slice(0, untracked.split('\n').length - 1)
},
// use this var to switch between arrays to push to
file_status = null,
// split output into array by line
output = gitstatus.split('\n');
// iterate over lines
output.forEach(function(line) {
// switch to staged array
if (line.toLowerCase().indexOf('changes to be committed') > -1) {
file_status = 'staged';
// or switch to not_staged array
} else if (line.toLowerCase().indexOf('changes not staged for commit') > -1) {
file_status = 'not_staged';
// or switch to untracked array
} else if (line.toLowerCase().indexOf('untracked files') > -1) {
file_status = 'untracked';
}
// check if the line contains a keyword
if (line.indexOf('modified') > -1 ||
line.indexOf('new file') > -1 ||
line.indexOf('deleted') > -1) {
// then remove # and all whitespace and split at the colon
var fileinfo = line.substr(1).trim().split(':');
// push a new object into the current array
status[file_status].push({
file : fileinfo[1].trim(),
status : fileinfo[0]
});
}
});
return status;
}
}
/*
* stage() - private
* adds or removes the array of files in the specified repository for commit
*/
function stage(operation, path, files, callback) {
// move to repo
if (repository(path)) {
// store any errors
var errs = [],
succs = [];
if (!files.length) {
callback.call(this, {
errors : errs,
added : succs
});
} else {
console.log(files);
// iterate over files
files.forEach(function(val,key) {
// execute git add for file
exec('git ' + operation + ' ' + val, function(err, stdout, stderr) {
// if error, push message into errs
console.log(stdout);
console.log(val);
if (err || stderr) {
errs.push(err || {
file : val,
error : stderr
});
// all is good
} else {
succs.push(val);
}
// if last in iteration pass output into callback
if (val === files[files.length - 1]) {
process.chdir(back);
callback.call(this, {
errors : errs,
added : succs
});
}
});
});
}
} else {
callback.call(this, {
error : 'Invalid repository'
});
}
}
/*
* add() - public
* adds the array of files in the specified repository for commit
*/
function add(path, files, callback) {
stage('add', path, files, callback);
}
/*
* remove() - public
* removes the array of files in the specified repository for commit
*/
function remove(path, files, callback) {
stage('rm --cached', path, files, callback);
}
/*
* remove_recursive() - public
* removes the array of files in the specified repository for commit
*/
function remove_recursive(path, dir, callback) {
if (repository(path)) {
exec('git rm -r --cached ' + dir, function(err, stdout, stderr) {
if (err || stderr) {
console.log(err || stderr);
if (callback) {
process.chdir(back);
callback.call(this, {
error : err || stderr
});
}
// all is good
} else if (stdout) {
process.chdir(back);
callback.call(this, {
message : stdout
});
}
});
} else {
callback.call(this, {
error : 'Invalid repository'
});
}
}
/*
* move() - public
* moves file or folder from source to destination.
*/
function move(path, source, destination, callback) {
if (repository(path)) {
var command = 'git mv ' + source + ' ' + destination;
exec(command, function(err, stdout, stderr) {
console.log(err, stdout, stderr);
if (err || stderr) {
console.log(err || stderr);
if (callback) {
process.chdir(back);
callback.call(this, {
error : err || stderr
});
}
// all is good
} else {
process.chdir(back);
callback.call(this, {
message : stdout
});
}
});
} else {
callback.call(this, {
error : 'Invalid repository'
});
}
}
/*
* unstage() - public
* removes the array of files in the specified repository for commit
*/
function unstage(path, files, callback) {
stage('reset HEAD', path, files, callback);
}
/*
* commit() - public
* commits the current staged files to the working branch
*/
function commit(path, message, callback) {
if (repository(path)) {
exec('git commit -m ' + '"' + message + '"', function(err, stdout, stderr) {
if (err || stderr) {
console.log(err || stderr);
if (callback) {
process.chdir(back);
callback.call(this, {
error : err || stderr
});
}
// all is good
} else if (stdout) {
process.chdir(back);
callback.call(this, {
message : stdout
});
}
});
} else {
callback.call(this, {
error : 'Invalid repository'
});
}
}
/*
* tree() - public
* gets the current branch that HEAD points to and passes to callback
*/
function tree(path, callback) {
if (repository(path)) {
exec('git branch', function(err, stdout, stderr) {
if (err || stderr) {
console.log(err || stderr);
if (callback) {
process.chdir(back);
callback.call(this, {
error : err || stderr
});
}
// all is good
} else if (stdout) {
var tree = {
current : null,
others : []
},
branches = stdout.split('\n');
branches.forEach(function(val, key) {
if (val.indexOf('*') > -1) {
tree['current'] = val.replace('*', '').trim();
} else {
if (val) {
tree['others'].push(val.trim());
}
}
});
if (callback) {
process.chdir(back);
callback.call(this, tree);
}
}
});
} else {
callback.call(this, {
error : 'Invalid repository'
});
}
}
/*
* branch() - public
* creates a new branch for the specified repository
*/
function branch(path, branchname, callback) {
if (repository(path)) {
exec('git branch "' + branchname + '"', function(err, stdout, stderr) {
if (err || stderr) {
console.log(err || stderr);
if (callback) {
process.chdir(back);
callback.call(this, {
error : err || stderr
});
}
// all is good
} else {
if (callback) {
process.chdir(back);
callback.call(this, {
message : 'Branch ' + branchname + ' created'
});
}
}
});
} else {
callback.call(this, {
error : 'Invalid repository'
});
}
}
/*
* checkout() - public
* performs git checkout for the specified branch
*/
function checkout(path, branch, callback) {
if (repository(path)) {
exec('git checkout ' + branch, function(err, stdout, stderr) {
if ((stdout) || stderr.indexOf('Switched') > -1) {
if (callback) {
process.chdir(back);
callback.call(this, {
message : (stdout) || (stderr)
});
}
} else if (err || stderr) {
console.log(err || stderr);
if (callback) {
process.chdir(back);
callback.call(this, {
error : err || stderr
});
}
}
});
} else {
callback.call(this, {
error : 'Invalid repository'
});
}
}
/*
* merge - public
* merges the given branch insto the current branch
*/
function merge(path, branch, callback) {
var cmd = 'git merge ' + branch;
if (repository(path)) {
exec(cmd, function(err, stdout, stderr) {
if (err || stderr) {
console.log(err || stderr);
if (callback) {
process.chdir(back);
callback.call(this, {
error : err || stderr
});
}
// all is good
} else {
if (callback) {
process.chdir(back);
callback.call(this, {
message : stdout || 'Merged ' + branch + '!'
});
}
}
});
} else {
callback.call(this, {
error : 'Invalid repository'
});
}
}
/*
* remote - public
* contains methods for adding removing and listing remotes
*/
var remote = (function() {
/*
* add() - public
* adds a remote
*/
function add(path, remote, url, callback) {
var cmd = 'git remote add ' + remote + ' ' + url;
if (repository(path)) {
exec(cmd, function(err, stdout, stderr) {
if (err || stderr) {
console.log(err || stderr);
if (callback) {
process.chdir(back);
callback.call(this, {
error : err || stderr
});
}
// all is good
} else {
if (callback) {
process.chdir(back);
callback.call(this, {
message : 'Remote "' + remote + '" added!'
});
}
}
});
} else {
callback.call(this, {
error : 'Invalid repository'
});
}
}
/*
* update() - public
* edits a remote
*/
function update(path, remote, url, callback) {
var cmd = 'git remote set-url ' + remote + ' ' + url;
if (repository(path)) {
exec(cmd, function(err, stdout, stderr) {
if (err || stderr) {
console.log(err || stderr);
if (callback) {
process.chdir(back);
callback.call(this, {
error : err || stderr
});
}
// all is good
} else {
if (callback) {
process.chdir(back);
callback.call(this, {
message : 'Remote "' + remote + '" updated!'
});
}
}
});
} else {
callback.call(this, {
error : 'Invalid repository'
});
}
}
/*
* remove() - public
* removes a remote
*/
function remove(path, remote, callback) {
var cmd = 'git remote rm ' + remote;
if (repository(path)) {
exec(cmd, function(err, stdout, stderr) {
if (err || stderr) {
console.log(err || stderr);
if (callback) {
process.chdir(back);
callback.call(this, {
error : err || stderr
});
}
// all is good
} else {
if (callback) {
process.chdir(back);
callback.call(this, {
message : 'Remote "' + remote + '" removed!'
});
}
}
});
} else {
callback.call(this, {
error : 'Invalid repository'
});
}
}
/*
* list() - public
* lists remotes
*/
function list(path, callback) {
var cmd = 'git remote -v';
if (repository(path)) {
exec(cmd, function(err, stdout, stderr) {
if (err || stderr) {
console.log(err || stderr);
if (callback) {
process.chdir(back);
callback.call(this, {
error : err || stderr
});
}
// all is good
} else {
var list = {},
parseme = stdout.split('\n');
parseme.forEach(function(val, key) {
if (val.split('\t')[0])
list[val.split('\t')[0]] = val.split('\t')[1].split(' ')[0];
});
if (callback) {
process.chdir(back);
callback.call(this, list);
}
}
});
} else {
callback.call(this, {
error : 'Invalid repository'
});
}
}
return {
add : add,
update : update,
remove : remove,
list : list
}
})();
/*
* push() - public
* pushes the specified branch to the specified remote
*/
function push(path, remote, branch, callback) {
var cmd = 'git push -u ' + ((remote) ? remote : '') + ' ' + ((branch) ? branch : '') + ' -q';
if (repository(path)) {
exec(cmd, function(err, stdout, stderr) {
if (err || stderr) {
console.log(err || stderr);
if (callback) {
process.chdir(back);
callback.call(this, {
error : err || stderr
});
}
// all is good
} else if (stdout) {
if (callback) {
process.chdir(back);
callback.call(this, {
message : stdout
});
}
}
});
} else {
callback.call(this, {
error : 'Invalid repository'
});
}
}
/*
* pull() - public
* pulls the specified branch from the specified remote
*/
function pull(path, remote, branch, callback) {
var cmd = 'git pull ' + ((remote) ? remote : '') + ' ' + ((branch) ? branch : '') + ' -q';
if (repository(path)) {
exec(cmd, function(err, stdout, stderr) {
if (err || stderr) {
console.log(err || stderr);
if (callback) {
process.chdir(back);
callback.call(this, {
error : err || stderr
});
}
// all is good
} else if (stdout) {
if (callback) {
process.chdir(back);
callback.call(this, {
message : stdout
});
}
}
});
} else {
callback.call(this, {
error : 'Invalid repository'
});
}
}
/*
* reset() - public
* resets the HEAD back to the specified commit hash
*/
function reset(path, hash, callback) {
var cmd = 'git reset -q ' + hash;
if (repository(path)) {
exec(cmd, function(err, stdout, stderr) {
if (err || stderr) {
console.log(err || stderr);
if (callback) {
process.chdir(back);
callback.call(this, {
error : err || stderr
});
}
// all is good
} else {
if (callback) {
process.chdir(back);
callback.call(this, {
message : 'Repository reset to commit: ' + hash
});
}
}
});
} else {
callback.call(this, {
error : 'Invalid repository'
});
}
}
/*
* clone() - public
* clones the given git url into the path specified
*/
function clone(path, url, callback) {
var cmd = 'git clone ' + url;
process.chdir(path);
if (!url) {
if (callback) {
callback.call(this, {
error : 'Please specify a URL'
});
}
} else {
exec(cmd, function(err, stdout, stderr) {
if (err || stderr) {
console.log(err || stderr);
if (callback) {
process.chdir(back);
callback.call(this, {
error : stderr || 'Clone failed!'
});
}
// all is good
} else {
if (callback) {
process.chdir(back);
callback.call(this, {
message : stdout
});
}
}
});
}
}
// public methods
return {
history : history,
config : config,
create : create,
destroy : destroy,
status : status,
add : add,
remove : remove,
remove_recursive : remove_recursive,
move : move,
commit : commit,
tree : tree,
branch : branch,