Skip to content
Snippets Groups Projects
Commit 695544d6 authored by Peter Parker's avatar Peter Parker
Browse files

Refs #7830 - Check for existance of cURL.

Stop script if we can't use cURL.
parent 3d1646d5
No related branches found
No related tags found
No related merge requests found
...@@ -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."
) )
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment