-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathxhrDownload.js
68 lines (57 loc) · 2.34 KB
/
xhrDownload.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
/**
*
* @summary welcome to crazy wario's wario microgame emporium
*/
function xmlhttpReq2(url)
{
var xhr = new XMLHttpRequest();
xhr.onload = function() {
console.log("xhr SENT")
}
xhr.open("GET", url);
xhr.responseType = "document";
xhr.send();
xhr.onreadystatechange = function() {
if (this.readyState == 4) {
xhr_received_page = this.responseXML
//if image link is undefined (if not an image)
if ($(this.responseXML.body).find("div#content").find("div#post-view").find("div.content").find("div#post-content").find("#image-link").find("img").attr("src") == undefined)
{
//preview source link
var v = $(this.responseXML.body).find("div#content").find("div#post-view").find("div.content").find("div#post-content").find("#image-link").find("img").attr("src");
var y = $(this.responseXML.body).find("div#content").find("div#post-view").find("div.content").find("div#post-content").find("#image-link").attr("href");
//download link for videos (unused probably)
downloadLink = $(this.responseXML.body).find("div#content").find("div#post-view").find("div.content").find("div#post-content").find("video").attr("src")
bcacher_save_file(downloadLink, false, undefined,
function() {
var use = ""
getImageTags(xhr_received_page).forEach(tag => {
if (tag.type == "character_tag")
{
use = use.concat(tag.tag + " ")
}
});
use = use.trimEnd()
use = use.replaceAll(":", "_")
return use;
}()
)
}
else{
var v = $(this.responseXML.body).find("div#content").find("div#post-view").find("div.content").find("div#post-content").find("#image-link").find("img").attr("src");
var y = $(this.responseXML.body).find("div#content").find("div#post-view").find("div.content").find("div#post-content").find("#image-link").attr("href");
//download link for images
if (y === undefined)
{
downloadLink = v
bcacher_save_file(downloadLink)
}
else
{
downloadLink = y
bcacher_save_file(downloadLink)
}
}
}
}
}