Compare commits
No commits in common. "a4eab091c78cab9c91e93c728aed25c4c5a39c7d" and "1f8c5585dc0b9d6356ae5c3eef0085b3be1ba1fc" have entirely different histories.
a4eab091c7
...
1f8c5585dc
12 changed files with 22 additions and 77 deletions
|
@ -5,9 +5,9 @@
|
|||
"es6": true
|
||||
},
|
||||
"parserOptions": {
|
||||
"ecmaVersion": 2022,
|
||||
"sourceType": "module"
|
||||
"ecmaVersion": 2021
|
||||
},
|
||||
"sourceType": "module",
|
||||
"rules": {
|
||||
"arrow-spacing": ["warn", { "before": true, "after": true }],
|
||||
"brace-style": ["error", "stroustrup", { "allowSingleLine": true }],
|
||||
|
|
17
.vscode/launch.json
vendored
17
.vscode/launch.json
vendored
|
@ -1,17 +0,0 @@
|
|||
{
|
||||
// Use IntelliSense to learn about possible attributes.
|
||||
// Hover to view descriptions of existing attributes.
|
||||
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
|
||||
"version": "0.2.0",
|
||||
"configurations": [
|
||||
{
|
||||
"type": "pwa-node",
|
||||
"request": "launch",
|
||||
"name": "Launch Program",
|
||||
"skipFiles": [
|
||||
"<node_internals>/**"
|
||||
],
|
||||
"program": "${workspaceFolder}/index.js"
|
||||
}
|
||||
]
|
||||
}
|
|
@ -1,6 +1,6 @@
|
|||
import { SlashCommandBuilder } from '@discordjs/builders';
|
||||
import { MessageEmbed } from 'discord.js';
|
||||
import fetch from 'node-fetch';
|
||||
import fetch from 'node-fetch'
|
||||
|
||||
export default {
|
||||
data: new SlashCommandBuilder()
|
||||
|
|
|
@ -25,12 +25,9 @@ export default {
|
|||
const gifskiOutput = output.replace(path.extname(output), '.gif');
|
||||
const gifsicleOutput = output.replace(path.extname(output), 'gifsicle.gif');
|
||||
|
||||
// Extract every frame for gifski
|
||||
await utils.ffmpeg(`-i ${output} ${os.tmpdir()}/frame${interaction.id}%04d.png`);
|
||||
// Make it look better
|
||||
await gifski(gifskiOutput, `${os.tmpdir()}/frame${interaction.id}*`);
|
||||
// Optimize it
|
||||
await gifsicle(gifskiOutput, gifsicleOutput);
|
||||
await utils.ffmpeg(`-i ${output} ${os.tmpdir()}/frame${interaction.id}%04d.png`); // Extract every frame for gifski
|
||||
await gifski(gifskiOutput, `${os.tmpdir()}/frame${interaction.id}*`); // Make it look better
|
||||
await gifsicle(gifskiOutput, gifsicleOutput); // Optimize it
|
||||
|
||||
const fileStat = fs.statSync(gifsicleOutput);
|
||||
const fileSize = fileStat.size / 1000000.0;
|
||||
|
|
|
@ -42,12 +42,6 @@ const commands = [
|
|||
|
||||
const rest = new REST({ version: '9' }).setToken(token);
|
||||
|
||||
if (process.argv[2] === 'global') {
|
||||
rest.put(Routes.applicationCommands(clientId), { body: commands })
|
||||
.then(() => console.log('Successfully registered application commands globally.'))
|
||||
.catch(console.error);
|
||||
}
|
||||
|
||||
rest.put(Routes.applicationGuildCommands(clientId, guildId), { body: commands })
|
||||
.then(() => console.log(`Successfully registered application commands for the guild ${guildId}.`))
|
||||
.then(() => console.log('Successfully registered application commands.'))
|
||||
.catch(console.error);
|
|
@ -1,7 +0,0 @@
|
|||
export default {
|
||||
name: 'unhandledRejection',
|
||||
once: true,
|
||||
async execute(error) {
|
||||
console.error('Unhandled promise rejection:', error);
|
||||
},
|
||||
};
|
|
@ -1,6 +1,6 @@
|
|||
import { exec } from 'node:child_process';
|
||||
import https from 'node:https';
|
||||
import dotenv from 'dotenv';
|
||||
import dotenv from 'dotenv'
|
||||
dotenv.config();
|
||||
const { uptimeURL, uptimeInterval } = process.env;
|
||||
|
30
index.js
30
index.js
|
@ -2,8 +2,8 @@ import fs from 'node:fs';
|
|||
import path from 'node:path';
|
||||
import { fileURLToPath } from 'node:url';
|
||||
import { Client, Collection, Intents } from 'discord.js';
|
||||
import dotenv from 'dotenv';
|
||||
dotenv.config();
|
||||
import dotenv from 'dotenv'
|
||||
dotenv.config()
|
||||
const { token } = process.env;
|
||||
|
||||
const __filename = fileURLToPath(import.meta.url);
|
||||
|
@ -24,12 +24,12 @@ for (const file of commandFiles) {
|
|||
client.commands.set(command.data.name, command);
|
||||
}
|
||||
|
||||
// Load client events from the events folder
|
||||
const clientEventsPath = path.join(__dirname, 'events/client');
|
||||
const clientEventFiles = fs.readdirSync(clientEventsPath).filter(file => file.endsWith('.js'));
|
||||
// Load events from the events folder
|
||||
const eventsPath = path.join(__dirname, 'events');
|
||||
const eventFiles = fs.readdirSync(eventsPath).filter(file => file.endsWith('.js'));
|
||||
|
||||
for (const file of clientEventFiles) {
|
||||
const filePath = path.join(clientEventsPath, file);
|
||||
for (const file of eventFiles) {
|
||||
const filePath = path.join(eventsPath, file);
|
||||
let event = await import(filePath);
|
||||
event = event.default;
|
||||
if (event.once) {
|
||||
|
@ -40,20 +40,4 @@ for (const file of clientEventFiles) {
|
|||
}
|
||||
}
|
||||
|
||||
// Load process events from the events folder
|
||||
const processEventsPath = path.join(__dirname, 'events/process');
|
||||
const processEventFiles = fs.readdirSync(processEventsPath).filter(file => file.endsWith('.js'));
|
||||
|
||||
for (const file of processEventFiles) {
|
||||
const filePath = path.join(processEventsPath, file);
|
||||
let event = await import(filePath);
|
||||
event = event.default;
|
||||
if (event.once) {
|
||||
process.once(event.name, (...args) => event.execute(...args));
|
||||
}
|
||||
else {
|
||||
process.on(event.name, (...args) => event.execute(...args));
|
||||
}
|
||||
}
|
||||
|
||||
client.login(token);
|
||||
|
|
12
package.json
12
package.json
|
@ -1,19 +1,15 @@
|
|||
{
|
||||
"name": "haha-yes",
|
||||
"version": "4.0.0",
|
||||
"name": "haha-yes-new",
|
||||
"version": "1.0.0",
|
||||
"description": "",
|
||||
"main": "index.js",
|
||||
"scripts": {
|
||||
"start": "node .",
|
||||
"lint": "eslint .",
|
||||
"lintfix": "eslint . --fix",
|
||||
"test": "echo \"Error: no test specified\" && exit 1"
|
||||
},
|
||||
"type": "module",
|
||||
"keywords": [],
|
||||
"author": "Supositware",
|
||||
"homepage": "https://libtar.de",
|
||||
"license": "AGPL",
|
||||
"author": "",
|
||||
"license": "ISC",
|
||||
"dependencies": {
|
||||
"@discordjs/builders": "^0.13.0",
|
||||
"@discordjs/rest": "^0.4.1",
|
||||
|
|
|
@ -13,8 +13,6 @@ You need to install the following
|
|||
|
||||
* ffmpeg (Optional but very recommanded: for yt-dlp to merge video/audio formats)
|
||||
* yt-dlp ([a file can download it for you](prereq.js))
|
||||
* gifsicle (For [vid2gif](commands/vid2gif.js))
|
||||
* giski (For [vid2gif](commands/vid2gif.js))
|
||||
* Somewhere to upload files larger than 8 mb (I use a self hosted (XBackBone)[https://github.com/SergiX44/XBackBone/] with the upload.sh script made from it, you can use anything else just need to be located in bin/upload.sh)
|
||||
|
||||
### Installing
|
||||
|
@ -26,7 +24,7 @@ npm install
|
|||
```
|
||||
|
||||
To run the bot for the first time you need to execute [deploy-guild-commands.js](deploy-guild-commands.js) so the commands can be registered, don't forget to set your .env accordingly.
|
||||
``node deploy-commands.cjs``
|
||||
``node deploy-commands.js``
|
||||
|
||||
then you can just run it normally.
|
||||
``node index.js``
|
||||
|
|
|
@ -4,7 +4,7 @@ import { exec } from 'node:child_process';
|
|||
export default {
|
||||
downloadVideo,
|
||||
upload,
|
||||
ffmpeg,
|
||||
ffmpeg
|
||||
};
|
||||
async function downloadVideo(url, output, format = 'bestvideo*+bestaudio/best') {
|
||||
await new Promise((resolve, reject) => {
|
||||
|
|
Loading…
Reference in a new issue