-
Notifications
You must be signed in to change notification settings - Fork 18
/
context.py
48 lines (38 loc) · 1.46 KB
/
context.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
#!/usr/bin/python
# -*- coding: utf-8 -*-
'''
This module gets called from the context menu item "Add selected item to library" (32000).
The purpose is to stage the currently selected movie/tvshow, and update synced directories.
'''
import sys
import xbmc
import xbmcgui
import resources.lib.utils as utils
from resources.lib.menus.synced import SyncedMenu
@utils.entrypoint
def main():
''' Main entrypoint for context menu item '''
container_type = xbmc.getInfoLabel('Container.Content')
label = sys.listitem.getLabel() # pylint: disable=E1101
path = sys.listitem.getPath() # pylint: disable=E1101
# Get content type
# TODO: Check if item is a directory to determine type
if container_type == 'tvshows':
content_type = 'tvshow'
elif container_type == 'movies':
content_type = 'movie'
else:
STR_CHOOSE_CONTENT_TYPE = utils.ADDON.getLocalizedString(32100)
STR_MOVIE = utils.ADDON.getLocalizedString(32102)
STR_TV_SHOW = utils.ADDON.getLocalizedString(32101)
is_show = xbmcgui.Dialog().yesno(
utils.ADDON_NAME, STR_CHOOSE_CONTENT_TYPE, yeslabel=STR_TV_SHOW, nolabel=STR_MOVIE
)
content_type = 'tvshow' if is_show else 'movie'
# Call corresponding method
if content_type == 'movie':
SyncedMenu().sync_single_movie(label, path)
elif content_type == 'tvshow':
SyncedMenu().sync_single_tvshow(label, path)
if __name__ == '__main__':
main()