2022-03-19 10:37:45 +00:00
|
|
|
'use strict';
|
|
|
|
const { default: Collection } = require('@discordjs/collection');
|
2022-03-19 12:06:13 +00:00
|
|
|
const { Error, TypeError } = require('../errors/DJSError');
|
2022-03-20 07:25:53 +00:00
|
|
|
const { remove } = require('lodash');
|
2022-04-05 12:01:20 +00:00
|
|
|
const { localeObject, DMScanLevel, stickerAnimationMode } = require('../util/Constants')
|
2022-03-19 10:37:45 +00:00
|
|
|
/**
|
2022-04-10 12:03:40 +00:00
|
|
|
* Manages API methods for users.
|
2022-03-19 10:37:45 +00:00
|
|
|
*/
|
2022-04-10 12:03:40 +00:00
|
|
|
class ClientUserSettingManager {
|
2022-03-19 10:37:45 +00:00
|
|
|
constructor(client, iterable) {
|
2022-04-10 12:03:40 +00:00
|
|
|
this.client = client;
|
2022-03-19 10:37:45 +00:00
|
|
|
// Raw data
|
|
|
|
this.rawSetting = {};
|
|
|
|
// Language
|
|
|
|
this.locale = null;
|
|
|
|
// Setting => ACTIVITY SETTINGS => Activity Status => Display current activity as a status message
|
2022-04-05 12:01:20 +00:00
|
|
|
this.activityDisplay = null;
|
|
|
|
//
|
|
|
|
this.disableDMfromServer = new Collection();
|
|
|
|
// Allow direct messages from server members
|
|
|
|
this.DMfromServerMode = null;
|
|
|
|
//
|
|
|
|
this.displayImage = null;
|
|
|
|
//
|
|
|
|
this.linkedImageDisplay = null;
|
2022-03-19 10:37:45 +00:00
|
|
|
// Setting => APP SETTINGS => Accessibility => Automatically play GIFs when Discord is focused.
|
|
|
|
this.autoplayGIF = null;
|
2022-04-05 12:01:20 +00:00
|
|
|
// Show embeds and preview website links pasted into chat
|
|
|
|
this.previewLink = null;
|
|
|
|
// Setting => APP SETTINGS => Accessibility => Play Animated Emojis
|
|
|
|
this.animatedEmojis = null;
|
|
|
|
// Setting => APP SETTINGS => Accessibility => Text-to-speech => Allow playback
|
|
|
|
this.allowTTS = null;
|
2022-03-19 10:37:45 +00:00
|
|
|
// Setting => APP SETTINGS => Appearance => Message Display => Compact Mode [OK]
|
|
|
|
this.compactMode = null;
|
|
|
|
// Setting => APP SETTINGS => Text & Images => Emoji => Convert Emoticons
|
|
|
|
this.convertEmoticons = null;
|
2022-04-05 12:01:20 +00:00
|
|
|
// SAFE DIRECT MESSAGING
|
|
|
|
this.DMScanLevel = null;
|
2022-03-19 10:37:45 +00:00
|
|
|
// Setting => APP SETTINGS => Appearance => Theme [OK]
|
|
|
|
this.theme = '';
|
2022-04-05 12:01:20 +00:00
|
|
|
//
|
|
|
|
this.developerMode = null;
|
|
|
|
//
|
|
|
|
this.afkTimeout = null;
|
|
|
|
//
|
|
|
|
this.stickerAnimationMode = null;
|
|
|
|
// WHO CAN ADD YOU AS A FRIEND ?
|
|
|
|
this.addFriendFrom = {
|
|
|
|
all: null,
|
|
|
|
mutual_friends: null,
|
|
|
|
mutual_guilds: null,
|
|
|
|
};
|
2022-03-19 10:37:45 +00:00
|
|
|
// Setting => APP SETTINGS => Text & Images => Emoji => Show emoji reactions
|
|
|
|
this.showEmojiReactions = null;
|
|
|
|
// Custom Stauts [It's not working now]
|
|
|
|
this.customStatus = null;
|
|
|
|
// Guild folder and position
|
|
|
|
this.guildMetadata = new Collection();
|
2022-04-02 16:22:57 +00:00
|
|
|
// Todo: add new method from Discum
|
2022-03-19 10:37:45 +00:00
|
|
|
}
|
2022-03-20 07:25:53 +00:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @param {Object} data Raw Data to patch
|
2022-04-05 12:01:20 +00:00
|
|
|
* @extends https://github.com/Merubokkusu/Discord-S.C.U.M/blob/master/discum/user/user.py
|
2022-03-20 07:25:53 +00:00
|
|
|
* @private
|
|
|
|
*/
|
2022-03-19 10:37:45 +00:00
|
|
|
_patch(data) {
|
|
|
|
this.rawSetting = data;
|
|
|
|
if ('locale' in data) {
|
2022-04-05 12:01:20 +00:00
|
|
|
this.locale = localeObject[data.locale];
|
2022-03-19 10:37:45 +00:00
|
|
|
}
|
|
|
|
if ('show_current_game' in data) {
|
2022-04-05 12:01:20 +00:00
|
|
|
this.activityDisplay = data.show_current_game;
|
|
|
|
}
|
|
|
|
if ('default_guilds_restricted' in data) {
|
|
|
|
this.DMfromServerMode = data.default_guilds_restricted;
|
|
|
|
}
|
|
|
|
if ('inline_attachment_media' in data) {
|
|
|
|
this.displayImage = data.inline_attachment_media;
|
|
|
|
}
|
|
|
|
if ('inline_embed_media' in data) {
|
|
|
|
this.linkedImageDisplay = data.inline_embed_media;
|
2022-03-19 10:37:45 +00:00
|
|
|
}
|
|
|
|
if ('gif_auto_play' in data) {
|
|
|
|
this.autoplayGIF = data.gif_auto_play;
|
|
|
|
}
|
2022-04-05 12:01:20 +00:00
|
|
|
if ('render_embeds' in data) {
|
|
|
|
this.previewLink = data.render_embeds;
|
|
|
|
}
|
|
|
|
if ('animate_emoji' in data) {
|
|
|
|
this.animatedEmojis = data.animate_emoji;
|
|
|
|
}
|
|
|
|
if ('enable_tts_command' in data) {
|
|
|
|
this.allowTTS = data.enable_tts_command;
|
|
|
|
}
|
2022-03-19 10:37:45 +00:00
|
|
|
if ('message_display_compact' in data) {
|
|
|
|
this.compactMode = data.message_display_compact;
|
|
|
|
}
|
|
|
|
if ('convert_emoticons' in data) {
|
|
|
|
this.convertEmoticons = data.convert_emoticons;
|
|
|
|
}
|
2022-04-05 12:01:20 +00:00
|
|
|
if ('explicit_content_filter' in data) {
|
|
|
|
this.DMScanLevel = DMScanLevel[data.explicit_content_filter];
|
2022-03-19 10:37:45 +00:00
|
|
|
}
|
|
|
|
if ('theme' in data) {
|
|
|
|
this.theme = data.theme;
|
|
|
|
}
|
2022-04-05 12:01:20 +00:00
|
|
|
if ('developer_mode' in data) {
|
|
|
|
this.developerMode = data.developer_mode;
|
|
|
|
}
|
|
|
|
if ('afk_timeout' in data) {
|
|
|
|
this.afkTimeout = data.afk_timeout * 1000; // second => milisecond
|
|
|
|
}
|
|
|
|
if ('animate_stickers' in data) {
|
|
|
|
this.stickerAnimationMode = stickerAnimationMode[data.animate_stickers];
|
2022-03-19 10:37:45 +00:00
|
|
|
}
|
|
|
|
if ('render_reactions' in data) {
|
|
|
|
this.showEmojiReactions = data.render_reactions;
|
|
|
|
}
|
|
|
|
if ('custom_status' in data) {
|
2022-03-21 04:23:41 +00:00
|
|
|
this.customStatus = data.custom_status || {}; // Thanks PinkDuwc._#3443 reported this issue
|
2022-03-19 10:37:45 +00:00
|
|
|
this.customStatus.status = data.status;
|
|
|
|
}
|
2022-04-05 12:01:20 +00:00
|
|
|
if ('friend_source_flags' in data) {
|
|
|
|
this.addFriendFrom = {
|
|
|
|
all: data.friend_source_flags.all || false,
|
|
|
|
mutual_friends:
|
|
|
|
data.friend_source_flags.all ? true : data.friend_source_flags.mutual_friends,
|
|
|
|
mutual_guilds:
|
|
|
|
data.friend_source_flags.all ? true : data.friend_source_flags.mutual_guilds,
|
|
|
|
};
|
|
|
|
}
|
2022-03-19 10:37:45 +00:00
|
|
|
if ('guild_folders' in data) {
|
|
|
|
const data_ = data.guild_positions.map((guildId, i) => {
|
|
|
|
// Find folder
|
|
|
|
const folderIndex = data.guild_folders.findIndex((obj) =>
|
|
|
|
obj.guild_ids.includes(guildId),
|
|
|
|
);
|
|
|
|
const metadata = {
|
|
|
|
guildId: guildId,
|
|
|
|
guildIndex: i,
|
|
|
|
folderId: data.guild_folders[folderIndex]?.id,
|
|
|
|
folderIndex,
|
|
|
|
folderName: data.guild_folders[folderIndex]?.name,
|
|
|
|
folderColor: data.guild_folders[folderIndex]?.color,
|
|
|
|
folderGuilds: data.guild_folders[folderIndex]?.guild_ids,
|
|
|
|
};
|
|
|
|
return [guildId, metadata];
|
|
|
|
});
|
|
|
|
this.guildMetadata = new Collection(data_);
|
|
|
|
}
|
2022-04-05 12:01:20 +00:00
|
|
|
if ('restricted_guilds' in data) {
|
|
|
|
data.restricted_guilds.map((guildId) => {
|
|
|
|
const guild = this.client.guilds.cache.get(guildId);
|
|
|
|
if (!guild) return;
|
|
|
|
guild.disableDM = true;
|
|
|
|
this.disableDMfromServer.set(guildId, true);
|
|
|
|
});
|
|
|
|
}
|
2022-03-19 10:37:45 +00:00
|
|
|
}
|
|
|
|
async fetch() {
|
|
|
|
if (this.client.bot) throw new Error('INVALID_BOT_METHOD');
|
|
|
|
try {
|
|
|
|
const data = await this.client.api.users('@me').settings.get();
|
|
|
|
this._patch(data);
|
|
|
|
return this;
|
|
|
|
} catch (e) {
|
|
|
|
throw e;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
/**
|
|
|
|
* Edit data
|
|
|
|
* @param {Object} data Data to edit
|
|
|
|
* @private
|
|
|
|
*/
|
|
|
|
async edit(data) {
|
|
|
|
if (this.client.bot) throw new Error('INVALID_BOT_METHOD');
|
|
|
|
try {
|
|
|
|
const res = await this.client.api.users('@me').settings.patch({ data });
|
|
|
|
this._patch(res);
|
|
|
|
return this;
|
|
|
|
} catch (e) {
|
|
|
|
throw e;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
/**
|
|
|
|
* Set compact mode
|
|
|
|
* @param {Boolean | null} value Compact mode enable or disable
|
|
|
|
* @returns {Boolean}
|
|
|
|
*/
|
|
|
|
async setDisplayCompactMode(value) {
|
|
|
|
if (this.client.bot) throw new Error('INVALID_BOT_METHOD');
|
2022-03-19 12:06:13 +00:00
|
|
|
if (
|
|
|
|
typeof value !== 'boolean' &&
|
|
|
|
typeof value !== 'null' &&
|
|
|
|
typeof value !== 'undefined'
|
|
|
|
)
|
|
|
|
throw new TypeError(
|
|
|
|
'INVALID_TYPE',
|
|
|
|
'value',
|
|
|
|
'boolean | null | undefined',
|
|
|
|
true,
|
|
|
|
);
|
2022-03-19 10:37:45 +00:00
|
|
|
if (!value) value = !this.compactMode;
|
|
|
|
if (value !== this.compactMode) {
|
|
|
|
await this.edit({ message_display_compact: value });
|
|
|
|
}
|
|
|
|
return this.compactMode;
|
|
|
|
}
|
|
|
|
/**
|
|
|
|
* Discord Theme
|
|
|
|
* @param {null |dark |light} value Theme to set
|
|
|
|
* @returns {theme}
|
|
|
|
*/
|
|
|
|
async setTheme(value) {
|
|
|
|
if (this.client.bot) throw new Error('INVALID_BOT_METHOD');
|
|
|
|
const validValues = ['dark', 'light'];
|
2022-03-20 07:25:53 +00:00
|
|
|
if (
|
|
|
|
typeof value !== 'string' &&
|
|
|
|
typeof value !== 'null' &&
|
|
|
|
typeof value !== 'undefined'
|
|
|
|
)
|
|
|
|
throw new TypeError(
|
|
|
|
'INVALID_TYPE',
|
|
|
|
'value',
|
|
|
|
'string | null | undefined',
|
|
|
|
true,
|
|
|
|
);
|
2022-03-19 10:37:45 +00:00
|
|
|
if (!validValues.includes(value)) {
|
|
|
|
value == validValues[0]
|
|
|
|
? (value = validValues[1])
|
|
|
|
: (value = validValues[0]);
|
|
|
|
}
|
|
|
|
if (value !== this.theme) {
|
|
|
|
await this.edit({ theme: value });
|
|
|
|
}
|
|
|
|
return this.theme;
|
|
|
|
}
|
|
|
|
/**
|
2022-03-19 12:06:13 +00:00
|
|
|
* * Locale Setting, must be one of:
|
2022-03-19 10:37:45 +00:00
|
|
|
* * `DANISH`
|
|
|
|
* * `GERMAN`
|
|
|
|
* * `ENGLISH_UK`
|
|
|
|
* * `ENGLISH_US`
|
|
|
|
* * `SPANISH`
|
|
|
|
* * `FRENCH`
|
|
|
|
* * `CROATIAN`
|
|
|
|
* * `ITALIAN`
|
|
|
|
* * `LITHUANIAN`
|
|
|
|
* * `HUNGARIAN`
|
|
|
|
* * `DUTCH`
|
|
|
|
* * `NORWEGIAN`
|
|
|
|
* * `POLISH`
|
|
|
|
* * `BRAZILIAN_PORTUGUESE`
|
|
|
|
* * `ROMANIA_ROMANIAN`
|
|
|
|
* * `FINNISH`
|
|
|
|
* * `SWEDISH`
|
|
|
|
* * `VIETNAMESE`
|
|
|
|
* * `TURKISH`
|
|
|
|
* * `CZECH`
|
|
|
|
* * `GREEK`
|
|
|
|
* * `BULGARIAN`
|
|
|
|
* * `RUSSIAN`
|
|
|
|
* * `UKRAINIAN`
|
|
|
|
* * `HINDI`
|
|
|
|
* * `THAI`
|
|
|
|
* * `CHINA_CHINESE`
|
|
|
|
* * `JAPANESE`
|
|
|
|
* * `TAIWAN_CHINESE`
|
|
|
|
* * `KOREAN`
|
2022-03-19 12:06:13 +00:00
|
|
|
* @param {string} value
|
2022-03-19 10:37:45 +00:00
|
|
|
* @returns {locale}
|
|
|
|
*/
|
|
|
|
async setLocale(value) {
|
|
|
|
if (this.client.bot) throw new Error('INVALID_BOT_METHOD');
|
2022-03-20 07:25:53 +00:00
|
|
|
if (typeof value !== 'string')
|
|
|
|
throw new TypeError('INVALID_TYPE', 'value', 'string', true);
|
2022-03-19 10:37:45 +00:00
|
|
|
if (!localeObject[value]) throw new Error('INVALID_LOCALE');
|
|
|
|
if (localeObject[value] !== this.locale) {
|
|
|
|
await this.edit({ locale: localeObject[value] });
|
|
|
|
}
|
|
|
|
return this.locale;
|
|
|
|
}
|
2022-03-19 12:06:13 +00:00
|
|
|
// TODO: Guild positions & folders
|
2022-03-20 07:25:53 +00:00
|
|
|
// Change Index in Array [Hidden]
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
* @param {Array} array Array
|
|
|
|
* @param {Number} from Index1
|
|
|
|
* @param {Number} to Index2
|
|
|
|
* @returns {Array}
|
|
|
|
* @private
|
|
|
|
*/
|
|
|
|
_move(array, from, to) {
|
|
|
|
array.splice(to, 0, array.splice(from, 1)[0]);
|
|
|
|
return array;
|
|
|
|
}
|
|
|
|
// TODO: Move Guild
|
|
|
|
// folder to folder
|
|
|
|
// folder to home
|
|
|
|
// home to home
|
|
|
|
// home to folder
|
|
|
|
/**
|
|
|
|
* Change Guild Position (from * to Folder or Home)
|
|
|
|
* @param {GuildIDResolve} guildId guild.id
|
|
|
|
* @param {Number} newPosition Guild Position
|
|
|
|
* * **WARNING**: Type = `FOLDER`, newPosition is the guild's index in the Folder.
|
|
|
|
* @param {number} type Move to folder or home
|
|
|
|
* * `FOLDER`: 1
|
|
|
|
* * `HOME`: 2
|
|
|
|
* @param {FolderID} folderId If you want to move to folder
|
|
|
|
* @private
|
|
|
|
*/
|
|
|
|
async guildChangePosition(guildId, newPosition, type, folderId) {
|
|
|
|
// get Guild default position
|
|
|
|
// Escape
|
|
|
|
const oldGuildFolderPosition = this.rawSetting.guild_folders.findIndex(
|
|
|
|
(value) => value.guild_ids.includes(guildId),
|
|
|
|
);
|
2022-04-05 12:01:20 +00:00
|
|
|
const newGuildFolderPosition = this.rawSetting.guild_folders.findIndex(
|
|
|
|
(value) =>
|
|
|
|
value.guild_ids.includes(this.rawSetting.guild_positions[newPosition]),
|
2022-03-20 07:25:53 +00:00
|
|
|
);
|
|
|
|
if (type == 2 || `${type}`.toUpperCase() == 'HOME') {
|
|
|
|
// Delete GuildID from Folder and create new Folder
|
|
|
|
// Check it is folder
|
|
|
|
const folder = this.rawSetting.guild_folders[oldGuildFolderPosition];
|
|
|
|
if (folder.id) {
|
|
|
|
this.rawSetting.guild_folders[oldGuildFolderPosition].guild_ids =
|
|
|
|
this.rawSetting.guild_folders[
|
|
|
|
oldGuildFolderPosition
|
|
|
|
].guild_ids.filter((v) => v !== guildId);
|
|
|
|
}
|
|
|
|
this.rawSetting.guild_folders = this._move(
|
|
|
|
this.rawSetting.guild_folders,
|
|
|
|
oldGuildFolderPosition,
|
|
|
|
newGuildFolderPosition,
|
|
|
|
);
|
|
|
|
this.rawSetting.guild_folders[newGuildFolderPosition].id = null;
|
|
|
|
} else if (type == 1 || `${type}`.toUpperCase() == 'FOLDER') {
|
|
|
|
// Delete GuildID from oldFolder
|
|
|
|
this.rawSetting.guild_folders[oldGuildFolderPosition].guild_ids =
|
|
|
|
this.rawSetting.guild_folders[oldGuildFolderPosition].guild_ids.filter(
|
|
|
|
(v) => v !== guildId,
|
|
|
|
);
|
|
|
|
// Index new Folder
|
|
|
|
const folderIndex = this.rawSetting.guild_folders.findIndex(
|
|
|
|
(value) => value.id == folderId,
|
|
|
|
);
|
|
|
|
const folder = this.rawSetting.guild_folders[folderIndex];
|
|
|
|
folder.guild_ids.push(guildId);
|
|
|
|
folder.guild_ids = [...new Set(folder.guild_ids)];
|
|
|
|
folder.guild_ids = this._move(
|
|
|
|
folder.guild_ids,
|
|
|
|
folder.guild_ids.findIndex((v) => v == guildId),
|
|
|
|
newPosition,
|
|
|
|
);
|
|
|
|
}
|
|
|
|
this.edit({ guild_folders: this.rawSetting.guild_folders });
|
|
|
|
}
|
2022-03-19 10:37:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
module.exports = ClientUserSettingManager;
|