Compare commits
No commits in common. "965ab54f20e1969c5fc9d15a19448668a7120575" and "c759779135b7eb554aea104458bc4551c7037244" have entirely different histories.
965ab54f20
...
c759779135
@ -1,11 +1,11 @@
|
||||
from node:13
|
||||
from node:alpine3.10
|
||||
|
||||
WORKDIR /usr/src/app
|
||||
|
||||
COPY package*.json ./
|
||||
RUN npm install
|
||||
|
||||
COPY index.js defaultReactions.json avatar.png ./
|
||||
COPY index.js avatar.jpg
|
||||
EXPOSE 8080
|
||||
|
||||
CMD [ "node", "./index.js" ]
|
||||
CMD [ "node", "index.js" ]
|
||||
|
4
build.sh
4
build.sh
@ -1,4 +0,0 @@
|
||||
echo "Ce script ne s’exécute pas, il est là à titre d’exemple"
|
||||
exit 0
|
||||
|
||||
docker build . -t jeancloud/educbot:latest -t jeancloud/educbot:1.0.0 -t jeancloud/educbot:1.0
|
@ -30,9 +30,5 @@
|
||||
"dab": {
|
||||
"prefix": ":dab:",
|
||||
"description": "Dab"
|
||||
},
|
||||
"fuck": {
|
||||
"prefix": "🖕",
|
||||
"description": "Je vous emmerde!"
|
||||
}
|
||||
}
|
||||
|
@ -5,15 +5,16 @@
|
||||
<link rel="stylesheet" href="main.css" />
|
||||
<script src="https://cdn.jsdelivr.net/npm/vue/dist/vue.js"></script>
|
||||
<script src="main.js"></script>
|
||||
<title>Éduc-Bot, le bot d’éduc-pop</title>
|
||||
</head>
|
||||
<body>
|
||||
<main id="educbotstatus">
|
||||
<main id="educbot-status">
|
||||
<p v-if="connection">Connecté !</p>
|
||||
<p v-else="">Non connecté !</p>
|
||||
<p>{{message}}</p>
|
||||
<ul>
|
||||
<li v-for="(value, key) in reactions">
|
||||
<!--<img src="https://discordapp.com/assets/08c0a077780263f3df97613e58e71744.svg" width="30px" />
|
||||
-->
|
||||
{{value.prefix}}
|
||||
<span v-for="person in value.people">{{person}}</span>
|
||||
</li>
|
||||
|
18
index.js
18
index.js
@ -17,19 +17,12 @@ const defaultReactions = JSON.parse(fs.readFileSync('defaultReactions.json', 'ut
|
||||
|
||||
/* The html page will render data passed in WS */
|
||||
const WebSocket = require('ws')
|
||||
const wss = new WebSocket.Server({ port: process.env.WS_PORT || '8080' })
|
||||
const wss = new WebSocket.Server({ port: process.env.WS_PORT })
|
||||
wss.on('connection', ws => {
|
||||
ws.isAlive = true;
|
||||
ws.on('pong', heartbeat);
|
||||
ws.on('message', message => {
|
||||
var data;
|
||||
try {
|
||||
data = JSON.parse(message)
|
||||
} catch (e) {
|
||||
console.log(e)
|
||||
return
|
||||
}
|
||||
|
||||
const data = JSON.parse(message)
|
||||
if (!('channel' in data && 'action' in data && 'web_token' in data)) {
|
||||
ws.send('{"error":"invalid request"}')
|
||||
return
|
||||
@ -206,7 +199,7 @@ client.on('message', msg => {
|
||||
msg.reply(text)
|
||||
}
|
||||
else if (msg.content === '!educpop-web') {
|
||||
msg.reply('https://educbot.jean-cloud.net?channel_id=' + msg.channel.id + '&web_token=' + channel.web_token + '&ws_port=' + (process.env.EXT_WS_PORT || process.env.WS_PORT || '8080'))
|
||||
msg.reply('https://educbot.jean-cloud.net?channel_id=' + msg.channel.id + '&web_token=' + channel.web_token)
|
||||
}
|
||||
/* save and ignore own messages */
|
||||
else if(msg.author.username === process.env.BOT_USERNAME){
|
||||
@ -217,15 +210,14 @@ client.on('message', msg => {
|
||||
else if(msg.content.startsWith('-')) {
|
||||
const content = msg.content.slice(1)
|
||||
if (content.toLowerCase() in reactions) {
|
||||
//TODO est-ce qu’un nickname vide aura la valeur username ?
|
||||
educpopDelPerson(channel, msg.member.nickname || msg.member.username, content.toLowerCase())
|
||||
educpopDelPerson(channel, msg.member.nickname, content.toLowerCase())
|
||||
msg.delete()
|
||||
reply(channel)
|
||||
}
|
||||
}
|
||||
else if (msg.content.toLowerCase() in reactions) {
|
||||
var reaction = msg.content.toLowerCase()
|
||||
educpopAddPerson(channel, msg.author.nickname || msg.author.username, msg.content.toLowerCase())
|
||||
educpopAddPerson(channel, msg.member.nickname, msg.content.toLowerCase())
|
||||
msg.delete()
|
||||
reply(channel)
|
||||
}
|
||||
|
16
main.js
16
main.js
@ -1,11 +1,11 @@
|
||||
window.onload = function () {
|
||||
var app = new Vue({
|
||||
el: '#educbotstatus',
|
||||
el: '#educbot-status',
|
||||
data: {
|
||||
web_token: '',
|
||||
channel_id: '',
|
||||
ws: null,
|
||||
ws_url: 'wss://educbot.jean-cloud.net',
|
||||
ws_url: 'ws://localhost:8080',
|
||||
reactions: {},
|
||||
connection: false,
|
||||
message: '',
|
||||
@ -14,19 +14,17 @@ window.onload = function () {
|
||||
var url = new URL(location.href)
|
||||
this.web_token = url.searchParams.get('web_token')
|
||||
this.channel_id = url.searchParams.get('channel_id')
|
||||
this.ws_port = url.searchParams.get('ws_port') || '8080'
|
||||
if (this.web_token == '' || this.channel_id == '' || this.ws_port == '') {
|
||||
this.message = 'Erreur ! L’adresse n’est pas valide :( Redemandez-la à Educ-Bot avec la commande « !educpop-web ».'
|
||||
if (this.web_token == '' || this.channel_id == '') {
|
||||
console.err('missing parameters to vue instance')
|
||||
return
|
||||
}
|
||||
window.WebSocket = window.WebSocket || window.MozWebSocket
|
||||
this.ws = new WebSocket(this.ws_url + ':' + this.ws_port)
|
||||
this.ws = new WebSocket(this.ws_url)
|
||||
this.ws.onmessage = (data) => {
|
||||
var reactions = JSON.parse(data.data)
|
||||
if ('error' in reactions) {
|
||||
this.message = 'Erreur ! '
|
||||
if (reactions.error === "bad channel") {
|
||||
this.message += 'Les identifiants sont incorrect ! Redemandez les à Educ-Bot avec la commande « !educpop-web ».'
|
||||
this.message += 'Les identifiants sont incorrect ! Redemandez les à Educ-Bot avec la commande "!educpop-web"'
|
||||
}
|
||||
return
|
||||
}
|
||||
@ -38,11 +36,9 @@ window.onload = function () {
|
||||
}
|
||||
this.ws.onclose = () => {
|
||||
this.connection = false
|
||||
this.message = 'Erreur ! La connection avec le bot a été perdue :( Essayez d’actualiser la page.'
|
||||
}
|
||||
this.ws.onerror = () => {
|
||||
this.connection = false
|
||||
this.message = 'Erreur ! La connection avec le bot a été perdue :( Essayez d’actualiser la page.'
|
||||
}
|
||||
},
|
||||
methods: {
|
||||
|
@ -13,9 +13,6 @@
|
||||
"author": "",
|
||||
"license": "ISC",
|
||||
"dependencies": {
|
||||
"discord.js": "^12.1.1",
|
||||
"dotenv": "^8.2.0",
|
||||
"lodash.clonedeep": "^4.5.0",
|
||||
"randomstring": "^1.1.5"
|
||||
"discord.js": "^12.1.1"
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user