Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Sign in
Toggle navigation
C
cp_video_dokku
Project
Project
Details
Activity
Releases
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
Alexandr Dzehil
cp_video_dokku
Commits
202366e1
Commit
202366e1
authored
Mar 15, 2023
by
Ilya Simonov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
test do s3 storage
parent
d8efaf35
Changes
9
Hide whitespace changes
Inline
Side-by-side
Showing
9 changed files
with
38 additions
and
26 deletions
+38
-26
models.cpython-39.pyc
apps/core/__pycache__/models.cpython-39.pyc
+0
-0
s3_uploader.cpython-39.pyc
apps/core/__pycache__/s3_uploader.cpython-39.pyc
+0
-0
signals.cpython-39.pyc
apps/core/__pycache__/signals.cpython-39.pyc
+0
-0
utils.cpython-39.pyc
apps/core/__pycache__/utils.cpython-39.pyc
+0
-0
models.py
apps/core/models.py
+1
-1
s3_uploader.py
apps/core/s3_uploader.py
+4
-4
signals.py
apps/core/signals.py
+15
-15
tasks.py
apps/core/tasks.py
+3
-1
settings.py
cp_video/settings.py
+15
-5
No files found.
apps/core/__pycache__/models.cpython-39.pyc
View file @
202366e1
No preview for this file type
apps/core/__pycache__/s3_uploader.cpython-39.pyc
View file @
202366e1
No preview for this file type
apps/core/__pycache__/signals.cpython-39.pyc
View file @
202366e1
No preview for this file type
apps/core/__pycache__/utils.cpython-39.pyc
View file @
202366e1
No preview for this file type
apps/core/models.py
View file @
202366e1
...
...
@@ -100,7 +100,7 @@ class Video(BaseModel):
description
=
models
.
TextField
(
_
(
'description'
),
blank
=
True
,
null
=
True
)
local_file
=
models
.
FileField
(
_
(
'local file'
),
upload_to
=
asset_upload
,
storage
=
S3Boto3Storage
(
bucket_name
=
'cp-video-files'
)
,
blank
=
True
,
null
=
True
,
)
...
...
apps/core/s3_uploader.py
View file @
202366e1
...
...
@@ -6,13 +6,13 @@ from django.conf import settings
def
upload_file
(
content
,
key
,
content_type
):
s3
=
boto3
.
client
(
's3'
,
aws_access_key_id
=
settings
.
AWS_ACCESS_KEY_ID
,
aws_secret_access_key
=
settings
.
AWS_SECRET_ACCESS_KEY
,
region_name
=
settings
.
AWS_REGION_NAME
aws_access_key_id
=
settings
.
FINAL_
AWS_ACCESS_KEY_ID
,
aws_secret_access_key
=
settings
.
FINAL_
AWS_SECRET_ACCESS_KEY
,
region_name
=
settings
.
FINAL_
AWS_REGION_NAME
)
s3
.
put_object
(
Bucket
=
settings
.
AWS_STORAGE_BUCKET_NAME
,
Bucket
=
settings
.
FINAL_
AWS_STORAGE_BUCKET_NAME
,
Key
=
key
,
Body
=
content
,
ContentType
=
content_type
,
...
...
apps/core/signals.py
View file @
202366e1
...
...
@@ -7,18 +7,18 @@ from django.db.models.signals import post_save
from
.
import
models
,
utils
,
s3_uploader
@
receiver
(
post_save
,
sender
=
models
.
Video
)
def
generate_default_thumbnail_for_video
(
sender
,
instance
,
**
kwargs
):
if
not
instance
.
thumbnail
and
instance
.
local_file
:
if
os
.
path
.
isfile
(
instance
.
local_file
.
path
):
thumbnail_name
=
utils
.
generate_thumbnail
(
instance
.
local_file
)
key
=
f
'videos/{thumbnail_name}'
thumbnail_path
=
f
'{settings.MEDIA_ROOT}{key}'
content
=
utils
.
get_thumbnail_content
(
thumbnail_path
)
content_type
=
'image/jpeg'
instance
.
thumbnail
=
s3_uploader
.
upload_file
(
content
,
key
,
content_type
)
instance
.
save
(
update_fields
=
[
'thumbnail'
])
os
.
remove
(
thumbnail_path
)
#
@receiver(post_save, sender=models.Video)
#
def generate_default_thumbnail_for_video(sender, instance, **kwargs):
#
if not instance.thumbnail and instance.local_file:
#
if os.path.isfile(instance.local_file.path):
#
thumbnail_name = utils.generate_thumbnail(instance.local_file)
#
key = f'videos/{thumbnail_name}'
#
thumbnail_path = f'{settings.MEDIA_ROOT}{key}'
#
#
content = utils.get_thumbnail_content(thumbnail_path)
#
content_type = 'image/jpeg'
#
instance.thumbnail = s3_uploader.upload_file(content, key, content_type)
#
#
instance.save(update_fields=['thumbnail'])
#
#
os.remove(thumbnail_path)
apps/core/tasks.py
View file @
202366e1
...
...
@@ -13,13 +13,15 @@ def send_video_to_s3():
for
local_video
in
local_videos
:
video_name
=
local_video
.
local_file
.
name
.
split
(
'/'
)[
-
1
]
print
(
'video_name'
,
video_name
)
key
=
asset_upload
(
local_video
,
video_name
)
print
(
'key'
,
key
)
content
=
local_video
.
local_file
.
read
()
local_video
.
s3_file
=
upload_file
(
content
,
key
,
'video/mp4'
)
local_video
.
status
=
READY
local_video
.
save
(
update_fields
=
[
's3_file'
,
'status'
])
os
.
remove
(
local_video
.
local_file
.
path
)
#
os.remove(local_video.local_file.path)
local_videos
.
update
(
local_file
=
None
)
cp_video/settings.py
View file @
202366e1
...
...
@@ -160,9 +160,19 @@ path = f'{BASE_DIR}/cp_video/local.py'
if
os
.
path
.
exists
(
path
):
from
.local
import
*
else
:
AWS_STORAGE_BUCKET_NAME
=
env
(
'AWS_STORAGE_BUCKET_NAME'
)
AWS_ACCESS_KEY_ID
=
env
(
'AWS_ACCESS_KEY_ID'
)
AWS_SECRET_ACCESS_KEY
=
env
(
'AWS_SECRET_ACCESS_KEY'
)
AWS_REGION_NAME
=
env
(
'AWS_REGION_NAME'
)
FINAL_
AWS_STORAGE_BUCKET_NAME
=
env
(
'AWS_STORAGE_BUCKET_NAME'
)
FINAL_
AWS_ACCESS_KEY_ID
=
env
(
'AWS_ACCESS_KEY_ID'
)
FINAL_
AWS_SECRET_ACCESS_KEY
=
env
(
'AWS_SECRET_ACCESS_KEY'
)
FINAL_
AWS_REGION_NAME
=
env
(
'AWS_REGION_NAME'
)
# CloudFront
AWS_S3_CUSTOM_DOMAIN
=
env
(
'AWS_S3_CUSTOM_DOMAIN'
)
FINAL_AWS_S3_CUSTOM_DOMAIN
=
env
(
'AWS_S3_CUSTOM_DOMAIN'
)
AWS_ACCESS_KEY_ID
=
'DO00FPURLTXA34ZCTVP7'
AWS_SECRET_ACCESS_KEY
=
'0gnDLjAoAF+rbKgDVWEln5K7rdPXDxq2/E7C8k3q7IU'
AWS_STORAGE_BUCKET_NAME
=
'cp-video-files'
AWS_S3_ENDPOINT_URL
=
'https://cp-video-files.nyc3.digitaloceanspaces.com'
AWS_S3_OBJECT_PARAMETERS
=
{
'CacheControl'
:
'max-age=86400'
}
AWS_LOCATION
=
'media'
AWS_DEFAULT_ACL
=
'public-read'
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