2022-10-29 22:46:19 +03:00
|
|
|
import glob
|
|
|
|
import os
|
|
|
|
import shutil
|
|
|
|
import zipfile
|
|
|
|
from pathlib import Path
|
|
|
|
|
|
|
|
import magic
|
2022-11-01 12:20:43 +03:00
|
|
|
from dicom.models import Coordinate, Dicom, Project
|
2022-10-29 22:46:19 +03:00
|
|
|
from django.core.files import File
|
|
|
|
from django.core.files.uploadedfile import InMemoryUploadedFile, TemporaryUploadedFile
|
|
|
|
from utils.generators import generate_charset
|
|
|
|
|
|
|
|
|
2022-11-01 12:20:43 +03:00
|
|
|
def process_files(
|
|
|
|
files: list[TemporaryUploadedFile | InMemoryUploadedFile], user, slug=None
|
|
|
|
):
|
|
|
|
if slug:
|
|
|
|
project = Project.objects.get(slug=slug)
|
|
|
|
else:
|
|
|
|
project = Project.objects.create(user=user)
|
2022-10-29 22:46:19 +03:00
|
|
|
for file in files:
|
|
|
|
content_type = magic.from_file(file.temporary_file_path())
|
|
|
|
if content_type == "DICOM medical imaging data":
|
2022-11-01 12:20:43 +03:00
|
|
|
Dicom.objects.create(file=file, project=project, user=user)
|
2022-10-29 22:46:19 +03:00
|
|
|
elif "Zip" in content_type:
|
|
|
|
dit_path = f"/tmp/{generate_charset(10)}"
|
|
|
|
os.mkdir(dit_path)
|
|
|
|
with zipfile.ZipFile(file.temporary_file_path(), "r") as zip_ref:
|
|
|
|
zip_ref.extractall(dit_path)
|
|
|
|
files = glob.glob(dit_path + "/**/*", recursive=True)
|
|
|
|
|
|
|
|
for file_in_d in files:
|
|
|
|
if not os.path.isdir(file_in_d):
|
|
|
|
content_type = magic.from_file(file_in_d)
|
|
|
|
if content_type == "DICOM medical imaging data":
|
|
|
|
path = Path(file_in_d)
|
|
|
|
with path.open(mode="rb") as f:
|
|
|
|
Dicom.objects.create(
|
|
|
|
file=File(f, name=file_in_d.split("/")[-1]),
|
2022-11-01 12:20:43 +03:00
|
|
|
project=project,
|
2022-10-29 22:46:19 +03:00
|
|
|
user=user,
|
|
|
|
)
|
|
|
|
shutil.rmtree(dit_path)
|
2022-11-01 12:20:43 +03:00
|
|
|
return project
|
|
|
|
|
|
|
|
|
|
|
|
def create_coordinate(coordinates, obj):
|
|
|
|
for coordinate in coordinates:
|
|
|
|
Coordinate.objects.create(
|
|
|
|
x=coordinate["x"],
|
|
|
|
y=coordinate["y"],
|
|
|
|
shape=obj,
|
|
|
|
)
|