-
Notifications
You must be signed in to change notification settings - Fork 45
/
__init__.py
162 lines (135 loc) · 5.73 KB
/
__init__.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
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
from .ttNpy.tinyterraNodes import TTN_VERSIONS
from .ttNpy import ttNserver # Do Not Remove
import configparser
import folder_paths
import subprocess
import shutil
import os
# ------- CONFIG -------- #
cwd_path = os.path.dirname(os.path.realpath(__file__))
js_path = os.path.join(cwd_path, "js")
comfy_path = folder_paths.base_path
config_path = os.path.join(cwd_path, "config.ini")
optionValues = {
"auto_update": ('true', 'false'),
"enable_embed_autocomplete": ('true', 'false'),
"enable_interface": ('true', 'false'),
"enable_fullscreen": ('true', 'false'),
"enable_dynamic_widgets": ('true', 'false'),
"enable_dev_nodes": ('true', 'false'),
}
def get_config():
"""Return a configparser.ConfigParser object."""
config = configparser.ConfigParser()
config.read(config_path)
return config
def update_config():
#section > option > value
for node, version in TTN_VERSIONS.items():
config_write("Versions", node, version)
for option, value in optionValues.items():
config_write("Option Values", option, value)
section_data = {
"ttNodes": {
"auto_update": False,
"enable_interface": True,
"enable_fullscreen": True,
"enable_embed_autocomplete": True,
"enable_dynamic_widgets": True,
"enable_dev_nodes": False,
}
}
for section, data in section_data.items():
for option, value in data.items():
if config_read(section, option) is None:
config_write(section, option, value)
# Load the configuration data into a dictionary.
config_data = config_load()
# Iterate through the configuration data.
for section, options in config_data.items():
if section == "Versions":
continue
for option in options:
# If the option is not in `optionValues` or in `section_data`, remove it.
if (option not in optionValues and
(section not in section_data or option not in section_data[section])):
config_remove(section, option)
def config_load():
"""Load the entire configuration into a dictionary."""
config = get_config()
return {section: dict(config.items(section)) for section in config.sections()}
def config_read(section, option):
"""Read a configuration option."""
config = get_config()
return config.get(section, option, fallback=None)
def config_write(section, option, value):
"""Write a configuration option."""
config = get_config()
if not config.has_section(section):
config.add_section(section)
config.set(section, str(option), str(value))
with open(config_path, 'w') as f:
config.write(f)
def config_remove(section, option):
"""Remove an option from a section."""
config = get_config()
if config.has_section(section):
config.remove_option(section, option)
with open(config_path, 'w') as f:
config.write(f)
def config_value_validator(section, option, default):
value = str(config_read(section, option)).lower()
if value not in optionValues[option]:
print(f'\033[92m[{section} Config]\033[91m {option} - \'{value}\' not in {optionValues[option]}, reverting to default.\033[0m')
config_write(section, option, default)
return default
else:
return value
# Create a config file if not exists
if not os.path.isfile(config_path):
with open(config_path, 'w') as f:
pass
update_config()
# Autoupdate if True
if config_value_validator("ttNodes", "auto_update", 'false') == 'true':
try:
with subprocess.Popen(["git", "pull"], cwd=cwd_path, stdout=subprocess.PIPE) as p:
p.wait()
result = p.communicate()[0].decode()
if result != "Already up to date.\n":
print("\033[92m[t ttNodes Updated t]\033[0m")
except:
pass
# --------- WEB ---------- #
# Remove old web JS folder
web_extension_path = os.path.join(comfy_path, "web", "extensions", "tinyterraNodes")
if os.path.exists(web_extension_path):
try:
shutil.rmtree(web_extension_path)
except:
print("\033[92m[ttNodes] \033[0;31mFailed to remove old web extension.\033[0m")
js_files = {
"interface": "enable_interface",
"fullscreen": "enable_fullscreen",
"embed_autocomplete": "enable_embed_autocomplete",
"dynamic_widgets": "enable_dynamic_widgets",
}
for js_file, config_key in js_files.items():
file_path = os.path.join(js_path, f"ttN{js_file}.js")
if config_value_validator("ttNodes", config_key, 'true') == 'false' and os.path.isfile(file_path):
os.rename(file_path, f"{file_path}.disable")
elif config_value_validator("ttNodes", config_key, 'true') == 'true' and os.path.isfile(f"{file_path}.disable"):
os.rename(f"{file_path}.disable", file_path)
# Enable Dev Nodes if True
if config_value_validator("ttNodes", "enable_dev_nodes", 'true') == 'true':
from .ttNdev import NODE_CLASS_MAPPINGS as ttNdev_CLASS_MAPPINGS, NODE_DISPLAY_NAME_MAPPINGS as ttNdev_DISPLAY_NAME_MAPPINGS
else:
ttNdev_CLASS_MAPPINGS = {}
ttNdev_DISPLAY_NAME_MAPPINGS = {}
# ------- MAPPING ------- #
from .ttNpy.tinyterraNodes import NODE_CLASS_MAPPINGS as TTN_CLASS_MAPPINGS, NODE_DISPLAY_NAME_MAPPINGS as TTN_DISPLAY_NAME_MAPPINGS
from .ttNpy.ttNlegacyNodes import NODE_CLASS_MAPPINGS as LEGACY_CLASS_MAPPINGS, NODE_DISPLAY_NAME_MAPPINGS as LEGACY_DISPLAY_NAME_MAPPINGS
NODE_CLASS_MAPPINGS = {**TTN_CLASS_MAPPINGS, **LEGACY_CLASS_MAPPINGS, **ttNdev_CLASS_MAPPINGS}
NODE_DISPLAY_NAME_MAPPINGS = {**TTN_DISPLAY_NAME_MAPPINGS, **LEGACY_DISPLAY_NAME_MAPPINGS, **ttNdev_DISPLAY_NAME_MAPPINGS}
WEB_DIRECTORY = "./js"
__all__ = ['NODE_CLASS_MAPPINGS', 'NODE_DISPLAY_NAME_MAPPINGS', 'WEB_DIRECTORY']