|
|
@ -4,13 +4,18 @@ import {
|
|
|
|
IDataProviderHistoricalResponse,
|
|
|
|
IDataProviderHistoricalResponse,
|
|
|
|
IDataProviderResponse
|
|
|
|
IDataProviderResponse
|
|
|
|
} from '@ghostfolio/api/services/interfaces/interfaces';
|
|
|
|
} from '@ghostfolio/api/services/interfaces/interfaces';
|
|
|
|
|
|
|
|
import { PrismaService } from '@ghostfolio/api/services/prisma.service';
|
|
|
|
|
|
|
|
import { SymbolProfileService } from '@ghostfolio/api/services/symbol-profile.service';
|
|
|
|
import { Granularity } from '@ghostfolio/common/types';
|
|
|
|
import { Granularity } from '@ghostfolio/common/types';
|
|
|
|
import { Injectable } from '@nestjs/common';
|
|
|
|
import { Injectable, Logger } from '@nestjs/common';
|
|
|
|
import { DataSource, SymbolProfile } from '@prisma/client';
|
|
|
|
import { DataSource, SymbolProfile } from '@prisma/client';
|
|
|
|
|
|
|
|
|
|
|
|
@Injectable()
|
|
|
|
@Injectable()
|
|
|
|
export class ManualService implements DataProviderInterface {
|
|
|
|
export class ManualService implements DataProviderInterface {
|
|
|
|
public constructor() {}
|
|
|
|
public constructor(
|
|
|
|
|
|
|
|
private readonly prismaService: PrismaService,
|
|
|
|
|
|
|
|
private readonly symbolProfileService: SymbolProfileService
|
|
|
|
|
|
|
|
) {}
|
|
|
|
|
|
|
|
|
|
|
|
public canHandle(symbol: string) {
|
|
|
|
public canHandle(symbol: string) {
|
|
|
|
return false;
|
|
|
|
return false;
|
|
|
@ -42,10 +47,77 @@ export class ManualService implements DataProviderInterface {
|
|
|
|
public async getQuotes(
|
|
|
|
public async getQuotes(
|
|
|
|
aSymbols: string[]
|
|
|
|
aSymbols: string[]
|
|
|
|
): Promise<{ [symbol: string]: IDataProviderResponse }> {
|
|
|
|
): Promise<{ [symbol: string]: IDataProviderResponse }> {
|
|
|
|
|
|
|
|
const response: { [symbol: string]: IDataProviderResponse } = {};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if (aSymbols.length <= 0) {
|
|
|
|
|
|
|
|
return response;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
try {
|
|
|
|
|
|
|
|
const symbolProfiles =
|
|
|
|
|
|
|
|
await this.symbolProfileService.getSymbolProfilesBySymbols(aSymbols);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
const marketData = await this.prismaService.marketData.findMany({
|
|
|
|
|
|
|
|
distinct: ['symbol'],
|
|
|
|
|
|
|
|
orderBy: {
|
|
|
|
|
|
|
|
date: 'desc'
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
take: aSymbols.length,
|
|
|
|
|
|
|
|
where: {
|
|
|
|
|
|
|
|
symbol: {
|
|
|
|
|
|
|
|
in: aSymbols
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
for (const symbolProfile of symbolProfiles) {
|
|
|
|
|
|
|
|
response[symbolProfile.symbol] = {
|
|
|
|
|
|
|
|
currency: symbolProfile.currency,
|
|
|
|
|
|
|
|
dataSource: this.getName(),
|
|
|
|
|
|
|
|
marketPrice:
|
|
|
|
|
|
|
|
marketData.find((marketDataItem) => {
|
|
|
|
|
|
|
|
return marketDataItem.symbol === symbolProfile.symbol;
|
|
|
|
|
|
|
|
})?.marketPrice ?? 0,
|
|
|
|
|
|
|
|
marketState: 'delayed'
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
return response;
|
|
|
|
|
|
|
|
} catch (error) {
|
|
|
|
|
|
|
|
Logger.error(error, 'ManualService');
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
return {};
|
|
|
|
return {};
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public async search(aQuery: string): Promise<{ items: LookupItem[] }> {
|
|
|
|
public async search(aQuery: string): Promise<{ items: LookupItem[] }> {
|
|
|
|
return { items: [] };
|
|
|
|
const items = await this.prismaService.symbolProfile.findMany({
|
|
|
|
|
|
|
|
select: {
|
|
|
|
|
|
|
|
currency: true,
|
|
|
|
|
|
|
|
dataSource: true,
|
|
|
|
|
|
|
|
name: true,
|
|
|
|
|
|
|
|
symbol: true
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
where: {
|
|
|
|
|
|
|
|
OR: [
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
dataSource: this.getName(),
|
|
|
|
|
|
|
|
name: {
|
|
|
|
|
|
|
|
mode: 'insensitive',
|
|
|
|
|
|
|
|
startsWith: aQuery
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
dataSource: this.getName(),
|
|
|
|
|
|
|
|
symbol: {
|
|
|
|
|
|
|
|
mode: 'insensitive',
|
|
|
|
|
|
|
|
startsWith: aQuery
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
]
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
return { items };
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|