-
Notifications
You must be signed in to change notification settings - Fork 700
Expand file tree
/
Copy pathtree_entry.js
More file actions
92 lines (81 loc) · 1.99 KB
/
Copy pathtree_entry.js
File metadata and controls
92 lines (81 loc) · 1.99 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
var git = require('../'),
TreeEntry = git.TreeEntry,
path = require('path');
/**
* Refer to vendor/libgit2/include/git2/types.h for filemode definitions.
*
* @readonly
* @enum {Integer}
*/
TreeEntry.FileMode = {
/** 0000000 */ New: 0,
/** 0040000 */ Tree: 16384,
/** 0100644 */ Blob: 33188,
/** 0100755 */ Executable: 33261,
/** 0120000 */ Link: 40960,
/** 0160000 */ Commit: 57344
};
/**
* 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 tree? (i.e., a directory)
* @return {Boolean}
*/
TreeEntry.prototype.isTree = function() {
return this.filemode() === TreeEntry.FileMode.Tree;
};
/**
* Is this TreeEntry a directory? Alias for `isTree`
* @return {Boolean}
*/
TreeEntry.prototype.isDirectory = TreeEntry.prototype.isTree;
/**
* Is this TreeEntry a blob? Alias for `isFile`
* @return {Boolean}
*/
TreeEntry.prototype.isBlob = TreeEntry.prototype.isFile;
/**
* Retrieve the SHA for this TreeEntry.
* @return {String}
*/
TreeEntry.prototype.sha = function() {
return this.oid().sha();
};
/**
* Retrieve the tree for this entry. Make sure to call `isTree` first!
* @return {Tree}
*/
TreeEntry.prototype.getTree = function(callback) {
var self = this;
this.parent.repo.getTree(this.oid(), function(error, tree) {
if (error) return callback(error);
tree.entry = self;
callback(null, tree);
});
};
/**
* Retrieve the tree for this entry. Make sure to call `isTree` first!
* @return {Blob}
*/
TreeEntry.prototype.getBlob = function(callback) {
this.parent.repo.getBlob(this.oid(), callback);
};
/**
* Returns the path for this entry.
* @return {String}
*/
TreeEntry.prototype.path = function(callback) {
return path.join(this.parent.path(), this.name());
};
/**
* Alias for `path`
*/
TreeEntry.prototype.toString = function() {
return this.path();
};