提交 2bc76c00 编写于 作者: Huan (李卓桓)'s avatar Huan (李卓桓)

code clean

上级 7edfae18
...@@ -25,7 +25,6 @@ import { ...@@ -25,7 +25,6 @@ import {
import { import {
MessagePayload, MessagePayload,
// ContactQueryFilter,
ContactGender, ContactGender,
ContactType, ContactType,
ContactPayload, ContactPayload,
...@@ -33,9 +32,6 @@ import { ...@@ -33,9 +32,6 @@ import {
FriendshipPayload, FriendshipPayload,
RoomPayload, RoomPayload,
RoomMemberPayload, RoomMemberPayload,
// RoomQueryFilter,
WATCHDOG_TIMEOUT,
} from '../puppet/' } from '../puppet/'
import { import {
Puppet, Puppet,
...@@ -70,12 +66,6 @@ export interface MockRoomRawPayload { ...@@ -70,12 +66,6 @@ export interface MockRoomRawPayload {
} }
export class PuppetMock extends Puppet { export class PuppetMock extends Puppet {
/**
* Watchdog Timeout in Seconds
* if set this value, the default timeout value will be overwrited,
* and the parent Puppet class will use it to init watchdog
*/
protected [WATCHDOG_TIMEOUT] = 30
constructor( constructor(
public options: PuppetOptions, public options: PuppetOptions,
......
...@@ -701,7 +701,7 @@ export class PadchatManager extends PadchatRpc { ...@@ -701,7 +701,7 @@ export class PadchatManager extends PadchatRpc {
const memberIdList = Object.keys(memberRawPayloadDict) const memberIdList = Object.keys(memberRawPayloadDict)
console.log('memberRawPayloadDict:', memberRawPayloadDict) // console.log('memberRawPayloadDict:', memberRawPayloadDict)
log.verbose('PuppetPadchatManager', 'getRoomMemberIdList(%d) length=%d', roomId, memberIdList.length) log.verbose('PuppetPadchatManager', 'getRoomMemberIdList(%d) length=%d', roomId, memberIdList.length)
return memberIdList return memberIdList
} }
...@@ -747,7 +747,7 @@ export class PadchatManager extends PadchatRpc { ...@@ -747,7 +747,7 @@ export class PadchatManager extends PadchatRpc {
const memberListPayload = await this.WXGetChatRoomMember(roomId) const memberListPayload = await this.WXGetChatRoomMember(roomId)
if (!memberListPayload || !('user_name' in memberListPayload)) { // check user_name too becasue the server might return {} if (!memberListPayload || !('user_name' in memberListPayload)) { // check user_name too becasue the server might return {}
console.log('memberListPayload', memberListPayload) // console.log('memberListPayload', memberListPayload)
throw new Error('no memberListPayload') throw new Error('no memberListPayload')
} }
...@@ -792,8 +792,7 @@ export class PadchatManager extends PadchatRpc { ...@@ -792,8 +792,7 @@ export class PadchatManager extends PadchatRpc {
// console.log('syncContactList:', syncContactList) // console.log('syncContactList:', syncContactList)
if (!Array.isArray(syncContactList) || syncContactList.length <= 0) { if (!Array.isArray(syncContactList) || syncContactList.length <= 0) {
console.log('syncContactList:', syncContactList) log.warn('PuppetPadchatManager', 'syncContactsAndRooms() cannot get array result: %s', JSON.stringify(syncContactList))
log.error('PuppetPadchatManager', 'syncContactsAndRooms() cannot get array result!')
continue continue
} }
......
...@@ -46,8 +46,6 @@ import { ...@@ -46,8 +46,6 @@ import {
FriendshipPayload, FriendshipPayload,
FriendshipPayloadReceive, FriendshipPayloadReceive,
WATCHDOG_TIMEOUT,
} from '../puppet/' } from '../puppet/'
import { import {
......
...@@ -10,6 +10,5 @@ export { ...@@ -10,6 +10,5 @@ export {
} from './puppet' } from './puppet'
export { export {
WATCHDOG_TIMEOUT,
YOU, YOU,
} from './schemas/puppet' } from './schemas/puppet'
...@@ -68,7 +68,6 @@ import { ...@@ -68,7 +68,6 @@ import {
PuppetOptions, PuppetOptions,
Receiver, Receiver,
WATCHDOG_TIMEOUT,
YOU, YOU,
} from './schemas/puppet' } from './schemas/puppet'
......
...@@ -2,12 +2,6 @@ import { ...@@ -2,12 +2,6 @@ import {
MemoryCard, MemoryCard,
} from 'memory-card' } from 'memory-card'
/**
* Watchdog timeout
* in seconds
*/
export const WATCHDOG_TIMEOUT = Symbol('WATCHDOG_TIMEOUT')
/** /**
* This is used internally to as a placeholder for the bot name. * This is used internally to as a placeholder for the bot name.
* *
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册