|
@@ -126,6 +126,35 @@ request = async (method, url, data = null, headers = {}, requestId, platform) =>
|
|
|
})
|
|
|
}
|
|
|
|
|
|
+isLiveContent = video => {
|
|
|
+ const badgets = video["badges"]
|
|
|
+ if (badgets && badgets.length > 0) {
|
|
|
+ for (const badge of badgets) {
|
|
|
+ if (badge["metadataBadgeRenderer"] && badge["metadataBadgeRenderer"]["style"] === "BADGE_STYLE_TYPE_LIVE_NOW") {
|
|
|
+ return true
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+ const publishText = video["publishedTimeText"]?.["simpleText"];
|
|
|
+ if (!publishText) {
|
|
|
+ return true
|
|
|
+ }
|
|
|
+ const livePublishTexts = [
|
|
|
+ "直播", // 中文
|
|
|
+ "Stream", // 英语
|
|
|
+ "Diffusé", // 法语
|
|
|
+ "gestreamt", // 德语
|
|
|
+ "Emitido hace", // 西班牙语
|
|
|
+ "Transmitido há"// 西班牙
|
|
|
+ ]
|
|
|
+ for (const liveItem of livePublishTexts) {
|
|
|
+ if (publishText.indexOf(liveItem) >= 0) {
|
|
|
+ return true
|
|
|
+ }
|
|
|
+ }
|
|
|
+ return false
|
|
|
+}
|
|
|
+
|
|
|
detail = async (url, requestId, platform) => {
|
|
|
try {
|
|
|
// fetch recommend
|
|
@@ -152,7 +181,7 @@ detail = async (url, requestId, platform) => {
|
|
|
if (item["compactVideoRenderer"]) {
|
|
|
const recommendVideo = item["compactVideoRenderer"];
|
|
|
console.log(`recommend video: ${JSON.stringify(recommendVideo)}`);
|
|
|
- if (recommendVideo["videoId"]) {
|
|
|
+ if (recommendVideo["videoId"] && !isLiveContent(recommendVideo)) {
|
|
|
recommendInfo.push({
|
|
|
"type": "gridVideoRenderer",
|
|
|
"videoId": recommendVideo["videoId"],
|
|
@@ -368,30 +397,6 @@ detail = async (url, requestId, platform) => {
|
|
|
}
|
|
|
|
|
|
search = async (keyword, next, requestId, platform) => {
|
|
|
- isLiveContent = video => {
|
|
|
- const badgets = video["badges"]
|
|
|
- if (badgets && badgets.length > 0) {
|
|
|
- for (const badge of badgets) {
|
|
|
- if (badge["metadataBadgeRenderer"] && badge["metadataBadgeRenderer"]["style"] === "BADGE_STYLE_TYPE_LIVE_NOW") {
|
|
|
- return true
|
|
|
- }
|
|
|
- }
|
|
|
- }
|
|
|
- const publishText = video["publishedTimeText"]?.["simpleText"];
|
|
|
- if (!publishText) {
|
|
|
- return true
|
|
|
- }
|
|
|
- const livePublishTexts = [
|
|
|
- "直播",
|
|
|
- "Stream"
|
|
|
- ]
|
|
|
- for (const liveItem of livePublishTexts) {
|
|
|
- if (publishText.indexOf(liveItem) >= 0) {
|
|
|
- return true
|
|
|
- }
|
|
|
- }
|
|
|
- return false
|
|
|
- }
|
|
|
try {
|
|
|
console.log(`search keyword: ${keyword}`);
|
|
|
console.log(`search next: ${next}`);
|