Skip to content

Commit

Permalink
1.3.5
Browse files Browse the repository at this point in the history
+ Fix Typescript
+ Add some websocket event
+ bla bla
  • Loading branch information
aiko-chan-ai committed Apr 14, 2022
1 parent 31f0252 commit 7c7fc19
Show file tree
Hide file tree
Showing 12 changed files with 162 additions and 36 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "discord.js-selfbot-v13",
"version": "1.3.4",
"version": "1.3.5",
"description": "A unofficial discord.js fork for creating selfbots [Based on discord.js v13]",
"main": "./src/index.js",
"types": "./typings/index.d.ts",
Expand Down
2 changes: 1 addition & 1 deletion src/client/Client.js
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ class Client extends BaseClient {
/**
* @param {ClientOptions} options Options for the client
*/
constructor(options) {
constructor(options = {}) {
super(options);

const data = require('node:worker_threads').workerData ?? process.env;
Expand Down
4 changes: 3 additions & 1 deletion src/client/websocket/WebSocketManager.js
Original file line number Diff line number Diff line change
Expand Up @@ -349,8 +349,10 @@ class WebSocketManager extends EventEmitter {

if (packet && PacketHandlers[packet.t]) {
PacketHandlers[packet.t](this.client, packet, shard);
} else if (packet) {
/* Debug mode */
// console.log(`Unhandled packet: ${packet.t}`, packet);
}

return true;
}

Expand Down
5 changes: 5 additions & 0 deletions src/client/websocket/handlers/MESSAGE_ACK.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
'use strict';

module.exports = (client, { d: data }) => {
// client.user.messageMentions.delete(data.channel_id);
};
84 changes: 56 additions & 28 deletions src/client/websocket/handlers/READY.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
'use strict';

const ClientApplication = require('../../../structures/ClientApplication');
const User = require('../../../structures/User');
let ClientUser;
const chalk = require('chalk');
const axios = require('axios');
Expand All @@ -17,7 +15,7 @@ const checkUpdate = async () => {
const lastest_tag = res_.data['dist-tags'].latest;
// Checking if the package is outdated
// Stable version
if (lastest_tag !== Discord.version) {
if (lastest_tag !== Discord.version && Discord.version.includes('-') == false) {
return console.log(`${chalk.yellowBright(
'[WARNING]',
)} New Discord.js-selfbot-v13 version.
Expand All @@ -34,15 +32,40 @@ Old Version: ${chalk.redBright(
);
};

const customStatusAuto = async (client) => {
let custom_status;
if (
client.setting.rawSetting.custom_status?.text ||
res.rawSetting.custom_status?.emoji_name
) {
custom_status = new RichPresence.CustomStatus();
if (client.setting.rawSetting.custom_status.emoji_id) {
const emoji = await client.emojis.resolve(
client.setting.rawSetting.custom_status.emoji_id,
);
if (emoji) custom_status.setDiscordEmoji(emoji);
} else {
custom_status.setUnicodeEmoji(
client.setting.rawSetting.custom_status.emoji_name,
);
}
custom_status.setState(client.setting.rawSetting.custom_status?.text);
client.user.setPresence({
activities: custom_status ? [custom_status.toDiscord()] : [],
status: client.setting.rawSetting.status,
});
}
}

module.exports = (client, { d: data }, shard) => {
// console.log(data);
console.log(data);
if (client.options.checkUpdate) {
try {
checkUpdate();
} catch (e) {
console.log(e);
}
};
}
client.session_id = data.session_id;
if (client.user) {
client.user._patch(data.user);
Expand All @@ -54,29 +77,34 @@ module.exports = (client, { d: data }, shard) => {

client.user.setAFK(false);

client.setting.fetch().then(async (res) => {
if (!client.options.readyStatus) throw 'no';
let custom_status;
if (
res.rawSetting.custom_status?.text ||
res.rawSetting.custom_status?.emoji_name
) {
custom_status = new RichPresence.CustomStatus();
if (res.rawSetting.custom_status.emoji_id) {
const emoji = await client.emojis.resolve(
res.rawSetting.custom_status.emoji_id,
);
if (emoji) custom_status.setDiscordEmoji(emoji);
} else {
custom_status.setUnicodeEmoji(res.rawSetting.custom_status.emoji_name);
}
custom_status.setState(res.rawSetting.custom_status?.text);
client.user.setPresence({
activities: custom_status ? [custom_status.toDiscord()] : [],
status: res.rawSetting.status,
});
}
}).catch(() => {});
client.setting._patch(data.user_settings);

client.user.connectedAccounts = data.connected_accounts ?? [];

for (const [userid, note] of Object.entries(data.notes)) {
client.user.notes.set(userid, note);
}

if (client.options.readyStatus) {
customStatusAuto(client);
}

/**
* read_state: Return Array:
* {
* mention_count: 14, // ok it's ping count
* last_pin_timestamp: '1970-01-01T00:00:00+00:00', // why discord ?
* last_message_id: 0, // :)
* id: '840218426969817119' // channel id
* },
*/

/*
for (const object of data.read_state) {
if (object.mention_count == 0) continue;
client.user.messageMentions.set(object.id, object);
}
*/

for (const guild of data.guilds) {
guild.shardId = shard.id;
Expand Down
5 changes: 5 additions & 0 deletions src/client/websocket/handlers/USER_NOTE_UPDATE.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
'use strict';

module.exports = (client, { d: data }) => {
client.user.notes.set(data.id, data.note);
};
5 changes: 5 additions & 0 deletions src/client/websocket/handlers/USER_SETTINGS_UPDATE.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
'use strict';

module.exports = (client, { d: data }) => {
client.setting._patch(data);
};
4 changes: 4 additions & 0 deletions src/client/websocket/handlers/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,10 @@ const handlers = Object.fromEntries([
['THREAD_LIST_SYNC', require('./THREAD_LIST_SYNC')],
['THREAD_MEMBER_UPDATE', require('./THREAD_MEMBER_UPDATE')],
['THREAD_MEMBERS_UPDATE', require('./THREAD_MEMBERS_UPDATE')],
['USER_SETTINGS_UPDATE', require('./USER_SETTINGS_UPDATE')], // opcode 0
// USER_SETTINGS_PROTO_UPDATE // opcode 0
['MESSAGE_ACK', require('./MESSAGE_ACK')],
['USER_NOTE_UPDATE', require('./USER_NOTE_UPDATE')],
['USER_UPDATE', require('./USER_UPDATE')],
['PRESENCE_UPDATE', require('./PRESENCE_UPDATE')],
['TYPING_START', require('./TYPING_START')],
Expand Down
2 changes: 1 addition & 1 deletion src/managers/ClientUserSettingManager.js
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ class ClientUserSettingManager extends CachedManager {
* @private
*/
_patch(data) {
this.rawSetting = data;
this.rawSetting = Object.assign(this.rawSetting, data);
if ('locale' in data) {
this.locale = localeObject[data.locale];
}
Expand Down
7 changes: 7 additions & 0 deletions src/structures/ClientUser.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ const User = require('./User');
const DataResolver = require('../util/DataResolver');
const { HypeSquadOptions } = require('../util/Constants');
const { Util } = require('..');
const { Collection } = require('@discordjs/collection');

/**
* Represents the logged in client's Discord user.
Expand All @@ -13,6 +14,12 @@ class ClientUser extends User {
_patch(data) {
super._patch(data);

/*
Add: notes
*/
this.notes = new Collection();
// this.messageMentions = new Collection();

if ('verified' in data) {
/**
* Whether or not this account has been verified
Expand Down
14 changes: 12 additions & 2 deletions src/structures/User.js
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,6 @@ class User extends Base {
this.premiumGuildSince = null;
this.mutualGuilds = new Collection();
this.applications = null;
this.note = null;
this._patch(data);
}

Expand Down Expand Up @@ -138,6 +137,14 @@ class User extends Base {
return Relationship[parseInt(i)];
}

/**
* Check note
* @readonly
*/
get note() {
return this.client.user.notes.get(this.id);
}

// Code written by https://github.com/aiko-chan-ai
_ProfilePatch(data) {
if (!data) return;
Expand Down Expand Up @@ -188,7 +195,10 @@ class User extends Base {
* @returns {Promise<User>} the user object
*/
async sendFriendRequest() {
return this.client.relationships.sendFriendRequest(this.username, this.discriminator);
return this.client.relationships.sendFriendRequest(
this.username,
this.discriminator,
);
}
/**
* Blocks the user
Expand Down
64 changes: 62 additions & 2 deletions typings/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2484,7 +2484,7 @@ export class User extends PartialTextBasedChannel(Base) {
public system: boolean;
public readonly tag: string;
public username: string;
public note: string | null;
public readonly note: string | null;
public avatarURL(options?: ImageURLOptions): string | null;
public bannerURL(options?: ImageURLOptions): string | null;
public createDM(force?: boolean): Promise<DMChannel>;
Expand Down Expand Up @@ -3073,7 +3073,29 @@ export class ChannelManager extends CachedManager<Snowflake, AnyChannel, Channel

export class ClientUserSettingManager {
private constructor(client: Client, iterable?: Iterable<RawUserSettingsData>);
public fetch(): Promise<ClientUserSetting>;
public rawSetting: RawUserSettingsData | object;
public locale: localeSetting | null;
public activityDisplay: boolean | null;
public DMfromServerMode: boolean | null;
public displayImage: boolean | null;
public linkedImageDisplay: boolean | null;
public autoplayGIF: boolean | null;
public previewLink: boolean | null;
public animatedEmojis: boolean | null;
public allowTTS: boolean | null;
public compactMode: boolean | null;
public convertEmoticons: boolean | null;
public DMScanLevel: DMScanLevel;
public theme: 'dark' | 'light' | null;
public developerMode: boolean | null;
public afkTimeout: number | null; // second
public stickerAnimationMode: stickerAnimationMode;
public showEmojiReactions: boolean | null;
public customStatus: { text?: string, expires_at?: string | null, emoji_name?: string, emoji_id?: Snowflake | null, status?: PresenceStatusData } | object;
public addFriendFrom: { all?: boolean, mutual_friends?: boolean, mututal_guilds?: boolean } | object;
public guildMetadata: Collection<Snowflake, object>;
public disableDMfromServer: Collection<Snowflake, boolean>;
public fetch(): Promise<RawUserSettingsData>;
public setDisplayCompactMode(value?: boolean): Promise<ClientUserSetting>;
public setTheme(value?: 'dark' | 'light'): Promise<ClientUserSetting>;
public setLocale(value: localeSetting): Promise<ClientUserSetting>;
Expand Down Expand Up @@ -5559,6 +5581,44 @@ export interface RateLimitData {
global: boolean;
}

/**
* @extends https://luna.gitlab.io/discord-unofficial-docs/user_settings.html
*/
export interface RawUserSettingsData {
afk_timeout?: number;
allow_accessibility_detection?: boolean;
animate_emoji?: boolean;
animate_stickers?: number;
contact_sync_enabled:? boolean;
convert_emoticons?: boolean;
custom_status?: { text?: string, expires_at?: string | null, emoji_name?: string, emoji_id?: Snowflake | null };
default_guilds_restricted?: boolean;
detect_platform_accounts?: boolean;
developer_mode?: boolean;
disable_games_tab?: boolean;
enable_tts_command?: boolean;
explicit_content_filter?: DMScanLevel;
friend_discovery_flags?: number;
friend_source_flags?: { all?: boolean, mutual_friends?: boolean, mututal_guilds?: boolean };
gif_auto_play?: boolean;
guild_folders?: Array<{ id?: Snowflake, guild_ids?: Array<Snowflake>, name?: string }>;
guild_positions?: Array;
inline_attachment_media?: boolean;
inline_embed_media?: boolean;
locale?: string;
message_display_compact?: boolean;
native_phone_integration_enabled?: boolean;
render_embeds?: boolean;
render_reactions?: boolean;
restricted_guilds?: Array;
show_current_game?: boolean;
status?: PresenceStatusData;
stream_notifications_enabled?: boolean;
theme?: 'dark' | 'light';
timezone_offset?: number;
view_nsfw_guilds?: boolean;
}

export interface InvalidRequestWarningData {
count: number;
remainingTime: number;
Expand Down

0 comments on commit 7c7fc19

Please sign in to comment.