-
Notifications
You must be signed in to change notification settings - Fork 27
/
gist-diff.js
executable file
·166 lines (135 loc) · 3.2 KB
/
gist-diff.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
#!/usr/bin/env node
var https = require( "https" );
var exec = require( "child_process" ).exec;
var open = require( "open" );
var github = require( "github-request" );
var diff = require( "./diff" );
var args = process.argv.slice( 2 );
var publicGist = args.indexOf( "--public" );
var isPublic = publicGist !== -1;
if ( isPublic ) {
args.splice( publicGist, 1 );
}
function getUA() {
var os = require( "os" );
var version = require( "./package.json" ).version;
return os.platform() + "/" + os.release() + " " +
"node/" + process.versions.node + " " +
"gist-diff/" + version;
}
diff( args.join( " " ), function( error, parsedDiff ) {
if ( error ) {
console.log( error );
return;
}
if ( !parsedDiff ) {
console.log( "No differences" );
return;
}
var files = {};
for ( var file in parsedDiff ) {
files[ file.replace( /\//g, "-" ) + ".diff" ] = {
content: parsedDiff[ file ].join( "\n" )
};
}
getAuth(function( error, auth ) {
if ( error ) {
console.log( error );
return;
}
postGist({
"public": isPublic,
files: files
}, auth, showGist );
});
});
function postGist( settings, auth, fn ) {
var headers = { "user-agent": getUA() };
if ( auth ) {
headers.Authorization = auth;
}
github.request({
path: "/gists",
method: "POST",
headers: headers
}, settings, fn );
}
function showGist( error, data ) {
if ( error ) {
console.log( error );
return;
}
if ( data.html_url ) {
open( data.html_url );
} else {
console.log( data.message );
}
}
function getGitConfig( name, fn ) {
exec( "git config --get " + name, function( error, stdout ) {
if ( error ) {
if ( /^Command failed:\s+$/.test( error.message ) ) {
return fn( null, null );
}
return fn( error );
}
fn( null, stdout.trim() );
});
}
function getUsername( fn ) {
getGitConfig( "github.user", function( error, username ) {
if ( error ) {
return fn( error );
}
if ( username ) {
return fn( null, username );
}
process.stdout.write( "GitHub username (leave blank for anonymous gist): " );
process.stdin.resume();
process.stdin.setEncoding( "utf8" );
process.stdin.once( "data", function( chunk ) {
process.stdin.pause();
fn( null, chunk.trim() );
});
});
}
function getPassword( username, fn ) {
process.stdout.write( "GitHub password for " + username + ": " );
process.stdin.resume();
process.stdin.setEncoding( "utf8" );
process.stdin.setRawMode( true );
var password = "";
process.stdin.on( "data", function( chunk ) {
if ( chunk.charCodeAt( 0 ) === 13 ) {
process.stdin.pause();
console.log( "" );
fn( password );
return;
}
password += chunk;
});
}
function getAuth( fn ) {
getGitConfig( "gist-diff.token", function( error, token ) {
if ( token ) {
return fn( null, "token " + token );
}
getUsername(function( error, username ) {
if ( error ) {
return fn( error );
}
// No username, create anonymous gist
if ( !username ) {
return fn( null, null );
}
getPassword( username, function( password ) {
// No password, create anonymous gist
if ( !password ) {
return fn( null, null );
}
fn( null, "Basic " +
new Buffer( username + ":" + password ).toString( "base64" ) );
});
});
});
}