cleanup
This commit is contained in:
		
							parent
							
								
									9539ea32cd
								
							
						
					
					
						commit
						513efc4436
					
				
					 6 changed files with 9 additions and 115 deletions
				
			
		
							
								
								
									
										14
									
								
								app.js
									
										
									
									
									
								
							
							
						
						
									
										14
									
								
								app.js
									
										
									
									
									
								
							|  | @ -35,26 +35,14 @@ import { load } from "./utils/handler.js"; | |||
| import { paths } from "./utils/collections.js"; | ||||
| // database stuff
 | ||||
| import database from "./utils/database.js"; | ||||
| // lavalink stuff
 | ||||
| import { reload, connect, connected } from "./utils/soundplayer.js"; | ||||
| 
 | ||||
| // events
 | ||||
| import { endBroadcast, startBroadcast } from "./utils/misc.js"; | ||||
| import { parseThreshold } from "./utils/tempimages.js"; | ||||
| 
 | ||||
| const { types } = JSON.parse(readFileSync(new URL("./config/commands.json", import.meta.url))); | ||||
| const esmBotVersion = JSON.parse(readFileSync(new URL("./package.json", import.meta.url))).version; | ||||
| process.env.ESMBOT_VER = esmBotVersion; | ||||
| 
 | ||||
| // const intents = [
 | ||||
| //   "GUILD_VOICE_STATES",
 | ||||
| //   "DIRECT_MESSAGES",
 | ||||
| //   "GUILDS"
 | ||||
| // ];
 | ||||
| // if (types.classic) {
 | ||||
| //   intents.push("GUILD_MESSAGES");
 | ||||
| //   intents.push("MESSAGE_CONTENT");
 | ||||
| // }
 | ||||
| 
 | ||||
| async function* getFiles(dir) { | ||||
|   const dirents = await promises.readdir(dir, { withFileTypes: true }); | ||||
|   for (const dirent of dirents) { | ||||
|  |  | |||
|  | @ -4,7 +4,6 @@ import * as collections from "../../utils/collections.js"; | |||
| import { htmlescape } from "../../utils/misc.js"; | ||||
| 
 | ||||
| class CountCommand extends Command { | ||||
|   static category = "general" | ||||
|   async run() { | ||||
|     const counts = await database.getCounts(); | ||||
|     if (this.args.length !== 0) { | ||||
|  | @ -26,7 +25,8 @@ class CountCommand extends Command { | |||
|     } | ||||
|     return "You need to specify a command to see its usage amount!" | ||||
|   } | ||||
| 
 | ||||
|    | ||||
|   static category = "general" | ||||
|   static description = "Gets how many times a command was used"; | ||||
|   static arguments = ["{mention/id}"]; | ||||
|   static aliases = ["counts"]; | ||||
|  |  | |||
|  | @ -18,22 +18,22 @@ class HelpCommand extends Command { | |||
|         return { html: html } | ||||
|       } | ||||
|       if (help.categories[this.args[0].toLowerCase()]) { | ||||
|         html = `<h2>mrmBot Help - ${htmlescape(this.args[0])}</h2><table><tr><th>Command</th><th>Description</th></tr>` | ||||
|         html = `<h2>mrmBot Help - ${htmlescape(this.args[0])}</h2><table><tr><th> Command </th><th> Description </th></tr>\n` | ||||
|         for (const [command] of collections.commands) { | ||||
|           if (collections.info.get(command).category != this.args[0].toLowerCase()) continue; | ||||
|           const description = collections.info.get(command).description; | ||||
|           html = html + `<tr><td>${command}</td><td>${description}</td></tr>` | ||||
|           html = html + `<tr><td> ${command} </td><td> ${description} </td></tr>\n` | ||||
|         } | ||||
|         html = html + "</table>" | ||||
|         html = html + "</table><br><sub>(mobile formatting will be fixed soon)</sub>" | ||||
|         return { html: html } | ||||
|       } | ||||
|     } | ||||
|     const prefix = htmlescape(process.env.PREFIX); | ||||
|     html = `<h2>mrmBot Help - Categories</h2><table><tr><th>Category</th><th>Command</th></tr>` | ||||
|     html = `<h2>mrmBot Help - Categories</h2><table><tr><th> Category </th><th> Command </th></tr>` | ||||
|     for (const category of Object.keys(help.categories)) { | ||||
|       html = html + `<tr><td>${category}</td><td>${prefix}help ${category}</td></tr>` | ||||
|       html = html + `<tr><td> ${category} </td><td> ${prefix}help ${category} </td></tr>` | ||||
|     } | ||||
|     html = html + "</table>" | ||||
|     html = html + "</table><br><sub>(mobile formatting will be fixed soon)</sub>" | ||||
| 
 | ||||
|     return { html: html } | ||||
|     // return { html: "<h1>There are no mrmBot Docs Yet</h1>In the meantime, please refer to https://esmbot.net/help.html" };
 | ||||
|  |  | |||
|  | @ -3,7 +3,6 @@ import { log, error as _error, logger } from "../utils/logger.js"; | |||
| import { prefixCache, aliases, disabledCache, disabledCmdCache, commands } from "../utils/collections.js"; | ||||
| import parseCommand from "../utils/parseCommand.js"; | ||||
| import { clean } from "../utils/misc.js"; | ||||
| import sizeOf from "image-size"; | ||||
| // import { upload } from "../utils/tempimages.js";
 | ||||
| 
 | ||||
| let mentionRegex; | ||||
|  |  | |||
|  | @ -31,12 +31,10 @@ | |||
|     "emoji-regex": "^10.2.1", | ||||
|     "file-type": "^18.2.1", | ||||
|     "format-duration": "^3.0.2", | ||||
|     "image-size": "^1.0.2", | ||||
|     "jsqr": "^1.4.0", | ||||
|     "matrix-js-sdk": "^23.4.0", | ||||
|     "node-addon-api": "^5.1.0", | ||||
|     "node-emoji": "^1.11.0", | ||||
|     "oceanic.js": "1.5.1", | ||||
|     "qrcode": "^1.5.1", | ||||
|     "sharp": "^0.31.3", | ||||
|     "shoukaku": "^3.3.1", | ||||
|  |  | |||
							
								
								
									
										91
									
								
								pnpm-lock.yaml
									
										
									
										generated
									
									
									
								
							
							
						
						
									
										91
									
								
								pnpm-lock.yaml
									
										
									
										generated
									
									
									
								
							|  | @ -15,12 +15,10 @@ specifiers: | |||
|   eslint-plugin-unicorn: ^46.0.0 | ||||
|   file-type: ^18.2.1 | ||||
|   format-duration: ^3.0.2 | ||||
|   image-size: ^1.0.2 | ||||
|   jsqr: ^1.4.0 | ||||
|   matrix-js-sdk: ^23.4.0 | ||||
|   node-addon-api: ^5.1.0 | ||||
|   node-emoji: ^1.11.0 | ||||
|   oceanic.js: 1.5.1 | ||||
|   pm2: ^5.2.2 | ||||
|   postgres: ^3.3.4 | ||||
|   qrcode: ^1.5.1 | ||||
|  | @ -38,12 +36,10 @@ dependencies: | |||
|   emoji-regex: 10.2.1 | ||||
|   file-type: 18.2.1 | ||||
|   format-duration: 3.0.2 | ||||
|   image-size: 1.0.2 | ||||
|   jsqr: 1.4.0 | ||||
|   matrix-js-sdk: 23.4.0 | ||||
|   node-addon-api: 5.1.0 | ||||
|   node-emoji: 1.11.0 | ||||
|   oceanic.js: 1.5.1_bufferutil@4.0.7 | ||||
|   qrcode: 1.5.1 | ||||
|   sharp: 0.31.3 | ||||
|   shoukaku: 3.3.1_bufferutil@4.0.7 | ||||
|  | @ -400,26 +396,6 @@ packages: | |||
|       kuler: 2.0.0 | ||||
|     dev: false | ||||
| 
 | ||||
|   /@discordjs/voice/0.14.0_bufferutil@4.0.7: | ||||
|     resolution: {integrity: sha512-/LV8LSFuJ1c4OEW1ubPg3al2QNpUpwX8ZL+KL+LORmnUFVCtehSaEh+38uDfWg1O/TgiGI5vOLj4ZKql43drcw==} | ||||
|     engines: {node: '>=16.9.0'} | ||||
|     requiresBuild: true | ||||
|     dependencies: | ||||
|       '@types/ws': 8.5.4 | ||||
|       discord-api-types: 0.37.35 | ||||
|       prism-media: 1.3.5 | ||||
|       tslib: 2.5.0 | ||||
|       ws: 8.12.1_bufferutil@4.0.7 | ||||
|     transitivePeerDependencies: | ||||
|       - '@discordjs/opus' | ||||
|       - bufferutil | ||||
|       - ffmpeg-static | ||||
|       - node-opus | ||||
|       - opusscript | ||||
|       - utf-8-validate | ||||
|     dev: false | ||||
|     optional: true | ||||
| 
 | ||||
|   /@eslint-community/eslint-utils/4.2.0_eslint@8.35.0: | ||||
|     resolution: {integrity: sha512-gB8T4H4DEfX2IV9zGDJPOBgP1e/DbfCPDTtEqUMckpvzS1OYtva8JdFYBqMwYk7xAQ429WGF/UPqn8uQ//h2vQ==} | ||||
|     engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0} | ||||
|  | @ -656,11 +632,6 @@ packages: | |||
|     resolution: {integrity: sha512-EaObqwIvayI5a8dCzhFrjKzVwKLxjoG9T6Ppd5CEo07LRKfQ8Yokw54r5+Wq7FaBQ+yXRvQAYPrHwya1/UFt9g==} | ||||
|     dev: false | ||||
| 
 | ||||
|   /@types/node/18.14.6: | ||||
|     resolution: {integrity: sha512-93+VvleD3mXwlLI/xASjw0FzKcwzl3OdTCzm1LaRfqgS21gfFtK3zDXM5Op9TeeMsJVOaJ2VRDpT9q4Y3d0AvA==} | ||||
|     dev: false | ||||
|     optional: true | ||||
| 
 | ||||
|   /@types/normalize-package-data/2.4.1: | ||||
|     resolution: {integrity: sha512-Gj7cI7z+98M282Tqmp2K5EIsoouUEzbBJhQQzDE3jSIRk6r9gsz0oUokqIUR4u1R3dMHo0pDHM7sNOHyhulypw==} | ||||
|     dev: true | ||||
|  | @ -673,13 +644,6 @@ packages: | |||
|     resolution: {integrity: sha512-txGIh+0eDFzKGC25zORnswy+br1Ha7hj5cMVwKIU7+s0U2AxxJru/jZSMU6OC9MJWP6+pc/hc6ZjyZShpsyY2g==} | ||||
|     dev: false | ||||
| 
 | ||||
|   /@types/ws/8.5.4: | ||||
|     resolution: {integrity: sha512-zdQDHKUgcX/zBc4GrwsE/7dVdAD8JR4EuiAXiiUhhfyIJXXb2+PrGshFyeXWQPMmmZ2XxgaqclgpIC7eTXc1mg==} | ||||
|     dependencies: | ||||
|       '@types/node': 18.14.6 | ||||
|     dev: false | ||||
|     optional: true | ||||
| 
 | ||||
|   /acorn-jsx/5.3.2_acorn@8.8.2: | ||||
|     resolution: {integrity: sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==} | ||||
|     peerDependencies: | ||||
|  | @ -1295,11 +1259,6 @@ packages: | |||
|     resolution: {integrity: sha512-QV6PMaHTCNmKSeP6QoXhVTw9snc9VD8MulTT0Bd99Pacp4SS1cjcrYPgBPmibqKVtMJJfqC6XvOXgPMEEPH/fg==} | ||||
|     dev: false | ||||
| 
 | ||||
|   /discord-api-types/0.37.35: | ||||
|     resolution: {integrity: sha512-iyKZ/82k7FX3lcmHiAvvWu5TmyfVo78RtghBV/YsehK6CID83k5SI03DKKopBcln+TiEIYw5MGgq7SJXSpNzMg==} | ||||
|     dev: false | ||||
|     optional: true | ||||
| 
 | ||||
|   /doctrine/3.0.0: | ||||
|     resolution: {integrity: sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==} | ||||
|     engines: {node: '>=6.0.0'} | ||||
|  | @ -1936,14 +1895,6 @@ packages: | |||
|     engines: {node: '>= 4'} | ||||
|     dev: true | ||||
| 
 | ||||
|   /image-size/1.0.2: | ||||
|     resolution: {integrity: sha512-xfOoWjceHntRb3qFCrh5ZFORYH8XCdYpASltMhZ/Q0KZiOwjdE/Yl2QCiWdwD+lygV5bMCvauzgu5PxBX/Yerg==} | ||||
|     engines: {node: '>=14.0.0'} | ||||
|     hasBin: true | ||||
|     dependencies: | ||||
|       queue: 6.0.2 | ||||
|     dev: false | ||||
| 
 | ||||
|   /import-fresh/3.3.0: | ||||
|     resolution: {integrity: sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==} | ||||
|     engines: {node: '>=6'} | ||||
|  | @ -2451,23 +2402,6 @@ packages: | |||
|     engines: {node: '>= 6'} | ||||
|     dev: false | ||||
| 
 | ||||
|   /oceanic.js/1.5.1_bufferutil@4.0.7: | ||||
|     resolution: {integrity: sha512-N4c25J8UCxYJ5BtqTc2EVmcRLyBO/ZGhMhwsIiodYBwBen9AX4ipqwAsAhoosOJi8+WrWiDzAI3mSJ4Lxt2Mww==} | ||||
|     engines: {node: '>=16.16.0'} | ||||
|     dependencies: | ||||
|       undici: 5.20.0 | ||||
|       ws: 8.12.1_bufferutil@4.0.7 | ||||
|     optionalDependencies: | ||||
|       '@discordjs/voice': 0.14.0_bufferutil@4.0.7 | ||||
|     transitivePeerDependencies: | ||||
|       - '@discordjs/opus' | ||||
|       - bufferutil | ||||
|       - ffmpeg-static | ||||
|       - node-opus | ||||
|       - opusscript | ||||
|       - utf-8-validate | ||||
|     dev: false | ||||
| 
 | ||||
|   /once/1.4.0: | ||||
|     resolution: {integrity: sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==} | ||||
|     dependencies: | ||||
|  | @ -2782,25 +2716,6 @@ packages: | |||
|     engines: {node: '>= 0.8.0'} | ||||
|     dev: true | ||||
| 
 | ||||
|   /prism-media/1.3.5: | ||||
|     resolution: {integrity: sha512-IQdl0Q01m4LrkN1EGIE9lphov5Hy7WWlH6ulf5QdGePLlPas9p2mhgddTEHrlaXYjjFToM1/rWuwF37VF4taaA==} | ||||
|     peerDependencies: | ||||
|       '@discordjs/opus': '>=0.8.0 <1.0.0' | ||||
|       ffmpeg-static: ^5.0.2 || ^4.2.7 || ^3.0.0 || ^2.4.0 | ||||
|       node-opus: ^0.3.3 | ||||
|       opusscript: ^0.0.8 | ||||
|     peerDependenciesMeta: | ||||
|       '@discordjs/opus': | ||||
|         optional: true | ||||
|       ffmpeg-static: | ||||
|         optional: true | ||||
|       node-opus: | ||||
|         optional: true | ||||
|       opusscript: | ||||
|         optional: true | ||||
|     dev: false | ||||
|     optional: true | ||||
| 
 | ||||
|   /promptly/2.2.0: | ||||
|     resolution: {integrity: sha512-aC9j+BZsRSSzEsXBNBwDnAxujdx19HycZoKgRgzWnS8eOHg1asuf9heuLprfbe739zY3IdUQx+Egv6Jn135WHA==} | ||||
|     dependencies: | ||||
|  | @ -2855,12 +2770,6 @@ packages: | |||
|     resolution: {integrity: sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==} | ||||
|     dev: true | ||||
| 
 | ||||
|   /queue/6.0.2: | ||||
|     resolution: {integrity: sha512-iHZWu+q3IdFZFX36ro/lKBkSvfkztY5Y7HMiPlOUjhupPcG2JMfst2KKEpu5XndviX/3UhFbRngUPNKtgvtZiA==} | ||||
|     dependencies: | ||||
|       inherits: 2.0.4 | ||||
|     dev: false | ||||
| 
 | ||||
|   /raw-body/2.5.2: | ||||
|     resolution: {integrity: sha512-8zGqypfENjCIqGhgXToC8aB2r7YrBX+AQAfIPs/Mlk+BtPTztOvTS01NRW/3Eh60J+a48lt8qsCzirQ6loCVfA==} | ||||
|     engines: {node: '>= 0.8'} | ||||
|  |  | |||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue