DiscordでBotを作ろうと思って、以下のようなスクリプトを組みました。(一部抜粋ですので変数定義などが書かれていない可能性があります
流れとしてはgetRSSに引数として渡したYoutubeのIDからRSSのアドレスを作り、それをXMLHttpRequestで取得する形になります。
js
1const XMLHttpRequest = require('xmlhttprequest').XMLHttpRequest; 2const URL = require('url').URL; 3var xhr = new XMLHttpRequest(); 4xhr.timeout = 1000; 5xhr.responseType='Atom'; 6xhr.withCredentials = true; 7xhr.onloadstart = function(){ 8 console.log(`[Debug] XHR load started;`); 9} 10xhr.onload = function(){ 11 console.log(`[Debug] XHR Loaded.`) 12 if(xhr.status != 200){ 13 console.log(`[Debug] ERROR : ${xhr.status} : ${xhr.statusText}`); 14 return; 15 }else{ 16 console.log(`[Debug] XHR done. \nData size:${xhr.responseText.length}`); 17 let res=xhr.responseText; 18 let name = res.substr(res.indexOf("<title>")+7,res.indexOf("</title>")-res.indexOf("<title>")-7); 19 let newestID = res.substr(res.indexOf("<yt:videoId>")+12,res.indexOf("</yt:videoId>")-res.indexOf("<yt:videoId>")-12); 20 syncname=name; 21 syncID = newestID; 22 return; 23 } 24} 25xhr.onreadystatechange = function(){ 26 console.log(`[Debug] XHR ready state changed : ${xhr.readyState}`); 27} 28xhr.onprogress = function(event){ 29 console.log(`[Debug] XHR is now going...`); 30 if(event.lengthComputable){ 31 console.log(`[Debug] XHR is now going ... \n now ${event.loaded} bytes : total ${event.total} bytes`); 32 }else{ 33 console.log(`[Debug] XHR is now going ... \n now ${event.loaded} bytes`); 34 } 35} 36xhr.onerror = function(){ 37 console.log(`[Debug] ERROR : XHR failed.`); 38} 39xhr.onabort = function(){ 40 console.log(`[Debug] Connection was aborted.`); 41} 42xhr.ontimeout = function(){ 43 console.log(`[Debug] Connection TImeout.`); 44} 45var getRSS = function(ID){ 46 console.log(`[Debug] Started to get RSS...`); 47 let url = new URL('https://www.youtube.com/feeds/videos.xml'); 48 url.searchParams.set('channel_id',ID); 49 console.log(`[Debug] Parsed url : ${url}`) 50 xhr.open('GET' , url); 51 xhr.send(); 52 return; 53}
XMLHttpRequestは取得の際に四種類のイベントを返す可能性があると知ったので、
- onload
- onerror
- onabort
- ontimeout
を受け取れるようにしました。
また、onprogressで経過も見れるようにしました。(する予定でした
ところが、実際に動かしてみると
[Debug] Started to get RSS... [Debug] Parsed url : https://www.youtube.com/feeds/videos.xml?channel_id=(ここにidが入る) [Debug] XHR ready state changed : 1 [Debug] XHR ready state changed : 1 [Debug] XHR load started;
となってしまってなにかイベントが発生するわけでもなくonprogressのログが発生するわけでもなくといった状況で困っています。
DiscordのBotだからなのでしょうか?
JavaScriptは完全に初心者なので、教えていただけると助かります。
開発環境: Discord.js , Node.js , Visual Studio Code
あなたの回答
tips
プレビュー