1
1
/* eslint-disable jsdoc/check-param-names */
2
2
3
3
import type { RequestData , REST } from '@discordjs/rest' ;
4
- import { Routes , type RESTGetAPIVoiceRegionsResult } from 'discord-api-types/v10' ;
4
+ import {
5
+ Routes ,
6
+ type Snowflake ,
7
+ type RESTGetAPIVoiceRegionsResult ,
8
+ type RESTGetAPIGuildVoiceStateUserResult ,
9
+ type RESTGetAPIGuildVoiceStateCurrentMemberResult ,
10
+ type RESTPatchAPIGuildVoiceStateUserJSONBody ,
11
+ type RESTPatchAPIGuildVoiceStateCurrentMemberResult ,
12
+ type RESTPatchAPIGuildVoiceStateCurrentMemberJSONBody ,
13
+ type RESTPatchAPIGuildVoiceStateUserResult ,
14
+ } from 'discord-api-types/v10' ;
5
15
6
16
export class VoiceAPI {
7
17
public constructor ( private readonly rest : REST ) { }
@@ -15,4 +25,69 @@ export class VoiceAPI {
15
25
public async getVoiceRegions ( { signal } : Pick < RequestData , 'signal' > = { } ) {
16
26
return this . rest . get ( Routes . voiceRegions ( ) , { signal } ) as Promise < RESTGetAPIVoiceRegionsResult > ;
17
27
}
28
+
29
+ /**
30
+ * Fetches voice state of a user by their id
31
+ *
32
+ * @see {@link https://discord.com/developers/docs/resources/voice#get-user-voice-state }
33
+ * @param options - The options for fetching user voice state
34
+ */
35
+ public async getUserVoiceState ( guildId : Snowflake , userId : Snowflake , { signal } : Pick < RequestData , 'signal' > = { } ) {
36
+ return this . rest . get ( Routes . guildVoiceState ( guildId , userId ) , {
37
+ signal,
38
+ } ) as Promise < RESTGetAPIGuildVoiceStateUserResult > ;
39
+ }
40
+
41
+ /**
42
+ * Fetches the current user's voice state
43
+ *
44
+ * @see {@link https://discord.com/developers/docs/resources/voice#get-current-user-voice-state }
45
+ * @param options - The options for fetching user voice state
46
+ */
47
+ public async getVoiceState ( guildId : Snowflake , { signal } : Pick < RequestData , 'signal' > = { } ) {
48
+ return this . rest . get ( Routes . guildVoiceState ( guildId , '@me' ) , {
49
+ signal,
50
+ } ) as Promise < RESTGetAPIGuildVoiceStateCurrentMemberResult > ;
51
+ }
52
+
53
+ /**
54
+ * Edits a user's voice state in a guild
55
+ *
56
+ * @see {@link https://discord.com/developers/docs/resources/voice#modify-user-voice-state }
57
+ * @param guildId - The id of the guild to edit the current user's voice state in
58
+ * @param userId - The id of the user to edit the voice state for
59
+ * @param body - The data for editing the voice state
60
+ * @param options - The options for editing the voice state
61
+ */
62
+ public async editUserVoiceState (
63
+ guildId : Snowflake ,
64
+ userId : Snowflake ,
65
+ body : RESTPatchAPIGuildVoiceStateUserJSONBody ,
66
+ { reason, signal } : Pick < RequestData , 'reason' | 'signal' > = { } ,
67
+ ) {
68
+ return this . rest . patch ( Routes . guildVoiceState ( guildId , userId ) , {
69
+ reason,
70
+ body,
71
+ signal,
72
+ } ) as Promise < RESTPatchAPIGuildVoiceStateUserResult > ;
73
+ }
74
+
75
+ /**
76
+ * Edits the voice state for the current user
77
+ *
78
+ * @see {@link https://discord.com/developers/docs/resources/voice#modify-current-user-voice-state }
79
+ * @param guildId - The id of the guild
80
+ * @param body - The data for editing the voice state
81
+ * @param options - The options for editing the voice state
82
+ */
83
+ public async editVoiceState (
84
+ guildId : Snowflake ,
85
+ body : RESTPatchAPIGuildVoiceStateCurrentMemberJSONBody = { } ,
86
+ { signal } : Pick < RequestData , 'signal' > = { } ,
87
+ ) {
88
+ return this . rest . patch ( Routes . guildVoiceState ( guildId , '@me' ) , {
89
+ body,
90
+ signal,
91
+ } ) as Promise < RESTPatchAPIGuildVoiceStateCurrentMemberResult > ;
92
+ }
18
93
}
0 commit comments