-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.js
142 lines (117 loc) · 4.09 KB
/
main.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
const version = require("./package.json").version;
const yts = require( 'yt-search' );
const numeral = require('numeral'), {Duration} = require('luxon');
let language = "pt";
let translate = require('@vitalets/google-translate-api');
async function traduzir (value) {
let data = "Unavailable";
await translate(value, {to: language}).then(async (res) => {
data = res.text;
})
return data;
}
async function search (value, options) {
if (!value) throw new Error("O Valor da Pesquisa não foi identificado. VVerifique se é uma String.");
const r = await yts(value);
const videos = r.videos.slice( 0, 5 );
let video = videos[0];
let views = numeral(parseFloat(video.views));
views = {completeValue: views.value(), string: views.format('0a')};
let duration = video.timestamp;
duration = {string: duration, time: {}};
let durationS = duration.string.replace(":", "").replace(":", "");
if (durationS.length == 4) durationS = "00" + durationS;
if (durationS.length == 3) durationS = "000" + durationS;
durationS = {
0: durationS[0] + "" +durationS[1],
1: durationS[2] + "" +durationS[3],
2: durationS[4] + "" +durationS[5]
};
duration.string = durationS[0] + ":" + durationS[1] + ":" + durationS[2];
duration.time = {seconds: Duration.fromISOTime(duration.string).toMillis() / 1000, milli: Duration.fromISOTime(duration.string).toMillis()};
///////////////////////////////////////////////////////////////////
let obj = {
duration: duration,
title: video.title,
url: video.url,
id: video.videoId,
description: video.description,
imageURL: function get () {
return video.image;
},
thumbnailURL: function get () {
return video.thumbnail;
},
ago: (async => {
if (options) {
if (options.lang) {
switch (`${options.lang.toLowerCase()[0]}${options.lang.toLowerCase()[1]}`) {
case "pt":
return video.ago.replace('year', "ano").replace('years', "anos").replace('months', "meses").replace('month', "mês").replace("ago", "atrás");
break;
default:
return video.ago;
break;
}
}
} else {
return video.ago;
}
})(),
author: {
name: video.author.name,
url: video.author.url,
},
views
};
obj.downloadURL = (async => {
let url = `https://www.y2mate.com/pt/youtube/${obj.id}`;
return url;
})();
return obj;
}
async function multi_search(searchValue, maxVideos) {
if (searchValue.length <= 0) throw new Error("O Valor da Pesquisa não foi identificado. Verifique se é uma String.");
if (!maxVideos) {
console.log(`Você não espeficou o parâmetro maxVideos. Este deve ser um número, no qual especifica-se o número máximo de vídeos no array.`)
maxVideos = 5;
} else if (isNaN(maxVideos)) {
throw new Error("O parâmetro maxVideos deve ser um número, no qual especifica-se o número máximo de vídeos no array.");
}
const r = await yts(searchValue);
if (!r.videos) throw new Error("Nenhum vídeo foi encontrado.");
const vids = r.videos.slice( 0, maxVideos );
const videos = await vids.map(async (video) => {
const obj = {
duration: video.timestamp,
title: video.title,
url: video.url,
id: video.videoId,
description: video.description,
imageURL: function get () {
return video.image;
},
thumbnailURL: function get () {
return video.thumbnail;
},
ago: video.ago,
author: {
name: video.author.name,
url: video.author.url,
},
views: video.views.toLocaleString(),
downloadURL: function get () {
let url = `https://www.y2mate.com/pt/youtube/${this.id}`;
return url;
}
};
return obj;
});
if (!videos) throw new Error("Nenhum vídeo foi encontrado.");
return videos;
}
module.exports = search;
module.exports.multi = multi_search;
module.exports.search = multi_search;
module.exports.language = language;
module.exports.version = version;