Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
A
ansible
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
OpenEdx
ansible
Commits
d21a0287
Commit
d21a0287
authored
Oct 11, 2013
by
James Tanner
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove all sys.exit calls in the cloud/s3 module
Fixes #4458
parent
861779bb
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
13 deletions
+3
-13
library/cloud/s3
+3
-13
No files found.
library/cloud/s3
View file @
d21a0287
...
@@ -118,8 +118,7 @@ import hashlib
...
@@ -118,8 +118,7 @@ import hashlib
try
:
try
:
import
boto
import
boto
except
ImportError
:
except
ImportError
:
print
"failed=True msg='boto required for this module'"
module
.
fail_json
(
msg
=
"boto required for this module"
)
sys
.
exit
(
1
)
def
key_check
(
module
,
s3
,
bucket
,
obj
):
def
key_check
(
module
,
s3
,
bucket
,
obj
):
try
:
try
:
...
@@ -140,7 +139,6 @@ def keysum(module, s3, bucket, obj):
...
@@ -140,7 +139,6 @@ def keysum(module, s3, bucket, obj):
etag_multipart
=
md5_remote
.
find
(
'-'
)
!=-
1
#Check for multipart, etag is not md5
etag_multipart
=
md5_remote
.
find
(
'-'
)
!=-
1
#Check for multipart, etag is not md5
if
etag_multipart
is
True
:
if
etag_multipart
is
True
:
module
.
fail_json
(
msg
=
"Files uploaded with multipart of s3 are not supported with checksum, unable to compute checksum."
)
module
.
fail_json
(
msg
=
"Files uploaded with multipart of s3 are not supported with checksum, unable to compute checksum."
)
sys
.
exit
(
0
)
return
md5_remote
return
md5_remote
def
bucket_check
(
module
,
s3
,
bucket
):
def
bucket_check
(
module
,
s3
,
bucket
):
...
@@ -195,7 +193,6 @@ def upload_file_check(src):
...
@@ -195,7 +193,6 @@ def upload_file_check(src):
file_exists
is
False
file_exists
is
False
if
os
.
path
.
isdir
(
src
):
if
os
.
path
.
isdir
(
src
):
module
.
fail_json
(
msg
=
"Specifying a directory is not a valid source for upload."
,
failed
=
True
)
module
.
fail_json
(
msg
=
"Specifying a directory is not a valid source for upload."
,
failed
=
True
)
sys
.
exit
(
0
)
return
file_exists
return
file_exists
def
path_check
(
path
):
def
path_check
(
path
):
...
@@ -211,7 +208,6 @@ def upload_s3file(module, s3, bucket, obj, src, expiry):
...
@@ -211,7 +208,6 @@ def upload_s3file(module, s3, bucket, obj, src, expiry):
key
.
set_contents_from_filename
(
src
)
key
.
set_contents_from_filename
(
src
)
url
=
key
.
generate_url
(
expiry
)
url
=
key
.
generate_url
(
expiry
)
module
.
exit_json
(
msg
=
"PUT operation complete"
,
url
=
url
,
changed
=
True
)
module
.
exit_json
(
msg
=
"PUT operation complete"
,
url
=
url
,
changed
=
True
)
sys
.
exit
(
0
)
except
s3
.
provider
.
storage_copy_error
,
e
:
except
s3
.
provider
.
storage_copy_error
,
e
:
module
.
fail_json
(
msg
=
str
(
e
))
module
.
fail_json
(
msg
=
str
(
e
))
...
@@ -221,7 +217,6 @@ def download_s3file(module, s3, bucket, obj, dest):
...
@@ -221,7 +217,6 @@ def download_s3file(module, s3, bucket, obj, dest):
key
=
bucket
.
lookup
(
obj
)
key
=
bucket
.
lookup
(
obj
)
key
.
get_contents_to_filename
(
dest
)
key
.
get_contents_to_filename
(
dest
)
module
.
exit_json
(
msg
=
"GET operation complete"
,
changed
=
True
)
module
.
exit_json
(
msg
=
"GET operation complete"
,
changed
=
True
)
sys
.
exit
(
0
)
except
s3
.
provider
.
storage_copy_error
,
e
:
except
s3
.
provider
.
storage_copy_error
,
e
:
module
.
fail_json
(
msg
=
str
(
e
))
module
.
fail_json
(
msg
=
str
(
e
))
...
@@ -231,7 +226,6 @@ def download_s3str(module, s3, bucket, obj):
...
@@ -231,7 +226,6 @@ def download_s3str(module, s3, bucket, obj):
key
=
bucket
.
lookup
(
obj
)
key
=
bucket
.
lookup
(
obj
)
contents
=
key
.
get_contents_as_string
()
contents
=
key
.
get_contents_as_string
()
module
.
exit_json
(
msg
=
"GET operation complete"
,
contents
=
contents
,
changed
=
True
)
module
.
exit_json
(
msg
=
"GET operation complete"
,
contents
=
contents
,
changed
=
True
)
sys
.
exit
(
0
)
except
s3
.
provider
.
storage_copy_error
,
e
:
except
s3
.
provider
.
storage_copy_error
,
e
:
module
.
fail_json
(
msg
=
str
(
e
))
module
.
fail_json
(
msg
=
str
(
e
))
...
@@ -241,7 +235,6 @@ def get_download_url(module, s3, bucket, obj, expiry, changed=True):
...
@@ -241,7 +235,6 @@ def get_download_url(module, s3, bucket, obj, expiry, changed=True):
key
=
bucket
.
lookup
(
obj
)
key
=
bucket
.
lookup
(
obj
)
url
=
key
.
generate_url
(
expiry
)
url
=
key
.
generate_url
(
expiry
)
module
.
exit_json
(
msg
=
"Download url:"
,
url
=
url
,
expiry
=
expiry
,
changed
=
changed
)
module
.
exit_json
(
msg
=
"Download url:"
,
url
=
url
,
expiry
=
expiry
,
changed
=
changed
)
sys
.
exit
(
0
)
except
s3
.
provider
.
storage_response_error
,
e
:
except
s3
.
provider
.
storage_response_error
,
e
:
module
.
fail_json
(
msg
=
str
(
e
))
module
.
fail_json
(
msg
=
str
(
e
))
...
@@ -312,13 +305,11 @@ def main():
...
@@ -312,13 +305,11 @@ def main():
bucketrtn
=
bucket_check
(
module
,
s3
,
bucket
)
bucketrtn
=
bucket_check
(
module
,
s3
,
bucket
)
if
bucketrtn
is
False
:
if
bucketrtn
is
False
:
module
.
fail_json
(
msg
=
"Target bucket cannot be found"
,
failed
=
True
)
module
.
fail_json
(
msg
=
"Target bucket cannot be found"
,
failed
=
True
)
sys
.
exit
(
0
)
# Next, we check to see if the key in the bucket exists. If it exists, it also returns key_matches md5sum check.
# Next, we check to see if the key in the bucket exists. If it exists, it also returns key_matches md5sum check.
keyrtn
=
key_check
(
module
,
s3
,
bucket
,
obj
)
keyrtn
=
key_check
(
module
,
s3
,
bucket
,
obj
)
if
keyrtn
is
False
:
if
keyrtn
is
False
:
module
.
fail_json
(
msg
=
"Target key cannot be found"
,
failed
=
True
)
module
.
fail_json
(
msg
=
"Target key cannot be found"
,
failed
=
True
)
sys
.
exit
(
0
)
# If the destination path doesn't exist, no need to md5um etag check, so just download.
# If the destination path doesn't exist, no need to md5um etag check, so just download.
pathrtn
=
path_check
(
dest
)
pathrtn
=
path_check
(
dest
)
...
@@ -367,7 +358,6 @@ def main():
...
@@ -367,7 +358,6 @@ def main():
pathrtn
=
path_check
(
src
)
pathrtn
=
path_check
(
src
)
if
pathrtn
is
False
:
if
pathrtn
is
False
:
module
.
fail_json
(
msg
=
"Local object for PUT does not exist"
,
failed
=
True
)
module
.
fail_json
(
msg
=
"Local object for PUT does not exist"
,
failed
=
True
)
sys
.
exit
(
0
)
# Lets check to see if bucket exists to get ground truth.
# Lets check to see if bucket exists to get ground truth.
bucketrtn
=
bucket_check
(
module
,
s3
,
bucket
)
bucketrtn
=
bucket_check
(
module
,
s3
,
bucket
)
...
@@ -452,7 +442,6 @@ def main():
...
@@ -452,7 +442,6 @@ def main():
module
.
fail_json
(
msg
=
"Key
%
s does not exist."
%
obj
,
failed
=
True
)
module
.
fail_json
(
msg
=
"Key
%
s does not exist."
%
obj
,
failed
=
True
)
else
:
else
:
module
.
fail_json
(
msg
=
"Bucket and Object parameters must be set"
,
failed
=
True
)
module
.
fail_json
(
msg
=
"Bucket and Object parameters must be set"
,
failed
=
True
)
sys
.
exit
(
0
)
if
mode
==
'getstr'
:
if
mode
==
'getstr'
:
if
bucket
and
obj
:
if
bucket
and
obj
:
...
@@ -466,7 +455,8 @@ def main():
...
@@ -466,7 +455,8 @@ def main():
else
:
else
:
module
.
fail_json
(
msg
=
"Key
%
s does not exist."
%
obj
,
failed
=
True
)
module
.
fail_json
(
msg
=
"Key
%
s does not exist."
%
obj
,
failed
=
True
)
sys
.
exit
(
0
)
module
.
exit_json
(
failed
=
False
)
# this is magic, see lib/ansible/module_common.py
# this is magic, see lib/ansible/module_common.py
#<<INCLUDE_ANSIBLE_MODULE_COMMON>>
#<<INCLUDE_ANSIBLE_MODULE_COMMON>>
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment