2017-12-19 13:53:46 +01:00
|
|
|
import {Injectable} from '@angular/core';
|
2019-06-03 15:20:36 +02:00
|
|
|
import {HttpClient, HttpErrorResponse} from "@angular/common/http";
|
2020-11-11 15:43:13 +01:00
|
|
|
import {throwError} from 'rxjs';
|
2017-12-19 13:53:46 +01:00
|
|
|
import {ProjectInfo} from '../../utils/entities/projectInfo';
|
2019-06-03 15:20:36 +02:00
|
|
|
|
|
|
|
|
2024-05-31 12:59:23 +02:00
|
|
|
import {EnvProperties} from '../../utils/properties/env-properties';
|
2019-06-03 15:20:36 +02:00
|
|
|
|
2024-05-31 12:59:23 +02:00
|
|
|
import {ParsingFunctions} from '../landing-utils/parsingFunctions.class';
|
2019-06-03 15:20:36 +02:00
|
|
|
import {map} from "rxjs/operators";
|
2022-11-28 18:22:01 +01:00
|
|
|
import {StringUtils} from "../../utils/string-utils.class";
|
2017-12-19 13:53:46 +01:00
|
|
|
|
|
|
|
@Injectable()
|
|
|
|
export class ProjectService {
|
|
|
|
|
2024-05-31 12:59:23 +02:00
|
|
|
constructor(private http: HttpClient) {
|
|
|
|
this.parsingFunctions = new ParsingFunctions();
|
|
|
|
}
|
2017-12-19 13:53:46 +01:00
|
|
|
|
2024-05-31 12:59:23 +02:00
|
|
|
public parsingFunctions: ParsingFunctions;
|
|
|
|
projectInfo: ProjectInfo;
|
2017-12-19 13:53:46 +01:00
|
|
|
|
2024-05-31 12:59:23 +02:00
|
|
|
getProjectInfo(id: string, properties: EnvProperties): any {
|
2017-12-19 13:53:46 +01:00
|
|
|
|
2024-05-31 12:59:23 +02:00
|
|
|
let url = properties.searchAPIURLLAst + 'projects/' + id + "?format=json";
|
|
|
|
let key = url;
|
2017-12-19 13:53:46 +01:00
|
|
|
|
2024-05-31 12:59:23 +02:00
|
|
|
return this.http.get((properties.useCache) ? (properties.cacheUrl + encodeURIComponent(url)) : url)
|
|
|
|
//.map(res => <any> res.json())
|
|
|
|
.pipe(map(res => res['result']['metadata']['oaf:entity']['oaf:project']))
|
|
|
|
.pipe(map(res => [res,
|
|
|
|
res['fundingtree'],
|
|
|
|
res['rels']['rel']]))
|
|
|
|
.pipe(map(res => this.parseProjectInfo(res, properties)));
|
2017-12-19 13:53:46 +01:00
|
|
|
|
2024-05-31 12:59:23 +02:00
|
|
|
}
|
2019-02-25 16:28:14 +01:00
|
|
|
|
2024-05-31 12:59:23 +02:00
|
|
|
getProjectInfoByGrantId(grant: string, funder: string, properties: EnvProperties): any {
|
2017-12-19 13:53:46 +01:00
|
|
|
|
2024-05-31 12:59:23 +02:00
|
|
|
let url = properties.searchAPIURLLAst + 'resources?query=(oaftype exact project)' +
|
|
|
|
'and (projectcode_nt exact "' + grant + '" ) and (fundershortname exact ' + '"' + funder + '"' + ')' + "&format=json&size=1";
|
2018-03-16 16:56:35 +01:00
|
|
|
|
|
|
|
|
2024-05-31 12:59:23 +02:00
|
|
|
let key = url;
|
2018-03-16 16:56:35 +01:00
|
|
|
|
2024-05-31 12:59:23 +02:00
|
|
|
return this.http.get((properties.useCache) ? (properties.cacheUrl + encodeURIComponent(url)) : url)
|
|
|
|
//.map(res => <any> res.json())
|
|
|
|
.pipe(map(res => res['results'][0]))
|
|
|
|
.pipe(map(res => [res['result']['metadata']['oaf:entity']['oaf:project'], res['result']['header']['dri:objIdentifier']]))
|
|
|
|
.pipe(map(res => [res[0],
|
|
|
|
res[0]['fundingtree'],
|
|
|
|
res[0]['rels']['rel'], res[1]]))
|
|
|
|
.pipe(map(res => this.parseProjectInfo(res, properties)));
|
2018-03-16 16:56:35 +01:00
|
|
|
|
2024-05-31 12:59:23 +02:00
|
|
|
}
|
2017-12-19 13:53:46 +01:00
|
|
|
|
2024-05-31 12:59:23 +02:00
|
|
|
/*
|
|
|
|
get project strtDate and endDate
|
|
|
|
*/
|
|
|
|
getProjectDates(id: string, properties: EnvProperties): any {
|
2017-12-19 13:53:46 +01:00
|
|
|
|
2024-05-31 12:59:23 +02:00
|
|
|
let url = properties.searchAPIURLLAst + 'projects/' + id + "?format=json";
|
|
|
|
let key = url + '_projectDates';
|
2017-12-19 13:53:46 +01:00
|
|
|
|
2024-05-31 12:59:23 +02:00
|
|
|
return this.http.get((properties.useCache) ? (properties.cacheUrl + encodeURIComponent(url)) : url)
|
|
|
|
//.map(res => <any> res.json())
|
|
|
|
.pipe(map(res => res['result']['metadata']['oaf:entity']['oaf:project']))
|
|
|
|
.pipe(map(res => [res,
|
|
|
|
res['fundingtree'],
|
|
|
|
res['rels']['rel']]))
|
|
|
|
.pipe(map(res => this.parseProjectDates(id, res)))
|
2017-12-19 13:53:46 +01:00
|
|
|
|
2024-05-31 12:59:23 +02:00
|
|
|
}
|
2017-12-19 13:53:46 +01:00
|
|
|
|
2024-05-31 12:59:23 +02:00
|
|
|
getHTMLInfo(id: string, properties: EnvProperties): any {
|
|
|
|
let url = properties.searchAPIURLLAst + 'projects/' + id + "?format=json";
|
|
|
|
let key = url;
|
2017-12-19 13:53:46 +01:00
|
|
|
|
2024-05-31 12:59:23 +02:00
|
|
|
return this.http.get((properties.useCache) ? (properties.cacheUrl + encodeURIComponent(url)) : url)
|
|
|
|
//.map(res => <any> res.json())
|
|
|
|
.pipe(map(res => res['result']['metadata']['oaf:entity']['oaf:project']))
|
|
|
|
.pipe(map(res => this.parseHTMLInfo(res)));
|
|
|
|
}
|
2017-12-19 13:53:46 +01:00
|
|
|
|
2024-05-31 12:59:23 +02:00
|
|
|
private handleError(error: HttpErrorResponse) {
|
|
|
|
console.log(error);
|
|
|
|
return throwError(error || 'Server error');
|
|
|
|
}
|
2020-03-16 14:09:46 +01:00
|
|
|
|
2024-05-31 12:59:23 +02:00
|
|
|
parseHTMLInfo(data: any): any {
|
|
|
|
let htmlInfo: { "title": string, "acronym": string, "callIdentifier": string };
|
2020-03-16 14:09:46 +01:00
|
|
|
|
2024-05-31 12:59:23 +02:00
|
|
|
if (data != null) {
|
|
|
|
htmlInfo = {"title": data.title, "acronym": data.acronym, "callIdentifier": data.callidentifier};
|
|
|
|
}
|
|
|
|
return htmlInfo;
|
|
|
|
}
|
|
|
|
|
|
|
|
parseProjectInfo(data: any, properties: EnvProperties): any {
|
|
|
|
this.projectInfo = new ProjectInfo();
|
|
|
|
this.projectInfo.funding = {
|
|
|
|
funderName: "", funderShortName: "", funderJurisdiction: "", code: "", callIdentifier: "",
|
|
|
|
fundingStream: "", budget: "", contribution: "", currency: ""
|
|
|
|
};
|
|
|
|
|
|
|
|
// ['result']['header']['dri:objIdentifier']
|
|
|
|
if (data[3] != null) {
|
|
|
|
this.projectInfo.id = data[3];
|
|
|
|
}
|
|
|
|
|
|
|
|
// ['result']['metadata']['oaf:entity']['oaf:project']['fundingtree']
|
|
|
|
if (data[1] != null) {
|
|
|
|
let funding: { "funderName": string, "funderShortname": string, "funderJurisdiction": string, "stream": string };
|
|
|
|
funding = this.parsingFunctions.parseFundingTrees(data[1]);
|
|
|
|
if (funding.funderName) {
|
|
|
|
this.projectInfo.funding.funderName = funding.funderName;
|
|
|
|
}
|
|
|
|
if (funding.funderShortname) {
|
|
|
|
this.projectInfo.funding.funderShortName = funding.funderShortname;
|
|
|
|
}
|
|
|
|
if (funding.funderJurisdiction) {
|
|
|
|
this.projectInfo.funding.funderJurisdiction = funding.funderJurisdiction;
|
2020-03-16 14:09:46 +01:00
|
|
|
}
|
2024-05-31 12:59:23 +02:00
|
|
|
if (funding.stream) {
|
|
|
|
this.projectInfo.funding.fundingStream = funding.stream;
|
|
|
|
}
|
|
|
|
}
|
2020-03-16 14:09:46 +01:00
|
|
|
|
2024-05-31 12:59:23 +02:00
|
|
|
// ['result']['metadata']['oaf:entity']['oaf:project']
|
|
|
|
if (data[0] != null) {
|
|
|
|
this.projectInfo.acronym = data[0].acronym;
|
|
|
|
if (data[0]['title']) {
|
|
|
|
this.projectInfo.title = Array.isArray(data[0]['title']) ? StringUtils.HTMLToString(String(data[0].title[0])) : StringUtils.HTMLToString(String(data[0].title));
|
|
|
|
} else {
|
|
|
|
this.projectInfo.title = "";
|
|
|
|
}
|
|
|
|
this.projectInfo.funding.code = data[0].code;
|
|
|
|
if (data[0].startdate) {
|
|
|
|
let date: number = Date.parse(data[0].startdate);
|
|
|
|
this.projectInfo.startDate = (date ? date : null);
|
|
|
|
}
|
|
|
|
if (data[0].enddate) {
|
|
|
|
let date: number = Date.parse(data[0].enddate);
|
|
|
|
this.projectInfo.endDate = (date ? date : null);
|
|
|
|
}
|
|
|
|
if (this.projectInfo.endDate || this.projectInfo.startDate) {
|
|
|
|
let todayDate = Date.parse(new Date().toString());
|
|
|
|
this.projectInfo.currentDate = todayDate;
|
|
|
|
if (this.projectInfo.startDate) {
|
|
|
|
let startDate = +(this.projectInfo.startDate);
|
|
|
|
if (todayDate < startDate) {
|
|
|
|
this.projectInfo.status = "Not started";
|
2020-03-16 14:09:46 +01:00
|
|
|
}
|
2024-05-31 12:59:23 +02:00
|
|
|
}
|
|
|
|
if (this.projectInfo.endDate && !this.projectInfo.status) {
|
|
|
|
let endDate = +(this.projectInfo.endDate);
|
|
|
|
if (todayDate <= endDate) {
|
|
|
|
this.projectInfo.status = "On going";
|
|
|
|
} else {
|
|
|
|
this.projectInfo.status = "Closed";
|
2020-03-16 14:09:46 +01:00
|
|
|
}
|
|
|
|
}
|
2024-05-31 12:59:23 +02:00
|
|
|
}
|
|
|
|
if (this.projectInfo.funding) {
|
|
|
|
if (this.projectInfo.funding.funderShortName == "EC") {
|
|
|
|
this.projectInfo.openAccessMandatePublications = data[0].oamandatepublications;
|
|
|
|
// this.projectInfo.specialClause39 = data[0].ecsc39;
|
|
|
|
if (data[0].hasOwnProperty("projectoamandatedata")) {
|
|
|
|
this.projectInfo.openAccessMandateDatasets = data[0].projectoamandatedata;
|
|
|
|
} else if (data[0].hasOwnProperty("ecarticle29_3")) {
|
|
|
|
this.projectInfo.openAccessMandateDatasets = data[0].ecarticle29_3;
|
2020-03-16 14:09:46 +01:00
|
|
|
}
|
2024-05-31 12:59:23 +02:00
|
|
|
this.projectInfo.funding.callIdentifier = data[0].callidentifier;
|
2020-03-16 14:09:46 +01:00
|
|
|
}
|
2024-05-31 12:59:23 +02:00
|
|
|
this.projectInfo.funding.budget = data[0].totalcost;//"10000";
|
|
|
|
this.projectInfo.funding.contribution = data[0].fundedamount;//"200100";
|
|
|
|
this.projectInfo.funding.currency = data[0].currency;//"EUR";
|
2020-03-16 14:09:46 +01:00
|
|
|
}
|
2024-05-31 12:59:23 +02:00
|
|
|
// if(!Array.isArray(data[0]['summary'])) {
|
|
|
|
// this.projectInfo.description = (data[0]['summary']) ? String(data[0]['summary']) : "";
|
|
|
|
// } else {
|
|
|
|
// this.projectInfo.description = (data[0]['summary'][0]) ? String(data[0]['summary'][0]) : "";
|
|
|
|
// }
|
|
|
|
this.projectInfo.description = this.parsingFunctions.parseDescription(data[0] && data[0].summary ? data[0].summary : []);
|
|
|
|
}
|
2017-12-19 13:53:46 +01:00
|
|
|
|
2024-05-31 12:59:23 +02:00
|
|
|
// ['result']['metadata']['oaf:entity']['oaf:project']['rels']['rel']
|
|
|
|
if (data[2] != null) {
|
|
|
|
this.projectInfo.organizations = [];
|
|
|
|
|
|
|
|
if (!Array.isArray(data[2])) {
|
|
|
|
if (data[2].hasOwnProperty("to") && data[2]['to'].class && data[2]['to'].class.toLowerCase() == "hasparticipant") {
|
|
|
|
let country: string = "";
|
|
|
|
let acronym: string = "";
|
|
|
|
let name: string = "";
|
|
|
|
let id: string = "";
|
|
|
|
if(data[2].hasOwnProperty("country")) {
|
|
|
|
country = data[2].country.classname;
|
|
|
|
}
|
|
|
|
if (data[2].hasOwnProperty("legalshortname")) {
|
|
|
|
acronym = data[2].legalshortname;
|
|
|
|
}
|
|
|
|
if (data[2].hasOwnProperty("legalname")) {
|
|
|
|
name = data[2].legalname;
|
|
|
|
}
|
|
|
|
if (!acronym && !name) {
|
|
|
|
// acronym is displayed with link and name only in tooltip
|
|
|
|
acronym = "[no title available]";
|
|
|
|
}
|
|
|
|
|
|
|
|
if (data[2].hasOwnProperty("to")) {
|
|
|
|
id = data[2]['to'].content;
|
|
|
|
}
|
2017-12-19 13:53:46 +01:00
|
|
|
|
2024-05-31 12:59:23 +02:00
|
|
|
this.projectInfo.organizations.push({"country": country, "acronym": acronym, "name": name, "id": id});
|
2017-12-19 13:53:46 +01:00
|
|
|
}
|
2024-05-31 12:59:23 +02:00
|
|
|
} else {
|
|
|
|
for (let i = 0; i < data[2].length; i++) {
|
|
|
|
let country: string = "";
|
|
|
|
let acronym: string = "";
|
|
|
|
let name: string = "";
|
|
|
|
let id: string = "";
|
|
|
|
if (data[2][i].hasOwnProperty("to") && data[2][i]['to'].class && data[2][i]['to'].class.toLowerCase() == "hasparticipant") {
|
|
|
|
if(data[2][i].hasOwnProperty("country")) {
|
|
|
|
country = data[2][i].country.classname;
|
|
|
|
}
|
|
|
|
if (data[2][i].hasOwnProperty("legalshortname")) {
|
|
|
|
acronym = data[2][i].legalshortname;
|
|
|
|
}
|
|
|
|
if (data[2][i].hasOwnProperty("legalname")) {
|
|
|
|
name = data[2][i].legalname;
|
|
|
|
}
|
|
|
|
if (!acronym && !name) {
|
|
|
|
acronym = "[no title available]";
|
|
|
|
}
|
2017-12-19 13:53:46 +01:00
|
|
|
|
2024-05-31 12:59:23 +02:00
|
|
|
if (data[2][i].hasOwnProperty("to")) {
|
|
|
|
id = data[2][i]['to'].content;
|
|
|
|
}
|
|
|
|
|
|
|
|
this.projectInfo.organizations.push({"country": country, "acronym": acronym, "name": name, "id": id});
|
|
|
|
}
|
2023-05-02 11:00:40 +02:00
|
|
|
}
|
2024-05-31 12:59:23 +02:00
|
|
|
}
|
|
|
|
}
|
2023-05-02 11:00:40 +02:00
|
|
|
|
2024-05-31 12:59:23 +02:00
|
|
|
if (this.projectInfo.funding && this.projectInfo.funding.funderShortName == "EC") {
|
|
|
|
this.projectInfo.url = properties.cordisURL + this.projectInfo.funding.code;
|
|
|
|
this.projectInfo.urlInfo = "Detailed project information (CORDIS)";
|
|
|
|
}
|
2017-12-19 13:53:46 +01:00
|
|
|
|
2024-05-31 12:59:23 +02:00
|
|
|
if (data[0]?.measure) {
|
|
|
|
this.projectInfo.measure = this.parsingFunctions.parseMeasures(data[0].measure);
|
2017-12-19 13:53:46 +01:00
|
|
|
}
|
|
|
|
|
2024-05-31 12:59:23 +02:00
|
|
|
return this.projectInfo;
|
|
|
|
|
|
|
|
}
|
2017-12-19 13:53:46 +01:00
|
|
|
|
2024-05-31 12:59:23 +02:00
|
|
|
parseProjectDates(id: string, data: any): any {
|
|
|
|
let project = {id: id, startDate: "", endDate: ""};
|
|
|
|
if (data[0] != null) {
|
|
|
|
project.startDate = data[0].startdate;
|
|
|
|
project.endDate = data[0].enddate;
|
2017-12-19 13:53:46 +01:00
|
|
|
}
|
2024-05-31 12:59:23 +02:00
|
|
|
return project;
|
|
|
|
|
|
|
|
}
|
2017-12-19 13:53:46 +01:00
|
|
|
|
|
|
|
}
|