chorus 0.20.0

A library for interacting with multiple Spacebar-compatible Instances at once.
Documentation
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
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
// This Source Code Form is subject to the terms of the Mozilla Public
// License, v. 2.0. If a copy of the MPL was not distributed with this
// file, You can obtain one at https://mozilla.org/MPL/2.0/.

use bytes::Bytes;
use futures_util::FutureExt;
use reqwest::Client;
use serde_json::from_str;
use serde_json::to_string;

use crate::errors::ChorusError;
use crate::errors::ChorusResult;
use crate::instance::ChorusUser;
use crate::instance::Instance;
use crate::ratelimiter::ChorusRequest;
use crate::types::ActionGuildJoinRequestSchema;
use crate::types::AdminCommunityEligibility;
use crate::types::BulkActionGuildJoinRequestsSchema;
use crate::types::BulkGuildBanReturn;
use crate::types::BulkGuildBanSchema;
use crate::types::CreateGuildJoinRequestSchema;
use crate::types::GetGuildJoinRequestsQuery;
use crate::types::GetGuildJoinRequestsReturn;
use crate::types::GetGuildMemberVerificationQuery;
use crate::types::GetGuildMembersSchema;
use crate::types::GetGuildMembersSupplementalSchema;
use crate::types::GetGuildPruneResult;
use crate::types::GetMembersWithUnusualDmActivitySchema;
use crate::types::GuildJoinRequest;
use crate::types::GuildJoinRequestCooldown;
use crate::types::GuildMemberUnusualDMActivity;
use crate::types::GuildMemberVerification;
use crate::types::GuildModifyMFALevelSchema;
use crate::types::GuildModifyVanityInviteSchema;
use crate::types::GuildOnboarding;
use crate::types::GuildPruneParameters;
use crate::types::GuildPruneResult;
use crate::types::GuildPruneSchema;
use crate::types::GuildVanityInviteInfo;
use crate::types::GuildWidget;
use crate::types::GuildWidgetImageStyle;
use crate::types::GuildWidgetSettings;
use crate::types::MFALevel;
use crate::types::ModifyGuildMemberVerificationSchema;
use crate::types::ModifyGuildOnboardingSchema;
use crate::types::ModifyGuildWelcomeScreenSchema;
use crate::types::ModifyGuildWidgetSchema;
use crate::types::PublicGuildWelcomeScreen;
use crate::types::SGMReturnNotIndexed;
use crate::types::SGMReturnOk;
use crate::types::SearchGuildBansQuery;
use crate::types::SearchGuildMembersReturn;
use crate::types::SearchGuildMembersSchema;
use crate::types::SupplementalGuildMember;
use crate::types::{
    Channel, ChannelCreateSchema, GetGuildBansQuery, Guild, GuildBanCreateSchema,
    GuildCreateSchema, GuildMember, GuildModifySchema, GuildPreview, LimitType,
    ModifyGuildMemberProfileSchema, ModifyGuildMemberSchema, QueryGuildMembersSchema,
    UserProfileMetadata,
};
use crate::types::{GuildBan, Snowflake};

impl Guild {
    /// Fetches a guild by its id.
    ///
    /// Setting `with_counts` to `true` will make the [Guild] object include approximate member and
    /// presence counts
    ///
    /// # Reference
    /// See <https://docs.discord.food/resources/guild#get-guild>
    pub async fn get(
        guild_id: Snowflake,
        with_counts: Option<bool>,
        user: &mut ChorusUser,
    ) -> ChorusResult<Guild> {
        let mut chorus_request = ChorusRequest {
            request: Client::new().get(format!(
                "{}/guilds/{}",
                user.belongs_to.read().unwrap().urls.api,
                guild_id
            )),
            limit_type: LimitType::Guild(guild_id),
        }
        .with_headers_for(user);

        if let Some(with_counts) = with_counts {
            chorus_request.request = chorus_request.request.query(&[(
                "with_counts",
                serde_json::to_string(&with_counts).unwrap().as_str(),
            )]);
        }

        let response = chorus_request
            .send_and_deserialize_response::<Guild>(user)
            .await?;
        Ok(response)
    }

    /// Creates a new guild.
    ///
    /// Fires off a [crate::types::GuildCreate] gateway event
    ///
    /// # Reference
    /// See <https://docs.discord.food/resources/guild#create-guild>
    pub async fn create(
        user: &mut ChorusUser,
        guild_create_schema: GuildCreateSchema,
    ) -> ChorusResult<Guild> {
        let url = format!("{}/guilds", user.belongs_to.read().unwrap().urls.api);
        let chorus_request = ChorusRequest {
            request: Client::new().post(url.clone()).json(&guild_create_schema),
            limit_type: LimitType::Global,
        }
        .with_headers_for(user);
        chorus_request
            .send_and_deserialize_response::<Guild>(user)
            .await
    }

    /// Modify a guild's settings.
    ///
    /// Requires the [MANAGE_GUILD](crate::types::PermissionFlags::MANAGE_GUILD) permission.
    ///
    /// Returns the updated guild.
    ///
    /// Fires a [GuildUpdate](crate::types::GuildUpdate) gateway event.
    ///
    /// # Notes
    /// This route requires MFA.
    ///
    /// # Reference
    /// <https://docs.discord.food/resources/guild#modify-guild>
    pub async fn modify(
        guild_id: Snowflake,
        schema: GuildModifySchema,
        audit_log_reason: Option<String>,
        user: &mut ChorusUser,
    ) -> ChorusResult<Guild> {
        let chorus_request = ChorusRequest {
            request: Client::new()
                .patch(format!(
                    "{}/guilds/{}",
                    user.belongs_to.read().unwrap().urls.api,
                    guild_id,
                ))
                .json(&schema),
            limit_type: LimitType::Guild(guild_id),
        }
        .with_maybe_mfa(&user.mfa_token)
        .with_maybe_audit_log_reason(audit_log_reason)
        .with_headers_for(user);

        let response = chorus_request
            .send_and_deserialize_response::<Guild>(user)
            .await?;
        Ok(response)
    }

    /// Modifies the guild's mfa requirement for administrative actions.
    ///
    /// Requires the [MANAGE_GUILD](crate::types::PermissionFlags::MANAGE_GUILD) permission.
    ///
    /// Fires a [GuildUpdate](crate::types::GuildUpdate) gateway event.
    ///
    /// # Notes
    /// This route requires MFA.
    ///
    /// As of 2025/03/13, Spacebar does not yet implement this endpoint.
    ///
    /// # Reference
    /// See <https://docs.discord.food/resources/guild#modify-guild-mfa-level>
    pub async fn modify_mfa_level(
        guild_id: Snowflake,
        mfa_level: MFALevel,
        audit_log_reason: Option<String>,
        user: &mut ChorusUser,
    ) -> ChorusResult<()> {
        let chorus_request = ChorusRequest {
            request: Client::new()
                .post(format!(
                    "{}/guilds/{}/mfa",
                    user.belongs_to.read().unwrap().urls.api,
                    guild_id
                ))
                .json(&GuildModifyMFALevelSchema { level: mfa_level }),
            limit_type: LimitType::Guild(guild_id),
        }
        .with_maybe_mfa(&user.mfa_token)
        .with_maybe_audit_log_reason(audit_log_reason)
        .with_headers_for(user);

        chorus_request
            .send_and_deserialize_response::<GuildModifyMFALevelSchema>(user)
            .await
            .map(|_x| ())
    }

    /// Sends a verification code to the guild owner's email address to initiate the guild
    /// ownership transfer process.
    ///
    /// User must be the guild's owner.
    ///
    /// # Notes
    /// As of 2025/03/13, Spacebar does not yet implement this endpoint.
    ///
    /// # Reference
    /// See <https://docs.discord.food/resources/guild#get-guild-ownership-transfer-code>
    pub async fn send_ownership_transfer_code(
        guild_id: Snowflake,
        user: &mut ChorusUser,
    ) -> ChorusResult<()> {
        let chorus_request = ChorusRequest {
            request: Client::new().post(format!(
                "{}/guilds/{}/pincode",
                user.belongs_to.read().unwrap().urls.api,
                guild_id
            )),
            limit_type: LimitType::Guild(guild_id),
        }
        .with_headers_for(user);

        chorus_request.send_and_handle_as_result(user).await
    }

    /// Deletes a guild by its id.
    ///
    /// User must be the owner.
    ///
    /// # Notes
    /// This route requires MFA.
    ///
    /// # Example
    ///
    /// ```rust
    /// # mod tests;
    /// # tokio_test::block_on(async {
    /// # let mut bundle = tests::common::setup().await;
    /// # use chorus::{types::Guild, instance::ChorusUser, types::Snowflake};
    /// let mut user: ChorusUser;
    /// # user = bundle.user;
    /// let guild_id = Snowflake::from(1234567890);
    /// # let guild_id = bundle.guild.read().unwrap().id;
    ///
    /// match Guild::delete(&mut user, guild_id).await {
    ///     Err(e) => println!("Error deleting guild: {:?}", e),
    ///     Ok(_) => println!("Guild deleted successfully"),
    /// }
    /// # tests::common::teardown(bundle).await;
    /// # })
    /// ```
    ///
    /// # Reference
    /// See <https://docs.discord.food/resources/guild#delete-guild>
    pub async fn delete(user: &mut ChorusUser, guild_id: Snowflake) -> ChorusResult<()> {
        let url = format!(
            "{}/guilds/{}/delete",
            user.belongs_to.read().unwrap().urls.api,
            guild_id
        );

        let chorus_request = ChorusRequest {
            request: Client::new().post(url.clone()),
            limit_type: LimitType::Global,
        }
        .with_maybe_mfa(&user.mfa_token)
        .with_headers_for(user);

        chorus_request.send_and_handle_as_result(user).await
    }

    /// Creates a new channel in a guild.
    ///
    /// Requires the [MANAGE_CHANNELS](crate::types::PermissionFlags::MANAGE_CHANNELS) permission.
    ///
    /// # Notes
    /// This method is a wrapper for [Channel::create].
    ///
    /// # Reference
    /// See <https://docs.discord.food/resources/channel#create-guild-channel>
    pub async fn create_channel(
        &self,
        user: &mut ChorusUser,
        audit_log_reason: Option<String>,
        schema: ChannelCreateSchema,
    ) -> ChorusResult<Channel> {
        Channel::create(user, self.id, audit_log_reason, schema).await
    }

    /// Returns a list of the guild's channels.
    ///
    /// Doesn't include threads.
    ///
    /// # Reference
    /// See <https://docs.discord.food/resources/channel#get-guild-channels>
    pub async fn channels(&self, user: &mut ChorusUser) -> ChorusResult<Vec<Channel>> {
        let chorus_request = ChorusRequest {
            request: Client::new().get(format!(
                "{}/guilds/{}/channels",
                user.belongs_to.read().unwrap().urls.api,
                self.id
            )),
            limit_type: LimitType::Channel(self.id),
        }
        .with_headers_for(user);

        chorus_request.send_and_deserialize_response(user).await
    }

    /// Returns a guild preview object for the given guild ID.
    ///
    /// If the user is not in the guild, the guild must be discoverable.
    ///
    /// # Notes
    /// As of 2025/03/13, Spacebar does not yet implement this endpoint.
    ///
    /// # Reference
    /// See <https://docs.discord.food/resources/guild#get-guild-preview>
    pub async fn get_preview(
        guild_id: Snowflake,
        user: &mut ChorusUser,
    ) -> ChorusResult<GuildPreview> {
        let chorus_request = ChorusRequest {
            request: Client::new().get(format!(
                "{}/guilds/{}/preview",
                user.belongs_to.read().unwrap().urls.api,
                guild_id,
            )),
            limit_type: LimitType::Guild(guild_id),
        }
        .with_headers_for(user);

        let response = chorus_request
            .send_and_deserialize_response::<GuildPreview>(user)
            .await?;
        Ok(response)
    }

    /// Returns information about guild members that have ever had unusual DM activity.
    ///
    /// (User must be a member of the guild)
    ///
    /// # Notes
    /// As of 2025/03/13, Spacebar does not yet implement this endpoint.
    ///
    /// # Reference
    /// See <https://docs.discord.food/resources/guild#get-guild-members-with-unusual-dm-activity>
    pub async fn get_members_with_unusual_dm_activity(
        guild_id: Snowflake,
        query: GetMembersWithUnusualDmActivitySchema,
        user: &mut ChorusUser,
    ) -> ChorusResult<Vec<GuildMemberUnusualDMActivity>> {
        let request = ChorusRequest {
            request: Client::new()
                .get(format!(
                    "{}/guilds/{}/members/unusual-dm-activity",
                    user.belongs_to.read().unwrap().urls.api,
                    guild_id,
                ))
                .query(&query.to_query()),
            limit_type: LimitType::Guild(guild_id),
        }
        .with_headers_for(user);

        request.send_and_deserialize_response(user).await
    }

    /// Returns a list of guild member objects that are members of the guild.
    ///
    /// # Notes
    /// This endpoint is not usable by user accounts and is restricted based on the
    /// GUILD_MEMBERS intent for applications
    ///
    /// # Reference
    /// See <https://docs.discord.food/resources/guild#get-guild-members>
    pub async fn get_members(
        guild_id: Snowflake,
        query: GetGuildMembersSchema,
        user: &mut ChorusUser,
    ) -> ChorusResult<Vec<GuildMember>> {
        let request = ChorusRequest {
            request: Client::new()
                .get(format!(
                    "{}/guilds/{}/members",
                    user.belongs_to.read().unwrap().urls.api,
                    guild_id,
                ))
                .query(&query.to_query()),
            limit_type: LimitType::Guild(guild_id),
        }
        .with_headers_for(user);

        request
            .send_and_deserialize_response::<Vec<GuildMember>>(user)
            .await
    }

    /// Returns a list of guild member objects whose username or nickname starts with a provided string.
    ///
    /// Functions identically to the [RequestGuildMembers](crate::types::GatewayRequestGuildMembers) gateway event
    ///
    /// # Notes
    /// This endpoint is not usable by user accounts
    ///
    /// As of 2025/03/13, Spacebar does not yet implement this endpoint.
    ///
    /// # Reference
    /// See <https://docs.discord.food/resources/guild#query-guild-members>
    pub async fn query_members(
        guild_id: Snowflake,
        query: QueryGuildMembersSchema,
        user: &mut ChorusUser,
    ) -> ChorusResult<Vec<GuildMember>> {
        let request = ChorusRequest {
            request: Client::new()
                .get(format!(
                    "{}/guilds/{}/members/search",
                    user.belongs_to.read().unwrap().urls.api,
                    guild_id,
                ))
                .query(&query.to_query()),
            limit_type: LimitType::Guild(guild_id),
        }
        .with_headers_for(user);

        request
            .send_and_deserialize_response::<Vec<GuildMember>>(user)
            .await
    }

    /// Returns [SupplementalGuildMember](crate::types::SupplementalGuildMember) objects that match a specified query.
    ///
    /// Requires the [PermissionFlags::MANAGE_GUILD](crate::types::PermissionFlags::MANAGE_GUILD) permission.
    ///
    /// # Notes
    ///
    /// (On the Discord.com client, this
    /// endpoint is used for the User Management - Members tab in Server Settings)
    ///
    /// This endpoint utilizes Elasticsearch to power results.
    ///
    /// This means that while it is very powerful, it's also tricky to use and reliant on an
    /// index.
    ///
    /// As of 2025/03/13, Spacebar does not yet implement this endpoint.
    ///
    /// # Reference
    /// See <https://docs.discord.food/resources/guild#get-guild-members-supplemental>
    pub async fn search_members(
        guild_id: Snowflake,
        schema: SearchGuildMembersSchema,
        user: &mut ChorusUser,
    ) -> ChorusResult<SearchGuildMembersReturn> {
        let request = ChorusRequest {
            request: Client::new()
                .post(format!(
                    "{}/guilds/{}/members-search",
                    user.belongs_to.read().unwrap().urls.api,
                    guild_id,
                ))
                .json(&schema),
            limit_type: LimitType::Guild(guild_id),
        }
        .with_headers_for(user);

        let response = request.send(user).await?;
        log::trace!("Got response: {:?}", response);

        let http_status = response.status();

        match http_status {
            http::StatusCode::ACCEPTED | http::StatusCode::OK => {
                let response_text = match response.text().await {
                    Ok(string) => string,
                    Err(e) => {
                        return Err(ChorusError::InvalidResponse {
                            error: format!(
                                "Error while trying to process the HTTP response into a String: {}",
                                e
                            ),
                            http_status,
                        });
                    }
                };

                match http_status {
                    http::StatusCode::ACCEPTED => {
                        match serde_json::from_str::<SGMReturnNotIndexed>(&response_text) {
                            Ok(object) => Ok(SearchGuildMembersReturn::NotIndexed(object)),
                            Err(e) => {
                                Err(ChorusError::InvalidResponse {
												error: format!(
												"Error while trying to deserialize the JSON response into requested type T: {}. JSON Response: {}",
												e, response_text),
                                                                                                http_status
											})
                            }
                        }
                    }
                    http::StatusCode::OK => {
                        match serde_json::from_str::<SGMReturnOk>(&response_text) {
                            Ok(object) => Ok(SearchGuildMembersReturn::Ok(object)),
                            Err(e) => {
                                Err(ChorusError::InvalidResponse {
												error: format!(
												"Error while trying to deserialize the JSON response into requested type T: {}. JSON Response: {}",
												e, response_text),
                                                                                                http_status
											})
                            }
                        }
                    }
                    _ => unreachable!(),
                }
            }
            _ => Err(ChorusError::InvalidResponse {
                error: format!("Received unexpected http status code: {}", http_status),
                http_status,
            }),
        }
    }

    /// Fetches [SupplementalGuildMember] objects for the given user IDs.
    ///
    /// Requires the [PermissionFlags::MANAGE_GUILD](crate::types::PermissionFlags::MANAGE_GUILD) permission.
    ///
    /// # Notes
    /// As of 2025/03/13, Spacebar does not yet implement this endpoint.
    ///
    /// # Reference
    /// See <https://docs.discord.food/resources/guild#get-guild-members-supplemental>
    pub async fn get_members_supplemental(
        guild_id: Snowflake,
        schema: GetGuildMembersSupplementalSchema,
        user: &mut ChorusUser,
    ) -> ChorusResult<Vec<SupplementalGuildMember>> {
        let request = ChorusRequest {
            request: Client::new()
                .post(format!(
                    "{}/guilds/{}/members/supplemental",
                    user.belongs_to.read().unwrap().urls.api,
                    guild_id,
                ))
                .json(&schema),
            limit_type: LimitType::Guild(guild_id),
        }
        .with_headers_for(user);

        request.send_and_deserialize_response(user).await
    }

    /// Returns a list of ban objects for the guild.
    ///
    /// Requires the [BAN_MEMBERS](crate::types::PermissionFlags::BAN_MEMBERS) permission.
    ///
    /// # Reference
    /// See <https://docs.discord.food/resources/guild#get-guild-bans>
    pub async fn get_bans(
        user: &mut ChorusUser,
        guild_id: Snowflake,
        query: Option<GetGuildBansQuery>,
    ) -> ChorusResult<Vec<GuildBan>> {
        let url = format!(
            "{}/guilds/{}/bans",
            user.belongs_to.read().unwrap().urls.api,
            guild_id,
        );

        let mut request = ChorusRequest {
            request: Client::new().get(url),
            limit_type: LimitType::Guild(guild_id),
        }
        .with_headers_for(user);

        if let Some(query) = query {
            request.request = request.request.query(&query.to_query());
        }

        request
            .send_and_deserialize_response::<Vec<GuildBan>>(user)
            .await
    }

    /// Returns a list of ban objects whose usernames or display names contains a provided string.
    ///
    /// Requires the [BAN_MEMBERS](crate::types::PermissionFlags::BAN_MEMBERS) permission.
    ///
    /// # Notes
    /// As of 2025/03/13, Spacebar does not yet implement this endpoint.
    ///
    /// # Reference
    /// See <https://docs.discord.food/resources/guild#search-guild-bans>
    pub async fn search_bans(
        user: &mut ChorusUser,
        guild_id: Snowflake,
        query: SearchGuildBansQuery,
    ) -> ChorusResult<Vec<GuildBan>> {
        let url = format!(
            "{}/guilds/{}/bans/search",
            user.belongs_to.read().unwrap().urls.api,
            guild_id,
        );

        let mut request = ChorusRequest {
            request: Client::new().get(url),
            limit_type: LimitType::Guild(guild_id),
        }
        .with_headers_for(user);

        request.request = request.request.query(&query.to_query());

        request
            .send_and_deserialize_response::<Vec<GuildBan>>(user)
            .await
    }

    /// Returns a ban object for the given user.
    ///
    /// Requires the [BAN_MEMBERS](crate::types::PermissionFlags::BAN_MEMBERS) permission.
    ///
    /// # Reference
    /// See <https://docs.discord.food/resources/guild#get-guild-ban>
    pub async fn get_ban(
        user: &mut ChorusUser,
        guild_id: Snowflake,
        user_id: Snowflake,
    ) -> ChorusResult<GuildBan> {
        let url = format!(
            "{}/guilds/{}/bans/{}",
            user.belongs_to.read().unwrap().urls.api,
            guild_id,
            user_id
        );

        let request = ChorusRequest {
            request: Client::new().get(url),
            limit_type: LimitType::Guild(guild_id),
        }
        .with_headers_for(user);

        request
            .send_and_deserialize_response::<GuildBan>(user)
            .await
    }

    /// Creates a ban for the guild - bans a user from the guild.
    ///
    /// Requires the [BAN_MEMBERS](crate::types::PermissionFlags::BAN_MEMBERS) permission.
    ///
    /// # Reference
    /// See <https://docs.discord.food/resources/guild#create-guild-ban>
    pub async fn create_ban(
        guild_id: Snowflake,
        user_id: Snowflake,
        audit_log_reason: Option<String>,
        schema: GuildBanCreateSchema,
        user: &mut ChorusUser,
    ) -> ChorusResult<()> {
        // FIXME: Return GuildBan instead of (). Requires <https://github.com/spacebarchat/server/issues/1096> to be resolved.
        let request = ChorusRequest {
            request: Client::new()
                .put(format!(
                    "{}/guilds/{}/bans/{}",
                    user.belongs_to.read().unwrap().urls.api,
                    guild_id,
                    user_id
                ))
                .json(&schema),
            limit_type: LimitType::Guild(guild_id),
        }
        .with_maybe_audit_log_reason(audit_log_reason)
        .with_headers_for(user);

        request.send_and_handle_as_result(user).await
    }

    /// Creates multiple bans for the guild.
    ///
    /// Requires both the [BAN_MEMBERS](crate::types::PermissionFlags::BAN_MEMBERS) and [MANAGE_GUILD](crate::types::PermissionFlags::MANAGE_GUILD) permissions.
    ///
    /// # Notes
    /// This route requires MFA.
    ///
    /// # Reference
    /// See <https://docs.discord.food/resources/guild#bulk-guild-ban>
    pub async fn bulk_create_ban(
        guild_id: Snowflake,
        audit_log_reason: Option<String>,
        schema: BulkGuildBanSchema,
        user: &mut ChorusUser,
    ) -> ChorusResult<BulkGuildBanReturn> {
        let request = ChorusRequest {
            request: Client::new()
                .post(format!(
                    "{}/guilds/{}/bulk-ban",
                    user.belongs_to.read().unwrap().urls.api,
                    guild_id,
                ))
                .json(&schema),
            limit_type: LimitType::Guild(guild_id),
        }
        .with_maybe_audit_log_reason(audit_log_reason)
        .with_maybe_mfa(&user.mfa_token)
        .with_headers_for(user);

        request.send_and_deserialize_response(user).await
    }

    /// Removes the ban for a user.
    ///
    /// Requires the [BAN_MEMBERS](crate::types::PermissionFlags::BAN_MEMBERS) permission.
    ///
    /// # Reference:
    /// See <https://docs.discord.food/resources/guild#delete-guild-ban>
    pub async fn delete_ban(
        user: &mut ChorusUser,
        guild_id: Snowflake,
        user_id: Snowflake,
        audit_log_reason: Option<String>,
    ) -> ChorusResult<()> {
        let url = format!(
            "{}/guilds/{}/bans/{}",
            user.belongs_to.read().unwrap().urls.api,
            guild_id,
            user_id
        );

        let request = ChorusRequest {
            request: Client::new().delete(url),
            limit_type: LimitType::Guild(guild_id),
        }
        .with_maybe_audit_log_reason(audit_log_reason)
        .with_headers_for(user);

        request.send_and_handle_as_result(user).await
    }

    /// Returns the number of members that would be removed in a prune operation.
    ///
    /// Requires both the [KICK_MEMBERS](crate::types::PermissionFlags::KICK_MEMBERS) and [MANAGE_GUILD](crate::types::PermissionFlags::MANAGE_GUILD) permissions.
    ///
    /// By default, a prune will not remove users with roles.
    ///
    /// You can optionally include specific roles by providing the `include_roles` parameter.
    ///
    /// Any inactive user that has a subset of the provided roles will be counted in the prune and
    /// user with additional roles will not.
    ///
    /// # Reference
    /// See <https://docs.discord.food/resources/guild#get-guild-prune>
    pub async fn get_prune(
        user: &mut ChorusUser,
        guild_id: Snowflake,
        schema: GuildPruneParameters,
    ) -> ChorusResult<GetGuildPruneResult> {
        let url = format!(
            "{}/guilds/{}/prune",
            user.belongs_to.read().unwrap().urls.api,
            guild_id,
        );

        let request = ChorusRequest {
            request: Client::new().get(url).query(&schema.to_query()),
            limit_type: LimitType::Guild(guild_id),
        }
        .with_headers_for(user);

        request.send_and_deserialize_response(user).await
    }

    /// Begins a prune operation.
    ///
    /// Requires both the [KICK_MEMBERS](crate::types::PermissionFlags::KICK_MEMBERS) and [MANAGE_GUILD](crate::types::PermissionFlags::MANAGE_GUILD) permissions.
    ///
    /// For large guilds, it's recommended to set the `compute_prune_count` field to `false`,
    /// allowing the request to reqturn before all members are pruned.
    ///
    /// By default, a prune will not remove users with roles.
    ///
    /// You can optionally include specific roles by providing the `include_roles` parameter.
    ///
    /// Any inactive user that has a subset of the provided roles will be counted in the prune and
    /// user with additional roles will not.
    ///
    /// # Reference
    /// See <https://docs.discord.food/resources/guild#prune-guild>
    pub async fn prune(
        user: &mut ChorusUser,
        guild_id: Snowflake,
        audit_log_reason: Option<String>,
        schema: GuildPruneSchema,
    ) -> ChorusResult<GuildPruneResult> {
        let url = format!(
            "{}/guilds/{}/prune",
            user.belongs_to.read().unwrap().urls.api,
            guild_id,
        );

        let request = ChorusRequest {
            request: Client::new().post(url).json(&schema),
            limit_type: LimitType::Guild(guild_id),
        }
        .with_maybe_audit_log_reason(audit_log_reason)
        .with_headers_for(user);

        request.send_and_deserialize_response(user).await
    }

    /// Returns the [GuildWidgetSettings] for a guild.
    ///
    /// Requires the [MANAGE_GUILD](crate::types::PermissionFlags::MANAGE_GUILD) permission.
    ///
    /// # Reference
    /// See <https://docs.discord.food/resources/guild#get-guild-widget-settings>
    pub async fn get_widget_settings(
        user: &mut ChorusUser,
        guild_id: Snowflake,
    ) -> ChorusResult<GuildWidgetSettings> {
        let url = format!(
            "{}/guilds/{}/widget",
            user.belongs_to.read().unwrap().urls.api,
            guild_id,
        );

        let request = ChorusRequest {
            request: Client::new().get(url),
            limit_type: LimitType::Guild(guild_id),
        }
        .with_headers_for(user);

        request.send_and_deserialize_response(user).await
    }

    /// Modifies the [GuildWidgetSettings] for a guild.
    ///
    /// Requires the [MANAGE_GUILD](crate::types::PermissionFlags::MANAGE_GUILD) permission.
    ///
    /// Returns the updated object on success.
    ///
    /// # Reference
    /// See <https://docs.discord.food/resources/guild#get-guild-widget-settings>
    pub async fn modify_widget(
        user: &mut ChorusUser,
        guild_id: Snowflake,
        audit_log_reason: Option<String>,
        schema: ModifyGuildWidgetSchema,
    ) -> ChorusResult<GuildWidgetSettings> {
        let url = format!(
            "{}/guilds/{}/widget",
            user.belongs_to.read().unwrap().urls.api,
            guild_id,
        );

        let request = ChorusRequest {
            request: Client::new().patch(url).json(&schema),
            limit_type: LimitType::Guild(guild_id),
        }
        .with_maybe_audit_log_reason(audit_log_reason)
        .with_headers_for(user);

        request.send_and_deserialize_response(user).await
    }

    /// Returns the [GuildWidget] for the given guild ID.
    ///
    /// This endpoint is unauthenticated.
    ///
    /// (The guild must have the widget enabled.)
    ///
    /// If a widget channel is set and a usable invite for it does not already exist,
    /// fetching the widget will create one. Subsequent calls will attempt to reuse the generated
    /// invite.
    ///
    /// # Reference
    /// See <https://docs.discord.food/resources/guild#get-guild-widget>
    pub async fn get_widget(
        instance: &mut Instance,
        guild_id: Snowflake,
    ) -> ChorusResult<GuildWidget> {
        let url = format!("{}/guilds/{}/widget.json", instance.urls.api, guild_id,);

        let chorus_request = ChorusRequest {
            request: Client::new().get(url.clone()),
            // Note: how do I know which LimitType it is? it is probably ip or global?
            limit_type: LimitType::Ip,
        };

        chorus_request
            .send_anonymous_and_deserialize_response(instance)
            .await
    }

    /// Returns a widget image for the given guild ID.
    ///
    /// This endpoint is unauthenticated.
    ///
    /// (The guild must have the widget enabled.)
    ///
    /// # Reference
    /// See <https://docs.discord.food/resources/guild#get-guild-widget-image>
    pub async fn get_widget_image(
        instance: &mut Instance,
        guild_id: Snowflake,
        style: Option<GuildWidgetImageStyle>,
    ) -> ChorusResult<Bytes> {
        let url = format!("{}/guilds/{}/widget.png", instance.urls.api, guild_id,);

        let mut chorus_request = ChorusRequest {
            request: Client::new().get(url.clone()),
            // Note: how do I know which LimitType it is? it is probably ip or global?
            limit_type: LimitType::Ip,
        };

        if let Some(style_some) = style {
            match serde_json::to_string(&style_some) {
                Err(e) => {
                    return Err(ChorusError::FormCreation {
                        error: format!("Failed to serialize: {}", e),
                    })
                }
                Ok(string) => {
                    chorus_request.request = chorus_request
                        .request
                        .query(&("style".to_string(), string.replace('"', "")));
                }
            }
        }

        let response = chorus_request.send_anonymous(instance).await?;

        let http_status = response.status();

        // No need to check success / failure state, send request does that already

        let response_bytes = match response.bytes().await {
            Ok(string) => string,
            Err(e) => {
                return Err(ChorusError::InvalidResponse {
                    error: format!(
                        "Error while trying to process the HTTP response into Bytes: {}",
                        e
                    ),
                    http_status,
                });
            }
        };

        Ok(response_bytes)
    }

    /// Fetches [GuildVanityInviteInfo] for a given guild.
    ///
    /// The guild must have the [VANITY_URL](crate::types::types::guild_configuration::GuildFeatures::VanityUrl) or [GUILD_WEB_PAGE_VANITY_URL](crate::types::types::guild_configuration::GuildFeatures::GuildWebPageVanityURL) feature.
    ///
    /// Requires the [MANAGE_GUILD](crate::types::PermissionFlags::MANAGE_GUILD) permission.
    ///
    /// # Reference
    /// See <https://docs.discord.food/resources/guild#get-guild-vanity-invite>
    pub async fn get_vanity_invite(
        user: &mut ChorusUser,
        guild_id: Snowflake,
    ) -> ChorusResult<GuildVanityInviteInfo> {
        let url = format!(
            "{}/guilds/{}/vanity-url",
            user.belongs_to.read().unwrap().urls.api,
            guild_id,
        );

        let request = ChorusRequest {
            request: Client::new().get(url),
            limit_type: LimitType::Guild(guild_id),
        }
        .with_headers_for(user);

        request.send_and_deserialize_response(user).await
    }

    /// Modifies the guild vanity invite code for a given guild.
    ///
    /// The guild must have the [VANITY_URL](crate::types::types::guild_configuration::GuildFeatures::VanityUrl) or [GUILD_WEB_PAGE_VANITY_URL](crate::types::types::guild_configuration::GuildFeatures::GuildWebPageVanityURL) feature.
    ///
    /// Guild without the [VANITY_URL](crate::types::types::guild_configuration::GuildFeatures::VanityUrl) feature can only
    /// clear their vanity invite.
    ///
    /// Requires both the [MANAGE_GUILD](crate::types::PermissionFlags::MANAGE_GUILD) and [CREATE_INSTANT_INVITE](crate::types::PermissionFlags::CREATE_INSTANT_INVITE) permissions.
    ///
    /// # Notes
    /// This route requires MFA.
    ///
    /// # Reference
    /// See <https://docs.discord.food/resources/guild#modify-guild-vanity-invite>
    pub async fn modify_vanity_invite(
        user: &mut ChorusUser,
        guild_id: Snowflake,
        code: Option<String>,
    ) -> ChorusResult<GuildVanityInviteInfo> {
        let url = format!(
            "{}/guilds/{}/vanity-url",
            user.belongs_to.read().unwrap().urls.api,
            guild_id,
        );

        let request = ChorusRequest {
            request: Client::new()
                .patch(url)
                .json(&GuildModifyVanityInviteSchema { code }),
            limit_type: LimitType::Guild(guild_id),
        }
        .with_maybe_mfa(&user.mfa_token)
        .with_headers_for(user);

        request.send_and_deserialize_response(user).await
    }

    /// Fetches the [GuildMemberVerification] object for a given guild if one is set.
    ///
    /// If the user is not in the guild, the guild must be discoverable or have guild previewing
    /// disabled.
    ///
    /// If `with_guild` is set to `true `(it is `false` by default), the object will include
    /// [GuildMemberVerificationGuild](crate::types::GuildMemberVerificationGuild).
    ///
    /// To set it to true, the user must not be a member of the guild and the guild must not be
    /// full.
    ///
    /// # Reference
    /// See <https://docs.discord.food/resources/guild#get-guild-member-verification>
    pub async fn get_member_verification(
        user: &mut ChorusUser,
        guild_id: Snowflake,
        query: GetGuildMemberVerificationQuery,
    ) -> ChorusResult<GuildMemberVerification> {
        let url = format!(
            "{}/guilds/{}/member-verification",
            user.belongs_to.read().unwrap().urls.api,
            guild_id,
        );

        let request = ChorusRequest {
            request: Client::new().get(url).query(&query.to_query()),
            limit_type: LimitType::Guild(guild_id),
        }
        .with_headers_for(user);

        request.send_and_deserialize_response(user).await
    }

    /// Modifies the [GuildMemberVerification] object for the guild.
    ///
    /// Requires the [MANAGE_GUILD](crate::types::PermissionFlags::MANAGE_GUILD) permission.
    ///
    /// Returns the updated object.
    ///
    /// # Reference
    /// See <https://docs.discord.food/resources/guild#modify-guild-member-verification>
    pub async fn modify_member_verification(
        user: &mut ChorusUser,
        guild_id: Snowflake,
        schema: ModifyGuildMemberVerificationSchema,
        audit_log_reason: Option<String>,
    ) -> ChorusResult<GuildMemberVerification> {
        let url = format!(
            "{}/guilds/{}/member-verification",
            user.belongs_to.read().unwrap().urls.api,
            guild_id,
        );

        let request = ChorusRequest {
            request: Client::new().patch(url).json(&schema),
            limit_type: LimitType::Guild(guild_id),
        }
        .with_maybe_audit_log_reason(audit_log_reason)
        .with_headers_for(user);

        request.send_and_deserialize_response(user).await
    }

    /// Returns a list of [GuildJoinRequest]s for the guild.
    ///
    /// Requires the [KICK_MEMBERS](crate::types::PermissionFlags::KICK_MEMBERS) permission.
    ///
    /// Also requires that the guild have the [MemberVerificationManualApproval](crate::types::types::guild_configuration::GuildFeatures::MemberVerificationManualApproval) feature.
    ///
    /// # Notes
    /// As of 2025/03/13, Spacebar does not yet implement this endpoint. (Or join requests)
    ///
    /// # Reference
    /// See <https://docs.discord.food/resources/guild#get-guild-join-requests>
    pub async fn get_join_requests(
        user: &mut ChorusUser,
        guild_id: Snowflake,
        query: GetGuildJoinRequestsQuery,
    ) -> ChorusResult<GetGuildJoinRequestsReturn> {
        let url = format!(
            "{}/guilds/{}/requests",
            user.belongs_to.read().unwrap().urls.api,
            guild_id,
        );

        let request = ChorusRequest {
            request: Client::new().get(url).query(&query.to_query()),
            limit_type: LimitType::Guild(guild_id),
        }
        .with_headers_for(user);

        request.send_and_deserialize_response(user).await
    }

    /// Returns a specific [GuildJoinRequest].
    ///
    /// Requires the [KICK_MEMBERS](crate::types::PermissionFlags::KICK_MEMBERS) permission if the
    /// request is not for the current user.
    ///
    /// # Notes
    /// As of 2025/03/13, Spacebar does not yet implement this endpoint. (Or join requests)
    ///
    /// # Reference
    /// See <https://docs.discord.food/resources/guild#get-guild-join-request>
    pub async fn get_join_request(
        user: &mut ChorusUser,
        request_id: Snowflake,
    ) -> ChorusResult<GuildJoinRequest> {
        let url = format!(
            "{}/join-requests/{}",
            user.belongs_to.read().unwrap().urls.api,
            request_id,
        );

        let request = ChorusRequest {
            request: Client::new().get(url),
            limit_type: LimitType::Global,
        }
        .with_headers_for(user);

        request.send_and_deserialize_response(user).await
    }

    /// Returns the remaining time until the current user can submit another join request for the
    /// guild.
    ///
    /// # Notes
    /// As of 2025/03/13, Spacebar does not yet implement this endpoint. (Or join requests)
    ///
    /// # Reference
    /// See <https://docs.discord.food/resources/guild#get-guild-join-request-cooldown>
    pub async fn get_join_request_cooldown(
        user: &mut ChorusUser,
        guild_id: Snowflake,
    ) -> ChorusResult<GuildJoinRequestCooldown> {
        let url = format!(
            "{}/guilds/{}/requests/@me/cooldown",
            user.belongs_to.read().unwrap().urls.api,
            guild_id,
        );

        let request = ChorusRequest {
            request: Client::new().put(url),
            limit_type: LimitType::Global,
        }
        .with_headers_for(user);

        request.send_and_deserialize_response(user).await
    }

    /// Submits a request to join a guild.
    ///
    /// # Notes
    /// As of 2025/03/13, Spacebar does not yet implement this endpoint. (Or join requests)
    ///
    /// # Reference
    /// See <https://docs.discord.food/resources/guild#create-guild-join-request>
    pub async fn create_join_request(
        user: &mut ChorusUser,
        guild_id: Snowflake,
        schema: CreateGuildJoinRequestSchema,
    ) -> ChorusResult<GuildJoinRequest> {
        let url = format!(
            "{}/guilds/{}/requests/@me",
            user.belongs_to.read().unwrap().urls.api,
            guild_id,
        );

        let request = ChorusRequest {
            request: Client::new().put(url).json(&schema),
            limit_type: LimitType::Guild(guild_id),
        }
        .with_headers_for(user);

        request.send_and_deserialize_response(user).await
    }

    /// Resets the current user's join request for a guild.
    ///
    /// # Notes
    /// As of 2025/03/13, Spacebar does not yet implement this endpoint. (Or join requests)
    ///
    /// # Reference
    /// See <https://docs.discord.food/resources/guild#reset-guild-join-request>
    pub async fn reset_join_request(
        user: &mut ChorusUser,
        guild_id: Snowflake,
    ) -> ChorusResult<GuildJoinRequest> {
        let url = format!(
            "{}/guilds/{}/requests/@me",
            user.belongs_to.read().unwrap().urls.api,
            guild_id,
        );

        let request = ChorusRequest {
            request: Client::new().post(url),
            limit_type: LimitType::Guild(guild_id),
        }
        .with_headers_for(user);

        request.send_and_deserialize_response(user).await
    }

    /// Acknowledges an approved join request for the current user.
    ///
    /// # Notes
    /// As of 2025/03/13, Spacebar does not yet implement this endpoint. (Or join requests)
    ///
    /// # Reference
    /// See <https://docs.discord.food/resources/guild#reset-guild-join-request>
    pub async fn acknowledge_approved_join_request(
        user: &mut ChorusUser,
        guild_id: Snowflake,
    ) -> ChorusResult<()> {
        let url = format!(
            "{}/guilds/{}/requests/@me/ack",
            user.belongs_to.read().unwrap().urls.api,
            guild_id,
        );

        let request = ChorusRequest {
            request: Client::new().post(url),
            limit_type: LimitType::Guild(guild_id),
        }
        .with_headers_for(user);

        request.send_and_handle_as_result(user).await
    }

    /// If the guild has previewing disabled, deletes the current user's join request.
    ///
    /// Otherwise functions the same as [Guild::reset_join_request].
    ///
    /// Returns a partial [GuildJoinRequest] if the request was reset or [None] if the deletion was
    /// successful.
    ///
    /// # Notes
    /// As of 2025/03/13, Spacebar does not yet implement this endpoint. (Or join requests)
    ///
    /// # Reference
    /// See <https://docs.discord.food/resources/guild#delete-guild-join-request>
    pub async fn delete_join_request(
        user: &mut ChorusUser,
        guild_id: Snowflake,
    ) -> ChorusResult<Option<GuildJoinRequest>> {
        let url = format!(
            "{}/guilds/{}/requests/@me",
            user.belongs_to.read().unwrap().urls.api,
            guild_id,
        );

        let request = ChorusRequest {
            request: Client::new().delete(&url),
            limit_type: LimitType::Guild(guild_id),
        }
        .with_headers_for(user);

        let response = request.send(user).await?;

        let http_status = response.status();

        // Note: empty response, the request was deleted
        if http_status.as_u16() == 204 {
            return Ok(None);
        }

        // Else the request was successful, and we likely received the join request json
        let response_text = match response.text().await {
            Ok(string) => string,
            Err(e) => {
                return Err(ChorusError::InvalidResponse {
                    error: format!(
                        "Error while trying to process the HTTP response into a String: {}",
                        e
                    ),
                    http_status,
                });
            }
        };

        match from_str::<GuildJoinRequest>(&response_text) {
			Ok(return_value) => Ok(Some(return_value)),
			Err(e) => Err(ChorusError::InvalidResponse { error: format!("Error while trying to deserialize the JSON response into response type T: {}. JSON Response: {}", e, response_text), http_status })
		  }
    }

    /// Creates or returns an existing private interview channel for a join request.
    ///
    /// Returns a [GroupDm](crate::types::ChannelType::GroupDm) [Channel] object on success.
    ///
    /// # Notes
    ///
    /// The channel will have the same id as the join request and will be accessible by the join
    /// request user and user who used this endpoint.
    ///
    /// Requires the [KICK_MEMBERS](crate::types::PermissionFlags::KICK_MEMBERS) permission.
    ///
    /// Also requires that the guild have the [MemberVerificationManualApproval](crate::types::types::guild_configuration::GuildFeatures::MemberVerificationManualApproval) feature.
    ///
    /// As of 2025/03/13, Spacebar does not yet implement this endpoint. (Or join requests)
    ///
    /// # Reference
    /// See <https://docs.discord.food/resources/guild#create-guild-join-request-interview>
    pub async fn create_join_request_interview(
        user: &mut ChorusUser,
        request_id: Snowflake,
    ) -> ChorusResult<Channel> {
        let url = format!(
            "{}/join-requests/{}/interview",
            user.belongs_to.read().unwrap().urls.api,
            request_id,
        );

        let request = ChorusRequest {
            request: Client::new().post(url),
            limit_type: LimitType::Global,
        }
        .with_headers_for(user);

        request.send_and_deserialize_response(user).await
    }

    /// Accepts or denies a join request.
    ///
    /// Requires the [KICK_MEMBERS](crate::types::PermissionFlags::KICK_MEMBERS) permission.
    ///
    /// Also requires that the guild have the [MemberVerificationManualApproval](crate::types::types::guild_configuration::GuildFeatures::MemberVerificationManualApproval) feature.
    ///
    /// # Notes
    /// As of 2025/03/13, Spacebar does not yet implement this endpoint. (Or join requests)
    ///
    /// # Reference
    /// See <https://docs.discord.food/resources/guild#action-guild-join-request>
    pub async fn action_join_request(
        user: &mut ChorusUser,
        guild_id: Snowflake,
        request_id: Snowflake,
        schema: ActionGuildJoinRequestSchema,
    ) -> ChorusResult<GuildJoinRequest> {
        let url = format!(
            "{}/guilds/{}/requests/id/{}",
            user.belongs_to.read().unwrap().urls.api,
            guild_id,
            request_id,
        );

        let request = ChorusRequest {
            request: Client::new().patch(url).json(&schema),
            limit_type: LimitType::Guild(guild_id),
        }
        .with_headers_for(user);

        request.send_and_deserialize_response(user).await
    }

    /// Accepts or denies a join request for a given user.
    ///
    /// Requires the [KICK_MEMBERS](crate::types::PermissionFlags::KICK_MEMBERS) permission.
    ///
    /// Also requires that the guild have the [MemberVerificationManualApproval](crate::types::types::guild_configuration::GuildFeatures::MemberVerificationManualApproval) feature.
    ///
    /// # Notes
    /// As of 2025/03/13, Spacebar does not yet implement this endpoint. (Or join requests)
    ///
    /// # Reference
    /// See <https://docs.discord.food/resources/guild#action-guild-join-request-by-user>
    pub async fn action_join_request_by_user(
        user: &mut ChorusUser,
        guild_id: Snowflake,
        user_id: Snowflake,
        schema: ActionGuildJoinRequestSchema,
    ) -> ChorusResult<GuildJoinRequest> {
        let url = format!(
            "{}/guilds/{}/requests/{}",
            user.belongs_to.read().unwrap().urls.api,
            guild_id,
            user_id,
        );

        let request = ChorusRequest {
            request: Client::new().patch(url).json(&schema),
            limit_type: LimitType::Guild(guild_id),
        }
        .with_headers_for(user);

        request.send_and_deserialize_response(user).await
    }

    /// Accepts or denies all pending join requests for a guild.
    ///
    /// Requires the [KICK_MEMBERS](crate::types::PermissionFlags::KICK_MEMBERS) permission.
    ///
    /// Also requires that the guild have the [MemberVerificationManualApproval](crate::types::types::guild_configuration::GuildFeatures::MemberVerificationManualApproval) feature.
    ///
    /// # Notes
    /// As of 2025/03/13, Spacebar does not yet implement this endpoint. (Or join requests)
    ///
    /// # Reference
    /// See <https://docs.discord.food/resources/guild#bulk-action-guild-join-requests>
    pub async fn bulk_action_join_requests(
        user: &mut ChorusUser,
        guild_id: Snowflake,
        schema: BulkActionGuildJoinRequestsSchema,
    ) -> ChorusResult<()> {
        let url = format!(
            "{}/guilds/{}/requests",
            user.belongs_to.read().unwrap().urls.api,
            guild_id,
        );

        let request = ChorusRequest {
            request: Client::new().patch(url).json(&schema),
            limit_type: LimitType::Guild(guild_id),
        }
        .with_headers_for(user);

        request.send_and_handle_as_result(user).await
    }

    /// Returns the [welcome screen](crate::types::PublicGuildWelcomeScreen) object for the guild.
    ///
    /// Requires the [MANAGE_GUILD](crate::types::PermissionFlags::MANAGE_GUILD) permission if the
    /// welcome screen is not yet enabled.
    ///
    /// # Reference
    /// See <https://docs.discord.food/resources/guild#get-guild-welcome-screen>
    pub async fn get_welcome_screen(
        user: &mut ChorusUser,
        guild_id: Snowflake,
    ) -> ChorusResult<PublicGuildWelcomeScreen> {
        let url = format!(
            "{}/guilds/{}/welcome-screen",
            user.belongs_to.read().unwrap().urls.api,
            guild_id
        );

        let request = ChorusRequest {
            request: Client::new().get(url),
            limit_type: LimitType::Guild(guild_id),
        }
        .with_headers_for(user);

        request.send_and_deserialize_response(user).await
    }

    /// Modifies a guild's [welcome screen](crate::types::PublicGuildWelcomeScreen) object.
    ///
    /// Requires the [MANAGE_GUILD](crate::types::PermissionFlags::MANAGE_GUILD) permission.
    ///
    /// # Reference
    /// See <https://docs.discord.food/resources/guild#modify-guild-welcome-screen>
    pub async fn modify_welcome_screen(
        user: &mut ChorusUser,
        guild_id: Snowflake,
        schema: ModifyGuildWelcomeScreenSchema,
        audit_log_reason: Option<String>,
    ) -> ChorusResult<PublicGuildWelcomeScreen> {
        let url = format!(
            "{}/guilds/{}/welcome-screen",
            user.belongs_to.read().unwrap().urls.api,
            guild_id
        );

        let request = ChorusRequest {
            request: Client::new().patch(url).json(&schema),
            limit_type: LimitType::Guild(guild_id),
        }
        .with_maybe_audit_log_reason(audit_log_reason)
        .with_headers_for(user);

        request.send_and_deserialize_response(user).await
    }

    /// Returns the [onboarding](crate::types::GuildOnboarding) object for the guild.
    ///
    /// User must be a member of the guild.
    ///
    /// # Notes
    /// As of 2025/03/13, Spacebar does not yet implement this endpoint. (Or onboarding)
    ///
    /// # Reference
    /// See <https://docs.discord.food/resources/guild#get-guild-onboarding>
    pub async fn get_onboarding(
        user: &mut ChorusUser,
        guild_id: Snowflake,
    ) -> ChorusResult<GuildOnboarding> {
        let url = format!(
            "{}/guilds/{}/onboarding",
            user.belongs_to.read().unwrap().urls.api,
            guild_id
        );

        let request = ChorusRequest {
            request: Client::new().get(url),
            limit_type: LimitType::Guild(guild_id),
        }
        .with_headers_for(user);

        request.send_and_deserialize_response(user).await
    }

    /// Modifies a guild's [onboarding](crate::types::PublicGuildWelcomeScreen) configuration.
    ///
    /// Requires the [MANAGE_GUILD](crate::types::PermissionFlags::MANAGE_GUILD) permission.
    ///
    /// # Notes
    /// Onboarding enforces constraints when enabled:
    ///
    /// There must be at least 7 default channels and at least 5 of them must allow sending
    /// messages by the @everyone role.
    ///
    /// The mode field modifies what is considered when enforcing these constraints.
    ///
    /// As of 2025/03/13, Spacebar does not yet implement this endpoint. (Or onboarding)
    ///
    /// # Reference
    /// See <https://docs.discord.food/resources/guild#modify-guild-onboarding>
    pub async fn modify_onboarding(
        user: &mut ChorusUser,
        guild_id: Snowflake,
        schema: ModifyGuildOnboardingSchema,
        audit_log_reason: Option<String>,
    ) -> ChorusResult<GuildOnboarding> {
        let url = format!(
            "{}/guilds/{}/onboarding",
            user.belongs_to.read().unwrap().urls.api,
            guild_id
        );

        let request = ChorusRequest {
            request: Client::new().put(url).json(&schema),
            limit_type: LimitType::Guild(guild_id),
        }
        .with_maybe_audit_log_reason(audit_log_reason)
        .with_headers_for(user);

        request.send_and_deserialize_response(user).await
    }

    // TODO: once we have documentation on how this works, add PUT /guilds/{guild_id}/onboarding-responses

    /// Checks if the user is eligible to join the Discord Admin Community through the guild.
    ///
    /// Requires the [MANAGE_GUILD](crate::types::PermissionFlags::MANAGE_GUILD) permission.
    ///
    /// # Notes
    /// As of 2025/03/13, Spacebar does not yet implement this endpoint.
    ///
    /// # Reference
    /// See <https://docs.discord.food/resources/guild#get-admin-community-eligibility>
    pub async fn get_admin_community_eligibility(
        user: &mut ChorusUser,
        guild_id: Snowflake,
    ) -> ChorusResult<AdminCommunityEligibility> {
        let url = format!(
            "{}/guilds/{}/admin-server-eligibility",
            user.belongs_to.read().unwrap().urls.api,
            guild_id
        );

        let request = ChorusRequest {
            request: Client::new().get(url),
            limit_type: LimitType::Guild(guild_id),
        }
        .with_headers_for(user);

        request.send_and_deserialize_response(user).await
    }

    /// Joins the Discord Admin Community through the guild.
    ///
    /// Requires the [MANAGE_GUILD](crate::types::PermissionFlags::MANAGE_GUILD) permission.
    ///
    /// Returns the joined [Guild] on success.
    ///
    /// Also see [Guild::get_admin_community_eligibility].
    ///
    /// # Notes
    /// As of 2025/03/13, Spacebar does not yet implement this endpoint.
    ///
    /// # Reference
    /// See <https://docs.discord.food/resources/guild#join-admin-community>
    pub async fn join_admin_community(
        user: &mut ChorusUser,
        guild_id: Snowflake,
    ) -> ChorusResult<Guild> {
        let url = format!(
            "{}/guilds/{}/join-admin-server",
            user.belongs_to.read().unwrap().urls.api,
            guild_id
        );

        let request = ChorusRequest {
            request: Client::new().post(url),
            limit_type: LimitType::Guild(guild_id),
        }
        .with_headers_for(user);

        request.send_and_deserialize_response(user).await
    }

    /// Joins the Wumpus Feedback Squad through the guild.
    ///
    /// Requires the [MANAGE_GUILD](crate::types::PermissionFlags::MANAGE_GUILD) permission and the
    /// [CLAN](crate::types::types::guild_configuration::GuildFeatures::Clan) guild feature.
    ///
    /// # Notes
    /// As of 2025/03/13, Spacebar does not yet implement this endpoint.
    ///
    /// # Reference
    /// See <https://docs.discord.food/resources/guild#join-wumpus-feedback-squad>
    pub async fn join_wumpus_feedback_squad(
        user: &mut ChorusUser,
        guild_id: Snowflake,
    ) -> ChorusResult<()> {
        let url = format!(
            "{}/guilds/{}/join-wfs-server",
            user.belongs_to.read().unwrap().urls.api,
            guild_id
        );

        let request = ChorusRequest {
            request: Client::new().post(url),
            limit_type: LimitType::Guild(guild_id),
        }
        .with_headers_for(user);

        request.send_and_handle_as_result(user).await
    }
}

impl Channel {
    /// Creates a new channel in a guild.
    ///
    /// Requires the [MANAGE_CHANNELS](crate::types::PermissionFlags::MANAGE_CHANNELS) permission.
    ///
    /// # Reference
    /// See <https://docs.discord.food/resources/channel#create-guild-channel>
    pub async fn create(
        user: &mut ChorusUser,
        guild_id: Snowflake,
        audit_log_reason: Option<String>,
        schema: ChannelCreateSchema,
    ) -> ChorusResult<Channel> {
        let request = ChorusRequest {
            request: Client::new()
                .post(format!(
                    "{}/guilds/{}/channels",
                    user.belongs_to.read().unwrap().urls.api,
                    guild_id
                ))
                .json(&schema),
            limit_type: LimitType::Guild(guild_id),
        }
        .with_maybe_audit_log_reason(audit_log_reason)
        .with_headers_for(user);

        request.send_and_deserialize_response::<Channel>(user).await
    }
}

impl GuildJoinRequest {
    /// Returns a list of [GuildJoinRequest]s for the guild.
    ///
    /// Requires the [KICK_MEMBERS](crate::types::PermissionFlags::KICK_MEMBERS) permission.
    ///
    /// Also requires that the guild have the [MemberVerificationManualApproval](crate::types::types::guild_configuration::GuildFeatures::MemberVerificationManualApproval) feature.
    ///
    /// # Notes
    /// This method is an alias of [Guild::get_join_requests]
    ///
    /// As of 2025/03/13, Spacebar does not yet implement this endpoint. (Or join requests)
    ///
    /// # Reference
    /// See <https://docs.discord.food/resources/guild#get-guild-join-requests>
    pub async fn get_all_for_guild(
        user: &mut ChorusUser,
        guild_id: Snowflake,
        query: GetGuildJoinRequestsQuery,
    ) -> ChorusResult<GetGuildJoinRequestsReturn> {
        Guild::get_join_requests(user, guild_id, query).await
    }

    /// Returns a specific [GuildJoinRequest].
    ///
    /// Requires the [KICK_MEMBERS](crate::types::PermissionFlags::KICK_MEMBERS) permission if the
    /// request is not for the current user.
    ///
    /// # Notes
    /// This method is an alias of [Guild::get_join_request]
    ///
    /// As of 2025/03/13, Spacebar does not yet implement this endpoint. (Or join requests)
    ///
    /// # Reference
    /// See <https://docs.discord.food/resources/guild#get-guild-join-request>
    pub async fn get(user: &mut ChorusUser, id: Snowflake) -> ChorusResult<GuildJoinRequest> {
        Guild::get_join_request(user, id).await
    }

    /// Returns the remaining time until the current user can submit another join request for the
    /// guild.
    ///
    /// # Notes
    /// This method is an alias of [Guild::get_join_request_cooldown]
    ///
    /// As of 2025/03/13, Spacebar does not yet implement this endpoint. (Or join requests)
    ///
    /// # Reference
    /// See <https://docs.discord.food/resources/guild#get-guild-join-request-cooldown>
    pub async fn get_cooldown(
        user: &mut ChorusUser,
        guild_id: Snowflake,
    ) -> ChorusResult<GuildJoinRequestCooldown> {
        Guild::get_join_request_cooldown(user, guild_id).await
    }

    /// Submits a request to join a guild.
    ///
    /// # Notes
    /// This method is an alias of [Guild::create_join_request]
    ///
    /// As of 2025/03/13, Spacebar does not yet implement this endpoint. (Or join requests)
    ///
    /// # Reference
    /// See <https://docs.discord.food/resources/guild#create-guild-join-request>
    pub async fn create(
        user: &mut ChorusUser,
        guild_id: Snowflake,
        schema: CreateGuildJoinRequestSchema,
    ) -> ChorusResult<GuildJoinRequest> {
        Guild::create_join_request(user, guild_id, schema).await
    }

    /// Accepts or denies a join request.
    ///
    /// Requires the [KICK_MEMBERS](crate::types::PermissionFlags::KICK_MEMBERS) permission.
    ///
    /// Also requires that the guild have the [MemberVerificationManualApproval](crate::types::types::guild_configuration::GuildFeatures::MemberVerificationManualApproval) feature.
    ///
    /// # Notes
    /// This method is an alias of [Guild::action_join_request]
    ///
    /// As of 2025/03/13, Spacebar does not yet implement this endpoint. (Or join requests)
    ///
    /// # Reference
    /// See <https://docs.discord.food/resources/guild#action-guild-join-request>
    pub async fn action(
        user: &mut ChorusUser,
        guild_id: Snowflake,
        request_id: Snowflake,
        schema: ActionGuildJoinRequestSchema,
    ) -> ChorusResult<GuildJoinRequest> {
        Guild::action_join_request(user, guild_id, request_id, schema).await
    }

    /// Accepts or denies a join request for a given user.
    ///
    /// Requires the [KICK_MEMBERS](crate::types::PermissionFlags::KICK_MEMBERS) permission.
    ///
    /// Also requires that the guild have the [MemberVerificationManualApproval](crate::types::types::guild_configuration::GuildFeatures::MemberVerificationManualApproval) feature.
    ///
    /// # Notes
    /// This method is an alias of [Guild::action_join_request_by_user]
    ///
    /// As of 2025/03/13, Spacebar does not yet implement this endpoint. (Or join requests)
    ///
    /// # Reference
    /// See <https://docs.discord.food/resources/guild#action-guild-join-request-by-user>
    pub async fn action_by_user(
        user: &mut ChorusUser,
        guild_id: Snowflake,
        user_id: Snowflake,
        schema: ActionGuildJoinRequestSchema,
    ) -> ChorusResult<GuildJoinRequest> {
        Guild::action_join_request_by_user(user, guild_id, user_id, schema).await
    }

    /// Accepts or denies all pending join requests for a guild.
    ///
    /// Requires the [KICK_MEMBERS](crate::types::PermissionFlags::KICK_MEMBERS) permission.
    ///
    /// Also requires that the guild have the [MemberVerificationManualApproval](crate::types::types::guild_configuration::GuildFeatures::MemberVerificationManualApproval) feature.
    ///
    /// # Notes
    /// This method is an alias of [Guild::bulk_action_join_requests]
    ///
    /// As of 2025/03/13, Spacebar does not yet implement this endpoint. (Or join requests)
    ///
    /// # Reference
    /// See <https://docs.discord.food/resources/guild#bulk-action-guild-join-requests>
    pub async fn bulk_action(
        user: &mut ChorusUser,
        guild_id: Snowflake,
        schema: BulkActionGuildJoinRequestsSchema,
    ) -> ChorusResult<()> {
        Guild::bulk_action_join_requests(user, guild_id, schema).await
    }
}

impl ChorusUser {
    /// Returns a list of [GuildJoinRequest]s for the guild.
    ///
    /// Requires the [KICK_MEMBERS](crate::types::PermissionFlags::KICK_MEMBERS) permission.
    ///
    /// Also requires that the guild have the [MemberVerificationManualApproval](crate::types::types::guild_configuration::GuildFeatures::MemberVerificationManualApproval) feature.
    ///
    /// # Notes
    /// This method is an alias of [Guild::get_join_requests]
    ///
    /// As of 2025/03/13, Spacebar does not yet implement this endpoint. (Or join requests)
    ///
    /// # Reference
    /// See <https://docs.discord.food/resources/guild#get-guild-join-requests>
    pub async fn get_guild_join_requests(
        user: &mut ChorusUser,
        guild_id: Snowflake,
        query: GetGuildJoinRequestsQuery,
    ) -> ChorusResult<GetGuildJoinRequestsReturn> {
        Guild::get_join_requests(user, guild_id, query).await
    }

    /// Returns a specific [GuildJoinRequest].
    ///
    /// Requires the [KICK_MEMBERS](crate::types::PermissionFlags::KICK_MEMBERS) permission if the
    /// request is not for the current user.
    ///
    /// # Notes
    /// This method is an alias of [Guild::get_join_request]
    ///
    /// As of 2025/03/13, Spacebar does not yet implement this endpoint. (Or join requests)
    ///
    /// # Reference
    /// See <https://docs.discord.food/resources/guild#get-guild-join-request>
    pub async fn get_guild_join_request(
        user: &mut ChorusUser,
        id: Snowflake,
    ) -> ChorusResult<GuildJoinRequest> {
        Guild::get_join_request(user, id).await
    }

    /// Returns the remaining time until the current user can submit another join request for the
    /// guild.
    ///
    /// # Notes
    /// This method is an alias of [Guild::get_join_request_cooldown]
    ///
    /// As of 2025/03/13, Spacebar does not yet implement this endpoint. (Or join requests)
    ///
    /// # Reference
    /// See <https://docs.discord.food/resources/guild#get-guild-join-request-cooldown>
    pub async fn get_guild_join_request_cooldown(
        user: &mut ChorusUser,
        guild_id: Snowflake,
    ) -> ChorusResult<GuildJoinRequestCooldown> {
        Guild::get_join_request_cooldown(user, guild_id).await
    }

    /// Submits a request to join a guild.
    ///
    /// # Notes
    /// This method is an alias of [Guild::create_join_request]
    ///
    /// As of 2025/03/13, Spacebar does not yet implement this endpoint. (Or join requests)
    ///
    /// # Reference
    /// See <https://docs.discord.food/resources/guild#create-guild-join-request>
    pub async fn create_guild_join_request(
        user: &mut ChorusUser,
        guild_id: Snowflake,
        schema: CreateGuildJoinRequestSchema,
    ) -> ChorusResult<GuildJoinRequest> {
        Guild::create_join_request(user, guild_id, schema).await
    }

    /// Accepts or denies a join request.
    ///
    /// Requires the [KICK_MEMBERS](crate::types::PermissionFlags::KICK_MEMBERS) permission.
    ///
    /// Also requires that the guild have the [MemberVerificationManualApproval](crate::types::types::guild_configuration::GuildFeatures::MemberVerificationManualApproval) feature.
    ///
    /// # Notes
    /// This method is an alias of [Guild::action_join_request]
    ///
    /// As of 2025/03/13, Spacebar does not yet implement this endpoint. (Or join requests)
    ///
    /// # Reference
    /// See <https://docs.discord.food/resources/guild#action-guild-join-request>
    pub async fn action_guild_join_request(
        user: &mut ChorusUser,
        guild_id: Snowflake,
        request_id: Snowflake,
        schema: ActionGuildJoinRequestSchema,
    ) -> ChorusResult<GuildJoinRequest> {
        Guild::action_join_request(user, guild_id, request_id, schema).await
    }

    /// Accepts or denies a join request for a given user.
    ///
    /// Requires the [KICK_MEMBERS](crate::types::PermissionFlags::KICK_MEMBERS) permission.
    ///
    /// Also requires that the guild have the [MemberVerificationManualApproval](crate::types::types::guild_configuration::GuildFeatures::MemberVerificationManualApproval) feature.
    ///
    /// # Notes
    /// This method is an alias of [Guild::action_join_request_by_user]
    ///
    /// As of 2025/03/13, Spacebar does not yet implement this endpoint. (Or join requests)
    ///
    /// # Reference
    /// See <https://docs.discord.food/resources/guild#action-guild-join-request-by-user>
    pub async fn action_guild_join_request_by_user(
        user: &mut ChorusUser,
        guild_id: Snowflake,
        user_id: Snowflake,
        schema: ActionGuildJoinRequestSchema,
    ) -> ChorusResult<GuildJoinRequest> {
        Guild::action_join_request_by_user(user, guild_id, user_id, schema).await
    }

    /// Accepts or denies all pending join requests for a guild.
    ///
    /// Requires the [KICK_MEMBERS](crate::types::PermissionFlags::KICK_MEMBERS) permission.
    ///
    /// Also requires that the guild have the [MemberVerificationManualApproval](crate::types::types::guild_configuration::GuildFeatures::MemberVerificationManualApproval) feature.
    ///
    /// # Notes
    /// This method is an alias of [Guild::bulk_action_join_requests]
    ///
    /// As of 2025/03/13, Spacebar does not yet implement this endpoint. (Or join requests)
    ///
    /// # Reference
    /// See <https://docs.discord.food/resources/guild#bulk-action-guild-join-requests>
    pub async fn bulk_action_guild_join_request(
        user: &mut ChorusUser,
        guild_id: Snowflake,
        schema: BulkActionGuildJoinRequestsSchema,
    ) -> ChorusResult<()> {
        Guild::bulk_action_join_requests(user, guild_id, schema).await
    }
}