summaryrefslogtreecommitdiff
path: root/discord/pylon.lua
blob: 705f31dbdc9d0023f0135492e42d9e524c9fc280 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
local consts = require'discord.consts'
local websocket = require'http.websocket'
local json = require 'dkjson'

local Discord = {}

function Discord.make(wilson,conf)

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

local token = 'NzY1NTMyNjgzMTQ4MzI4OTcw.GJCRVk.uvplnizyiRKxONvmKD4b8lq7Ju0QSqoPAmqj1w'

local function connect()
	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)
	end
end

-- connect()