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.
165 lines
4.8 KiB
165 lines
4.8 KiB
import {} from '@ghostfolio/helper/interfaces';
|
|
|
|
import { HttpClient } from '@angular/common/http';
|
|
import { Injectable } from '@angular/core';
|
|
import { CreateAccountDto } from '@ghostfolio/api/app/account/create-account.dto';
|
|
import { UpdateAccountDto } from '@ghostfolio/api/app/account/update-account.dto';
|
|
import { AdminData } from '@ghostfolio/api/app/admin/interfaces/admin-data.interface';
|
|
import { CreateOrderDto } from '@ghostfolio/api/app/order/create-order.dto';
|
|
import { UpdateOrderDto } from '@ghostfolio/api/app/order/update-order.dto';
|
|
import {
|
|
HistoricalDataItem,
|
|
PortfolioPositionDetail
|
|
} from '@ghostfolio/api/app/portfolio/interfaces/portfolio-position-detail.interface';
|
|
import { PortfolioReport } from '@ghostfolio/api/app/portfolio/interfaces/portfolio-report.interface';
|
|
import { LookupItem } from '@ghostfolio/api/app/symbol/interfaces/lookup-item.interface';
|
|
import { SymbolItem } from '@ghostfolio/api/app/symbol/interfaces/symbol-item.interface';
|
|
import { UserItem } from '@ghostfolio/api/app/user/interfaces/user-item.interface';
|
|
import { User } from '@ghostfolio/api/app/user/interfaces/user.interface';
|
|
import { UpdateUserSettingsDto } from '@ghostfolio/api/app/user/update-user-settings.dto';
|
|
import {
|
|
Access,
|
|
InfoItem,
|
|
PortfolioItem,
|
|
PortfolioOverview,
|
|
PortfolioPerformance,
|
|
PortfolioPosition
|
|
} from '@ghostfolio/helper/interfaces';
|
|
import { Order as OrderModel } from '@prisma/client';
|
|
import { Account as AccountModel } from '@prisma/client';
|
|
import { parseISO } from 'date-fns';
|
|
import { Observable } from 'rxjs';
|
|
import { map } from 'rxjs/operators';
|
|
|
|
@Injectable({
|
|
providedIn: 'root'
|
|
})
|
|
export class DataService {
|
|
private info: InfoItem;
|
|
|
|
public constructor(private http: HttpClient) {}
|
|
|
|
public fetchAccounts() {
|
|
return this.http.get<AccountModel[]>('/api/account');
|
|
}
|
|
|
|
public fetchAdminData() {
|
|
return this.http.get<AdminData>('/api/admin');
|
|
}
|
|
|
|
public deleteAccount(aId: string) {
|
|
return this.http.delete<any>(`/api/account/${aId}`);
|
|
}
|
|
|
|
public deleteOrder(aId: string) {
|
|
return this.http.delete<any>(`/api/order/${aId}`);
|
|
}
|
|
|
|
public deleteUser(aId: string) {
|
|
return this.http.delete<any>(`/api/user/${aId}`);
|
|
}
|
|
|
|
public fetchAccesses() {
|
|
return this.http.get<Access[]>('/api/access');
|
|
}
|
|
|
|
public fetchChart(aParams: { [param: string]: any }) {
|
|
return this.http.get<HistoricalDataItem[]>('/api/portfolio/chart', {
|
|
params: aParams
|
|
});
|
|
}
|
|
|
|
public fetchInfo() {
|
|
/*
|
|
if (this.info) {
|
|
// TODO: Cache info
|
|
return of(this.info);
|
|
}
|
|
*/
|
|
|
|
return this.http.get<InfoItem>('/api/info');
|
|
}
|
|
|
|
public fetchSymbolItem(aSymbol: string) {
|
|
return this.http.get<SymbolItem>(`/api/symbol/${aSymbol}`);
|
|
}
|
|
|
|
public fetchSymbols(aQuery: string) {
|
|
return this.http.get<LookupItem[]>(`/api/symbol/lookup?query=${aQuery}`);
|
|
}
|
|
|
|
public fetchOrders(): Observable<OrderModel[]> {
|
|
return this.http.get<any[]>('/api/order').pipe(
|
|
map((data) => {
|
|
for (const item of data) {
|
|
item.createdAt = parseISO(item.createdAt);
|
|
item.date = parseISO(item.date);
|
|
}
|
|
return data;
|
|
})
|
|
);
|
|
}
|
|
|
|
public fetchPortfolio() {
|
|
return this.http.get<PortfolioItem[]>('/api/portfolio');
|
|
}
|
|
|
|
public fetchPortfolioOverview() {
|
|
return this.http.get<PortfolioOverview>('/api/portfolio/overview');
|
|
}
|
|
|
|
public fetchPortfolioPerformance(aParams: { [param: string]: any }) {
|
|
return this.http.get<PortfolioPerformance>('/api/portfolio/performance', {
|
|
params: aParams
|
|
});
|
|
}
|
|
|
|
public fetchPortfolioPositions(aParams: { [param: string]: any }) {
|
|
return this.http.get<{ [symbol: string]: PortfolioPosition }>(
|
|
'/api/portfolio/details',
|
|
{ params: aParams }
|
|
);
|
|
}
|
|
|
|
public fetchPortfolioReport() {
|
|
return this.http.get<PortfolioReport>('/api/portfolio/report');
|
|
}
|
|
|
|
public fetchPositionDetail(aSymbol: string) {
|
|
return this.http.get<PortfolioPositionDetail>(
|
|
`/api/portfolio/position/${aSymbol}`
|
|
);
|
|
}
|
|
|
|
public fetchUser() {
|
|
return this.http.get<User>('/api/user');
|
|
}
|
|
|
|
public loginAnonymous(accessToken: string) {
|
|
return this.http.get<any>(`/api/auth/anonymous/${accessToken}`);
|
|
}
|
|
|
|
public postAccount(aAccount: CreateAccountDto) {
|
|
return this.http.post<OrderModel>(`/api/account`, aAccount);
|
|
}
|
|
|
|
public postOrder(aOrder: CreateOrderDto) {
|
|
return this.http.post<OrderModel>(`/api/order`, aOrder);
|
|
}
|
|
|
|
public postUser() {
|
|
return this.http.post<UserItem>(`/api/user`, {});
|
|
}
|
|
|
|
public putAccount(aAccount: UpdateAccountDto) {
|
|
return this.http.put<UserItem>(`/api/account/${aAccount.id}`, aAccount);
|
|
}
|
|
|
|
public putOrder(aOrder: UpdateOrderDto) {
|
|
return this.http.put<UserItem>(`/api/order/${aOrder.id}`, aOrder);
|
|
}
|
|
|
|
public putUserSettings(aData: UpdateUserSettingsDto) {
|
|
return this.http.put<User>(`/api/user/settings`, aData);
|
|
}
|
|
}
|
|
|