-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathlyrics.py
59 lines (48 loc) · 1.84 KB
/
lyrics.py
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
# -*- coding: utf-8 -*-
# requires: lyricsgenius
import logging
import lyricsgenius
from .. import loader, utils
logger = logging.getLogger(__name__)
@loader.tds
class LyricsMod(loader.Module):
"""Sings songs"""
strings = {
"name": "Lyrics",
"genius_api_token_doc": "The LyricsGenius API token from http://genius.com/api-clients",
"invalid_syntax": "<b>Please specify song and artist.</b>",
"song_not_found": "<b>Song not found</b>",
"missing_token": "<b>API Token missing</b>",
}
def __init__(self):
self.config = loader.ModuleConfig(
"GENIUS_API_TOKEN", None, lambda m: self.strings("genius_api_token_doc", m)
)
def config_complete(self):
if self.config["GENIUS_API_TOKEN"]:
self.genius = lyricsgenius.Genius(self.config["GENIUS_API_TOKEN"])
else:
self.genius = None
@loader.unrestricted
@loader.ratelimit
async def lyricscmd(self, message):
""".lyrics Song, Artist"""
if self.genius is None:
await utils.answer(message, self.strings("missing_token", message))
args = utils.get_args_split_by(message, ",")
if len(args) != 2:
logger.debug(args)
await utils.answer(message, self.strings("invalid_syntax", message))
return
logger.debug("getting song lyrics for " + args[0] + ", " + args[1])
try:
song = await utils.run_sync(self.genius.search_song, args[0], args[1])
except TypeError:
# Song not found causes internal library error
song = None
if song is None:
await utils.answer(message, self.strings("song_not_found", message))
return
logger.debug(song)
logger.debug(song.lyrics)
await utils.answer(message, utils.escape_html(song.lyrics))