From d1bc41c08b401aad21ccb0d4bdc61edc40911803 Mon Sep 17 00:00:00 2001 From: argirok Date: Wed, 5 Oct 2022 16:52:34 +0300 Subject: [PATCH] update properties for datatransfer functionality --- src/environments/environment.prod.ts | 9 ++++++++- src/environments/environment.ts | 15 ++++++++++++++- 2 files changed, 22 insertions(+), 2 deletions(-) diff --git a/src/environments/environment.prod.ts b/src/environments/environment.prod.ts index 1e4ae57..43b822e 100644 --- a/src/environments/environment.prod.ts +++ b/src/environments/environment.prod.ts @@ -109,5 +109,12 @@ export let properties: EnvProperties = { depositSearchPage: "/participate/deposit/search", altMetricsAPIURL: "https://api.altmetric.com/v1/doi/", reCaptchaSiteKey: null, - footerGrantText : "" + footerGrantText : "", + eoscDataTransferAPI : "https://eosc-data-transfer.vm.fedcloud.eu", + eoscDataTransferDestinations : [ + {label: "EGI dCache (dcache-demo.desy.de)", value: + {label : "EGI dCache (dcache-demo.desy.de)", url: "https://dcache-demo.desy.de:2443", id: "dcache", + webpage : "https://dcache-demo.desy.de", defaultFolder: "/", hasBrowse: true, + loginUrl : "https://explore.eosc-portal.eu/egi-login-service/openid_connect_login", cookieName: "EGIAccessToken"} + }] }; diff --git a/src/environments/environment.ts b/src/environments/environment.ts index e9a8c3a..3a6ccce 100644 --- a/src/environments/environment.ts +++ b/src/environments/environment.ts @@ -109,5 +109,18 @@ export let properties: EnvProperties = { depositSearchPage: "/participate/deposit/search", altMetricsAPIURL: "https://api.altmetric.com/v1/doi/", reCaptchaSiteKey: null, - footerGrantText : "This OpenAIRE gateway is part of a project that has received funding from the European Union's Horizon 2020 research and innovation programme under grant agreements No. 777541 and 101017452" + footerGrantText : "This OpenAIRE gateway is part of a project that has received funding from the European Union's Horizon 2020 research and innovation programme under grant agreements No. 777541 and 101017452", + eoscDataTransferAPI : "https://eosc-data-transfer.vm.fedcloud.eu", + eoscDataTransferDestinations : [ + {label: "EGI dCache (dcache-demo.desy.de)", value: + {label : "EGI dCache (dcache-demo.desy.de)", url: "https://dcache-demo.desy.de:2443", id: "dcache", + webpage : "https://dcache-demo.desy.de", defaultFolder: "/", hasBrowse: true, + loginUrl : "http://rudie.di.uoa.gr:8580/openid_connect_login", cookieName: "EGIAccessToken"} + }, + {label: "FTP", value: + {label : "FTP", id: "ftp", + loginUrl : null} + } + ] + };