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
0bc66e80
Commit
0bc66e80
authored
Mar 28, 2023
by
Ilya Simonov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix utils asset_upload
parent
173868ae
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
10 additions
and
8 deletions
+10
-8
0002_category_tag_alter_video_options_and_more.py
...rations/0002_category_tag_alter_video_options_and_more.py
+2
-2
0003_alter_playlist_videos_alter_video_local_file.py
...ions/0003_alter_playlist_videos_alter_video_local_file.py
+2
-2
models.py
apps/core/models.py
+1
-1
tasks.py
apps/core/tasks.py
+3
-3
utils.py
cp_video/utils.py
+2
-0
No files found.
apps/core/migrations/0002_category_tag_alter_video_options_and_more.py
View file @
0bc66e80
# Generated by Django 4.1.7 on 2023-03-06 16:52
import
apps.core
.utils
import
cp_video
.utils
from
django.conf
import
settings
from
django.db
import
migrations
,
models
import
django.db.models.deletion
...
...
@@ -78,7 +78,7 @@ class Migration(migrations.Migration):
migrations
.
AddField
(
model_name
=
'video'
,
name
=
'thumbnail'
,
field
=
models
.
ImageField
(
blank
=
True
,
max_length
=
500
,
null
=
True
,
storage
=
storages
.
backends
.
s3boto3
.
S3Boto3Storage
(
bucket_name
=
'clutchpoints-videos'
),
upload_to
=
apps
.
core
.
utils
.
asset_upload
,
verbose_name
=
'thumbnail'
),
field
=
models
.
ImageField
(
blank
=
True
,
max_length
=
500
,
null
=
True
,
storage
=
storages
.
backends
.
s3boto3
.
S3Boto3Storage
(
bucket_name
=
'clutchpoints-videos'
),
upload_to
=
cp_video
.
utils
.
asset_upload
,
verbose_name
=
'thumbnail'
),
),
migrations
.
AlterField
(
model_name
=
'video'
,
...
...
apps/core/migrations/0003_alter_playlist_videos_alter_video_local_file.py
View file @
0bc66e80
# Generated by Django 4.1.7 on 2023-03-21 11:17
import
apps.core
.utils
import
cp_video
.utils
from
django.db
import
migrations
,
models
...
...
@@ -19,6 +19,6 @@ class Migration(migrations.Migration):
migrations
.
AlterField
(
model_name
=
'video'
,
name
=
'local_file'
,
field
=
models
.
FileField
(
blank
=
True
,
null
=
True
,
upload_to
=
apps
.
core
.
utils
.
asset_upload
,
verbose_name
=
'local file'
),
field
=
models
.
FileField
(
blank
=
True
,
null
=
True
,
upload_to
=
cp_video
.
utils
.
asset_upload
,
verbose_name
=
'local file'
),
),
]
apps/core/models.py
View file @
0bc66e80
...
...
@@ -8,7 +8,7 @@ from pytils.translit import slugify
from
storages.backends.s3boto3
import
S3Boto3Storage
from
.utils
import
asset_upload
from
cp_video
.utils
import
asset_upload
READY
=
'ready'
...
...
apps/core/tasks.py
View file @
0bc66e80
...
...
@@ -5,20 +5,20 @@ from django.conf import settings
from
.models
import
Video
,
READY
,
FAIL
from
.s3_uploader
import
upload_file
from
.utils
import
a
sset_upload
,
a
dd_video_to_playlist
from
.utils
import
add_video_to_playlist
from
cp_video.celery
import
app
from
cp_video.utils
import
asset_upload
log
=
logging
.
getLogger
(
'send_video_to_s3'
)
@
app
.
task
(
soft_time_limit
=
600
)
def
send_video_to_s3
(
video_id
=
None
):
log
.
info
(
f
'Uploading video id {video_id} to S3...'
)
local_video
=
Video
.
objects
.
get
(
id
=
video_id
)
try
:
log
.
info
(
f
'Uploading video id {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
...
...
cp_video/utils.py
0 → 100644
View file @
0bc66e80
def
asset_upload
(
instance
,
filename
):
return
f
'videos/{filename}'
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