如何使未经授权的用户保护电子表格 1准备脚本 2部署Web应用 4测试此替代方法注意:参考文献:

如何解决如何使未经授权的用户保护电子表格 1准备脚本 2部署Web应用 4测试此替代方法注意:参考文献:

在我们的团队中,我们有以下情形: 我们正在使用带有一些受保护区域的google电子表格(主要是不能被覆盖的公式-只有“ admin”(在我们的例子中是我)可以编辑它们)。其他输入字段不受保护。每个团队成员都可以输入他们的数据。 在某个时间点(冲刺结束),我们的项目经理需要报告电子表格中的数字。为了确保以后编号不会更改,他们希望查看整个工作表。对于下一个冲刺,我们创建一个新的电子表格。 我添加了一个应用脚本(下面的代码),并将其分配给一个按钮,他们可以单击该按钮来锁定工作表(或至少是人们输入数据的重要范围)。

如果我单击按钮,则一切正常。但是,如果这样做,他们将得到一个例外: “例外:您正在尝试编辑受保护的单元格或对象。如果需要编辑,请联系电子表格所有者以删除保护。”

我尝试了各种选项,设置范围保护,工作表保护,将我删除为编辑器,将它们添加为保护的编辑器等。但是在所有情况下,只要调用了保护上的函数(例如addEditor( )),则出现此异常。

有什么想法使之成为可能,以便基本上每个人都可以单击按钮并锁定整个工作表吗?

在我的职能下面。这个例子使用了sheet.protect(),但是我也尝试了远程保护,只是为了更容易理解我在说什么;)

function lockSheet() {
  var me = Session.getEffectiveUser();
  var as = SpreadsheetApp.getActiveSpreadsheet();
  as.getSheets().map(function(sheet) {
    var protection = sheet.protect().setDescription('The sprint has been closed. No further editing possible.');
    
    // Ensure the current user is an editor before removing others. Otherwise,if the user's edit
    // permission comes from a group,the script throws an exception upon removing the group.
    protection.addEditor(me);
    
    protection.removeEditors(protection.getEditors());
    if (protection.canDomainEdit()) {
      protection.setDomainEdit(false);
    }
  });
  var ui = SpreadsheetApp.getUi();
  var response = ui.alert('Sheet is now locked. The only editor now is: ' + me);
  
}

解决方法

我相信您的情况和目标如下。

  • 登录Google帐户的用户通过单击Google Spreadsheet上的按钮来运行脚本。
  • 在您的问题中,当用户单击按钮时,发生Exception: You are trying to edit a protected cell or object. Please contact the spreadsheet owner to remove protection if you need to edit.错误。
  • 您要在用户单击按钮时将工作表锁定在Google Spreadsheet中。

问题和解决方法:

我认为在您的情况下,当用户单击按钮时,脚本将由每个用户运行。但是工作表已经被其他用户锁定。由此,发生这种错误。为了避免这种情况,作为一种解决方法,我建议由用户(在本例中是所有者)锁定表。此解决方法的流程如下。

  1. 单击按钮时,脚本将请求Web Apps。在这种情况下,用户的电子邮件地址将发送到Web Apps。
  2. 在Web Apps中,工作表由所有者锁定。
  3. 锁定完成后,将运行ui.alert

用法:

1。准备脚本。

请复制以下脚本并将其粘贴到脚本编辑器中并保存。

const key = "sampleKey";

function doGet(e) {
  if (e.parameter.key == key) {
    var me = e.parameter.me;
    
    // Below script is your script.
    as.getSheets().map(function(sheet) {
      var protection = sheet.protect().setDescription('The sprint has been closed. No further editing possible.');
      
      // Ensure the current user is an editor before removing others. Otherwise,if the user's edit
      // permission comes from a group,the script throws an exception upon removing the group.
      protection.addEditor(me);
      
      protection.removeEditors(protection.getEditors());
      if (protection.canDomainEdit()) {
        protection.setDomainEdit(false);
      }
    });

  } else {
    throw new Error("Wrong key.");
  }
  return ContentService.createTextOutput();
}

function lockSheet() {
  var lock = LockService.getDocumentLock();
  if (lock.tryLock(10000)) {
    try {
      var me = Session.getEffectiveUser();
      var as = SpreadsheetApp.getActiveSpreadsheet();
      var url = "https://script.google.com/macros/s/###/exec";  // Please set the URL of Web Apps.
      url += `?me=${me}&key=${key}`;
      try {
        var res = UrlFetchApp.fetch(url);
        var ui = SpreadsheetApp.getUi();
        var response = ui.alert('Sheet is now locked. The only editor now is: ' + me);
      } catch(er) {
        throw new Error(er.message);
      }
    } catch(e) {
      throw new Error(e);
    } finally {
      lock.releaseLock();
    }
  }
}

2。部署Web应用。

  1. 在脚本编辑器上,通过“发布”->“部署为Web应用程序”打开一个对话框。

  2. “以以下方式执行应用”:选择“我”

    • 通过这种方式,脚本以所有者身份运行。
  3. “有权访问该应用的用户:” 选择“任何人,甚至是匿名的”

    • 在这种情况下,不需要请求访问令牌。我认为我建议使用此设置来测试此变通办法。但是在此脚本中,使用了用于运行脚本的密钥。
    • 当然,您也可以使用访问令牌。但是,在这种情况下,当使用访问令牌时,该示例脚本不能直接用作自定义函数。因此,在这个答案中,我建议使用该密钥来运行Web Apps脚本。但是,如果您想使用访问令牌,我认为可以使用PropertiesService来实现。
  4. 单击“部署”按钮作为新的“项目版本”。

  5. 自动打开“需要授权”对话框。

    1. 点击“查看权限”。
    2. 选择自己的帐户。
    3. 在“此应用未验证”中单击“高级”。
    4. 点击“转到###项目名称###(不安全)”
    5. 单击“允许”按钮。
  6. 单击“确定”。

  7. 复制Web应用程序的URL。就像https://script.google.com/macros/s/###/exec

    • 修改Google Apps脚本后,请重新部署为新版本。这样,修改后的脚本将反映到Web Apps。请注意这一点。
  8. 请将上述脚本的https://script.google.com/macros/s/###/exec的URL设置为url。并请重新部署Web Apps。这样,最新的脚本就会反映到Web应用程序中。所以请注意这一点。

4。测试此替代方法。

请点击分配给lockSheet的按钮。这样,用于锁定工作表的脚本由所有者运行。

注意:

  • 修改Google Apps脚本后,请重新部署为新版本。这样,修改后的脚本将反映到Web Apps。请注意这一点。
  • 请在启用V8的情况下使用此脚本。

参考文献:

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐


依赖报错 idea导入项目后依赖报错,解决方案:https://blog.csdn.net/weixin_42420249/article/details/81191861 依赖版本报错:更换其他版本 无法下载依赖可参考:https://blog.csdn.net/weixin_42628809/a
错误1:代码生成器依赖和mybatis依赖冲突 启动项目时报错如下 2021-12-03 13:33:33.927 ERROR 7228 [ main] o.s.b.d.LoggingFailureAnalysisReporter : *************************** APPL
错误1:gradle项目控制台输出为乱码 # 解决方案:https://blog.csdn.net/weixin_43501566/article/details/112482302 # 在gradle-wrapper.properties 添加以下内容 org.gradle.jvmargs=-Df
错误还原:在查询的过程中,传入的workType为0时,该条件不起作用 <select id="xxx"> SELECT di.id, di.name, di.work_type, di.updated... <where> <if test=&qu
报错如下,gcc版本太低 ^ server.c:5346:31: 错误:‘struct redisServer’没有名为‘server_cpulist’的成员 redisSetCpuAffinity(server.server_cpulist); ^ server.c: 在函数‘hasActiveC
解决方案1 1、改项目中.idea/workspace.xml配置文件,增加dynamic.classpath参数 2、搜索PropertiesComponent,添加如下 <property name="dynamic.classpath" value="tru
删除根组件app.vue中的默认代码后报错:Module Error (from ./node_modules/eslint-loader/index.js): 解决方案:关闭ESlint代码检测,在项目根目录创建vue.config.js,在文件中添加 module.exports = { lin
查看spark默认的python版本 [root@master day27]# pyspark /home/software/spark-2.3.4-bin-hadoop2.7/conf/spark-env.sh: line 2: /usr/local/hadoop/bin/hadoop: No s
使用本地python环境可以成功执行 import pandas as pd import matplotlib.pyplot as plt # 设置字体 plt.rcParams['font.sans-serif'] = ['SimHei'] # 能正确显示负号 p
错误1:Request method ‘DELETE‘ not supported 错误还原:controller层有一个接口,访问该接口时报错:Request method ‘DELETE‘ not supported 错误原因:没有接收到前端传入的参数,修改为如下 参考 错误2:cannot r
错误1:启动docker镜像时报错:Error response from daemon: driver failed programming external connectivity on endpoint quirky_allen 解决方法:重启docker -> systemctl r
错误1:private field ‘xxx‘ is never assigned 按Altʾnter快捷键,选择第2项 参考:https://blog.csdn.net/shi_hong_fei_hei/article/details/88814070 错误2:启动时报错,不能找到主启动类 #
报错如下,通过源不能下载,最后警告pip需升级版本 Requirement already satisfied: pip in c:\users\ychen\appdata\local\programs\python\python310\lib\site-packages (22.0.4) Coll
错误1:maven打包报错 错误还原:使用maven打包项目时报错如下 [ERROR] Failed to execute goal org.apache.maven.plugins:maven-resources-plugin:3.2.0:resources (default-resources)
错误1:服务调用时报错 服务消费者模块assess通过openFeign调用服务提供者模块hires 如下为服务提供者模块hires的控制层接口 @RestController @RequestMapping("/hires") public class FeignControl
错误1:运行项目后报如下错误 解决方案 报错2:Failed to execute goal org.apache.maven.plugins:maven-compiler-plugin:3.8.1:compile (default-compile) on project sb 解决方案:在pom.
参考 错误原因 过滤器或拦截器在生效时,redisTemplate还没有注入 解决方案:在注入容器时就生效 @Component //项目运行时就注入Spring容器 public class RedisBean { @Resource private RedisTemplate<String
使用vite构建项目报错 C:\Users\ychen\work>npm init @vitejs/app @vitejs/create-app is deprecated, use npm init vite instead C:\Users\ychen\AppData\Local\npm-