Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
O
openbis
Manage
Activity
Members
Labels
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
sispub
openbis
Commits
ec7de0c4
Commit
ec7de0c4
authored
8 years ago
by
juanf
Browse files
Options
Downloads
Patches
Plain Diff
SSDM-3092 : Export functionality, ongoing work
SVN: 36610
parent
df536983
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
openbis_standard_technologies/dist/core-plugins/eln-lims/1/dss/reporting-plugins/exports-api/exports-api.py
+9
-4
9 additions, 4 deletions
...n-lims/1/dss/reporting-plugins/exports-api/exports-api.py
with
9 additions
and
4 deletions
openbis_standard_technologies/dist/core-plugins/eln-lims/1/dss/reporting-plugins/exports-api/exports-api.py
+
9
−
4
View file @
ec7de0c4
...
...
@@ -192,8 +192,10 @@ def addToZipFile(path, file, zos):
fis
.
close
();
def
export
(
sessionToken
,
entities
):
#Services used during the export process
v3
=
HttpInvokerUtils
.
createServiceStub
(
IApplicationServerApi
,
OPENBISURL
+
IApplicationServerApi
.
SERVICE_URL
,
30
*
1000
);
v3d
=
ServiceProvider
.
getApplicationContext
().
getBean
(
V3_DSS_BEAN
);
dssComponent
=
DssComponentFactory
.
tryCreate
(
sessionToken
,
OPENBISURL
);
objectCache
=
{};
objectMapper
=
GenericObjectMapper
();
...
...
@@ -205,10 +207,10 @@ def export(sessionToken, entities):
tempDirPathFile
.
delete
();
tempDirPathFile
.
mkdir
();
tempDirPath
=
tempDirPathFile
.
getCanonicalPath
();
tempZipFileName
=
tempDirName
+
"
.zip
"
;
tempZipFilePath
=
tempDirPath
+
"
.zip
"
;
#Create Zip File
tempZipFileName
=
tempDirName
+
"
.zip
"
;
tempZipFilePath
=
tempDirPath
+
"
.zip
"
;
fos
=
FileOutputStream
(
tempZipFilePath
);
zos
=
ZipOutputStream
(
fos
);
...
...
@@ -294,7 +296,10 @@ def export(sessionToken, entities):
fos
.
close
();
#Store on workspace to be able to generate a download link
dssComponent
=
DssComponentFactory
.
tryCreate
(
sessionToken
,
OPENBISURL
)
;
print
"
Zip file can be found on the temperal directory:
"
+
tempZipFilePath
;
dssComponent
.
putFileToSessionWorkspace
(
tempZipFileName
,
FileInputStream
(
File
(
tempZipFilePath
)));
print
"
Zip file found at:
"
+
tempZipFilePath
;
tempZipFileNameWorkspaceURL
=
DataStoreServer
.
getConfigParameters
().
getDownloadURL
()
+
"
/datastore_server/session_workspace_file_download?sessionID=
"
+
sessionToken
+
"
&filePath=
"
+
tempZipFileName
;
print
"
Zip file can be downloaded from the workspace:
"
+
tempZipFileNameWorkspaceURL
;
#Send Email
#Remove temporal folder and zip
return
True
\ No newline at end of file
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment