summaryrefslogtreecommitdiffstats
path: root/src/ogProcess.py
blob: ff78f34c88f1e7525bf668bfe15690f23ef9c425 (plain)
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
import threading
import platform
import time

print(platform.system())

if platform.system() == 'Linux':
	from linux import ogOperations

class ogProcess():
	def processOperation(self, op, URI):
		if ("poweroff" in URI):
			self.process_poweroff()
		elif ("reboot" in URI):
			self.process_reboot()

	def process_reboot(self):
		# Rebooting thread
		def rebt():
			ogOperations.reboot()
		threading.Thread(target=rebt).start()

	def process_poweroff(self):
		# Powering off thread
		def pwoff():
			time.sleep(2)
			ogOperations.poweroff()
		threading.Thread(target=pwoff).start()