Warning

This document is for an in-development version of Galaxy. You can alternatively view this page in the latest release if it exists or view the top of the latest release's documentation.

Source code for galaxy.files.sources.googlecloudstorage

try:
    from fs_gcsfs import GCSFS
    from google.cloud.storage import Client
    from google.oauth2.credentials import Credentials
except ImportError:
    GCSFS = None

from typing import (
    cast,
    Optional,
)

from . import (
    FilesSourceOptions,
    FilesSourceProperties,
)
from ._pyfilesystem2 import PyFilesystem2FilesSource


class GoogleCloudStorageFilesSourceProperties(FilesSourceProperties, total=False):
    bucket_name: str
    root_path: str
    project: str
    anonymous: bool


[docs]class GoogleCloudStorageFilesSource(PyFilesystem2FilesSource): plugin_type = "googlecloudstorage" required_module = GCSFS required_package = "fs-gcsfs" def _open_fs(self, user_context=None, opts: Optional[FilesSourceOptions] = None): props = self._serialization_props(user_context) extra_props: GoogleCloudStorageFilesSourceProperties = cast( GoogleCloudStorageFilesSourceProperties, opts.extra_props or {} if opts else {} ) bucket_name = props.pop("bucket_name", None) root_path = props.pop("root_path", None) project = props.pop("project", None) args = {} if props.get("anonymous"): args["client"] = Client.create_anonymous_client() elif props.get("token"): args["client"] = Client(project=project, credentials=Credentials(**props)) handle = GCSFS(bucket_name, root_path=root_path, retry=0, **{**args, **extra_props}) return handle
__all__ = ("GoogleCloudStorageFilesSource",)