beniocord.js 2.1.2 → 2.1.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/Client.js +46 -8
- package/README.md +6 -13
- package/helpers/index.js +71 -1
- package/package.json +1 -1
- package/structures/Channel.js +2 -2
- package/structures/Emoji.js +45 -21
- package/structures/Message.js +62 -68
- package/structures/Sticker.js +55 -32
- package/structures/User.js +10 -3
package/Client.js
CHANGED
|
@@ -12,7 +12,7 @@ const Emoji = require("./structures/Emoji");
|
|
|
12
12
|
const Sticker = require("./structures/Sticker");
|
|
13
13
|
|
|
14
14
|
const { MessageEmbed, MessageAttachment } = require("./structures/Util");
|
|
15
|
-
const { formatUrl } = require("./helpers");
|
|
15
|
+
const { formatUrl, stripDomain } = require("./helpers");
|
|
16
16
|
|
|
17
17
|
let global = {
|
|
18
18
|
token: "",
|
|
@@ -61,20 +61,23 @@ class Client extends EventEmitter {
|
|
|
61
61
|
* @description The main class of BenioCord.js, responsible for managing API communication and bot events.
|
|
62
62
|
* @param {Object} options - Client configuration options
|
|
63
63
|
* @param {string} options.token - Bot token used for authentication
|
|
64
|
+
* @param {string} options.api_url - Override default API URL
|
|
64
65
|
* @example
|
|
65
66
|
* const Beniocord = require('beniocord.js');
|
|
66
67
|
* const client = new Beniocord({ token: 'YOUR_BOT_TOKEN' });
|
|
67
68
|
* client.login();
|
|
68
69
|
*/
|
|
69
|
-
constructor({ token }) {
|
|
70
|
+
constructor({ token, api_url } = {}) {
|
|
70
71
|
super();
|
|
71
72
|
|
|
73
|
+
const API_URL = api_url ?? global.apiUrl;
|
|
74
|
+
|
|
72
75
|
if (!token || typeof token !== 'string' || token.trim() === '') {
|
|
73
76
|
throw new ClientError("Valid token is required", "INVALID_TOKEN");
|
|
74
77
|
}
|
|
75
78
|
|
|
76
|
-
// Global configuration
|
|
77
79
|
global.token = token.trim();
|
|
80
|
+
global.apiUrl = API_URL;
|
|
78
81
|
|
|
79
82
|
// Client state
|
|
80
83
|
this.socket = null;
|
|
@@ -86,9 +89,9 @@ class Client extends EventEmitter {
|
|
|
86
89
|
|
|
87
90
|
// Configuration options
|
|
88
91
|
this.config = {
|
|
89
|
-
connectionTimeout:
|
|
90
|
-
requestTimeout:
|
|
91
|
-
maxRetries:
|
|
92
|
+
connectionTimeout: 999999,
|
|
93
|
+
requestTimeout: 999999,
|
|
94
|
+
maxRetries: 9999,
|
|
92
95
|
reconnectionDelay: 1000,
|
|
93
96
|
};
|
|
94
97
|
|
|
@@ -638,6 +641,36 @@ class Client extends EventEmitter {
|
|
|
638
641
|
});
|
|
639
642
|
}
|
|
640
643
|
|
|
644
|
+
/**
|
|
645
|
+
* Sends a sticker to a channel.
|
|
646
|
+
* Prioriza o cache. Se não tiver, faz fetch.
|
|
647
|
+
* @param {string|number} channelId
|
|
648
|
+
* @param {string|number} stickerId
|
|
649
|
+
* @returns {Promise<Message>}
|
|
650
|
+
*/
|
|
651
|
+
async sendSticker(channelId, stickerId) {
|
|
652
|
+
let sticker = this.cache.stickers.get(stickerId);
|
|
653
|
+
|
|
654
|
+
if (!sticker) {
|
|
655
|
+
sticker = await this.fetchSticker(stickerId);
|
|
656
|
+
}
|
|
657
|
+
|
|
658
|
+
if (!sticker) {
|
|
659
|
+
throw new ClientError(`Sticker ${stickerId} not found`, "INVALID_STICKER");
|
|
660
|
+
}
|
|
661
|
+
|
|
662
|
+
const stickerPath = sticker.url;
|
|
663
|
+
if (!stickerPath) {
|
|
664
|
+
throw new ClientError(`Sticker ${stickerId} is missing 'url'`, "INVALID_STICKER_PATH");
|
|
665
|
+
}
|
|
666
|
+
|
|
667
|
+
return this.sendMessage(channelId, "", {
|
|
668
|
+
messageType: "sticker",
|
|
669
|
+
stickerId,
|
|
670
|
+
url: stripDomain(stickerPath),
|
|
671
|
+
});
|
|
672
|
+
}
|
|
673
|
+
|
|
641
674
|
|
|
642
675
|
/**
|
|
643
676
|
* Deletes a message
|
|
@@ -1351,7 +1384,7 @@ class Client extends EventEmitter {
|
|
|
1351
1384
|
msg.channel = await this.fetchChannel(data.channel_id);
|
|
1352
1385
|
}
|
|
1353
1386
|
|
|
1354
|
-
if (msg.channel
|
|
1387
|
+
if (msg.channel?.memberCount !== msg.channel?.members?.size) {
|
|
1355
1388
|
await msg.channel.members.fetch();
|
|
1356
1389
|
}
|
|
1357
1390
|
|
|
@@ -1580,6 +1613,8 @@ class Client extends EventEmitter {
|
|
|
1580
1613
|
}
|
|
1581
1614
|
}
|
|
1582
1615
|
|
|
1616
|
+
const { parseErrors } = require("./helpers");
|
|
1617
|
+
|
|
1583
1618
|
/**
|
|
1584
1619
|
* @internal
|
|
1585
1620
|
*/
|
|
@@ -1589,7 +1624,10 @@ class ClientError extends Error {
|
|
|
1589
1624
|
* @param {string} code - Error code
|
|
1590
1625
|
*/
|
|
1591
1626
|
constructor(message, code) {
|
|
1592
|
-
|
|
1627
|
+
const parsed = typeof parseErrors === 'function'
|
|
1628
|
+
? (code ? parseErrors(code) : parseErrors(message))
|
|
1629
|
+
: null;
|
|
1630
|
+
super(parsed || message);
|
|
1593
1631
|
this.name = 'ClientError';
|
|
1594
1632
|
this.code = code;
|
|
1595
1633
|
}
|
package/README.md
CHANGED
|
@@ -10,7 +10,7 @@ A powerful JavaScript library for building Beniocord bots with ease.
|
|
|
10
10
|
[](https://www.npmjs.com/package/beniocord.js)
|
|
11
11
|
[](https://github.com/Junior37534/beniocord.js)
|
|
12
12
|
[](https://github.com/Junior37534/beniocord.js/issues)
|
|
13
|
-
[](https://beniocord.site/
|
|
13
|
+
[](https://beniocord.site/download)
|
|
14
14
|
[](https://uptime.betterstack.com/?utm_source=status_badge)
|
|
15
15
|
|
|
16
16
|
---
|
|
@@ -19,21 +19,13 @@ A powerful JavaScript library for building Beniocord bots with ease.
|
|
|
19
19
|
|
|
20
20
|
Beniocord.js is a powerful Node.js module that allows you to easily interact with the Beniocord API. It provides an intuitive and modern approach to bot development.
|
|
21
21
|
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
- 🚀 Easy to use and beginner-friendly
|
|
25
|
-
- ⚡ Fast and efficient
|
|
26
|
-
- 📦 Object-oriented design
|
|
27
|
-
- 🔄 Promise-based architecture
|
|
28
|
-
- 🎯 Full Beniocord API coverage
|
|
29
|
-
- 💪 TypeScript support
|
|
30
|
-
|
|
22
|
+
<!--
|
|
31
23
|
### Requirements
|
|
32
24
|
|
|
33
25
|
- Node.js >= 18
|
|
34
|
-
- NPM >= 9
|
|
26
|
+
- NPM >= 9 -->
|
|
35
27
|
|
|
36
|
-
---
|
|
28
|
+
<!-- --- -->
|
|
37
29
|
|
|
38
30
|
## Installation
|
|
39
31
|
|
|
@@ -84,4 +76,5 @@ client.login();
|
|
|
84
76
|
|
|
85
77
|
* [Official Website](https://beniocord.site)
|
|
86
78
|
* [Documentation](https://docs.beniocord.site)
|
|
87
|
-
* [Join Beniocord](https://beniocord.site/
|
|
79
|
+
* [Join Beniocord](https://beniocord.site/download)
|
|
80
|
+
* [Uptime monitor](https://uptime.beniocord.site)
|
package/helpers/index.js
CHANGED
|
@@ -1,8 +1,78 @@
|
|
|
1
|
+
const errors = {
|
|
2
|
+
ALREADY_FRIENDS: "You are already friends with this user.",
|
|
3
|
+
ALREADY_SENT: "You have already sent a friend request to this user.",
|
|
4
|
+
USER_BLOCKED: "You cannot send a friend request to this user.",
|
|
5
|
+
USER_NOT_FOUND: "User not found.",
|
|
6
|
+
MEMBER_NOT_FOUND: "Member not found.",
|
|
7
|
+
CHANNEL_NOT_FOUND: "Could not find a channel with this ID.",
|
|
8
|
+
MESSAGE_NOT_FOUND: "Message not found.",
|
|
9
|
+
FRIENDSHIP_NOT_FOUND: "Friendship not found.",
|
|
10
|
+
ID_OR_USERNAME_REQUIRED: "User ID or username is required.",
|
|
11
|
+
BOTS_CANT_BE_FRIEND: "Cannot send friend request to bots.",
|
|
12
|
+
CANT_BE_FRIENDS_WITH_YOURSELF: "You cannot add yourself as a friend.",
|
|
13
|
+
ACCESS_DENIED_CH: "Access denied to this channel.",
|
|
14
|
+
NOT_CH_MEMBER: "You are not a member of this channel.",
|
|
15
|
+
CAN_ONLY_INVITE_FRIEND: "You can only invite users who are your friends.",
|
|
16
|
+
USER_ALREADY_IN_CHANNEL: "User is already a member of the channel.",
|
|
17
|
+
USER_ADD_SUCCESS: "User added to channel successfully.",
|
|
18
|
+
NO_INVITE_PERMISSION: "You do not have permission to invite users.",
|
|
19
|
+
NO_MANAGE_PERMISSION: "You do not have permission to manage members.",
|
|
20
|
+
NO_REMOVE_PERMISSION: "You do not have permission to remove members.",
|
|
21
|
+
NO_READ_PERMISSION: "You do not have permission to read messages in this channel.",
|
|
22
|
+
CH_OR_MSG_ID_INVALID: "Invalid channelId or messageId.",
|
|
23
|
+
CH_OR_MSG_ID_MUST_BE_INTEGER: "channelId or messageId must be integers.",
|
|
24
|
+
CH_OR_MSG_ID_OUT_OF_RANGE: "channelId or messageId out of valid range.",
|
|
25
|
+
ONLY_OWNER_CAN_WTF: "Only the owner can modify another owner.",
|
|
26
|
+
NO_FIELDS_TO_UPDATE: "No fields to update.",
|
|
27
|
+
NO_FILES_UPLOADED: "No file uploaded.",
|
|
28
|
+
INVALID_STATUS: "Invalid status.",
|
|
29
|
+
ERR_CHANNEL_NAME_EMPTY: "Channel name cannot be empty.",
|
|
30
|
+
ERR_CHANNEL_NAME_TOO_LONG: "Channel name is too long.",
|
|
31
|
+
ERR_CHANNEL_NAME_INVALID_CHARS: "Channel name contains invalid characters.",
|
|
32
|
+
ERR_CHANNEL_DESCRIPTION_EMPTY: "Channel description cannot be empty.",
|
|
33
|
+
ERR_CHANNEL_DESCRIPTION_TOO_LONG: "Channel description is too long.",
|
|
34
|
+
ERR_CHANNEL_DESCRIPTION_INVALID_CHARS: "Channel description contains invalid characters.",
|
|
35
|
+
ERR_PASSWORD_TOO_SHORT: "Password must be at least 8 characters.",
|
|
36
|
+
ERR_PASSWORD_TOO_LONG: "Password cannot be more than 128 characters.",
|
|
37
|
+
ERR_PASSWORD_MISMATCH: "Passwords do not match.",
|
|
38
|
+
ERR_PASSWORD_SAME_AS_CURRENT: "New password cannot be the same as the current one.",
|
|
39
|
+
ERR_EMAIL_INVALID: "Please enter a valid email address.",
|
|
40
|
+
ERR_EMAIL_SAME_AS_CURRENT: "New email cannot be the same as the current one.",
|
|
41
|
+
ERR_PASSWORD_EMPTY: "Password is required.",
|
|
42
|
+
ERR_DISPLAY_NAME_EMPTY: "Display name is required.",
|
|
43
|
+
ERR_USERNAME_TOO_SHORT: "Username must be at least 3 characters.",
|
|
44
|
+
ERR_USERNAME_INVALID_CHARS: "Username can only contain lowercase letters, numbers, and underscores.",
|
|
45
|
+
INTERNAL_SERVER_ERROR: "Something went wrong. Please contact support.",
|
|
46
|
+
ERR_USERNAME_EMPTY: "Username cannot be empty.",
|
|
47
|
+
ERR_USERNAME_TOO_LONG: "Username is too long.",
|
|
48
|
+
ERR_DISPLAY_NAME_TOO_LONG: "Display name is too long.",
|
|
49
|
+
ERR_DISPLAY_NAME_INVALID_CHARS: "Display name contains invalid characters.",
|
|
50
|
+
ERR_EMAIL_EMPTY: "Email cannot be empty.",
|
|
51
|
+
ERR_EMAIL_TOO_LONG: "Email is too long.",
|
|
52
|
+
ERR_INVALID_CREDENTIALS: "Invalid credentials.",
|
|
53
|
+
ERR_PASSWORD_INCORRECT: "Incorrect password.",
|
|
54
|
+
ERR_STATUS_INVALID: "Invalid status.",
|
|
55
|
+
ERR_URL_TOO_LONG: "URL is too long.",
|
|
56
|
+
ERR_URL_INVALID: "URL is invalid.",
|
|
57
|
+
FILE_TOO_LARGE: "This file is too large.",
|
|
58
|
+
};
|
|
59
|
+
|
|
1
60
|
function formatUrl(url) {
|
|
2
61
|
const base = 'https://api.beniocord.site';
|
|
3
62
|
if (!url) return null;
|
|
4
63
|
if (url.startsWith(base) || url.startsWith('http')) return url;
|
|
5
64
|
return base + (url.startsWith('/') ? url : '/' + url);
|
|
6
65
|
}
|
|
66
|
+
function stripDomain(url) {
|
|
67
|
+
try {
|
|
68
|
+
const u = new URL(url);
|
|
69
|
+
return u.pathname;
|
|
70
|
+
} catch {
|
|
71
|
+
return url;
|
|
72
|
+
}
|
|
73
|
+
};
|
|
74
|
+
function parseErrors(message) {
|
|
75
|
+
return errors[message] || message;
|
|
76
|
+
}
|
|
7
77
|
|
|
8
|
-
module.exports = { formatUrl }
|
|
78
|
+
module.exports = { formatUrl, stripDomain, parseErrors }
|
package/package.json
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
"socket.io-client": "^4.8.1"
|
|
6
6
|
},
|
|
7
7
|
"name": "beniocord.js",
|
|
8
|
-
"version": "2.1.
|
|
8
|
+
"version": "2.1.3",
|
|
9
9
|
"description": "Uma biblioteca leve e intuitiva para integração com APIs de bots em plataformas de mensagens, como Discord. Facilita o envio de mensagens, gerenciamento de canais e interação com usuários, proporcionando uma experiência de desenvolvimento ágil e eficiente.",
|
|
10
10
|
"main": "Client.js",
|
|
11
11
|
"scripts": {
|
package/structures/Channel.js
CHANGED
|
@@ -73,7 +73,7 @@ class Channel {
|
|
|
73
73
|
|
|
74
74
|
/**
|
|
75
75
|
* Cached messages of the channel.
|
|
76
|
-
* @type {Collection<string,
|
|
76
|
+
* @type {Collection<string, Message>}
|
|
77
77
|
*/
|
|
78
78
|
this.messages = new Collection();
|
|
79
79
|
this.messages.fetch = async (id) => {
|
|
@@ -96,7 +96,7 @@ class Channel {
|
|
|
96
96
|
* Sends a message to the channel.
|
|
97
97
|
* @param {string|Object} content - The content of the message.
|
|
98
98
|
* @param {Object} [opts] - Optional message options.
|
|
99
|
-
* @returns {Promise<
|
|
99
|
+
* @returns {Promise<Message>} The sent message.
|
|
100
100
|
*/
|
|
101
101
|
async send(content, opts = {}) {
|
|
102
102
|
return client.sendMessage(this.id, content, opts);
|
package/structures/Emoji.js
CHANGED
|
@@ -5,54 +5,78 @@ const { formatUrl } = require("../helpers");
|
|
|
5
5
|
*/
|
|
6
6
|
class Emoji {
|
|
7
7
|
/**
|
|
8
|
-
*
|
|
9
|
-
* @param {Object} data -
|
|
10
|
-
* @param {
|
|
11
|
-
* @param {
|
|
12
|
-
* @param {string} data.name -
|
|
13
|
-
* @param {string} data.url -
|
|
14
|
-
* @param {string
|
|
15
|
-
* @
|
|
16
|
-
* @
|
|
8
|
+
* Cria uma nova instância de Emoji.
|
|
9
|
+
* @param {Object} data - Dados crus do emoji vindos da API.
|
|
10
|
+
* @param {number} data.id - ID único do emoji.
|
|
11
|
+
* @param {number} data.owner_id - ID do dono do emoji.
|
|
12
|
+
* @param {string} data.name - Nome do emoji.
|
|
13
|
+
* @param {string} data.url - URL da imagem do emoji.
|
|
14
|
+
* @param {string} data.created_at - Data de criação do emoji.
|
|
15
|
+
* @param {boolean} data.can_use - Se o emoji pode ser usado.
|
|
16
|
+
* @param {string} data.username - Username do dono.
|
|
17
|
+
* @param {string} data.display_name - Nome de exibição do dono.
|
|
18
|
+
* @returns {Emoji} Instância criada de Emoji.
|
|
19
|
+
* @example
|
|
17
20
|
* Emoji {
|
|
18
21
|
* id: 1,
|
|
19
|
-
*
|
|
22
|
+
* ownerId: 1,
|
|
20
23
|
* name: 'shitcord',
|
|
21
24
|
* url: 'https://api.beniocord.site/uploads/emojis/1758982533925-364594757.png',
|
|
22
|
-
* createdAt: '2025-09-27T14:15:33.932Z'
|
|
25
|
+
* createdAt: '2025-09-27T14:15:33.932Z',
|
|
26
|
+
* canUse: true,
|
|
27
|
+
* username: 'benio',
|
|
28
|
+
* displayName: 'Benio'
|
|
23
29
|
* }
|
|
24
|
-
*
|
|
25
30
|
*/
|
|
26
31
|
constructor(data) {
|
|
27
32
|
/**
|
|
28
|
-
*
|
|
29
|
-
* @type {
|
|
33
|
+
* ID único do emoji.
|
|
34
|
+
* @type {number}
|
|
30
35
|
*/
|
|
31
36
|
this.id = data.id;
|
|
32
37
|
|
|
33
38
|
/**
|
|
34
|
-
*
|
|
35
|
-
* @type {
|
|
39
|
+
* ID do dono do emoji.
|
|
40
|
+
* @type {number}
|
|
36
41
|
*/
|
|
37
|
-
this.
|
|
42
|
+
this.ownerId = data.owner_id;
|
|
38
43
|
|
|
39
44
|
/**
|
|
40
|
-
*
|
|
45
|
+
* Nome do emoji.
|
|
41
46
|
* @type {string}
|
|
42
47
|
*/
|
|
43
48
|
this.name = data.name;
|
|
44
49
|
|
|
45
50
|
/**
|
|
46
|
-
*
|
|
51
|
+
* URL formatada da imagem do emoji.
|
|
47
52
|
* @type {string}
|
|
48
53
|
*/
|
|
49
54
|
this.url = formatUrl(data.url);
|
|
50
55
|
|
|
51
56
|
/**
|
|
52
|
-
*
|
|
53
|
-
* @type {string
|
|
57
|
+
* Data de criação do emoji.
|
|
58
|
+
* @type {string}
|
|
54
59
|
*/
|
|
55
60
|
this.createdAt = data.created_at;
|
|
61
|
+
|
|
62
|
+
|
|
63
|
+
/**
|
|
64
|
+
* Se o emoji pode ser usado.
|
|
65
|
+
* @type {boolean}
|
|
66
|
+
*/
|
|
67
|
+
this.canUse = data.can_use;
|
|
68
|
+
|
|
69
|
+
/**
|
|
70
|
+
* Username do dono do emoji.
|
|
71
|
+
* @type {string}
|
|
72
|
+
*/
|
|
73
|
+
this.username = data.username;
|
|
74
|
+
|
|
75
|
+
/**
|
|
76
|
+
* Nome de exibição do dono do emoji.
|
|
77
|
+
* @type {string}
|
|
78
|
+
*/
|
|
79
|
+
this.displayName = data.display_name;
|
|
56
80
|
}
|
|
57
81
|
}
|
|
58
82
|
|
package/structures/Message.js
CHANGED
|
@@ -11,88 +11,82 @@ class Message {
|
|
|
11
11
|
/**
|
|
12
12
|
* Creates a new Message instance.
|
|
13
13
|
* @param {Object} data - Raw message data.
|
|
14
|
-
* @param {
|
|
14
|
+
* @param {number} data.id - The unique ID of the message.
|
|
15
|
+
* @param {number} data.channel_id - The channel ID where the message was sent.
|
|
16
|
+
* @param {number} data.user_id - The user ID of the author.
|
|
15
17
|
* @param {string} data.content - The content of the message.
|
|
16
|
-
* @param {
|
|
17
|
-
* @param {string}
|
|
18
|
-
* @param {string}
|
|
19
|
-
* @param {number}
|
|
20
|
-
* @param {
|
|
21
|
-
* @param {
|
|
22
|
-
* @param {string|
|
|
23
|
-
* @param {
|
|
24
|
-
* @param {string|
|
|
25
|
-
* @param {string|
|
|
18
|
+
* @param {"text"|"image"|"video"|"audio"|"file"|"sticker"|"embed"} data.message_type - The type of the message.
|
|
19
|
+
* @param {string|null} data.file_url - URL of the attached file.
|
|
20
|
+
* @param {string|null} data.file_name - Name of the attached file.
|
|
21
|
+
* @param {number|null} data.file_size - Size of the attached file in bytes.
|
|
22
|
+
* @param {number|null} data.reply_to - ID of the message this is replying to.
|
|
23
|
+
* @param {string} [data.reply_content] - Content of the replied message.
|
|
24
|
+
* @param {string|null} [data.reply_message_type] - Type of the replied message.
|
|
25
|
+
* @param {string} [data.reply_username] - Username of the replied user.
|
|
26
|
+
* @param {string|null} [data.reply_display_name] - Display name of the replied user.
|
|
27
|
+
* @param {string|null} [data.reply_avatar_url] - Avatar URL of the replied user.
|
|
28
|
+
* @param {string|null} [data.reply_user_id] - User ID of the replied user.
|
|
29
|
+
* @param {string|null} data.edited_at - Timestamp when the message was edited.
|
|
30
|
+
* @param {string} data.created_at - Timestamp when the message was created.
|
|
31
|
+
* @param {number|null} [data.sticker_id] - Sticker ID attached to the message.
|
|
32
|
+
* @param {string|null} [data.embed_data] - Embed data if present.
|
|
26
33
|
* @param {Object} clientInstance - The client instance.
|
|
27
34
|
* @returns {Message} The created Message instance.
|
|
28
35
|
* @example
|
|
29
36
|
* Message {
|
|
30
|
-
* id:
|
|
31
|
-
*
|
|
32
|
-
*
|
|
33
|
-
*
|
|
34
|
-
*
|
|
37
|
+
* id: 1875,
|
|
38
|
+
* channelId: 4,
|
|
39
|
+
* userId: 1,
|
|
40
|
+
* content: 'Sticker: crazy',
|
|
41
|
+
* messageType: 'sticker',
|
|
42
|
+
* fileUrl: 'https://api.beniocord.site/uploads/stickers/1765027757156-305382752.png',
|
|
43
|
+
* fileName: 'crazy.png',
|
|
35
44
|
* fileSize: null,
|
|
36
|
-
* attachments: [],
|
|
37
|
-
* replyTo: 20709,
|
|
38
45
|
* editedAt: null,
|
|
39
|
-
* createdAt: '2025-
|
|
40
|
-
*
|
|
41
|
-
*
|
|
42
|
-
*
|
|
43
|
-
*
|
|
44
|
-
*
|
|
45
|
-
*
|
|
46
|
-
*
|
|
46
|
+
* createdAt: '2025-12-20T20:54:46.247Z',
|
|
47
|
+
* stickerId: 3,
|
|
48
|
+
* embedData: null,
|
|
49
|
+
* replyToId: 1874,
|
|
50
|
+
* replyMessage: {
|
|
51
|
+
* content: 'Hello world',
|
|
52
|
+
* username: 'juniorcanary',
|
|
53
|
+
* displayName: 'Junior canary',
|
|
54
|
+
* avatarUrl: 'https://api.beniocord.site/uploads/avatars/1764896784903-442484585.png',
|
|
55
|
+
* messageType: 'text',
|
|
56
|
+
* userId: 1
|
|
47
57
|
* },
|
|
48
|
-
* author: User {
|
|
49
|
-
*
|
|
50
|
-
*
|
|
51
|
-
* displayName: 'Junior',
|
|
52
|
-
* avatarUrl: 'https://api.beniocord.site/uploads/avatars/1760736025811-629632107.png',
|
|
53
|
-
* status: 'online',
|
|
54
|
-
* emblems: [],
|
|
55
|
-
* isBot: false,
|
|
56
|
-
* lastSeen: '2025-11-16T14:29:40.598Z',
|
|
57
|
-
* createdAt: '2025-11-16T14:29:40.598Z'
|
|
58
|
-
* },
|
|
59
|
-
* channel: Channel {
|
|
60
|
-
* id: 2,
|
|
61
|
-
* name: 'Privado',
|
|
62
|
-
* description: 'DM Privada para conversar secretas!\n',
|
|
63
|
-
* type: 'text',
|
|
64
|
-
* iconUrl: 'https://api.beniocord.site/uploads/1762899895145-938680330.gif',
|
|
65
|
-
* ownerId: 1,
|
|
66
|
-
* isPrivate: true,
|
|
67
|
-
* isLocked: false,
|
|
68
|
-
* memberCount: 8,
|
|
69
|
-
* createdAt: '2025-09-21T15:28:43.610Z',
|
|
70
|
-
* updatedAt: '2025-11-11T23:49:54.906Z',
|
|
71
|
-
* members: Collection(0) [Map] { fetch: [AsyncFunction (anonymous)] },
|
|
72
|
-
* messages: Collection(0) [Map] { fetch: [AsyncFunction (anonymous)] }
|
|
73
|
-
* }
|
|
58
|
+
* author: User {...},
|
|
59
|
+
* channel: Channel {...},
|
|
60
|
+
* sticker: Sticker {...}
|
|
74
61
|
* }
|
|
75
62
|
*/
|
|
76
63
|
constructor(data, clientInstance) {
|
|
77
64
|
this.id = data.id;
|
|
65
|
+
this.channelId = data.channel_id;
|
|
66
|
+
this.userId = data.user_id;
|
|
78
67
|
this.content = data.content;
|
|
79
|
-
this.messageType = data.message_type
|
|
80
|
-
this.fileUrl = formatUrl(data.file_url);
|
|
81
|
-
this.fileName = data.file_name;
|
|
82
|
-
this.fileSize = data.file_size;
|
|
83
|
-
this.
|
|
84
|
-
this.replyTo = data.reply_to;
|
|
85
|
-
this.editedAt = data.edited_at;
|
|
68
|
+
this.messageType = data.message_type;
|
|
69
|
+
this.fileUrl = data.file_url ? formatUrl(data.file_url) : null;
|
|
70
|
+
this.fileName = data.file_name ?? null;
|
|
71
|
+
this.fileSize = data.file_size ?? null;
|
|
72
|
+
this.editedAt = data.edited_at ?? null;
|
|
86
73
|
this.createdAt = data.created_at;
|
|
87
|
-
|
|
88
|
-
this.
|
|
89
|
-
|
|
90
|
-
if (data.
|
|
91
|
-
this.
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
74
|
+
this.stickerId = data.sticker_id ?? null;
|
|
75
|
+
this.embedData = data.embed_data ?? null;
|
|
76
|
+
// Reply fields
|
|
77
|
+
if (data.reply_to != null) {
|
|
78
|
+
this.replyToId = data.reply_to;
|
|
79
|
+
this.replyMessage = {
|
|
80
|
+
content: data.reply_content ?? '',
|
|
81
|
+
username: data.reply_username ?? '',
|
|
82
|
+
displayName: data.reply_display_name ?? null,
|
|
83
|
+
avatarUrl: data.reply_avatar_url ? formatUrl(data.reply_avatar_url) : null,
|
|
84
|
+
messageType: data.reply_message_type ?? '',
|
|
85
|
+
userId: data.reply_user_id ?? ''
|
|
86
|
+
};
|
|
87
|
+
} else {
|
|
88
|
+
this.replyToId = null;
|
|
89
|
+
this.replyMessage = null;
|
|
96
90
|
}
|
|
97
91
|
|
|
98
92
|
this.author = data.user ? new User(data.user, clientInstance) : null;
|
package/structures/Sticker.js
CHANGED
|
@@ -5,70 +5,93 @@ const { formatUrl } = require("../helpers");
|
|
|
5
5
|
*/
|
|
6
6
|
class Sticker {
|
|
7
7
|
/**
|
|
8
|
-
*
|
|
9
|
-
* @param {Object} data -
|
|
10
|
-
* @param {
|
|
11
|
-
* @param {
|
|
12
|
-
* @param {string} data.name -
|
|
13
|
-
* @param {string} data.url -
|
|
14
|
-
* @param {string[]
|
|
15
|
-
* @param {string
|
|
16
|
-
* @param {
|
|
17
|
-
* @
|
|
18
|
-
*
|
|
8
|
+
* Cria uma nova instância de Sticker.
|
|
9
|
+
* @param {Object} data - Dados crus do sticker vindos da API.
|
|
10
|
+
* @param {number} data.id - ID único do sticker.
|
|
11
|
+
* @param {number} data.owner_id - ID do dono do sticker.
|
|
12
|
+
* @param {string} data.name - Nome do sticker.
|
|
13
|
+
* @param {string} data.url - URL da imagem do sticker.
|
|
14
|
+
* @param {string|string[]} data.tags - Tags associadas ao sticker.
|
|
15
|
+
* @param {string} data.created_at - Data de criação do sticker.
|
|
16
|
+
* @param {boolean} data.can_use - Se o sticker pode ser usado.
|
|
17
|
+
* @param {string} data.username - Username do dono.
|
|
18
|
+
* @param {string} data.display_name - Nome de exibição do dono.
|
|
19
|
+
* @returns {Sticker} Instância criada de Sticker.
|
|
20
|
+
*
|
|
19
21
|
* @example
|
|
20
22
|
* Sticker {
|
|
21
|
-
* id:
|
|
22
|
-
*
|
|
23
|
-
* name: '
|
|
24
|
-
*
|
|
25
|
-
*
|
|
26
|
-
* createdAt: '2025-
|
|
27
|
-
*
|
|
23
|
+
* id: 4,
|
|
24
|
+
* ownerId: 7,
|
|
25
|
+
* name: 'osuhow',
|
|
26
|
+
* tags: [],
|
|
27
|
+
* url: 'https://api.beniocord.site/uploads/stickers/1766100944970-73288347.png',
|
|
28
|
+
* createdAt: '2025-12-18T23:35:44.985Z',
|
|
29
|
+
* canUse: false,
|
|
30
|
+
* username: 'joneor',
|
|
31
|
+
* displayName: 'Juner'
|
|
28
32
|
* }
|
|
29
33
|
*/
|
|
30
34
|
constructor(data) {
|
|
31
35
|
/**
|
|
32
|
-
*
|
|
33
|
-
* @type {
|
|
36
|
+
* ID único do sticker.
|
|
37
|
+
* @type {number}
|
|
34
38
|
*/
|
|
35
39
|
this.id = data.id;
|
|
36
40
|
|
|
37
41
|
/**
|
|
38
|
-
*
|
|
39
|
-
* @type {
|
|
42
|
+
* ID do dono do sticker.
|
|
43
|
+
* @type {number}
|
|
40
44
|
*/
|
|
41
|
-
this.
|
|
45
|
+
this.ownerId = data.owner_id;
|
|
42
46
|
|
|
43
47
|
/**
|
|
44
|
-
*
|
|
48
|
+
* Nome do sticker.
|
|
45
49
|
* @type {string}
|
|
46
50
|
*/
|
|
47
51
|
this.name = data.name;
|
|
48
52
|
|
|
49
53
|
/**
|
|
50
|
-
*
|
|
54
|
+
* Tags associadas ao sticker.
|
|
51
55
|
* @type {string[]}
|
|
52
56
|
*/
|
|
53
|
-
|
|
57
|
+
if (Array.isArray(data.tags)) {
|
|
58
|
+
this.tags = data.tags;
|
|
59
|
+
} else if (typeof data.tags === 'string' && data.tags.length > 0) {
|
|
60
|
+
this.tags = data.tags.split(',').map(t => t.trim()).filter(Boolean);
|
|
61
|
+
} else {
|
|
62
|
+
this.tags = [];
|
|
63
|
+
}
|
|
54
64
|
|
|
55
65
|
/**
|
|
56
|
-
*
|
|
66
|
+
* URL formatada da imagem do sticker.
|
|
57
67
|
* @type {string}
|
|
58
68
|
*/
|
|
59
69
|
this.url = formatUrl(data.url);
|
|
60
70
|
|
|
61
71
|
/**
|
|
62
|
-
*
|
|
63
|
-
* @type {string
|
|
72
|
+
* Data de criação do sticker.
|
|
73
|
+
* @type {string}
|
|
64
74
|
*/
|
|
65
75
|
this.createdAt = data.created_at;
|
|
66
76
|
|
|
77
|
+
|
|
78
|
+
/**
|
|
79
|
+
* Se o sticker pode ser usado.
|
|
80
|
+
* @type {boolean}
|
|
81
|
+
*/
|
|
82
|
+
this.canUse = data.can_use;
|
|
83
|
+
|
|
67
84
|
/**
|
|
68
|
-
*
|
|
69
|
-
* @type {string
|
|
85
|
+
* Username do dono do sticker.
|
|
86
|
+
* @type {string}
|
|
87
|
+
*/
|
|
88
|
+
this.username = data.username;
|
|
89
|
+
|
|
90
|
+
/**
|
|
91
|
+
* Nome de exibição do dono do sticker.
|
|
92
|
+
* @type {string}
|
|
70
93
|
*/
|
|
71
|
-
this.
|
|
94
|
+
this.displayName = data.display_name;
|
|
72
95
|
}
|
|
73
96
|
}
|
|
74
97
|
|
package/structures/User.js
CHANGED
|
@@ -12,6 +12,7 @@ class User {
|
|
|
12
12
|
* @param {string} data.username - The username of the user.
|
|
13
13
|
* @param {string} data.display_name - The display name of the user.
|
|
14
14
|
* @param {string} data.avatar_url - The URL of the user's avatar.
|
|
15
|
+
* @param {string|null} [data.banner_url] - The URL of the user's banner (optional).
|
|
15
16
|
* @param {string} [data.status='offline'] - The user's status.
|
|
16
17
|
* @param {Array<Object>} [data.emblems=[]] - Array of user emblems.
|
|
17
18
|
* @param {boolean} data.is_bot - Whether the user is a bot.
|
|
@@ -25,6 +26,7 @@ class User {
|
|
|
25
26
|
* username: 'junior9244',
|
|
26
27
|
* displayName: 'Junior',
|
|
27
28
|
* avatarUrl: 'https://api.beniocord.site/uploads/avatars/1760736025811-629632107.png',
|
|
29
|
+
* bannerUrl: 'https://api.beniocord.site/uploads/banners/1760736025811-629632107.png',
|
|
28
30
|
* status: 'online',
|
|
29
31
|
* emblems: [ [Object], [Object] ],
|
|
30
32
|
* isBot: false,
|
|
@@ -39,11 +41,16 @@ class User {
|
|
|
39
41
|
this.username = data.username;
|
|
40
42
|
this.displayName = data.display_name;
|
|
41
43
|
this.avatarUrl = formatUrl(data.avatar_url);
|
|
44
|
+
/**
|
|
45
|
+
* The URL of the user's banner (or null if not set).
|
|
46
|
+
* @type {string|null}
|
|
47
|
+
*/
|
|
48
|
+
this.bannerUrl = data.banner_url ? formatUrl(data.banner_url) : null;
|
|
42
49
|
this.status = data.status || "offline";
|
|
43
50
|
this.emblems = data.emblems || [];
|
|
44
|
-
this.isBot = data.is_bot;
|
|
45
|
-
this.lastSeen = data.last_seen;
|
|
46
|
-
this.createdAt = data.created_at;
|
|
51
|
+
this.isBot = typeof data.is_bot !== 'undefined' ? data.is_bot : null;
|
|
52
|
+
this.lastSeen = typeof data.last_seen !== 'undefined' ? data.last_seen : null;
|
|
53
|
+
this.createdAt = typeof data.created_at !== 'undefined' ? data.created_at : null;
|
|
47
54
|
}
|
|
48
55
|
|
|
49
56
|
/**
|