From aff49ee039cfd354a85817f74ba8e1b39b2b1908 Mon Sep 17 00:00:00 2001 From: juanf <juanf> Date: Thu, 2 Jun 2016 12:37:06 +0000 Subject: [PATCH] SSDM-3092 : Export functionality, deleting/fixing some comments SVN: 36622 --- .../1/dss/reporting-plugins/exports-api/exports-api.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) 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 6ade00d8fa0..a951fe52b38 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 @@ -78,7 +78,8 @@ def process(tr, params, tableBuilder): isOk = False; result = None; - # Set user using the Dropbox + # Set user using the service + tr.setUserId(userId); if method == "exportAll": isOk = expandAndexport(tr, params); @@ -102,7 +103,6 @@ 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); @@ -180,7 +180,6 @@ def expandAndexport(tr, params): def export(sessionToken, entities, userEmail, mailClient): #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 v3 = HttpInvokerUtils.createServiceStub(IApplicationServerApi, OPENBISURL + IApplicationServerApi.SERVICE_URL, 30 * 1000); v3d = ServiceProvider.getApplicationContext().getBean(V3_DSS_BEAN); dssComponent = DssComponentFactory.tryCreate(sessionToken, OPENBISURL); -- GitLab