revise /customnode/installed api (#1398)

* revise /customnode/installed

improved: don't fetch data from cnr for the api
improved: change format {<cnr id>: <version>} -> {<module>: [<version>, <cnr id>]}

* fix condition

* improved: add `mode=imported` for startup snapshot

`/customnode/installed` - current snapshot
`/customnode/installed?mode=imported` - startup snapshot

* improved: move cache dir to user directory

* modified: /customnodes/installed
- show whole nodes including disabled
- format changed `key -> list` to `key -> dict`

* fixed: doesn't show disabled node pack properly.

* Update workflow-metadata.js

---------

Co-authored-by: huchenlei <huchenlei@proton.me>
This commit is contained in:
Dr.Lt.Data
2025-01-09 09:50:58 +09:00
committed by GitHub
parent ad9c35e44b
commit 0202cf07d5
5 changed files with 104 additions and 17 deletions

View File

@@ -537,17 +537,18 @@ def populate_markdown(x):
x['title'] = manager_util.sanitize_tag(x['title'])
# freeze imported version
startup_time_installed_node_packs = core.get_installed_node_packs()
@routes.get("/customnode/installed")
async def installed_list(request):
unified_manager = core.unified_manager
mode = request.query.get('mode', 'default')
await unified_manager.reload('cache')
await unified_manager.get_custom_nodes('default', 'cache')
if mode == 'imported':
res = startup_time_installed_node_packs
else:
res = core.get_installed_node_packs()
return web.json_response({
node_id: package.version if package.is_from_cnr else package.get_commit_hash()
for node_id, package in unified_manager.installed_node_packages.items() if not package.disabled
}, content_type='application/json')
return web.json_response(res, content_type='application/json')
@routes.get("/customnode/getlist")