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.
86 lines
2.3 KiB
86 lines
2.3 KiB
import { ConfigurationService } from '@ghostfolio/api/services/configuration/configuration.service';
|
|
import { DataEnhancerInterface } from '@ghostfolio/api/services/data-provider/interfaces/data-enhancer.interface';
|
|
import { parseSymbol } from '@ghostfolio/common/helper';
|
|
|
|
import { Injectable } from '@nestjs/common';
|
|
import { SymbolProfile } from '@prisma/client';
|
|
|
|
@Injectable()
|
|
export class OpenFigiDataEnhancerService implements DataEnhancerInterface {
|
|
private static baseUrl = 'https://api.openfigi.com';
|
|
|
|
public constructor(
|
|
private readonly configurationService: ConfigurationService
|
|
) {}
|
|
|
|
public async enhance({
|
|
requestTimeout = this.configurationService.get('REQUEST_TIMEOUT'),
|
|
response,
|
|
symbol
|
|
}: {
|
|
requestTimeout?: number;
|
|
response: Partial<SymbolProfile>;
|
|
symbol: string;
|
|
}): Promise<Partial<SymbolProfile>> {
|
|
if (
|
|
!(
|
|
response.assetClass === 'EQUITY' &&
|
|
(response.assetSubClass === 'ETF' || response.assetSubClass === 'STOCK')
|
|
)
|
|
) {
|
|
return response;
|
|
}
|
|
|
|
const headers: HeadersInit = {};
|
|
const { exchange, ticker } = parseSymbol({
|
|
symbol,
|
|
dataSource: response.dataSource
|
|
});
|
|
|
|
if (this.configurationService.get('API_KEY_OPEN_FIGI')) {
|
|
headers['X-OPENFIGI-APIKEY'] =
|
|
this.configurationService.get('API_KEY_OPEN_FIGI');
|
|
}
|
|
|
|
const mappings = (await fetch(
|
|
`${OpenFigiDataEnhancerService.baseUrl}/v3/mapping`,
|
|
{
|
|
body: JSON.stringify([
|
|
{ exchCode: exchange, idType: 'TICKER', idValue: ticker }
|
|
]),
|
|
headers: {
|
|
'Content-Type': 'application/json',
|
|
...headers
|
|
},
|
|
method: 'POST',
|
|
signal: AbortSignal.timeout(requestTimeout)
|
|
}
|
|
).then((res) => res.json())) as any[];
|
|
|
|
if (mappings?.length === 1 && mappings[0].data?.length === 1) {
|
|
const { compositeFIGI, figi, shareClassFIGI } = mappings[0].data[0];
|
|
|
|
if (figi) {
|
|
response.figi = figi;
|
|
}
|
|
|
|
if (compositeFIGI) {
|
|
response.figiComposite = compositeFIGI;
|
|
}
|
|
|
|
if (shareClassFIGI) {
|
|
response.figiShareClass = shareClassFIGI;
|
|
}
|
|
}
|
|
|
|
return response;
|
|
}
|
|
|
|
public getName() {
|
|
return 'OPENFIGI';
|
|
}
|
|
|
|
public getTestSymbol() {
|
|
return undefined;
|
|
}
|
|
}
|
|
|