Options
All
  • Public
  • Public/Protected
  • All
Menu

LicenseSystem is a system that manages the licenses for modules

see

more on https://github.com/collboard/collboard/blob/main/documents/license-system.md

collboard-system

Hierarchy

  • AbstractSystem
    • LicenseSystem

Index

Constructors

  • Parameters

    • systems: ISystemsExtended

    Returns LicenseSystem

Properties

activateLicenseTokensFromGetParams: any
licensesTokens: BehaviorSubject<Set<string>>
ready: Promise<void>

Promise which is resolved when the system is initialized and ready to use.

storage: any
systems: ISystemsExtended

Accessors

  • get isDestroyed(): boolean
  • Is this object destroyed?

    Returns boolean

  • get isReady(): boolean
  • Checks if the system is initialized and ready to use.

    Returns boolean

Methods

  • activateLicenseToken(licenseToken: string): Promise<void>
  • Parameters

    • licenseToken: string

    Returns Promise<void>

  • addSubdestroyable(...subdestroyable: ITeardownLogic[]): LicenseSystem
  • Binds new registration with itself. This registration/destroyable will be destroyed with this.

    Parameters

    • Rest ...subdestroyable: ITeardownLogic[]

    Returns LicenseSystem

  • checkIsReady(): void
  • Checks if the system is initialized and ready to use. If not, throws an error. If it is, do nothing.

    Returns void

  • checkWhetherNotDestroyed(errorMessage?: string, runBeforeError?: () => void): void
  • Checks, whether the object is not destroyed

    Parameters

    • Optional errorMessage: string

      Message that will replace default one before error

    • Optional runBeforeError: () => void

      Callback runed before error is thrown; typically this can be some logging

        • (): void
        • Returns void

    Returns void

  • destroy(): Promise<void>
  • Returns Promise<void>

  • getModuleLicenceInfo(moduleManifest: IModuleManifest): Promise<IUsageLicenseInfo>
  • Parameters

    Returns Promise<IUsageLicenseInfo>

  • Parameters

    Returns Promise<boolean>

  • init(): Promise<void>
  • Returns Promise<void>

  • removeLicenseToken(licenseToken: string): Promise<void>
  • Parameters

    • licenseToken: string

    Returns Promise<void>

  • isDestroyable(obj: any): obj is IDestroyable
  • Chcek whether the given object is destroyable

    Parameters

    • obj: any

    Returns obj is IDestroyable