aboutsummaryrefslogtreecommitdiff
path: root/src/commands/utilities/price.ts
blob: 38cd8cae61c5974e27ba9c92d3087c2d826fa9e5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
import { MessageEmbed } from 'discord.js';
import Fuse from 'fuse.js';
import fetch from 'node-fetch';
import { BushCommand, BushMessage } from '../../lib';

interface Summary {
	amount: number;
	pricePerUnit: number;
	orders: number;
}

interface Bazaar {
	success: boolean;
	lastUpdated: number;
	products: {
		[key: string]: {
			product_id: string;
			sell_summary: Summary[];
			buy_summary: Summary[];
			quick_status: {
				productId: string;
				sellPrice: number;
				sellVolume: number;
				sellMovingWeek: number;
				sellOrders: number;
				buyPrice: number;
				buyVolume: number;
				buyMovingWeek: number;
				buyOrders: number;
			};
		};
	};
}

interface LowestBIN {
	[key: string]: number;
}

interface AuctionAverages {
	[key: string]: {
		price?: number;
		count?: number;
		sales?: number;
		clean_price?: number;
		clean_sales?: number;
	};
}

type Results = [Bazaar, LowestBIN, LowestBIN, AuctionAverages];

export default class PriceCommand extends BushCommand {
	public constructor() {
		super('price', {
			aliases: ['price'],
			category: 'utilities',
			clientPermissions: ['EMBED_LINKS', 'SEND_MESSAGES'],
			description: {
				usage: 'price <item id>',
				examples: ['price ASPECT_OF_THE_END'],
				content: 'Finds the price information of an item.'
			},
			ratelimit: 4,
			cooldown: 4000,
			typing: true,
			args: [
				{
					id: 'item',
					type: 'string',
					match: 'content',
					prompt: {
						start: 'What item would you like to find the price of?',
						retry: '{error} Choose a valid item.'
					}
				},
				{
					id: 'strict',
					match: 'flag',
					flag: '--strict',
					default: false
				}
			],
			slash: true,
			slashOptions: [
				{
					name: 'item',
					description: 'The item that you would you like to find the price of.',
					type: 'STRING',
					required: true
				},
				{
					name: 'strict',
					description: 'Whether or not to bypass the fuzzy search.',
					type: 'BOOLEAN',
					required: false
				}
			]
		});
	}

	public async exec(message: BushMessage, { item, strict }: { item: string; strict: boolean }): Promise<unknown> {
		const errors = new Array<string>();

		const [bazaar, currentLowestBIN, averageLowestBIN, auctionAverages] = (
			await Promise.all([
				fetch('https://api.hypixel.net/skyblock/bazaar').catch(() => errors.push('bazaar')),
				fetch('https://moulberry.codes/lowestbin.json').catch(() => errors.push('current lowest BIN')),
				fetch('https://moulberry.codes/auction_averages_lbin/3day.json').catch(() => errors.push('average Lowest BIN')),
				fetch('https://moulberry.codes/auction_averages/3day.json').catch(() => errors.push('auction average'))
			])
		).map((request) => (typeof request === 'number' ? null : request.json())) as unknown as Results;

		let parsedItem = item.toString().toUpperCase().replace(/ /g, '_').replace(/'S/g, '');
		const priceEmbed = new MessageEmbed();

		if (errors?.length) {
			priceEmbed.setFooter(`Could not fetch data from ${util.oxford(errors, 'and', '')}`);
		}

		// create a set from all the item names so that there are no duplicates for the fuzzy search
		const itemNames = new Set(
			...Object.keys(averageLowestBIN || {}),
			...Object.keys(currentLowestBIN || {}),
			...Object.keys(auctionAverages || {}),
			...Object.keys(bazaar?.products || {})
		);

		// fuzzy search
		if (!strict) parsedItem = new Fuse(Array.from(itemNames))?.search(parsedItem)[0]?.item;

		// iif bazaar item then it there should not be any ah data
		if (bazaar['products'][parsedItem]) {
			const bazaarPriceEmbed = new MessageEmbed()
				.setColor(errors?.length ? util.colors.warn : util.colors.success)
				.setTitle(`Bazaar Information for **${parsedItem}**`)
				.addField('Sell Price', addBazaarInformation('sellPrice', 2, true))
				.addField('Buy Price', addBazaarInformation('buyPrice', 2, true))
				.addField(
					'Margin',
					(+addBazaarInformation('buyPrice', 2, false) - +addBazaarInformation('sellPrice', 2, false)).toLocaleString()
				)
				.addField('Current Sell Orders', addBazaarInformation('sellOrders', 0, true))
				.addField('Current Buy Orders', addBazaarInformation('buyOrders', 0, true));
			return await message.util.reply({ embeds: [bazaarPriceEmbed] });
		}

		// checks if the item exists in any of the action information otherwise it is not a valid item
		if (currentLowestBIN?.[parsedItem] || averageLowestBIN?.[parsedItem] || auctionAverages?.[parsedItem]) {
			priceEmbed
				.setColor(util.colors.success)
				.setTitle(`Price Information for \`${parsedItem}\``)
				.setFooter('All information is based on the last 3 days.');
		} else {
			const errorEmbed = new MessageEmbed();
			errorEmbed
				.setColor(util.colors.error)
				.setDescription(`${util.emojis.error} \`${parsedItem}\` is not a valid item id, or it has no auction data.`);
			return await message.util.reply({ embeds: [errorEmbed] });
		}

		addPrice('Current Lowest BIN', currentLowestBIN?.[parsedItem]);
		addPrice('Average Lowest BIN', averageLowestBIN?.[parsedItem]);
		addPrice('Average Auction Price', auctionAverages?.[parsedItem]?.price);
		addPrice('Average Auction Count', auctionAverages?.[parsedItem]?.count);
		addPrice('Average Auction Sales', auctionAverages?.[parsedItem]?.sales);
		addPrice('Average Auction Clean Price', auctionAverages?.[parsedItem]?.clean_price);
		addPrice('Average Auction Clean Sales', auctionAverages?.[parsedItem]?.clean_sales);

		return await message.util.reply({ embeds: [priceEmbed] });

		// helper functions
		function addBazaarInformation(Information: string, digits: number, commas: boolean): string {
			const price = bazaar?.products[parsedItem]?.quick_status?.[Information];
			const roundedPrice = Number(Number(price).toFixed(digits));
			return commas ? roundedPrice?.toLocaleString() : roundedPrice?.toString();
		}
		function addPrice(name: string, price: number | undefined) {
			if (price) priceEmbed.addField(name, price.toFixed(2).toLocaleString());
		}
	}
}