new application stuff very hype (#1764)

* application stuff, more to come

* docstrings

* Update Message.js
This commit is contained in:
Gus Caplan
2017-08-11 10:09:06 -07:00
committed by Crawl
parent 3c7869c1b7
commit 3ba224900f
5 changed files with 65 additions and 24 deletions

View File

@@ -103,9 +103,10 @@ const AllowedImageSizes = [
2048,
];
function checkImage({ size, format }) {
function makeImageUrl(root, { format = 'webp', size } = {}) {
if (format && !AllowedImageFormats.includes(format)) throw new Error('IMAGE_FORMAT', format);
if (size && !AllowedImageSizes.includes(size)) throw new RangeError('IMAGE_SIZE', size);
return `${root}.${format}${size ? `?size=${size}` : ''}`;
}
exports.Endpoints = {
@@ -116,25 +117,16 @@ exports.Endpoints = {
DefaultAvatar: number => `${root}/embed/avatars/${number}.png`,
Avatar: (userID, hash, format = 'default', size) => {
if (format === 'default') format = hash.startsWith('a_') ? 'gif' : 'webp';
checkImage({ size, format });
return `${root}/avatars/${userID}/${hash}.${format}${size ? `?size=${size}` : ''}`;
},
Icon: (guildID, hash, format = 'webp', size) => {
checkImage({ size, format });
return `${root}/icons/${guildID}/${hash}.${format}${size ? `?size=${size}` : ''}`;
},
AppIcon: (clientID, hash, format = 'webp', size) => {
checkImage({ size, format });
return `${root}/app-icons/${clientID}/${hash}.${format}${size ? `?size=${size}` : ''}`;
},
GDMIcon: (channelID, hash, format = 'webp', size) => {
checkImage({ size, format });
return `${root}/channel-icons/${channelID}/${hash}.${format}${size ? `?size=${size}` : ''}`;
},
Splash: (guildID, hash, format = 'webp', size) => {
checkImage({ size, format });
return `${root}/splashes/${guildID}/${hash}.${format}${size ? `?size=${size}` : ''}`;
return makeImageUrl(`${root}/avatars/${userID}/${hash}`, { format, size });
},
Icon: (guildID, hash, format = 'webp', size) =>
makeImageUrl(`${root}/icons/${guildID}/${hash}`, { format, size }),
AppIcon: (clientID, hash, { format = 'webp', size } = {}) =>
makeImageUrl(`${root}/app-icons/${clientID}/${hash}`, { size, format }),
GDMIcon: (channelID, hash, format = 'webp', size) =>
makeImageUrl(`${root}/channel-icons/${channelID}/${hash}`, { size, format }),
Splash: (guildID, hash, format = 'webp', size) =>
makeImageUrl(`${root}/splashes/${guildID}/${hash}`, { size, format }),
};
},
invite: (root, code) => `${root}/${code}`,
@@ -570,6 +562,11 @@ exports.UserFlags = {
HYPESQUAD: 1 << 2,
};
exports.ClientApplicationAssetTypes = {
SMALL: 1,
BIG: 2,
};
exports.Colors = {
DEFAULT: 0x000000,
AQUA: 0x1ABC9C,