Skip to content

Commit a6952a0

Browse files
authored
Feature/extend get data sources in data provider service (ghostfolio#4473)
* Extend data sources
1 parent 5247cc3 commit a6952a0

File tree

4 files changed

+22
-5
lines changed

4 files changed

+22
-5
lines changed

apps/api/src/app/import/import.service.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -586,7 +586,7 @@ export class ImportService {
586586
const assetProfiles: {
587587
[assetProfileIdentifier: string]: Partial<SymbolProfile>;
588588
} = {};
589-
const dataSources = await this.dataProviderService.getDataSources();
589+
const dataSources = await this.dataProviderService.getDataSources({ user });
590590

591591
for (const [
592592
index,

apps/api/src/services/configuration/configuration.service.ts

+3
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,9 @@ export class ConfigurationService {
4040
DATA_SOURCES_GHOSTFOLIO_DATA_PROVIDER: json({
4141
default: []
4242
}),
43+
DATA_SOURCES_LEGACY: json({
44+
default: []
45+
}),
4346
ENABLE_FEATURE_FEAR_AND_GREED_INDEX: bool({ default: false }),
4447
ENABLE_FEATURE_READ_ONLY_MODE: bool({ default: false }),
4548
ENABLE_FEATURE_SOCIAL_LOGIN: bool({ default: false }),

apps/api/src/services/data-provider/data-provider.service.ts

+17-4
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ import type { Granularity, UserWithSettings } from '@ghostfolio/common/types';
3030
import { Inject, Injectable, Logger } from '@nestjs/common';
3131
import { DataSource, MarketData, SymbolProfile } from '@prisma/client';
3232
import { Big } from 'big.js';
33-
import { eachDayOfInterval, format, isValid } from 'date-fns';
33+
import { eachDayOfInterval, format, isBefore, isValid } from 'date-fns';
3434
import { groupBy, isEmpty, isNumber, uniqWith } from 'lodash';
3535
import ms from 'ms';
3636

@@ -154,9 +154,22 @@ export class DataProviderService {
154154
return DataSource[this.configurationService.get('DATA_SOURCE_IMPORT')];
155155
}
156156

157-
public async getDataSources(): Promise<DataSource[]> {
157+
public async getDataSources({
158+
user
159+
}: {
160+
user: UserWithSettings;
161+
}): Promise<DataSource[]> {
162+
let dataSourcesKey: 'DATA_SOURCES' | 'DATA_SOURCES_LEGACY' = 'DATA_SOURCES';
163+
164+
if (
165+
isBefore(user.createdAt, new Date('2025-03-23')) &&
166+
this.configurationService.get('DATA_SOURCES_LEGACY')?.length > 0
167+
) {
168+
dataSourcesKey = 'DATA_SOURCES_LEGACY';
169+
}
170+
158171
const dataSources: DataSource[] = this.configurationService
159-
.get('DATA_SOURCES')
172+
.get(dataSourcesKey)
160173
.map((dataSource) => {
161174
return DataSource[dataSource];
162175
});
@@ -608,7 +621,7 @@ export class DataProviderService {
608621
return { items: lookupItems };
609622
}
610623

611-
const dataSources = await this.getDataSources();
624+
const dataSources = await this.getDataSources({ user });
612625

613626
const dataProviderServices = dataSources.map((dataSource) => {
614627
return this.getDataProvider(DataSource[dataSource]);

apps/api/src/services/interfaces/environment.interface.ts

+1
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@ export interface Environment extends CleanedEnvAccessors {
1616
DATA_SOURCE_IMPORT: string;
1717
DATA_SOURCES: string[];
1818
DATA_SOURCES_GHOSTFOLIO_DATA_PROVIDER: string[];
19+
DATA_SOURCES_LEGACY: string[];
1920
ENABLE_FEATURE_FEAR_AND_GREED_INDEX: boolean;
2021
ENABLE_FEATURE_READ_ONLY_MODE: boolean;
2122
ENABLE_FEATURE_SOCIAL_LOGIN: boolean;

0 commit comments

Comments
 (0)