5

我已经在 GAS 上闲逛了一个月左右,而且我已经相当熟悉使用批处理操作来读/写电子表格(例如 getValues()、setValues())。但是,我目前正在编写一个脚本,该脚本使用类 GmailApp 从 Gmail 中提取大量数据,我的代码运行非常缓慢(甚至超时),我似乎无法弄清楚如何使用批处理操作对于我正在尝试做的事情。到目前为止,这是我的代码(更改了电子邮件地址和名称):

 function fetchEmails(){
  var sheet = SpreadsheetApp.getActiveSpreadsheet().getActiveSheet();
  var threads = GmailApp.search('in: label:searchedLabel');
  var messages = new Array();

  function Email(message){
  this.date = new Date(message.getDate());
  this.body = message.getBody();
  }

  for(var i=0;i<threads.length;i++){
    for(var j=0;j<threads[i].getMessageCount();j++){
      if(threads[i].getMessages()[j].getFrom()=="firstName lastName <email@domain.com>"){
       var message = new Email(threads[i].getMessages()[j]);
       messages.push(message);
      }
    }
  }  
}

如您所见,我正在使用给定标签查询我的电子邮件以查找所有线程,为自定义电子邮件对象(它将具有电子邮件的正文和日期作为属性)创建一个对象构造函数。然后我遍历每个线程,当给定的电子邮件与我正在寻找的发件人匹配时,我为该电子邮件创建一个 Email 对象的实例,并将该 Email 对象放入一个数组中。目标是最终我将拥有一组电子邮件对象,这些对象都来自我想要的发件人。但是,您可能已经注意到代码调用 Google 的 API 的方式过于频繁,但我似乎无法弄清楚与 Gmail 交互的批处理操作。有任何想法吗?非常感谢。

4

1 回答 1

12

我认为您正在寻找 GmailApp.getMessagesForThreads()。

function fetchEmails(){
  var sheet = SpreadsheetApp.getActiveSpreadsheet().getActiveSheet();
  var threads = GmailApp.search('label:searchedLabel');
  var messages = new Array();

  function Email(message){
    this.date = new Date(message.getDate());
    this.body = message.getBody();
  }

  var gmailMessages = GmailApp.getMessagesForThreads(threads);

  for(var i=0;i<thread.length;i++){
    var messagesForThread = gmailMessages[i];
    for(var j=0;j<messagesForThread.length;j++){
      if(messagesForThread[j].getFrom()=="firstName lastName <email@domain.com>"){
       var message = new Email(messagesForThread[j]);
       messages.push(message);
      }
    }
  }  
}

当然,你也可以写得更简洁一些(抱歉,我不能找到机会来了解 JavaScript 的奇妙之处):

function fetchEmails(){
  var messages = Array.prototype.concat.apply([], GmailApp.getMessagesForThreads(
      GmailApp.search('label:searchedLabel')).map(function(messagesForThread) {
    return messagesForThread.filter(function(message) {
      return message.getFrom() == "firstName lastName <email@domain.com>";
    }).map(function(message) {
      return { date: new Date(message.getDate()), body: message.getBody() };
    });}));
}

这总共需要对 Gmail 进行 2 次调用,因此速度会很快。

事实上,如果您按照上面的建议将“来自”部分集成到搜索中,您所需要的只是:

function fetchEmails(){
  var messages = Array.prototype.concat.apply([], GmailApp.getMessagesForThreads(
    GmailApp.search('label:searchedLabel from:email@domain.com')).map(
      function(messagesForThread) {
        return messagesForThread.map(function(message) {
          return { date: new Date(message.getDate()), body: message.getBody() };
      });}));
}

最后,由于您实际上并不关心线程结构,因此您可以在映射之前连接数组,这会导致:

function fetchEmails(){
  var messages = GmailApp.getMessagesForThreads(
        GmailApp.search('label:searchedLabel from:email@domain.com'))
      .reduce(function(a, b){ return a.concat(b); })
      .map(function(message) {
         return { date: new Date(message.getDate()), body: message.getBody() }; 
      });
}

(如果您确实关心线程结构并且您只是给出了一个最小的示例,我将留在前面的示例中)。

于 2012-08-19T20:23:30.247 回答