UNPKG

wechaty-puppet

Version:

Abstract Puppet for Wechaty

153 lines (130 loc) 4.06 kB
/** * Wechaty - https://github.com/wechaty/wechaty * * @copyright 2016-2018 Huan LI <zixia@zixia.net> * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. * */ import * as UUID from 'uuid' import { log, } from '../config.js' /** * Issue #165 - ReferenceError: Cannot access 'PuppetSkeleton' before initialization * @see https://github.com/wechaty/puppet/issues/165 */ import { GError, wrapAsyncError, } from 'gerror' import type { WrapAsync, } from 'gerror' import type { EventErrorPayload } from '../schemas/event.js' import type { PuppetOptions, } from '../schemas/puppet.js' import { PuppetEventEmitter, } from './events.js' abstract class PuppetSkeleton extends PuppetEventEmitter { /** * Puppet ID (UUID) * * Issue #160 - puppet.id will change to puppet.loggedInUserId #160 * - `id` is NOT logged in user ID * - `currentUserId` is the logged in user ID * @see https://github.com/wechaty/puppet/issues/160 */ readonly id: string readonly options: PuppetOptions /** * Wrap promise in sync way (catch error by emitting it) * 1. convert a async callback function to be sync function * by catcing any errors and emit them to error event * 2. wrap a Promise by catcing any errors and emit them to error event */ wrapAsync: WrapAsync = wrapAsyncError((e: any) => this.emit('error', e)) /** * Huan(202110): keep constructor with `args: any[]` parameters * because mixins required it * * We will save args[0] to `this.options` so that all mixins can access it * @param args */ constructor ( ...args: any[] ) { super() log.verbose('PuppetSkeleton', 'constructor(%s)', args.length ? JSON.stringify(args[0]) : '', ) this.id = UUID.v4() this.options = args[0] || {} /** * We will use RxJS & Redux to handle the state of the puppet * which means there will be lots of listeners will be registered later. */ this.setMaxListeners(1024) } /** * Huan(202110): Issue #156 - https://github.com/wechaty/puppet/issues/156 * * All mixins should implemente both `start()` and `stop()`, * and they must call `super.start()` and `super.stop()` * so that all start()/stop() calls can be chained through all mixins. */ async start (): Promise<void> { log.verbose('PuppetSkeleton', 'start()') } async stop (): Promise<void> { log.verbose('PuppetSkeleton', 'stop()') } /** * Convert any error payload to GError , * and re-emit a `error` event with EventErrorPayload(GError) */ override emit (event: any, ...args: any) { if (event !== 'error') { return super.emit(event, ...args) } const arg0 = args[0] let gerr: GError if (arg0 instanceof GError) { gerr = arg0 } else if (arg0 && typeof arg0 === 'object' && 'gerror' in arg0) { /** * in case of the `args` is an `EventErrorPayload` */ gerr = GError.from(arg0.gerror) } else { gerr = GError.from(arg0) } /** * Convert everything to a GError toJSON object * as EventErrorPayload */ const payload: EventErrorPayload = { gerror: JSON.stringify(gerr), } return super.emit('error', payload) } } type PuppetSkeletonProtectedProperty = never export type { PuppetSkeletonProtectedProperty, } export { PuppetSkeleton }