summaryrefslogtreecommitdiff
path: root/backend
diff options
context:
space:
mode:
Diffstat (limited to 'backend')
-rw-r--r--backend/__pycache__/config.cpython-39.pycbin0 -> 413 bytes
-rw-r--r--backend/config.py5
-rw-r--r--backend/endpoints/get_plist.py40
-rw-r--r--backend/server.py26
4 files changed, 71 insertions, 0 deletions
diff --git a/backend/__pycache__/config.cpython-39.pyc b/backend/__pycache__/config.cpython-39.pyc
new file mode 100644
index 0000000..92c0291
--- /dev/null
+++ b/backend/__pycache__/config.cpython-39.pyc
Binary files differ
diff --git a/backend/config.py b/backend/config.py
new file mode 100644
index 0000000..6ad1178
--- /dev/null
+++ b/backend/config.py
@@ -0,0 +1,5 @@
+class Config:
+ hostName = "localhost"
+ serverPort = 8080
+
+ docset_base = "/home/louie/.local/share/Zeal/Zeal/docsets"
diff --git a/backend/endpoints/get_plist.py b/backend/endpoints/get_plist.py
new file mode 100644
index 0000000..76275b7
--- /dev/null
+++ b/backend/endpoints/get_plist.py
@@ -0,0 +1,40 @@
+import json
+import logging
+import os
+import plistlib
+
+from ..config import Config
+
+output = dict()
+output["paths"] = []
+
+def find_plist(path):
+ with os.scandir(path) as it:
+ for entry in it:
+ if entry.name == "." or entry.name == "..":
+ continue
+ if(os.DirEntry.is_dir(entry)):
+ find_plist(path + "/" + entry.name)
+ elif(entry.name == "Info.plist"):
+ #parse_plist(path + "/" + entry.name)
+ output["paths"] += path + "/" + entry.name
+
+def parse_plist(path):
+ with open(path, "rb") as fp:
+ pl = plistlib.load(fp)
+ print(pl["CFBundleIdentifier"])
+ print(pl["CFBundleName"])
+
+
+
+if not os.path.isdir(Config.docset_base):
+ e = "Invalid DOCSET_BASE \"" + Config.docset_base + "\""
+ logging.error(e);
+ output["success"] = False
+ output["message"] = e
+
+else:
+ find_plist(Config.docset_base);
+ output["success"] = True
+
+print(json.dumps(output))
diff --git a/backend/server.py b/backend/server.py
new file mode 100644
index 0000000..b8e1091
--- /dev/null
+++ b/backend/server.py
@@ -0,0 +1,26 @@
+import http.server
+
+from config import *
+
+class MyServer(http.server.BaseHTTPRequestHandler):
+ def do_GET(self):
+ self.send_response(200)
+ self.send_header("Content-type", "application/json")
+ self.send_header("Access-Control-Allow-Origin", "*")
+ self.send_header("Access-Control-Allow-Headers", "content-type")
+ self.end_headers()
+ output = exec(open("." + self.path).read())
+ self.wfile.write(output.encode())
+
+
+if __name__ == "__main__":
+ webServer = http.server.HTTPServer((Config.hostName, Config.serverPort), MyServer)
+ print("Server started http://%s:%s" % (Config.hostName, Config.serverPort))
+
+ try:
+ webServer.serve_forever()
+ except KeyboardInterrupt:
+ pass
+
+ webServer.server_close()
+ print("Server stopped.")