mirror of
https://github.com/mediacms-io/mediacms.git
synced 2024-11-22 08:13:33 +01:00
Calculate md5sum on uploads while in tmp, deduplicate code
This commit is contained in:
parent
c5047d8df8
commit
e78896b6c4
@ -270,13 +270,6 @@ def media_file_info(input_file):
|
|||||||
ret["fail"] = True
|
ret["fail"] = True
|
||||||
return ret
|
return ret
|
||||||
|
|
||||||
cmd = ["md5sum", input_file]
|
|
||||||
stdout = run_command(cmd).get("out")
|
|
||||||
if stdout:
|
|
||||||
md5sum = stdout.split()[0]
|
|
||||||
else:
|
|
||||||
md5sum = ""
|
|
||||||
|
|
||||||
cmd = [
|
cmd = [
|
||||||
settings.FFPROBE_COMMAND,
|
settings.FFPROBE_COMMAND,
|
||||||
"-loglevel",
|
"-loglevel",
|
||||||
@ -460,10 +453,21 @@ def media_file_info(input_file):
|
|||||||
ret["video_info"] = video_info
|
ret["video_info"] = video_info
|
||||||
ret["audio_info"] = audio_info
|
ret["audio_info"] = audio_info
|
||||||
ret["is_video"] = True
|
ret["is_video"] = True
|
||||||
ret["md5sum"] = md5sum
|
|
||||||
return ret
|
return ret
|
||||||
|
|
||||||
|
|
||||||
|
def media_file_md5sum(input_file):
|
||||||
|
"""
|
||||||
|
Get the md5sum of a file
|
||||||
|
"""
|
||||||
|
cmd = ["md5sum", input_file]
|
||||||
|
stdout = run_command(cmd).get("out")
|
||||||
|
if stdout:
|
||||||
|
return stdout.split()[0]
|
||||||
|
else:
|
||||||
|
return ""
|
||||||
|
|
||||||
|
|
||||||
def calculate_seconds(duration):
|
def calculate_seconds(duration):
|
||||||
# returns seconds, given a ffmpeg extracted string
|
# returns seconds, given a ffmpeg extracted string
|
||||||
ret = 0
|
ret = 0
|
||||||
|
@ -465,7 +465,8 @@ class Media(models.Model):
|
|||||||
self.media_info = json.dumps(ret)
|
self.media_info = json.dumps(ret)
|
||||||
except TypeError:
|
except TypeError:
|
||||||
self.media_info = ""
|
self.media_info = ""
|
||||||
self.md5sum = ret.get("md5sum")
|
if not self.md5sum:
|
||||||
|
self.md5sum = helpers.media_file_md5sum(self.media_file.path)
|
||||||
self.size = helpers.show_file_size(ret.get("file_size"))
|
self.size = helpers.show_file_size(ret.get("file_size"))
|
||||||
else:
|
else:
|
||||||
self.media_type = ""
|
self.media_type = ""
|
||||||
@ -1123,11 +1124,7 @@ class Encoding(models.Model):
|
|||||||
size = int(stdout.strip())
|
size = int(stdout.strip())
|
||||||
self.size = helpers.show_file_size(size)
|
self.size = helpers.show_file_size(size)
|
||||||
if self.chunk_file_path and not self.md5sum:
|
if self.chunk_file_path and not self.md5sum:
|
||||||
cmd = ["md5sum", self.chunk_file_path]
|
self.md5sum = helpers.media_file_md5sum(self.chunk_file_path)
|
||||||
stdout = helpers.run_command(cmd).get("out")
|
|
||||||
if stdout:
|
|
||||||
md5sum = stdout.strip().split()[0]
|
|
||||||
self.md5sum = md5sum
|
|
||||||
|
|
||||||
super(Encoding, self).save(*args, **kwargs)
|
super(Encoding, self).save(*args, **kwargs)
|
||||||
|
|
||||||
|
@ -29,6 +29,7 @@ from .helpers import (
|
|||||||
get_file_name,
|
get_file_name,
|
||||||
get_file_type,
|
get_file_type,
|
||||||
media_file_info,
|
media_file_info,
|
||||||
|
media_file_md5sum,
|
||||||
produce_ffmpeg_commands,
|
produce_ffmpeg_commands,
|
||||||
produce_friendly_token,
|
produce_friendly_token,
|
||||||
rm_file,
|
rm_file,
|
||||||
@ -99,10 +100,7 @@ def chunkize_media(self, friendly_token, profiles, force=True):
|
|||||||
chunks_dict = {}
|
chunks_dict = {}
|
||||||
# calculate once md5sums
|
# calculate once md5sums
|
||||||
for chunk in chunks:
|
for chunk in chunks:
|
||||||
cmd = ["md5sum", chunk]
|
chunks_dict[chunk] = media_file_md5sum(chunk)
|
||||||
stdout = run_command(cmd).get("out")
|
|
||||||
md5sum = stdout.strip().split()[0]
|
|
||||||
chunks_dict[chunk] = md5sum
|
|
||||||
|
|
||||||
for profile in profiles:
|
for profile in profiles:
|
||||||
if media.video_height and media.video_height < profile.resolution:
|
if media.video_height and media.video_height < profile.resolution:
|
||||||
|
@ -9,7 +9,7 @@ from django.http import JsonResponse
|
|||||||
from django.views import generic
|
from django.views import generic
|
||||||
|
|
||||||
from cms.permissions import user_allowed_to_upload
|
from cms.permissions import user_allowed_to_upload
|
||||||
from files.helpers import rm_file
|
from files.helpers import media_file_md5sum, rm_file
|
||||||
from files.models import Media
|
from files.models import Media
|
||||||
|
|
||||||
from .fineuploader import ChunkedFineUploader
|
from .fineuploader import ChunkedFineUploader
|
||||||
@ -63,9 +63,12 @@ class FineUploaderView(generic.FormView):
|
|||||||
return self.make_response({"success": True})
|
return self.make_response({"success": True})
|
||||||
# create media!
|
# create media!
|
||||||
media_file = os.path.join(settings.MEDIA_ROOT, self.upload.real_path)
|
media_file = os.path.join(settings.MEDIA_ROOT, self.upload.real_path)
|
||||||
|
# Precalculate md5sum on tmp file
|
||||||
|
# If running on tmpfs, this should be much faster
|
||||||
|
md5 = media_file_md5sum(media_file)
|
||||||
with open(media_file, "rb") as f:
|
with open(media_file, "rb") as f:
|
||||||
myfile = File(f)
|
myfile = File(f)
|
||||||
new = Media.objects.create(media_file=myfile, user=self.request.user)
|
new = Media.objects.create(media_file=myfile, user=self.request.user, md5sum=md5)
|
||||||
rm_file(media_file)
|
rm_file(media_file)
|
||||||
shutil.rmtree(os.path.join(settings.MEDIA_ROOT, self.upload.file_path))
|
shutil.rmtree(os.path.join(settings.MEDIA_ROOT, self.upload.file_path))
|
||||||
return self.make_response({"success": True, "media_url": new.get_absolute_url()})
|
return self.make_response({"success": True, "media_url": new.get_absolute_url()})
|
||||||
|
Loading…
Reference in New Issue
Block a user