-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtradera.html
79 lines (61 loc) · 2.39 KB
/
tradera.html
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>torimg</title>
<style>
body {
font-family: Arial, sans-serif;
}
img {
display: block;
}
</style>
<script>
const useQueryUrl = function () {
const urlParams = new URLSearchParams(window.location.search);
const url = urlParams.get('url');
if (url) {
document.getElementById('urlInput').value = url;
fetchImages();
}
}
window.onload = function () {
useQueryUrl();
}
const fetchImages = async function () {
try {
document.getElementById('status').innerHTML = 'Loading...';
document.getElementById('imageDiv').innerHTML = '';
const response = await fetch(`https://corsproxy.io/?${document.getElementById('urlInput').value}`);
if (!response.ok) throw new Error('Fetch response not ok', {cause: response});
const data = await response.text();
const parser = new DOMParser();
const doc = parser.parseFromString(data, 'text/html');
console.log(data.search('<!DOCTYPE html>'));
// is desktop view
const images = data.match(/https\:\/\/img.tradera.net\/images(.*?).jpg/g);
const uniqueImages = [...new Set(images)];
console.log(uniqueImages);
for (let image of uniqueImages) {
const img = document.createElement('img');
img.src = image;
document.getElementById('imageDiv').appendChild(img);
}
document.getElementById("urlInput").value = '';
document.getElementById('status').innerHTML = `OK, ${uniqueImages.length} images`;
} catch (error) {
document.getElementById('status').innerHTML = error;
}
}
</script>
</head>
<body>
<input id="urlInput" type="text" size="50" placeholder="Tradera URL" />
<button type="submit" onclick="fetchImages()">Get images</button>
<p id="status"></p>
<div id="imageDiv"></div>
</body>
</html>