HSB-450 feature: user last active on (#4121)

* feat: userLastActiveOnInterceptor added and update func added in userService

* chore: changed user model parameter description

* chore: commented out docker volume for hopp-old-service

* chore: changed backend to work with secure cookies

---------

Co-authored-by: Balu Babu <balub997@gmail.com>
This commit is contained in:
Mir Arif Hasan
2024-06-21 13:10:21 +06:00
committed by GitHub
parent cfb77f2bfe
commit c2085b8b6f
8 changed files with 100 additions and 5 deletions

View File

@@ -0,0 +1,67 @@
import {
Injectable,
NestInterceptor,
ExecutionContext,
CallHandler,
} from '@nestjs/common';
import { GqlContextType, GqlExecutionContext } from '@nestjs/graphql';
import { Observable, throwError } from 'rxjs';
import { catchError, tap } from 'rxjs/operators';
import { AuthUser } from 'src/types/AuthUser';
import { UserService } from 'src/user/user.service';
@Injectable()
export class UserLastActiveOnInterceptor implements NestInterceptor {
constructor(private userService: UserService) {}
user: AuthUser; // 'user', who executed the request
intercept(context: ExecutionContext, next: CallHandler): Observable<any> {
if (context.getType() === 'http') {
return this.restHandler(context, next);
} else if (context.getType<GqlContextType>() === 'graphql') {
return this.graphqlHandler(context, next);
}
}
restHandler(context: ExecutionContext, next: CallHandler): Observable<any> {
const request = context.switchToHttp().getRequest();
this.user = request.user;
return next.handle().pipe(
tap(() => {
if (this.user && typeof this.user === 'object') {
this.userService.updateUserLastActiveOn(this.user.uid);
}
}),
catchError((error) => {
if (this.user && typeof this.user === 'object') {
this.userService.updateUserLastActiveOn(this.user.uid);
}
return throwError(() => error);
}),
);
}
graphqlHandler(
context: ExecutionContext,
next: CallHandler,
): Observable<any> {
const contextObject = GqlExecutionContext.create(context).getContext();
this.user = contextObject.req.user;
return next.handle().pipe(
tap(() => {
if (this.user && typeof this.user === 'object') {
this.userService.updateUserLastActiveOn(this.user.uid);
}
}),
catchError((error) => {
if (this.user && typeof this.user === 'object') {
this.userService.updateUserLastActiveOn(this.user.uid);
}
return throwError(() => error);
}),
);
}
}

View File

@@ -16,7 +16,6 @@ export class UserLastLoginInterceptor implements NestInterceptor {
intercept(context: ExecutionContext, next: CallHandler): Observable<any> {
const user: AuthUser = context.switchToHttp().getRequest().user;
const now = Date.now();
return next.handle().pipe(
tap(() => {
this.userService.updateUserLastLoggedOn(user.uid);