-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathscript.py
69 lines (64 loc) · 2.68 KB
/
script.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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
# -*- coding: utf-8 -*-
#########################################################
# SCRIPT : script.py #
# Script handling commands for PVR-Manager #
# I. Helwegen 2015 #
#########################################################
####################### IMPORTS #########################
import sys
import xbmc, xbmcaddon
import re
import common
#########################################################
####################### GLOBALS #########################
__addon__ = xbmcaddon.Addon()
__addonname__ = __addon__.getAddonInfo('id')
__LS__ = __addon__.getLocalizedString
__counter__ = int(re.match('\d+', __addon__.getSetting('notification_counter')).group())
#########################################################
#########################################################
# Function : setShutdown #
#########################################################
def setShutdown(command):
if common.isPID(False):
common.setCommand(command)
else:
common.writeLog('Service not running, performing normal shutdown action ...')
common.notifyOSD(__LS__(30008),__LS__(30025),common.IconError)
if command == common.CMD_SHUTDOWN:
xbmc.shutdown()
elif command == common.CMD_SUSPEND:
xbmc.suspend()
elif command == common.CMD_HIBERNATE:
xbmc.hibernate()
else:
common.writeLog('Unable to perform action ...')
#########################################################
#########################################################
######################## MAIN ###########################
#########################################################
if len(sys.argv) > 1:
s = sys.argv[1].lower()
if s == 'checkmailsettings':
common.writeLog('Send test E-Mail')
setShutdown(common.CMD_SENDMAIL)
elif s == "shutdown":
common.writeLog('Powerbutton is pressed')
setShutdown(common.CMD_SHUTDOWN)
elif s == "suspend":
common.writeLog('Powerbutton is pressed')
setShutdown(common.CMD_SUSPEND)
elif s == "hibernate":
common.writeLog('Powerbutton is pressed')
setShutdown(common.CMD_HIBERNATE)
else: # remote
common.writeLog('Powerbutton is pressed')
setShutdown(common.getShutdownAction())
else:
common.writeLog('Powerbutton is pressed')
#Do a countdown with ok and cancel from script ....
if not common.dialogProgress(__LS__(30008), __LS__(30009), __counter__):
setShutdown(common.getShutdownAction())
else:
common.writeLog('Powerbutton canceled')
#########################################################