-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathindex.py
145 lines (121 loc) · 4.15 KB
/
index.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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
import webview
import subprocess
import os
import pathlib
# Hardware and Platform Related Imports
import psutil, cpuinfo
import platform
import tkinter as tk
import base64
class Api:
def collect_platform_info(self):
platform_info = {
"system": platform.system(),
"node": platform.node(),
"release": platform.release(),
"version": platform.version(),
"machine": platform.machine(),
"processor": platform.processor(),
"architecture": platform.architecture(),
"python_version": platform.python_version(),
"python_implementation": platform.python_implementation(),
"python_build": platform.python_build(),
"python_compiler": platform.python_compiler(),
"uname": platform.uname()._asdict()
}
try:
platform_info["platform"] = platform.platform()
except Exception as e:
platform_info["platform"] = f"Error: {str(e)}"
return platform_info
def memory_data(self):
return {
"memoryTotal": round(psutil.virtual_memory().total / (1024**3), 2),
"memoryTotalRaw": psutil.virtual_memory().total,
"memoryAvailable": round(psutil.virtual_memory().available / (1024**3), 2),
"memoryAvailableRaw": psutil.virtual_memory().available,
"memoryUsed": round(psutil.virtual_memory().used / (1024**3), 2),
"memoryUsedRaw": psutil.virtual_memory().used,
"memoryFree": round(psutil.virtual_memory().free / (1024 ** 3), 2),
"memoryFreeRaw": psutil.virtual_memory().free
}
def cpu_data(self):
return cpuinfo.get_cpu_info()
def drive_data(self):
drives = []
for partition in psutil.disk_partitions():
try:
usage = psutil.disk_usage(partition.mountpoint)
drives.append({
"device": partition.device,
"mountpoint": partition.mountpoint,
"totalSpace": round(usage.total / (1024**3), 2),
"usedSpace": round(usage.used / (1024**3), 2),
"freeSpace": round(usage.free / (1024**3), 2),
"totalSpaceRaw": usage.total / (1024**3),
"usedSpaceRaw": usage.used / (1024**3),
"freeSpaceRaw": usage.free / (1024**3),
})
except PermissionError:
pass
return drives
def resolve_full_path(self, path):
return str(pathlib.Path(path).expanduser())
def convert_image_to_data_url(self, image_path):
with open(image_path, "rb") as image_file:
encoded_string = base64.b64encode(image_file.read()).decode('utf-8')
return f"data:image/png;base64,{encoded_string}"
def get_wifi_networks(self):
print('not implemented')
def fetch_directory(self, path):
if path.startswith("~/"):
result = os.listdir(pathlib.Path.home() / path[2:])
else:
result = os.listdir(path)
# Separate files and folders
files = []
folders = []
for entry in result:
full_path = pathlib.Path(path).expanduser() / entry # Get the full path of the entry
if full_path.is_file():
files.append(entry) # Add to files list
elif full_path.is_dir():
folders.append(entry) # Add to folders list
return files, folders # Return both lists
def fetch_file(self, type, path):
if type=="plain":
if path.startswith("~/"):
# Open the file in read mode
with open(os.path.expanduser(path), 'r') as file:
return file.read()
else:
with open(path, 'r') as file:
return file.read()
if type=="path":
if path.startswith("~/"):
return 'file://' + os.path.expanduser(path)
else:
return 'file://' + path
def save_file(self, path, content):
if type == "plain":
if path.startswith("~/"):
# Open the file in write mode
with open(os.path.expanduser(path), 'w') as file:
file.write(content)
else:
with open(path, 'w') as file:
file.write(content)
root = tk.Tk()
displayWidth = root.winfo_screenwidth()
displayHeight = root.winfo_screenheight()
print('Starting AzuOS...')
# Instantiate Api class
api = Api()
webview.settings = {
'ALLOW_FILE_URLS': True,
'ALLOW_DOWNLOADS': True,
'OPEN_DEVTOOLS_IN_DEBUG': False
}
webview.create_window('AzuOS', url="index.html", background_color='#000000', js_api=api, fullscreen=True, width=displayWidth, height=displayHeight)
# webview.create_window('AzuOS', url="index.html", background_color='#000000', js_api=api)
webview.start(debug=True)