提问者:小点点

上传文件到我的谷歌驱动器与谷歌应用脚本(无形式IN谷歌)


所以基本上任务很简单,但是我没有找到任何可行的解决方案。我的网站上有一个巨大的上传脚本(目前localhost),但是让我们把所有的复杂性降低到唯一必要的程度。

所以我只想上传一个文件到谷歌云端硬盘与谷歌应用程序脚本和接收它的URL保存在一个变量,在我的功能稍后点的信息工作。

现在的问题是,我已经在我的网站上的形式,我不希望里面的形式script.google.com额外的html,我想转移我的用户输入到谷歌应用脚本,然后上传到谷歌驱动器和返回的网址回到我的网站,我可以保存到一个变量。

我现在的问题是,我不能把所有的东西放在一起。

这是我网站上的表格(简化):

<form name="myForm" method="post">
            <!-- <form name="first-form"> -->

  <input type="text" placeholder="Name" id="myName">
  <input type="file" name="myFile" id="myFile">
  <button onclick="UploadFile()" type="submit">submit</button>

</form>

那么如何在google Drive中上传我的信息并取回结果呢?如何在不使用iFrame或其他任何东西的情况下推送Google App Script中的数据?

谢谢你!

****工作示例,如果html在scripts.google.com****

gs

function doGet(e) {
  return HtmlService.createHtmlOutputFromFile('forms.html').setTitle("Google File Upload by CTRLQ.org");
}


function uploadFileToGoogleDrive(data, file, name, email) {
  
  try {
    
    var dropbox = "Received Files";
    var folder, folders = DriveApp.getFoldersByName(dropbox);
    
    if (folders.hasNext()) {
      folder = folders.next();
    } else {
      folder = DriveApp.createFolder(dropbox);
    }
    
    /* Credit: www.labnol.org/awesome */
    
    var contentType = data.substring(5,data.indexOf(';')),
        bytes = Utilities.base64Decode(data.substr(data.indexOf('base64,')+7)),
        blob = Utilities.newBlob(bytes, contentType, file),
        file = folder.createFolder([name, email].join(" ")).createFile(blob);
    
    return "OK";
    
  } catch (f) {
    return f.toString();
  }
  
}

apps. googlescript中的html

<!DOCTYPE html>
<html>
  <head>
    <base target="_blank">
    <meta name="viewport" content="width=device-width, initial-scale=1.0" />
    <title>Google File Upload by CTRLQ.org</title>
    <link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
    <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/materialize/0.97.5/css/materialize.min.css">
    <style>
      .disclaimer{width: 480px; color:#646464;margin:20px auto;padding:0 16px;text-align:center;font:400 12px Roboto,Helvetica,Arial,sans-serif}.disclaimer a{color:#009688}#credit{display:none}
    </style>
  </head>
  <body>

    <!-- Written by Amit Agarwal amit@labnol.org --> 

    <form class="main" id="form" novalidate="novalidate" style="max-width: 480px;margin: 40px auto;">
      <div id="forminner">
        <div class="row">
          <div class="col s12">
            <h5 class="center-align teal-text">Upload Files to my Google Drive</h5>
            <p class="disclaimer">This <a href="http://www.labnol.org/internet/file-upload-google-forms/29170/">File Upload Form</a> (<a href="https://youtu.be/C_YBBupebvE">tutorial</a>) is powered by <a href="https://ctrlq.org/code/19747-google-forms-upload-files" target="_blank">Google Scripts</a></p>
          </div>
        </div>
        <div class="row">
          <div class="input-field col s12">
            <input id="name" type="text" name="Name" class="validate" required="" aria-required="true">
            <label for="name">Name</label>
          </div>
        </div>
        <div class="row">
          <div class="input-field col s12">
            <input id="email" type="email" name="Email" class="validate" required="" aria-required="true">
            <label for="email">Email Address</label>
          </div>
        </div>

        <div class="row">
          <div class="file-field input-field col s12">
            <div class="btn">
              <span>File</span>
              <input id="files" type="file">
            </div>
            <div class="file-path-wrapper">
              <input class="file-path validate" type="text" placeholder="Select a file on your computer">
            </div>
          </div>
        </div>

        <div class="row">
          <div class="input-field col s6">
            <button class="waves-effect waves-light btn submit-btn" type="submit" onclick="submitForm(); return false;">Submit</button>
          </div>   
        </div>
        <div class="row">
          <div class="input-field col s12" id = "progress">
          </div>
        </div>
      </div>
      <div id="success" style="display:none">
        <h5 class="left-align teal-text">File Uploaded</h5>
        <p>Your file has been successfully uploaded.</p>
        <p>The <a href="http://www.labnol.org/internet/file-upload-google-forms/29170/">pro version</a> (see <a href="">demo form</a>) includes a visual drag-n-drop form builder, CAPTCHAs, the form responses are saved in a Google Spreadsheet and respondents can upload multiple files of any size.</p>    
        <p class="center-align"><a  class="btn btn-large" href="https://gum.co/GA14?wanted=true" target="_blank">Upgrade to Pro</a></p>
      </div>
    </form>

    <div class="fixed-action-btn horizontal" style="bottom: 45px; right: 24px;">
      <a class="btn-floating btn-large red">
        <i class="large material-icons">menu</i>
      </a>
      <ul>
        <li><a class="btn-floating red"  href="https://gum.co/GA14" target="_blank" title="Buy License - File Upload Form"><i class="material-icons">monetization_on</i></a></li>
        <li><a class="btn-floating blue"  href="https://youtu.be/C_YBBupebvE" target="_blank" title="Video Tutorial"><i class="material-icons">video_library</i></a></li>
        <li><a class="btn-floating green" href="http://www.labnol.org/internet/file-upload-google-forms/29170/" target="_blank" title="How to Create File Upload Forms"><i class="material-icons">help</i></a></li>
      </ul>
    </div>

    <script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/2.2.0/jquery.min.js"></script>
    <script src="https://cdnjs.cloudflare.com/ajax/libs/materialize/0.97.5/js/materialize.min.js"></script>
    <script src="https://gumroad.com/js/gumroad.js"></script>

    <script>

      var file, 
          reader = new FileReader();

      reader.onloadend = function(e) {
        if (e.target.error != null) {
          showError("File " + file.name + " could not be read.");
          return;
        } else {
          google.script.run
            .withSuccessHandler(showSuccess)
            .uploadFileToGoogleDrive(e.target.result, file.name, $('input#name').val(), $('input#email').val());
        }
      };

      function showSuccess(e) {
        if (e === "OK") { 
          $('#forminner').hide();
          $('#success').show();
        } else {
          showError(e);
        }
      }

      function submitForm() {

        var files = $('#files')[0].files;

        if (files.length === 0) {
          showError("Please select a file to upload");
          return;
        }

        file = files[0];

        if (file.size > 1024 * 1024 * 5) {
          showError("The file size should be < 5 MB. Please <a href='http://www.labnol.org/internet/file-upload-google-forms/29170/' target='_blank'>upgrade to premium</a> for receiving larger files in Google Drive");
          return;
        }

        showMessage("Uploading file..");

        reader.readAsDataURL(file);

      }

      function showError(e) {
        $('#progress').addClass('red-text').html(e);
      }

      function showMessage(e) {
        $('#progress').removeClass('red-text').html(e);
      }


    </script>

  </body>

</html>

正如建议的那样,我将在这里描述这个过程。

所以我们在网站上:www.example.com,有一个带有文本输入字段和文件字段的表单。假设我们放入一个图像并将其称为示例。现在,如果我们按提交,我想将图像上传到谷歌驱动器,没有任何oAuth(这就是为什么我们需要在这里使用谷歌应用程序脚本)并将其命名为我们在文本字段中键入的内容。上传完成后,我希望谷歌驱动器图像的url返回到网站,因此表单可以继续处理信息。我想将返回的url保存在var中,以便稍后将其保存在数据库中。这就是为什么我需要将结果返回到我的网站。

所以方案如下所示:

输入信息以在网站上形成-

------------------------------------------------ EDIT: ------------------

多亏了@Tanaike,我离我在这里挑战的目标更近了,所以为了看看我被困在哪里,我现在正在复制我的问题:

我采用了您示例中的脚本形式:

<form id="form">
  <input name="file" id="uploadfile" type="file">
  <input name="filename" id="filename" type="text">
  <input id="submit" type="submit">
</form>
<script>
const form = document.getElementById('form');
form.addEventListener('submit', e => {
  e.preventDefault();
  const file = form.file.files[0];
  const fr = new FileReader();
  fr.readAsArrayBuffer(file);
  fr.onload = f => {
    
    const url = "https://script.google.com/macros/s/###/exec";  // <--- Please set the URL of Web Apps.
    
    const qs = new URLSearchParams({filename: form.filename.value || file.name, mimeType: file.type});
    fetch(`${url}?${qs}`, {method: "POST", body: JSON.stringify([...new Int8Array(f.target.result)])})
    .then(res => res.json())
    .then(e => console.log(e))  // <--- You can retrieve the returned value here.
    .catch(err => console.log(err));
  }
});
</script>

对于谷歌脚本:

function doPost(e) {
  // const folderId = "###";  // Folder ID which is used for putting the file, if you need.

  const blob = Utilities.newBlob(JSON.parse(e.postData.contents), e.parameter.mimeType, e.parameter.filename);
  const file = DriveApp.getFolderById(folderId || "root").createFile(blob);
  const responseObj = {filename: file.getName(), fileId: file.getId(), fileUrl: file.getUrl()};
  return ContentService.createTextOutput(JSON.stringify(responseObj)).setMimeType(ContentService.MimeType.JSON);
}

现在,当我试图上传的东西,我有以下错误:CORS策略无法获取。所以我改变了这一部分以下并添加模式没有cors:

const qs = new URLSearchParams({filename: form.filename.value || file.name, mimeType: file.type});
        fetch(`${url}?${qs}`, {method: "POST", mode: "no-cors", body: JSON.stringify([...new Int8Array(f.target.result)])})

这奏效了。第二次尝试上传文件导致以下错误:它说:语法错误:输入意外结束

所以我更改了这一行,并从res. json中删除了括号

JSON.stringify([...new Int8Array(f.target.result)])})
        .then(res => res.json)

第三次尝试上传文件实际使用以下控制台结果:

ƒ json() { [native code] }

但是谷歌驱动器中没有上传文件。我在某个地方遗漏了一些东西。也许我们应该创建一个文件夹并将文件放在那里。

哦,还有另一个信息:当我在google app sript中运行doPost函数时,它说:

TypeError: Cannot read property 'postData' of undefined (line 13

EDIT2 -----------------------------------------

我加了https://drive.google.com/uc?export=download

假设我们上传文件test. mp3并将其称为testdata。这是我们收到的:

{
  "filename": "testdata",
  "fileId": "###some id##",
  "fileUrl": "https://drive.google.com/uc?export=download&id=###fileId###"
}

现在当我打开文件url时,浏览器会下载文件,但它的名称是:testdata,而不是testdata. mp3。缺少filetyp结尾。

第二个任务:如果你点击链接,我想在浏览器中打开文件,当它的mp3文件例如我想让你可以在webview中播放声音,就像它在这里:https://files.freemusicarchive.org/storage-freemusicarchive-org/music/Creative_Commons/Dead_Combo/CC_Affiliates_Mixtape_1/Dead_Combo_-_01_-_Povo_Que_Cas_Descalo.mp3

我希望你能指导我!


共3个答案

匿名用户

我相信你的目标如下。

  • 您的网站与Google帐户无关。它是独立的。
  • 您的网站有一个上传文件的表单。
  • 当用户提交表单时,您希望在未经授权的情况下将文件上传到您的Google Drive,并希望返回上传文件在Google Drive上的URL。
  • 关于“数据库”,这是您的数据库。您将把检索到的文件的URL放在客户端的“数据库”中。

在这种情况下,我认为使用Google Apps Script创建的Web Apps可以实现您的目标。

请执行以下流程。

Web Apps的示例脚本是Google Apps脚本。所以请创建一个Google Apps脚本项目。

如果你想直接创建它,请访问https://script.new/.在这种情况下,如果你没有登录谷歌,登录屏幕打开。所以请登录谷歌。通过这个,谷歌应用脚本的脚本编辑器打开。

请将以下脚本(Google Apps脚本)复制并粘贴到脚本编辑器。此脚本适用于Web应用程序。

请设置要放置文件的文件夹ID。

function doPost(e) {
  const folderId = "root";  // Or Folder ID which is used for putting the file instead of "root", if you need.

  const blob = Utilities.newBlob(JSON.parse(e.postData.contents), e.parameter.mimeType, e.parameter.filename);
  const file = DriveApp.getFolderById(folderId).createFile(blob);
  const responseObj = {filename: file.getName(), fileId: file.getId(), fileUrl: file.getUrl()};
  return ContentService.createTextOutput(JSON.stringify(responseObj)).setMimeType(ContentService.MimeType.JSON);
}
  • 在脚本编辑器上,通过“发布”打开一个对话框-
  1. 单击“审查权限”。
  2. 选择自己的帐户。
  3. 单击“此应用程序未验证”处的“高级”。
  4. 点击“前往###项目名称###(不安全)”
  5. 单击“允许”按钮。
  • 当您修改Google Apps脚本时,请重新部署为新版本。这样,修改后的脚本会反映到Web Apps中。请注意这一点。

请将Web应用程序的URL设置为以下脚本。

<form id="form">
  <input name="file" id="uploadfile" type="file">
  <input name="filename" id="filename" type="text">
  <input id="submit" type="submit">
</form>
<script>
const form = document.getElementById('form');
form.addEventListener('submit', e => {
  e.preventDefault();
  const file = form.file.files[0];
  const fr = new FileReader();
  fr.readAsArrayBuffer(file);
  fr.onload = f => {
    
    const url = "https://script.google.com/macros/s/###/exec";  // <--- Please set the URL of Web Apps.
    
    const qs = new URLSearchParams({filename: form.filename.value || file.name, mimeType: file.type});
    fetch(`${url}?${qs}`, {method: "POST", body: JSON.stringify([...new Int8Array(f.target.result)])})
    .then(res => res.json())
    .then(e => console.log(e))  // <--- You can retrieve the returned value here.
    .catch(err => console.log(err));
  }
});
</script>
  • 在客户端,当您从本地PC中选择一个文件并按下按钮时,该文件将通过在Web应用程序(服务器端)检索数据上传到您的Google云端硬盘。

运行上述脚本时,返回以下值。从中,您可以检索文件的URL。

{
  "filename": "### inputted filename ###",
  "fileId": "###",
  "fileUrl": "https://drive.google.com/file/d/###/view?usp=drivesdk"
}
  • 当您修改Web Apps的脚本时,请将Web Apps重新部署为新版本。这样,最新的脚本就会反映到Web Apps中。请注意这一点。
  • 在上述脚本中,最大文件大小为50MB。因为在当前阶段,在Google Apps脚本中,最大blob大小为50MB。
  • 网络应用程序
  • 使用Google Apps脚本利用Web Apps

匿名用户

https://stackoverflow.com/a/63391363/1585523答案中有很多有用的提示!谢谢你的分享。除了发布文件,我们还可以使用

在客户端:index. html

google.script.run.withSuccessHandler(fileName => {}).withFailureHandler(error => {}).saveInDrive(fileAsByteArray);

在服务器上:Code.gs

function saveInDrive(f) {
  const blob = Utilities.newBlob(f, "image/jpeg", "some-name");
  const file = DriveApp.getFolderById("root").createFile(blob);
  return file.getName()
}

在这种方法中,您甚至可以交换复杂的类型,例如JS对象和二进制信息作为值。

匿名用户

我不认为添加

模式:“no-cors”

是正确的方式,因为这种模式会阻止应用程序读取响应(cors策略),顺便说一句,这不是来自对初始请求的响应,而是来自第二个重定向的GET请求