├── .github └── workflows │ └── publish.yml ├── LICENSE ├── README.md ├── __init__.py ├── config.json ├── icon.png ├── nodes.py ├── pyproject.toml ├── requirements.txt ├── sentinel-web ├── assets │ ├── icon.ico │ └── logo_transparent.png ├── css │ └── styles.css ├── generate_token.html ├── js │ └── auth.js ├── login.html └── register.html ├── sentinel.py ├── utils ├── __init__.py ├── access_control.py ├── config.py ├── force_https.py ├── ip_filter.py ├── jwt_auth.py ├── logger.py ├── sanitizer.py ├── timeout.py ├── users_db.py └── validate.py └── web └── js ├── injectCSS.js └── logout.js /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucipherDev/ComfyUI-Sentinel/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucipherDev/ComfyUI-Sentinel/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucipherDev/ComfyUI-Sentinel/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucipherDev/ComfyUI-Sentinel/HEAD/__init__.py -------------------------------------------------------------------------------- /config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucipherDev/ComfyUI-Sentinel/HEAD/config.json -------------------------------------------------------------------------------- /icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucipherDev/ComfyUI-Sentinel/HEAD/icon.png -------------------------------------------------------------------------------- /nodes.py: -------------------------------------------------------------------------------- 1 | NODE_CLASS_MAPPINGS = {} -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucipherDev/ComfyUI-Sentinel/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | aiohttp 2 | PyJWT 3 | bcrypt 4 | bleach -------------------------------------------------------------------------------- /sentinel-web/assets/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucipherDev/ComfyUI-Sentinel/HEAD/sentinel-web/assets/icon.ico -------------------------------------------------------------------------------- /sentinel-web/assets/logo_transparent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucipherDev/ComfyUI-Sentinel/HEAD/sentinel-web/assets/logo_transparent.png -------------------------------------------------------------------------------- /sentinel-web/css/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucipherDev/ComfyUI-Sentinel/HEAD/sentinel-web/css/styles.css -------------------------------------------------------------------------------- /sentinel-web/generate_token.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucipherDev/ComfyUI-Sentinel/HEAD/sentinel-web/generate_token.html -------------------------------------------------------------------------------- /sentinel-web/js/auth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucipherDev/ComfyUI-Sentinel/HEAD/sentinel-web/js/auth.js -------------------------------------------------------------------------------- /sentinel-web/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucipherDev/ComfyUI-Sentinel/HEAD/sentinel-web/login.html -------------------------------------------------------------------------------- /sentinel-web/register.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucipherDev/ComfyUI-Sentinel/HEAD/sentinel-web/register.html -------------------------------------------------------------------------------- /sentinel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucipherDev/ComfyUI-Sentinel/HEAD/sentinel.py -------------------------------------------------------------------------------- /utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucipherDev/ComfyUI-Sentinel/HEAD/utils/__init__.py -------------------------------------------------------------------------------- /utils/access_control.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucipherDev/ComfyUI-Sentinel/HEAD/utils/access_control.py -------------------------------------------------------------------------------- /utils/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucipherDev/ComfyUI-Sentinel/HEAD/utils/config.py -------------------------------------------------------------------------------- /utils/force_https.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucipherDev/ComfyUI-Sentinel/HEAD/utils/force_https.py -------------------------------------------------------------------------------- /utils/ip_filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucipherDev/ComfyUI-Sentinel/HEAD/utils/ip_filter.py -------------------------------------------------------------------------------- /utils/jwt_auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucipherDev/ComfyUI-Sentinel/HEAD/utils/jwt_auth.py -------------------------------------------------------------------------------- /utils/logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucipherDev/ComfyUI-Sentinel/HEAD/utils/logger.py -------------------------------------------------------------------------------- /utils/sanitizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucipherDev/ComfyUI-Sentinel/HEAD/utils/sanitizer.py -------------------------------------------------------------------------------- /utils/timeout.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucipherDev/ComfyUI-Sentinel/HEAD/utils/timeout.py -------------------------------------------------------------------------------- /utils/users_db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucipherDev/ComfyUI-Sentinel/HEAD/utils/users_db.py -------------------------------------------------------------------------------- /utils/validate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucipherDev/ComfyUI-Sentinel/HEAD/utils/validate.py -------------------------------------------------------------------------------- /web/js/injectCSS.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucipherDev/ComfyUI-Sentinel/HEAD/web/js/injectCSS.js -------------------------------------------------------------------------------- /web/js/logout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LucipherDev/ComfyUI-Sentinel/HEAD/web/js/logout.js --------------------------------------------------------------------------------