Skip to content
Toggle navigation
P
Projects
G
Groups
S
Snippets
Help
CIRCLE
/
storagedriver
This project
Loading...
Sign in
Toggle navigation
Go to a project
Project
Repository
Issues
2
Merge Requests
4
Wiki
Snippets
Members
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
A prog2-höz tartozó friss repo anyagok itt elérhetőek:
https://git.iit.bme.hu/
Commit
785fede2
authored
Oct 15, 2014
by
Guba Sándor
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
add md5sum for download
parent
c7e54d3d
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
2 deletions
+7
-2
disk.py
+5
-1
storagedriver.py
+2
-1
No files found.
disk.py
View file @
785fede2
...
@@ -8,7 +8,7 @@ from zipfile import ZipFile, is_zipfile
...
@@ -8,7 +8,7 @@ from zipfile import ZipFile, is_zipfile
from
zlib
import
decompressobj
,
MAX_WBITS
from
zlib
import
decompressobj
,
MAX_WBITS
from
bz2
import
BZ2Decompressor
from
bz2
import
BZ2Decompressor
from
time
import
sleep
from
time
import
sleep
from
hashlib
import
md5
import
re
import
re
import
requests
import
requests
...
@@ -52,6 +52,10 @@ class Disk(object):
...
@@ -52,6 +52,10 @@ class Disk(object):
self
.
actual_size
=
actual_size
self
.
actual_size
=
actual_size
self
.
base_name
=
base_name
self
.
base_name
=
base_name
@property
def
checksum
(
self
):
return
md5
(
self
.
get_path
())
.
hexdigest
()
@classmethod
@classmethod
def
deserialize
(
cls
,
desc
):
def
deserialize
(
cls
,
desc
):
"""Create cls object from JSON."""
"""Create cls object from JSON."""
...
...
storagedriver.py
View file @
785fede2
...
@@ -37,7 +37,8 @@ class download(AbortableTask):
...
@@ -37,7 +37,8 @@ class download(AbortableTask):
disk
=
Disk
.
deserialize
(
disk_desc
)
disk
=
Disk
.
deserialize
(
disk_desc
)
disk
.
download
(
self
,
url
,
parent_id
)
disk
.
download
(
self
,
url
,
parent_id
)
return
{
'size'
:
disk
.
size
,
return
{
'size'
:
disk
.
size
,
'type'
:
disk
.
format
}
'type'
:
disk
.
format
,
'checksum'
:
disk
.
checksum
,
}
@celery.task
()
@celery.task
()
...
...
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