|
@ -56,14 +56,15 @@ export abstract class PortfolioCalculator { |
|
|
private currency: string; |
|
|
private currency: string; |
|
|
private currentRateService: CurrentRateService; |
|
|
private currentRateService: CurrentRateService; |
|
|
private dataProviderInfos: DataProviderInfo[]; |
|
|
private dataProviderInfos: DataProviderInfo[]; |
|
|
|
|
|
private dateRange: DateRange; |
|
|
private endDate: Date; |
|
|
private endDate: Date; |
|
|
private exchangeRateDataService: ExchangeRateDataService; |
|
|
private exchangeRateDataService: ExchangeRateDataService; |
|
|
private isExperimentalFeatures: boolean; |
|
|
|
|
|
private redisCacheService: RedisCacheService; |
|
|
private redisCacheService: RedisCacheService; |
|
|
private snapshot: PortfolioSnapshot; |
|
|
private snapshot: PortfolioSnapshot; |
|
|
private snapshotPromise: Promise<void>; |
|
|
private snapshotPromise: Promise<void>; |
|
|
private startDate: Date; |
|
|
private startDate: Date; |
|
|
private transactionPoints: TransactionPoint[]; |
|
|
private transactionPoints: TransactionPoint[]; |
|
|
|
|
|
private useCache: boolean; |
|
|
private userId: string; |
|
|
private userId: string; |
|
|
|
|
|
|
|
|
public constructor({ |
|
|
public constructor({ |
|
@ -74,8 +75,8 @@ export abstract class PortfolioCalculator { |
|
|
currentRateService, |
|
|
currentRateService, |
|
|
dateRange, |
|
|
dateRange, |
|
|
exchangeRateDataService, |
|
|
exchangeRateDataService, |
|
|
isExperimentalFeatures, |
|
|
|
|
|
redisCacheService, |
|
|
redisCacheService, |
|
|
|
|
|
useCache, |
|
|
userId |
|
|
userId |
|
|
}: { |
|
|
}: { |
|
|
accountBalanceItems: HistoricalDataItem[]; |
|
|
accountBalanceItems: HistoricalDataItem[]; |
|
@ -85,16 +86,16 @@ export abstract class PortfolioCalculator { |
|
|
currentRateService: CurrentRateService; |
|
|
currentRateService: CurrentRateService; |
|
|
dateRange: DateRange; |
|
|
dateRange: DateRange; |
|
|
exchangeRateDataService: ExchangeRateDataService; |
|
|
exchangeRateDataService: ExchangeRateDataService; |
|
|
isExperimentalFeatures: boolean; |
|
|
|
|
|
redisCacheService: RedisCacheService; |
|
|
redisCacheService: RedisCacheService; |
|
|
|
|
|
useCache: boolean; |
|
|
userId: string; |
|
|
userId: string; |
|
|
}) { |
|
|
}) { |
|
|
this.accountBalanceItems = accountBalanceItems; |
|
|
this.accountBalanceItems = accountBalanceItems; |
|
|
this.configurationService = configurationService; |
|
|
this.configurationService = configurationService; |
|
|
this.currency = currency; |
|
|
this.currency = currency; |
|
|
this.currentRateService = currentRateService; |
|
|
this.currentRateService = currentRateService; |
|
|
|
|
|
this.dateRange = dateRange; |
|
|
this.exchangeRateDataService = exchangeRateDataService; |
|
|
this.exchangeRateDataService = exchangeRateDataService; |
|
|
this.isExperimentalFeatures = isExperimentalFeatures; |
|
|
|
|
|
|
|
|
|
|
|
this.activities = activities |
|
|
this.activities = activities |
|
|
.map( |
|
|
.map( |
|
@ -129,6 +130,7 @@ export abstract class PortfolioCalculator { |
|
|
}); |
|
|
}); |
|
|
|
|
|
|
|
|
this.redisCacheService = redisCacheService; |
|
|
this.redisCacheService = redisCacheService; |
|
|
|
|
|
this.useCache = useCache; |
|
|
this.userId = userId; |
|
|
this.userId = userId; |
|
|
|
|
|
|
|
|
const { endDate, startDate } = getInterval(dateRange); |
|
|
const { endDate, startDate } = getInterval(dateRange); |
|
@ -1047,11 +1049,13 @@ export abstract class PortfolioCalculator { |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
private async initialize() { |
|
|
private async initialize() { |
|
|
if (this.isExperimentalFeatures) { |
|
|
if (this.useCache) { |
|
|
const startTimeTotal = performance.now(); |
|
|
const startTimeTotal = performance.now(); |
|
|
|
|
|
|
|
|
const cachedSnapshot = await this.redisCacheService.get( |
|
|
const cachedSnapshot = await this.redisCacheService.get( |
|
|
this.redisCacheService.getPortfolioSnapshotKey(this.userId) |
|
|
this.redisCacheService.getPortfolioSnapshotKey({ |
|
|
|
|
|
userId: this.userId |
|
|
|
|
|
}) |
|
|
); |
|
|
); |
|
|
|
|
|
|
|
|
if (cachedSnapshot) { |
|
|
if (cachedSnapshot) { |
|
@ -1074,7 +1078,9 @@ export abstract class PortfolioCalculator { |
|
|
); |
|
|
); |
|
|
|
|
|
|
|
|
this.redisCacheService.set( |
|
|
this.redisCacheService.set( |
|
|
this.redisCacheService.getPortfolioSnapshotKey(this.userId), |
|
|
this.redisCacheService.getPortfolioSnapshotKey({ |
|
|
|
|
|
userId: this.userId |
|
|
|
|
|
}), |
|
|
JSON.stringify(this.snapshot), |
|
|
JSON.stringify(this.snapshot), |
|
|
this.configurationService.get('CACHE_QUOTES_TTL') |
|
|
this.configurationService.get('CACHE_QUOTES_TTL') |
|
|
); |
|
|
); |
|
|