2022-03-19 10:37:45 +00:00
|
|
|
'use strict';
|
|
|
|
|
|
|
|
const Team = require('./Team');
|
|
|
|
const { Error } = require('../errors/DJSError');
|
|
|
|
const Application = require('./interfaces/Application');
|
|
|
|
const ApplicationCommandManager = require('../managers/ApplicationCommandManager');
|
2022-03-24 10:55:32 +00:00
|
|
|
const ApplicationFlags = require('../util/ApplicationFlags');
|
2022-03-19 10:37:45 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Represents a Client OAuth2 Application.
|
|
|
|
* @extends {Application}
|
|
|
|
*/
|
|
|
|
class ClientApplication extends Application {
|
|
|
|
constructor(client, data) {
|
|
|
|
super(client, data);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The application command manager for this application
|
|
|
|
* @type {ApplicationCommandManager}
|
|
|
|
*/
|
2022-03-25 15:57:21 +00:00
|
|
|
this.commands = null // Selfbot
|
2022-03-19 10:37:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
_patch(data) {
|
|
|
|
super._patch(data);
|
|
|
|
|
|
|
|
if ('flags' in data) {
|
|
|
|
/**
|
|
|
|
* The flags this application has
|
2022-03-24 10:55:32 +00:00
|
|
|
* @type {ApplicationFlags}
|
2022-03-19 10:37:45 +00:00
|
|
|
*/
|
2022-03-24 10:55:32 +00:00
|
|
|
this.flags = new ApplicationFlags(data.flags).freeze();
|
2022-03-19 10:37:45 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if ('cover_image' in data) {
|
|
|
|
/**
|
|
|
|
* The hash of the application's cover image
|
|
|
|
* @type {?string}
|
|
|
|
*/
|
|
|
|
this.cover = data.cover_image;
|
|
|
|
} else {
|
|
|
|
this.cover ??= null;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ('rpc_origins' in data) {
|
|
|
|
/**
|
|
|
|
* The application's RPC origins, if enabled
|
|
|
|
* @type {string[]}
|
|
|
|
*/
|
|
|
|
this.rpcOrigins = data.rpc_origins;
|
|
|
|
} else {
|
|
|
|
this.rpcOrigins ??= [];
|
|
|
|
}
|
|
|
|
|
|
|
|
if ('bot_require_code_grant' in data) {
|
|
|
|
/**
|
|
|
|
* If this application's bot requires a code grant when using the OAuth2 flow
|
|
|
|
* @type {?boolean}
|
|
|
|
*/
|
|
|
|
this.botRequireCodeGrant = data.bot_require_code_grant;
|
|
|
|
} else {
|
|
|
|
this.botRequireCodeGrant ??= null;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ('bot_public' in data) {
|
|
|
|
/**
|
|
|
|
* If this application's bot is public
|
|
|
|
* @type {?boolean}
|
|
|
|
*/
|
|
|
|
this.botPublic = data.bot_public;
|
|
|
|
} else {
|
|
|
|
this.botPublic ??= null;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The owner of this OAuth application
|
|
|
|
* @type {?(User|Team)}
|
|
|
|
*/
|
|
|
|
this.owner = data.team
|
|
|
|
? new Team(this.client, data.team)
|
|
|
|
: data.owner
|
|
|
|
? this.client.users._add(data.owner)
|
|
|
|
: this.owner ?? null;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Whether this application is partial
|
|
|
|
* @type {boolean}
|
|
|
|
* @readonly
|
|
|
|
*/
|
|
|
|
get partial() {
|
|
|
|
return !this.name;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Obtains this application from Discord.
|
|
|
|
* @returns {Promise<ClientApplication>}
|
|
|
|
*/
|
|
|
|
async fetch() {
|
2022-03-25 15:57:21 +00:00
|
|
|
if(!this.client.user.bot) throw new Error("INVALID_USER_METHOD");
|
2022-03-19 10:37:45 +00:00
|
|
|
const app = await this.client.api.oauth2.applications('@me').get();
|
|
|
|
this._patch(app);
|
|
|
|
return this;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
module.exports = ClientApplication;
|