获取 GAS 项目中的功能列表



我想看看是否有办法获取我在Google Apps Script项目中拥有的所有功能的列表。我已经看到多个线程来获取所有Google Apps脚本项目的列表,但到目前为止还没有列出每个项目中的所有功能。有谁知道这是否可能?我已经浏览了Google Apps脚本参考概述,但我找不到任何对我来说突出的东西(当然,我可能会错过它)。如果有人有任何建议,请告诉我!

我能提供的最好的例子是:

我有一个谷歌电子表格文件。附加到该Google电子表格的是一个GAS项目(通过Google表格菜单"工具->脚本编辑器"访问),该项目具有几个不同的功能,用于从工作表中获取值,进行一些计算并将结果发布到不同的工作表。

我正在尝试完成什么:运行某种函数,该函数可以为我提供我在 GAS 项目中拥有的所有函数的列表(最好是字符串值)。示例是:

["runMyCalculations","myOnEdit","sortClosedFiles","formatSheets"]

所有这些功能只有在我打开脚本编辑器并在下拉菜单中选择它并单击"运行"按钮时才能运行。

我希望能够做的是创建一个我拥有的所有函数的动态列表,以便我可以将它们传递到一个"打开"触发的函数中,该函数在工作表中创建一个自定义菜单,列出我拥有的所有函数。我想要这个,这样我就可以简单地对我的工作表进行更改,转到下拉菜单并运行我需要运行的功能,而不必打开脚本编辑器。

可以使用应用脚本 API 从应用脚本文件中获取所有内容。 以下代码可以选择传入文件名以获取。 您必须提供应用程序脚本文件 ID。 传入 gs 文件名是可选的。 提供3个功能。 执行所有工作的函数、使用参数调用该函数进行测试的函数以及日志记录函数。 不需要 OAuth 库,因为令牌是从脚本应用服务获取的。

注意:您需要启用应用脚本 API,并批准对云端硬盘的权限,此代码才能正常工作。 请确保在首次运行此代码时检查UrlFetchApp.fetch()调用的返回值以获取错误消息。 它可能有一个链接,您需要使用该链接来启用应用脚本 API。

function getFuncNames(po) {
var allFiles,dataContentAsString,downloadUrl,fileContents,fileData,i,options,
theAccessTkn,thisFileName;
var ndxOfFunction=0,counter=0, ndxOfEnd=0, functionName="", allFncNames=[],
hasSpaces = 0;
var innerObj, thisFile, fileType = "", thisGS_Content,howManyFiles, allGsContent="";
/*
Get all script function names.  If no gs file name is provided, the code
gets all the function names.
*/
/*
po.fileID - required - The Apps Script file ID
po.gsFileName - optional - the gs code file name to get - gets just one 
file instead of all files
*/
//ll('po',po);
if (!po.fileID) {
return false;
}
theAccessTkn = ScriptApp.getOAuthToken();//Get an access token for OAuth
downloadUrl = "https://script.google.com/feeds/download/export?id=" +
po.fileID + "&format=json";//create url
options = {
"kind": "drive#file",
"id": po.fileID,
"downloadUrl": downloadUrl,
"headers": {
'Authorization': 'Bearer ' +  theAccessTkn,
},
"contentType": "application/vnd.google-apps.script+json",
"method" : "GET"
};
fileData = UrlFetchApp.fetch(downloadUrl, options);//Get all the content from the Apps Script file
//ll('fileData',fileData)
dataContentAsString = fileData.getContentText();
fileContents = JSON.parse(dataContentAsString);//Parse string into object
allFiles = fileContents.files;//All the files in the Apps Script project
howManyFiles = allFiles.length;
for (i=0;i<howManyFiles;i++) {
thisFile = allFiles[i];//Get one inner element that represents one file
if (!thisFile) {continue;}
fileType = thisFile.type;
if (fileType !== "server_js") {continue;}//This is not a gs file - its HTML or json
thisFileName = thisFile.name;
//ll('typeof thisFileName',typeof thisFileName)
//ll('thisFileName',thisFileName)
//ll('equal',po.gsFileName !== thisFile.name)
if (po.gsFileName) {//Is there a setting for the file name to restrict the search to
if (po.gsFileName !== thisFile.name) {//The name to search for is not this file name
continue;
}
}
thisGS_Content = thisFile.source;//source is the key name for the file content
allGsContent = allGsContent + thisGS_Content;
}
//ll('allGsContent',allGsContent)
while (ndxOfFunction !== -1 || counter < 1000) {
ndxOfFunction = allGsContent.indexOf("function ");
//ll('ndxOfFunction',ndxOfFunction)
if (ndxOfFunction === -1) {break};
allGsContent = allGsContent.slice(ndxOfFunction+9);//Remove everything in front of 'function' first
ndxOfEnd = allGsContent.indexOf("(");
functionName = allGsContent.slice(0,ndxOfEnd);
allGsContent = allGsContent.slice(ndxOfEnd+2);//Remove the     
hasSpaces = functionName.indexOf(" ");
if (hasSpaces !== -1) {continue;}
if (functionName.length < 150) {
allFncNames.push(functionName);
}//Any string over 150 long is probably not a function name
counter ++;
};
//ll('allFncNames',allFncNames)
return allFncNames;
};
function runOtherFnk() {
getFuncNames({fileID:"Your File ID here",gsFileName:"Code"});
}
function ll(a,b) {
//Logger.log(typeof a)
if (typeof b === 'object') {
b = JSON.stringify(b);
}
Logger.log(a + ":" + b)
}

以下代码从this对象中提取文件名:

function getAllFnks() {
var allFnks,fnkStr,k;
allFnks = [];
for (k in this) {
//Logger.log(k)
//Logger.log(typeof k)
//Logger.log(this[k])
//Logger.log(typeof this[k])
fnkStr = this[k];
if (fnkStr) {
fnkStr = fnkStr.toString();
//Logger.log(typeof fnkStr)
} else {
continue;
}
//Logger.log(fnkStr.toString().indexOf('function'))
if (fnkStr.indexOf('function') === 1) {
allFnks.push(k);
}
}
Logger.log(allFnks)
Logger.log('Number of functions: ' + allFnks.length)
}

相关内容

  • 没有找到相关文章

最新更新