ngrok.js
11.3 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
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
var ngrok = angular.module("ngrok", ["ngSanitize"]);
var hexRepr = function(bytes) {
var buf = [];
var ascii = [];
for (var i=0; i<bytes.length; ++i) {
var b = bytes[i];
if (!(i%8) && i!=0) {
buf.push("\t");
buf.push.apply(buf, ascii)
buf.push('\n');
ascii = [];
}
if (b < 16) {
buf.push("0");
}
if (b < 0x20 || b > 0x7e) {
ascii.push('.');
} else {
ascii.push(String.fromCharCode(b));
}
buf.push(b.toString(16));
buf.push(" ");
ascii.push(" ");
}
if (ascii.length > 0) {
var charsLeft = 8 - (ascii.length / 2);
for (i=0; i<charsLeft; ++i) {
buf.push(" ");
}
buf.push("\t");
buf.push.apply(buf, ascii);
}
return buf.join("");
}
ngrok.factory("txnSvc", function() {
var processBody = function(body, binary) {
body.binary = binary;
body.isForm = body.ContentType == "application/x-www-form-urlencoded";
body.exists = body.Length > 0;
body.hasError = !!body.Error;
var syntaxClass = {
"text/xml": "xml",
"application/xml": "xml",
"text/html": "xml",
"text/css": "css",
"application/json": "json",
"text/javascript": "javascript",
"application/javascript": "javascript",
}[body.ContentType];
// decode body
if (binary) {
body.Text = "";
} else {
body.Text = Base64.decode(body.Text).text;
}
// prettify
var transform = {
"xml": "xml",
"json": "json"
}[syntaxClass];
if (!body.hasError && !!transform) {
try {
// vkbeautify does poorly at formatting html
if (body.ContentType != "text/html") {
body.Text = vkbeautify[transform](body.Text);
}
} catch (e) {
}
}
if (!!syntaxClass) {
body.Text = hljs.highlight(syntaxClass, body.Text).value;
} else {
// highlight.js doesn't have a 'plaintext' syntax, so we'll just copy its escaping function.
body.Text = body.Text.replace(/&/gm, '&').replace(/</gm, '<').replace(/>/gm, '>');
}
};
var processReq = function(req) {
if (!req.RawBytes) {
var decoded = Base64.decode(req.Raw);
req.RawBytes = hexRepr(decoded.bytes);
if (!req.Binary) {
req.RawText = decoded.text;
}
}
processBody(req.Body, req.Binary);
};
var processResp = function(resp) {
resp.statusClass = {
'2': "text-info",
'3': "muted",
'4': "text-warning",
'5': "text-error"
}[resp.Status[0]];
if (!resp.RawBytes) {
var decoded = Base64.decode(resp.Raw);
resp.RawBytes = hexRepr(decoded.bytes);
if (!resp.Binary) {
resp.RawText = decoded.text;
}
}
processBody(resp.Body, resp.Binary);
};
var processTxn = function(txn) {
processReq(txn.Req);
processResp(txn.Resp);
};
var preprocessTxn = function(txn) {
var toFixed = function(value, precision) {
var power = Math.pow(10, precision || 0);
return String(Math.round(value * power) / power);
}
// parse nanosecond count
var ns = txn.Duration;
var ms = ns / (1000 * 1000);
txn.Duration = ms;
if (ms > 1000) {
txn.Duration = toFixed(ms / 1000, 2) + "s";
} else {
txn.Duration = toFixed(ms, 2) + "ms";
}
};
var active;
var txns = window.data.Txns;
txns.forEach(function(t) {
preprocessTxn(t);
});
var activate = function(txn) {
if (!txn.processed) {
processTxn(txn);
txn.processed = true;
}
active = txn;
}
if (txns.length > 0) {
activate(txns[0]);
}
return {
add: function(txnData) {
txns.unshift(JSON.parse(txnData));
preprocessTxn(txns[0]);
if (!active) {
activate(txns[0]);
}
},
all: function() {
return txns;
},
active: function(txn) {
if (!txn) {
return active;
} else {
activate(txn);
}
},
isActive: function(txn) {
return !!active && txn.Id == active.Id;
}
};
});
ngrok.directive({
"keyval": function() {
return {
scope: {
title: "@",
tuples: "=",
},
replace: true,
restrict: "E",
template: "" +
'<div ng-show="hasKeys()">' +
'<h6>{{title}}</h6>' +
'<table class="table params">' +
'<tr ng-repeat="(key, value) in tuples">' +
'<th>{{ key }}</th>' +
'<td>{{ value }}</td>' +
'</tr>' +
'</table>' +
'</div>',
link: function($scope) {
$scope.hasKeys = function() {
for (key in $scope.tuples) { return true; }
return false;
};
}
};
},
"tabs": function() {
return {
scope: {
"tabs": "@",
"btn": "@",
"onbtnclick": "&"
},
replace: true,
template: '' +
'<ul class="nav nav-pills">' +
'<li ng-repeat="tab in tabNames" ng-class="{\'active\': isTab(tab)}">' +
'<a href="" ng-click="setTab(tab)">{{tab}}</a>' +
'</li>' +
'<li ng-show="!!btn" class="pull-right"> <button class="btn btn-primary" ng-click="onbtnclick()">{{btn}}</button></li>' +
'</ul>',
link: function postLink(scope, element, attrs) {
scope.tabNames = attrs.tabs.split(",");
scope.activeTab = scope.tabNames[0];
scope.setTab = function(t) {
scope.activeTab = t;
};
scope.$parent.isTab = scope.isTab = function(t) {
return t == scope.activeTab;
};
},
};
},
"body": function() {
return {
scope: {
"body": "=",
"binary": "="
},
template: '' +
'<h6 ng-show="body.exists">' +
'{{ body.Length }} bytes ' +
'{{ body.RawContentType }}' +
'</h6>' +
'' +
'<div ng-show="!body.isForm && !body.binary">' +
'<pre ng-show="body.exists"><code ng-bind-html="body.Text"></code></pre>' +
'</div>' +
'' +
'<div ng-show="body.isForm">' +
'<keyval title="Form Params" tuples="body.Form">' +
'</div>' +
'<div ng-show="body.hasError" class="alert">' +
'{{ body.Error }}' +
'</div>',
link: function($scope, $elem) {
$scope.$watch(function() { return $scope.body; }, function() {
if ($scope.body && $scope.body.ErrorOffset > -1) {
var offset = $scope.body.ErrorOffset;
function textNodes(node) {
var textNodes = [];
function getTextNodes(node) {
if (node.nodeType == 3) {
textNodes.push(node);
} else {
for (var i = 0, len = node.childNodes.length; i < len; ++i) {
getTextNodes(node.childNodes[i]);
}
}
}
getTextNodes(node);
return textNodes;
}
var tNodes = textNodes($elem.find("code").get(0));
for (var i=0; i<tNodes.length; i++) {
offset -= tNodes[i].nodeValue.length;
if (offset < 0) {
$(tNodes[i]).parent().css("background-color", "orange");
break;
}
}
}
});
}
};
}
});
ngrok.controller({
"HttpTxns": function($scope, txnSvc) {
$scope.tunnels = window.data.UiState.Tunnels;
$scope.txns = txnSvc.all();
if (!!window.WebSocket) {
var ws = new WebSocket("ws://" + location.host + "/_ws");
ws.onopen = function() {
console.log("connected websocket for real-time updates");
};
ws.onmessage = function(message) {
$scope.$apply(function() {
txnSvc.add(message.data);
});
};
ws.onerror = function(err) {
console.log("Web socket error:")
console.log(err);
};
ws.onclose = function(cls) {
console.log("Web socket closed:" + cls);
};
}
},
"HttpRequest": function($scope, txnSvc) {
$scope.replay = function() {
$.ajax({
type: "POST",
url: "/http/in/replay",
data: { txnid: txnSvc.active().Id }
});
}
var setReq = function() {
var txn = txnSvc.active();
if (!!txn && txn.Req) {
$scope.Req = txnSvc.active().Req;
} else {
$scope.Req = null;
}
};
$scope.$watch(function() { return txnSvc.active() }, setReq);
},
"HttpResponse": function($scope, $element, txnSvc) {
var setResp = function() {
var txn = txnSvc.active();
if (!!txn && txn.Resp) {
$scope.Resp = txnSvc.active().Resp;
} else {
$scope.Resp = null;
}
};
$scope.$watch(function() { return txnSvc.active() }, setResp);
},
"TxnNavItem": function($scope, txnSvc) {
$scope.isActive = function() { return txnSvc.isActive($scope.txn); }
$scope.makeActive = function() {
txnSvc.active($scope.txn);
};
},
"HttpTxn": function($scope, txnSvc, $timeout) {
var setTxn = function() {
$scope.Txn = txnSvc.active();
};
$scope.ISO8601 = function(ts) {
if (!!ts) {
return new Date(ts * 1000).toISOString();
}
};
$scope.TimeFormat = function(ts) {
if (!!ts) {
return $.timeago($scope.ISO8601(ts));
}
};
$scope.$watch(function() { return txnSvc.active() }, setTxn);
// this causes angular to update the timestamps
setInterval(function() { $scope.$apply(function() {}); }, 30000);
},
});