/usr/share/weechat/python/lastfm2.py is in weechat-scripts 20180330-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 | # Copyright (c) 2015 by timss <timsateroy@gmail.com>
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
SCRIPT_NAME = 'lastfm2'
SCRIPT_AUTHOR = "timss <timsateroy@gmail.com>"
SCRIPT_VERSION = '0.1'
SCRIPT_LICENSE = 'GPL3'
SCRIPT_DESC = "Sends latest played track for a Last.fm user to the current buffer"
SCRIPT_COMMAND = 'lastfm'
SCRIPT_HELP = \
"""Sends latest played track for a Last.fm user to the current buffer.
/lastfm
By default, the script will use the username set in {SCRIPT_NAME} configuration:
/set plugins.var.python.{SCRIPT_NAME}.user yourusername
In addition, an username may be specified as an argument:
/lastfm anotherusername
The command which output will be sent to the buffer may be customized as well:
/set plugins.var.python.{SCRIPT_NAME}.command I'm listening to {{track}}
Finally, the command when specifying another username can also be set:
/set plugins.var.python.{SCRIPT_NAME}.command_arg {{user}} is litening to {{track}}
Inspiration and credit:
- lastfm.py, Adam Saponara <saponara TA gmail TOD com>
- lastfmnp.py, i7c <i7c AT posteo PERIOD de>
- lastfmapi.py, Christophe De Troyer <christophe@call-cc.be>
""".format(SCRIPT_NAME=SCRIPT_NAME)
try:
import weechat
import_ok = True
except ImportError:
print("This script must be run under WeeChat.")
print("Get WeeChat now at: http://www.weechat.org/")
import_ok = False
import json
def init_config():
"""Set plugin options to defaults if not already done"""
config = {
'user': '',
'command': '/me is listening to {track}',
'command_arg': '{user} is listening to {track}',
'api_key': 'ae51c9df97d4e90c35ffd302e987efd2',
'api_url': 'https://ws.audioscrobbler.com/2.0/?method=user.getRecentTracks&user={user}&limit=1&api_key={api_key}&format=json',
'timeout': '10000'
}
for option, default in config.items():
if not weechat.config_is_set_plugin(option):
weechat.config_set_plugin(option, default)
def get_recent_track(data, command, rc, out, err):
"""Get last track played (artist - name)"""
if rc == weechat.WEECHAT_HOOK_PROCESS_ERROR:
weechat.prnt('', "Error with command '{}'".format(command))
elif rc > 0:
weechat.prnt('', "rc = {}".format(rc))
try:
data = json.loads(out)
if data.has_key('error'):
weechat.prnt('', "Last.fm API error: '{}'".format(data['message']))
else:
artist = data['recenttracks']['track'][0]['artist']['#text']
name = data['recenttracks']['track'][0]['name']
track = "{} - {}".format(artist, name)
user = data['recenttracks']['@attr']['user'].lower()
# print username or not, depending on config/arg
if user == weechat.config_get_plugin('user').lower():
cmd = weechat.config_get_plugin('command')
else:
cmd = weechat.config_get_plugin('command_arg')
# format isn't picky, ignores {user} if not present
cmd = cmd.format(user=user, track=track)
weechat.command(weechat.current_buffer(), cmd)
except IndexError, KeyError:
weechat.prnt('', "Error parsing Last.fm data")
return weechat.WEECHAT_RC_OK
def lastfm_cmd(data, buffer, args):
"""Print last track played"""
api_key = weechat.config_get_plugin('api_key')
api_url = weechat.config_get_plugin('api_url')
timeout = weechat.config_get_plugin('timeout')
# use user in argument, or in config
if args:
user = args
else:
user = weechat.config_get_plugin('user')
url = 'url:' + api_url.format(user=user.lower(), api_key=api_key)
weechat.hook_process(url, int(timeout), 'get_recent_track', '')
return weechat.WEECHAT_RC_OK
if __name__ == '__main__' and import_ok:
if weechat.register(SCRIPT_NAME, SCRIPT_AUTHOR, SCRIPT_VERSION, SCRIPT_LICENSE, SCRIPT_DESC, '', ''):
init_config()
weechat.hook_command(SCRIPT_COMMAND, SCRIPT_HELP, '', '', '', 'lastfm_cmd', '')
|