aboutsummaryrefslogtreecommitdiff
path: root/lib/models/event_models.ml
blob: b5eb80d316df9ac655b30290f314f3a06d322116 (plain) (blame)
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
open Core

module ChannelCreate = struct
    type t = {
        channel: Channel_t.t;
    } [@@deriving sexp]

    let deserialize ev =
        let channel = Channel_t.(channel_wrapper_of_yojson_exn ev |> wrap) in
        { channel; }
end

module ChannelDelete = struct
    type t = {
        channel: Channel_t.t;
    } [@@deriving sexp]

    let deserialize ev =
        let channel = Channel_t.(channel_wrapper_of_yojson_exn ev |> wrap) in
        { channel; }
end

module ChannelUpdate = struct
    type t = {
        channel: Channel_t.t;
    } [@@deriving sexp]

    let deserialize ev =
        let channel = Channel_t.(channel_wrapper_of_yojson_exn ev |> wrap) in
        { channel; }
end

module ChannelPinsUpdate = struct
    type t = {
        channel_id: Channel_id.t;
        last_pin_timestamp: string option [@default None];
    } [@@deriving sexp, yojson { strict = false }]

    let deserialize = of_yojson_exn
end

module ChannelRecipientAdd = struct
    type t = {
        channel_id: Channel_id.t;
        user: User_t.t;
    } [@@deriving sexp, yojson { strict = false }]

    let deserialize = of_yojson_exn
end

module ChannelRecipientRemove = struct
    type t = {
        channel_id: Channel_id.t;
        user: User_t.t;
    } [@@deriving sexp, yojson { strict = false }]

    let deserialize = of_yojson_exn
end

module GuildBanAdd = struct
    type t = {
        guild_id: Guild_id.t;
        user: User_t.t;
    } [@@deriving sexp, yojson { strict = false }]

    let deserialize = of_yojson_exn
end

module GuildBanRemove = struct
    type t = {
        guild_id: Guild_id.t;
        user: User_t.t;
    } [@@deriving sexp, yojson { strict = false }]

    let deserialize = of_yojson_exn
end

module GuildCreate = struct
    type t = {
        guild: Guild_t.t;
    } [@@deriving sexp]

    let deserialize ev =
        let guild = Guild_t.(pre_of_yojson_exn ev |> wrap) in
        { guild; }
end

module GuildDelete = struct
    type t = {
        id: Guild_id.t;
    } [@@deriving sexp, yojson { strict = false }]

    let deserialize = of_yojson_exn
end

module GuildUpdate = struct
    type t = {
        guild: Guild_t.t;
    } [@@deriving sexp]

    let deserialize ev =
        let guild = Guild_t.(pre_of_yojson_exn ev |> wrap) in
        { guild; }
end

module GuildEmojisUpdate = struct
    type t = {
        emojis: Emoji.t list;
        guild_id: Guild_id.t
    } [@@deriving sexp, yojson { strict = false }]

    let deserialize = of_yojson_exn
end

(* TODO guild integrations *)

module GuildMemberAdd = struct
    include Member_t

    let deserialize = of_yojson_exn
end

module GuildMemberRemove = struct
    type t = {
        guild_id: Guild_id.t;
        user: User_t.t;
    } [@@deriving sexp, yojson { strict = false }]

    let deserialize = of_yojson_exn
end

module GuildMemberUpdate = struct
    type t = {
        guild_id: Guild_id.t;
        nick: string option;
        roles: Role_id.t list;
        user: User_t.t;
    } [@@deriving sexp, yojson { strict = false }]

    let deserialize = of_yojson_exn
end

module GuildMembersChunk = struct
    type t = {
        guild_id: Guild_id.t;
        members: (Snowflake.t * Member_t.t) list;
    } [@@deriving sexp, yojson { strict = false }]

    let deserialize = of_yojson_exn
end

module GuildRoleCreate = struct
    type t = {
        guild_id: Guild_id.t;
        role: Role_t.role;
    } [@@deriving sexp, yojson { strict = false }]

    let deserialize = of_yojson_exn
end

module GuildRoleDelete = struct
    type t = {
        guild_id: Guild_id.t;
        role_id: Role_id.t;
    } [@@deriving sexp, yojson { strict = false }]

    let deserialize = of_yojson_exn
end

module GuildRoleUpdate = struct
    type t = {
        guild_id: Guild_id.t;
        role: Role_t.role;
    } [@@deriving sexp, yojson { strict = false }]

    let deserialize = of_yojson_exn
end

(* TODO figure out if this is necessary *)
module GuildUnavailable = struct
    type t = {
        guild_id: Guild_id.t;
    } [@@deriving sexp, yojson { strict = false }]

    let deserialize = of_yojson_exn
end

module MessageCreate = struct
    type t = {
        message: Message_t.t;
    } [@@deriving sexp]

    let deserialize ev =
        let message = Message_t.of_yojson_exn ev in
        { message; }
end

module MessageDelete = struct
    type t = {
        id: Message_id.t;
        channel_id: Channel_id.t;
        guild_id: Guild_id.t option [@default None];
    } [@@deriving sexp, yojson { strict = false }]

    let deserialize = of_yojson_exn
end

module MessageUpdate = struct
    type t = {
        id: Message_id.t;
        author: User_t.t option [@default None];
        channel_id: Channel_id.t;
        member: Member_t.partial_member option [@default None];
        guild_id: Guild_id.t option [@default None];
        content: string option [@default None];
        timestamp: string option [@default None];
        editedimestamp: string option [@default None];
        tts: bool option [@default None];
        mention_everyone: bool option [@default None];
        mentions: User_id.t list [@default []];
        role_mentions: Role_id.t list [@default []];
        attachments: Attachment.t list [@default []];
        embeds: Embed.t list [@default []];
        reactions: Snowflake.t list [@default []];
        nonce: Snowflake.t option [@default None];
        pinned: bool option [@default None];
        webhook_id: Snowflake.t option [@default None];
        kind: int option [@default None][@key "type"];
    } [@@deriving sexp, yojson { strict = false}]

    let deserialize = of_yojson_exn
end

module MessageDeleteBulk = struct
    type t = {
        guild_id: Guild_id.t option [@default None];
        channel_id: Channel_id.t;
        ids: Message_id.t list;
    } [@@deriving sexp, yojson { strict = false }]

    let deserialize = of_yojson_exn
end

module PresenceUpdate = struct
    include Presence

    let deserialize = of_yojson_exn
end

(* module PresencesReplace = struct
    type t = 

    let deserialize = of_yojson_exn
end *)

module ReactionAdd = struct
    type t = {
        user_id: User_id.t;
        channel_id: Channel_id.t;
        message_id: Message_id.t;
        guild_id: Guild_id.t option [@default None];
        emoji: Emoji.partial_emoji;
    } [@@deriving sexp, yojson { strict = false }]

    let deserialize = of_yojson_exn
end

module ReactionRemove = struct
    type t = {
        user_id: User_id.t;
        channel_id: Channel_id.t;
        message_id: Message_id.t;
        guild_id: Guild_id.t option [@default None];
        emoji: Emoji.partial_emoji;
    } [@@deriving sexp, yojson { strict = false }]

    let deserialize = of_yojson_exn
end

module ReactionRemoveAll = struct
    type t = {
        channel_id: Channel_id.t;
        message_id: Message_id.t;
        guild_id: Guild_id.t option [@default None];
    } [@@deriving sexp, yojson { strict = false }]

    let deserialize = of_yojson_exn
end

module Ready = struct
    type t = {
        version: int [@key "v"];
        user: User_t.t;
        private_channels: Channel_id.t list;
        guilds: Guild_t.unavailable list;
        session_id: string;
    } [@@deriving sexp, yojson { strict = false }]

    let deserialize = of_yojson_exn
end

module Resumed = struct
    type t = {
        trace: string option list [@key "_trace"];
    } [@@deriving sexp, yojson { strict = false }]

    let deserialize = of_yojson_exn
end

module TypingStart = struct
    type t = {
        channel_id: Channel_id.t;
        guild_id: Guild_id.t option [@default None];
        timestamp: int;
        user_id: User_id.t;
    } [@@deriving sexp, yojson { strict = false }]

    let deserialize = of_yojson_exn
end

module UserUpdate = struct
    type t = {
        user: User_t.t;
    } [@@deriving sexp, yojson { strict = false }]

    let deserialize ev =
        let user = User_t.of_yojson_exn ev in
        { user; }
end

module WebhookUpdate = struct
    type t = {
        channel_id: Channel_id.t;
        guild_id: Guild_id.t;
    } [@@deriving sexp, yojson { strict = false }]

    let deserialize = of_yojson_exn
end

module Unknown = struct
    type t = {
        kind: string;
        value: Yojson.Safe.json;
    }

    let deserialize kind value = { kind; value; } 
end

(* module VoiceHeartbeat = struct

end

module VoiceHello = struct

end

module VoiceServerUpdate = struct

end

module VoiceSessionDescription = struct

end

module VoiceSpeaking = struct

end

module VoiceStateUpdate = struct

end *)