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.
439 lines
12 KiB
439 lines
12 KiB
import { SubscriptionService } from '@ghostfolio/api/app/subscription/subscription.service';
|
|
import { environment } from '@ghostfolio/api/environments/environment';
|
|
import { ConfigurationService } from '@ghostfolio/api/services/configuration/configuration.service';
|
|
import { DataProviderService } from '@ghostfolio/api/services/data-provider/data-provider.service';
|
|
import { ExchangeRateDataService } from '@ghostfolio/api/services/exchange-rate-data/exchange-rate-data.service';
|
|
import { MarketDataService } from '@ghostfolio/api/services/market-data/market-data.service';
|
|
import { PrismaService } from '@ghostfolio/api/services/prisma/prisma.service';
|
|
import { PropertyService } from '@ghostfolio/api/services/property/property.service';
|
|
import { SymbolProfileService } from '@ghostfolio/api/services/symbol-profile/symbol-profile.service';
|
|
import {
|
|
DEFAULT_CURRENCY,
|
|
PROPERTY_CURRENCIES,
|
|
PROPERTY_IS_READ_ONLY_MODE,
|
|
PROPERTY_IS_USER_SIGNUP_ENABLED
|
|
} from '@ghostfolio/common/config';
|
|
import {
|
|
AdminData,
|
|
AdminMarketData,
|
|
AdminMarketDataDetails,
|
|
AdminMarketDataItem,
|
|
Filter,
|
|
UniqueAsset
|
|
} from '@ghostfolio/common/interfaces';
|
|
import { MarketDataPreset } from '@ghostfolio/common/types';
|
|
import { BadRequestException, Injectable } from '@nestjs/common';
|
|
import { AssetSubClass, Prisma, Property, SymbolProfile } from '@prisma/client';
|
|
import { differenceInDays } from 'date-fns';
|
|
import { groupBy } from 'lodash';
|
|
|
|
@Injectable()
|
|
export class AdminService {
|
|
public constructor(
|
|
private readonly configurationService: ConfigurationService,
|
|
private readonly dataProviderService: DataProviderService,
|
|
private readonly exchangeRateDataService: ExchangeRateDataService,
|
|
private readonly marketDataService: MarketDataService,
|
|
private readonly prismaService: PrismaService,
|
|
private readonly propertyService: PropertyService,
|
|
private readonly subscriptionService: SubscriptionService,
|
|
private readonly symbolProfileService: SymbolProfileService
|
|
) {}
|
|
|
|
public async addAssetProfile({
|
|
dataSource,
|
|
symbol
|
|
}: UniqueAsset): Promise<SymbolProfile | never> {
|
|
try {
|
|
const assetProfiles = await this.dataProviderService.getAssetProfiles([
|
|
{ dataSource, symbol }
|
|
]);
|
|
|
|
if (!assetProfiles[symbol]?.currency) {
|
|
throw new BadRequestException(
|
|
`Asset profile not found for ${symbol} (${dataSource})`
|
|
);
|
|
}
|
|
|
|
return await this.symbolProfileService.add(
|
|
assetProfiles[symbol] as Prisma.SymbolProfileCreateInput
|
|
);
|
|
} catch (error) {
|
|
if (
|
|
error instanceof Prisma.PrismaClientKnownRequestError &&
|
|
error.code === 'P2002'
|
|
) {
|
|
throw new BadRequestException(
|
|
`Asset profile of ${symbol} (${dataSource}) already exists`
|
|
);
|
|
}
|
|
|
|
throw error;
|
|
}
|
|
}
|
|
|
|
public async deleteProfileData({ dataSource, symbol }: UniqueAsset) {
|
|
await this.marketDataService.deleteMany({ dataSource, symbol });
|
|
await this.symbolProfileService.delete({ dataSource, symbol });
|
|
}
|
|
|
|
public async get(): Promise<AdminData> {
|
|
return {
|
|
exchangeRates: this.exchangeRateDataService
|
|
.getCurrencies()
|
|
.filter((currency) => {
|
|
return currency !== DEFAULT_CURRENCY;
|
|
})
|
|
.map((currency) => {
|
|
return {
|
|
label1: DEFAULT_CURRENCY,
|
|
label2: currency,
|
|
value: this.exchangeRateDataService.toCurrency(
|
|
1,
|
|
DEFAULT_CURRENCY,
|
|
currency
|
|
)
|
|
};
|
|
}),
|
|
settings: await this.propertyService.get(),
|
|
transactionCount: await this.prismaService.order.count(),
|
|
userCount: await this.prismaService.user.count(),
|
|
users: await this.getUsersWithAnalytics(),
|
|
version: environment.version
|
|
};
|
|
}
|
|
|
|
public async getMarketData({
|
|
filters,
|
|
presetId,
|
|
sortColumn,
|
|
sortDirection,
|
|
skip,
|
|
take = Number.MAX_SAFE_INTEGER
|
|
}: {
|
|
filters?: Filter[];
|
|
presetId?: MarketDataPreset;
|
|
skip?: number;
|
|
sortColumn?: string;
|
|
sortDirection?: Prisma.SortOrder;
|
|
take?: number;
|
|
}): Promise<AdminMarketData> {
|
|
let orderBy: Prisma.Enumerable<Prisma.SymbolProfileOrderByWithRelationInput> =
|
|
[{ symbol: 'asc' }];
|
|
const where: Prisma.SymbolProfileWhereInput = {};
|
|
|
|
if (presetId === 'CURRENCIES') {
|
|
return this.getMarketDataForCurrencies();
|
|
} else if (
|
|
presetId === 'ETF_WITHOUT_COUNTRIES' ||
|
|
presetId === 'ETF_WITHOUT_SECTORS'
|
|
) {
|
|
filters = [{ id: 'ETF', type: 'ASSET_SUB_CLASS' }];
|
|
}
|
|
|
|
const searchQuery = filters.find(({ type }) => {
|
|
return type === 'SEARCH_QUERY';
|
|
})?.id;
|
|
|
|
const { ASSET_SUB_CLASS: filtersByAssetSubClass } = groupBy(
|
|
filters,
|
|
({ type }) => {
|
|
return type;
|
|
}
|
|
);
|
|
|
|
const marketDataItems = await this.prismaService.marketData.groupBy({
|
|
_count: true,
|
|
by: ['dataSource', 'symbol']
|
|
});
|
|
|
|
if (filtersByAssetSubClass) {
|
|
where.assetSubClass = AssetSubClass[filtersByAssetSubClass[0].id];
|
|
}
|
|
|
|
if (searchQuery) {
|
|
where.OR = [
|
|
{ isin: { mode: 'insensitive', startsWith: searchQuery } },
|
|
{ name: { mode: 'insensitive', startsWith: searchQuery } },
|
|
{ symbol: { mode: 'insensitive', startsWith: searchQuery } }
|
|
];
|
|
}
|
|
|
|
if (sortColumn) {
|
|
orderBy = [{ [sortColumn]: sortDirection }];
|
|
|
|
if (sortColumn === 'activitiesCount') {
|
|
orderBy = {
|
|
Order: {
|
|
_count: sortDirection
|
|
}
|
|
};
|
|
}
|
|
}
|
|
|
|
let [assetProfiles, count] = await Promise.all([
|
|
this.prismaService.symbolProfile.findMany({
|
|
orderBy,
|
|
skip,
|
|
take,
|
|
where,
|
|
select: {
|
|
_count: {
|
|
select: { Order: true }
|
|
},
|
|
assetClass: true,
|
|
assetSubClass: true,
|
|
comment: true,
|
|
countries: true,
|
|
currency: true,
|
|
dataSource: true,
|
|
name: true,
|
|
Order: {
|
|
orderBy: [{ date: 'asc' }],
|
|
select: { date: true },
|
|
take: 1
|
|
},
|
|
scraperConfiguration: true,
|
|
sectors: true,
|
|
symbol: true
|
|
}
|
|
}),
|
|
this.prismaService.symbolProfile.count({ where })
|
|
]);
|
|
|
|
let marketData = assetProfiles.map(
|
|
({
|
|
_count,
|
|
assetClass,
|
|
assetSubClass,
|
|
comment,
|
|
countries,
|
|
currency,
|
|
dataSource,
|
|
name,
|
|
Order,
|
|
sectors,
|
|
symbol
|
|
}) => {
|
|
const countriesCount = countries ? Object.keys(countries).length : 0;
|
|
const marketDataItemCount =
|
|
marketDataItems.find((marketDataItem) => {
|
|
return (
|
|
marketDataItem.dataSource === dataSource &&
|
|
marketDataItem.symbol === symbol
|
|
);
|
|
})?._count ?? 0;
|
|
const sectorsCount = sectors ? Object.keys(sectors).length : 0;
|
|
|
|
return {
|
|
assetClass,
|
|
assetSubClass,
|
|
comment,
|
|
currency,
|
|
countriesCount,
|
|
dataSource,
|
|
name,
|
|
symbol,
|
|
marketDataItemCount,
|
|
sectorsCount,
|
|
activitiesCount: _count.Order,
|
|
date: Order?.[0]?.date
|
|
};
|
|
}
|
|
);
|
|
|
|
if (presetId) {
|
|
if (presetId === 'ETF_WITHOUT_COUNTRIES') {
|
|
marketData = marketData.filter(({ countriesCount }) => {
|
|
return countriesCount === 0;
|
|
});
|
|
} else if (presetId === 'ETF_WITHOUT_SECTORS') {
|
|
marketData = marketData.filter(({ sectorsCount }) => {
|
|
return sectorsCount === 0;
|
|
});
|
|
}
|
|
|
|
count = marketData.length;
|
|
}
|
|
|
|
return {
|
|
count,
|
|
marketData
|
|
};
|
|
}
|
|
|
|
public async getMarketDataBySymbol({
|
|
dataSource,
|
|
symbol
|
|
}: UniqueAsset): Promise<AdminMarketDataDetails> {
|
|
const [[assetProfile], marketData] = await Promise.all([
|
|
this.symbolProfileService.getSymbolProfiles([
|
|
{
|
|
dataSource,
|
|
symbol
|
|
}
|
|
]),
|
|
this.marketDataService.marketDataItems({
|
|
orderBy: {
|
|
date: 'asc'
|
|
},
|
|
where: {
|
|
dataSource,
|
|
symbol
|
|
}
|
|
})
|
|
]);
|
|
|
|
return {
|
|
marketData,
|
|
assetProfile: assetProfile ?? {
|
|
symbol,
|
|
currency: '-'
|
|
}
|
|
};
|
|
}
|
|
|
|
public async patchAssetProfileData({
|
|
comment,
|
|
dataSource,
|
|
scraperConfiguration,
|
|
symbol,
|
|
symbolMapping
|
|
}: Prisma.SymbolProfileUpdateInput & UniqueAsset) {
|
|
await this.symbolProfileService.updateSymbolProfile({
|
|
comment,
|
|
dataSource,
|
|
scraperConfiguration,
|
|
symbol,
|
|
symbolMapping
|
|
});
|
|
|
|
const [symbolProfile] = await this.symbolProfileService.getSymbolProfiles([
|
|
{
|
|
dataSource,
|
|
symbol
|
|
}
|
|
]);
|
|
|
|
return symbolProfile;
|
|
}
|
|
|
|
public async putSetting(key: string, value: string) {
|
|
let response: Property;
|
|
|
|
if (value) {
|
|
response = await this.propertyService.put({ key, value });
|
|
} else {
|
|
response = await this.propertyService.delete({ key });
|
|
}
|
|
|
|
if (key === PROPERTY_IS_READ_ONLY_MODE && value === 'true') {
|
|
await this.putSetting(PROPERTY_IS_USER_SIGNUP_ENABLED, 'false');
|
|
} else if (key === PROPERTY_CURRENCIES) {
|
|
await this.exchangeRateDataService.initialize();
|
|
}
|
|
|
|
return response;
|
|
}
|
|
|
|
private async getMarketDataForCurrencies(): Promise<AdminMarketData> {
|
|
const marketDataItems = await this.prismaService.marketData.groupBy({
|
|
_count: true,
|
|
by: ['dataSource', 'symbol']
|
|
});
|
|
|
|
const marketData: AdminMarketDataItem[] = this.exchangeRateDataService
|
|
.getCurrencyPairs()
|
|
.map(({ dataSource, symbol }) => {
|
|
const marketDataItemCount =
|
|
marketDataItems.find((marketDataItem) => {
|
|
return (
|
|
marketDataItem.dataSource === dataSource &&
|
|
marketDataItem.symbol === symbol
|
|
);
|
|
})?._count ?? 0;
|
|
|
|
return {
|
|
dataSource,
|
|
marketDataItemCount,
|
|
symbol,
|
|
assetClass: 'CASH',
|
|
countriesCount: 0,
|
|
currency: symbol.replace(DEFAULT_CURRENCY, ''),
|
|
name: symbol,
|
|
sectorsCount: 0
|
|
};
|
|
});
|
|
|
|
return { marketData, count: marketData.length };
|
|
}
|
|
|
|
private async getUsersWithAnalytics(): Promise<AdminData['users']> {
|
|
let orderBy: any = {
|
|
createdAt: 'desc'
|
|
};
|
|
let where;
|
|
|
|
if (this.configurationService.get('ENABLE_FEATURE_SUBSCRIPTION')) {
|
|
orderBy = {
|
|
Analytics: {
|
|
updatedAt: 'desc'
|
|
}
|
|
};
|
|
where = {
|
|
NOT: {
|
|
Analytics: null
|
|
}
|
|
};
|
|
}
|
|
|
|
const usersWithAnalytics = await this.prismaService.user.findMany({
|
|
orderBy,
|
|
where,
|
|
select: {
|
|
_count: {
|
|
select: { Account: true, Order: true }
|
|
},
|
|
Analytics: {
|
|
select: {
|
|
activityCount: true,
|
|
country: true,
|
|
updatedAt: true
|
|
}
|
|
},
|
|
createdAt: true,
|
|
id: true,
|
|
Subscription: true
|
|
},
|
|
take: 30
|
|
});
|
|
|
|
return usersWithAnalytics.map(
|
|
({ _count, Analytics, createdAt, id, Subscription }) => {
|
|
const daysSinceRegistration =
|
|
differenceInDays(new Date(), createdAt) + 1;
|
|
const engagement = Analytics
|
|
? Analytics.activityCount / daysSinceRegistration
|
|
: undefined;
|
|
|
|
const subscription = this.configurationService.get(
|
|
'ENABLE_FEATURE_SUBSCRIPTION'
|
|
)
|
|
? this.subscriptionService.getSubscription(Subscription)
|
|
: undefined;
|
|
|
|
return {
|
|
createdAt,
|
|
engagement,
|
|
id,
|
|
subscription,
|
|
accountCount: _count.Account || 0,
|
|
country: Analytics?.country,
|
|
lastActivity: Analytics?.updatedAt,
|
|
transactionCount: _count.Order || 0
|
|
};
|
|
}
|
|
);
|
|
}
|
|
}
|