msg.js 28.5 KB
Newer Older
DCloud_JSON's avatar
DCloud_JSON 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041
const {
  db,
  dbCmd,
  $,
  getConversationId,
  checkParam
} = require('uni-im-utils')

const dbUniImMsg = db.collection('uni-im-msg')
const dbUniImConversation = db.collection('uni-im-conversation')
const dbUniImGroupMember = db.collection('uni-im-group-member')
const dbUniImFriend = db.collection('uni-im-friend')

// 获取uni-im配置
const createConfig = require("uni-config-center");
const uniImConfig = createConfig({
  pluginId: 'uni-im', // 插件id
})

// 发送消息方法(含:单聊和群聊)
async function sendMsg(params) {
  // console.error('sendMsg params~~~~~', params);
  await _beforeSendMsgActions.call(this, params)

  let {
    // 指定接收消息的用户id
    to_uid,
    // 指定接收消息的群id
    group_id,
    // 消息内容
    body,
    // 消息类型
    type,
    // 是否为失败 重试
    isRetries,
    // 接收消息的客户端的DCloud appid
    appId,
    // 回复关联的消息的id
    about_msg_id,
    call_uid,
    action,
    // 是否为静默消息
    is_mute
  } = params
  
  // 清除旧版三方系统客户端直传的call_uid参数
  call_uid = []

  // 校验参数是否合法
  checkParam(params, {
    required: ["body", "type", "appId"],
    type: {
      to_uid: ["String"],
      group_id: ["String"],
      body: ["String", "Object", "Array"],
      type: ["String"],
      isRetries: ["Boolean"],
      appId: ["String"],
      about_msg_id: ['String'],
      action: ['String'],
      is_mute: ['Boolean']
    }
  })

  // 存在action时,如果不是其他云函数或者触发器调用时,且调用者也不是系统时,拦截非法操作。
  if (action && this.getClientInfo().source != 'function' && this.current_uid != 'system') {
    throw new Error('非法操作')
  }

  // 调用扩展点 valid-msg
  const { invokeExts } = require('uni-im-ext')
  let result = await invokeExts('validate-msg', params, this)
  let isValid = result.find(valid => typeof valid !== 'undefined')
  
  if(!isValid && is_mute !== undefined && this.current_uid !== 'system'){
    throw new Error('非法操作')
  }

  // 补充特殊校验
  if (!to_uid && !group_id) {
    throw new Error('接收消息的用户id和群id最少指定一个') // alert:否则表示将消息群发
  }

  // 其他云函数或者触发器调用时,消息类型才能用system
  if (this.getClientInfo().source != 'function' && type == 'system') {
    throw new Error('非法消息类型')
  }

  if (type == 'text' && typeof body != 'string') {
    throw new Error('错误:type为text类型,但body的类型确不是string')
  }

  //发送者身份id
  const from_uid = this.current_uid

  await _checkConversationGrade.call(this, {
    from_uid,
    to_uid,
    group_id,
  })

  // TODO: 群聊时,需要校验当前用户是否为群成员,后续会优化性能问题
  if (this.current_uid != 'system' && group_id) {
    let {
      data: [member]
    } = await dbUniImGroupMember
      .where({
        group_id,
        user_id: this.current_uid
      })
      .get()
    // console.log('member', member);
    if (!member) {
      throw new Error('非群成员不能发起会话')
    } else if (!['creator', 'admin'].includes(...member.role) && member.mute_type > 0) {
      throw new Error('你已被禁言')
    }
  }

  // 生成会话id
  const conversation_id = getConversationId({ group_id, from_uid, to_uid })
  // 现在的时间戳
  const nowTimestamp = Date.now()
  // 构建基本消息内容
  const msgData = {
    body,
    type,
    from_uid,
    to_uid,
    //是否已读,默认为:false
    is_read: false,
    //创建时间
    create_time: nowTimestamp,
    // 更新时间,默认为创建时间
    update_time: nowTimestamp,
    conversation_id,
    group_id,
    appid: appId, //接收消息的appid(撤回消息时会用到)
    about_msg_id,
    call_uid, // @某些人
    action,
    reader_list: [], // 已读消息的用户列表
    is_mute // 是否为静默消息
  }
  

  if (type === 'rich-text') {
    let callUid = []
    for (let node of msgData.body) {
      if (node.name == 'span' && node.attrs && node.attrs.class == 'nickname' && node.attrs.user_id) {
        // 保护用户昵称,移除。客户端将通过node.attrs.user_id,获取用户昵称
        delete node.children
        callUid.push(node.attrs.user_id)
      }
    }
    if (callUid.length) {
      msgData.call_uid = callUid
    }
  }

  // 创建新会话或者更新已有会话。
  // 拿到消息接收者的isMute状态(仅私聊有效)
  let {isMute} = await _createOrUpdateConversation(conversation_id, msgData)
  // console.log({
  // 	...msgData,
  // 	conversation_id
  // });

  // 如果是扩展的消息类型,由扩展模块决定是否要保存入库
  let noPersistent = false
  const { msgTypes } = require('uni-im-ext')
  let msgType = await msgTypes.get(type)
  if (msgType && msgType.noPersistent) {
    noPersistent = msgType.noPersistent(msgData)
  }

  // 将消息内容存到数据库,“点击重发按钮的”和“不需要保存的扩展消息”除外
  if (!isRetries && !noPersistent) {
    const __text = _extractTextFromMsg(msgData)
    if (__text) {
      msgData.__text = __text
      // console.log(' msgData.__text', msgData.__text);
    }

    let res = await dbUniImMsg.add({
      ...msgData,
      conversation_id
    })
    
    msgData._id = res.id
    // console.error('uni-im-msg msgData:',msgData, res);

    // 调用扩展点 send-msg
    const { invokeExts } = require('uni-im-ext')
    // 这里需要 clone,因为是异步调用,而下面的代码马上就要修改 msgData
    let { ...clonedMsg } = msgData
    this.addPromise(invokeExts('send-msg', clonedMsg, this))
    
    // 客户端不需要返回__text字段
    delete msgData.__text
  } else {
    // console.error('跳过添加 msg到数据库!~~~~~~~~~')
  }
  
  // 不可见的消息一定是 isMute
  if(!_isReadableMsg(msgData)){
    isMute = true
  }

  // 处理产生的推送
  let res = await _processPush.call(this, { msgData, isMute, appId })

  if (!res.data) {
    res.data = {}
  }

  // 返回云端消息记录创建的时间
  res.data.create_time = msgData.create_time
  // 返回云端消息记录的id
  res.data._id = msgData._id
  return res
}


// 执行发送消息前的操作
async function _beforeSendMsgActions(params) {
  if (params.type === 'revoke_msg') {
    let res = await _revokeMsg.call(this, params.body.msg_id)
    let {
      appid,
      group_id,
      to_uid
    } = res
    params.appId = appid
    params.group_id = group_id
    params.to_uid = to_uid
    return
  }

  // 如果是扩展的消息类型,由扩展模块执行前置操作
  const { msgTypes } = require('uni-im-ext')
  let msgType = await msgTypes.get(params.type)
  if (msgType && msgType.beforeSendMsg) {
    await msgType.beforeSendMsg(params, this.current_uid)
    return
  }
}

async function _checkConversationGrade({
  from_uid,
  to_uid,
  group_id,
}) {
  // 客服模式下,如果配置的客服id。则只能向客服发起会话
  let chatToCustomerService = async () => {
    const customer_service_uids = uniImConfig.config('customer_service_uids_uids')
    if (customer_service_uids) {
      if (typeof customer_service_uids == 'string') {
        customer_service_uids = [customer_service_uids]
      }
      if (
        !(customer_service_uids.includes(from_uid) || customer_service_uids.includes(to_uid))
      ) {
        throw new Error('非法通讯,会话双方用户id,均不属于uni-im-co中配置的customer_service_uids')
      }
    }
    return true
  }

  // 只能是好友关系,或者群成员才能发送
  let chatToFriendOrGroupMember = async () => {
    if (group_id) {
      let {
        data: [has]
      } = await dbUniImGroupMember
        .where({
          group_id,
          user_id: this.current_uid
        })
        .get()
      if (!has) {
        throw new Error('非群成员不能发起会话')
      }
    }
    if (to_uid) {
      let {
        data: [has]
      } = await dbUniImFriend
        .where({
          friend_uid: to_uid,
          user_id: this.current_uid
        })
        .get()
      if (!has) {
        throw new Error('非好友不能发起会话')
      }
    }
    return true
  }

  /** 读取配置的对话等级,校验是否有权发送消息
   * 	0	-	任何人可以发起会话
   *	100	-	客服 or 好友或者群成员
   *	200	-	必须是好友或者群成员
   **/
  const conversation_grade = uniImConfig.config('conversation_grade')

  switch (conversation_grade) {
  case 0:
    //任何人可以发起会话,不校验
    break;
  case 100:
    // 客服 or 好友或者群成员
    try {
      await chatToCustomerService()
    } catch (error) {
      console.error(error)
      await chatToFriendOrGroupMember()
    }
    break;
  case 200:
    // 必须是好友或者群成员
    await chatToFriendOrGroupMember()
    break;
  default:
    break;
  }
}

function _getLastMsgNote({
  body,
  type,
  action,
}) {
  // 文本 => 文本的前30个字
  // 其他 => 消息类型
  let last_msg_note = '[多媒体]'
  if (type == 'text') {
    last_msg_note = body.toString()
    last_msg_note = last_msg_note.replace(/[\r\n]/g, "");
    last_msg_note = last_msg_note.slice(0, 30)
  } else if (type === 'userinfo-card') {
    last_msg_note = `${body.name} 的名片`
  } else if (type === 'system') {
    switch (action) {
    case 'group-join':
      last_msg_note = '加入群聊'
      break;
    case 'group-exit':
      last_msg_note = '退出群聊'
      break;
    case 'group-expel':
      last_msg_note = '被踢出群聊'
      break;
    default:
      // 更新群资料
      if (action.includes("update-group-info-")) {
        const { fieldsName } = body;
        last_msg_note = `[${fieldsName + '更新'}]`;
      }
      break;
    }
  } else {
    last_msg_note = {
      image: "[图片]",
      sound: "语音",
      video: "[视频]",
      file: "[文件]",
      location: "[位置]",
      system: "[系统消息]",
      code: "[代码]",
      'rich-text': "[图文消息]",
    } [type] || `[${type}]`
  }
  return last_msg_note
}

async function _createOrUpdateConversation(conversation_id, msgData) {
  // 设置会话 最后一条消息 的描述
  let last_msg_note = _getLastMsgNote(msgData)

  // 查询当前用户的此会话
  const {
    data: conversationList
  } = await dbUniImConversation
    .where(
      dbCmd.and([
        {id: conversation_id},
        dbCmd.or([
          {user_id: msgData.from_uid},
          {group_id: dbCmd.exists(false)}
        ])
      ])
    )
    .get()
  // console.log('conversation', conversation);
  // 消息发送者的会话
  let senderConversation = conversationList.find(item => item.user_id == msgData.from_uid)
  // 消息接收者的会话(此数据仅私聊时存在)
  let receiverConversation = conversationList.find(item => item.user_id == msgData.to_uid)
  const isMute = (receiverConversation ? receiverConversation.mute : false)
  
  // 不存在,需要先创建会话记录
  if (!senderConversation) {
    // 1.消息发送者 会话数据
    senderConversation = {
      id: conversation_id,
      type: msgData.group_id ? 2 : 1,
      user_id: msgData.from_uid,
      friend_uid: msgData.to_uid,
      group_id: msgData.group_id,
      unread_count: 0,
      last_msg_note,
      update_time: msgData.create_time,
      create_time: msgData.create_time
    }
    if (msgData.group_id) {
      senderConversation.leave = false
      // 群聊只为当前用户创建会话
      await dbUniImConversation.add(senderConversation)
    } else {
      // 2.消息接收者 会话数据
      receiverConversation = {
        ...senderConversation,
        unread_count: 1,
        user_id: msgData.to_uid,
        friend_uid: msgData.from_uid
      }
      // 单聊,同时为收发双方创建此会话
      await dbUniImConversation.add([senderConversation, receiverConversation])
    }
  } else {
    // 会话已存在,更新相关内容
    let updateObj = {
      last_msg_note,
      update_time: msgData.create_time,
      hidden: false
    }

    // 如果不是:用户自己给自己发消息,则需要增加未读消息数
    if (msgData.from_uid != msgData.to_uid) {
      updateObj.unread_count = dbCmd.inc(1)
    }
    
    // TODO:部分情况下不需要更新未读消息数,后续会改成都通过is_mute字段来判断
    if(
      // 加群消息
      msgData.action === "join-group" 
      ||
      // 禁言通知
      msgData.action === 'update-group-info-mute_all_members' 
      ||
      // 本身是一条静默消息
      msgData.is_mute === true
    ){
      delete updateObj.unread_count
    }

    if (!(await _isReadableMsg(msgData))) {
      // “非可见消息”不更新“最后一次对话消息概述”
      delete updateObj.last_msg_note
    }
    if (_isMuteMsg(msgData) || !(await _isReadableMsg(msgData))) {
      // “静音消息”不更新“未读消息数”
      delete updateObj.unread_count
    }

    // 如果消息是:群解散 的触发动作通知,则更新会话表的leave字段为true
    if (msgData.action === "group-dissolved") {
      updateObj.leave = true
    }

    // 所有接收者的会话表更新
    let res = await dbUniImConversation
      .where({
        id: conversation_id,
        user_id: dbCmd.neq(msgData.from_uid)
      })
      .update(updateObj)
    // console.log(res);

    // 特殊用户的会话表更新
    delete updateObj.unread_count
    let updateUids = []
    if (msgData.action === 'group-exit') {
      // 主动退群:更新发送者的会话
      delete updateObj.last_msg_note
      updateObj.leave = true
      updateUids.push(msgData.from_uid)
    } else if (msgData.action === 'group-expel') {
      // 踢出群:更新被踢者的会话
      delete updateObj.last_msg_note
      updateObj.leave = true
      updateUids.push(...msgData.body.user_id_list)
    } else {
      // 其它情况:更新发送者的会话
      updateUids.push(msgData.from_uid)
    }
    res = await dbUniImConversation
      .where({
        id: conversation_id,
        user_id: dbCmd.in(updateUids)
      })
      .update(updateObj)
    // console.log(res);
  }
  
  // 返回消息接收者的isMute状态(仅私聊有效)
  return {
    isMute
  }
}

function _extractTextFromMsg(msgData) {
  let __text = null
  if (["text", "code"].includes(msgData.type)) {
    __text = msgData.body.replace(/[\s\n]+/g, " ")
  } else if (["image", "video", "file"].includes(msgData.type)) {
    __text = msgData.body.name
  } else if (msgData.type == "rich-text") {
    let getTextOfNodeList = (nodesList) => {
      let text = ''
      nodesList.forEach(item => {
        if (item.type == "text") {
          text += item.text
        }
        if (Array.isArray(item.children)) {
          text += " " + getTextOfNodeList(item.children)
          if (item.attrs && item.attrs.class === 'nickname') {
            // 增加空格,用于区分昵称和消息内容
            text += " "
          }
        }
      })
      return text
    }
    __text = getTextOfNodeList(msgData.body).replace(/[\s\n]+/g, " ")
  }

  if (__text) {
    // 全部转成小写,以便进行大小写不敏感的匹配
    __text = __text.toLowerCase()
    // 24 位 hex 会被 mongodb 自动转换成 ObjectId,需阻止
    if (__text.match(/^[0-9a-f]{24}$/)) {
      __text = __text + ' '
    }
  }

  return __text
}

function _checkForLongMsg(msgData) {
  let bodyStr = JSON.stringify(msgData.body)
  if (bodyStr > 50000) {
    throw new Error('单次消息最长字符长度不得超过50000')
  }
  if (bodyStr.length > 250) {
    switch (msgData.type) {
    case 'rich-text':
      msgData.body = "富文本消息"
      break;
    case 'history':
      msgData.body = "转发的聊天记录"
      break;
    case 'text':
      // 截断,但标识消息为长文本消息,客户端收到此标识,会从数据库中拉取完整消息内容
      msgData.body = msgData.body.slice(0, 50)
      break;
    default:
      msgData.body = `[${msgData.type}]类型消息`
      break;
    }

    msgData.LongMsg = true
  }
}

async function _checkForReplyMsg(msgData) {
  if (!msgData.about_msg_id) return

  let {
    data: [aboutMsg]
  } = await dbUniImMsg.doc(msgData.about_msg_id).get()
  if (!aboutMsg) {
    throw new Error('方法的about_msg_id')
  }
  if (!Array.isArray(msgData.call_uid)) {
    msgData.call_uid = []
  }
  msgData.call_uid.push(aboutMsg.from_uid)
  // console.log(987,aboutMsg,msgData.call_uid);
}

async function _getSenderInfo(from_uid) {
  const dbJQL = uniCloud.databaseForJQL({
    clientInfo: this.clientInfo
  })
  let res, userInfo;
  if (from_uid === 'system') {
    userInfo = {
      nickname: "系统消息",
      avatar_file: {}
    }
  } else {
    res = await dbJQL.collection('uni-id-users')
      .doc(from_uid)
      .field('_id,nickname,avatar_file')
      .get()
    userInfo = res.data[0]
  }
  return userInfo
}

async function _processPush({ msgData, isMute, appId }) {
  // 处理超长文本,push发送不了的问题
  _checkForLongMsg(msgData)

  // 处理 消息回复 @某人的
  await _checkForReplyMsg(msgData)

  // 查询消息发送者的头像和昵称
  let {
    nickname,
    avatar_file
  } = await _getSenderInfo(msgData.from_uid)

  let title = msgData.type == 'system' ? '系统消息' : nickname.slice(0, 20)
  let content = msgData.type == 'text' ? msgData.body : '[多媒体]'

  // 定义推送参数
  let pushParam = {
    payload: {
      type: "uni-im",
      data: msgData,
      title, // "收到im消息,在线时显示的标题",
      content, // "在线时显示的副标题",
      avatar_file, //头像文件对象,
      device_id: this.clientInfo.deviceId // 发送消息的设备(客户端)id,阻止当前用户收到自己发的消息
    },
    title: title.slice(0, 20), // "收到im消息,离线时显示的标题",
    content: content.slice(0, 50) //"离线时显示的内容"
  }

  let res
  
  if( msgData.from_uid != 'system' && (msgData.to_uid || msgData.group_id) ){
    // 以"非离线"消息(避免系统通知栏出现消息)同步给当前用户的其他设备(比如web和app、小程序同时登录时;注:发送此消息的“设备”在客户端通过业务代码过滤,这里不排除)
    this.addPromise(
      this.sendPushMsg({
        ...pushParam,
        user_id: msgData.from_uid,
        settings: {
          strategy: {
            default: 3
          }
        }
      }, appId)
    )
  }
  
  if (msgData.to_uid) {
    // WS 推送:单聊消息推送给接收方
    if (!isMute && !_isMuteMsg(msgData) && (await _isReadableMsg(msgData))) {
      const { invokeExts } = require('uni-im-ext')
      await invokeExts('push-msg-notify', {
        to_uids: [msgData.to_uid],
        msg: {
          type: 'incr-conversation',
          conversation_id: msgData.conversation_id,
        }
      })
    }

    //单聊,直接调用before中封装好的消息推送方法
    pushParam.user_id = msgData.to_uid
    if(isMute){
      console.log('消息接收者设置了免打扰,应用离线时,此消息不会有系统通知')
      pushParam.settings = {
        strategy: {
          default: 3
        }
      }
    }
    res = await this.sendPushMsg(pushParam, appId)
    // console.log('sendMessage', JSON.stringify(res))
    /*
    //判断是否已经有客户端接收到消息,注意:收到不等于已读
    let taskData = res.data[Object.keys(res.data)]
    let state = false;
    for (let key in taskData) {
      if (taskData[key] == 'successed_online') {
        state = true
        break
      }
    }
    console.log('state : ============> ' + state);*/
  } else if (msgData.group_id) {
    // console.error('群聊消息*-----------------',pushParam);
    // 如果是群聊则调用sendMsgToGroup云方法,递归发送(500个为用户一批)
    uniCloud.importObject('uni-im-co').sendMsgToGroup({
      pushParam,
      appId
    })
    this.addPromise(
      // 等待500毫秒,给一个请求发出去的时间
      new Promise(resolve => {
        setTimeout(resolve, 500)
      })
    )
    res = {
      errCode: 0
    }
  } else {
    throw new Error('接受者标识,不能为空')
  }
  return res
}

async function sendMsgToGroup({
  pushParam,
  before_id,
  push_clientids = [],
  member = [],
  appId,
  // 默认先给未设置消息免打扰的用户发消息
  mute = false
}) {
  // 注意:这是一个递归云对象,用递归的方式处理批量任务
  const limit = 500 //腾讯云收费版服务空间可以改成 1000
  if (this.getClientInfo().source != 'function') {
    return {
      errSubject: 'uni-im-co',
      errCode: 0,
      errMsg: '该方法仅支持云对象的方法,或者触发器调用'
    }
  }

  // console.log('sendMsgToGroup=========', {
  // 	pushParam,
  // 	before_id,
  // 	push_clientids
  // });

  if (before_id || push_clientids) {
    // console.log({
    // 	before_id,
    // 	push_clientids
    // });
    // return 123
  }

  if (push_clientids.length === 0) {
    // console.log('开始查库', push_clientids.length, push_clientids);
    let group_id = pushParam.payload.data.group_id
    if (!group_id) {
      throw new Error('群id不能为空')
    }
    let getMemberwhere = {
      group_id,
      mute: mute ? true : dbCmd.neq(true),
      leave:dbCmd.neq(true),
      // 需要排除自己
      user_id: dbCmd.neq(pushParam.payload.data.from_uid)
    }
    

    if (before_id) {
      getMemberwhere._id = dbCmd.gt(before_id)
    }
    // console.log({
    // 	getMemberwhere
    // });
    let res = await dbUniImConversation
      .aggregate()
      .match(getMemberwhere)
      .sort({
        _id: 1
      })
      .limit(limit)
      .project({
        user_id: 1,
        mute: 1
      })
      .lookup({
        from: "uni-id-device",
        let: {
          user_id: '$user_id'
        },
        pipeline: $.pipeline()
          .match(
            dbCmd.expr(
              $.and([
                $.eq(['$user_id', '$$user_id']),
                $.gt(['$token_expired', Date.now()])
              ])
            )
          ).project({
            push_clientid: 1
          })
          .done(),
        as: 'push_clientids',
      })
      .end()
    member = res.data
    console.error('符合条件的'+ (mute?'【设置消息免打扰的用户】':'') +'用户数', member.length); //,member
    push_clientids = member.reduce((sum, item) => {
      sum.push(...item.push_clientids.map(i => i.push_clientid))
      return sum
    }, [])
    console.log('查到需要接收消息的设备数:', push_clientids.length);

    // WS 推送:群聊消息推送给相关用户
    let msgData = pushParam.payload.data
    if (!mute && !_isMuteMsg(msgData) && (await _isReadableMsg(msgData))) {
      const { invokeExts } = require('uni-im-ext')
      await invokeExts('push-msg-notify', {
        to_uids: member.map(user => user.user_id),
        msg: {
          type: 'incr-conversation',
          conversation_id: msgData.conversation_id,
        }
      })
    }
  } else {
    console.log('不需要查库,继续发送任务', push_clientids.length);
  }

  if (push_clientids.length === 0) {
    if(mute){
      // console.log('已没有设置了免打扰的用户需要接收消息');
      return {
        errCode: 0,
        errMsg: '',
      }
    }else{
      // console.log('已没有未设置免打扰的用户需要接收消息,继续查询设置免打扰的用户');
    }
  }
  
  // 下一批推送的设备id
  let next_push_clientids = push_clientids.slice(limit)
  // 当前这一批要推送的设备id
  push_clientids = push_clientids.slice(0, limit)
  if(push_clientids.length > 0){
    pushParam.push_clientid = push_clientids
    // console.log("pushParam", pushParam);
    // 如果是给免打扰的用户发消息,需要设置策略,只通过个推通道下发,不考虑设备是否在线
    if(mute){
      pushParam.settings = {
        strategy:{
          default:3
        }
      }
    }
    // 执行推送
    let sendPushMsgRes = await this.sendPushMsg(pushParam, appId)
    // console.error(sendPushMsgRes)
  }
  
  if (next_push_clientids.length !== 0) {
    // 发起下一批数据的推送
    uniCloud.importObject('uni-im-co').sendMsgToGroup({
      pushParam,
      push_clientids: next_push_clientids,
      member,
      mute
    }, appId)
    // 等待500毫秒,给一个请求发出去的时间
    return await new Promise((resolve, reject) => {
      setTimeout(() => {
        resolve({
          errCode: 0,
          errMsg: ''
        })
      }, 500)
    })
  } else if (member.length == limit) {
    // 成员数等于分页数,则处于递归翻页进行中,且当前批次的数据已经全部推送完毕,继续查询下一批数据
    // console.log('member---*--*', member);
    before_id = member[member.length - 1]._id
    uniCloud.importObject('uni-im-co').sendMsgToGroup({
      pushParam,
      before_id,
      mute
    }, appId)
    // 等待500毫秒,给一个请求发出去的时间
    return await new Promise((resolve, reject) => {
      setTimeout(() => {
        resolve({
          errCode: 0,
          errMsg: ''
        })
      }, 500)
    })
  } else {
    if(!mute){
      // 如果之前不是给设置了免打扰的用户发消息,接下来需要给设置了免打扰的用户发消息
      uniCloud.importObject('uni-im-co').sendMsgToGroup({
        pushParam,
        mute:true
      }, appId)
      // 等待500毫秒,给一个请求发出去的时间
      return await new Promise((resolve, reject) => {
        setTimeout(() => {
          resolve({
            errCode: 0,
            errMsg: ''
          })
        }, 500)
      })
    }else{
      // console.log('没有更多用户需要接收消息');
      return {
        errCode: 0,
        errMsg: ''
      }
    }
  }
}

async function getMsgList({
  conversation_ids,
  minUpdateTime,
  limit
}) {
  // 校验conversation_ids是否为当前用户
  let {
    data: conversationList
  } = await dbUniImConversation.where({
    id: dbCmd.in(conversation_ids),
    user_id: this.current_uid,
    leave: dbCmd.neq(true)
  }).get()
  if (conversationList.length !== conversation_ids.length) {
    throw new Error('无效的会话id')
  }
  
  // 查询消息列表
  let res = await dbUniImMsg.where({
    conversation_id: dbCmd.in(conversation_ids),
    update_time: dbCmd.gt(minUpdateTime)
  })
  .orderBy('update_time', 'asc')
  .limit(limit)
  .get()

  return res
}

async function _revokeMsg(msgId) {
  //1. 先查到这条消息
  let {
    data: [msgData]
  } = await dbUniImMsg.doc(msgId).get()
  if (!msgData) {
    throw new Error('无效的消息id')
  }
  // 如果不是 im 产品的管理员
  if (!this.current_user_role.includes('uni-im-admin')) {
    let {
      conversation_id,
      from_uid,
      appid: appId,
      group_id,
      create_time
    } = msgData

    // 判断是不是群主
    let isGroupAdmin = false
    if (group_id) {
      let res = await dbUniImGroupMember
        .where({
          group_id,
          user_id: this.current_uid
        })
        .get()
      let role = res.data[0].role || []
      isGroupAdmin = res.data[0] && role.includes('admin')
    }
    // console.error('isGroupAdmin',isGroupAdmin)

    //如果不是群主,且消息不是发送者的就无权撤回
    if (!isGroupAdmin) {
      if (from_uid != this.current_uid) {
        throw new Error('你不是消息的发送者或群管理员,无权操作')
      } else {
        // 消息发送者为“当前用户”时,消息创建时间需要时间小于2分钟
        if (Date.now() - create_time > 1000 * 60 * 2) {
          throw {
            errSubject: 'uni-im-co',
            errCode: 10004,
            errMsg: '消息已超过2分钟不能撤回'
          }
        }
      }
    }
  }

  // 改变云数据库中此消息的撤回状态
  let res = await dbUniImMsg
    .doc(msgId)
    .update({
      is_revoke: true,
      update_time: Date.now()
    })
  return msgData
}

function _isMuteMsg(msg) {
  return (
    // 加群消息
    msg.action === "join-group" 
    || 
    // 禁言通知
    msg.action === 'update-group-info-mute_all_members' 
    ||
    // 消息本身是静默消息
    msg.is_mute === true
  )
}

async function _isReadableMsg(msg) {
  if (msg.type === 'revoke_msg') return false
  if (msg.action === 'update-group-info-avatar_file') return false
  if (msg.type === 'clear-conversation-unreadCount') return false

  // 如果是扩展的消息类型,由扩展模块决定消息是否可见
  const { msgTypes } = require('uni-im-ext')
  let msgType = await msgTypes.get(msg.type)
  if (msgType && msgType.isReadable) {
    return msgType.isReadable(msg)
  }

  return true
}

module.exports = {
  sendMsg,
  sendMsgToGroup,
  getMsgList
}