mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-18 15:33:04 +00:00
63 lines
2.2 KiB
TypeScript
63 lines
2.2 KiB
TypeScript
import { HttpClient } from '@angular/common/http';
|
|
import { Injectable } from '@angular/core';
|
|
import { Store } from '@ngrx/store';
|
|
import { NotificationsService } from '../../shared/notifications/notifications.service';
|
|
import { dataService } from '../cache/builders/build-decorators';
|
|
import { RemoteDataBuildService } from '../cache/builders/remote-data-build.service';
|
|
import { ObjectCacheService } from '../cache/object-cache.service';
|
|
import { HALEndpointService } from '../shared/hal-endpoint.service';
|
|
import { DataService } from '../data/data.service';
|
|
import { RequestService } from '../data/request.service';
|
|
import { DefaultChangeAnalyzer } from '../data/default-change-analyzer.service';
|
|
import { USAGE_REPORT } from './models/usage-report.resource-type';
|
|
import { UsageReport } from './models/usage-report.model';
|
|
import { Observable } from 'rxjs';
|
|
import { getRemoteDataPayload, getFirstSucceededRemoteData } from '../shared/operators';
|
|
import { map } from 'rxjs/operators';
|
|
import { CoreState } from '../core-state.model';
|
|
|
|
/**
|
|
* A service to retrieve {@link UsageReport}s from the REST API
|
|
*/
|
|
@Injectable()
|
|
@dataService(USAGE_REPORT)
|
|
export class UsageReportService extends DataService<UsageReport> {
|
|
|
|
protected linkPath = 'usagereports';
|
|
|
|
constructor(
|
|
protected comparator: DefaultChangeAnalyzer<UsageReport>,
|
|
protected halService: HALEndpointService,
|
|
protected http: HttpClient,
|
|
protected notificationsService: NotificationsService,
|
|
protected objectCache: ObjectCacheService,
|
|
protected rdbService: RemoteDataBuildService,
|
|
protected requestService: RequestService,
|
|
protected store: Store<CoreState>,
|
|
) {
|
|
super();
|
|
}
|
|
|
|
getStatistic(scope: string, type: string): Observable<UsageReport> {
|
|
return this.findById(`${scope}_${type}`).pipe(
|
|
getFirstSucceededRemoteData(),
|
|
getRemoteDataPayload(),
|
|
);
|
|
}
|
|
|
|
searchStatistics(uri: string, page: number, size: number): Observable<UsageReport[]> {
|
|
return this.searchBy('object', {
|
|
searchParams: [{
|
|
fieldName: `uri`,
|
|
fieldValue: uri,
|
|
}],
|
|
currentPage: page,
|
|
elementsPerPage: size,
|
|
}, true, false).pipe(
|
|
getFirstSucceededRemoteData(),
|
|
getRemoteDataPayload(),
|
|
map((list) => list.page),
|
|
);
|
|
}
|
|
}
|