当前位置: 首页 > 知识库问答 >
问题:

使用Python blobstore API上传文件时选择Google云存储对象名称

雷骁
2023-03-14

流的工作方式就像存储到BlobStore一样。客户端请求上载URL,BlobStore.create_upload_url(...)创建它,客户端通过多部分POST上载文件,然后服务器重定向到我的GAE应用程序中的上载处理程序。

问题是,虽然我必须选择GCS bucket(它是create_upload_url调用的参数之一),但我不知道如何选择文件名。我想把它分解成文件夹。灵感来自

Google App Engine Blobstore到Google Cloud Storage迁移工具,其中文件名被破坏,以便可以管理GCS“文件夹”的浏览。

我只知道一种命名GCS文件的方法--放弃blobstore API。相反,客户机将把文件上传到GAE处理程序,该处理程序将使用lib.cloudstorage将文件数据写入GCS--与引用的迁移工具所做的完全一样。

我会失去GCS的好东西,比如在上传过程中对错误进行重试。

问题是:有没有一种方法可以将文件直接上传到GCS,同时影响最终的GCS对象的命名方式。

共有1个答案

郑光济
2023-03-14
    null
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>'gcs_upload'</title>
</head>
<body>
    <form action="http://storage.googleapis.com/{{ form_bucket }}"
          method="post" enctype="multipart/form-data">
        <input type="text" name="key" value="">
        <input type="hidden" name="GoogleAccessId" value="{{ form_access_id }}">
        <input type="hidden" name="acl" value="bucket-owner-read">
        <input type="hidden" name="success_action_redirect" value="{{ form_succes_redirect }}">
        <input type="hidden" name="policy" value="{{ form_policy }}">
        <input type="hidden" name="signature" value="{{ form_signature }}">
        <input type="file" name="file">
        <input type="submit" value="Upload">
    </form>
</body>
</html>
class GcsUpload(BaseHandler):

    def get(self):

        default_bucket = app_identity.get_default_gcs_bucket_name()
        google_access_id = app_identity.get_service_account_name()
        succes_redirect = 'http://www.example.com/success'
        policy_string = """
        {"expiration": "2015-06-22T18:11:11Z",
                  "conditions": [
                      ["starts-with", "$key", ""],
                      {"acl": "bucket-owner-read"},
                      {"success_action_redirect": "%s"},
                  ]}""" % succes_redirect

        policy = base64.b64encode(policy_string)
        _, signature_bytes = app_identity.sign_blob(policy)
        signature = base64.b64encode(signature_bytes)

        self.render_template('gcs_upload.html', form_bucket=default_bucket, form_succes_redirect=succes_redirect,
                             form_access_id=google_access_id, form_signature=signature, form_policy=policy)
 类似资料: