mirror of
https://github.com/ION606/custom_discordjs.git
synced 2026-05-14 22:26:54 +00:00
121 lines
2.9 KiB
JavaScript
121 lines
2.9 KiB
JavaScript
import axios from 'axios';
|
|
import {message} from '../messages/message.js';
|
|
import { BaseStruct } from '../baseStruct.js';
|
|
|
|
export class Channel extends BaseStruct {
|
|
/** @type {String} */
|
|
id;
|
|
|
|
/** @type {String} */
|
|
name;
|
|
|
|
/** @type {String} */
|
|
last_message_id;
|
|
|
|
/** @type {Number} */
|
|
type;
|
|
|
|
/** @type {Number} */
|
|
position;
|
|
|
|
/** @type {Number} */
|
|
flags;
|
|
|
|
/** @type {String} */
|
|
parent_id;
|
|
|
|
/** @type {import('../guilds/Guild.js').def} */
|
|
guild;
|
|
|
|
/** @type {[{id: String, type: String, allow: Number, deny: Number, allow_new: String, deny_nwe: String}]} */
|
|
permission_overwrites;
|
|
|
|
/** @type {Number} */
|
|
rate_limit_per_user;
|
|
|
|
/** @type {Boolean} */
|
|
nsfw;
|
|
|
|
|
|
async getChannelData() {
|
|
const response = await this.client.axiosCustom.get(`/channels/${this.id}`);
|
|
const channelData = response.data;
|
|
|
|
for (const k in this) {
|
|
if (channelData[k]) {
|
|
this[k] = channelData[k];
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
constructor(channel, guild, client = null) {
|
|
super(client);
|
|
|
|
for (const k in this) {
|
|
if (channel[k]) this[k] = channel[k];
|
|
}
|
|
|
|
this.guild = guild;
|
|
}
|
|
|
|
/**
|
|
* @param {Object} inp
|
|
* @returns {Promise<message>}
|
|
*/
|
|
async send(inp) {
|
|
return new Promise(async (resolve) => {
|
|
const toSend = (typeof inp == 'string') ? inp : inp.content;
|
|
|
|
var embds = undefined;
|
|
if (inp.embeds) {
|
|
embds = [];
|
|
for (const i of inp.embeds) {
|
|
embds.push(i.toJSON());
|
|
}
|
|
}
|
|
|
|
const response = await this.client.axiosCustom.post(`/channels/${this.id}/messages`, {
|
|
content: toSend,
|
|
message_reference: inp.message_reference || undefined,
|
|
embeds: embds
|
|
});
|
|
|
|
resolve(new message(response.data, this.client));
|
|
});
|
|
}
|
|
|
|
|
|
/**
|
|
* @returns {Promise<Map<String, message>}
|
|
* @param {{name: String, around: String, after: String, limit: Number}} configs
|
|
*/
|
|
async getMessages(configs) {
|
|
return new Promise(async (resolve) => {
|
|
var strconf = "?";
|
|
for (const i in configs) {
|
|
strconf += `${i}=${configs[i]}&`;
|
|
}
|
|
|
|
const response = await this.client.axiosCustom.get(`/channels/${this.id}/messages${strconf}`);
|
|
|
|
const msgMap = new Map();
|
|
for (const msgKey in response.data) {
|
|
const m = new message(response.data[msgKey], this.client, this.guild);
|
|
msgMap.set(m.id, m);
|
|
}
|
|
resolve(msgMap);
|
|
});
|
|
}
|
|
|
|
toObj() {
|
|
var obj = {};
|
|
for (const key in this) {
|
|
if (key != 'guild') {
|
|
obj[key] = this[key];
|
|
}
|
|
}
|
|
|
|
return obj;
|
|
}
|
|
} |