Skip to content

auth.LocalAuthService

Sclable CI edited this page Sep 11, 2024 · 198 revisions

Class: LocalAuthService<UserType>

auth.LocalAuthService

Type parameters

Name Type
UserType extends ApplicationUserContract

Hierarchy

  • AuthService<UserType>

    LocalAuthService

Table of contents

Constructors

Properties

Methods

Constructors

constructor

new LocalAuthService<UserType>(userService, jwtService): LocalAuthService<UserType>

Type parameters

Name Type
UserType extends ApplicationUserContract

Parameters

Name Type
userService UserServiceContract<UserType>
jwtService JwtService

Returns

LocalAuthService<UserType>

Overrides

AuthService&lt;UserType&gt;.constructor

Defined in

packages/auth/src/services/local-auth.service.ts:12

Properties

jwtService

Protected Readonly jwtService: JwtService

Inherited from

AuthService.jwtService

Defined in

packages/auth/src/services/local-auth.service.ts:14


userService

Private Readonly userService: UserServiceContract<UserType>

Defined in

packages/auth/src/services/local-auth.service.ts:13

Methods

addToBlacklist

addToBlacklist(jwtPayload): void

Parameters

Name Type
jwtPayload JwtPayload

Returns

void

Inherited from

AuthService.addToBlacklist

Defined in

packages/auth/src/services/auth.service.ts:38


decodeAuthorizationHeaderToken

decodeAuthorizationHeaderToken(headerToken): JwtPayload

Parameters

Name Type
headerToken string

Returns

JwtPayload

Inherited from

AuthService.decodeAuthorizationHeaderToken

Defined in

packages/auth/src/services/auth.service.ts:21


getAccessToken

getAccessToken(user): Promise<string>

Parameters

Name Type
user ApplicationUserContract

Returns

Promise<string>

Defined in

packages/auth/src/services/local-auth.service.ts:23


getApplicationUser

getApplicationUser(token): Promise<null | UserType>

Parameters

Name Type
token JwtPayload

Returns

Promise<null | UserType>

Overrides

AuthService.getApplicationUser

Defined in

packages/auth/src/services/local-auth.service.ts:35


isBlackListed

isBlackListed(jwtPayload): boolean

Parameters

Name Type
jwtPayload JwtPayload

Returns

boolean

Inherited from

AuthService.isBlackListed

Defined in

packages/auth/src/services/auth.service.ts:34


isValid

isValid(jwtPayload): boolean

Parameters

Name Type
jwtPayload JwtPayload

Returns

boolean

Inherited from

AuthService.isValid

Defined in

packages/auth/src/services/auth.service.ts:25


validateUser

validateUser(username, password): Promise<null | UserType>

Parameters

Name Type
username string
password string

Returns

Promise<null | UserType>

Defined in

packages/auth/src/services/local-auth.service.ts:19


userDataChanged

userDataChanged(user, token): boolean

Parameters

Name Type
user ApplicationUserContract
token JwtPayload

Returns

boolean

Inherited from

AuthService.userDataChanged

Defined in

packages/auth/src/services/auth.service.ts:12

Clone this wiki locally