-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy path__init__.py
127 lines (102 loc) · 4.72 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
# Copyright 2024 Daxton Caylor
#
# Permission is hereby granted, free of charge, to any person obtaining a copy
# of this software and associated documentation files (the "Software"), to deal
# in the Software without restriction, including without limitation the rights
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
# copies of the Software, and to permit persons to whom the Software is
# furnished to do so, subject to the following conditions:
#
# The above copyright notice and this permission notice shall be included in all
# copies or substantial portions of the Software.
#
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
# SOFTWARE.
"""
@author: Daxton Caylor
@title: ComfyUI-WA
@nickname: ComfyUI-WA
@description: This node enables someone to run comfyui in whatsapp.
"""
import os, platform, json
from .classes.NodeInstaller import NodeInstaller
from .classes.NodeScriptRunner import NodeScriptRunner
from .classes.WA_ImageSaver import N_CLASS_MAPPINGS as WA_ImageSaverMappins, N_DISPLAY_NAME_MAPPINGS as WA_ImageSaverNameMappings
from .config import *
if NODE_JS_ACTIVE:
print("=============================================================================================================")
canRunScripts = 0
nodeInstaller = NodeInstaller(NODE_JS_INSTALLER_URL)
nodeScriptRunner = NodeScriptRunner()
DATA_FOLDER = './WhatsApp'
CONFIG_FILE = os.path.join(DATA_FOLDER, 'whatsapp.json')
NODE_JS_FOLDER = os.path.join(os.path.dirname(os.path.abspath(__file__)), NODE_JS_FOLDER)
PD = os.path.abspath(DATA_FOLDER)
if not os.path.exists(DATA_FOLDER):
os.makedirs(DATA_FOLDER)
config_data = {
"phone_code": "xx",
"phone": "xxxxxxxxxx",
"mode": "1",
"chrome": "",
"comfy_url": "http://127.0.0.1:8188"
}
if not os.path.exists(CONFIG_FILE):
with open(CONFIG_FILE, 'w') as f:
json.dump(config_data, f, indent=4)
else:
update_config(CONFIG_FILE, config_data)
updates = {
"scripts" : {
"production": f"node app.js --pd={PD}"
}
}
edit_package_json(os.path.join(NODE_JS_FOLDER,'project','package.json'),updates)
if platform.system() == "Windows":
if nodeInstaller.check_for_node_js() is not True:
print("[COMFYUI_WA] --> DOWNLOADING NODEJS")
nodeInstaller.download_nodejs()
print("[COMFYUI_WA] --> INSTALLING NODEJS")
nodeInstaller.install_nodejs()
else:
print("[COMFYUI_WA] --> NODEJS WAS FOUND IN YOUR OS")
canRunScripts = 1
else:
if nodeInstaller.check_for_node_js() is not True:
print("[COMFYUI_WA] --> NODEJS WAS NOT FOUND IN YOUR OS PLEASE INSTALL NODEJS TO RUN THIS NODE CORRECTLY")
else:
canRunScripts = 1
if canRunScripts:
projects = nodeInstaller.get_dependencies_and_production_scripts(NODE_JS_FOLDER)
for project_name, project_info in projects.items():
dependencies = project_info['dependencies']
packages = []
if dependencies:
print(f"[COMFYUI_WA] --> Dependencies for project '{project_name}':")
for dependency, version in dependencies.items():
version = version.replace('^', '@')
# nodeInstaller.install_npm_package(f"{dependency}@{version}")
packages.append(dependency)
print(f"{dependency}: {version}")
else:
print(f"[COMFYUI_WA] --> No dependencies found for project '{project_name}'")
nodeInstaller.install_all_packages(packages)
production = project_info['production']
if production:
print(f"[COMFYUI_WA] --> Script for project '{project_name}':")
nodeScriptRunner.add(os.path.join(NODE_JS_FOLDER, project_name),production.split())
else:
print(f"[COMFYUI_WA] --> No scripts found for project '{project_name}'")
nodeScriptRunner.run()
else:
print("[COMFYUI_WA] --> CONTACT DEVELOPER FOR ASSISTANCE")
NODE_CLASS_MAPPINGS = {}
NODE_DISPLAY_NAME_MAPPINGS = {}
NODE_CLASS_MAPPINGS.update(WA_ImageSaverMappins)
NODE_DISPLAY_NAME_MAPPINGS.update(WA_ImageSaverNameMappings)
WEB_DIRECTORY = "./web"