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
3160cd7c
Commit
3160cd7c
authored
Mar 21, 2023
by
Ilya Simonov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
add logging for send video to s3
parent
17c1347f
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
48 additions
and
0 deletions
+48
-0
tasks.py
apps/core/tasks.py
+7
-0
settings.py
cp_video/settings.py
+41
-0
No files found.
apps/core/tasks.py
View file @
3160cd7c
import
requests
import
logging
from
django.conf
import
settings
from
django.contrib.contenttypes.models
import
ContentType
...
...
@@ -13,6 +14,8 @@ from cp_video.celery import app
video_content_type
=
ContentType
.
objects
.
get_for_model
(
Video
)
playlist_content_type
=
ContentType
.
objects
.
get_for_model
(
Playlist
)
log
=
logging
.
getLogger
(
'send_video_to_s3'
)
@
app
.
task
(
soft_time_limit
=
60
)
def
send_video_to_s3
():
...
...
@@ -21,9 +24,11 @@ def send_video_to_s3():
)
.
prefetch_related
(
'tags'
,
'categories'
)
for
local_video
in
local_videos
:
log
.
info
(
f
'Uploading video {local_video.id} to S3...'
)
video_name
=
local_video
.
local_file
.
name
.
split
(
'/'
)[
-
1
]
key
=
asset_upload
(
local_video
,
video_name
)
file_path
=
settings
.
DOMAIN_NAME
+
settings
.
MEDIA_URL
+
key
log
.
info
(
f
'File path: {file_path}'
)
response
=
requests
.
get
(
file_path
)
content
=
response
.
content
...
...
@@ -32,6 +37,7 @@ def send_video_to_s3():
local_video
.
status
=
READY
if
not
local_video
.
thumbnail
and
local_video
.
local_file
:
log
.
info
(
f
'Uploading thumbnail for video {local_video.id} to S3...'
)
thumbnail_name
=
generate_thumbnail
(
file_path
,
video_name
)
key
=
f
'videos/{thumbnail_name}'
thumbnail_path
=
settings
.
DOMAIN_NAME
+
settings
.
MEDIA_URL
+
thumbnail_name
...
...
@@ -39,6 +45,7 @@ def send_video_to_s3():
content
=
response
.
content
content_type
=
'image/jpeg'
local_video
.
thumbnail
=
upload_file
(
content
,
key
,
content_type
)
log
.
info
(
f
'Thumbnail for video {local_video.id} uploaded to S3...'
)
local_video
.
save
(
update_fields
=
[
's3_file'
,
'status'
,
'thumbnail'
])
...
...
cp_video/settings.py
View file @
3160cd7c
...
...
@@ -168,3 +168,44 @@ else:
AWS_S3_CUSTOM_DOMAIN
=
env
(
'AWS_S3_CUSTOM_DOMAIN'
)
DOMAIN_NAME
=
env
(
'DOMAIN_NAME'
,
default
=
'http://localhost:8000'
)
# Logs
LOGGING
=
{
'version'
:
1
,
'disable_existing_loggers'
:
False
,
'formatters'
:
{
'default'
:
{
'format'
:
"
%(asctime)
s:
%(name)
s:
%(levelname)
s:
%(message)
s"
},
'verbose'
:
{
'format'
:
'
%(levelname)
s
%(asctime)
s
%(name)
s
%(message)
s'
,
'datefmt'
:
'
%
Y-
%
m-
%
d
%
H:
%
M:
%
S'
,
},
},
'handlers'
:
{
'console'
:
{
'level'
:
'DEBUG'
,
'class'
:
'logging.StreamHandler'
,
'stream'
:
sys
.
stdout
,
'formatter'
:
'verbose'
,
},
},
'loggers'
:
{
'django'
:
{
'handlers'
:
[
'console'
],
'level'
:
'INFO'
,
'propagate'
:
True
,
},
'django.request'
:
{
'handlers'
:
[
'console'
],
'level'
:
'ERROR'
,
'propagate'
:
False
,
},
'send_video_to_s3'
:
{
'handlers'
:
[
'console'
],
'level'
:
'INFO'
,
'propagate'
:
True
,
},
},
}
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