From 18774e2e797f64cf951b3ba1ea8051ea6ad525f4 Mon Sep 17 00:00:00 2001 From: Louie Shprung Date: Sat, 1 Apr 2023 17:14:09 -0700 Subject: First commit --- backend/endpoints/get_plist.py | 40 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 40 insertions(+) create mode 100644 backend/endpoints/get_plist.py (limited to 'backend/endpoints/get_plist.py') 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)) -- cgit