2006-10-09 18:43:14 +02:00
|
|
|
import CryptoBoxPlugin
|
|
|
|
|
|
|
|
REDIRECT_DELAY = 180
|
|
|
|
|
|
|
|
class shutdown(CryptoBoxPlugin.CryptoBoxPlugin):
|
|
|
|
|
2006-11-01 10:22:58 +01:00
|
|
|
pluginCapabilities = [ "system", "menu" ]
|
2006-10-09 18:43:14 +02:00
|
|
|
requestAuth = False
|
2006-10-11 17:50:24 +02:00
|
|
|
rank = 70
|
2006-10-09 18:43:14 +02:00
|
|
|
|
|
|
|
def doAction(self, type=None):
|
|
|
|
if not type:
|
|
|
|
return "form_shutdown"
|
|
|
|
elif type == "shutdown":
|
|
|
|
if self.__doShutdown("shutdown"):
|
|
|
|
self.hdf["Data.Success"] = "Plugins.shutdown.Shutdown"
|
|
|
|
return None
|
|
|
|
else:
|
|
|
|
self.hdf["Data.Warning"] = "Plugins.shutdown.ShutdownFailed"
|
|
|
|
return "form_shutdown"
|
|
|
|
elif type == "reboot":
|
|
|
|
if self.__doShutdown("reboot"):
|
|
|
|
self.hdf["Data.Success"] = "Plugins.shutdown.Reboot"
|
|
|
|
self.hdf["Data.Redirect.URL"] = ""
|
|
|
|
self.hdf["Data.Redirect.Delay"] = REDIRECT_DELAY
|
|
|
|
return None
|
|
|
|
else:
|
|
|
|
self.hdf["Data.Warning"] = "Plugins.shutdown.RebootFailed"
|
|
|
|
return "form_shutdown"
|
|
|
|
else:
|
|
|
|
return "form_shutdown"
|
|
|
|
|
|
|
|
|
|
|
|
def getStatus(self):
|
|
|
|
return "the box is up'n'running"
|
|
|
|
|
|
|
|
|
|
|
|
def __doShutdown(self, action):
|
|
|
|
import subprocess
|
|
|
|
import os
|
|
|
|
proc = subprocess.Popen(
|
|
|
|
shell = False,
|
|
|
|
args = [
|
|
|
|
self.cbox.prefs["Programs"]["super"],
|
|
|
|
self.cbox.prefs["Programs"]["CryptoBoxRootActions"],
|
|
|
|
"plugin",
|
|
|
|
os.path.join(self.pluginDir, "root_action.py"),
|
|
|
|
action])
|
|
|
|
proc.communicate()
|
|
|
|
return proc.returncode == 0
|
|
|
|
|