-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathroute.js
More file actions
168 lines (142 loc) · 4.33 KB
/
route.js
File metadata and controls
168 lines (142 loc) · 4.33 KB
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
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
/**
* These router focuses on fetching data from baseURL (targetURL)
* to give to the parser function and then return the data with json format.
*/
import axios from "axios";
import * as cheerio from "cheerio";
//local import
import { headerOPT, baseURL } from "./settings.js";
import {
parseAnimeDetail,
parseAnimeList,
parseAnimeStream,
parsePage,
} from "./parser.js";
async function routeAnimeSearch(req, res) {
let json = {
status: "",
searchName: req.params.searchName,
orderBy: req.params.orderBy || "latest",
page: req.params.page || "1",
lastPage: "1",
data: [],
};
let targetURL = `${baseURL}/anime?order_by=${json.orderBy}&search=${json.searchName}&page=${json.page}`;
try {
let html = await axios.get(targetURL, headerOPT);
const $ = cheerio.load(html.data);
json.lastPage = parsePage($);
json.data = parseAnimeList($);
json.status = html.status;
} catch (err) {
console.log(err);
json.status = err.status;
}
res.status(json.status).json(json);
}
async function routeAnimeDetail(req, res) {
let json = {
status: "",
animeId: req.params.animeId,
animeSlug: req.params.animeSlug,
data: {},
};
let targetURL = `${baseURL}/anime/${json.animeId}/${json.animeSlug}?page=${req.params.page}`;
try {
let html = await axios.get(targetURL, headerOPT);
const $ = cheerio.load(html.data);
json.data = parseAnimeDetail($, req.params.page);
json.status = html.status;
} catch (err) {
console.log(err);
json.status = err.status;
}
res.status(json.status).json(json);
}
async function routeAnimeFinished(req, res) {
let json = {
status: "",
orderBy: req.params.orderBy || "updated",
page: req.params.page || "1",
lastPage: "1",
data: [],
};
let targetURL = `${baseURL}/anime/finished?order_by=${json.orderBy}&page=${json.page}`;
try {
let html = await axios.get(targetURL, headerOPT);
const $ = cheerio.load(html.data);
json.lastPage = parsePage($);
json.data = parseAnimeList($);
json.status = html.status;
} catch (err) {
console.log(err);
json.status = err.status;
}
res.status(json.status).json(json);
}
async function routeAnimeOngoing(req, res) {
let json = {
status: "",
orderBy: req.params.orderBy || "latest",
page: req.params.page || "1",
lastPage: "1",
data: [],
};
let targetURL = `${baseURL}/anime/ongoing?order_by=${json.orderBy}&page=${json.page}`;
try {
let html = await axios.get(targetURL, headerOPT);
const $ = cheerio.load(html.data);
json.lastPage = parsePage($);
json.data = parseAnimeList($);
json.status = html.status;
} catch (err) {
console.log(err);
json.status = err.status;
}
res.status(json.status).json(json);
}
async function routeAnimeList(req, res) {
let json = {
status: "",
orderBy: req.params.orderBy || "popular",
page: req.params.page || "1",
lastPage: "1",
data: [],
};
let targetURL = `${baseURL}/anime?order_by=${json.orderBy}&page=${json.page}`;
try {
let html = await axios.get(targetURL, headerOPT);
const $ = cheerio.load(html.data);
json.lastPage = parsePage($);
json.data = parseAnimeList($);
json.status = html.status;
} catch (err) {
console.log(err);
json.status = err.status;
}
res.status(json.status).json(json);
}
async function routeAnimeStream(req, res) {
let json = {
animeId: req.params.animeId,
animeSlug: req.params.animeSlug,
animeCurrentEpisode: req.params.episodeNum,
};
let targetURL = `${baseURL}/anime/${json.animeId}/${json.animeSlug}/episode/${json.animeCurrentEpisode}?activate_stream=1`;
try {
let html = await axios(targetURL, headerOPT);
let $ = cheerio.load(html.data);
json.data = parseAnimeStream($);
} catch (err) {
console.log(err);
}
res.status(json.status).json(json);
}
export {
routeAnimeDetail,
routeAnimeFinished,
routeAnimeList,
routeAnimeOngoing,
routeAnimeSearch,
routeAnimeStream,
};