Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
eossr
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
This is an archived project. Repository and other project resources are read-only.
Show more breadcrumbs
ESCAPE2020
WP3
eossr
Commits
c62ca541
Commit
c62ca541
authored
3 years ago
by
vuillaut
Browse files
Options
Downloads
Patches
Plain Diff
raise error if entry not created
parent
33dae94b
No related branches found
No related tags found
1 merge request
!57
eossr upload unique function
Pipeline
#138391
failed
3 years ago
Stage: install
Stage: test
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
eossr/scripts/eossr_upload_new_deposit.py
+9
-12
9 additions, 12 deletions
eossr/scripts/eossr_upload_new_deposit.py
with
9 additions
and
12 deletions
eossr/scripts/eossr_upload_new_deposit.py
+
9
−
12
View file @
c62ca541
...
...
@@ -55,21 +55,18 @@ def upload(zenodo_token, sandbox_flag, input_directory):
# 1 - create empty deposit
new_entry
=
zenodo
.
create_new_entry
()
ZenodoHTTPStatus
(
new_entry
.
status_code
,
new_entry
.
json
())
record_id
=
new_entry
.
json
()[
'
id
'
]
print
(
f
"
* Status
{
new_entry
.
status_code
}
. New entry to Zenodo created ! Deposition id
{
record_id
}
"
)
if
new_entry
.
status_code
<
399
:
deposition_id
=
new_entry
.
json
()[
'
id
'
]
doi
=
new_entry
.
json
()[
'
metadata
'
][
'
prereserve_doi
'
][
'
doi
'
]
print
(
f
"
* Status
{
new_entry
.
status_code
}
. New entry to Zenodo created ! Deposition id
{
deposition_id
}
"
)
else
:
print
(
f
"
! ERROR; the NEW entry COULD NOT be created.
"
)
print
(
new_entry
.
json
())
# 2 - upload files
for
file
in
os
.
listdir
(
input_directory
):
full_path_file
=
input_directory
+
'
/
'
+
file
new_upload
=
zenodo
.
upload_file_entry
(
deposition
_id
,
record
_id
,
name_file
=
file
,
path_file
=
full_path_file
)
...
...
@@ -88,7 +85,7 @@ def upload(zenodo_token, sandbox_flag, input_directory):
# entry_info['metadata']['doi'] = doi # In the new version of the API the doi is updated automatically.
update_entry
=
zenodo
.
update_metadata_entry
(
deposition
_id
,
record
_id
,
json_metadata
=
entry_metadata
)
...
...
@@ -97,12 +94,12 @@ def upload(zenodo_token, sandbox_flag, input_directory):
# 4 - publish entry
publish
=
zenodo
.
publish_entry
(
deposition
_id
)
publish
=
zenodo
.
publish_entry
(
record
_id
)
if
publish
.
status_code
==
204
:
print
(
"
* New deposit correctly published !
\n
"
)
print
(
f
"
* The new doi should look like 10.5281/
{
deposition
_id
}
. However please
"
)
print
(
f
"
** Check the upload at
{
zenodo
.
zenodo_api_url
[
:
-
4
]
}
/deposit/
{
deposition
_id
}
**
"
)
print
(
f
"
* The new doi should look like 10.5281/
{
record
_id
}
. However please
"
)
print
(
f
"
** Check the upload at
{
zenodo
.
zenodo_api_url
[
:
-
4
]
}
/deposit/
{
record
_id
}
**
"
)
else
:
print
(
f
"
! New deposit NOT correctly published ! Status
{
publish
.
status_code
}
\n
"
,
publish
.
json
())
...
...
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