-
Notifications
You must be signed in to change notification settings - Fork 1
/
harprocess.js
222 lines (145 loc) · 6.15 KB
/
harprocess.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
function hide(){
var x = document.getElementById('btnsave');
x.style.display = 'none';
}
function saveFile(e) {
if (results != ""){
var name = document.getElementById('fileinput').value;
var res = name.concat('.txt');
saveData(results, res);
e.preventDefault()}
else {
alert("Please Process the file before clicking 'Save'")
}
}
function saveData(data, fileName) {
var a = document.createElement("a");
document.body.appendChild(a);
a.style = "display: none";
var json = JSON.stringify(data),
blob = new Blob([data], {type: "text/plain;charset=utf-8"}),
url = window.URL.createObjectURL(blob);
a.href = url;
a.download = fileName;
a.click();
window.URL.revokeObjectURL(url);
location.reload();
}
var results="";
function domain_from_url(string1) {
string1=string1.hostname;
var result;
var match;
string1=string1.toString();
var result = string1.replace('http://','').replace('https://','').replace('www.','').split(/[/?#]/)[0];
var result = result.replace('files','').replace('static','').replace('','').split(/[/?#]/)[0];
return result;
}
async function start()
{
let [res1, res2] = await Promise.all([
fetch('https://ipapi.co/json/').then(response => response.json()),
//fetch('http://lslslslslslslslslslslslslslslsls.edns.ip-api.com/json').then(response => response.json()),
]);
//console.log(res1) ;
results=results.concat("\n\n\nUser latitude:",res1.latitude);
results=results.concat("\nUser longitude:",res1.longitude);
console.log(results) ;
}
function ProcFile()
{
start();
var input, file, fr;
var i=0;
if (typeof window.FileReader !== 'function')
{
alert("The file API isn't supported on this browser yet.");
return;
}
input = document.getElementById('fileinput');
if (!input)
{
alert("Um, couldn't find the fileinput element.");
}
else if (!input.files)
{
alert("This browser doesn't seem to support the `files` property of file inputs.");
}
else if (!input.files[0])
{
alert("Please select a file before clicking 'Process'");
}
else {
var x = document.getElementById('btnsave');
x.style.display = 'block';
file = input.files[0];
fr = new FileReader();
fr.onload = receivedText;
fr.readAsText(file);
}
function receivedText(e)
{
let lines = e.target.result;
var newArr = JSON.parse(lines);
var entries = newArr.log.entries;
entries.forEach(inentries);
function inentries(obj)
{
results=results.concat("\n\n\nStarted date Time:",obj.startedDateTime);
results=results.concat("\nWait:",obj.timings.wait);
results=results.concat("\nServer Ip Adress:",obj.serverIPAddress);
if(obj.request.method)
{
results=results.concat("\nMethod:",obj.request.method);
}
if(obj.request.url)
{
let temp1=new URL(obj.request.url);
temp1=domain_from_url(temp1);
//console.log(temp1);
results=results.concat("\nRequest url:",temp1);
}
head=obj.response.headers;
if(head.some(object=>object.name==="content-type"))
{
let obj = head.find(obj => obj.name == 'content-type');
results=results.concat("\nContent Type:",obj.value);
}
if(head.some(object=>object.name==="cache-control"))
{
let obj = head.find(obj => obj.name == 'cache-control');
results=results.concat("\ncache-control:",obj.value);
}
if(head.some(object=>object.name==="pragma"))
{
let obj = head.find(obj => obj.name == 'pragma');
results=results.concat("\npragma:",obj.value);
}
if(head.some(object=>object.name==="expires"))
{
let obj = head.find(obj => obj.name == 'expires');
results=results.concat("\nexpires:",obj.value);
}
if(head.some(object=>object.name==="age"))
{
let obj = head.find(obj => obj.name == 'age');
results=results.concat("\nAge:",obj.value);
}
if(head.some(object=>object.name==="last-modified"))
{
let obj = head.find(obj => obj.name == 'last-modified');
results=results.concat("\nLast-modified:",obj.value);
}
if(head.some(object=>object.name==="host"))
{
let obj = head.find(obj => obj.name == 'host');
results=results.concat("\nHost:",obj.value);
}
if(obj.response.expires)
{
results=results.concat("",obj.expires);
}
//document.getElementById("demo").innerHTML = entries.startedDateTime;
}
}
}