diff options
Diffstat (limited to 'discord/pylon.lua')
-rw-r--r-- | discord/pylon.lua | 59 |
1 files changed, 45 insertions, 14 deletions
diff --git a/discord/pylon.lua b/discord/pylon.lua index 705f31d..1ecc042 100644 --- a/discord/pylon.lua +++ b/discord/pylon.lua @@ -1,13 +1,24 @@ local consts = require'discord.consts' local websocket = require'http.websocket' local json = require 'dkjson' +local Queue = require 'util.queue' +local exec_webhook = require'discord.the' +local cqueues = require 'cqueues' local Discord = {} -function Discord.make(wilson,conf) +function Discord.make(wilson, conf) + local self = setmetatable(conf, {__index=Discord}) -end + for k,v in pairs { + wilson = wilson, + inbox = Queue.make(), + } do self[k] = v end + + assert(self.token) + return self +end local function identify_payload(token) local I = consts.intents @@ -15,9 +26,7 @@ local function identify_payload(token) op = consts.opcodes.identify, d = { properties = { - os = "wilson", - browser = "wilson", - device = "wilson", + os = "wilson", browser = "wilson", device = "wilson", }, intents = I.guilds + I.guild_messages + I.message_content, token = token, @@ -25,16 +34,38 @@ local function identify_payload(token) } end -local token = 'NzY1NTMyNjgzMTQ4MzI4OTcw.GJCRVk.uvplnizyiRKxONvmKD4b8lq7Ju0QSqoPAmqj1w' - -local function connect() +function Discord._connect(self) local uri = "wss://gateway.discord.gg/?v=10&encoding=json" - local ws = websocket.new_from_uri(uri) - print(ws:connect()) - ws:send(identify_payload(token), 'text') - for a,b in ws:each() do - print('its',a,b) + self.ws = websocket.new_from_uri(uri) + assert(self.ws:connect()) + self.ws:send(identify_payload(self.token), 'text') + -- for a,b in self.ws:each() do + -- print('its',a,b) + -- end +end + +function Discord.run(self) + local cq = cqueues.new() + self:_connect() + cq:wrap(self.recving, self) + cq:wrap(self.sending, self) + print('discord', cq:loop()) +end + +function Discord.recving(self) + for event in self.ws:each() do + print(event) + end +end + +function Discord.sending(self) + local i = 1 + while true do + exec_webhook(self.temp_wh, { username = "god", content = "h"..("i"):rep(i) }) + i = i + 1 + cqueues.sleep(1) end end --- connect() +return Discord + |