feat: Whitelist URL feature.
In the configuration, `max_duration` can be set to prevent long song(URL item) being downloaded and added to the playlist. This whitelist feature provided a way to override this duration check: songs being whitelisted will be added to the playlist no matter how long they are. Three admin commands are introduced: - !urlwhitelist (!urlw) - !urlunwhitelist, (!urlunw) - !urlwhitelistlist, (!urlwls). Also, if one song fails due to its length, the bot will show the length of this song and the max length limit in the reply message. Implement #173, #196.
This commit is contained in:
@ -61,17 +61,26 @@
|
||||
"shortlist_instruction": "Use <i>!sl {indexes}</i> to play the item you want.",
|
||||
"start_updating": "Start updating...",
|
||||
"stopped": "Music stopped.",
|
||||
"too_long": "<b>{song}</b> is too long, removed from playlist!",
|
||||
"too_long": "<b>{song}</b> is too long ({duration} > {max_duration}), removed from playlist!",
|
||||
"unable_download": "Unable to download <b>{item}</b>. Removed from the library.",
|
||||
"unable_play": "Unable to play <b>{item}</b>. Removed from the library.",
|
||||
"unknown_mode": "Unknown playback mode '{mode}'. It should be one of <i>one-shot</i>, <i>repeat</i>, <i>random</i>.",
|
||||
"update_successful": "<h2>botamusique v{version} Installed!</h2><hr />\n<h3>Changelog</h3> {changelog} <hr /> Visit <a href=\"https://github.com/azlux/botamusique\">our github repo</a> for more details!",
|
||||
"url": "URL",
|
||||
"url_ban": "This URL is banned!",
|
||||
"url_ban": "The URL {url} is banned! Removed from playlist!",
|
||||
"url_ban_success": "The following URL is banned: {url}.",
|
||||
"url_ban_list": "List of banned URL: <br>{list}",
|
||||
"url_from_playlist": "URL",
|
||||
"url_from_playlist_item": "<a href=\"{url}\"><b>{title}</b></a> <i>from playlist</i> <a href=\"{playlist_url}\">{playlist}</a> <i>added by</i> {user}",
|
||||
"url_item": "<a href=\"{url}\"><b>{title}</b></a> <i>added by</i> {user}",
|
||||
"url_unban_success": "The following URL is unbanned: {url}.",
|
||||
"url_unwhitelist_success": "The following URL is un-whitelisted: {url}.",
|
||||
"url_whitelist_success": "The following URL is whitelisted: {url}.",
|
||||
"url_whitelist_list": "List of whitelisted URL: <br>{list}",
|
||||
"user_ban": "You are banned, not allowed to do that!",
|
||||
"user_ban_success": "User {user} is banned.",
|
||||
"user_ban_list": "List of banned user: <br>{list}",
|
||||
"user_unban_success": "User {user} is unbanned.",
|
||||
"user_password_set": "Your password has been updated.",
|
||||
"web_user_list": "Following users have the privilege to access the web interface: <br /> {users}",
|
||||
"webpage_address": "Your own address to access the web interface is <a href=\"{address}\">{address}</a>",
|
||||
|
Reference in New Issue
Block a user