forked from galaxyproject/galaxy
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Refactor galaxy.files plugin + config handling.
- Downstream I want a way to load plugins from outside the ConfiguredFileSources class. - Adds some more typing as I went in there and refactored things.
- Loading branch information
Showing
9 changed files
with
153 additions
and
112 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,106 @@ | ||
from typing import ( | ||
List, | ||
Optional, | ||
TYPE_CHECKING, | ||
) | ||
|
||
from galaxy.util.config_parsers import parse_allowlist_ips | ||
from galaxy.util.plugin_config import ( | ||
load_plugins, | ||
PluginConfigSource, | ||
plugins_dict, | ||
) | ||
|
||
if TYPE_CHECKING: | ||
from galaxy.files.sources import BaseFilesSource | ||
|
||
|
||
class FileSourcePluginsConfig: | ||
symlink_allowlist: List[str] | ||
fetch_url_allowlist: List[str] | ||
library_import_dir: Optional[str] | ||
user_library_import_dir: Optional[str] | ||
ftp_upload_dir: Optional[str] | ||
ftp_upload_purge: bool | ||
|
||
def __init__( | ||
self, | ||
symlink_allowlist=None, | ||
fetch_url_allowlist=None, | ||
library_import_dir=None, | ||
user_library_import_dir=None, | ||
ftp_upload_dir=None, | ||
ftp_upload_purge=True, | ||
): | ||
symlink_allowlist = symlink_allowlist or [] | ||
fetch_url_allowlist = fetch_url_allowlist or [] | ||
self.symlink_allowlist = symlink_allowlist | ||
self.fetch_url_allowlist = fetch_url_allowlist | ||
self.library_import_dir = library_import_dir | ||
self.user_library_import_dir = user_library_import_dir | ||
self.ftp_upload_dir = ftp_upload_dir | ||
self.ftp_upload_purge = ftp_upload_purge | ||
|
||
@staticmethod | ||
def from_app_config(config): | ||
# Formalize what we read in from config to create a more clear interface | ||
# for this component. | ||
kwds = {} | ||
kwds["symlink_allowlist"] = config.user_library_import_symlink_allowlist | ||
kwds["fetch_url_allowlist"] = [str(ip) for ip in config.fetch_url_allowlist_ips] | ||
kwds["library_import_dir"] = config.library_import_dir | ||
kwds["user_library_import_dir"] = config.user_library_import_dir | ||
kwds["ftp_upload_dir"] = config.ftp_upload_dir | ||
kwds["ftp_upload_purge"] = config.ftp_upload_purge | ||
return FileSourcePluginsConfig(**kwds) | ||
|
||
def to_dict(self): | ||
return { | ||
"symlink_allowlist": self.symlink_allowlist, | ||
"fetch_url_allowlist": self.fetch_url_allowlist, | ||
"library_import_dir": self.library_import_dir, | ||
"user_library_import_dir": self.user_library_import_dir, | ||
"ftp_upload_dir": self.ftp_upload_dir, | ||
"ftp_upload_purge": self.ftp_upload_purge, | ||
} | ||
|
||
@staticmethod | ||
def from_dict(as_dict): | ||
return FileSourcePluginsConfig( | ||
symlink_allowlist=as_dict["symlink_allowlist"], | ||
fetch_url_allowlist=parse_allowlist_ips(as_dict["fetch_url_allowlist"]), | ||
library_import_dir=as_dict["library_import_dir"], | ||
user_library_import_dir=as_dict["user_library_import_dir"], | ||
ftp_upload_dir=as_dict["ftp_upload_dir"], | ||
ftp_upload_purge=as_dict["ftp_upload_purge"], | ||
) | ||
|
||
|
||
class FileSourcePluginLoader: | ||
|
||
def __init__(self): | ||
self._plugin_classes = self._file_source_plugins_dict() | ||
|
||
def _file_source_plugins_dict(self): | ||
import galaxy.files.sources | ||
|
||
return plugins_dict(galaxy.files.sources, "plugin_type") | ||
|
||
def load_plugins( | ||
self, plugin_source: PluginConfigSource, file_source_plugin_config: FileSourcePluginsConfig | ||
) -> List["BaseFilesSource"]: | ||
extra_kwds = { | ||
"file_sources_config": file_source_plugin_config, | ||
} | ||
return load_plugins( | ||
self._plugin_classes, | ||
plugin_source, | ||
extra_kwds, | ||
dict_to_list_key="id", | ||
) | ||
|
||
|
||
__all__ = ( | ||
"FileSourcePluginLoader", | ||
"FileSourcePluginsConfig", | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.