-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathMangaAr.js
140 lines (140 loc) · 5.16 KB
/
MangaAr.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
var MangaAr = {
mirrorName : "Manga Ar",
canListFullMangas : false,
mirrorIcon : "img/mangaar.png",
languages : "ar",
isMe : function (url) {
return (url.indexOf("manga-ar.com/") != -1);
},
getMangaList : function (search, callback) {
$.ajax({
url : "http://manga-ar.com/directory.php?action=search&SeriesName=" + 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 = [];
$("td.list > a", div).each(function (index) {
res[res.length] = [$(this).text(), $(this).attr("href")];
});
$("td.color > a", div).each(function (index) {
res[res.length] = [$(this).text(), $(this).attr("href")];
});
callback("Manga Ar", 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 = [];
$("#newspaper-b3 tbody tr td:nth-child(6) > a", div).each(function (index) {
res[res.length] = [$(this).text(), $(this).attr("href")];
});
callback(res, obj);
}
});
},
getInformationsFromCurrentPage : function (doc, curUrl, callback) {
var name;
var currentChapter;
var currentMangaURL;
var currentChapterURL;
name = $(".indexer a:nth-child(2)", doc).text();
var SeriesID = $("#SeriesID", doc).val();
var ChapterID = $("#ChapterID", doc).val();
currentMangaURL = "http://manga-ar.com/" + SeriesID + "/";
currentChapter = $("#ChapterID:first option:selected", doc).text();
currentChapterURL = "http://manga-ar.com/" + SeriesID + "/" + ChapterID + "/1";
callback({
"name" : name,
"currentChapter" : currentChapter,
"currentMangaURL" : currentMangaURL,
"currentChapterURL" : currentChapterURL
});
},
getListImages : function (doc, curUrl) {
var res = [];
var SeriesID = $("#SeriesID", doc).val();
var ChapterID = $("#ChapterID", doc).val();
$("#PageID:first option", doc).each(function (index) {
res[res.length] = "http://manga-ar.com/" + SeriesID + "/" + ChapterID + "/" + $(this).val();
});
return res;
},
removeBanners : function (doc, curUrl) {
$("#aswift_0_anchor", doc).remove();
$("#aswift_1_anchor", doc).remove();
$("#aswift_2_anchor", doc).remove();
},
whereDoIWriteScans : function (doc, curUrl) {
return $("#PagePhoto", doc);
},
whereDoIWriteNavigation : function (doc, curUrl) {
return $("#newspaper-b4", doc);
},
isCurrentPageAChapterPage : function (doc, curUrl) {
return ($("img.manga-pic2", doc).size() > 0);
},
doSomethingBeforeWritingScans : function (doc, curUrl) {
$("#newspaper-b4", doc).empty();
$("#newspaper-b4:last", doc).remove();
$("#newspaper-b4:last", doc).remove();
$("#newspaper-b4", doc).css("text-align", "center");
$("#PagePhoto", doc).empty();
$("#content2", doc).css("width", "auto");
$(".gallery", doc).css("background", "black");
},
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) {
$.ajax({
url : urlImg,
success : function (objResponse) {
var div = document.createElement("div");
div.innerHTML = objResponse;
var src = $("img.manga-pic2", div).attr("src");
$(image).attr("src", src);
}
});
},
isImageInOneCol : function (img, doc, curUrl) {
return false;
},
getMangaSelectFromPage : function (doc, curUrl) {
var res = [];
var currentMangaURL = "http://manga-ar.com/" + $("select[name='manga']:first option:selected", doc).val();
var SeriesID = $("#SeriesID", doc).val();
$("#ChapterID option", doc).each(function (index) {
$(this).val("http://manga-ar.com/" + SeriesID + "/" + $(this).val() + "/1");
});
return $("#ChapterID:first", doc);
},
doAfterMangaLoaded : function (doc, curUrl) {
$("body > div:empty", doc).remove();
}
}
// Call registerMangaObject to be known by includer
if (typeof registerMangaObject == 'function') {
registerMangaObject("Manga Ar", MangaAr);
}