From 0e70791284f118857e2deeef6896a1d7ad63193e Mon Sep 17 00:00:00 2001 From: Manuel Ruwe Date: Fri, 16 Dec 2022 10:42:35 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=9A=A8=20Fix=20eslint=20warnings=20and=20?= =?UTF-8?q?remove=20old=20files?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- config.json.example | 10 ---------- parseENV.js | 16 ---------------- src/clients/discord/discord.module.ts | 7 +++---- src/clients/discord/discord.service.ts | 2 +- 4 files changed, 4 insertions(+), 31 deletions(-) delete mode 100644 config.json.example delete mode 100644 parseENV.js diff --git a/config.json.example b/config.json.example deleted file mode 100644 index 3672d4e..0000000 --- a/config.json.example +++ /dev/null @@ -1,10 +0,0 @@ -{ - "token": "", - "server-address": "", - "jellyfin-username": "", - "jellyfin-password": "", - "discord-prefix": "?", - "jellyfin-app-name": "Jellyfin Discord Music Bot", - "interactive-seek-bar-update-intervall": 10000, - "log-level": "info" -} diff --git a/parseENV.js b/parseENV.js deleted file mode 100644 index 393b2e4..0000000 --- a/parseENV.js +++ /dev/null @@ -1,16 +0,0 @@ -const fs = require("fs"); -const filename = "./config.json"; -const configfile = require(filename); - -if (process.env.DISCORD_PREFIX) { configfile["discord-prefix"] = process.env.DISCORD_PREFIX; } -if (process.env.DISCORD_TOKEN) { configfile.token = process.env.DISCORD_TOKEN; } -if (process.env.JELLYFIN_SERVER_ADDRESS) { configfile["server-address"] = process.env.JELLYFIN_SERVER_ADDRESS; } -if (process.env.JELLYFIN_USERNAME) { configfile["jellyfin-username"] = process.env.JELLYFIN_USERNAME; } -if (process.env.JELLYFIN_PASSWORD) { configfile["jellyfin-password"] = process.env.JELLYFIN_PASSWORD; } -if (process.env.JELLYFIN_APP_NAME) { configfile["jellyfin-app-name"] = process.env.JELLYFIN_APP_NAME; } -if (process.env.MESSAGE_UPDATE_INTERVAL) { configfile["interactive-seek-bar-update-intervall"] = parseInt(process.env.MESSAGE_UPDATE_INTERVAL); } -if (process.env.LOG_LEVEL) { configfile["log-level"] = process.env.LOG_LEVEL; } - -fs.writeFile(filename, JSON.stringify(configfile, null, 1), (err) => { - if (err) return console.error(err); -}); diff --git a/src/clients/discord/discord.module.ts b/src/clients/discord/discord.module.ts index 45078fc..1e61691 100644 --- a/src/clients/discord/discord.module.ts +++ b/src/clients/discord/discord.module.ts @@ -1,5 +1,5 @@ -import { Module, OnModuleDestroy, OnModuleInit } from "@nestjs/common"; -import { DiscordService } from "./discord.service"; +import { Module, OnModuleDestroy, OnModuleInit } from '@nestjs/common'; +import { DiscordService } from './discord.service'; @Module({ imports: [], @@ -8,7 +8,6 @@ import { DiscordService } from "./discord.service"; exports: [DiscordService], }) export class DiscordClientModule implements OnModuleInit, OnModuleDestroy { - constructor(private discordService: DiscordService) {} onModuleDestroy() { this.discordService.destroyClient(); @@ -19,4 +18,4 @@ export class DiscordClientModule implements OnModuleInit, OnModuleDestroy { this.discordService.registerEventHandlers(); this.discordService.connectAndLogin(); } -} \ No newline at end of file +} diff --git a/src/clients/discord/discord.service.ts b/src/clients/discord/discord.service.ts index d43f7a8..d6cf09d 100644 --- a/src/clients/discord/discord.service.ts +++ b/src/clients/discord/discord.service.ts @@ -1,7 +1,7 @@ import { Injectable, Logger } from '@nestjs/common'; import { EventEmitter2 } from '@nestjs/event-emitter'; -import { ActivityType, Client } from 'discord.js'; +import { Client } from 'discord.js'; @Injectable() export class DiscordService {