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) local self = setmetatable(conf, {__index=Discord}) 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 return json.encode{ op = consts.opcodes.identify, d = { properties = { os = "wilson", browser = "wilson", device = "wilson", }, intents = I.guilds + I.guild_messages + I.message_content, token = token, } } end function Discord._connect(self) local uri = "wss://gateway.discord.gg/?v=10&encoding=json" 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 return Discord