-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathindex.js
More file actions
71 lines (65 loc) · 2.17 KB
/
Copy pathindex.js
File metadata and controls
71 lines (65 loc) · 2.17 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
/**
* Deezer plugin -- search and send music via the @DeezerMusicBot inline bot
*
* Uses GramJS MTProto to query @DeezerMusicBot inline results and send them directly in chat.
* Messages appear "via @DeezerMusicBot" just like typing @DeezerMusicBot in the Telegram input field.
*/
// ---------------------------------------------------------------------------
// Export
// ---------------------------------------------------------------------------
export const manifest = {
name: "deezer",
version: "2.0.0",
sdkVersion: "^2.1.0",
description: "Search and send music tracks in chat via Telegram's @DeezerMusicBot inline bot.",
};
export const tools = (sdk) => [
{
name: "deezer",
description:
"Search and send a music track in the current chat using Telegram's @DeezerMusicBot inline bot (Deezer). " +
"Provide a search query (artist, song title, album) and optionally pick a result by index. " +
"The track is sent directly into the chat via @DeezerMusicBot.",
category: "action",
scope: "always",
parameters: {
type: "object",
properties: {
query: {
type: "string",
description: "Music search query — artist, song title, or album (e.g. 'Daft Punk', 'Bohemian Rhapsody', 'Stromae Papaoutai')",
},
index: {
type: "integer",
description: "Which result to send (0 = first, 1 = second, etc.). Defaults to 0.",
minimum: 0,
maximum: 49,
},
},
required: ["query"],
},
execute: async (params, context) => {
try {
const result = await sdk.telegram.sendInlineBotResult(
context.chatId,
"DeezerMusicBot",
params.query,
params.index
);
return {
success: true,
data: {
query: result.query,
sent_index: result.sentIndex,
total_results: result.totalResults,
title: result.title,
description: result.description,
type: result.type,
},
};
} catch (err) {
return { success: false, error: String(err.message || err).slice(0, 500) };
}
},
},
];