messageSendRule.js 1.0 KB

123456789101112131415161718192021222324
  1. /**
  2. * 统一消息推送执行脚本,使用在messages.json配置文件
  3. * 方法返回boolean类型,true表示满足发送条件且接受对body消息内容的修改,false表示不发送
  4. * 变量message表示消息体,原始消息的格式{type:'',person,:'',title,'',body:null},是一个obj对象
  5. * 变量body表示消息内容,每个消息类型的消息体可能不同,是一个Gson的JsonObject对象
  6. * 以下excute方法表示拟稿状态的待办不发送消息;excute1方法表示变更或者添加body对象中的modifyFlag参数;excute2方法示例获取message对象的属性值
  7. */
  8. function excute() {
  9. if(body.has("first") && body.has("workCreateType")){
  10. if (body.get("first").getAsBoolean() && "surface".equals(body.get("workCreateType").getAsString())){
  11. return false;
  12. }
  13. }
  14. return true;
  15. }
  16. function excute1() {
  17. body.addProperty("modifyFlag","1");
  18. return true;
  19. }
  20. function excute2() {
  21. print(message.getType());
  22. print(message.getTitle());
  23. return true;
  24. }