-
Notifications
You must be signed in to change notification settings - Fork 0
/
popup.js
304 lines (227 loc) · 10.6 KB
/
popup.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
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
document.addEventListener('DOMContentLoaded', function () {
console.log('JSZip:', typeof JSZip); // This should log 'function' if JSZip is correctly loaded
// document.addEventListener('DOMContentLoaded', async () => {
const navToZillowBtn = document.getElementById('navToZillow');
const extractImgsBtn = document.getElementById('extractImgs');
const navToImagesBtn = document.getElementById('navToImages');
const messageDiv = document.getElementById('message');
const imageUrlsDiv = document.getElementById('imageUrls');
const addressInput = document.getElementById('address');
const addressInput2 = document.getElementById('address2');
const cityInput = document.getElementById('city');
const stateInput = document.getElementById('state');
const zipcodeInput = document.getElementById('zipcode');
const goToAddressButton = document.getElementById('goToAddress');
// const buttonGallery = document.querySelector('button[data-cy="gallery-see-all-photos-button"]');
chrome.tabs.query({ active: true, currentWindow: true }, (tabs) => {
const currentTab = tabs[0];
const url = new URL(currentTab.url);
if (!url.hostname.includes('zillow.com')) {
navToZillowBtn.classList.remove('hidden');
} else {
chrome.scripting.executeScript(
{
target: { tabId: currentTab.id },
function: checkForListingPage
},
(results) => {
if (results && results[0] && results[0].result) {
extractImgsBtn.classList.remove('hidden');
messageDiv.classList.remove('hidden');
messageDiv.textContent = 'First, scroll down the gallery page to reveal all images before clicking Extract Images..';
} else {
chrome.scripting.executeScript(
{
target: { tabId: currentTab.id },
function: checkForCktieee
},
(results2) => {
if (results2 && results2[0] && results2[0].result) {
navToImagesBtn.classList.remove('hidden');
} else {
messageDiv.classList.remove('hidden');
messageDiv.textContent = 'Simply navigate to a ACTIVE listing page of choice to see options';
}
}
);
}
}
);
}
});
goToAddressButton.addEventListener('click', () => {
const address = addressInput.value.trim().replace(/\s+/g, '-');
const address2 = addressInput2.value.trim().replace(/\s+/g, '-');
const city = cityInput.value.trim().replace(/\s+/g, '-');
const state = stateInput.value;
const zipcode = zipcodeInput.value.trim();
if (!address2){
if (!address || !city || !state || !zipcode) {
alert('Please fill in all fields');
return;
}else{
const urlString = `https://www.zillow.com/homes/${address}-${city}-${state}-${zipcode}_rb/`;
chrome.tabs.create({ url:urlString });
}
}else{
const urlString = `https://www.zillow.com/homes/${address2}_rb/`;
chrome.tabs.create({ url:urlString });
}
chrome.tabs.create({ url:urlString });
});
navToImagesBtn.addEventListener('click', async () => {
const [tab] = await chrome.tabs.query({ active: true, currentWindow: true });
chrome.scripting.executeScript(
{
target: { tabId: tab.id },
function: () => {
const button = document.querySelector('button[data-cy="gallery-see-all-photos-button"]');
if (button) {
button.click();
} else {
console.error('Button not found');
}
}
},
);
navToImagesBtn.classList.add('hidden');
extractImgsBtn.classList.remove('hidden');
messageDiv.classList.remove('hidden');
messageDiv.textContent = 'First, scroll down the gallery page to reveal all images before clicking Extract Images..';
});
navToZillowBtn.addEventListener('click', () => {
chrome.tabs.create({ url: 'https://www.zillow.com' });
});
extractImgsBtn.addEventListener('click', async () => {
const [tab] = await chrome.tabs.query({ active: true, currentWindow: true });
chrome.scripting.executeScript(
{
target: { tabId: tab.id },
function: extractImages
},
(results) => {
if (results && results[0] && results[0].result) {
displayImageUrls(results[0].result);
}
}
);
extractImgsBtn.classList.add('hidden');
});
function forceDownload(link) {
var url = link.getAttribute("data-href");
var fileName = link.getAttribute("download");
link.innerText = "Working...";
var xhr = new XMLHttpRequest();
xhr.open("GET", url, true);
xhr.responseType = "blob";
xhr.onload = function() {
var urlCreator = window.URL || window.webkitURL;
var imageUrl = urlCreator.createObjectURL(this.response);
var tag = document.createElement('a');
tag.href = imageUrl;
tag.download = fileName;
document.body.appendChild(tag);
tag.click();
document.body.removeChild(tag);
link.innerText = "Download Image";
};
xhr.send();
}
async function downloadAllImages(imageUrls) {
if (typeof JSZip === 'undefined') {
console.error('JSZip is not loaded');
return;
}
const zip = new JSZip();
const imgFolder = zip.folder("images");
for (let i = 0; i < imageUrls.length; i++) {
const url = imageUrls[i];
const response = await fetch(url);
const blob = await response.blob();
const fileName = `Image-${i + 1}.jpg`;
imgFolder.file(fileName, blob);
}
// zip.generateAsync({ type: "blob" }).then(function(content) {
// const link = document.createElement('a');
// link.href = URL.createObjectURL(content);
// // link.download = "images.zip";
// link.download = document.title + ".zip"; // Set the filename to the page title
// document.body.appendChild(link);
// link.click();
// document.body.removeChild(link);
// });
chrome.tabs.query({ active: true, currentWindow: true }, (tabs) => {
chrome.scripting.executeScript(
{
target: { tabId: tabs[0].id },
func: () => document.title,
},
(results) => {
const pageTitle = results[0].result;
// Assuming zip is already generated and available
zip.generateAsync({ type: "blob" }).then(function(content) {
const link = document.createElement('a');
link.href = URL.createObjectURL(content);
const SantpageTitle = pageTitle.replace(/\s+/g, '_');
link.download = "Property_images__" + SantpageTitle + ".zip"; // Set the filename to the page title
document.body.appendChild(link);
link.click();
document.body.removeChild(link);
});
}
);
});
}
function displayImageUrls(imageUrls) {
imageUrlsDiv.classList.remove('hidden');
imageUrlsDiv.innerHTML = '<h3>Extracted Images:</h3>';
const downloadAllButton = document.createElement('button');
downloadAllButton.textContent = "Download All";
downloadAllButton.classList.add('dlall');
downloadAllButton.onclick = function() { downloadAllImages(imageUrls); };
imageUrlsDiv.appendChild(downloadAllButton);
imageUrls.forEach((url, index) => {
const div = document.createElement('div');
div.classList.add('image-container');
const img = document.createElement('img');
img.src = url;
const downloadLink = document.createElement('a');
downloadLink.href = '#';
downloadLink.setAttribute('data-href', url);
downloadLink.setAttribute('download', `Image-${index + 1}.jpg`);
downloadLink.classList.add('download-link');
downloadLink.textContent = 'Download';
downloadLink.onclick = function(event) {
event.preventDefault(); // Prevent default action
forceDownload(downloadLink);
};
div.appendChild(img);
div.appendChild(downloadLink);
imageUrlsDiv.appendChild(div);
});
}
});
function checkForListingPage() {
return !!document.querySelector('section#viw-modal');
}
function checkForCktieee() {
// return !!document.querySelector('span.cktiee');
return !!document.querySelector('button[data-cy="gallery-see-all-photos-button"]');
}
function checkForIxkFNb() {
return !!document.querySelector('span.ixkFNb');
}
function extractImages() {
const container = document.querySelector('section#viw-modal ul');
const imageUrls = [];
if (container) {
const images = container.querySelectorAll('li picture > img');
images.forEach(img => {
if (img.src) {
imageUrls.push(img.src);
}
});
}
return imageUrls;
// }
};