plugin.py 8.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250
  1. from collections.abc import Sequence
  2. from core.plugin.entities.bundle import PluginBundleDependency
  3. from core.plugin.entities.plugin import (
  4. GenericProviderID,
  5. MissingPluginDependency,
  6. PluginDeclaration,
  7. PluginEntity,
  8. PluginInstallation,
  9. PluginInstallationSource,
  10. )
  11. from core.plugin.entities.plugin_daemon import PluginInstallTask, PluginInstallTaskStartResponse, PluginUploadResponse
  12. from core.plugin.manager.base import BasePluginManager
  13. class PluginInstallationManager(BasePluginManager):
  14. def fetch_plugin_by_identifier(
  15. self,
  16. tenant_id: str,
  17. identifier: str,
  18. ) -> bool:
  19. return self._request_with_plugin_daemon_response(
  20. "GET",
  21. f"plugin/{tenant_id}/management/fetch/identifier",
  22. bool,
  23. params={"plugin_unique_identifier": identifier},
  24. )
  25. def list_plugins(self, tenant_id: str) -> list[PluginEntity]:
  26. return self._request_with_plugin_daemon_response(
  27. "GET",
  28. f"plugin/{tenant_id}/management/list",
  29. list[PluginEntity],
  30. params={"page": 1, "page_size": 256},
  31. )
  32. def upload_pkg(
  33. self,
  34. tenant_id: str,
  35. pkg: bytes,
  36. verify_signature: bool = False,
  37. ) -> PluginUploadResponse:
  38. """
  39. Upload a plugin package and return the plugin unique identifier.
  40. """
  41. body = {
  42. "dify_pkg": ("dify_pkg", pkg, "application/octet-stream"),
  43. }
  44. data = {
  45. "verify_signature": "true" if verify_signature else "false",
  46. }
  47. return self._request_with_plugin_daemon_response(
  48. "POST",
  49. f"plugin/{tenant_id}/management/install/upload/package",
  50. PluginUploadResponse,
  51. files=body,
  52. data=data,
  53. )
  54. def upload_bundle(
  55. self,
  56. tenant_id: str,
  57. bundle: bytes,
  58. verify_signature: bool = False,
  59. ) -> Sequence[PluginBundleDependency]:
  60. """
  61. Upload a plugin bundle and return the dependencies.
  62. """
  63. return self._request_with_plugin_daemon_response(
  64. "POST",
  65. f"plugin/{tenant_id}/management/install/upload/bundle",
  66. list[PluginBundleDependency],
  67. files={"dify_bundle": ("dify_bundle", bundle, "application/octet-stream")},
  68. data={"verify_signature": "true" if verify_signature else "false"},
  69. )
  70. def install_from_identifiers(
  71. self,
  72. tenant_id: str,
  73. identifiers: Sequence[str],
  74. source: PluginInstallationSource,
  75. metas: list[dict],
  76. ) -> PluginInstallTaskStartResponse:
  77. """
  78. Install a plugin from an identifier.
  79. """
  80. # exception will be raised if the request failed
  81. return self._request_with_plugin_daemon_response(
  82. "POST",
  83. f"plugin/{tenant_id}/management/install/identifiers",
  84. PluginInstallTaskStartResponse,
  85. data={
  86. "plugin_unique_identifiers": identifiers,
  87. "source": source,
  88. "metas": metas,
  89. },
  90. headers={"Content-Type": "application/json"},
  91. )
  92. def fetch_plugin_installation_tasks(self, tenant_id: str, page: int, page_size: int) -> Sequence[PluginInstallTask]:
  93. """
  94. Fetch plugin installation tasks.
  95. """
  96. return self._request_with_plugin_daemon_response(
  97. "GET",
  98. f"plugin/{tenant_id}/management/install/tasks",
  99. list[PluginInstallTask],
  100. params={"page": page, "page_size": page_size},
  101. )
  102. def fetch_plugin_installation_task(self, tenant_id: str, task_id: str) -> PluginInstallTask:
  103. """
  104. Fetch a plugin installation task.
  105. """
  106. return self._request_with_plugin_daemon_response(
  107. "GET",
  108. f"plugin/{tenant_id}/management/install/tasks/{task_id}",
  109. PluginInstallTask,
  110. )
  111. def delete_plugin_installation_task(self, tenant_id: str, task_id: str) -> bool:
  112. """
  113. Delete a plugin installation task.
  114. """
  115. return self._request_with_plugin_daemon_response(
  116. "POST",
  117. f"plugin/{tenant_id}/management/install/tasks/{task_id}/delete",
  118. bool,
  119. )
  120. def delete_all_plugin_installation_task_items(self, tenant_id: str) -> bool:
  121. """
  122. Delete all plugin installation task items.
  123. """
  124. return self._request_with_plugin_daemon_response(
  125. "POST",
  126. f"plugin/{tenant_id}/management/install/tasks/delete_all",
  127. bool,
  128. )
  129. def delete_plugin_installation_task_item(self, tenant_id: str, task_id: str, identifier: str) -> bool:
  130. """
  131. Delete a plugin installation task item.
  132. """
  133. return self._request_with_plugin_daemon_response(
  134. "POST",
  135. f"plugin/{tenant_id}/management/install/tasks/{task_id}/delete/{identifier}",
  136. bool,
  137. )
  138. def fetch_plugin_manifest(self, tenant_id: str, plugin_unique_identifier: str) -> PluginDeclaration:
  139. """
  140. Fetch a plugin manifest.
  141. """
  142. return self._request_with_plugin_daemon_response(
  143. "GET",
  144. f"plugin/{tenant_id}/management/fetch/manifest",
  145. PluginDeclaration,
  146. params={"plugin_unique_identifier": plugin_unique_identifier},
  147. )
  148. def fetch_plugin_installation_by_ids(
  149. self, tenant_id: str, plugin_ids: Sequence[str]
  150. ) -> Sequence[PluginInstallation]:
  151. """
  152. Fetch plugin installations by ids.
  153. """
  154. return self._request_with_plugin_daemon_response(
  155. "POST",
  156. f"plugin/{tenant_id}/management/installation/fetch/batch",
  157. list[PluginInstallation],
  158. data={"plugin_ids": plugin_ids},
  159. headers={"Content-Type": "application/json"},
  160. )
  161. def fetch_missing_dependencies(
  162. self, tenant_id: str, plugin_unique_identifiers: list[str]
  163. ) -> list[MissingPluginDependency]:
  164. """
  165. Fetch missing dependencies
  166. """
  167. return self._request_with_plugin_daemon_response(
  168. "POST",
  169. f"plugin/{tenant_id}/management/installation/missing",
  170. list[MissingPluginDependency],
  171. data={"plugin_unique_identifiers": plugin_unique_identifiers},
  172. headers={"Content-Type": "application/json"},
  173. )
  174. def uninstall(self, tenant_id: str, plugin_installation_id: str) -> bool:
  175. """
  176. Uninstall a plugin.
  177. """
  178. return self._request_with_plugin_daemon_response(
  179. "POST",
  180. f"plugin/{tenant_id}/management/uninstall",
  181. bool,
  182. data={
  183. "plugin_installation_id": plugin_installation_id,
  184. },
  185. headers={"Content-Type": "application/json"},
  186. )
  187. def upgrade_plugin(
  188. self,
  189. tenant_id: str,
  190. original_plugin_unique_identifier: str,
  191. new_plugin_unique_identifier: str,
  192. source: PluginInstallationSource,
  193. meta: dict,
  194. ) -> PluginInstallTaskStartResponse:
  195. """
  196. Upgrade a plugin.
  197. """
  198. return self._request_with_plugin_daemon_response(
  199. "POST",
  200. f"plugin/{tenant_id}/management/install/upgrade",
  201. PluginInstallTaskStartResponse,
  202. data={
  203. "original_plugin_unique_identifier": original_plugin_unique_identifier,
  204. "new_plugin_unique_identifier": new_plugin_unique_identifier,
  205. "source": source,
  206. "meta": meta,
  207. },
  208. headers={"Content-Type": "application/json"},
  209. )
  210. def check_tools_existence(self, tenant_id: str, provider_ids: Sequence[GenericProviderID]) -> Sequence[bool]:
  211. """
  212. Check if the tools exist
  213. """
  214. return self._request_with_plugin_daemon_response(
  215. "POST",
  216. f"plugin/{tenant_id}/management/tools/check_existence",
  217. list[bool],
  218. data={
  219. "provider_ids": [
  220. {
  221. "plugin_id": provider_id.plugin_id,
  222. "provider_name": provider_id.provider_name,
  223. }
  224. for provider_id in provider_ids
  225. ]
  226. },
  227. headers={"Content-Type": "application/json"},
  228. )