Sfoglia il codice sorgente

fix(plugin_service): Add marketplace enabled check before plugin operations (#18806)

tags/1.3.1
Yeuoly 6 mesi fa
parent
commit
f6305858a5
Nessun account collegato all'indirizzo email del committer
1 ha cambiato i file con 9 aggiunte e 0 eliminazioni
  1. 9
    0
      api/services/plugin/plugin_service.py

+ 9
- 0
api/services/plugin/plugin_service.py Vedi File

@@ -190,6 +190,9 @@ class PluginService:
"""
Upgrade plugin with marketplace
"""
if not dify_config.MARKETPLACE_ENABLED:
raise ValueError("marketplace is not enabled")

if original_plugin_unique_identifier == new_plugin_unique_identifier:
raise ValueError("you should not upgrade plugin with the same plugin")

@@ -316,6 +319,9 @@ class PluginService:
"""
Fetch marketplace package
"""
if not dify_config.MARKETPLACE_ENABLED:
raise ValueError("marketplace is not enabled")

manager = PluginInstallationManager()
try:
declaration = manager.fetch_plugin_manifest(tenant_id, plugin_unique_identifier)
@@ -333,6 +339,9 @@ class PluginService:
Install plugin from marketplace package files,
returns installation task id
"""
if not dify_config.MARKETPLACE_ENABLED:
raise ValueError("marketplace is not enabled")

manager = PluginInstallationManager()

# check if already downloaded

Loading…
Annulla
Salva