-
Notifications
You must be signed in to change notification settings - Fork 698
Expand file tree
/
Copy pathtree_entry.js
More file actions
99 lines (87 loc) · 2.03 KB
/
tree_entry.js
File metadata and controls
99 lines (87 loc) · 2.03 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
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
var path = require("path").posix;
var NodeGit = require("../");
var TreeEntry = NodeGit.TreeEntry;
/**
* Retrieve the blob for this entry. Make sure to call `isBlob` first!
* @async
* @return {Blob}
*/
TreeEntry.prototype.getBlob = function() {
return this.parent.repo.getBlob(this.id());
};
/**
* Retrieve the tree for this entry. Make sure to call `isTree` first!
* @async
* @return {Tree}
*/
TreeEntry.prototype.getTree = function() {
var entry = this;
return this.parent.repo.getTree(this.id()).then(function(tree) {
tree.entry = entry;
return tree;
});
};
/**
* Is this TreeEntry a blob? Alias for `isFile`
* @return {Boolean}
*/
TreeEntry.prototype.isBlob = function() {
return this.isFile();
};
/**
* Is this TreeEntry a directory? Alias for `isTree`
* @return {Boolean}
*/
TreeEntry.prototype.isDirectory = function() {
return this.isTree();
};
/**
* Is this TreeEntry a blob? (i.e., a file)
* @return {Boolean}
*/
TreeEntry.prototype.isFile = function() {
return this.filemode() === TreeEntry.FILEMODE.BLOB ||
this.filemode() === TreeEntry.FILEMODE.EXECUTABLE;
};
/**
* Is this TreeEntry a submodule?
* @return {Boolean}
*/
TreeEntry.prototype.isSubmodule = function() {
return this.filemode() === TreeEntry.FILEMODE.COMMIT;
};
/**
* Is this TreeEntry a tree? (i.e., a directory)
* @return {Boolean}
*/
TreeEntry.prototype.isTree = function() {
return this.filemode() === TreeEntry.FILEMODE.TREE;
};
/**
* Retrieve the SHA for this TreeEntry. Alias for `sha`
* @return {String}
*/
TreeEntry.prototype.oid = function() {
return this.sha();
};
/**
* Returns the path for this entry.
* @return {String}
*/
TreeEntry.prototype.path = function() {
var dirtoparent = this.dirtoparent || "";
return path.join(this.parent.path(), dirtoparent, this.name());
};
/**
* Retrieve the SHA for this TreeEntry.
* @return {String}
*/
TreeEntry.prototype.sha = function() {
return this.id().toString();
};
/**
* Alias for `path`
*/
TreeEntry.prototype.toString = function() {
return this.path();
};