This repository has been archived by the owner on Feb 1, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathkamyroll.js
396 lines (333 loc) · 13 KB
/
kamyroll.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
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
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
import axios from 'axios';
import localeEmoji from 'locale-emoji';
import {logError} from './log.js'
axios.defaults.timeout = 30000;
const DEVICE_TYPE = 'com.service.data';
const DEVICE_ID = 'whatvalueshouldbeforweb';
const STREAM_TYPE = 'adaptive_hls'; // adaptive_hls, adaptive_dash, drm_adaptive_dash
const SUBTITLE_FORMAT = 'vtt'; // ass, vtt, srt
const LOCALES = {
'es-419': '🇪🇸 LatAm',
'ar-ME': 'Arabic ME',
'uk-UK': '🇺🇦 uk-UA',
};
const FLAG_ONLY = {
'es-419': '🇪🇸',
'ar-ME': '',
'uk-UK': '🇺🇦',
};
export default {
bearerToken: null,
kitsuMapping: {},
async updateKitsuMapping() {
let res;
try {
res = await axios.get('https://raw.githubusercontent.com/TheBeastLT/stremio-kitsu-anime/master/static/data/imdb_mapping.json');
} catch(e) {
logError(e.message);
console.log(e.response?.data);
return;
}
if (res.data) {
this.kitsuMapping = res.data;
}
},
hasKitsuMapping(imdbId) {
for (const [kitsuId, value] of Object.entries(this.kitsuMapping)) {
if (value.imdb_id !== imdbId) {
continue;
}
return kitsuId;
}
return false;
},
async getKitsuId(imdbId, type, season, ep) {
season = Number(season);
ep = Number(ep);
let kitsuId = this.hasKitsuMapping(imdbId)
// has no kitsu mapping
if (!kitsuId) {
console.log('has no kitsu mapping');
return { kitsuId: null, ep: null };
}
// get kitsu mapping
console.log(type, imdbId);
let res;
try {
res = await axios.get(`https://anime-kitsu.strem.fun/meta/${type}/${imdbId}.json`);
} catch (e) {
logError(e.message);
// fallback if kitsu addon api times out
return { kitsuId, ep };
}
for (const episode of res.data?.meta?.videos || []) {
if (episode.season === season && episode.number === ep) {
return {
kitsuId: Number(episode.kitsu_id) || null,
ep: episode.kitsuEpisode || null,
}
}
}
return { kitsuId: null, ep: null };
},
async getTitles(kitsuId) {
let res;
try {
res = await axios.get(`https://kitsu.io/api/edge/anime/${kitsuId}`);
} catch(e) {
logError(e.message);
console.log(e.response?.data);
return [];
}
return Object.values(res.data?.data?.attributes?.titles || {});
},
async getSeasonCrunchyrollId(kitsuId) {
let res;
try {
res = await axios.get(`https://kitsu.io/api/edge/anime/${kitsuId}/streaming-links`);
} catch(e) {
logError(e.message);
console.log(e.response?.data);
return;
}
let id;
// get vrv id
id = res.data?.data?.map(link => {
return link?.attributes?.url?.match(/vrv.co\/series\/([^\/]+)\//i)?.[1];
}).find(value => !!value);
if (!id) {
// get crunchyroll slug
id = res.data?.data?.map(link => {
// https://crunchyroll.com/xxx
return link?.attributes?.url?.match(/crunchyroll.com\/([^\/]+)\/?$/i)?.[1];
}).find(value => !!value);
}
if (!id) {
// get crunchyroll id
id = res.data?.data?.map(link => {
// https://beta.crunchyroll.com/series/G4PH0WXVJ/spy-x-family
return link?.attributes?.url?.match(/crunchyroll.com\/series\/([^/]+)/)?.[1];
}).find(value => !!value);
}
if (!id) {
// get funimation id
id = res.data?.data?.map(link => {
// https://www.funimation.com/shows/xxx/videos/episodes
// https://www.funimation.com/shows/xxx/
return link?.attributes?.url?.match(/funimation.com\/shows\/([^\/]+)/i)?.[1];
}).find(value => !!value);
}
return id;
},
async refreshToken() {
let res;
try {
res = await axios.get(`https://api.kamyroll.tech/auth/v1/token?access_token=${process.env.ACCESS_TOKEN}&device_type=${DEVICE_TYPE}&device_id=${DEVICE_ID}`);
} catch(e) {
logError('Failed to get token: ' + e.message);
console.log(e.response?.data);
return;
}
this.bearerToken = res.data?.access_token;
},
async getEpisodes(mediaId, epNumber, titles = [], channelId = 'crunchyroll') {
let res;
try {
res = await axios.get(`https://api.kamyroll.tech/content/v1/seasons?channel_id=${channelId}&id=${mediaId}`, {
headers: {
"Authorization": `Bearer ${this.bearerToken}`,
},
});
} catch(e) {
logError(e.message);
console.log(e.response?.data);
return [];
}
let episodes = [];
res.data?.items?.forEach((season) => {
episodes = [...episodes, ...season?.episodes?.filter((ep) => {
if (ep.sequence_number !== epNumber) {
return false;
}
// check season title(s)
return !!titles.filter(title => {
let kamyTitle = ep.season_title.replace(/\([a-z ]+ Dub+\)/ig, '').replace(/[^a-z0-9 ]+/ig, '').replace(/ +/ig, ' ').trim().toLowerCase();
let kitsuTitle = title.replace(/\([a-z ]+ Dub+\)/ig, '').replace(/[^a-z0-9 ]+/ig, '').replace(/ +/ig, ' ').trim().toLowerCase();
return kamyTitle === kitsuTitle;
}).length;
})];
});
// if nothing found, try again with loose season title check
if (!episodes.length) {
res.data?.items?.forEach((season) => {
episodes = [...episodes, ...season?.episodes?.filter((ep) => {
if (ep.sequence_number !== epNumber) {
return false;
}
// check season title(s)
return !!titles.filter(title => {
let kamyTitle = ep.season_title.replace(/\([a-z ]+ Dub+\)/ig, '').replace(/[^a-z0-9 ]+/ig, '').replace(/ +/ig, ' ').trim().toLowerCase();
let kitsuTitle = title.replace(/\([a-z ]+ Dub+\)/ig, '').replace(/[^a-z0-9 ]+/ig, '').replace(/ +/ig, ' ').trim().toLowerCase();
return kamyTitle.includes(kitsuTitle) || kitsuTitle.includes(kamyTitle);
}).length;
})];
});
}
return episodes;
},
async getStreamsAndSubtitles(mediaId, channelId = 'crunchyroll') {
let res;
try {
res = await axios.get(`https://api.kamyroll.tech/videos/v1/streams?channel_id=${channelId}&id=${mediaId}&type=${STREAM_TYPE}&format=${SUBTITLE_FORMAT}`, {
headers: {
"Authorization": `Bearer ${this.bearerToken}`,
},
});
} catch(e) {
logError(e.message);
console.log(e.response?.data);
return {};
}
return res.data || {};
},
async getStreamsByImdbId(imdbId, season, ep) {
// get vrvId via watchub
let res;
try {
res = await axios.get(`https://watchhub.strem.io/stream/series/${imdbId}%3A${season}%3A${ep}.json?c=US`);
} catch (e) {
console.log('something went wrong', imdbId, season, ep, `https://watchhub.strem.io/stream/series/${imdbId}%3A${season}%3A${ep}.json?c=US`);
logError(e.message);
return [];
}
let vrvResult = res.data?.streams?.find(result => result?.name === 'VRV');
if (!vrvResult) {
console.log('no vrv result', imdbId, season, ep, `https://watchhub.strem.io/stream/series/${imdbId}%3A${season}%3A${ep}.json?c=US`);
console.log(res.data?.streams?.map(stream => stream?.name));
return [];
}
let vrvId = vrvResult?.externalUrl?.match(/([a-z0-9]+)$/ig);
let result = await this.getStreamsAndSubtitles(vrvId, 'crunchyroll');
let streams = result?.streams;
let subtitles = result?.subtitles;
console.log('streams', streams?.length);
if (!streams?.length) {
return [];
}
subtitles = subtitles.map((sub, i) => {
return {
id: i,
url: sub.url,
lang: sub.locale,
};
})//.filter(val => !!val);
return streams.map((stream) => {
let subs = '';
if (LOCALES?.[stream.hardsub_locale]) {
subs = `Hardsub: ${LOCALES[stream.hardsub_locale]}`;
} else if(stream.hardsub_locale) {
subs = `Hardsub: ${localeEmoji(stream.hardsub_locale)} ${stream.hardsub_locale}`;
}
if (!subs) {
subs = subtitles.length ? 'Multi-Sub: ' + result.subtitles.map((sub) => {
return FLAG_ONLY?.[sub.locale] || (sub.locale ? localeEmoji(sub.locale) : '');
}).join(' ') : 'No subs'
}
let audio = '';
if (LOCALES?.[stream.audio_locale]) {
audio = LOCALES[stream.audio_locale];
} else if(stream.audio_locale) {
audio = `${localeEmoji(stream.audio_locale)} ${stream.audio_locale}`;
}
return {
url: stream.url,
name: 'Crunchyroll',
description: `Audio: ${audio}, ${subs}`,
subtitles: subtitles,
behaviorHints: {
bingeGroup: `crunchyroll-${audio}-${subs}`,
},
};
}) || [];
},
async getStreamsByKitsuId(kitsuId, epNumber) {
if (!kitsuId) {
return [];
}
epNumber = Number(epNumber);
const seasonId = await this.getSeasonCrunchyrollId(kitsuId);
console.log('crunchyroll season id', seasonId);
if (!seasonId) {
return [];
}
// get titles
let titles = await this.getTitles(kitsuId);
console.log('titles', titles);
// get matching episodes
const episodes = await this.getEpisodes(seasonId, epNumber, titles, 'crunchyroll');
console.log('episodes', episodes?.length);
let streams = [], subtitles = [], result = {};
if (!episodes?.length) {
// maybe its a movie
result = await this.getStreamsAndSubtitles(seasonId, 'crunchyroll');
if (!result?.streams?.length) {
return [];
}
streams = result?.streams?.map(stream => {
return {...stream, ep: {title: 'Movie', episode_number: 1}};
});
subtitles = result?.subtitles || [];
} else {
// get streams for each episode
for(const ep of episodes) {
result = await this.getStreamsAndSubtitles(ep.id, 'crunchyroll');
let moreStreams = result.streams.map(stream => {
return {...stream, ep: ep};
});
streams = [...streams, ...moreStreams];
if (!subtitles) {
subtitles = result?.subtitles || [];
}
}
}
console.log('streams', streams?.length);
if (!streams?.length) {
return [];
}
subtitles = subtitles?.map((sub, i) => {
return {
id: i,
url: sub.url,
lang: sub.locale,
};
})//.filter(val => !!val);
return streams.map((stream) => {
let subs = '';
if (LOCALES?.[stream.hardsub_locale]) {
subs = `Hardsub: ${LOCALES[stream.hardsub_locale]}`;
} else if(stream.hardsub_locale) {
subs = `Hardsub: ${localeEmoji(stream.hardsub_locale)} ${stream.hardsub_locale}`;
}
if (!subs) {
subs = subtitles.length ? 'Multi-Sub: ' + result.subtitles.map((sub) => {
return FLAG_ONLY?.[sub.locale] || (sub.locale ? localeEmoji(sub.locale) : '');
}).join(' ') : 'No subs'
}
let audio = '';
if (LOCALES?.[stream.audio_locale]) {
audio = LOCALES[stream.audio_locale];
} else if(stream.audio_locale) {
audio = `${localeEmoji(stream.audio_locale)} ${stream.audio_locale}`;
}
return {
url: stream.url,
name: 'Crunchyroll',
description: `Audio: ${audio}, ${subs}, ${stream.ep.title} (${stream.ep.episode_number})`,
subtitles: subtitles,
behaviorHints: {
bingeGroup: `crunchyroll-${audio}-${subs}`,
},
};
}) || [];
},
}