openaire-library/services/metrics.service.ts

83 lines
3.6 KiB
TypeScript
Raw Normal View History

import {Injectable} from '@angular/core';
import {Http, Response} from '@angular/http';
import {Observable} from 'rxjs/Observable';
import {Metrics} from '../utils/entities/metrics';
import {OpenaireProperties} from '../utils/properties/openaireProperties';
import 'rxjs/add/operator/do';
@Injectable()
export class MetricsService {
metrics: Metrics;
constructor(private http: Http ) {}
getMetrics (id: string, entityType: string):any {
console.info("getMetrics in service");
//let url = OpenaireProperties. getSearchAPIURLLast() + 'publications/' +id+"?format=json";
let url = OpenaireProperties.getMetricsAPIURL()+entityType+"/"+id+"/clicks";
let key = url;
return this.http.get((OpenaireProperties.isCacheEnabled())? (OpenaireProperties.getCacheUrl()+encodeURIComponent(url)): url)
.map(res => <any> res.json())
.map(res => this.parseMetrics(res["downloads"], res["views"], res["total_downloads"], res["total_views"],
res["total_openaire_views"], res["total_openaire_downloads"], res["pageviews"]));
}
parseMetrics(downloads: any, views: any, totalDownloads: string, totalViews: string,
totalOpenaireViews: string, totalOpenaireDownloads: string, pageViews: string): any {
this.metrics = new Metrics();
this.metrics.totalDownloads = totalDownloads;
this.metrics.totalViews = totalViews;
this.metrics.totalOpenaireViews = totalOpenaireViews;
this.metrics.totalOpenaireDownloads = totalOpenaireDownloads;
this.metrics.pageViews = pageViews;
this.metrics.infos = new Map<string, {"name": string, "url": string, "numOfDownloads": string, "numOfViews": string, "openaireDownloads": string, "openaireViews": string}>();
for(let i=0; i<downloads.length; i++) {
let id: string = downloads[i]['datasource_id'];
if(this.metrics.infos.has(id)) {
this.metrics.infos.get(id).numOfDownloads = downloads[i]['value'];
this.metrics.infos.get(id).openaireDownloads = downloads[i]['openaire'];
} else {
let info;//: {"url": string, "numOfDownloads": string, "numOfViews": string};
info = {};
info.name = downloads[i]['datasource_name'];
info.url = OpenaireProperties.getsearchLinkToDataProvider()+id;
info.numOfDownloads = downloads[i]['value'];
info.openaireDownloads = downloads[i]['openaire'];
info.numOfViews = "0";
info.openaireViews = "0";
this.metrics.infos.set(id, info);
}
}
for(let i=0; i<views.length; i++) {
let id: string = views[i]['datasource_id'];
if(this.metrics.infos.has(id)) {
this.metrics.infos.get(id).numOfViews = views[i]['value'];
this.metrics.infos.get(id).openaireViews = views[i]['openaire'];
} else {
let info;//: {"url": string, "numOfDownloads": string, "numOfViews": string};
info = {};
info.name = views[i]['datasource_name'];
info.url = OpenaireProperties.getsearchLinkToDataProvider()+id;
info.numOfDownloads = "0";
info.openaireDownloads = "0";
info.numOfViews = views[i]['value'];
info.openaireViews = views[i]['openaire'];
this.metrics.infos.set(id, info);
}
}
console.info("Metrics : "+this.metrics.infos.size);
return this.metrics;
}
}