lavalink-client 2.3.4 → 2.3.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +225 -2
- package/dist/cjs/index.d.ts +16 -16
- package/dist/cjs/index.js +16 -16
- package/dist/cjs/structures/Constants.d.ts +2 -1
- package/dist/cjs/structures/Constants.js +1 -0
- package/dist/cjs/structures/CustomSearches/BandCampSearch.d.ts +2 -2
- package/dist/cjs/structures/Filters.d.ts +2 -2
- package/dist/cjs/structures/Filters.js +1 -1
- package/dist/cjs/structures/LavalinkManager.d.ts +6 -6
- package/dist/cjs/structures/LavalinkManager.js +5 -5
- package/dist/cjs/structures/LavalinkManagerStatics.d.ts +3 -1
- package/dist/cjs/structures/LavalinkManagerStatics.js +11 -2
- package/dist/cjs/structures/Node.d.ts +86 -6
- package/dist/cjs/structures/Node.js +147 -3
- package/dist/cjs/structures/NodeManager.d.ts +4 -4
- package/dist/cjs/structures/NodeManager.js +3 -3
- package/dist/cjs/structures/Player.d.ts +53 -10
- package/dist/cjs/structures/Player.js +55 -5
- package/dist/cjs/structures/Queue.d.ts +3 -3
- package/dist/cjs/structures/Queue.js +1 -1
- package/dist/cjs/structures/Types/Filters.d.ts +1 -1
- package/dist/cjs/structures/Types/Manager.d.ts +25 -7
- package/dist/cjs/structures/Types/Node.d.ts +26 -3
- package/dist/cjs/structures/Types/Player.d.ts +5 -5
- package/dist/cjs/structures/Types/Queue.d.ts +1 -1
- package/dist/cjs/structures/Types/Track.d.ts +3 -3
- package/dist/cjs/structures/Types/Utils.d.ts +68 -10
- package/dist/cjs/structures/Utils.d.ts +6 -6
- package/dist/cjs/structures/Utils.js +11 -2
- package/dist/esm/index.d.ts +16 -16
- package/dist/esm/index.js +16 -16
- package/dist/esm/structures/Constants.d.ts +2 -1
- package/dist/esm/structures/Constants.js +1 -0
- package/dist/esm/structures/CustomSearches/BandCampSearch.d.ts +2 -2
- package/dist/esm/structures/Filters.d.ts +2 -2
- package/dist/esm/structures/Filters.js +1 -1
- package/dist/esm/structures/LavalinkManager.d.ts +6 -6
- package/dist/esm/structures/LavalinkManager.js +5 -5
- package/dist/esm/structures/LavalinkManagerStatics.d.ts +3 -1
- package/dist/esm/structures/LavalinkManagerStatics.js +11 -2
- package/dist/esm/structures/Node.d.ts +86 -6
- package/dist/esm/structures/Node.js +147 -3
- package/dist/esm/structures/NodeManager.d.ts +4 -4
- package/dist/esm/structures/NodeManager.js +3 -3
- package/dist/esm/structures/Player.d.ts +53 -10
- package/dist/esm/structures/Player.js +55 -5
- package/dist/esm/structures/Queue.d.ts +3 -3
- package/dist/esm/structures/Queue.js +1 -1
- package/dist/esm/structures/Types/Filters.d.ts +1 -1
- package/dist/esm/structures/Types/Manager.d.ts +25 -7
- package/dist/esm/structures/Types/Node.d.ts +26 -3
- package/dist/esm/structures/Types/Player.d.ts +5 -5
- package/dist/esm/structures/Types/Queue.d.ts +1 -1
- package/dist/esm/structures/Types/Track.d.ts +3 -3
- package/dist/esm/structures/Types/Utils.d.ts +68 -10
- package/dist/esm/structures/Utils.d.ts +6 -6
- package/dist/esm/structures/Utils.js +11 -2
- package/dist/types/structures/Constants.d.ts +1 -0
- package/dist/types/structures/LavalinkManagerStatics.d.ts +2 -0
- package/dist/types/structures/Node.d.ts +81 -1
- package/dist/types/structures/Player.d.ts +43 -0
- package/dist/types/structures/Types/Manager.d.ts +19 -1
- package/dist/types/structures/Types/Node.d.ts +23 -0
- package/dist/types/structures/Types/Utils.d.ts +64 -6
- package/package.json +1 -1
|
@@ -4,8 +4,8 @@ exports.LavalinkNode = void 0;
|
|
|
4
4
|
const tslib_1 = require("tslib");
|
|
5
5
|
const path_1 = require("path");
|
|
6
6
|
const ws_1 = tslib_1.__importDefault(require("ws"));
|
|
7
|
-
const Constants_1 = require("./Constants");
|
|
8
|
-
const Utils_1 = require("./Utils");
|
|
7
|
+
const Constants_1 = require("./Constants.js");
|
|
8
|
+
const Utils_1 = require("./Utils.js");
|
|
9
9
|
/**
|
|
10
10
|
* Lavalink Node creator class
|
|
11
11
|
*/
|
|
@@ -590,6 +590,104 @@ class LavalinkNode {
|
|
|
590
590
|
}).then((r) => r.map(track => this.NodeManager.LavalinkManager.utils.buildTrack(track, requester)));
|
|
591
591
|
}
|
|
592
592
|
};
|
|
593
|
+
lyrics = {
|
|
594
|
+
/**
|
|
595
|
+
* Get the lyrics of a track
|
|
596
|
+
* @param track the track to get the lyrics for
|
|
597
|
+
* @param skipTrackSource wether to skip the track source or not
|
|
598
|
+
* @returns the lyrics of the track
|
|
599
|
+
* @example
|
|
600
|
+
*
|
|
601
|
+
* ```ts
|
|
602
|
+
* const lyrics = await player.node.lyrics.get(track, true);
|
|
603
|
+
* // use it of player instead:
|
|
604
|
+
* // const lyrics = await player.getLyrics(track, true);
|
|
605
|
+
* ```
|
|
606
|
+
*/
|
|
607
|
+
get: async (track, skipTrackSource = false) => {
|
|
608
|
+
if (!this.sessionId)
|
|
609
|
+
throw new Error("the Lavalink-Node is either not ready, or not up to date!");
|
|
610
|
+
if (!this.info.plugins.find(v => v.name === "lavalyrics-plugin"))
|
|
611
|
+
throw new RangeError(`there is no lavalyrics-plugin available in the lavalink node (required for lyrics): ${this.id}`);
|
|
612
|
+
if (!this.info.plugins.find(v => v.name === "lavasrc-plugin") &&
|
|
613
|
+
!this.info.plugins.find(v => v.name === "java-lyrics-plugin"))
|
|
614
|
+
throw new RangeError(`there is no lyrics source (via lavasrc-plugin / java-lyrics-plugin) available in the lavalink node (required for lyrics): ${this.id}`);
|
|
615
|
+
const url = `/lyrics?track=${track.encoded}&skipTrackSource=${skipTrackSource}`;
|
|
616
|
+
return (await this.request(url));
|
|
617
|
+
},
|
|
618
|
+
/**
|
|
619
|
+
* Get the lyrics of the current playing track
|
|
620
|
+
*
|
|
621
|
+
* @param guildId the guild id of the player
|
|
622
|
+
* @param skipTrackSource wether to skip the track source or not
|
|
623
|
+
* @returns the lyrics of the current playing track
|
|
624
|
+
* @example
|
|
625
|
+
* ```ts
|
|
626
|
+
* const lyrics = await player.node.lyrics.getCurrent(guildId);
|
|
627
|
+
* // use it of player instead:
|
|
628
|
+
* // const lyrics = await player.getCurrentLyrics();
|
|
629
|
+
* ```
|
|
630
|
+
*/
|
|
631
|
+
getCurrent: async (guildId, skipTrackSource = false) => {
|
|
632
|
+
if (!this.sessionId)
|
|
633
|
+
throw new Error("the Lavalink-Node is either not ready, or not up to date!");
|
|
634
|
+
if (!this.info.plugins.find(v => v.name === "lavalyrics-plugin"))
|
|
635
|
+
throw new RangeError(`there is no lavalyrics-plugin available in the lavalink node (required for lyrics): ${this.id}`);
|
|
636
|
+
if (!this.info.plugins.find(v => v.name === "lavasrc-plugin") &&
|
|
637
|
+
!this.info.plugins.find(v => v.name === "java-lyrics-plugin"))
|
|
638
|
+
throw new RangeError(`there is no lyrics source (via lavasrc-plugin / java-lyrics-plugin) available in the lavalink node (required for lyrics): ${this.id}`);
|
|
639
|
+
const url = `/sessions/${this.sessionId}/players/${guildId}/track/lyrics?skipTrackSource=${skipTrackSource}`;
|
|
640
|
+
return (await this.request(url));
|
|
641
|
+
},
|
|
642
|
+
/**
|
|
643
|
+
* subscribe to lyrics updates for a guild
|
|
644
|
+
* @param guildId the guild id of the player
|
|
645
|
+
* @returns request data of the request
|
|
646
|
+
*
|
|
647
|
+
* @example
|
|
648
|
+
* ```ts
|
|
649
|
+
* await player.node.lyrics.subscribe(guildId);
|
|
650
|
+
* // use it of player instead:
|
|
651
|
+
* // const lyrics = await player.subscribeLyrics();
|
|
652
|
+
* ```
|
|
653
|
+
*/
|
|
654
|
+
subscribe: async (guildId) => {
|
|
655
|
+
if (!this.sessionId)
|
|
656
|
+
throw new Error("the Lavalink-Node is either not ready, or not up to date!");
|
|
657
|
+
if (!this.info.plugins.find(v => v.name === "lavalyrics-plugin"))
|
|
658
|
+
throw new RangeError(`there is no lavalyrics-plugin available in the lavalink node (required for lyrics): ${this.id}`);
|
|
659
|
+
if (!this.info.plugins.find(v => v.name === "lavasrc-plugin") &&
|
|
660
|
+
!this.info.plugins.find(v => v.name === "java-lyrics-plugin"))
|
|
661
|
+
throw new RangeError(`there is no lyrics source (via lavasrc-plugin / java-lyrics-plugin) available in the lavalink node (required for lyrics): ${this.id}`);
|
|
662
|
+
return await this.request(`/sessions/${this.sessionId}/players/${guildId}/lyrics/subscribe`, (options) => {
|
|
663
|
+
options.method = "POST";
|
|
664
|
+
}).catch(() => { });
|
|
665
|
+
},
|
|
666
|
+
/**
|
|
667
|
+
* unsubscribe from lyrics updates for a guild
|
|
668
|
+
* @param guildId the guild id of the player
|
|
669
|
+
* @returns request data of the request
|
|
670
|
+
*
|
|
671
|
+
* @example
|
|
672
|
+
* ```ts
|
|
673
|
+
* await player.node.lyrics.unsubscribe(guildId);
|
|
674
|
+
* // use it of player instead:
|
|
675
|
+
* // const lyrics = await player.unsubscribeLyrics();
|
|
676
|
+
* ```
|
|
677
|
+
*/
|
|
678
|
+
unsubscribe: async (guildId) => {
|
|
679
|
+
if (!this.sessionId)
|
|
680
|
+
throw new Error("the Lavalink-Node is either not ready, or not up to date!");
|
|
681
|
+
if (!this.info.plugins.find(v => v.name === "lavalyrics-plugin"))
|
|
682
|
+
throw new RangeError(`there is no lavalyrics-plugin available in the lavalink node (required for lyrics): ${this.id}`);
|
|
683
|
+
if (!this.info.plugins.find(v => v.name === "lavasrc-plugin") &&
|
|
684
|
+
!this.info.plugins.find(v => v.name === "java-lyrics-plugin"))
|
|
685
|
+
throw new RangeError(`there is no lyrics source (via lavasrc-plugin / java-lyrics-plugin) available in the lavalink node (required for lyrics): ${this.id}`);
|
|
686
|
+
return await this.request(`/sessions/${this.sessionId}/players/${guildId}/lyrics/unsubscribe`, (options) => {
|
|
687
|
+
options.method = "DELETE";
|
|
688
|
+
}).catch(() => { });
|
|
689
|
+
},
|
|
690
|
+
};
|
|
593
691
|
/**
|
|
594
692
|
* Request Lavalink statistics.
|
|
595
693
|
* @returns the lavalink node stats
|
|
@@ -986,6 +1084,15 @@ class LavalinkNode {
|
|
|
986
1084
|
case "ChapterStarted":
|
|
987
1085
|
this.SponsorBlockChapterStarted(player, player.queue.current, payload);
|
|
988
1086
|
break;
|
|
1087
|
+
case "LyricsLineEvent":
|
|
1088
|
+
this.LyricsLine(player, player.queue.current, payload);
|
|
1089
|
+
break;
|
|
1090
|
+
case "LyricsFoundEvent":
|
|
1091
|
+
this.LyricsFound(player, player.queue.current, payload);
|
|
1092
|
+
break;
|
|
1093
|
+
case "LyricsNotFoundEvent":
|
|
1094
|
+
this.LyricsNotFound(player, player.queue.current, payload);
|
|
1095
|
+
break;
|
|
989
1096
|
default:
|
|
990
1097
|
this.NodeManager.emit("error", this, new Error(`Node#event unknown event '${payload.type}'.`), payload);
|
|
991
1098
|
break;
|
|
@@ -1256,9 +1363,16 @@ class LavalinkNode {
|
|
|
1256
1363
|
});
|
|
1257
1364
|
}
|
|
1258
1365
|
if (typeof this.NodeManager.LavalinkManager.options?.playerOptions?.onEmptyQueue?.autoPlayFunction === "function" && typeof player.get("internal_autoplayStopPlaying") === "undefined") {
|
|
1366
|
+
if (this.NodeManager.LavalinkManager.options?.advancedOptions?.enableDebugEvents) {
|
|
1367
|
+
this.NodeManager.LavalinkManager.emit("debug", Constants_1.DebugEvents.AutoplayExecution, {
|
|
1368
|
+
state: "log",
|
|
1369
|
+
message: `Now Triggering Autoplay.`,
|
|
1370
|
+
functionLayer: "LavalinkNode > queueEnd() > autoplayFunction",
|
|
1371
|
+
});
|
|
1372
|
+
}
|
|
1259
1373
|
const previousAutoplayTime = player.get("internal_previousautoplay");
|
|
1260
1374
|
const duration = previousAutoplayTime ? Date.now() - previousAutoplayTime : 0;
|
|
1261
|
-
if (
|
|
1375
|
+
if (!duration || duration > this.NodeManager.LavalinkManager.options.playerOptions.minAutoPlayMs || !!player.get("internal_skipped")) {
|
|
1262
1376
|
await this.NodeManager.LavalinkManager.options?.playerOptions?.onEmptyQueue?.autoPlayFunction(player, track);
|
|
1263
1377
|
player.set("internal_previousautoplay", Date.now());
|
|
1264
1378
|
if (player.queue.tracks.length > 0)
|
|
@@ -1319,5 +1433,35 @@ class LavalinkNode {
|
|
|
1319
1433
|
}
|
|
1320
1434
|
return this.NodeManager.LavalinkManager.emit("queueEnd", player, track, payload);
|
|
1321
1435
|
}
|
|
1436
|
+
/**
|
|
1437
|
+
* Emitted whenever a line of lyrics gets emitted
|
|
1438
|
+
* @event
|
|
1439
|
+
* @param {Player} player The player that emitted the event
|
|
1440
|
+
* @param {Track} track The track that emitted the event
|
|
1441
|
+
* @param {LyricsLineEvent} payload The payload of the event
|
|
1442
|
+
*/
|
|
1443
|
+
LyricsLine(player, track, payload) {
|
|
1444
|
+
return this.NodeManager.LavalinkManager.emit("LyricsLine", player, track, payload);
|
|
1445
|
+
}
|
|
1446
|
+
/**
|
|
1447
|
+
* Emitted whenever the lyrics for a track got found
|
|
1448
|
+
* @event
|
|
1449
|
+
* @param {Player} player The player that emitted the event
|
|
1450
|
+
* @param {Track} track The track that emitted the event
|
|
1451
|
+
* @param {LyricsFoundEvent} payload The payload of the event
|
|
1452
|
+
*/
|
|
1453
|
+
LyricsFound(player, track, payload) {
|
|
1454
|
+
return this.NodeManager.LavalinkManager.emit("LyricsFound", player, track, payload);
|
|
1455
|
+
}
|
|
1456
|
+
/**
|
|
1457
|
+
* Emitted whenever the lyrics for a track got not found
|
|
1458
|
+
* @event
|
|
1459
|
+
* @param {Player} player The player that emitted the event
|
|
1460
|
+
* @param {Track} track The track that emitted the event
|
|
1461
|
+
* @param {LyricsNotFoundEvent} payload The payload of the event
|
|
1462
|
+
*/
|
|
1463
|
+
LyricsNotFound(player, track, payload) {
|
|
1464
|
+
return this.NodeManager.LavalinkManager.emit("LyricsNotFound", player, track, payload);
|
|
1465
|
+
}
|
|
1322
1466
|
}
|
|
1323
1467
|
exports.LavalinkNode = LavalinkNode;
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
/// <reference types="node" />
|
|
2
2
|
import { EventEmitter } from "events";
|
|
3
|
-
import { LavalinkNode } from "./Node";
|
|
4
|
-
import { MiniMap } from "./Utils";
|
|
5
|
-
import type { LavalinkNodeIdentifier, LavalinkNodeOptions, NodeManagerEvents } from "./Types/Node";
|
|
6
|
-
import type { LavalinkManager } from "./LavalinkManager";
|
|
3
|
+
import { LavalinkNode } from "./Node.js";
|
|
4
|
+
import { MiniMap } from "./Utils.js";
|
|
5
|
+
import type { LavalinkNodeIdentifier, LavalinkNodeOptions, NodeManagerEvents } from "./Types/Node.js";
|
|
6
|
+
import type { LavalinkManager } from "./LavalinkManager.js";
|
|
7
7
|
export declare class NodeManager extends EventEmitter {
|
|
8
8
|
/**
|
|
9
9
|
* Emit an event
|
|
@@ -2,9 +2,9 @@
|
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.NodeManager = void 0;
|
|
4
4
|
const events_1 = require("events");
|
|
5
|
-
const Constants_1 = require("./Constants");
|
|
6
|
-
const Node_1 = require("./Node");
|
|
7
|
-
const Utils_1 = require("./Utils");
|
|
5
|
+
const Constants_1 = require("./Constants.js");
|
|
6
|
+
const Node_1 = require("./Node.js");
|
|
7
|
+
const Utils_1 = require("./Utils.js");
|
|
8
8
|
class NodeManager extends events_1.EventEmitter {
|
|
9
9
|
/**
|
|
10
10
|
* Emit an event
|
|
@@ -1,11 +1,12 @@
|
|
|
1
|
-
import { FilterManager } from "./Filters";
|
|
2
|
-
import { Queue } from "./Queue";
|
|
3
|
-
import type { DestroyReasons } from "./Constants";
|
|
4
|
-
import type {
|
|
5
|
-
import type {
|
|
6
|
-
import type {
|
|
7
|
-
import type {
|
|
8
|
-
import type {
|
|
1
|
+
import { FilterManager } from "./Filters.js";
|
|
2
|
+
import { Queue } from "./Queue.js";
|
|
3
|
+
import type { DestroyReasons } from "./Constants.js";
|
|
4
|
+
import type { Track } from "./Types/Track.js";
|
|
5
|
+
import type { LavalinkNode } from "./Node.js";
|
|
6
|
+
import type { SponsorBlockSegment } from "./Types/Node.js";
|
|
7
|
+
import type { PlayerJson, PlayerOptions, PlayOptions, RepeatMode } from "./Types/Player.js";
|
|
8
|
+
import type { LavalinkManager } from "./LavalinkManager.js";
|
|
9
|
+
import type { LavalinkPlayerVoiceOptions, LavaSearchQuery, SearchQuery } from "./Types/Utils.js";
|
|
9
10
|
export declare class Player {
|
|
10
11
|
/** Filter Manager per player */
|
|
11
12
|
filterManager: FilterManager;
|
|
@@ -96,7 +97,7 @@ export declare class Player {
|
|
|
96
97
|
* @param throwOnEmpty If an error should be thrown if no track is found
|
|
97
98
|
* @returns The search result
|
|
98
99
|
*/
|
|
99
|
-
lavaSearch(query: LavaSearchQuery, requestUser: unknown, throwOnEmpty?: boolean): Promise<import("./Types/Utils").SearchResult | import("./Types/Utils").LavaSearchResponse>;
|
|
100
|
+
lavaSearch(query: LavaSearchQuery, requestUser: unknown, throwOnEmpty?: boolean): Promise<import("./Types/Utils.js").SearchResult | import("./Types/Utils.js").LavaSearchResponse>;
|
|
100
101
|
/**
|
|
101
102
|
* Set the SponsorBlock
|
|
102
103
|
* @param segments The segments to set
|
|
@@ -115,7 +116,7 @@ export declare class Player {
|
|
|
115
116
|
* @param query Query for your data
|
|
116
117
|
* @param requestUser
|
|
117
118
|
*/
|
|
118
|
-
search(query: SearchQuery, requestUser: unknown, throwOnEmpty?: boolean): Promise<import("./Types/Utils").UnresolvedSearchResult | import("./Types/Utils").SearchResult>;
|
|
119
|
+
search(query: SearchQuery, requestUser: unknown, throwOnEmpty?: boolean): Promise<import("./Types/Utils.js").UnresolvedSearchResult | import("./Types/Utils.js").SearchResult>;
|
|
119
120
|
/**
|
|
120
121
|
* Pause the player
|
|
121
122
|
*/
|
|
@@ -164,6 +165,48 @@ export declare class Player {
|
|
|
164
165
|
* Destroy the player and disconnect from the voice channel
|
|
165
166
|
*/
|
|
166
167
|
destroy(reason?: DestroyReasons | string, disconnect?: boolean): Promise<this>;
|
|
168
|
+
/**
|
|
169
|
+
* Get the current lyrics of the track currently playing on the guild
|
|
170
|
+
* @param guildId The guild id to get the current lyrics for
|
|
171
|
+
* @param skipTrackSource If true, it will not try to get the lyrics from the track source
|
|
172
|
+
* @returns The current lyrics
|
|
173
|
+
* @example
|
|
174
|
+
* ```ts
|
|
175
|
+
* const lyrics = await player.getCurrentLyrics();
|
|
176
|
+
* ```
|
|
177
|
+
*/
|
|
178
|
+
getCurrentLyrics(skipTrackSource?: boolean): Promise<import("./Types/Node.js").LyricsResult>;
|
|
179
|
+
/**
|
|
180
|
+
* Get the lyrics of a specific track
|
|
181
|
+
* @param track The track to get the lyrics for
|
|
182
|
+
* @param skipTrackSource If true, it will not try to get the lyrics from the track source
|
|
183
|
+
* @returns The lyrics of the track
|
|
184
|
+
* @example
|
|
185
|
+
* ```ts
|
|
186
|
+
* const lyrics = await player.getLyrics(player.queue.tracks[0], true);
|
|
187
|
+
* ```
|
|
188
|
+
*/
|
|
189
|
+
getLyrics(track: Track, skipTrackSource?: boolean): Promise<import("./Types/Node.js").LyricsResult>;
|
|
190
|
+
/**
|
|
191
|
+
* Subscribe to the lyrics event on a specific guild to active live lyrics events
|
|
192
|
+
* @param guildId The guild id to subscribe to
|
|
193
|
+
* @returns The unsubscribe function
|
|
194
|
+
* @example
|
|
195
|
+
* ```ts
|
|
196
|
+
* const lyrics = await player.subscribeLyrics();
|
|
197
|
+
* ```
|
|
198
|
+
*/
|
|
199
|
+
subscribeLyrics(): Promise<any>;
|
|
200
|
+
/**
|
|
201
|
+
* Unsubscribe from the lyrics event on a specific guild to disable live lyrics events
|
|
202
|
+
* @param guildId The guild id to unsubscribe from
|
|
203
|
+
* @returns The unsubscribe function
|
|
204
|
+
* @example
|
|
205
|
+
* ```ts
|
|
206
|
+
* const lyrics = await player.unsubscribeLyrics();
|
|
207
|
+
* ```
|
|
208
|
+
*/
|
|
209
|
+
unsubscribeLyrics(guildId: string): Promise<any>;
|
|
167
210
|
/**
|
|
168
211
|
* Move the player on a different Audio-Node
|
|
169
212
|
* @param newNode New Node / New Node Id
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.Player = void 0;
|
|
4
|
-
const Constants_1 = require("./Constants");
|
|
5
|
-
const BandCampSearch_1 = require("./CustomSearches/BandCampSearch");
|
|
6
|
-
const Filters_1 = require("./Filters");
|
|
7
|
-
const Queue_1 = require("./Queue");
|
|
8
|
-
const Utils_1 = require("./Utils");
|
|
4
|
+
const Constants_1 = require("./Constants.js");
|
|
5
|
+
const BandCampSearch_1 = require("./CustomSearches/BandCampSearch.js");
|
|
6
|
+
const Filters_1 = require("./Filters.js");
|
|
7
|
+
const Queue_1 = require("./Queue.js");
|
|
8
|
+
const Utils_1 = require("./Utils.js");
|
|
9
9
|
class Player {
|
|
10
10
|
/** Filter Manager per player */
|
|
11
11
|
filterManager;
|
|
@@ -574,6 +574,56 @@ class Player {
|
|
|
574
574
|
// return smt
|
|
575
575
|
return this;
|
|
576
576
|
}
|
|
577
|
+
/**
|
|
578
|
+
* Get the current lyrics of the track currently playing on the guild
|
|
579
|
+
* @param guildId The guild id to get the current lyrics for
|
|
580
|
+
* @param skipTrackSource If true, it will not try to get the lyrics from the track source
|
|
581
|
+
* @returns The current lyrics
|
|
582
|
+
* @example
|
|
583
|
+
* ```ts
|
|
584
|
+
* const lyrics = await player.getCurrentLyrics();
|
|
585
|
+
* ```
|
|
586
|
+
*/
|
|
587
|
+
async getCurrentLyrics(skipTrackSource) {
|
|
588
|
+
return await this.node.lyrics.getCurrent(this.guildId, skipTrackSource);
|
|
589
|
+
}
|
|
590
|
+
/**
|
|
591
|
+
* Get the lyrics of a specific track
|
|
592
|
+
* @param track The track to get the lyrics for
|
|
593
|
+
* @param skipTrackSource If true, it will not try to get the lyrics from the track source
|
|
594
|
+
* @returns The lyrics of the track
|
|
595
|
+
* @example
|
|
596
|
+
* ```ts
|
|
597
|
+
* const lyrics = await player.getLyrics(player.queue.tracks[0], true);
|
|
598
|
+
* ```
|
|
599
|
+
*/
|
|
600
|
+
async getLyrics(track, skipTrackSource) {
|
|
601
|
+
return await this.node.lyrics.get(track, skipTrackSource);
|
|
602
|
+
}
|
|
603
|
+
/**
|
|
604
|
+
* Subscribe to the lyrics event on a specific guild to active live lyrics events
|
|
605
|
+
* @param guildId The guild id to subscribe to
|
|
606
|
+
* @returns The unsubscribe function
|
|
607
|
+
* @example
|
|
608
|
+
* ```ts
|
|
609
|
+
* const lyrics = await player.subscribeLyrics();
|
|
610
|
+
* ```
|
|
611
|
+
*/
|
|
612
|
+
subscribeLyrics() {
|
|
613
|
+
return this.node.lyrics.subscribe(this.guildId);
|
|
614
|
+
}
|
|
615
|
+
/**
|
|
616
|
+
* Unsubscribe from the lyrics event on a specific guild to disable live lyrics events
|
|
617
|
+
* @param guildId The guild id to unsubscribe from
|
|
618
|
+
* @returns The unsubscribe function
|
|
619
|
+
* @example
|
|
620
|
+
* ```ts
|
|
621
|
+
* const lyrics = await player.unsubscribeLyrics();
|
|
622
|
+
* ```
|
|
623
|
+
*/
|
|
624
|
+
unsubscribeLyrics(guildId) {
|
|
625
|
+
return this.node.lyrics.unsubscribe(guildId);
|
|
626
|
+
}
|
|
577
627
|
/**
|
|
578
628
|
* Move the player on a different Audio-Node
|
|
579
629
|
* @param newNode New Node / New Node Id
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { MiniMap } from "./Utils";
|
|
2
|
-
import type { Track, UnresolvedTrack } from "./Types/Track";
|
|
3
|
-
import type { ManagerQueueOptions, QueueStoreManager, StoredQueue } from "./Types/Queue";
|
|
1
|
+
import { MiniMap } from "./Utils.js";
|
|
2
|
+
import type { Track, UnresolvedTrack } from "./Types/Track.js";
|
|
3
|
+
import type { ManagerQueueOptions, QueueStoreManager, StoredQueue } from "./Types/Queue.js";
|
|
4
4
|
export declare class QueueSaver {
|
|
5
5
|
/**
|
|
6
6
|
* The queue store manager
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.Queue = exports.DefaultQueueStore = exports.QueueSaver = void 0;
|
|
4
|
-
const Utils_1 = require("./Utils");
|
|
4
|
+
const Utils_1 = require("./Utils.js");
|
|
5
5
|
class QueueSaver {
|
|
6
6
|
/**
|
|
7
7
|
* The queue store manager
|
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
import type { DebugEvents } from "../Constants";
|
|
2
|
-
import type { Player } from "../Player";
|
|
3
|
-
import type { LavalinkNodeOptions } from "./Node";
|
|
4
|
-
import type { DestroyReasonsType, PlayerJson } from "./Player";
|
|
5
|
-
import type { ManagerQueueOptions } from "./Queue";
|
|
6
|
-
import type { Track, UnresolvedTrack } from "./Track";
|
|
7
|
-
import type { GuildShardPayload, SearchPlatform, SponsorBlockChaptersLoaded, SponsorBlockChapterStarted, SponsorBlockSegmentSkipped, SponsorBlockSegmentsLoaded, TrackExceptionEvent, TrackEndEvent, TrackStuckEvent, WebSocketClosedEvent, TrackStartEvent } from "./Utils";
|
|
1
|
+
import type { DebugEvents } from "../Constants.js";
|
|
2
|
+
import type { Player } from "../Player.js";
|
|
3
|
+
import type { LavalinkNodeOptions } from "./Node.js";
|
|
4
|
+
import type { DestroyReasonsType, PlayerJson } from "./Player.js";
|
|
5
|
+
import type { ManagerQueueOptions } from "./Queue.js";
|
|
6
|
+
import type { Track, UnresolvedTrack } from "./Track.js";
|
|
7
|
+
import type { GuildShardPayload, SearchPlatform, SponsorBlockChaptersLoaded, SponsorBlockChapterStarted, SponsorBlockSegmentSkipped, SponsorBlockSegmentsLoaded, TrackExceptionEvent, TrackEndEvent, TrackStuckEvent, WebSocketClosedEvent, TrackStartEvent, LyricsFoundEvent, LyricsNotFoundEvent, LyricsLineEvent } from "./Utils.js";
|
|
8
8
|
/**
|
|
9
9
|
* The events from the lavalink Manager
|
|
10
10
|
*/
|
|
@@ -114,6 +114,24 @@ export interface LavalinkManagerEvents {
|
|
|
114
114
|
error?: Error | string;
|
|
115
115
|
functionLayer: string;
|
|
116
116
|
}) => void;
|
|
117
|
+
/**
|
|
118
|
+
* Emitted when a Lyrics line is received
|
|
119
|
+
* @link https://github.com/topi314/LavaLyrics
|
|
120
|
+
* @event Manager#LyricsLine
|
|
121
|
+
*/
|
|
122
|
+
"LyricsLine": (player: Player, track: Track | UnresolvedTrack | null, payload: LyricsLineEvent) => void;
|
|
123
|
+
/**
|
|
124
|
+
* Emitted when a Lyrics is found
|
|
125
|
+
* @link https://github.com/topi314/LavaLyrics
|
|
126
|
+
* @event Manager#LyricsFound
|
|
127
|
+
*/
|
|
128
|
+
"LyricsFound": (player: Player, track: Track | UnresolvedTrack | null, payload: LyricsFoundEvent) => void;
|
|
129
|
+
/**
|
|
130
|
+
* Emitted when a Lyrics is not found
|
|
131
|
+
* @link https://github.com/topi314/LavaLyrics
|
|
132
|
+
* @event Manager#LyricsNotFound
|
|
133
|
+
*/
|
|
134
|
+
"LyricsNotFound": (player: Player, track: Track | UnresolvedTrack | null, payload: LyricsNotFoundEvent) => void;
|
|
117
135
|
}
|
|
118
136
|
/**
|
|
119
137
|
* The Bot client Options needed for the manager
|
|
@@ -1,8 +1,9 @@
|
|
|
1
1
|
/// <reference types="node" />
|
|
2
2
|
import type internal from "stream";
|
|
3
|
-
import type { LavalinkNode } from "../Node";
|
|
4
|
-
import type { DestroyReasonsType } from "./Player";
|
|
5
|
-
import type { InvalidLavalinkRestRequest, LavalinkPlayer } from "./Utils";
|
|
3
|
+
import type { LavalinkNode } from "../Node.js";
|
|
4
|
+
import type { DestroyReasonsType } from "./Player.js";
|
|
5
|
+
import type { InvalidLavalinkRestRequest, LavalinkPlayer } from "./Utils.js";
|
|
6
|
+
import type { PluginInfo } from "./Track.js";
|
|
6
7
|
/** Ability to manipulate fetch requests */
|
|
7
8
|
export type ModifyRequest = (options: RequestInit & {
|
|
8
9
|
path: string;
|
|
@@ -157,6 +158,28 @@ export interface PluginObject {
|
|
|
157
158
|
/** The version of the plugin */
|
|
158
159
|
version: string;
|
|
159
160
|
}
|
|
161
|
+
export interface LyricsResult {
|
|
162
|
+
/**The name of the source */
|
|
163
|
+
sourceName: string;
|
|
164
|
+
/**The name of the provider */
|
|
165
|
+
provider: string;
|
|
166
|
+
/**The result text */
|
|
167
|
+
text: string | null;
|
|
168
|
+
/**The lyrics lines */
|
|
169
|
+
lines: LyricsLine[];
|
|
170
|
+
/**Information about the plugin */
|
|
171
|
+
plugin: PluginInfo;
|
|
172
|
+
}
|
|
173
|
+
export interface LyricsLine {
|
|
174
|
+
/**The millisecond timestamp */
|
|
175
|
+
timestamp: number;
|
|
176
|
+
/**The line duration in milliseconds */
|
|
177
|
+
duration: number | null;
|
|
178
|
+
/**The line text */
|
|
179
|
+
line: string;
|
|
180
|
+
/**Information about the plugin */
|
|
181
|
+
plugin: PluginInfo;
|
|
182
|
+
}
|
|
160
183
|
export type LavalinkNodeIdentifier = string;
|
|
161
184
|
export interface NodeManagerEvents {
|
|
162
185
|
/**
|
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import type { DestroyReasons } from "../Constants";
|
|
2
|
-
import type { LavalinkNode } from "../Node";
|
|
3
|
-
import type { EQBand, FilterData, LavalinkFilterData } from "./Filters";
|
|
4
|
-
import type { Track, UnresolvedTrack } from "./Track";
|
|
5
|
-
import type { Base64, LavalinkPlayerVoiceOptions } from "./Utils";
|
|
1
|
+
import type { DestroyReasons } from "../Constants.js";
|
|
2
|
+
import type { LavalinkNode } from "../Node.js";
|
|
3
|
+
import type { EQBand, FilterData, LavalinkFilterData } from "./Filters.js";
|
|
4
|
+
import type { Track, UnresolvedTrack } from "./Track.js";
|
|
5
|
+
import type { Base64, LavalinkPlayerVoiceOptions } from "./Utils.js";
|
|
6
6
|
export type DestroyReasonsType = keyof typeof DestroyReasons | string;
|
|
7
7
|
export interface PlayerJson {
|
|
8
8
|
/** Guild Id where the player was playing in */
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import type { Player } from "../Player";
|
|
2
|
-
import type { anyObject } from "./Player";
|
|
3
|
-
import type { Base64 } from "./Utils";
|
|
1
|
+
import type { Player } from "../Player.js";
|
|
2
|
+
import type { anyObject } from "./Player.js";
|
|
3
|
+
import type { Base64 } from "./Utils.js";
|
|
4
4
|
/** Sourcenames provided by lavalink server */
|
|
5
5
|
export type LavalinkSourceNames = "youtube" | "youtubemusic" | "soundcloud" | "bandcamp" | "twitch";
|
|
6
6
|
/** Source Names provided by lava src plugin */
|
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import type { MiniMap } from "../Utils";
|
|
2
|
-
import type { LavalinkFilterData } from "./Filters";
|
|
3
|
-
import type { NodeStats } from "./Node";
|
|
4
|
-
import type { LavalinkPlayOptions } from "./Player";
|
|
5
|
-
import type { LavalinkTrack, PluginInfo, Track, UnresolvedTrack } from "./Track";
|
|
1
|
+
import type { MiniMap } from "../Utils.js";
|
|
2
|
+
import type { LavalinkFilterData } from "./Filters.js";
|
|
3
|
+
import type { LyricsLine, LyricsResult, NodeStats } from "./Node.js";
|
|
4
|
+
import type { LavalinkPlayOptions } from "./Player.js";
|
|
5
|
+
import type { LavalinkTrack, PluginInfo, Track, UnresolvedTrack } from "./Track.js";
|
|
6
6
|
/** Helper for generating Opaque types. */
|
|
7
7
|
export type Opaque<T, K> = T & {
|
|
8
8
|
__opaque__: K;
|
|
@@ -13,15 +13,16 @@ export type IntegerNumber = Opaque<number, 'Int'>;
|
|
|
13
13
|
export type FloatNumber = Opaque<number, 'Float'>;
|
|
14
14
|
export type LavaSrcSearchPlatformBase = "spsearch" | "sprec" | "amsearch" | "dzsearch" | "dzisrc" | "ymsearch";
|
|
15
15
|
export type LavaSrcSearchPlatform = LavaSrcSearchPlatformBase | "ftts";
|
|
16
|
+
export type JioSaavnSearchPlatform = "jssearch" | "jsrec";
|
|
16
17
|
export type DuncteSearchPlatform = "speak" | "phsearch" | "pornhub" | "porn" | "tts";
|
|
17
18
|
export type LavalinkClientSearchPlatform = "bcsearch";
|
|
18
19
|
export type LavalinkClientSearchPlatformResolve = "bandcamp" | "bc";
|
|
19
|
-
export type LavalinkSearchPlatform = "ytsearch" | "ytmsearch" | "scsearch" | "bcsearch" | LavaSrcSearchPlatform | DuncteSearchPlatform | LavalinkClientSearchPlatform;
|
|
20
|
+
export type LavalinkSearchPlatform = "ytsearch" | "ytmsearch" | "scsearch" | "bcsearch" | LavaSrcSearchPlatform | DuncteSearchPlatform | JioSaavnSearchPlatform | LavalinkClientSearchPlatform;
|
|
20
21
|
export type ClientCustomSearchPlatformUtils = "local" | "http" | "https" | "link" | "uri";
|
|
21
22
|
export type ClientSearchPlatform = ClientCustomSearchPlatformUtils | // for file/link requests
|
|
22
|
-
"youtube" | "yt" | "youtube music" | "youtubemusic" | "ytm" | "musicyoutube" | "music youtube" | "soundcloud" | "sc" | "am" | "apple music" | "applemusic" | "apple" | "musicapple" | "music apple" | "sp" | "spsuggestion" | "spotify" | "spotify.com" | "spotifycom" | "dz" | "deezer" | "yandex" | "yandex music" | "yandexmusic" | "flowerytts" | "flowery" | "flowery.tts" | LavalinkClientSearchPlatformResolve | LavalinkClientSearchPlatform;
|
|
23
|
+
"youtube" | "yt" | "youtube music" | "youtubemusic" | "ytm" | "musicyoutube" | "music youtube" | "soundcloud" | "sc" | "am" | "apple music" | "applemusic" | "apple" | "musicapple" | "music apple" | "sp" | "spsuggestion" | "spotify" | "spotify.com" | "spotifycom" | "dz" | "deezer" | "yandex" | "yandex music" | "yandexmusic" | "flowerytts" | "flowery" | "flowery.tts" | LavalinkClientSearchPlatformResolve | LavalinkClientSearchPlatform | "js" | "jiosaavn";
|
|
23
24
|
export type SearchPlatform = LavalinkSearchPlatform | ClientSearchPlatform;
|
|
24
|
-
export type SourcesRegex = "YoutubeRegex" | "YoutubeMusicRegex" | "SoundCloudRegex" | "SoundCloudMobileRegex" | "DeezerTrackRegex" | "DeezerArtistRegex" | "DeezerEpisodeRegex" | "DeezerMixesRegex" | "DeezerPageLinkRegex" | "DeezerPlaylistRegex" | "DeezerAlbumRegex" | "AllDeezerRegex" | "AllDeezerRegexWithoutPageLink" | "SpotifySongRegex" | "SpotifyPlaylistRegex" | "SpotifyArtistRegex" | "SpotifyEpisodeRegex" | "SpotifyShowRegex" | "SpotifyAlbumRegex" | "AllSpotifyRegex" | "mp3Url" | "m3uUrl" | "m3u8Url" | "mp4Url" | "m4aUrl" | "wavUrl" | "aacpUrl" | "tiktok" | "mixcloud" | "musicYandex" | "radiohost" | "bandcamp" | "appleMusic" | "TwitchTv" | "vimeo";
|
|
25
|
+
export type SourcesRegex = "YoutubeRegex" | "YoutubeMusicRegex" | "SoundCloudRegex" | "SoundCloudMobileRegex" | "DeezerTrackRegex" | "DeezerArtistRegex" | "DeezerEpisodeRegex" | "DeezerMixesRegex" | "DeezerPageLinkRegex" | "DeezerPlaylistRegex" | "DeezerAlbumRegex" | "AllDeezerRegex" | "AllDeezerRegexWithoutPageLink" | "SpotifySongRegex" | "SpotifyPlaylistRegex" | "SpotifyArtistRegex" | "SpotifyEpisodeRegex" | "SpotifyShowRegex" | "SpotifyAlbumRegex" | "AllSpotifyRegex" | "mp3Url" | "m3uUrl" | "m3u8Url" | "mp4Url" | "m4aUrl" | "wavUrl" | "aacpUrl" | "tiktok" | "mixcloud" | "musicYandex" | "radiohost" | "bandcamp" | "jiosaavn" | "appleMusic" | "TwitchTv" | "vimeo";
|
|
25
26
|
export interface PlaylistInfo {
|
|
26
27
|
/** The playlist name */
|
|
27
28
|
name: string;
|
|
@@ -62,7 +63,7 @@ export interface MiniMapConstructor {
|
|
|
62
63
|
readonly prototype: MiniMap<unknown, unknown>;
|
|
63
64
|
readonly [Symbol.species]: MiniMapConstructor;
|
|
64
65
|
}
|
|
65
|
-
export type PlayerEvents = TrackStartEvent | TrackEndEvent | TrackStuckEvent | TrackExceptionEvent | WebSocketClosedEvent | SponsorBlockSegmentEvents;
|
|
66
|
+
export type PlayerEvents = TrackStartEvent | TrackEndEvent | TrackStuckEvent | TrackExceptionEvent | WebSocketClosedEvent | SponsorBlockSegmentEvents | LyricsEvent;
|
|
66
67
|
export type Severity = "COMMON" | "SUSPICIOUS" | "FAULT";
|
|
67
68
|
export interface Exception {
|
|
68
69
|
/** Severity of the error */
|
|
@@ -148,9 +149,66 @@ export interface SponsorBlockChaptersLoaded extends PlayerEvent {
|
|
|
148
149
|
duration: number;
|
|
149
150
|
}[];
|
|
150
151
|
}
|
|
152
|
+
/**
|
|
153
|
+
* Types & Events for Lyrics plugin from Lavalink: https://github.com/topi314/LavaLyrics
|
|
154
|
+
*/
|
|
155
|
+
export type LyricsEvent = LyricsFoundEvent | LyricsNotFoundEvent | LyricsLineEvent;
|
|
156
|
+
export type LyricsEventType = "LyricsFoundEvent" | "LyricsNotFoundEvent" | "LyricsLineEvent";
|
|
157
|
+
export interface LyricsFoundEvent extends PlayerEvent {
|
|
158
|
+
/** The lyricsfound event */
|
|
159
|
+
type: "LyricsFoundEvent";
|
|
160
|
+
/** The guildId */
|
|
161
|
+
guildId: string;
|
|
162
|
+
/** The lyrics */
|
|
163
|
+
lyrics: LyricsResult;
|
|
164
|
+
}
|
|
165
|
+
export interface LyricsNotFoundEvent extends PlayerEvent {
|
|
166
|
+
/**The lyricsnotfound event*/
|
|
167
|
+
type: "LyricsNotFoundEvent";
|
|
168
|
+
/**The guildId*/
|
|
169
|
+
guildId: string;
|
|
170
|
+
}
|
|
171
|
+
export interface LyricsLineEvent extends PlayerEvent {
|
|
172
|
+
/**The lyricsline event*/
|
|
173
|
+
type: "LyricsLineEvent";
|
|
174
|
+
/** The guildId */
|
|
175
|
+
guildId: string;
|
|
176
|
+
/** The line number */
|
|
177
|
+
lineIndex: number;
|
|
178
|
+
/** The line */
|
|
179
|
+
line: LyricsLine;
|
|
180
|
+
/**skipped is true if the line was skipped */
|
|
181
|
+
skipped: boolean;
|
|
182
|
+
}
|
|
183
|
+
export interface LyricsFoundEvent extends PlayerEvent {
|
|
184
|
+
/** The lyricsfound event */
|
|
185
|
+
type: "LyricsFoundEvent";
|
|
186
|
+
/** The guildId */
|
|
187
|
+
guildId: string;
|
|
188
|
+
/** The lyrics */
|
|
189
|
+
lyrics: LyricsResult;
|
|
190
|
+
}
|
|
191
|
+
export interface LyricsNotFoundEvent extends PlayerEvent {
|
|
192
|
+
/**The lyricsnotfound event*/
|
|
193
|
+
type: "LyricsNotFoundEvent";
|
|
194
|
+
/**The guildId*/
|
|
195
|
+
guildId: string;
|
|
196
|
+
}
|
|
197
|
+
export interface LyricsLineEvent extends PlayerEvent {
|
|
198
|
+
/**The lyricsline event*/
|
|
199
|
+
type: "LyricsLineEvent";
|
|
200
|
+
/** The guildId */
|
|
201
|
+
guildId: string;
|
|
202
|
+
/** The line number */
|
|
203
|
+
lineIndex: number;
|
|
204
|
+
/** The line */
|
|
205
|
+
line: LyricsLine;
|
|
206
|
+
/**skipped is true if the line was skipped */
|
|
207
|
+
skipped: boolean;
|
|
208
|
+
}
|
|
151
209
|
export type LoadTypes = "track" | "playlist" | "search" | "error" | "empty";
|
|
152
210
|
export type State = "CONNECTED" | "CONNECTING" | "DISCONNECTED" | "DISCONNECTING" | "DESTROYING";
|
|
153
|
-
export type PlayerEventType = "TrackStartEvent" | "TrackEndEvent" | "TrackExceptionEvent" | "TrackStuckEvent" | "WebSocketClosedEvent" | SponsorBlockSegmentEventType;
|
|
211
|
+
export type PlayerEventType = "TrackStartEvent" | "TrackEndEvent" | "TrackExceptionEvent" | "TrackStuckEvent" | "WebSocketClosedEvent" | SponsorBlockSegmentEventType | LyricsEventType;
|
|
154
212
|
export type TrackEndReason = "finished" | "loadFailed" | "stopped" | "replaced" | "cleanup";
|
|
155
213
|
export interface InvalidLavalinkRestRequest {
|
|
156
214
|
/** Rest Request Data for when it was made */
|