33 lines
1.1 KiB
Python
33 lines
1.1 KiB
Python
# Machine manipulation request handlers
|
|
#
|
|
# Copyright (C) 2020 Eric Callahan <arksine.code@gmail.com>
|
|
#
|
|
# This file may be distributed under the terms of the GNU GPLv3 license.
|
|
import logging
|
|
|
|
class Machine:
|
|
def __init__(self, config):
|
|
self.server = config.get_server()
|
|
self.server.register_endpoint(
|
|
"/machine/reboot", ['POST'], self._handle_machine_request)
|
|
self.server.register_endpoint(
|
|
"/machine/shutdown", ['POST'], self._handle_machine_request)
|
|
|
|
async def _handle_machine_request(self, path, method, args):
|
|
if path == "/machine/shutdown":
|
|
cmd = "sudo shutdown now"
|
|
elif path == "/machine/reboot":
|
|
cmd = "sudo shutdown -r now"
|
|
else:
|
|
raise self.server.error("Unsupported machine request")
|
|
shell_command = self.server.lookup_plugin('shell_command')
|
|
scmd = shell_command.build_shell_command(cmd, None)
|
|
try:
|
|
await scmd.run(timeout=2., verbose=False)
|
|
except Exception:
|
|
logging.exception(f"Error running cmd '{cmd}'")
|
|
return "ok"
|
|
|
|
def load_plugin(config):
|
|
return Machine(config)
|