Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
mantid
Manage
Activity
Members
Labels
Plan
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Deploy
Releases
Model registry
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Code review analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
mantidproject
mantid
Commits
695544d6
Commit
695544d6
authored
11 years ago
by
Peter Parker
Browse files
Options
Downloads
Patches
Plain Diff
Refs #7830 - Check for existance of cURL.
Stop script if we can't use cURL.
parent
3d1646d5
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
Code/Tools/DOI/doi.py
+33
-0
33 additions, 0 deletions
Code/Tools/DOI/doi.py
with
33 additions
and
0 deletions
Code/Tools/DOI/doi.py
+
33
−
0
View file @
695544d6
...
@@ -65,6 +65,7 @@ import xml.etree.ElementTree as ET
...
@@ -65,6 +65,7 @@ import xml.etree.ElementTree as ET
import
subprocess
import
subprocess
import
re
import
re
import
os
from
datetime
import
date
from
datetime
import
date
import
authors
import
authors
...
@@ -292,6 +293,36 @@ def check_if_doi_exists(base, doi, destination, options):
...
@@ -292,6 +293,36 @@ def check_if_doi_exists(base, doi, destination, options):
raise
Exception
(
raise
Exception
(
"
Unexpected result back from server:
\"
"
+
result
[
0
]
+
"
\"
"
)
"
Unexpected result back from server:
\"
"
+
result
[
0
]
+
"
\"
"
)
def
check_for_curl
():
'''
A check to see whether we can call cURL on the command line. Based on
an implementation of
"
which
"
found at http://stackoverflow.com/a/379535.
If cURL cannot be called an exception will be raised, else the script will
be free to continue.
This appears to work on both Linux and Windows.
'''
def
is_exe
(
fpath
):
return
os
.
path
.
exists
(
fpath
)
and
os
.
access
(
fpath
,
os
.
X_OK
)
def
ext_candidates
(
fpath
):
yield
fpath
for
ext
in
os
.
environ
.
get
(
"
PATHEXT
"
,
""
).
split
(
os
.
pathsep
):
yield
fpath
+
ext
fpath
,
fname
=
os
.
path
.
split
(
"
curl
"
)
if
fpath
:
if
is_exe
(
"
curl
"
):
return
# Found cURL.
else
:
for
path
in
os
.
environ
[
"
PATH
"
].
split
(
os
.
pathsep
):
exe_file
=
os
.
path
.
join
(
path
,
"
curl
"
)
for
candidate
in
ext_candidates
(
exe_file
):
if
is_exe
(
candidate
):
return
# Found cURL.
raise
Exception
(
'
This script requires that cURL be installed and
'
+
\
'
available on the PATH.
'
)
def
run
(
options
):
def
run
(
options
):
'''
Creating a usable DOI is (for our purposes at least) a two step
'''
Creating a usable DOI is (for our purposes at least) a two step
process: metadata has to be constructed and then sent to the server, and
process: metadata has to be constructed and then sent to the server, and
...
@@ -427,6 +458,8 @@ def run(options):
...
@@ -427,6 +458,8 @@ def run(options):
quit
()
quit
()
if
__name__
==
"
__main__
"
:
if
__name__
==
"
__main__
"
:
check_for_curl
()
parser
=
argparse
.
ArgumentParser
(
parser
=
argparse
.
ArgumentParser
(
description
=
"
Script to generate the DOI needed for a Mantid release.
"
description
=
"
Script to generate the DOI needed for a Mantid release.
"
)
)
...
...
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