mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-07 01:54:15 +00:00
86 lines
4.0 KiB
TypeScript
86 lines
4.0 KiB
TypeScript
import { HttpClient, HttpHeaders, HttpParams } from '@angular/common/http';
|
|
import { Injectable } from '@angular/core';
|
|
import { Store } from '@ngrx/store';
|
|
import { NotificationsService } from '../../shared/notifications/notifications.service';
|
|
import { dataService } from './base/data-service.decorator';
|
|
import { RemoteDataBuildService } from '../cache/builders/remote-data-build.service';
|
|
import { ObjectCacheService } from '../cache/object-cache.service';
|
|
import { HALEndpointService } from '../shared/hal-endpoint.service';
|
|
import { BaseDataService } from './base/base-data.service';
|
|
import { RequestService } from './request.service';
|
|
import { DefaultChangeAnalyzer } from './default-change-analyzer.service';
|
|
import { CoreState } from '../core-state.model';
|
|
import { Observable } from 'rxjs';
|
|
import { RemoteData } from './remote-data';
|
|
import { Item } from '../shared/item.model';
|
|
import { IDENTIFIERS } from '../../shared/object-list/identifier-data/identifier-data.resource-type';
|
|
import { IdentifierData } from '../../shared/object-list/identifier-data/identifier-data.model';
|
|
import { getFirstCompletedRemoteData } from '../shared/operators';
|
|
import { map, switchMap } from 'rxjs/operators';
|
|
import {ConfigurationProperty} from '../shared/configuration-property.model';
|
|
import {ConfigurationDataService} from './configuration-data.service';
|
|
import { HttpOptions } from '../dspace-rest/dspace-rest.service';
|
|
import { PostRequest } from './request.models';
|
|
import { sendRequest } from '../shared/request.operators';
|
|
import { RestRequest } from './rest-request.model';
|
|
|
|
/**
|
|
* The service handling all REST requests to get item identifiers like handles and DOIs
|
|
* from the /identifiers endpoint, as well as the backend configuration that controls whether a 'Register DOI'
|
|
* button appears for admins in the item status page
|
|
*/
|
|
@Injectable()
|
|
@dataService(IDENTIFIERS)
|
|
export class IdentifierDataService extends BaseDataService<IdentifierData> {
|
|
|
|
constructor(
|
|
protected comparator: DefaultChangeAnalyzer<IdentifierData>,
|
|
protected halService: HALEndpointService,
|
|
protected http: HttpClient,
|
|
protected notificationsService: NotificationsService,
|
|
protected objectCache: ObjectCacheService,
|
|
protected rdbService: RemoteDataBuildService,
|
|
protected requestService: RequestService,
|
|
protected store: Store<CoreState>,
|
|
private configurationService: ConfigurationDataService,
|
|
) {
|
|
super('identifiers', requestService, rdbService, objectCache, halService);
|
|
}
|
|
|
|
/**
|
|
* Returns {@link RemoteData} of {@link IdentifierData} representing identifiers for this item
|
|
* @param item Item we are querying
|
|
*/
|
|
getIdentifierDataFor(item: Item): Observable<RemoteData<IdentifierData>> {
|
|
return this.findByHref(item._links.identifiers.href, false, true);
|
|
}
|
|
|
|
/**
|
|
* Should we allow registration of new DOIs via the item status page?
|
|
*/
|
|
public getIdentifierRegistrationConfiguration(): Observable<string[]> {
|
|
return this.configurationService.findByPropertyName('identifiers.item-status.register-doi').pipe(
|
|
getFirstCompletedRemoteData(),
|
|
map((propertyRD: RemoteData<ConfigurationProperty>) => propertyRD.hasSucceeded ? propertyRD.payload.values : [])
|
|
);
|
|
}
|
|
|
|
public registerIdentifier(item: Item, type: string): Observable<RemoteData<any>> {
|
|
const requestId = this.requestService.generateRequestId();
|
|
return this.getEndpoint().pipe(
|
|
map((endpointURL: string) => {
|
|
const options: HttpOptions = Object.create({});
|
|
let headers = new HttpHeaders();
|
|
headers = headers.append('Content-Type', 'text/uri-list');
|
|
options.headers = headers;
|
|
let params = new HttpParams();
|
|
params = params.append('type', type);
|
|
options.params = params;
|
|
return new PostRequest(requestId, endpointURL, item._links.self.href, options);
|
|
}),
|
|
sendRequest(this.requestService),
|
|
switchMap((request: RestRequest) => this.rdbService.buildFromRequestUUID(request.uuid) as Observable<RemoteData<any>>)
|
|
);
|
|
}
|
|
}
|