mempool/frontend/src/app/services/api.service.ts

92 lines
3.1 KiB
TypeScript
Raw Normal View History

2020-11-07 04:30:52 +07:00
import { Inject, Injectable, PLATFORM_ID } from '@angular/core';
import { HttpClient, HttpParams } from '@angular/common/http';
2020-02-17 00:26:57 +07:00
import { OptimizedMempoolStats } from '../interfaces/node-api.interface';
2019-07-21 17:59:47 +03:00
import { Observable } from 'rxjs';
2020-11-07 04:30:52 +07:00
import { isPlatformBrowser } from '@angular/common';
import { StateService } from './state.service';
import { env } from '../app.constants';
2020-11-07 04:30:52 +07:00
import { WebsocketResponse } from '../interfaces/websocket.interface';
2019-07-21 17:59:47 +03:00
const API_BASE_URL = '{network}/api/v1';
2019-07-21 17:59:47 +03:00
@Injectable({
providedIn: 'root'
})
export class ApiService {
2020-11-07 04:30:52 +07:00
private apiBaseUrl: string;
private isBrowser: boolean = isPlatformBrowser(this.platformId);
2019-07-21 17:59:47 +03:00
constructor(
private httpClient: HttpClient,
private stateService: StateService,
2020-11-07 04:30:52 +07:00
@Inject(PLATFORM_ID) private platformId: any,
) {
this.stateService.networkChanged$.subscribe((network) => {
if (network === 'bisq' && !env.BISQ_SEPARATE_BACKEND) {
network = '';
}
this.apiBaseUrl = API_BASE_URL.replace('{network}', network ? '/' + network : '');
2020-11-07 04:30:52 +07:00
if (!this.isBrowser) {
this.apiBaseUrl = 'http://localhost:8999' + this.apiBaseUrl;
}
});
2020-11-07 04:30:52 +07:00
this.apiBaseUrl = API_BASE_URL.replace('{network}', '');
if (!this.isBrowser) {
this.apiBaseUrl = 'http://localhost:8999' + this.apiBaseUrl;
}
}
2019-11-06 15:35:02 +08:00
2020-02-17 00:26:57 +07:00
list2HStatistics$(): Observable<OptimizedMempoolStats[]> {
return this.httpClient.get<OptimizedMempoolStats[]>(this.apiBaseUrl + '/statistics/2h');
2019-11-12 16:39:59 +08:00
}
2020-02-17 00:26:57 +07:00
list24HStatistics$(): Observable<OptimizedMempoolStats[]> {
return this.httpClient.get<OptimizedMempoolStats[]>(this.apiBaseUrl + '/statistics/24h');
2019-11-12 16:39:59 +08:00
}
2020-02-17 00:26:57 +07:00
list1WStatistics$(): Observable<OptimizedMempoolStats[]> {
return this.httpClient.get<OptimizedMempoolStats[]>(this.apiBaseUrl + '/statistics/1w');
2019-11-10 16:44:00 +08:00
}
2019-11-13 14:51:44 +08:00
2020-02-17 00:26:57 +07:00
list1MStatistics$(): Observable<OptimizedMempoolStats[]> {
return this.httpClient.get<OptimizedMempoolStats[]>(this.apiBaseUrl + '/statistics/1m');
2019-11-13 14:51:44 +08:00
}
2020-02-17 00:26:57 +07:00
list3MStatistics$(): Observable<OptimizedMempoolStats[]> {
return this.httpClient.get<OptimizedMempoolStats[]>(this.apiBaseUrl + '/statistics/3m');
2019-11-13 14:51:44 +08:00
}
2020-02-17 00:26:57 +07:00
list6MStatistics$(): Observable<OptimizedMempoolStats[]> {
return this.httpClient.get<OptimizedMempoolStats[]>(this.apiBaseUrl + '/statistics/6m');
2020-02-17 00:26:57 +07:00
}
list1YStatistics$(): Observable<OptimizedMempoolStats[]> {
return this.httpClient.get<OptimizedMempoolStats[]>(this.apiBaseUrl + '/statistics/1y');
2019-11-13 14:51:44 +08:00
}
getTransactionTimes$(txIds: string[]): Observable<number[]> {
let params = new HttpParams();
txIds.forEach((txId: string) => {
params = params.append('txId[]', txId);
});
return this.httpClient.get<number[]>(this.apiBaseUrl + '/transaction-times', { params });
}
requestDonation$(amount: number, orderId: string): Observable<any> {
const params = {
amount: amount,
orderId: orderId,
};
return this.httpClient.post<any>(this.apiBaseUrl + '/donations', params);
}
getDonation$(): Observable<any[]> {
return this.httpClient.get<any[]>(this.apiBaseUrl + '/donations');
}
2020-11-07 04:30:52 +07:00
getInitData$(): Observable<WebsocketResponse> {
return this.httpClient.get<WebsocketResponse>(this.apiBaseUrl + '/init-data');
}
2019-07-21 17:59:47 +03:00
}