forked from AllMangasReader-dev/mirrors
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathEvilFlowers.js
133 lines (132 loc) · 4.7 KB
/
EvilFlowers.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
var EvilFlowers = {
mirrorName : "Evil Flowers",
canListFullMangas : false,
mirrorIcon : "img/evilflowers.png",
languages : "en",
isMe : function (url) {
return (url.indexOf("reader.evilflowers.com/") != -1);
},
getMangaList : function (search, callback) {
$.ajax({
url : "http://reader.evilflowers.com/reader/search/",
type : 'POST',
data : {
'search' : search
},
beforeSend : function (xhr) {
xhr.setRequestHeader("Cache-Control", "no-cache");
xhr.setRequestHeader("Pragma", "no-cache");
},
success : function (objResponse) {
var div = document.createElement("div");
div.innerHTML = objResponse;
var res = [];
$('.list > .group > .title > a', div).each(function (index) {
res[res.length] = [$(this).attr('title'), $(this).attr('href')];
});
callback("Evil Flowers", res);
}
});
},
getListChaps : function (urlManga, mangaName, obj, callback) {
$.ajax({
url : urlManga,
beforeSend : function (xhr) {
xhr.setRequestHeader("Cache-Control", "no-cache");
xhr.setRequestHeader("Pragma", "no-cache");
},
success : function (objResponse) {
var div = document.createElement("div");
div.innerHTML = objResponse;
var res = [];
$('.list > .element > .title > a', div).each(function (index) {
res[res.length] = [$(this).attr('title'), $(this).attr('href')];
});
callback(res, obj);
}
});
},
getInformationsFromCurrentPage : function (doc, curUrl, callback) {
var name = $('.tbtitle div a', doc)[0].title;
var currentChapter = $('.tbtitle div a', doc)[1].text;
var currentMangaURL = $('.tbtitle div a', doc)[0].href;
var currentChapterURL = $('.tbtitle div a', doc)[1].href;
callback({
"name" : name,
"currentChapter" : currentChapter,
"currentMangaURL" : currentMangaURL,
"currentChapterURL" : currentChapterURL
});
},
getListImages : function (doc, curUrl) {
var res = [];
$.ajax({
url : curUrl,
async : false,
success : function (response) {
var div = document.createElement(div);
div.innerHTML = response;
var pages = JSON.parse($(div).html().match(/var pages = .*$/m)[0].replace(/^[^[]*|;$/g, ''));
pages.forEach(function (page) {
res.push(page.url);
});
}
});
return res;
},
removeBanners : function (doc, curUrl) {
$(".ads", doc).remove();
},
whereDoIWriteScans : function (doc, curUrl) {
return $('#page', doc);
},
whereDoIWriteNavigation : function (doc, curUrl) {
return $(".navAMR", doc);
},
isCurrentPageAChapterPage : function (doc, curUrl) {
return (curUrl.search('reader.evilflowers.com/reader/read/') > -1);
},
doSomethingBeforeWritingScans : function (doc, curUrl) {
script = doc.createElement('script');
script.innerText = "$(document).unbind('keydown');";
doc.body.appendChild(script);
$('#page').css("max-width", "none");
$('#page').css("width", "100%");
$("#page", doc).before($("<div class='navAMR'></div>"));
$("#page", doc).after($("<div class='navAMR'></div>"));
$("#page", doc).empty();
$(".navAMR").css("text-align", "center");
$(window).resize(function () {
$('#page').css("max-width", "none");
$('#page').css("width", "100%");
});
},
nextChapterUrl : function (select, doc, curUrl) {
if ($(select).children("option:selected").prev().size() != 0) {
return $(select).children("option:selected").prev().val();
}
return null;
},
previousChapterUrl : function (select, doc, curUrl) {
if ($(select).children("option:selected").next().size() != 0) {
return $(select).children("option:selected").next().val();
}
return null;
},
getImageFromPageAndWrite : function (urlImg, image, doc, curUrl) {
$(image).attr("src", urlImg);
},
isImageInOneCol : function (img, doc, curUrl) {
return false;
},
getMangaSelectFromPage : function (doc, curUrl) {
return null;
},
doAfterMangaLoaded : function (doc, curUrl) {
$("body > div:empty", doc).remove();
}
}
// Call registerMangaObject to be known by includer
if (typeof registerMangaObject == 'function') {
registerMangaObject("Evil Flowers", EvilFlowers);
}