mirror of
https://github.com/inventree/InvenTree
synced 2024-08-30 18:33:04 +00:00
plugin settings as a module
This commit is contained in:
parent
f74cd5901d
commit
8220ccb385
@ -660,7 +660,7 @@ INTEGRATION_PLUGIN_LIST = {}
|
|||||||
|
|
||||||
for plugin in INTEGRATION_PLUGINS:
|
for plugin in INTEGRATION_PLUGINS:
|
||||||
plugin = plugin()
|
plugin = plugin()
|
||||||
if plugin.has_settings:
|
|
||||||
INTEGRATION_PLUGIN_LIST[plugin.plugin_name()] = plugin
|
INTEGRATION_PLUGIN_LIST[plugin.plugin_name()] = plugin
|
||||||
|
if plugin.module('settings') and plugin.has_settings:
|
||||||
INTEGRATION_PLUGIN_SETTING[plugin.plugin_name()] = plugin.settingspatterns
|
INTEGRATION_PLUGIN_SETTING[plugin.plugin_name()] = plugin.settingspatterns
|
||||||
INTEGRATION_PLUGIN_SETTINGS.update(plugin.settingspatterns)
|
INTEGRATION_PLUGIN_SETTINGS.update(plugin.settingspatterns)
|
||||||
|
@ -10,6 +10,36 @@ import plugins.plugin as plugin
|
|||||||
logger = logging.getLogger("inventree")
|
logger = logging.getLogger("inventree")
|
||||||
|
|
||||||
|
|
||||||
|
class SettingsMixin:
|
||||||
|
"""Mixin that enables settings for the plugin"""
|
||||||
|
def __init__(self):
|
||||||
|
super().__init__()
|
||||||
|
|
||||||
|
self.add_mixin('settings')
|
||||||
|
self.settings = self.setup_settings()
|
||||||
|
|
||||||
|
def setup_settings(self):
|
||||||
|
"""
|
||||||
|
setup settings for this plugin
|
||||||
|
"""
|
||||||
|
if self.SETTINGS:
|
||||||
|
return self.SETTINGS
|
||||||
|
return None
|
||||||
|
|
||||||
|
@property
|
||||||
|
def has_settings(self):
|
||||||
|
"""
|
||||||
|
does this plugin use custom settings
|
||||||
|
"""
|
||||||
|
return bool(self.settings)
|
||||||
|
|
||||||
|
@property
|
||||||
|
def settingspatterns(self):
|
||||||
|
if self.has_settings:
|
||||||
|
return {f'PLUGIN_{self.plugin_name().upper()}_{key}': value for key, value in self.settings.items()}
|
||||||
|
return None
|
||||||
|
|
||||||
|
|
||||||
class IntegrationPlugin(plugin.InvenTreePlugin):
|
class IntegrationPlugin(plugin.InvenTreePlugin):
|
||||||
"""
|
"""
|
||||||
The IntegrationPlugin class is used to integrate with 3rd party software
|
The IntegrationPlugin class is used to integrate with 3rd party software
|
||||||
@ -20,7 +50,6 @@ class IntegrationPlugin(plugin.InvenTreePlugin):
|
|||||||
super().__init__()
|
super().__init__()
|
||||||
|
|
||||||
self.urls = self.setup_urls()
|
self.urls = self.setup_urls()
|
||||||
self.settings = self.setup_settings()
|
|
||||||
|
|
||||||
def add_mixin(self, key: str):
|
def add_mixin(self, key: str):
|
||||||
if not hasattr(self, 'mixins'):
|
if not hasattr(self, 'mixins'):
|
||||||
|
Loading…
Reference in New Issue
Block a user