"""
Upload models to the google cloud bucket (developers only).
"""
import os
import glob
import json
from ..exceptions import UploadError
try:
    from google.cloud import storage
except ImportError:
    storage = None
CONSTRUE_BUCKET = "construe"
GOOGLE_CREDENTIALS = "GOOGLE_APPLICATION_CREDENTIALS"
[docs]
def upload(name, path, client=None, bucket=CONSTRUE_BUCKET):
    """
    Upload data from source path to a bucket with destination name.
    """
    if client is None:
        client = connect_storage()
    if not os.path.exists(path) or not os.path.isfile(path):
        raise UploadError("no zip file exists at " + path)
    try:
        bucket = client.get_bucket(bucket)
        blob = bucket.blob(name)
        blob.upload_from_filename(path)
    except Exception as e:
        raise UploadError(f"could not upload {name}") from e
    return blob.public_url 
[docs]
def connect_storage(credentials=None):
    """
    Create a google cloud storage client and connect.
    """
    # Attempt to fetch credentials from environment
    credentials = credentials or os.environ.get(GOOGLE_CREDENTIALS, None)
    # Attempt to get credentials from the .secret folder
    credentials = credentials or find_service_account()
    if credentials is None:
        raise UploadError(
            "could not find service account credentials: "
            "set either $GOOGLE_APPLICATION_CREDENTIALS to the path "
            "or store the credentials in the .secret folder"
        )
    # Cannot connect without the storage library.
    if storage is None:
        raise ImportError(
            "the google.cloud.storage module is required, install using pip"
        )
    return storage.Client.from_service_account_json(credentials) 
[docs]
def find_service_account():
    secret = os.path.abspath(os.path.join(
        os.path.dirname(__file__),
        "..", "..", ".secret", "*.json"
    ))
    for path in glob.glob(secret):
        with open(path, "r") as f:
            data = json.load(f)
            if "universe_domain" in data and data["universe_domain"] == "googleapis.com":
                return path
    return None