context.item.songartist: use Container.Update instead of ActivateWindow
[clinton/unknownlamer-kodi-addons.git] / context.item.songartist / addon.py
1 # Show Song Artist Context Menu (https://git.hcoop.net/?p=clinton/unknownlamer-kodi-addons.git)
2
3 # Copyright (c) 2015 Clinton Ebadi <clinton@unknownlamer.org>
4 # This program is free software: you can redistribute it and/or modify
5 # it under the terms of the GNU General Public License as published by
6 # the Free Software Foundation, either version 3 of the License, or
7 # (at your option) any later version.
8
9 # This program is distributed in the hope that it will be useful,
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 # GNU General Public License for more details.
13
14 # You should have received a copy of the GNU General Public License
15 # along with this program. If not, see <http://www.gnu.org/licenses/>.
16
17 import sys
18 import xbmc
19 import json
20
21 def main ():
22 artist = sys.listitem.getMusicInfoTag().getArtist()
23 artistid = json.loads (xbmc.executeJSONRPC (json.dumps ({ 'jsonrpc': '2.0',
24 'id': '1',
25 'method': 'AudioLibrary.GetArtists',
26 'params': { 'filter': { 'field': 'artist',
27 'operator': 'is',
28 'value' : artist }}})))['result']['artists'][0]['artistid']
29 xbmc.executebuiltin ('Container.Update ("musicdb://artists/%s/")' % artistid)
30
31 if __name__ == '__main__':
32 main ()