forked from patrick-klein/script.library.integration.tool
-
Notifications
You must be signed in to change notification settings - Fork 0
/
context2.py
45 lines (36 loc) · 1.4 KB
/
context2.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
#!/usr/bin/python
# -*- coding: utf-8 -*-
'''
This module gets called from the context menu item "Sync directory to library" (32001).
The purpose is to stage all movies/tvshows in the current directory, and update database
'''
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')
dir_path = xbmc.getInfoLabel('Container.FolderPath')
dir_label = xbmc.getInfoLabel('Container.FolderName')
# Get content 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_movie_directory(dir_label, dir_path)
elif content_type == 'tvshow':
SyncedMenu().sync_tvshow_directory(dir_label, dir_path)
if __name__ == '__main__':
main()