youtubev1.js 21 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517
  1. console.log('v1')
  2. printable = (platform) => {
  3. return platform === "WEB";
  4. }
  5. parseCodecs = (format) => {
  6. const mimeType = format['mimeType']
  7. if (!mimeType) {
  8. return {};
  9. }
  10. const regex = /(?<mimetype>[^/]+\/[^;]+)(?:;\s*codecs="?(?<codecs>[^"]+))?/;
  11. const match = mimeType.match(regex);
  12. if (!match) {
  13. return {};
  14. }
  15. const codecs = match.groups.codecs;
  16. if (!codecs) {
  17. return {};
  18. }
  19. const splitCodecs = codecs.trim().replace(/,$/, '').split(',').map(str => str.trim()).filter(Boolean);
  20. let vcodec = null;
  21. let acodec = null;
  22. for (const fullCodec of splitCodecs) {
  23. const codec = fullCodec.split('.')[0];
  24. if (['avc1', 'avc2', 'avc3', 'avc4', 'vp9', 'vp8', 'hev1', 'hev2', 'h263', 'h264', 'mp4v', 'hvc1', 'av01', 'theora'].includes(codec)) {
  25. if (!vcodec) {
  26. vcodec = fullCodec;
  27. }
  28. } else if (['mp4a', 'opus', 'vorbis', 'mp3', 'aac', 'ac-3', 'ec-3', 'eac3', 'dtsc', 'dtse', 'dtsh', 'dtsl'].includes(codec)) {
  29. if (!acodec) {
  30. acodec = fullCodec;
  31. }
  32. } else {
  33. console.log(`WARNING: Unknown codec ${fullCodec}`);
  34. }
  35. }
  36. if (!vcodec && !acodec) {
  37. if (splitCodecs.length === 2) {
  38. return {
  39. vcodec: splitCodecs[0],
  40. acodec: splitCodecs[1]
  41. };
  42. }
  43. } else {
  44. return {
  45. vcodec: vcodec,
  46. acodec: acodec
  47. };
  48. }
  49. return {};
  50. }
  51. parseSetCookie = (headers) => {
  52. if (!headers) {
  53. return ""
  54. }
  55. const setCookie = headers['Set-Cookie']
  56. if (!setCookie) {
  57. return ""
  58. }
  59. console.log(`setCookie: ${setCookie}`)
  60. let result = 'PREF=hl=en&tz=UTC; SOCS=CAI; GPS=1; ';
  61. const needCookieNames = ['YSC', 'VISITOR_INFO1_LIVE', 'VISITOR_PRIVACY_METADATA'];
  62. for (const i in needCookieNames) {
  63. const cookieName = needCookieNames[i];
  64. const regexp = new RegExp(`${cookieName}=([^;,]+)`)
  65. const match = setCookie.match(regexp)
  66. if (match && match.length === 2) {
  67. const cookieValue = match[1]
  68. if (i != needCookieNames.length - 1) {
  69. result += `${cookieName}=${cookieValue}; `
  70. } else {
  71. result += `${cookieName}=${cookieValue}`
  72. }
  73. }
  74. }
  75. console.log(`current cookie: ${result}`)
  76. return result;
  77. }
  78. request = async (method, url, data = null, headers = {}, requestId, platform) => {
  79. // if (platform === "WEB") {
  80. // url = url.replace("https://www.youtube.com/", "http://43.198.215.27:80/");
  81. // url = url.replace("https://music.youtube.com/", "http://43.198.215.27:80/");
  82. // }
  83. // if (platform === "LOCAL") {
  84. // url = url.replace("https://www.youtube.com/", "http://127.0.0.1:80/");
  85. // url = url.replace("https://music.youtube.com/", "http://127.0.0.1:80/");
  86. // }
  87. console.log(`request url:${url}`)
  88. console.log(`request data:${data}`)
  89. console.log(`request method:${method}`)
  90. console.log(`request headers:${JSON.stringify((headers))}`)
  91. if (platform === "WEB" || platform === "LOCAL") {
  92. const res = await fetch(url, {
  93. 'mode': 'cors',
  94. 'method': method,
  95. 'headers': headers,
  96. 'body': data
  97. })
  98. const resData = await res.text()
  99. return Promise.resolve({
  100. 'data': resData,
  101. 'headers': res.headers
  102. });
  103. }
  104. return new Promise((resolve, reject) => {
  105. AF.request(url, method, data, headers, requestId, (data, headers, err) => {
  106. if (err) {
  107. console.log(`request error: ${err}`);
  108. reject(err);
  109. } else {
  110. console.log(`response headers: ${headers}`);
  111. resolve({
  112. 'data': data,
  113. 'headers': JSON.parse(headers)
  114. });
  115. }
  116. });
  117. })
  118. }
  119. detail = async (url, requestId, platform) => {
  120. try {
  121. // fetch recommend
  122. const recommendInfo = [];
  123. const htmlResp = await request('GET', `${url}&bpctr=9999999999&has_verified=1`, null, {
  124. 'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/92.0.4515.107 Safari/537.36',
  125. 'Accept': 'text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8',
  126. 'Accept-Language': 'en-us,en;q=0.5',
  127. 'Sec-Fetch-Mode': 'navigate',
  128. 'Accept-Encoding': 'gzip, deflate, br',
  129. 'Cookie': 'PREF=hl=en&tz=UTC; SOCS=CAI'
  130. }, requestId, platform);
  131. let {data: html, headers: htmlHeaders} = htmlResp;
  132. let regex = /var ytInitialPlayerResponse\s*=\s*({.*?});/;
  133. let match = html.match(regex);
  134. if (match) {
  135. const ytInitialPlayerResponse = JSON.parse(match[1]);
  136. console.log(ytInitialPlayerResponse);
  137. const ytInitialDataMatch = html.match(/var ytInitialData\s*=\s*({.*?});/);
  138. if (ytInitialDataMatch && ytInitialDataMatch.length === 2) {
  139. const ytInitialData = JSON.parse(ytInitialDataMatch[1]);
  140. console.log(ytInitialData);
  141. for (const item of ytInitialData["contents"]?.["twoColumnWatchNextResults"]?.["secondaryResults"]?.["secondaryResults"]?.["results"] || []) {
  142. if (item["compactVideoRenderer"]) {
  143. const recommendVideo = item["compactVideoRenderer"];
  144. console.log(`recommend video: ${JSON.stringify(recommendVideo)}`);
  145. if (recommendVideo["videoId"]) {
  146. recommendInfo.push({
  147. "type": "gridVideoRenderer",
  148. "videoId": recommendVideo["videoId"],
  149. "title": recommendVideo["title"]?.["simpleText"],
  150. "thumbnails": recommendVideo["thumbnail"]?.["thumbnails"],
  151. "channelName": recommendVideo["longBylineText"]?.["runs"]?.[0]?.["text"],
  152. "publishedTimeText": recommendVideo["publishedTimeText"]?.["simpleText"],
  153. "viewCountText": recommendVideo["viewCountText"]?.["simpleText"],
  154. "shortViewCountText": recommendVideo["shortViewCountText"]?.["simpleText"],
  155. "lengthText": recommendVideo["lengthText"]?.["simpleText"]
  156. })
  157. }
  158. }
  159. }
  160. }
  161. }
  162. // android
  163. let thumbnails = [];
  164. let originFormats = [];
  165. let originVideoDetails = undefined;
  166. try {
  167. const apiUrl = `https://www.youtube.com/youtubei/v1/player`;
  168. const apiResp = await request('POST', apiUrl, JSON.stringify({
  169. "context": {
  170. "client": {
  171. "clientVersion": "19.50.40",
  172. "androidSdkVersion": 30,
  173. "clientName": "ANDROID",
  174. "osName": "android",
  175. "osVersion": "11",
  176. "userAgent": "com.google.android.youtube/19.50.40 (Linux; U; Android 11) gzip"
  177. }
  178. },
  179. "videoId": url.replace('https://www.youtube.com/watch?v=', ''),
  180. "playbackContext": {
  181. "contentPlaybackContext": {
  182. "html5Preference": "HTML5_PREF_WANTS"
  183. }
  184. },
  185. "params": "2AMB"
  186. }), {
  187. 'Origin': "https://www.youtube.com",
  188. 'X-YouTube-Client-Version': '19.50.40',
  189. 'User-Agent': 'com.google.android.youtube/19.50.40 (Linux; U; Android 11) gzip',
  190. 'Content-Type': 'application/json'
  191. }, requestId, platform);
  192. let {data: apiData, _} = apiResp;
  193. console.log(`android api result: ${JSON.stringify(apiResp)}`);
  194. console.log(`${JSON.stringify(apiResp)}`);
  195. const res = JSON.parse(apiData);
  196. const currentFormats = [];
  197. originVideoDetails = res["videoDetails"];
  198. for (const format of [].concat(res["streamingData"]["formats"] || []).concat(res["streamingData"]["adaptiveFormats"] || [])) {
  199. if (format) {
  200. format["from"] = "android"
  201. currentFormats.push(format);
  202. }
  203. }
  204. originFormats = originFormats.concat(currentFormats);
  205. } catch (e) {
  206. console.log(`can not found format android api error: ${e}`);
  207. const ret = {
  208. "code": -1,
  209. "msg": e.toString(),
  210. "requestId": requestId
  211. }
  212. console.log(`detail2 result error: ${JSON.stringify(ret)}`);
  213. return ret;
  214. }
  215. console.log(`after android api, format size:${originFormats.length}`);
  216. // fallback
  217. let fallbackFormats = []
  218. try {
  219. const apiUrl = `https://www.youtube.com/youtubei/v1/player`;
  220. const apiResp = await request('POST', apiUrl, JSON.stringify({
  221. "contentCheckOk": true,
  222. "context": {
  223. "client": {
  224. "clientName": "IOS",
  225. "clientVersion": "19.47.7",
  226. "deviceMake": "Apple",
  227. "deviceModel": "iPhone16,2",
  228. "hl": "en",
  229. "osName": "iPhone",
  230. "osVersion": "17.5.1.21F90",
  231. "timeZone": "UTC",
  232. "userAgent": "com.google.ios.youtube/19.47.7 (iPhone16,2; U; CPU iOS 17_5_1 like Mac OS X;)",
  233. "gl": "US",
  234. "utcOffsetMinutes": 0
  235. }
  236. },
  237. "videoId": url.replace('https://www.youtube.com/watch?v=', '')
  238. }), {
  239. 'User-Agent': 'com.google.ios.youtube/19.47.7 (iPhone16,2; U; CPU iOS 17_5_1 like Mac OS X;)',
  240. 'Content-Type': 'application/json'
  241. }, requestId, platform);
  242. let {data: apiData, _} = apiResp;
  243. console.log(`android api result: ${JSON.stringify(apiResp)}`);
  244. const res = JSON.parse(apiData);
  245. const currentFormats = [];
  246. for (const format of [].concat(res["streamingData"]["formats"] || []).concat(res["streamingData"]["adaptiveFormats"] || [])) {
  247. if (format) {
  248. format["from"] = "android"
  249. currentFormats.push(format);
  250. }
  251. }
  252. fallbackFormats = fallbackFormats.concat(currentFormats);
  253. } catch (e) {
  254. console.log(`can not found format android fallback api error: ${e}`);
  255. // const ret = {
  256. // "code": -1, "msg": e.toString(), "requestId": requestId
  257. // }
  258. // console.log(`detail2 fallback result error: ${JSON.stringify(ret)}`);
  259. // return ret;
  260. }
  261. let audioUrl = ""
  262. for (let format of fallbackFormats) {
  263. if (format["url"]) {
  264. const {vcodec, acodec} = parseCodecs(format)
  265. if (!vcodec && acodec) {
  266. audioUrl = format["url"]
  267. break
  268. }
  269. }
  270. }
  271. let itags = [];
  272. const formats = [];
  273. for (let format of originFormats) {
  274. if (printable(platform)) {
  275. console.log(format);
  276. }
  277. if (format && itags.indexOf(format['itag']) === -1) {
  278. if (format["url"]) {
  279. const {vcodec, acodec} = parseCodecs(format)
  280. if (acodec && vcodec) {
  281. const current = {
  282. "width": format["width"] + "",
  283. "height": format["height"] + "",
  284. "type": format["mimeType"],
  285. "quality": format["qualityLabel"],
  286. "itag": format["itag"],
  287. "fps": format["fps"] + "",
  288. "bitrate": format["bitrate"] + "",
  289. "url": format["url"],
  290. "ext": "mp4",
  291. "vcodec": vcodec,
  292. "acodec": acodec,
  293. "vbr": "0",
  294. "abr": "0",
  295. "container": "mp4_dash",
  296. "from": format["from"],
  297. "source": format,
  298. "audioUrl": audioUrl,
  299. "videoUrl": format["url"]
  300. }
  301. formats.push(current)
  302. itags.push(format["itag"]);
  303. }
  304. }
  305. }
  306. }
  307. for (const item of originVideoDetails['thumbnail']['thumbnails']) {
  308. thumbnails.push({
  309. 'url': item['url'], 'width': item['width'] + "", 'height': item['height'] + ""
  310. })
  311. }
  312. formats.sort((a, b) => parseInt(a["height"]) - parseInt(b["height"]));
  313. const videoDetails = {
  314. "isLiveContent": originVideoDetails["isLiveContent"],
  315. "title": originVideoDetails["title"],
  316. "thumbnails": thumbnails,
  317. "description": originVideoDetails["shortDescription"],
  318. "lengthSeconds": originVideoDetails["lengthSeconds"],
  319. "viewCount": originVideoDetails["viewCount"],
  320. "keywords": originVideoDetails["keywords"],
  321. "author": originVideoDetails["author"],
  322. "channelID": originVideoDetails["channelId"],
  323. "recommendInfo": recommendInfo,
  324. "channelURL": `https://www.youtube.com/channel/${originVideoDetails["channelId"]}`,
  325. "videoId": url.replace('https://www.youtube.com/watch?v=', '')
  326. }
  327. const ret = {
  328. "code": 200,
  329. "msg": "",
  330. "data": {
  331. "videoDetails": videoDetails,
  332. "streamingData": {
  333. "formats": formats
  334. }
  335. },
  336. "id": "MusicDetailViewModel_detail_url",
  337. "requestId": requestId
  338. }
  339. console.log(`detail result: ${JSON.stringify(ret)}`);
  340. return ret;
  341. } catch (e) {
  342. const ret = {
  343. "code": -1,
  344. "msg": e.toString(),
  345. "requestId": requestId
  346. }
  347. console.log(`detail2 result error: ${JSON.stringify(ret)}`);
  348. console.log(e);
  349. return ret;
  350. }
  351. }
  352. search = async (keyword, next, requestId, platform) => {
  353. isLiveContent = video => {
  354. const badgets = video["badges"]
  355. if (badgets && badgets.length > 0) {
  356. for (const badge of badgets) {
  357. if (badge["metadataBadgeRenderer"] && badge["metadataBadgeRenderer"]["style"] === "BADGE_STYLE_TYPE_LIVE_NOW") {
  358. return true
  359. }
  360. }
  361. }
  362. return false
  363. }
  364. try {
  365. console.log(`search keyword: ${keyword}`);
  366. console.log(`search next: ${next}`);
  367. if (next) {
  368. const nextObject = JSON.parse(next);
  369. const key = nextObject["key"];
  370. const body = {
  371. context: {
  372. client: {
  373. clientName: "WEB",
  374. clientVersion: "2.20240506.01.00",
  375. },
  376. },
  377. continuation: nextObject["continuation"]
  378. };
  379. let res = await request('POST', `https://www.youtube.com/youtubei/v1/search?key=${key}`, JSON.stringify(body), {}, requestId, platform);
  380. const {data, _} = res;
  381. res = JSON.parse(data);
  382. const videos = [];
  383. for (const item of res["onResponseReceivedCommands"][0]["appendContinuationItemsAction"]["continuationItems"][0]["itemSectionRenderer"]["contents"]) {
  384. const video = item["videoRenderer"];
  385. if (printable(platform)) {
  386. console.log(video);
  387. }
  388. if (video && video["videoId"] && video["lengthText"] && !isLiveContent(video)) {
  389. videos.push({
  390. "type": "videoWithContextRenderer",
  391. "data": {
  392. "videoId": video["videoId"],
  393. "title": video["title"]?.["runs"]?.[0]?.["text"],
  394. "thumbnails": video["thumbnail"]?.["thumbnails"],
  395. "channelName": video["longBylineText"]?.["runs"]?.[0]?.["text"],
  396. "publishedTimeText": video["publishedTimeText"]?.["simpleText"],
  397. "viewCountText": video["viewCountText"]?.["simpleText"],
  398. "shortViewCountText": video["shortViewCountText"]?.["simpleText"],
  399. "lengthText": video["lengthText"]?.["simpleText"]
  400. }
  401. });
  402. }
  403. }
  404. const ret = {
  405. "code": 200,
  406. "msg": "",
  407. "data": {
  408. "data": videos,
  409. "next": JSON.stringify({
  410. "key": nextObject["key"],
  411. "continuation": res["onResponseReceivedCommands"]?.[0]?.["appendContinuationItemsAction"]?.["continuationItems"]?.[1]?.["continuationItemRenderer"]?.["continuationEndpoint"]?.["continuationCommand"]?.["token"],
  412. }),
  413. },
  414. "id": "MusicSearchResultViewModel_search_result",
  415. "requestId": requestId
  416. }
  417. console.log(`[next] search result: ${JSON.stringify(ret)}`);
  418. return ret;
  419. } else {
  420. let url = `https://www.youtube.com/results?q=${encodeURIComponent(keyword)}&sp=EgIQAQ%253D%253D`;
  421. const htmlRes = await request('GET', url, null, {}, requestId, platform);
  422. const {data: html, _} = htmlRes;
  423. let regex = /var ytInitialData\s*=\s*({.*?});/;
  424. let match = html.match(regex);
  425. if (!match || !match.length) {
  426. console.log("can not found ytInitialData");
  427. throw new Error('JSON not found: ytInitialData');
  428. }
  429. const ytInitialDataResp = JSON.parse(match[1]);
  430. if (printable(platform)) {
  431. console.log(ytInitialDataResp);
  432. }
  433. const videos = [];
  434. const contents = ytInitialDataResp["contents"]?.["twoColumnSearchResultsRenderer"]?.["primaryContents"]?.["sectionListRenderer"]?.["contents"] || []
  435. for (const content of contents) {
  436. const currentContents = content["itemSectionRenderer"]?.["contents"]
  437. if (Array.isArray(currentContents)) {
  438. for (const currentContent of currentContents) {
  439. if (currentContent["videoRenderer"]) {
  440. const video = currentContent["videoRenderer"];
  441. if (printable(platform)) {
  442. console.log(video);
  443. }
  444. if (video && video["videoId"] && video["lengthText"] && !isLiveContent(video)) {
  445. videos.push({
  446. "type": "videoWithContextRenderer",
  447. "data": {
  448. "videoId": video["videoId"],
  449. "title": video["title"]?.["runs"]?.[0]?.["text"],
  450. "thumbnails": video["thumbnail"]?.["thumbnails"],
  451. "channelName": video["longBylineText"]?.["runs"]?.[0]?.["text"],
  452. "publishedTimeText": video["publishedTimeText"]?.["simpleText"],
  453. "viewCountText": video["viewCountText"]?.["simpleText"],
  454. "shortViewCountText": video["shortViewCountText"]?.["simpleText"],
  455. "lengthText": video["lengthText"]?.["simpleText"]
  456. }
  457. });
  458. }
  459. }
  460. }
  461. }
  462. }
  463. let next = {};
  464. if (html.split("innertubeApiKey").length > 0) {
  465. next["key"] = html
  466. .split("innertubeApiKey")[1]
  467. .trim()
  468. .split(",")[0]
  469. .split('"')[2];
  470. }
  471. next["continuation"] = contents[contents.length - 1]?.["continuationItemRenderer"]?.["continuationEndpoint"]?.["continuationCommand"]?.["token"]
  472. const ret = {
  473. "code": 200,
  474. "msg": "",
  475. "data": {
  476. "data": videos,
  477. "next": JSON.stringify(next),
  478. },
  479. "id": "MusicSearchResultViewModel_search_result",
  480. "requestId": requestId
  481. }
  482. console.log(`unnext search result: ${JSON.stringify(ret)}`);
  483. return ret;
  484. }
  485. } catch (e) {
  486. const ret = {
  487. "code": -1,
  488. "msg": e.toString(),
  489. "requestId": requestId
  490. }
  491. console.log(`search result error: ${JSON.stringify(ret)}`);
  492. return ret;
  493. }
  494. }