-
Notifications
You must be signed in to change notification settings - Fork 0
/
contentScript.js
223 lines (185 loc) · 7.92 KB
/
contentScript.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
let popup = false;
/* Send call to service worker */
async function handlePinClick() {
const result = await chrome.runtime.sendMessage({ type: "get" });
const cidLabel = document.getElementsByClassName("ipfs-cid-text")[0];
const cid = cidLabel.innerText.split(" ")[2];
const nameLabel = document.getElementsByClassName("name-text")[0];
const fileName = nameLabel.innerText.split(" ")[1];
const response = await fetch(`http://${JSON.parse(result).node_ip}:${JSON.parse(result).node_port}/api/v0/pin/add?arg=${cid}&recursive=true`, {
method: 'POST',
});
let mfs_response;
if (JSON.parse(result).node_dir != undefined && JSON.parse(result).node_dir.length > 1) {
mfs_response = await fetch(`http://${JSON.parse(result).node_ip}:${JSON.parse(result).node_port}/api/v0/files/cp?arg=/ipfs/${cid}&arg=${JSON.parse(result).node_dir}/${fileName}`, {
method: 'POST',
});
} else {
mfs_response = await fetch(`http://${JSON.parse(result).node_ip}:${JSON.parse(result).node_port}/api/v0/files/cp?arg=/ipfs/${cid}&arg=/${fileName}`, {
method: 'POST',
});
}
if (response.status === 200 && mfs_response.status === 200) {
alert("Successfully pinned!")
} else {
alert("Failed to pin")
}
}
async function handleDownloadClick() {
const result = await chrome.runtime.sendMessage({ type: "get" });
const label = document.getElementsByClassName("ipfs-cid-text")[0]
const cid = label.innerText.split(" ")[2]
const response = await fetch(`http://${JSON.parse(result).node_ip}:${JSON.parse(result).node_port}/api/v0/get?arg=${cid}`, {
method: 'POST',
});
if (response.status === 200) {
alert("Successfully downloaded!")
} else {
alert("Failed to download")
}
}
/*
Get ipfs metadata if popup is displayed
*/
async function getIPFSMetadata() {
let cid = undefined;
// Wait for a CID to be present
while (cid === undefined) {
const label = document.getElementsByClassName("ipfs-cid-text")[0]
if (label) {
cid = label.innerText.split(" ")[2]
console.log(cid)
break;
}
await delay(500)
}
// Fetch details with node
if (cid) {
const pins = document.getElementsByClassName("pins")[0]
pins.innerText = `Fetching ipfs node data...`
const result = await chrome.runtime.sendMessage({ type: "get" });
const response = await fetch(`http://${JSON.parse(result).node_ip}:${JSON.parse(result).node_port}/api/v0/routing/findprovs?arg=${cid}`, {
method: 'POST',
});
const res = await response.text();
const peers = res.split('"Type":4').length - 1
if (response.status === 200) {
const pins = document.getElementsByClassName("pins")[0]
pins.innerText = `Pinned on ${peers} IPFS nodes`
return;
} else {
alert("Failed to get IPFS metadata!")
}
}
}
async function handleMultiPinClick() {
const result = await chrome.runtime.sendMessage({ type: "get" });
const label = document.getElementById("cidArray");
const cids = label.innerText;
for (let x = 0; x < JSON.parse(cids).length; x++) {
let cid = JSON.parse(cids)[x];
const response = await fetch(`http://${JSON.parse(result).node_ip}:${JSON.parse(result).node_port}/api/v0/pin/add?arg=${cid}&recursive=true`, {
method: 'POST',
});
let mfs_response;
if (JSON.parse(result).node_dir != undefined && JSON.parse(result).node_dir.length > 1) {
mfs_response = await fetch(`http://${JSON.parse(result).node_ip}:${JSON.parse(result).node_port}/api/v0/files/cp?arg=/ipfs/${cid}&arg=${JSON.parse(result).node_dir}/${fileName}`, {
method: 'POST',
});
} else {
mfs_response = await fetch(`http://${JSON.parse(result).node_ip}:${JSON.parse(result).node_port}/api/v0/files/cp?arg=/ipfs/${cid}&arg=/${fileName}`, {
method: 'POST',
});
}
if (response.status !== 200 && mfs_response.status !== 200) {
alert("Failed to pin, continuing")
}
}
alert("Successfully pinned!")
}
async function handleMultiPinClick() {
const result = await chrome.runtime.sendMessage({ type: "get" });
const label = document.getElementById("cidArray");
const cids = label.innerText;
for (let x = 0; x < JSON.parse(cids).length; x++) {
let cid = JSON.parse(cids)[x];
const response = await fetch(`http://${JSON.parse(result).node_ip}:${JSON.parse(result).node_port}/api/v0/pin/add?arg=${cid}&recursive=true`, {
method: 'POST',
});
let mfs_response;
if (JSON.parse(result).node_dir != undefined && JSON.parse(result).node_dir.length > 1) {
mfs_response = await fetch(`http://${JSON.parse(result).node_ip}:${JSON.parse(result).node_port}/api/v0/files/cp?arg=/ipfs/${cid}&arg=${JSON.parse(result).node_dir}/${fileName}`, {
method: 'POST',
});
} else {
mfs_response = await fetch(`http://${JSON.parse(result).node_ip}:${JSON.parse(result).node_port}/api/v0/files/cp?arg=/ipfs/${cid}&arg=/${fileName}`, {
method: 'POST',
});
}
if (response.status !== 200 && mfs_response.status !== 200) {
alert("Failed to pin, continuing")
}
}
alert("Successfully pinned!")
}
async function handleExportClick() {
const result = await chrome.runtime.sendMessage({ type: "get" });
const label = document.getElementById("exportFeatures");
let features = JSON.parse(label.innerText);
const geojson = {
"type": "FeatureCollection",
"crs": {
"type": "name",
"properties": {
"name": "urn:ogc:def:crs:EPSG::4269"
}
},
features: features
}
console.log(geojson)
// Create form data and blob to post
const blob = new Blob([JSON.stringify(geojson, null, 4)], { type: 'application/json' });
const formData = new FormData();
const filename = `export_${Math.floor(Math.random() * 100)}.geojson`
formData.append('file', blob, filename);
try {
const response = await fetch(`http://${JSON.parse(result).node_ip}:${JSON.parse(result).node_port}/api/v0/add?to-files=${filename}`, {
method: "POST",
body: formData,
redirect: "follow"
});
const response_text = await response.text();
const cid = JSON.parse(response_text).Hash;
if (JSON.parse(result).node_dir != undefined && JSON.parse(result).node_dir.length > 1) {
mfs_response = await fetch(`http://${JSON.parse(result).node_ip}:${JSON.parse(result).node_port}/api/v0/files/cp?arg=/ipfs/${cid}&arg=${JSON.parse(result).node_dir}/${filename}`, {
method: 'POST',
});
} else {
mfs_response = await fetch(`http://${JSON.parse(result).node_ip}:${JSON.parse(result).node_port}/api/v0/files/cp?arg=/ipfs/${cid}&arg=/${filename}`, {
method: 'POST',
});
}
alert("Successfully exported!");
} catch (error) {
console.error(error);
alert("Failed to export!")
}
}
const delay = ms => new Promise(res => setTimeout(res, ms));
/* Handle clicks */
document.addEventListener('click', function (event) {
/* Add event listener to pinButton ID */
console.log(event.target);
if (event.target.matches('#pinButton')) {
handlePinClick();
}
else if (event.target.matches('#downloadButton')) {
handleDownloadClick();
} else if (event.target.matches('.mapboxgl-canvas')){
getIPFSMetadata();
} else if (event.target.matches('#multiPin')){
handleMultiPinClick();
} else if (event.target.matches('#export')){
handleExportClick();
}
});