UNPKG

2.64 kBPlain TextView Raw
1/*
2 * MIT License
3 *
4 * Copyright (c) 2019 nest-mods
5 *
6 * Permission is hereby granted, free of charge, to any person obtaining a copy
7 * of this software and associated documentation files (the "Software"), to deal
8 * in the Software without restriction, including without limitation the rights
9 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
10 * copies of the Software, and to permit persons to whom the Software is
11 * furnished to do so, subject to the following conditions:
12 *
13 * The above copyright notice and this permission notice shall be included in all
14 * copies or substantial portions of the Software.
15 *
16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
19 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
22 * SOFTWARE.
23 */
24
25import { ModuleMetadata } from '@nestjs/common/interfaces';
26import { SignOptions } from 'jsonwebtoken';
27import { AuthActionType } from './constants';
28
29export interface UserDetail {
30 id?: number;
31 username: string;
32 roles: string[];
33 lastChangedAt: Date;
34}
35
36export interface UserDetailService<T extends UserDetail = UserDetail> {
37 loadByUsername(username: string): Promise<T>;
38
39 verifyPassword(user: T, raw: string): Promise<boolean>;
40
41 loginSuccessful?(user: T): Promise<void>;
42
43 verifyJwtSuccessful?(user: T): Promise<void>;
44
45 loginFailed?(user: T): Promise<void>;
46}
47
48export interface AuthModuleOptions {
49 useJwt?: boolean;
50 useBasic?: boolean;
51 useACL?: boolean;
52 /**
53 * @deprecated
54 */
55 superUserId?: number;
56 bypassUser?: (user: UserDetail) => Promise<boolean> | boolean;
57 service: UserDetailService,
58 basicAuth?: {
59 defaultAuthAction?: AuthActionType,
60 };
61 jwtAuth?: {
62 defaultAuthAction?: AuthActionType,
63 queryTokenKey?: string,
64 secret?: string,
65 signOptions?: SignOptions,
66 };
67}
68
69export interface AuthModuleAsyncOptions extends Pick<ModuleMetadata, 'imports'> {
70 useFactory?: (...args: any[]) => Promise<AuthModuleOptions> | AuthModuleOptions;
71 inject?: any[];
72 enabledController?: boolean;
73}
74
75export type Callback<T = any> = (error: Error | null, data?: T) => void;
76
77export interface Payload {
78 uid: string;
79 sub: string;
80 roles: string[];
81 authType: string;
82 iat: number;
83 exp: number;
84 nbf?: number;
85 jti?: string;
86 iss: string;
87 aud: string;
88}