-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.js
More file actions
216 lines (199 loc) · 7.26 KB
/
Copy pathindex.js
File metadata and controls
216 lines (199 loc) · 7.26 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
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
const express = require("express");
const {
searchForSubM,
searchForSubTv,
DownloadByPath,
AnimeSub
} = require("./SubTools");
const { getStreamUrl } = require("./sanime.js");
const sanitizeFilename = require("sanitize-filename");
const { getSubText, getTvSubs, getMovSubs } = require("./opensubs");
const fs = require("fs").promises;
const path = require("path");
const translateAndSaveSubtitles = require("./SubTrans.js");
const app = express();
const port = 8000;
// Middleware to parse JSON requests
app.use(express.json());
// Middleware for error handling
app.use((err, req, res, next) => {
console.error("Error:", err.stack);
res.status(500).json({ error: "Internal server error." });
});
app.get("/", (req, res) => {
res.send("Hi Thanks For Using Stream Box Api ");
});
app.use(express.static(path.join(__dirname, "public")));
app.get("/SearchSubMv", async (req, res) => {
try {
const { name, year, language } = req.query;
if (!name || !year || !language) {
return res.status(400).json({
error: "Name, year, and language are required parameters."
});
}
const subtitles = await searchForSubM(name, year, language);
if (subtitles.length > 0) {
return res.json(subtitles);
} else {
return res.status(404).json({ error: "No matching movie found." });
}
} catch (error) {
console.error("Error searching for subtitles:", error.message);
return res.status(500).json({ error: "Internal server error." });
}
});
app.get("/SearchSubTv", async (req, res) => {
try {
const { name, season, episode, language } = req.query;
if (!name || !season || !episode || !language) {
return res.status(400).json({
error: "Name, season, episode, and language are required parameters."
});
}
const subtitles = await searchForSubTv(name, season, episode, language);
if (typeof subtitles === "string") {
return res.status(404).json({ error: subtitles });
} else if (subtitles.length > 0) {
return res.json(subtitles);
} else {
return res
.status(404)
.json({ error: "No matching TV series or episode found." });
}
} catch (error) {
console.error(
"Error searching for TV series subtitles:",
error.message
);
return res.status(500).json({ error: "Internal server error." });
}
});
app.get("/DownloadSub", async (req, res) => {
try {
const { path: subtitlePath } = req.query;
if (!subtitlePath) {
return res
.status(400)
.json({ error: "Path is a required parameter." });
}
const subtitleText = await DownloadByPath(subtitlePath);
res.setHeader("Content-Type", "text/plain; charset=utf-8");
res.send(subtitleText);
} catch (error) {
console.error("Error downloading subtitles:", error.message);
return res.status(500).json({ error: "Internal server error." });
}
});
app.get("/GetSubText", async (req, res) => {
try {
const { Url } = req.query;
if (!Url) {
return res
.status(400)
.json({ error: "Url is a required parameter." });
}
const subtitleText = await getSubText(Url);
res.setHeader("Content-Type", "text/plain; charset=utf-8");
res.send(subtitleText);
} catch (error) {
console.error("Error downloading subtitles:", error.message);
return res
.status(500)
.json({ error: "Internal server error." + error.message });
}
});
app.get("/SubsTv", async (req, res) => {
try {
const { imdbId, season, episode, sublanguageId } = req.query;
if (!imdbId || !season || !episode || !sublanguageId) {
return res.status(400).json({
error: "IMDb ID, season, episode, and sublanguageId are required parameters."
});
}
const subtitles = await getTvSubs(
imdbId,
season,
episode,
sublanguageId
);
if (subtitles.length > 0) {
return res.json(subtitles);
} else {
return res
.status(404)
.json({ error: "No matching TV series or episode found." });
}
} catch (error) {
console.error(
"Error searching for TV series subtitles:",
error.message
);
return res.status(500).json({ error: "Internal server error." });
}
});
app.get("/SubsMv", async (req, res) => {
try {
const { imdbId, sublanguageId } = req.query;
if (!imdbId || !sublanguageId) {
return res.status(400).json({
error: "IMDb ID and sublanguageId are required parameters."
});
}
const subtitles = await getMovSubs(imdbId, sublanguageId);
if (subtitles.length > 0) {
return res.json(subtitles);
} else {
return res.status(404).json({ error: "No matching movie found." });
}
} catch (error) {
console.error("Error searching for movie subtitles:", error.message);
return res.status(500).json({ error: "Internal server error." });
}
});
app.get("/anime/:id/:epNumber", async (req, res) => {
try {
const { id, epNumber } = req.params;
const result_s = await getStreamUrl(id, epNumber);
const resultJSON =
typeof result_s === "object" ? JSON.stringify(result_s) : result_s;
res.send(resultJSON);
} catch (error) {
console.error("Error fetching anime details:", error.message);
res.status(500).json({ error: "Internal server error." + error });
}
});
app.get("/subs/anime/:id/:epNumber/:lang", async (req, res) => {
try {
const { id, epNumber, lang } = req.params;
const result_s = await AnimeSub(id, epNumber, lang);
const resultJSON =
typeof result_s === "object" ? JSON.stringify(result_s) : result_s;
res.send(resultJSON);
} catch (error) {
console.error("Error fetching anime details:", error.message);
res.status(500).json({ error: "Internal server error." + error });
}
});
// translate subs rout
app.get('/translateSubtitles', async (req, res) => {
try {
const { Url, format, targetLang } = req.query;
// Validate query parameters
if (!Url || !format || !targetLang) {
return res.status(400).json({ error: 'Url, format, and targetLang are required parameters.' });
}
// Translate and get the subtitles
const result = await translateAndSaveSubtitles(Url, format, targetLang);
// Set appropriate headers for the response
res.setHeader('Content-Type', 'text/plain; charset=utf-8');
res.setHeader('Content-Disposition', `attachment; filename="transSun.${format}"`);
res.send(result);
} catch (error) {
console.error('Error translating subtitles:', error.message);
return res.status(500).json({ error: 'Internal server error: ' + error.message });
}
});
app.listen(port, () => {
console.log(`Server is running at http://localhost:${port}`);
});