Compare commits

..

No commits in common. "d3fff38e369ff35a4d96b5b03b7cecbd5515f84f" and "7e37641e0b98200ed2e37d7e56ab78d7684b690f" have entirely different histories.

3 changed files with 18 additions and 59 deletions

View File

@ -1,17 +0,0 @@
import { ApplicationCommandOptionType, BurstHandlerMajorIdKey } from 'discord.js'
import { Command } from '../structures/command'
import { RunOptions } from '../types/commandTypes'
import { jellyfinHandler } from "../.."
import { v4 as uuid } from 'uuid'
export default new Command({
name: 'passwort_reset',
description: 'Ich vergebe dir ein neues Passwort und schicke es dir per DM zu. Kostet auch nix! Versprochen! 😉',
options: [],
run: async (interaction: RunOptions) => {
console.log('PasswortReset called')
interaction.interaction.followUp('Yo, ich schick dir eins!')
console.log(JSON.stringify(interaction.interaction.member, null, 2))
jellyfinHandler.resetUserPasswort(interaction.interaction.member, uuid())
}
})

View File

@ -19,7 +19,6 @@ export interface Config {
jellfin_token: string
jellyfin_url: string
port: number
workaround_token: string
}
}
export const config: Config = {
@ -48,7 +47,6 @@ export const config: Config = {
guild_id: process.env.GUILD_ID ?? "",
client_id: process.env.CLIENT_ID ?? "",
jellfin_token: process.env.JELLYFIN_TOKEN ?? "",
jellyfin_url: process.env.JELLYFIN_URL ?? "",
workaround_token: process.env.TOKEN ?? ""
jellyfin_url: process.env.JELLYFIN_URL ?? ""
}
}

View File

@ -14,7 +14,7 @@ export class JellyfinHandler {
private userApi: UserApi
private systemApi: SystemApi
private token: string
private authHeader: { headers: { 'X-Emby-Authorization': string } }
private authHeader: { headers: { 'X-MediaBrowser-Token': string } }
private config: Config
private serverName = "";
@ -30,7 +30,7 @@ export class JellyfinHandler {
this.token = this.config.bot.jellfin_token
this.authHeader = {
headers: {
"X-Emby-Authorization": this.config.bot.workaround_token
"X-MediaBrowser-Token": this.token
}
}
const userApiConfigurationParams: ConfigurationParameters = {
@ -94,7 +94,6 @@ export class JellyfinHandler {
}
public async getUser(discordUser: GuildMember, requestId?: string): Promise<Maybe<UserDto>> {
logger.info(`Getting user for discord member ${discordUser.displayName}`, {requestId})
const jfUsernameFromDiscordUsername = this.generateJFUserName(discordUser)
const jfUsers = await this.getCurrentUsers(discordUser.guild.id, requestId)
const foundUser = jfUsers.find(x => x.name === jfUsernameFromDiscordUsername)
@ -102,7 +101,7 @@ export class JellyfinHandler {
}
public async removeUser(newMember: GuildMember, requestId?: string) {
logger.error(`Trying to remove user ${newMember.displayName}, but method is not implemented`, {requestId})
logger.error(`Trying to remove user ${newMember.displayName}, but method is not implemented`)
const jfuser = await this.getUser(newMember, requestId)
if (jfuser) {
await this.disableUser(jfuser, newMember.guild.id, requestId)
@ -110,41 +109,20 @@ export class JellyfinHandler {
}
public async resetUserPasswort(member: GuildMember, requestId?: string) {
logger.info(`Resetting password for user ${member.displayName}`, {requestId})
const jfUser = await this.getUser(member, requestId)
if (jfUser && jfUser.id) {
// const reset: UpdateUserPasswordRequest = {
// resetPassword: true
// }
// const shit: UpdateUserPasswordOperationRequest = {
// updateUserPasswordRequest: reset,
// userId: jfUser.id
// }
// logger.info(JSON.stringify(jfUser.policy, null, 2))
// logger.info("Resetting password", {requestId})
// await this.userApi.updateUserPassword(shit);
const password = this.generatePasswordForUser()
const passwordRequest: UpdateUserPasswordRequest = {
// resetPassword: true,
currentPw: "",
newPw: password
const r: UpdateUserPasswordRequest = {
newPw: this.generatePasswordForUser()
}
const passwordOperationRequest: UpdateUserPasswordOperationRequest = {
updateUserPasswordRequest: passwordRequest,
const shit: UpdateUserPasswordOperationRequest = {
updateUserPasswordRequest: r,
userId: jfUser.id
}
logger.info("Setting new password", {requestId})
await this.userApi.updateUserPassword(passwordOperationRequest);
this.userApi.updateUserPassword(shit)
(await member.createDM()).send(`Hier ist dein neues Passwort: ${password}`)
} else {
(await member.createDM()).send("Ich konnte leider keinen User von dir auf Jellyfin finden. Bitte melde dich bei Markus oder Samantha!")
}