openaire-library/connect/contentProviders/searchDataproviders.service.ts

16 lines
569 B
TypeScript
Raw Normal View History

import {Injectable} from '@angular/core';
import {Http} from '@angular/http';
import{EnvProperties} from '../../utils/properties/env-properties';
@Injectable()
export class SearchCommunityDataprovidersService {
constructor(private http: Http ) {}
searchDataproviders (properties:EnvProperties, communityId: string):any {
let url = properties.communityAPI+communityId+"/contentproviders";
return this.http.get((properties.useCache)? (properties.cacheUrl+encodeURIComponent(url)): url)
.map(res => <any> res.json())
}
}