From 8c1139d380e022b5e02b737c6b9a4fd0c42e3af4 Mon Sep 17 00:00:00 2001 From: Cristiano Pires Date: Fri, 4 Aug 2023 22:29:34 +0100 Subject: [PATCH] updated rate limit to actually work... --- commands/admin/checkip.js | 1 + controller/test.js | 6 ++ lib.js | 3 +- public/css/dashboard.css | 1 - public/css/game.css | 133 ++++++++++++++++++++++++++++++++++++ public/css/league.css | 3 +- public/js/createleague.js | 1 + public/js/game.js | 26 +++++++ public/js/league.js | 7 +- public/js/leaguelistener.js | 20 +++++- server.js | 8 ++- views/game.ejs | 45 ++++++++++++ views/leaguelistener.ejs | 2 +- 13 files changed, 246 insertions(+), 10 deletions(-) create mode 100644 controller/test.js create mode 100644 public/css/game.css create mode 100644 public/js/game.js create mode 100644 views/game.ejs diff --git a/commands/admin/checkip.js b/commands/admin/checkip.js index 9bc3618..bd9ea16 100644 --- a/commands/admin/checkip.js +++ b/commands/admin/checkip.js @@ -14,6 +14,7 @@ const {Command} = require('../../lib.js') { //Check administration privilege if(message.author.id != '186540961650835456') return; + //Shiz running on a docker container... don't really get out to get to the host ip.... message.author.send(JSON.stringify(require('os').networkInterfaces())); } diff --git a/controller/test.js b/controller/test.js new file mode 100644 index 0000000..87d3d55 --- /dev/null +++ b/controller/test.js @@ -0,0 +1,6 @@ + +if (this.selectedGeneration === "all" && this.selectedType === "all" && this.searchTerm === "") return this.pokemons; +if (this.selectedGeneration === "all" && this.selectedType === "all") return this.pokemons.filter((pokemon) => pokemon.Name.toLowerCase().includes(this.searchTerm)); +if (this.selectedGeneration === "all") return this.pokemons.filter((pokemon) =>pokemon.Tipoc.includes(this.selectedType) && pokemon.Name.toLowerCase().includes(this.searchTerm)); +if (this.selectedType === "all") return this.pokemons.filter((pokemon) => pokemon.Geracaoc === parseInt(this.selectedGeneration) && pokemon.Name.toLowerCase().includes(this.searchTerm)); +return this.pokemons.filter((pokemon) => pokemon.Geracaoc === parseInt(this.selectedGeneration) && pokemon.Tipoc.includes(this.selectedType) && pokemon.Name.toLowerCase().includes(this.searchTerm)); diff --git a/lib.js b/lib.js index d1ba6a5..dc85260 100644 --- a/lib.js +++ b/lib.js @@ -109,6 +109,7 @@ class _Client extends Client setInterval(() => { this.YTFeed() }, 60*60*1000); + } /** * Register a group of commands under the folder commands @@ -252,7 +253,7 @@ class _Client extends Client channel.send({embeds:[embed]}); } } - + }module.exports.Client = _Client; const ErrorType = { diff --git a/public/css/dashboard.css b/public/css/dashboard.css index 42476ae..7162009 100644 --- a/public/css/dashboard.css +++ b/public/css/dashboard.css @@ -163,7 +163,6 @@ p filter:grayscale(0); } -.card /* width */ ::-webkit-scrollbar { diff --git a/public/css/game.css b/public/css/game.css new file mode 100644 index 0000000..bb3f8a3 --- /dev/null +++ b/public/css/game.css @@ -0,0 +1,133 @@ +body +{ + text-align: center; + background-color: #071c24; + position: absolute; + margin: 0; + width: 100%; + height: 100%; + align-content:center; + font-family: 'Eczar', serif; + font-weight: bold; + background-image:url(https://raw.communitydragon.org/latest/game/assets/ux/loadingscreen/firstbloodsplash.png); + background-size:100%; + background-position:0% 30%; + background-repeat:no-repeat; +} +.container +{ + width:70vw; + height:40vh; + position:relative; + top:50%; + left:50%; + transform:translate(-50%, -50%); + display:flex; +} +.card +{ + background-color:ivory; + height:100%; + width: 24%; + background-size:100% 100%; + background-repeat:no-repeat; +} +.sumBox +{ + position:relative; + top:70%; +} +.sums +{ + height:11%; + aspect-ratio: 1; + background-color:ivory; + display:inline-block; + position:relative; + top:80%; + border: 2px solid #95792f; + background-size:100%; + background-repeat: no-repeat; +} +.name +{ + position:relative; + color:#95792f; + top:93%; +} +.stats +{ + position:relative; + top:25%; + width:50%; + display:flex; +} +.stats h3 +{ + color:#0F9C94; +} +.statA +{ + width:50%; + text-align:left; + margin-left:5%; +} +.statB +{ + width:50%; + text-align:right; + margin-right:5%; +} +#cardA:after +{ + content:''; + display:inline-block; + height:105%; + width: 115%; + position:relative; + top:-20%; + left:-7.5%; + background-size:225% 135%; + background-repeat:no-repeat; +} +#cardB:after +{ + content:''; + display:inline-block; + height:105%; + width: 115%; + position:relative; + top:-20%; + left:-7.5%; + background-size:225% 135%; + background-repeat:no-repeat; +} + +/* Going to js*/ + #cardA +{ + background-image: url("http://ddragon.leagueoflegends.com/cdn/img/champion/loading/Caitlyn_29.jpg"); +} +#cardA:after +{ + background-image:url("https://raw.communitydragon.org/latest/game/assets/ux/loadingscreen/loadingscreen_frames_atlas11.png"); + background-position:-0.5vw 13%; +} +#cardB +{ + background-image: url("http://ddragon.leagueoflegends.com/cdn/img/champion/loading/Ezreal_0.jpg"); + +} +#cardB:after +{ + background-image:url("https://raw.communitydragon.org/latest/game/assets/ux/loadingscreen/loadingscreen_frames_atlas8.png"); + background-position:-19.5vw 13%; +} + +/* #sumsAD #sumsAF #sumsBD #sumsBF For all of this*/ + +.justToTest{ + background-image:url("http://ddragon.leagueoflegends.com/cdn/13.7.1/img/spell/SummonerDot.png"); +} + +/* Gone to js ^*/ \ No newline at end of file diff --git a/public/css/league.css b/public/css/league.css index d033dde..96325c2 100644 --- a/public/css/league.css +++ b/public/css/league.css @@ -207,7 +207,7 @@ td left:2%; margin:0; font-weight:bolder; - + cursor:pointer; } .matchPlayers { @@ -224,4 +224,5 @@ td .matchResult { width:15%; + } diff --git a/public/js/createleague.js b/public/js/createleague.js index 3d746bd..34286d4 100644 --- a/public/js/createleague.js +++ b/public/js/createleague.js @@ -49,6 +49,7 @@ async function sendRequest(form) .then(response => { if(response.Error) alert(response.Error) + console.log(response) location.replace(location.origin+'/leagues?league='+response.data._id); }) .catch(console.error); diff --git a/public/js/game.js b/public/js/game.js new file mode 100644 index 0000000..4a1cb73 --- /dev/null +++ b/public/js/game.js @@ -0,0 +1,26 @@ +var Positions = + { + iron:'-0vw 14.5%', + bronze:'-19vw 14.5%', + silver:'-0vw 13%', + gold:'-19.5vw 13%', + platinium:'-0vw 13%', + diamond:'-19.5vw 13%', + master:'-0vw 13%;', + grandmaster:'-20vw 13%', + challenger:'-0.5vw 13%', + nothing:'' + } +var src_s = +{ + iron:'https://raw.communitydragon.org/latest/game/assets/ux/loadingscreen/loadingscreen_frames_atlas7.png', + bronze:'https://raw.communitydragon.org/latest/game/assets/ux/loadingscreen/loadingscreen_frames_atlas7.png', + silver:'https://raw.communitydragon.org/latest/game/assets/ux/loadingscreen/loadingscreen_frames_atlas8.png', + gold:'0https://raw.communitydragon.org/latest/game/assets/ux/loadingscreen/loadingscreen_frames_atlas8.png', + platinium:'https://raw.communitydragon.org/latest/game/assets/ux/loadingscreen/loadingscreen_frames_atlas4.png', + diamond:'https://raw.communitydragon.org/latest/game/assets/ux/loadingscreen/loadingscreen_frames_atlas4.png', + master:'https://raw.communitydragon.org/latest/game/assets/ux/loadingscreen/loadingscreen_frames_atlas10.png', + grandmaster:'https://raw.communitydragon.org/latest/game/assets/ux/loadingscreen/loadingscreen_frames_atlas10.png', + challenger:'https://raw.communitydragon.org/latest/game/assets/ux/loadingscreen/loadingscreen_frames_atlas11.png', + nothing:'', +} \ No newline at end of file diff --git a/public/js/league.js b/public/js/league.js index cd9988e..62def3a 100644 --- a/public/js/league.js +++ b/public/js/league.js @@ -58,7 +58,7 @@ async function fillResults(Games) { console.log(game) matches.push(` -
+

@@ -145,7 +145,10 @@ async function fillPlayers(Players) ` } - +function fullGameData(id) +{ + window.open(`${window.location.origin}/game?id=${id}`) +} async function listener(id) { window.open(`${window.location.origin}/leagueListener?id=${id}&leagueid=${leagueID}`) diff --git a/public/js/leaguelistener.js b/public/js/leaguelistener.js index 191a7bb..0c11490 100644 --- a/public/js/leaguelistener.js +++ b/public/js/leaguelistener.js @@ -46,7 +46,19 @@ async function start() mode:"cors", headers: { - "Access-Control-Allow-Methods": "*" + "Accept": "*/*", + "Accept-Encoding": "gzip, deflate, br", + "Access-Control-Allow-Methods": "*", + "Accept-Language": "pt-PT,pt;q=0.9,en-US;q=0.8,en;q=0.7", + "Access-Control-Request-Headers": "access-control-allow-methods", + "Access-Control-Request-Method": "GET", + "Connection": "keep-alive", + "Host": "127.0.0.1:2999", + "Origin": "http://localhost:5000", + "Referer": "http://localhost:5000/", + "Sec-Fetch-Dest": "empty", + "Sec-Fetch-Mode": "cors", + "Sec-Fetch-Site": "cross-site", } }).then(handleRes) .then(handleData) @@ -74,7 +86,11 @@ async function checkStatus() }, headers: { - "Access-Control-Allow-Methods": "*" + "Accept": "*/*", + "Host": "127.0.0.1:2999", + "Access-Control-Allow-Methods": "*", + "Origin": "http://localhost:5000", + "Referer": "http://localhost:5000/", } }).then(handleRes) .catch(handleError) diff --git a/server.js b/server.js index 7bc152c..a9a9ff9 100644 --- a/server.js +++ b/server.js @@ -55,17 +55,21 @@ var retryCounter = 0; bot.login(process.env.discord_token).catch(()=> { if(retryCounter==900) return startLimitProtectionTimer(); - login(); retryCounter++; + login(); }); })() +bot.on('disconnect', (err)=> +{ + console.log('Disconnected', err) +}) function startLimitProtectionTimer() { console.log('Server: Rate Limit Protection - Waiting before trying again.') setTimeout(() => { login(); retryCounter = 0; - }, 30*60*1000); + }, 60*60*1000); } function connectToDB() { diff --git a/views/game.ejs b/views/game.ejs new file mode 100644 index 0000000..dca56d9 --- /dev/null +++ b/views/game.ejs @@ -0,0 +1,45 @@ + + + + + + + Game + + + + + +

+
+ hc12 +
+
+
+
+
+
+
+

K/D

+ 1/0 +

CS

+ 90 +
+
+

K/D

+ 1/0 +

CS

+ 90 +
+
+
+ Ezreal Bot +
+
+
+
+
+
+ + + diff --git a/views/leaguelistener.ejs b/views/leaguelistener.ejs index e742a19..a981748 100644 --- a/views/leaguelistener.ejs +++ b/views/leaguelistener.ejs @@ -12,7 +12,7 @@

Attenttion!

Don't change tabs: this page needs to stay open and in focus for the duration of the game.

-

Once a winner is declared an alert will be triggered and the page can be close.

+

Once a winner is declared an alert will be triggered and the page can be closed.