Options
All
  • Public
  • Public/Protected
  • All
Menu

Class OAuthService<T>

OAuth service implementing the default OAuth workflow It is abstract as it does not manage any provider as is

todo

add some basic doc on OAuth workflow

Type parameters

  • T: OAuthServiceParameters

Hierarchy

Implements

Constructors

Properties

_authenticationService: Authentication
_createException: string
_initException: any = undefined
_initTime: number
_name: string

Service name

_webda: Core

Webda Core object

logger: Logger

Logger with class context

parameters: T

Hold the parameters for your service

It will be bring from the webda.config.json

defaultMaxListeners: number

Methods

  • __clean(): Promise<any>
  • _callback(ctx: Context): Promise<void>
  • _token(context: Context): Promise<void>
  • addListener(event: string | symbol, listener: function): this
  • addRoute(url: string, methods: HttpMethodType[], executer: Function, openapi?: object, allowPath?: boolean): void
  • checkRequest(context: Context): Promise<boolean>
  • computeParameters(): void
  • emit(event: string | symbol, ...args: any[]): boolean
  • emitSync(event: any, data: any): Promise<any[]>
  • eventNames(): Array<string | symbol>
  • generateAuthUrl(redirect_uri: string, state: string): string
  • getCallbackReferer(): RegExp[]
  • getDefaultUrl(): string
  • getMaxListeners(): number
  • getName(): string
  • getParameters(): T
  • getService<T>(service: string): T
  • handleReturn(ctx: Context, identId: string, profile: any): Promise<void>
  • hasToken(): boolean
  • init(): Promise<void>
  • initRoutes(): void
  • listenerCount(type: string | symbol): number
  • listeners(event: string | symbol): Function[]
  • off(event: string | symbol, listener: function): this
  • on(event: string | symbol, listener: function): this
  • onAsync(event: any, callback: any, queue?: string): void
  • Listen to an event as on(...) would do except that it will be asynchronous

    Parameters

    • event: any
    • callback: any
    • Default value queue: string = undefined

      Name of queue to use, can be undefined, queue name are used to define differents priorities

    Returns void

  • once(event: string | symbol, listener: function): this
  • prependListener(event: string | symbol, listener: function): this
  • prependOnceListener(event: string | symbol, listener: function): this
  • rawListeners(event: string | symbol): Function[]
  • reinit(config: any): Promise<void>
  • removeAllListeners(event?: string | symbol): this
  • removeListener(event: string | symbol, listener: function): this
  • resolve(): void
  • setMaxListeners(n: number): this
  • toPublicJSON(object: any): string
  • listenerCount(emitter: EventEmitter, event: string | symbol): number

Generated using TypeDoc