-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathhttprequest.js
80 lines (69 loc) · 3.5 KB
/
httprequest.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
/**make XMLHttpRequest with PID and image DOM element (2nd var UNUSED) ((DOUBLE SYKE IT ACTUALLY IS USED!!! FUCK*/
function xmlhttpReq(pid, e, isPreview = true, isContextMenu = false, ind, limit)
{
var xhr = new XMLHttpRequest();
xhr.onload = function() {
// console.log("xhr SENT")
}
xhr.open("GET", "https://chan.sankakucomplex.com/posts/"+pid);
xhr.responseType = "document";
xhr.send();
return new Promise(function (resolve, reject) {
xhr.onreadystatechange = function() {
if (this.readyState !== 4) return;
if (this.status >= 200 && this.status < 300) {
xhr_received_page = this.responseXML
//log image url
console.log("image link: "+$(this.responseXML.body).find("div#content").find("div#post-view").find("div.content").find("div#post-content").find("#image-link").find("img").attr("src"))
//log video url
console.log("video link: "+$(this.responseXML.body).find("div#content").find("div#post-view").find("div.content").find("div#post-content").find("video").find("source").attr("src"))
//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)
{
if (isPreview)
{
$("#preview-all_container").remove()
makeVideoPlayer(e)
$(".preview_image_or_video_tag").attr("src", $(this.responseXML.body).find("div#content").find("div#post-view").find("div.content").find("div#post-content").find("video").find("source").attr("src"))
}
//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").find("source").attr("src")
}
else{
if (isPreview)
{
$(".preview_image_or_video_tag").attr("src", $(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 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
}
else
{
downloadLink = y
}
}
if (isContextMenu)
{
getTheGodDamnLink3()
}
resolve(this.responseXML)
}
else{
console.log("request failed")
if (this.status == 429)
{
chrome.runtime.sendMessage({message: "alert", value: "Rate limited - " + ind + " out of " + limit + " images downloaded"})
}
reject(ind + 1, this.status)
}
uploadDate = $(this.responseXML.body).find("#stats").find("a")[0].title.substr(0, 10)
}
});
}