mirror of
https://github.com/inventree/InvenTree
synced 2024-08-30 18:33:04 +00:00
66 lines
1.5 KiB
Python
66 lines
1.5 KiB
Python
# -*- coding: utf-8 -*-
|
|
|
|
import inspect
|
|
import importlib
|
|
import pkgutil
|
|
|
|
# Action plugins
|
|
import plugins.action as action
|
|
from plugins.action.action import ActionPlugin
|
|
|
|
|
|
def iter_namespace(pkg):
|
|
|
|
return pkgutil.iter_modules(pkg.__path__, pkg.__name__ + ".")
|
|
|
|
|
|
def get_modules(pkg):
|
|
# Return all modules in a given package
|
|
return [importlib.import_module(name) for finder, name, ispkg in iter_namespace(pkg)]
|
|
|
|
|
|
def get_classes(module):
|
|
# Return all classes in a given module
|
|
return inspect.getmembers(module, inspect.isclass)
|
|
|
|
|
|
def get_plugins(pkg, baseclass):
|
|
"""
|
|
Return a list of all modules under a given package.
|
|
|
|
- Modules must be a subclass of the provided 'baseclass'
|
|
- Modules must have a non-empty PLUGIN_NAME parameter
|
|
"""
|
|
|
|
plugins = []
|
|
|
|
modules = get_modules(pkg)
|
|
|
|
# Iterate through each module in the package
|
|
for mod in modules:
|
|
# Iterate through each class in the module
|
|
for item in get_classes(mod):
|
|
plugin = item[1]
|
|
if issubclass(plugin, baseclass) and plugin.PLUGIN_NAME:
|
|
plugins.append(plugin)
|
|
|
|
return plugins
|
|
|
|
|
|
def load_action_plugins():
|
|
"""
|
|
Return a list of all registered action plugins
|
|
"""
|
|
|
|
print("Loading action plugins")
|
|
|
|
plugins = get_plugins(action, ActionPlugin)
|
|
|
|
if len(plugins) > 0:
|
|
print("Discovered {n} action plugins:".format(n=len(plugins)))
|
|
|
|
for ap in plugins:
|
|
print(" - {ap}".format(ap=ap.PLUGIN_NAME))
|
|
|
|
return plugins
|