Merge pull request #1135 from jakedt/torrentfix
Fix torrent hash generation to work in mixed stacks
This commit is contained in:
commit
cbcb1da059
4 changed files with 13 additions and 8 deletions
|
@ -809,8 +809,8 @@ class BlobUpload(BaseModel):
|
|||
chunk_count = IntegerField(default=0)
|
||||
uncompressed_byte_count = IntegerField(null=True)
|
||||
created = DateTimeField(default=datetime.now, index=True)
|
||||
piece_sha_state = ResumableSHA1Field(null=True, default=resumablehashlib.sha1)
|
||||
piece_hashes = Base64BinaryField(null=True, default='')
|
||||
piece_sha_state = ResumableSHA1Field(null=True)
|
||||
piece_hashes = Base64BinaryField(null=True)
|
||||
|
||||
class Meta:
|
||||
database = db
|
||||
|
|
|
@ -10,6 +10,9 @@ class _ResumableSHAField(TextField):
|
|||
raise NotImplementedError
|
||||
|
||||
def db_value(self, value):
|
||||
if value is None:
|
||||
return None
|
||||
|
||||
sha_state = value.state()
|
||||
|
||||
# One of the fields is a byte string, let's base64 encode it to make sure
|
||||
|
@ -19,14 +22,14 @@ class _ResumableSHAField(TextField):
|
|||
return json.dumps(sha_state)
|
||||
|
||||
def python_value(self, value):
|
||||
to_resume = self._create_sha()
|
||||
if value is None:
|
||||
return to_resume
|
||||
return None
|
||||
|
||||
sha_state = json.loads(value)
|
||||
|
||||
# We need to base64 decode the data bytestring.
|
||||
sha_state[3] = base64.b64decode(sha_state[3])
|
||||
to_resume = self._create_sha()
|
||||
to_resume.set_state(sha_state)
|
||||
return to_resume
|
||||
|
||||
|
|
|
@ -3,6 +3,8 @@ import re
|
|||
|
||||
from flask import make_response, url_for, request, redirect, Response, abort as flask_abort
|
||||
|
||||
import resumablehashlib
|
||||
|
||||
from app import storage, app
|
||||
from auth.registry_jwt_auth import process_registry_jwt_auth
|
||||
from data import model, database
|
||||
|
@ -224,9 +226,9 @@ def _upload_chunk(namespace, repo_name, upload_uuid):
|
|||
|
||||
piece_hasher = None
|
||||
# TODO remove this when all in-progress blob uploads reliably contain piece hashes
|
||||
if start_offset == 0 or found.piece_sha_state is not None:
|
||||
piece_hasher = PieceHasher(app.config['TORRENT_PIECE_SIZE'], start_offset, found.piece_hashes,
|
||||
found.piece_sha_state)
|
||||
if start_offset == 0:
|
||||
piece_hasher = PieceHasher(app.config['TORRENT_PIECE_SIZE'], start_offset, '',
|
||||
resumablehashlib.sha1())
|
||||
input_fp = wrap_with_handler(input_fp, piece_hasher.update)
|
||||
|
||||
# If this is the first chunk and we're starting at the 0 offset, add a handler to gunzip the
|
||||
|
|
|
@ -5,7 +5,7 @@ autobahn==0.9.3-3
|
|||
Babel==1.3
|
||||
beautifulsoup4==4.4.0
|
||||
bencode==1.0
|
||||
bintrees==2.0.3
|
||||
bintrees==2.0.4
|
||||
blinker==1.3
|
||||
boto==2.38.0
|
||||
cachetools==1.0.3
|
||||
|
|
Reference in a new issue