将生成的PDF上传到Google云端硬盘

时间:2016-03-08 14:23:59

标签: google-app-engine pdf google-drive-api google-cloud-storage

我有一个GAE应用程序,用户可以在其中生成PDF。该文档通过jsPDF在客户端生成。我正在尝试通过Python Drive API找到将生成的文档上传到Google云端硬盘的方法。

问题在于,当生成PDF时,它也会自动下载到用户的PC,因此我无法访问该文件,也无法将其上传到云端硬盘。我目前首先尝试将其保存到Google云端存储,但是当PDF上传到GCS时,PDF似乎总是被破坏(无法打开)。

这就是我如何获得' raw'来自生成的PDF的数据:

var pdfOut=doc.output();

然后我尝试将该数据写入GCS上的pdf文件:

function insertObject(content) {
        const boundary = '-------314159265358979323846';
        const delimiter = "\r\n--" + boundary + "\r\n";
        const close_delim = "\r\n--" + boundary + "--";

          var contentType = 'application/pdf';
          var metadata = {
            'name': 'testUpload.pdf',
            'mimeType': contentType
          };

          var base64Data = btoa(content);
          var multipartRequestBody =
            delimiter +
            'Content-Type: application/json\r\n\r\n' +
            JSON.stringify(metadata) +
            delimiter +
            'Content-Type: ' + contentType + '\r\n' +
            'Content-Transfer-Encoding: base64\r\n' +
            '\r\n' +
            base64Data +
            close_delim;

          var request = gapi.client.request({
            'path': '/upload/storage/' + 'v1' + '/b/' + BUCKET + '/o',
            'method': 'POST',
            'params': {'uploadType': 'multipart'},
            'headers': {
              'Content-Type': 'multipart/mixed; boundary="' + boundary       + '"'
            },
            'body': multipartRequestBody});

          try{
            //Execute the insert object request
            executeRequest(request, 'insertObject');
            //Store the name of the inserted object       
          }
          catch(e) {
            alert('An error has occurred: ' + e.message);
          }

      }

此代码直接来自Google的示例。

这是正确的方法吗?如果是,我该怎么做才能“摧毁”#39; PDF在这个过程中?或者还有其他解决办法吗?

谢谢!

更新:

显然,PDF毕竟已正确上传到GCS。浏览器出现问题,导致无法正常打开。

但是,似乎Python Google Drive API无法从网址上传文件,因此无论如何都无法使用此方法。

我应该尝试什么想法?

0 个答案:

没有答案