mirror of
https://github.com/ION606/custom_discordjs.git
synced 2026-05-14 22:26:54 +00:00
Added channels, fixed interactions and added guids
This commit is contained in:
@@ -149,7 +149,7 @@ export class Client extends EventEmitter {
|
|||||||
this.user_profile = response.profile;
|
this.user_profile = response.profile;
|
||||||
this.user_settings = response.config;
|
this.user_settings = response.config;
|
||||||
this.id = response.profile.id;
|
this.id = response.profile.id;
|
||||||
console.log(response.guilds);
|
// console.log(response.guilds);
|
||||||
this.ready();
|
this.ready();
|
||||||
}
|
}
|
||||||
else if (response.t == gateWayEvents.MessageCreate) {
|
else if (response.t == gateWayEvents.MessageCreate) {
|
||||||
@@ -171,9 +171,10 @@ export class Client extends EventEmitter {
|
|||||||
else if (response.t == gateWayEvents.GuildCreate) this.guildCreate(response.guild);
|
else if (response.t == gateWayEvents.GuildCreate) this.guildCreate(response.guild);
|
||||||
else if (response.t == gateWayEvents.GuildDelete) this.guildDelete(response.guild);
|
else if (response.t == gateWayEvents.GuildDelete) this.guildDelete(response.guild);
|
||||||
else if (response.t == gateWayEvents.GuildMemberAdd) this.guildMemberAdd(response.member);
|
else if (response.t == gateWayEvents.GuildMemberAdd) this.guildMemberAdd(response.member);
|
||||||
else console.log(response.t);
|
// else console.log(response.t);
|
||||||
} else {
|
} else {
|
||||||
console.log(response.t);
|
// commmented to avoid heartbeats
|
||||||
|
// console.log(response.t);
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|||||||
@@ -0,0 +1,137 @@
|
|||||||
|
import axios from 'axios';
|
||||||
|
import {message} from '../messages/message.js';
|
||||||
|
|
||||||
|
export class Channel {
|
||||||
|
/** @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;
|
||||||
|
|
||||||
|
/** @type {String} */
|
||||||
|
#token;
|
||||||
|
|
||||||
|
|
||||||
|
async getChannelData() {
|
||||||
|
const headers = {
|
||||||
|
Authorization: this.#token
|
||||||
|
}
|
||||||
|
|
||||||
|
const response = await axios.get(`https://discord.com/api/channels/${this.id}`, { headers });
|
||||||
|
const channelData = response.data;
|
||||||
|
|
||||||
|
for (const k in this) {
|
||||||
|
if (channelData[k]) {
|
||||||
|
this[k] = channelData[k];
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
constructor(channel, guild, token = null) {
|
||||||
|
this.#token = token;
|
||||||
|
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;
|
||||||
|
const config = {
|
||||||
|
headers: {
|
||||||
|
Authorization: this.#token
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
var embds = undefined;
|
||||||
|
if (inp.embeds) {
|
||||||
|
embds = [];
|
||||||
|
for (const i of inp.embeds) {
|
||||||
|
embds.push(i.toJSON());
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
const response = await axios.post(`https://discord.com/api/channels/${this.id}/messages`, {
|
||||||
|
content: toSend,
|
||||||
|
message_reference: inp.message_reference || undefined,
|
||||||
|
embeds: embds
|
||||||
|
}, config);
|
||||||
|
|
||||||
|
resolve(new message(response.data, this.#token));
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @returns {Promise<Map<String, message>}
|
||||||
|
* @param {{name: String, around: String, after: String, limit: Number}} configs
|
||||||
|
*/
|
||||||
|
async getMessages(configs) {
|
||||||
|
return new Promise(async (resolve) => {
|
||||||
|
const config = {
|
||||||
|
headers: {
|
||||||
|
Authorization: this.#token
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
var strconf = "?";
|
||||||
|
for (const i in configs) {
|
||||||
|
console.log(i);
|
||||||
|
}
|
||||||
|
|
||||||
|
const response = await axios.get(`https://discord.com/api/channels/${this.id}/messages`, config);
|
||||||
|
|
||||||
|
const msgMap = new Map();
|
||||||
|
for (const msgKey in response.data) {
|
||||||
|
const m = new message(response.data[msgKey], this.#token, this.guild);
|
||||||
|
msgMap.set(m.id, m);
|
||||||
|
}
|
||||||
|
resolve(msgMap);
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
toObj() {
|
||||||
|
var obj = {};
|
||||||
|
for (const key in this) {
|
||||||
|
if (key != '#token' && key != 'guild') {
|
||||||
|
obj[key] = this[key];
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return obj;
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -1,5 +1,5 @@
|
|||||||
import axios from 'axios';
|
import axios from 'axios';
|
||||||
import {Channel} from '../messages/message.js';
|
import { Channel } from './Channel.js';
|
||||||
import Guild from './Guild.js';
|
import Guild from './Guild.js';
|
||||||
|
|
||||||
export class GuildChannelManager {
|
export class GuildChannelManager {
|
||||||
@@ -37,6 +37,61 @@ export class GuildChannelManager {
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @description returns the deleted channel if successful
|
||||||
|
* @param {String} cid
|
||||||
|
* @param {String} reason
|
||||||
|
* @returns {promise<Channel>}
|
||||||
|
*/
|
||||||
|
async delete(cid, reason=null) {
|
||||||
|
return new Promise(async (resolve) => {
|
||||||
|
try {
|
||||||
|
if (!this.cache.has(cid)) throw "This channel does not exist!";
|
||||||
|
|
||||||
|
const config = {
|
||||||
|
headers: {
|
||||||
|
Authorization: this.#token
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
const response = await axios.delete(`https://discord.com/api/channels/${cid}`, config);
|
||||||
|
const newChannel = new Channel(response.data, this.guild, this.#token);
|
||||||
|
this.cache.delete(cid);
|
||||||
|
resolve(newChannel);
|
||||||
|
} catch (err) {
|
||||||
|
throw err;
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @returns {Promise<Channel>}
|
||||||
|
* @param {String} cid
|
||||||
|
* @param {{name: String, Type: String, position: Number, topic: String, nsfw: Boolean, userLimit : Number, }} opts
|
||||||
|
*/
|
||||||
|
async edit(cid, opts) {
|
||||||
|
return new Promise(async (resolve) => {
|
||||||
|
try {
|
||||||
|
if (!this.cache.has(cid)) throw "This channel does not exist!";
|
||||||
|
if (Object.keys(opts).length == 0) return resolve(this);
|
||||||
|
|
||||||
|
const config = {
|
||||||
|
headers: {
|
||||||
|
Authorization: this.#token
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
const response = await axios.patch(`https://discord.com/api/channels/${cid}`, opts, config);
|
||||||
|
const newChannel = new Channel(response.data, this.guild, this.#token);
|
||||||
|
this.cache.set(newChannel.id, newChannel);
|
||||||
|
resolve(newChannel);
|
||||||
|
} catch (err) {
|
||||||
|
throw err;
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
constructor(token, guild, newCache) {
|
constructor(token, guild, newCache) {
|
||||||
this.#token = token;
|
this.#token = token;
|
||||||
this.guild = guild;
|
this.guild = guild;
|
||||||
|
|||||||
@@ -5,7 +5,7 @@ import GuildEmoji from './guildEmoji.js';
|
|||||||
import guildInvite from './guildInvite.js';
|
import guildInvite from './guildInvite.js';
|
||||||
import { guildSticker, guildStickerManager } from './GuildStickers.js';
|
import { guildSticker, guildStickerManager } from './GuildStickers.js';
|
||||||
import { GuildChannelManager } from './GuildChannelManager.js';
|
import { GuildChannelManager } from './GuildChannelManager.js';
|
||||||
import { Channel } from '../messages/message.js';
|
import { Channel } from './Channel.js';
|
||||||
|
|
||||||
//See https://discord.com/developers/docs/resources/guild
|
//See https://discord.com/developers/docs/resources/guild
|
||||||
|
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
import author from '../messages/User.js';
|
import author from '../messages/User.js';
|
||||||
import Guild from './Guild.js'
|
import Guild from './Guild.js'
|
||||||
import { Channel } from '../messages/message.js';
|
import { Channel } from './Channel.js';
|
||||||
import axios from 'axios';
|
import axios from 'axios';
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@@ -1,9 +1,29 @@
|
|||||||
import axios from 'axios';
|
import axios from 'axios';
|
||||||
import author from '../messages/User.js';
|
import author from '../messages/User.js';
|
||||||
import { Channel, message } from '../messages/message.js';
|
import { message } from '../messages/message.js';
|
||||||
|
import { Channel } from '../guilds/Channel.js';
|
||||||
import {Embed} from '../messages/embed.js';
|
import {Embed} from '../messages/embed.js';
|
||||||
import Guild from '../guilds/Guild.js';
|
import Guild from '../guilds/Guild.js';
|
||||||
|
|
||||||
|
class interactionOptions {
|
||||||
|
/** @type {String} */
|
||||||
|
name;
|
||||||
|
|
||||||
|
/** @type {Number} */
|
||||||
|
type;
|
||||||
|
|
||||||
|
/** @type {[{value: any, type: Number, name: String}]} */
|
||||||
|
options;
|
||||||
|
|
||||||
|
/** @type {Boolean} */
|
||||||
|
focused;
|
||||||
|
|
||||||
|
constructor(o) {
|
||||||
|
for (const k in this) {
|
||||||
|
if (o[k]) this[k] = o[k];
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
export class Interaction {
|
export class Interaction {
|
||||||
/** @type {author} */
|
/** @type {author} */
|
||||||
@@ -36,6 +56,9 @@ export class Interaction {
|
|||||||
/** @type {String} */
|
/** @type {String} */
|
||||||
guild_id;
|
guild_id;
|
||||||
|
|
||||||
|
/** @type {interactionOptions} */
|
||||||
|
data;
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @param {{content: String, ephemeral?: Boolean, embeds: [Embed]} | String} inp
|
* @param {{content: String, ephemeral?: Boolean, embeds: [Embed]} | String} inp
|
||||||
@@ -173,7 +196,9 @@ export class Interaction {
|
|||||||
for (const k in this) {
|
for (const k in this) {
|
||||||
if (intRaw[k] != undefined) {
|
if (intRaw[k] != undefined) {
|
||||||
if (k == "user") this[k] = new author(intRaw[k]);
|
if (k == "user") this[k] = new author(intRaw[k]);
|
||||||
else {
|
else if (k == 'data') {
|
||||||
|
this.data = new interactionOptions(intRaw[k]);
|
||||||
|
} else {
|
||||||
if (k == 'channel_id') {
|
if (k == 'channel_id') {
|
||||||
this.channel = new Channel(intRaw[k], this.guild, this.#application.token);
|
this.channel = new Channel(intRaw[k], this.guild, this.#application.token);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,112 +1,6 @@
|
|||||||
import author from './User.js';
|
import author from './User.js';
|
||||||
import axios from 'axios';
|
import axios from 'axios';
|
||||||
|
import { Channel } from '../guilds/Channel.js';
|
||||||
|
|
||||||
export class Channel {
|
|
||||||
/** @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;
|
|
||||||
|
|
||||||
/** @type {String} */
|
|
||||||
#token;
|
|
||||||
|
|
||||||
|
|
||||||
async getChannelData() {
|
|
||||||
const headers = {
|
|
||||||
Authorization: this.#token
|
|
||||||
}
|
|
||||||
|
|
||||||
const response = await axios.get(`https://discord.com/api/channels/${this.id}`, { headers });
|
|
||||||
const channelData = response.data;
|
|
||||||
|
|
||||||
for (const k in this) {
|
|
||||||
if (channelData[k]) {
|
|
||||||
this[k] = channelData[k];
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
constructor(channel, guild, token = null) {
|
|
||||||
this.#token = token;
|
|
||||||
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;
|
|
||||||
const config = {
|
|
||||||
headers: {
|
|
||||||
Authorization: this.#token
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
var embds = undefined;
|
|
||||||
if (inp.embeds) {
|
|
||||||
embds = [];
|
|
||||||
for (const i of inp.embeds) {
|
|
||||||
embds.push(i.toJSON());
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
const response = await axios.post(`https://discord.com/api/channels/${this.id}/messages`, {
|
|
||||||
content: toSend,
|
|
||||||
message_reference: inp.message_reference || undefined,
|
|
||||||
embeds: embds
|
|
||||||
}, config);
|
|
||||||
|
|
||||||
resolve(new message(response.data, this.#token));
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
toObj() {
|
|
||||||
var obj = {};
|
|
||||||
for (const key in this) {
|
|
||||||
if (key != '#token' && key != 'guild') {
|
|
||||||
obj[key] = this[key];
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
return obj;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
export class message {
|
export class message {
|
||||||
|
|||||||
+5
-1
@@ -1,6 +1,5 @@
|
|||||||
import Guild from "../structures/guilds/Guild.js";
|
import Guild from "../structures/guilds/Guild.js";
|
||||||
import { guildRole, newGuildRoleObj } from "../structures/guilds/guildRoles.js";
|
import { guildRole, newGuildRoleObj } from "../structures/guilds/guildRoles.js";
|
||||||
import { Channel } from "../structures/messages/message.js";
|
|
||||||
import { Client } from "../structures/types.js";
|
import { Client } from "../structures/types.js";
|
||||||
const delay = ms => new Promise(resolve => setTimeout(resolve, ms));
|
const delay = ms => new Promise(resolve => setTimeout(resolve, ms));
|
||||||
|
|
||||||
@@ -43,4 +42,9 @@ export default async function temp(c) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
const newChannel = await guild.channels.create({name: "temptemp"});
|
const newChannel = await guild.channels.create({name: "temptemp"});
|
||||||
|
await delay(1000);
|
||||||
|
|
||||||
|
guild.channels.edit(newChannel.id, {name: "NEW-NAME!"});
|
||||||
|
// const delConf = await guild.channels.delete(newChannel.id);
|
||||||
|
// console.log(delConf);
|
||||||
}
|
}
|
||||||
@@ -3,6 +3,7 @@ const delay = ms => new Promise(resolve => setTimeout(resolve, ms));
|
|||||||
|
|
||||||
/** @param {Interaction} interaction */
|
/** @param {Interaction} interaction */
|
||||||
export default async (interaction) => {
|
export default async (interaction) => {
|
||||||
|
console.log(interaction.data);
|
||||||
interaction.reply({content: "HELLO WORLD", ephemeral: true});
|
interaction.reply({content: "HELLO WORLD", ephemeral: true});
|
||||||
await delay(3000);
|
await delay(3000);
|
||||||
interaction.update({content: "NOOOOOOOOOOOOOOOOOO"});
|
interaction.update({content: "NOOOOOOOOOOOOOOOOOO"});
|
||||||
|
|||||||
@@ -10,15 +10,19 @@ export default async (message) => {
|
|||||||
.setDescription("dkjhfslkjdfhjldsjhfkzdjhflkdsjhfdsjhfkdsjf");
|
.setDescription("dkjhfslkjdfhjldsjhfkzdjhflkdsjhfdsjhfkdsjf");
|
||||||
|
|
||||||
const response = await message.channel.send({ content: "FDJHKSJDFHLKJDSHFLKJSDHFKDSJHFD", embeds: [embd] });
|
const response = await message.channel.send({ content: "FDJHKSJDFHLKJDSHFLKJSDHFKDSJHFD", embeds: [embd] });
|
||||||
console.log(response);
|
// console.log(response);
|
||||||
await delay(2000);
|
await delay(2000);
|
||||||
|
|
||||||
const response2 = await message.reply({content: `You said "${message.content}"!`, embeds: [embd]});
|
const response2 = await message.reply({content: `You said "${message.content}"!`, embeds: [embd]});
|
||||||
console.log(response2);
|
// console.log(response2);
|
||||||
await delay(2000);
|
await delay(2000);
|
||||||
|
|
||||||
const response3 = await response.edit("KAT");
|
const response3 = await response.edit("KAT");
|
||||||
console.log(response3);
|
// console.log(response3);
|
||||||
|
|
||||||
|
//Get channel messages
|
||||||
|
const messages = await response.channel.getMessages();
|
||||||
|
console.log(messages);
|
||||||
} else {
|
} else {
|
||||||
console.log(message);
|
console.log(message);
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user