mirror of
https://github.com/BluemediaDev/muse.git
synced 2025-06-28 01:32:42 +02:00
[RFC] Auto-announce when new song comes on (#914)
Co-authored-by: Andrew Mike <andrew@7thmagic.net> Co-authored-by: Andrew Mike <logomancer@gmail.com>
This commit is contained in:
parent
1d5729fd6c
commit
ccd8793cc1
4 changed files with 55 additions and 1 deletions
|
@ -19,6 +19,7 @@ import {
|
|||
import FileCacheProvider from './file-cache.js';
|
||||
import debug from '../utils/debug.js';
|
||||
import {getGuildSettings} from '../utils/get-guild-settings.js';
|
||||
import {buildPlayingMessageEmbed} from '../utils/build-embed.js';
|
||||
|
||||
export enum MediaSource {
|
||||
Youtube,
|
||||
|
@ -64,7 +65,7 @@ export default class {
|
|||
public guildId: string;
|
||||
public loopCurrentSong = false;
|
||||
public loopCurrentQueue = false;
|
||||
|
||||
private currentChannel: VoiceChannel | undefined;
|
||||
private queue: QueuedSong[] = [];
|
||||
private queuePosition = 0;
|
||||
private audioPlayer: AudioPlayer | null = null;
|
||||
|
@ -102,6 +103,8 @@ export default class {
|
|||
oldNetworking?.off('stateChange', networkStateChangeHandler);
|
||||
newNetworking?.on('stateChange', networkStateChangeHandler);
|
||||
/* eslint-enable @typescript-eslint/no-unsafe-assignment, @typescript-eslint/no-unsafe-assignment, @typescript-eslint/no-unsafe-member-access, @typescript-eslint/no-unsafe-call */
|
||||
|
||||
this.currentChannel = channel;
|
||||
});
|
||||
}
|
||||
|
||||
|
@ -559,6 +562,14 @@ export default class {
|
|||
|
||||
if (newState.status === AudioPlayerStatus.Idle && this.status === STATUS.PLAYING) {
|
||||
await this.forward(1);
|
||||
// Auto announce the next song if configured to
|
||||
const settings = await getGuildSettings(this.guildId);
|
||||
const {autoAnnounceNextSong} = settings;
|
||||
if (autoAnnounceNextSong && this.currentChannel) {
|
||||
await this.currentChannel.send({
|
||||
embeds: this.getCurrent() ? [buildPlayingMessageEmbed(this)] : [],
|
||||
});
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue