diff --git a/openbis_standard_technologies/dist/core-plugins/eln-lims/1/dss/reporting-plugins/exports-api/exports-api.py b/openbis_standard_technologies/dist/core-plugins/eln-lims/1/dss/reporting-plugins/exports-api/exports-api.py index b788cf9aaec1b4d6340a3011811f71d32d88efed..6ade00d8fa09d8741741be01c824070a6a604736 100644 --- a/openbis_standard_technologies/dist/core-plugins/eln-lims/1/dss/reporting-plugins/exports-api/exports-api.py +++ b/openbis_standard_technologies/dist/core-plugins/eln-lims/1/dss/reporting-plugins/exports-api/exports-api.py @@ -60,7 +60,7 @@ from ch.systemsx.cisd.openbis.dss.generic.shared import ServiceProvider; from ch.ethz.sis.openbis.generic.dssapi.v3.dto.datasetfile.id import DataSetFilePermId; from ch.ethz.sis.openbis.generic.asapi.v3.dto.dataset.id import DataSetPermId; from ch.ethz.sis.openbis.generic.dssapi.v3.dto.datasetfile.download import DataSetFileDownloadOptions; - +from ch.ethz.sis.openbis.generic.dssapi.v3.dto.datasetfile.download import DataSetFileDownloadReader #JSON from ch.ethz.sis.openbis.generic.server.sharedapi.v3.json import GenericObjectMapper; from com.fasterxml.jackson.databind import SerializationFeature @@ -102,6 +102,7 @@ def process(tr, params, tableBuilder): def expandAndexport(tr, params): #Services used during the export process # TO-DO Login on the services as ETL server but on behalf of the user that makes the call + # serviceSessionToken = tr.getOpenBisServiceSessionToken(); sessionToken = params.get("sessionToken"); v3 = HttpInvokerUtils.createServiceStub(IApplicationServerApi, OPENBISURL + IApplicationServerApi.SERVICE_URL, 30 * 1000); v3d = ServiceProvider.getApplicationContext().getBean(V3_DSS_BEAN); @@ -263,7 +264,7 @@ def export(sessionToken, entities, userEmail, mailClient): datasetEntityObj = objectCache[entity["permId"]]; datasetEntityFilePath = getFilePath(datasetEntityObj.getSample().getExperiment().getProject().getSpace().getCode(), datasetEntityObj.getSample().getExperiment().getProject().getCode(), datasetEntityObj.getSample().getExperiment().getCode(), datasetEntityObj.getSample().getCode(), datasetEntityObj.getCode()); filePath = datasetEntityFilePath + "/" + entity["path"]; - rawFileInputStream = v3d.downloadFiles(sessionToken, [DataSetFilePermId(DataSetPermId(permId), entity["path"])], DataSetFileDownloadOptions()); + rawFileInputStream = DataSetFileDownloadReader(v3d.downloadFiles(sessionToken, [DataSetFilePermId(DataSetPermId(permId), entity["path"])], DataSetFileDownloadOptions())).read().getInputStream(); rawFile = File(tempDirPath + filePath + ".json"); rawFile.getParentFile().mkdirs(); IOUtils.copyLarge(rawFileInputStream, FileOutputStream(rawFile));