Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
s3storage
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
Service Desk
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
Show more breadcrumbs
cubicweb
cubes
s3storage
Commits
c170b5470154
Commit
c170b5470154
authored
2 years ago
by
Efflam Lemaillet
Browse files
Options
Downloads
Patches
Plain Diff
feat: download object with versioned_id in key
Refs:
#14
parent
fd6e8a70100a
No related branches found
No related tags found
No related merge requests found
Pipeline
#152922
failed
2 years ago
Stage: lint
Stage: tests
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
cubicweb_s3storage/storages.py
+33
-6
33 additions, 6 deletions
cubicweb_s3storage/storages.py
with
33 additions
and
6 deletions
cubicweb_s3storage/storages.py
+
33
−
6
View file @
c170b547
...
@@ -33,6 +33,7 @@
...
@@ -33,6 +33,7 @@
class
S3Storage
(
Storage
):
class
S3Storage
(
Storage
):
is_source_callback
=
True
is_source_callback
=
True
KEY_SEPARATOR
=
'
#
'
def
__init__
(
self
,
bucket
,
suffix
=
'
.tmp
'
):
def
__init__
(
self
,
bucket
,
suffix
=
'
.tmp
'
):
self
.
s3cnx
=
self
.
_s3_client
()
self
.
s3cnx
=
self
.
_s3_client
()
...
@@ -57,7 +58,7 @@
...
@@ -57,7 +58,7 @@
# FIXME need a way to check that the attribute is actually edited
# FIXME need a way to check that the attribute is actually edited
try
:
try
:
suffixed_key
=
self
.
suffixed_key
(
key
)
suffixed_key
=
self
.
suffixed_key
(
key
)
return
self
.
download
(
suffixed_key
)
self
.
get_s3_object
(
source
,
suffixed_key
)
except
Exception
:
except
Exception
:
pass
pass
try
:
try
:
...
@@ -61,7 +62,7 @@
...
@@ -61,7 +62,7 @@
except
Exception
:
except
Exception
:
pass
pass
try
:
try
:
return
self
.
download
(
key
)
self
.
get_s3_object
(
source
,
key
)
except
Exception
as
ex
:
except
Exception
as
ex
:
source
.
critical
(
"
can
'
t retrieve S3 object %s: %s
"
,
key
,
ex
)
source
.
critical
(
"
can
'
t retrieve S3 object %s: %s
"
,
key
,
ex
)
return
None
return
None
...
@@ -75,7 +76,7 @@
...
@@ -75,7 +76,7 @@
if
PY3
:
if
PY3
:
key
=
key
.
decode
(
'
utf-8
'
)
key
=
key
.
decode
(
'
utf-8
'
)
try
:
try
:
return
self
.
download
(
key
)
self
.
get_s3_object
(
entity
,
key
)
except
Exception
:
except
Exception
:
return
None
return
None
...
@@ -175,7 +176,7 @@
...
@@ -175,7 +176,7 @@
"""
"""
Format the string that will store key and version id
Format the string that will store key and version id
"""
"""
return
f
"
{
key
}
#
{
version_id
}
"
return
f
"
{
key
}
{
self
.
KEY_SEPARATOR
}
{
version_id
}
"
def
get_s3_key
(
self
,
entity
,
attr
):
def
get_s3_key
(
self
,
entity
,
attr
):
"""
"""
...
@@ -206,8 +207,34 @@
...
@@ -206,8 +207,34 @@
def
suffixed_key
(
self
,
key
):
def
suffixed_key
(
self
,
key
):
return
key
+
self
.
suffix
return
key
+
self
.
suffix
def
download
(
self
,
key
):
def
get_s3_object
(
self
,
entity
,
key
):
result
=
self
.
s3cnx
.
get_object
(
Bucket
=
self
.
bucket
,
Key
=
key
)
"""
:param entiry: (Object)
:param key: (string)
get s3 stored attribute for entity
handle the case of versioned object
"""
version_id
=
""
# check first : does the key contain a '<separator>'
try
:
key
,
version_id
=
key
.
rsplit
(
self
.
KEY_SEPARATOR
,
1
)
except
Exception
as
ex
:
if
entity
.
_cw
.
repo
.
config
[
'
s3-activate-object-versioning
'
]:
self
.
info
(
f
"
key for
{
entity
.
eid
}
was not versionned :
{
ex
}
"
)
# if object-versioning is activated use the version_id
if
entity
.
_cw
.
repo
.
config
[
'
s3-activate-object-versioning
'
]:
return
self
.
download
(
key
,
VersionId
=
version_id
)
return
self
.
download
(
key
)
def
download
(
self
,
key
,
**
kwargs
):
"""
:param key: (string)
:param kwargs: (dict) Keys must be compatible with method S3.Client.put_object
https://boto3.amazonaws.com/v1/documentation/api/latest/reference/services/s3.html#S3.Client.put_object
"""
result
=
self
.
s3cnx
.
get_object
(
Bucket
=
self
.
bucket
,
Key
=
key
,
**
kwargs
)
self
.
info
(
'
Downloaded %s/%s from S3
'
,
self
.
bucket
,
key
)
self
.
info
(
'
Downloaded %s/%s from S3
'
,
self
.
bucket
,
key
)
return
Binary
(
result
[
'
Body
'
].
read
())
return
Binary
(
result
[
'
Body
'
].
read
())
...
...
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