Compare commits
13 Commits
feature/8-
...
main
| Author | SHA1 | Date | |
|---|---|---|---|
| 8734abcc99 | |||
| c66cfb3c9e | |||
| aa09a2685c | |||
| ea108de9cd | |||
| 7f86bb383e | |||
| 04d796da6c | |||
| 24cde897d5 | |||
| 361ed27db4 | |||
| 30b500bd7f | |||
| 533d5d166b | |||
| 41a1b9f807 | |||
| 67014a3080 | |||
| e192dcdb05 |
4
libs/modules/src/auth/auth.controller.ts
Normal file
4
libs/modules/src/auth/auth.controller.ts
Normal file
@@ -0,0 +1,4 @@
|
||||
import { Controller } from '@nestjs/common';
|
||||
|
||||
@Controller('auth-controller')
|
||||
export class AuthControllerController {}
|
||||
@@ -1,27 +1,22 @@
|
||||
import { CanActivate } from '@nestjs/common';
|
||||
import { ExecutionContext, Injectable } from '@nestjs/common';
|
||||
import { Reflector } from '@nestjs/core';
|
||||
import { AuthGuard as PassportAuthGuard } from '@nestjs/passport';
|
||||
import { Observable } from 'rxjs';
|
||||
import { IS_PUBLIC_KEY } from '../decorators/public.decorator';
|
||||
|
||||
@Injectable()
|
||||
export class AuthGuard extends PassportAuthGuard('azure-ad') implements CanActivate {
|
||||
export class AuthGuard extends PassportAuthGuard('jwt') {
|
||||
constructor(private readonly reflector: Reflector) {
|
||||
super();
|
||||
}
|
||||
|
||||
canActivate(context: ExecutionContext): boolean | Promise<boolean> | Observable<boolean> {
|
||||
const isPublic = this.reflector.get<boolean>(
|
||||
'isPublic',
|
||||
IS_PUBLIC_KEY,
|
||||
context.getHandler()
|
||||
);
|
||||
const req = context.switchToHttp().getRequest();
|
||||
const authHeader = req.headers.authorization;
|
||||
const token = authHeader && authHeader.split(' ')[1];
|
||||
)
|
||||
|
||||
if (isPublic && !token) {
|
||||
return true;
|
||||
}
|
||||
if (isPublic) return true;
|
||||
|
||||
return super.canActivate(context);
|
||||
}
|
||||
@@ -1,5 +1,5 @@
|
||||
export interface AuthOptions {
|
||||
tenantId: string;
|
||||
clientId: string;
|
||||
clientSecret: string;
|
||||
export interface AuthModuleOptions {
|
||||
audience: string;
|
||||
issuerUrl: string;
|
||||
jwksUri: string;
|
||||
}
|
||||
|
||||
4
libs/modules/src/auth/auth.module-definition.ts
Normal file
4
libs/modules/src/auth/auth.module-definition.ts
Normal file
@@ -0,0 +1,4 @@
|
||||
import { ConfigurableModuleBuilder } from '@nestjs/common';
|
||||
import { AuthModuleOptions } from './auth.interface';
|
||||
|
||||
export const { ConfigurableModuleClass, MODULE_OPTIONS_TOKEN } = new ConfigurableModuleBuilder<AuthModuleOptions>().build()
|
||||
@@ -1,26 +1,16 @@
|
||||
import { Module, DynamicModule } from '@nestjs/common';
|
||||
import { AuthOptions } from './auth.interface';
|
||||
import { AUTH_OPTIONS } from './auth.constants';
|
||||
import { Module } from '@nestjs/common';
|
||||
import { PassportModule } from '@nestjs/passport';
|
||||
import { AzureAdStrategy } from './auth.strategy';
|
||||
import { AuthStrategy } from './auth.strategy';
|
||||
import { ConfigurableModuleClass } from './auth.module-definition';
|
||||
|
||||
@Module({})
|
||||
export class AuthModule {
|
||||
static register(options: AuthOptions): DynamicModule {
|
||||
return {
|
||||
module: AuthModule,
|
||||
@Module({
|
||||
imports: [
|
||||
PassportModule.register({
|
||||
defaultStrategy: 'azure-ad'
|
||||
defaultStrategy: 'jwt'
|
||||
})
|
||||
],
|
||||
providers: [
|
||||
{
|
||||
provide: AUTH_OPTIONS,
|
||||
useValue: options
|
||||
},
|
||||
AzureAdStrategy
|
||||
AuthStrategy
|
||||
]
|
||||
};
|
||||
}
|
||||
}
|
||||
})
|
||||
export class AuthModule extends ConfigurableModuleClass {}
|
||||
|
||||
@@ -1,25 +1,29 @@
|
||||
import { Inject, Injectable } from "@nestjs/common";
|
||||
import { PassportStrategy } from "@nestjs/passport";
|
||||
import { BearerStrategy } from 'passport-azure-ad';
|
||||
import { AuthOptions } from './auth.interface'
|
||||
import { AUTH_OPTIONS } from "./auth.constants";
|
||||
import { Inject, Injectable } from '@nestjs/common';
|
||||
import { PassportStrategy } from '@nestjs/passport';
|
||||
import { ExtractJwt, Strategy } from 'passport-jwt';
|
||||
import * as jwksRsa from 'jwks-rsa';
|
||||
import { AuthModuleOptions } from './auth.interface';
|
||||
import { MODULE_OPTIONS_TOKEN } from './auth.module-definition';
|
||||
|
||||
@Injectable()
|
||||
export class AzureAdStrategy extends PassportStrategy(
|
||||
BearerStrategy,
|
||||
'azure-ad'
|
||||
) {
|
||||
constructor(@Inject(AUTH_OPTIONS) authOptions: AuthOptions) {
|
||||
export class AuthStrategy extends PassportStrategy(Strategy, 'jwt') {
|
||||
constructor(@Inject(MODULE_OPTIONS_TOKEN) authModuleOptions: AuthModuleOptions) {
|
||||
super({
|
||||
identityMetadata: `https://login.microsoftonline.com/${authOptions.tenantId}/.well-known/openid-configuration`,
|
||||
clientID: authOptions.clientId,
|
||||
audience: `api://${authOptions.clientId}`,
|
||||
loggingLevel: 'info',
|
||||
loggingNoPII: false
|
||||
})
|
||||
jwtFromRequest: ExtractJwt.fromAuthHeaderAsBearerToken(),
|
||||
audience: authModuleOptions.audience,
|
||||
issuer: authModuleOptions.issuerUrl,
|
||||
algorithms: ['RS256'],
|
||||
ignoreExpiration: false,
|
||||
secretOrKeyProvider: jwksRsa.passportJwtSecret({
|
||||
cache: true,
|
||||
rateLimit: true,
|
||||
jwksRequestsPerMinute: 5,
|
||||
jwksUri: authModuleOptions.jwksUri,
|
||||
}),
|
||||
});
|
||||
}
|
||||
|
||||
async validate(data: any): Promise<any> {
|
||||
return data;
|
||||
validate(payload: any) {
|
||||
return payload;
|
||||
}
|
||||
}
|
||||
@@ -1,3 +0,0 @@
|
||||
import { SetMetadata } from "@nestjs/common";
|
||||
|
||||
export const Public = () => SetMetadata('isPublic', true);
|
||||
@@ -1 +0,0 @@
|
||||
export const APP_CONFIG_OPTIONS = 'APP_CONFIG_OPTIONS';
|
||||
@@ -1,21 +0,0 @@
|
||||
import { Module, DynamicModule } from '@nestjs/common';
|
||||
import { AppConfigService } from './az-app-config.service';
|
||||
import { AppConfigOptions } from './az-app-config.interface';
|
||||
import { APP_CONFIG_OPTIONS } from './az-app-config.constants';
|
||||
|
||||
@Module({})
|
||||
export class AppConfigModule {
|
||||
static register(options: AppConfigOptions): DynamicModule {
|
||||
return {
|
||||
module: AppConfigModule,
|
||||
providers: [
|
||||
{
|
||||
provide: APP_CONFIG_OPTIONS,
|
||||
useValue: options
|
||||
},
|
||||
AppConfigService
|
||||
],
|
||||
exports: [AppConfigService]
|
||||
};
|
||||
}
|
||||
}
|
||||
@@ -1,38 +0,0 @@
|
||||
import { Inject, Injectable } from '@nestjs/common';
|
||||
import { AppConfigOptions } from './az-app-config.interface';
|
||||
import { APP_CONFIG_OPTIONS } from './az-app-config.constants';
|
||||
import axios, { AxiosResponse } from 'axios';
|
||||
import { AppConfigurationClient, ConfigurationSetting, FeatureFlagValue, GetConfigurationSettingResponse, featureFlagPrefix, isFeatureFlag, parseFeatureFlag } from '@azure/app-configuration';
|
||||
import { ClientSecretCredential } from '@azure/identity';
|
||||
|
||||
@Injectable()
|
||||
export class AppConfigService {
|
||||
constructor(
|
||||
@Inject(APP_CONFIG_OPTIONS)
|
||||
private appConfigOptions: AppConfigOptions
|
||||
) { }
|
||||
|
||||
async getFeatureFlags(keys: string[], label: string): Promise<{ key: string, enabled: boolean }[]> {
|
||||
const credential: ClientSecretCredential = new ClientSecretCredential(this.appConfigOptions.tenantId, this.appConfigOptions.clientId, this.appConfigOptions.clientSecret);
|
||||
const client: AppConfigurationClient = new AppConfigurationClient(this.appConfigOptions.url, credential);
|
||||
const featureFlags: { key: string, enabled: boolean }[] = await Promise.all(
|
||||
keys.map(async (key: string) => {
|
||||
const configSetting: GetConfigurationSettingResponse = await client.getConfigurationSetting({
|
||||
key: `${featureFlagPrefix}${key}`,
|
||||
label: label
|
||||
});
|
||||
|
||||
if (isFeatureFlag(configSetting)) {
|
||||
const parsedFeatureFlag: ConfigurationSetting<FeatureFlagValue> = parseFeatureFlag(configSetting);
|
||||
|
||||
return {
|
||||
key: parsedFeatureFlag.value.id,
|
||||
enabled: parsedFeatureFlag.value.enabled
|
||||
}
|
||||
}
|
||||
})
|
||||
);
|
||||
|
||||
return featureFlags;
|
||||
}
|
||||
}
|
||||
@@ -1 +0,0 @@
|
||||
export const TABLE_OPTIONS = 'TABLE_OPTIONS';
|
||||
@@ -1,4 +0,0 @@
|
||||
export interface TableOptions {
|
||||
accountName: string;
|
||||
accountKey: string;
|
||||
}
|
||||
@@ -1,21 +0,0 @@
|
||||
import { Module, DynamicModule } from '@nestjs/common';
|
||||
import { TableService } from './az-table.service';
|
||||
import { TableOptions } from './az-table.interface';
|
||||
import { TABLE_OPTIONS } from './az-table.constants';
|
||||
|
||||
@Module({})
|
||||
export class TableModule {
|
||||
static register(options: TableOptions): DynamicModule {
|
||||
return {
|
||||
module: TableModule,
|
||||
providers: [
|
||||
{
|
||||
provide: TABLE_OPTIONS,
|
||||
useValue: options
|
||||
},
|
||||
TableService
|
||||
],
|
||||
exports: [TableService]
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -1,19 +0,0 @@
|
||||
import { Inject, Injectable } from '@nestjs/common';
|
||||
import { TableOptions } from './az-table.interface';
|
||||
import { TABLE_OPTIONS } from './az-table.constants';
|
||||
import { TableClient, AzureNamedKeyCredential } from '@azure/data-tables';
|
||||
|
||||
@Injectable()
|
||||
export class TableService {
|
||||
constructor(
|
||||
@Inject(TABLE_OPTIONS)
|
||||
private tablesOptions: TableOptions
|
||||
) {}
|
||||
|
||||
async getTableClient(tableName: string): Promise<TableClient> {
|
||||
const credential: AzureNamedKeyCredential = new AzureNamedKeyCredential(this.tablesOptions.accountName, this.tablesOptions.accountKey);
|
||||
const tableClient: TableClient = new TableClient(`https://${this.tablesOptions.accountName}.table.core.windows.net`, tableName, credential);
|
||||
|
||||
return tableClient;
|
||||
}
|
||||
}
|
||||
4
libs/modules/src/decorators/public.decorator.ts
Normal file
4
libs/modules/src/decorators/public.decorator.ts
Normal file
@@ -0,0 +1,4 @@
|
||||
import { SetMetadata } from "@nestjs/common";
|
||||
|
||||
export const IS_PUBLIC_KEY = "isPublic";
|
||||
export const Public = () => SetMetadata(IS_PUBLIC_KEY, true);
|
||||
@@ -1,22 +1,19 @@
|
||||
// Azure App Configuration
|
||||
|
||||
export * from './azAppConfig/az-app-config.module';
|
||||
export * from './azAppConfig/az-app-config.service';
|
||||
|
||||
// Azure Data Tables
|
||||
|
||||
export * from './azTable/az-table.module';
|
||||
export * from './azTable/az-table.service';
|
||||
export { TableClient } from '@azure/data-tables';
|
||||
|
||||
// Auth
|
||||
|
||||
export * from './auth/auth.module';
|
||||
export * from './auth/auth.gaurd';
|
||||
export * from './auth/public.decorator';
|
||||
export * from './auth/auth.guard';
|
||||
|
||||
// Custom Error
|
||||
|
||||
export * from './util/customError';
|
||||
|
||||
// Decorators
|
||||
|
||||
export { IS_PUBLIC_KEY, Public } from './decorators/public.decorator'
|
||||
|
||||
// MsGraph
|
||||
|
||||
export * from './msgraph/msgraph.module';
|
||||
export * from './msgraph/msgraph.service';
|
||||
|
||||
// MS Graph
|
||||
|
||||
export * from './msGraph/ms-graph.module';
|
||||
export * from './msGraph/ms-graph.service';
|
||||
export { Client as MsGraphClient } from '@microsoft/microsoft-graph-client';
|
||||
|
||||
@@ -1 +0,0 @@
|
||||
export const MS_GRAPH_OPTIONS = 'MS_GRAPH_OPTIONS';
|
||||
@@ -1,5 +0,0 @@
|
||||
export interface MsGraphOptions {
|
||||
tenantId: string;
|
||||
clientId: string;
|
||||
clientSecret: string;
|
||||
}
|
||||
@@ -1,21 +0,0 @@
|
||||
import { Module, DynamicModule } from '@nestjs/common';
|
||||
import { MsGraphService } from './ms-graph.service';
|
||||
import { MsGraphOptions } from './ms-graph.interface';
|
||||
import { MS_GRAPH_OPTIONS } from './ms-graph.constants';
|
||||
|
||||
@Module({})
|
||||
export class MsGraphModule {
|
||||
static register(options: MsGraphOptions): DynamicModule {
|
||||
return {
|
||||
module: MsGraphModule,
|
||||
providers: [
|
||||
{
|
||||
provide: MS_GRAPH_OPTIONS,
|
||||
useValue: options
|
||||
},
|
||||
MsGraphService
|
||||
],
|
||||
exports: [MsGraphService]
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -1,41 +0,0 @@
|
||||
import { Inject, Injectable } from '@nestjs/common';
|
||||
import { MsGraphOptions } from './ms-graph.interface';
|
||||
import { MS_GRAPH_OPTIONS } from './ms-graph.constants';
|
||||
import { Client } from '@microsoft/microsoft-graph-client';
|
||||
import { AuthenticationResult, ConfidentialClientApplication, OnBehalfOfRequest } from '@azure/msal-node';
|
||||
|
||||
@Injectable()
|
||||
export class MsGraphService {
|
||||
constructor(@Inject(MS_GRAPH_OPTIONS) private msGraphOptions: MsGraphOptions) {}
|
||||
|
||||
async getMsGraphAuth(accessToken: string, scopes: string[]): Promise<string> {
|
||||
try {
|
||||
const oboRequest: OnBehalfOfRequest = {
|
||||
oboAssertion: accessToken,
|
||||
scopes: scopes
|
||||
}
|
||||
const cca = new ConfidentialClientApplication({
|
||||
auth: {
|
||||
clientId: this.msGraphOptions.clientId,
|
||||
clientSecret: this.msGraphOptions.clientSecret,
|
||||
authority: `https://login.microsoftonline.com/${this.msGraphOptions.tenantId}`
|
||||
}
|
||||
});
|
||||
const authenticationResult: AuthenticationResult = await cca.acquireTokenOnBehalfOf(oboRequest);
|
||||
|
||||
return authenticationResult.accessToken
|
||||
} catch (error) {
|
||||
return error
|
||||
}
|
||||
}
|
||||
|
||||
async getMsGraphClientDelegated(accessToken): Promise<Client> {
|
||||
const client = await Client.init({
|
||||
authProvider: (done) => {
|
||||
done(null, accessToken);
|
||||
}
|
||||
});
|
||||
|
||||
return client;
|
||||
}
|
||||
}
|
||||
1
libs/modules/src/msgraph/msgraph.constants.ts
Normal file
1
libs/modules/src/msgraph/msgraph.constants.ts
Normal file
@@ -0,0 +1 @@
|
||||
export const MSGRAPH_MODULE_OPTIONS = 'MSGRAPH_MODULE_OPTIONS'
|
||||
76
libs/modules/src/msgraph/msgraph.controller.ts
Normal file
76
libs/modules/src/msgraph/msgraph.controller.ts
Normal file
@@ -0,0 +1,76 @@
|
||||
import {
|
||||
Controller,
|
||||
Get,
|
||||
Headers,
|
||||
Query,
|
||||
StreamableFile,
|
||||
UseGuards,
|
||||
} from '@nestjs/common';
|
||||
import { MsGraphService } from './msgraph.service';
|
||||
import { Client as MsGraphClient } from '@microsoft/microsoft-graph-client';
|
||||
import { AuthGuard } from '../auth/auth.guard';
|
||||
|
||||
@Controller('msgraph')
|
||||
export class MsGraphController {
|
||||
constructor(
|
||||
private readonly msGraphService: MsGraphService
|
||||
) {}
|
||||
|
||||
@Get('photo')
|
||||
@UseGuards(AuthGuard)
|
||||
async getProfilePhoto(@Headers() headers: any): Promise<StreamableFile> {
|
||||
try {
|
||||
const graphToken: string = await this.msGraphService.getMsGraphAuth(
|
||||
headers.authorization.replace('Bearer ', ''),
|
||||
['user.read']
|
||||
);
|
||||
const client: MsGraphClient =
|
||||
await this.msGraphService.getMsGraphClientDelegated(graphToken);
|
||||
const blob: Blob = await client.api(`me/photos('48x48')/$value`).get();
|
||||
const arrayBuffer: ArrayBuffer = await blob.arrayBuffer();
|
||||
const buffer: Buffer = Buffer.from(arrayBuffer);
|
||||
|
||||
return new StreamableFile(buffer, {
|
||||
type: 'application/json',
|
||||
disposition: `attachment; filename="user_photo.png"`
|
||||
});
|
||||
} catch (error) {
|
||||
return error;
|
||||
}
|
||||
}
|
||||
|
||||
@Get('profile')
|
||||
@UseGuards(AuthGuard)
|
||||
async getUserProfile(@Headers() headers: any): Promise<any> {
|
||||
try {
|
||||
const graphToken: string = await this.msGraphService.getMsGraphAuth(
|
||||
headers.authorization.replace('Bearer ', ''),
|
||||
['user.read']
|
||||
);
|
||||
const client: MsGraphClient =
|
||||
await this.msGraphService.getMsGraphClientDelegated(graphToken);
|
||||
const userProfile = await client.api(`me`).get();
|
||||
|
||||
return userProfile;
|
||||
} catch (error) {
|
||||
return error;
|
||||
}
|
||||
}
|
||||
|
||||
@Get('search')
|
||||
@UseGuards(AuthGuard)
|
||||
async searchUsers(
|
||||
@Headers() headers: any,
|
||||
@Query('search') search: any
|
||||
): Promise<any> {
|
||||
try {
|
||||
const accessToken: string = headers.authorization.replace('Bearer ', '');
|
||||
const personSearchResults: any[] =
|
||||
await this.msGraphService.searchUsers(accessToken, search);
|
||||
|
||||
return personSearchResults;
|
||||
} catch (error) {
|
||||
return error;
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -1,6 +1,6 @@
|
||||
export interface AppConfigOptions {
|
||||
url: string;
|
||||
tenantId: string;
|
||||
export interface MsGraphModuleOptions {
|
||||
authority: string;
|
||||
clientId: string;
|
||||
clientSecret: string;
|
||||
tenantId: string;
|
||||
}
|
||||
4
libs/modules/src/msgraph/msgraph.module-definition.ts
Normal file
4
libs/modules/src/msgraph/msgraph.module-definition.ts
Normal file
@@ -0,0 +1,4 @@
|
||||
import { ConfigurableModuleBuilder } from '@nestjs/common';
|
||||
import { MsGraphModuleOptions } from './msgraph.interface';
|
||||
|
||||
export const { ConfigurableModuleClass, ASYNC_OPTIONS_TYPE, MODULE_OPTIONS_TOKEN, OPTIONS_TYPE } = new ConfigurableModuleBuilder<MsGraphModuleOptions>().build()
|
||||
11
libs/modules/src/msgraph/msgraph.module.ts
Normal file
11
libs/modules/src/msgraph/msgraph.module.ts
Normal file
@@ -0,0 +1,11 @@
|
||||
import { Module } from '@nestjs/common';
|
||||
import { MsGraphService } from './msgraph.service';
|
||||
import { ConfigurableModuleClass } from './msgraph.module-definition';
|
||||
import { MsGraphController } from './msgraph.controller';
|
||||
|
||||
@Module({
|
||||
controllers: [MsGraphController],
|
||||
providers: [MsGraphService],
|
||||
exports: [MsGraphService]
|
||||
})
|
||||
export class MsGraphModule extends ConfigurableModuleClass {}
|
||||
96
libs/modules/src/msgraph/msgraph.service.ts
Normal file
96
libs/modules/src/msgraph/msgraph.service.ts
Normal file
@@ -0,0 +1,96 @@
|
||||
import { Inject, Injectable, StreamableFile } from '@nestjs/common';
|
||||
import { MsGraphModuleOptions } from './msgraph.interface';
|
||||
import { Client } from '@microsoft/microsoft-graph-client';
|
||||
import { AuthenticationResult, ConfidentialClientApplication, OnBehalfOfRequest } from '@azure/msal-node';
|
||||
import { MODULE_OPTIONS_TOKEN } from './msgraph.module-definition';
|
||||
|
||||
@Injectable()
|
||||
export class MsGraphService {
|
||||
constructor(@Inject(MODULE_OPTIONS_TOKEN) private msGraphModuleOptions: MsGraphModuleOptions) {}
|
||||
|
||||
async getMsGraphAuth(accessToken: string, scopes: string[]): Promise<string> {
|
||||
try {
|
||||
const oboRequest: OnBehalfOfRequest = {
|
||||
oboAssertion: accessToken,
|
||||
scopes: scopes
|
||||
}
|
||||
const cca = new ConfidentialClientApplication({
|
||||
auth: {
|
||||
clientId: this.msGraphModuleOptions.clientId,
|
||||
clientSecret: this.msGraphModuleOptions.clientSecret,
|
||||
authority: this.msGraphModuleOptions.authority
|
||||
}
|
||||
});
|
||||
const authenticationResult: AuthenticationResult = await cca.acquireTokenOnBehalfOf(oboRequest);
|
||||
|
||||
return authenticationResult.accessToken
|
||||
} catch (error) {
|
||||
return error
|
||||
}
|
||||
}
|
||||
|
||||
async getMsGraphClientDelegated(accessToken): Promise<Client> {
|
||||
const client = await Client.init({
|
||||
authProvider: (done) => {
|
||||
done(null, accessToken);
|
||||
}
|
||||
});
|
||||
|
||||
return client;
|
||||
}
|
||||
|
||||
async getProfilePhoto(accessToken: string, scopes: string[]): Promise<Buffer> {
|
||||
try {
|
||||
const graphToken: string = await this.getMsGraphAuth(accessToken, scopes);
|
||||
const client: Client = await this.getMsGraphClientDelegated(graphToken);
|
||||
const blob: Blob = await client.api(`me/photos('48x48)/$value`).get();
|
||||
const arrayBuffer: ArrayBuffer = await blob.arrayBuffer();
|
||||
const buffer: Buffer = Buffer.from(arrayBuffer);
|
||||
|
||||
return buffer;
|
||||
} catch (error) {
|
||||
return error;
|
||||
}
|
||||
}
|
||||
|
||||
async getUserProfile(accessToken): Promise<any> {
|
||||
try {
|
||||
const graphToken: string = await this.getMsGraphAuth(accessToken, ['user.read']);
|
||||
const client: Client = await this.getMsGraphClientDelegated(graphToken);
|
||||
const userProfile = await client.api(`me`).get();
|
||||
|
||||
return userProfile
|
||||
} catch (error) {
|
||||
return error;
|
||||
}
|
||||
}
|
||||
|
||||
async searchUsers(accessToken, searchText: string): Promise<any> {
|
||||
try {
|
||||
const graphToken: string = await this.getMsGraphAuth(accessToken, ['user.read.all']);
|
||||
const client: Client = await this.getMsGraphClientDelegated(graphToken);
|
||||
const results: any = await client
|
||||
.api('users')
|
||||
.header('ConsistencyLevel', 'eventual')
|
||||
.search(`"displayName:${searchText}"`)
|
||||
.orderby('displayName')
|
||||
.select(['displayName', 'userPrincipalName'])
|
||||
.get();
|
||||
let personResults: any[];
|
||||
|
||||
if (results.value) {
|
||||
personResults = results.value.filter((result: any) => {
|
||||
if (result.userPrincipalName !== null) {
|
||||
return result;
|
||||
}
|
||||
});
|
||||
} else {
|
||||
personResults = []
|
||||
}
|
||||
|
||||
return personResults;
|
||||
} catch (error) {
|
||||
throw new Error(error);
|
||||
}
|
||||
}
|
||||
}
|
||||
9
libs/modules/src/util/customError.ts
Normal file
9
libs/modules/src/util/customError.ts
Normal file
@@ -0,0 +1,9 @@
|
||||
export class CustomError extends Error {
|
||||
statusCode: number;
|
||||
|
||||
constructor(message, name, statusCode) {
|
||||
super(message);
|
||||
this.name = name;
|
||||
this.statusCode = statusCode;
|
||||
}
|
||||
}
|
||||
@@ -5,5 +5,5 @@
|
||||
"outDir": "../../dist/libs/modules"
|
||||
},
|
||||
"include": ["src/**/*"],
|
||||
"exclude": ["node_modules", "dist", "test", "**/*spec.ts"]
|
||||
"exclude": ["node_modules", "src/**/*.spec.ts"]
|
||||
}
|
||||
|
||||
3147
package-lock.json
generated
3147
package-lock.json
generated
File diff suppressed because it is too large
Load Diff
28
package.json
28
package.json
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@noahspan/noahspan-modules",
|
||||
"version": "0.4.0",
|
||||
"version": "1.2.11",
|
||||
"description": "",
|
||||
"author": "",
|
||||
"license": "UNLICENSED",
|
||||
@@ -24,28 +24,32 @@
|
||||
"test:e2e": "jest --config ./test/jest-e2e.json"
|
||||
},
|
||||
"dependencies": {
|
||||
"@azure/app-configuration": "^1.6.0",
|
||||
"@azure/data-tables": "^13.2.2",
|
||||
"@azure/identity": "^4.2.0",
|
||||
"@azure/msal-node": "^2.9.2",
|
||||
"@microsoft/microsoft-graph-client": "^3.0.7",
|
||||
"@nestjs/common": "^10.0.0",
|
||||
"@nestjs/core": "^10.0.0",
|
||||
"@nestjs/passport": "^10.0.3",
|
||||
"@nestjs/platform-express": "^10.0.0",
|
||||
"@nestjs/common": "^11.0.11",
|
||||
"@nestjs/core": "^11.0.11",
|
||||
"@nestjs/jwt": "^11.0.0",
|
||||
"@nestjs/mapped-types": "*",
|
||||
"@nestjs/passport": "^11.0.5",
|
||||
"@nestjs/platform-express": "^11.0.11",
|
||||
"axios": "^1.7.2",
|
||||
"passport-azure-ad": "^4.3.5",
|
||||
"reflect-metadata": "^0.2.0",
|
||||
"jwks-rsa": "^3.2.0",
|
||||
"passport": "^0.7.0",
|
||||
"passport-jwt": "^4.0.1",
|
||||
"passport-openidconnect": "^0.1.2",
|
||||
"reflect-metadata": "^0.2.2",
|
||||
"rxjs": "^7.8.1"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@microsoft/microsoft-graph-types": "^2.40.0",
|
||||
"@nestjs/cli": "^10.0.0",
|
||||
"@nestjs/schematics": "^10.0.0",
|
||||
"@nestjs/testing": "^10.0.0",
|
||||
"@nestjs/cli": "^11.0.5",
|
||||
"@nestjs/schematics": "^11.0.2",
|
||||
"@nestjs/testing": "^11.0.11",
|
||||
"@types/express": "^4.17.17",
|
||||
"@types/jest": "^29.5.2",
|
||||
"@types/node": "^20.3.1",
|
||||
"@types/passport-openidconnect": "^0.1.3",
|
||||
"@types/supertest": "^6.0.0",
|
||||
"@typescript-eslint/eslint-plugin": "^6.0.0",
|
||||
"@typescript-eslint/parser": "^6.0.0",
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
{
|
||||
"extends": "./tsconfig.json",
|
||||
"exclude": ["node_modules", "test", "dist", "**/*spec.ts"]
|
||||
"exclude": ["node_modules", "**/*.spec.ts"]
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user