summaryrefslogtreecommitdiffstats
path: root/src/linux/ogOperations.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/linux/ogOperations.py')
-rw-r--r--src/linux/ogOperations.py46
1 files changed, 46 insertions, 0 deletions
diff --git a/src/linux/ogOperations.py b/src/linux/ogOperations.py
new file mode 100644
index 0000000..0d70f76
--- /dev/null
+++ b/src/linux/ogOperations.py
@@ -0,0 +1,46 @@
+#
+# Copyright (C) 2021 Soleta Networks <info@soleta.eu>
+#
+# This program is free software: you can redistribute it and/or modify it under
+# the terms of the GNU Affero General Public License as published by the
+# Free Software Foundation; either version 3 of the License, or
+# (at your option) any later version.
+
+import os
+from src.ogRest import ThreadState
+
+
+class OgLinuxOperations:
+
+ def _restartBrowser(self, url):
+ raise NotImplementedError
+
+ def poweroff(self):
+ os.system('systemctl poweroff')
+
+ def reboot(self):
+ os.system('systemctl reboot')
+
+ def shellrun(self, request, ogRest):
+ raise NotImplementedError
+
+ def session(self, request, ogRest):
+ raise NotImplementedError
+
+ def hardware(self, path, ogRest):
+ raise NotImplementedError
+
+ def setup(self, request, ogRest):
+ raise NotImplementedError
+
+ def image_restore(self, request, ogRest):
+ raise NotImplementedError
+
+ def image_create(self, path, request, ogRest):
+ raise NotImplementedError
+
+ def refresh(self, ogRest):
+ return {"status": "LINUX"}
+
+ def probe(self, ogRest):
+ return {'status': 'LINUX' if ogRest.state != ThreadState.BUSY else 'BSY'}