Browse Source

Mod: filter

Ben 1 month ago
parent
commit
62b27cd6ad
7 changed files with 48 additions and 43 deletions
  1. 0 0
      a.js
  2. 0 0
      js/pornhub.bundle.js
  3. 0 0
      js/tiktok.bundle.js
  4. 0 0
      js/xvideos.bundle.js
  5. 0 0
      js/youtube.bundle.js
  6. 18 18
      js/youtube/test.js
  7. 30 25
      js/youtube/youtubev1.js

+ 0 - 0
a.js


File diff suppressed because it is too large
+ 0 - 0
js/pornhub.bundle.js


File diff suppressed because it is too large
+ 0 - 0
js/tiktok.bundle.js


File diff suppressed because it is too large
+ 0 - 0
js/xvideos.bundle.js


File diff suppressed because it is too large
+ 0 - 0
js/youtube.bundle.js


+ 18 - 18
js/youtube/test.js

@@ -6,27 +6,27 @@
 //         console.log(e);
 //     })
 
-// detail(`https://www.youtube.com/watch?v=b1kbLwvqugk`, '1111', 'WEB')
-//     .then(res => {
-//         console.log(res);
-//     })
-//     .catch(e => {
-//         console.log(e);
-//     })
-
-query = "Billboard Pop Songs 2025 Playlist +"
-search(query, null, "", "WEB")
+detail(`https://www.youtube.com/watch?v=vXNKWndeG5Y`, '1111', 'WEB')
     .then(res => {
         console.log(res);
-
-        search(query, res["data"]["next"], "", "WEB")
-            .then(res => {
-                console.log(res);
-            })
-            .catch(e => {
-                console.log(e);
-            })
     })
     .catch(e => {
         console.log(e);
     })
+
+// query = "Billboard Pop Songs 2025 Playlist +"
+// search(query, null, "", "WEB")
+//     .then(res => {
+//         console.log(res);
+//
+//         search(query, res["data"]["next"], "", "WEB")
+//             .then(res => {
+//                 console.log(res);
+//             })
+//             .catch(e => {
+//                 console.log(e);
+//             })
+//     })
+//     .catch(e => {
+//         console.log(e);
+//     })

+ 30 - 25
js/youtube/youtubev1.js

@@ -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}`);

Some files were not shown because too many files changed in this diff