mirror of https://github.com/ghostfolio/ghostfolio
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
39 lines
1.0 KiB
39 lines
1.0 KiB
import { decodeDataSource } from '@ghostfolio/common/helper';
|
|
import {
|
|
CallHandler,
|
|
ExecutionContext,
|
|
Injectable,
|
|
NestInterceptor
|
|
} from '@nestjs/common';
|
|
import { Observable } from 'rxjs';
|
|
|
|
import { ConfigurationService } from '../services/configuration.service';
|
|
|
|
@Injectable()
|
|
export class TransformDataSourceInRequestInterceptor<T>
|
|
implements NestInterceptor<T, any>
|
|
{
|
|
public constructor(
|
|
private readonly configurationService: ConfigurationService
|
|
) {}
|
|
|
|
public intercept(
|
|
context: ExecutionContext,
|
|
next: CallHandler<T>
|
|
): Observable<any> {
|
|
const http = context.switchToHttp();
|
|
const request = http.getRequest();
|
|
|
|
if (this.configurationService.get('ENABLE_FEATURE_SUBSCRIPTION') === true) {
|
|
if (request.body.dataSource) {
|
|
request.body.dataSource = decodeDataSource(request.body.dataSource);
|
|
}
|
|
|
|
if (request.params.dataSource) {
|
|
request.params.dataSource = decodeDataSource(request.params.dataSource);
|
|
}
|
|
}
|
|
|
|
return next.handle();
|
|
}
|
|
}
|
|
|